Author: Andrew Miller
[ircu2.10.12-pk.git] / ircd / s_conf.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_conf.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 1, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * $Id$
21  */
22 #include "config.h"
23
24 #include "s_conf.h"
25 #include "IPcheck.h"
26 #include "class.h"
27 #include "client.h"
28 #include "crule.h"
29 #include "ircd_features.h"
30 #include "fileio.h"
31 #include "gline.h"
32 #include "hash.h"
33 #include "ircd.h"
34 #include "ircd_alloc.h"
35 #include "ircd_chattr.h"
36 #include "ircd_log.h"
37 #include "ircd_reply.h"
38 #include "ircd_snprintf.h"
39 #include "ircd_string.h"
40 #include "list.h"
41 #include "listener.h"
42 #include "match.h"
43 #include "motd.h"
44 #include "numeric.h"
45 #include "numnicks.h"
46 #include "opercmds.h"
47 #include "parse.h"
48 #include "res.h"
49 #include "s_bsd.h"
50 #include "s_debug.h"
51 #include "s_misc.h"
52 #include "send.h"
53 #include "struct.h"
54 #include "support.h"
55 #include "sys.h"
56
57 #include <assert.h>
58 #include <arpa/inet.h>
59 #include <errno.h>
60 #include <fcntl.h>
61 #include <netdb.h>
62 #include <stdlib.h>
63 #include <string.h>
64 #include <sys/stat.h>
65 #include <unistd.h>
66 #include <stdio.h>
67
68 #ifndef INADDR_NONE
69 #define INADDR_NONE 0xffffffff
70 #endif
71
72 struct ConfItem* GlobalConfList  = 0;
73 int              GlobalConfCount = 0;
74
75 void yyparse(void);
76 int conf_fd, lineno;
77
78 struct LocalConf   localConf;
79 struct CRuleConf*  cruleConfList;
80 /* struct ServerConf* serverConfList; */
81 struct DenyConf*   denyConfList;
82
83 /*
84  * output the reason for being k lined from a file  - Mmmm
85  * sptr is client being dumped
86  * filename is the file that is to be output to the K lined client
87  */
88 static void killcomment(struct Client* sptr, const char* filename)
89 {
90   FBFILE*     file = 0;
91   char        line[80];
92   struct stat sb;
93   struct tm*  tm;
94
95   if (NULL == (file = fbopen(filename, "r"))) {
96     send_reply(sptr, ERR_NOMOTD);
97     send_reply(sptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP,
98                ":Connection from your host is refused on this server.");
99     return;
100   }
101   fbstat(&sb, file);
102   tm = localtime((time_t*) &sb.st_mtime);        /* NetBSD needs cast */
103   while (fbgets(line, sizeof(line) - 1, file)) {
104     char* end = line + strlen(line);
105     while (end > line) {
106       --end;
107       if ('\n' == *end || '\r' == *end)
108         *end = '\0';
109       else
110         break;
111     }
112     send_reply(sptr, RPL_MOTD, line);
113   }
114   send_reply(sptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP,
115              ":Connection from your host is refused on this server.");
116   fbclose(file);
117 }
118
119 struct ConfItem* make_conf(void)
120 {
121   struct ConfItem* aconf;
122
123   aconf = (struct ConfItem*) MyMalloc(sizeof(struct ConfItem));
124   assert(0 != aconf);
125 #ifdef        DEBUGMODE
126   ++GlobalConfCount;
127 #endif
128   memset(aconf, 0, sizeof(struct ConfItem));
129   aconf->status       = CONF_ILLEGAL;
130   aconf->ipnum.s_addr = INADDR_NONE;
131   return aconf;
132 }
133
134 void delist_conf(struct ConfItem *aconf)
135 {
136   if (aconf == GlobalConfList)
137     GlobalConfList = GlobalConfList->next;
138   else {
139     struct ConfItem *bconf;
140
141     for (bconf = GlobalConfList; aconf != bconf->next; bconf = bconf->next)
142       ;
143     bconf->next = aconf->next;
144   }
145   aconf->next = 0;
146 }
147
148 void free_conf(struct ConfItem *aconf)
149 {
150   Debug((DEBUG_DEBUG, "free_conf: %s %s %d",
151          aconf->host ? aconf->host : "*",
152          aconf->name ? aconf->name : "*",
153          aconf->port));
154   if (aconf->dns_pending)
155     delete_resolver_queries(aconf);
156   MyFree(aconf->host);
157   if (aconf->passwd)
158     memset(aconf->passwd, 0, strlen(aconf->passwd));
159   MyFree(aconf->passwd);
160   MyFree(aconf->name);
161   MyFree(aconf);
162 #ifdef        DEBUGMODE
163   --GlobalConfCount;
164 #endif
165 }
166
167 /*
168  * detach_conf - Disassociate configuration from the client.
169  */
170 static void detach_conf(struct Client* cptr, struct ConfItem* aconf)
171 {
172   struct SLink** lp;
173   struct SLink*  tmp;
174
175   assert(0 != aconf);
176   assert(0 != cptr);
177   assert(0 < aconf->clients);
178
179   lp = &(cli_confs(cptr));
180
181   while (*lp) {
182     if ((*lp)->value.aconf == aconf) {
183       if (aconf->conn_class && (aconf->status & CONF_CLIENT_MASK) && ConfLinks(aconf) > 0)
184         --ConfLinks(aconf);
185
186       assert(0 < aconf->clients);
187       if (0 == --aconf->clients && IsIllegal(aconf))
188         free_conf(aconf);
189       tmp = *lp;
190       *lp = tmp->next;
191       free_link(tmp);
192       return;
193     }
194     lp = &((*lp)->next);
195   }
196 }
197
198 /*
199  * conf_dns_callback - called when resolver query finishes
200  * if the query resulted in a successful search, hp will contain
201  * a non-null pointer, otherwise hp will be null.
202  * if successful save hp in the conf item it was called with
203  */
204 static void conf_dns_callback(void* vptr, struct DNSReply* reply)
205 {
206   struct ConfItem* aconf = (struct ConfItem*) vptr;
207   aconf->dns_pending = 0;
208   if (reply)
209     memcpy(&aconf->ipnum, reply->hp->h_addr, sizeof(struct in_addr));
210 }
211
212 /*
213  * conf_dns_lookup - do a nameserver lookup of the conf host
214  * if the conf entry is currently doing a ns lookup do nothing, otherwise
215  * if the lookup returns a null pointer, set the conf dns_pending flag
216  */
217 static struct DNSReply* conf_dns_lookup(struct ConfItem* aconf)
218 {
219   struct DNSReply* dns_reply = 0;
220   if (!aconf->dns_pending) {
221     char            buf[HOSTLEN + 1];
222     struct DNSQuery query;
223     query.vptr     = aconf;
224     query.callback = conf_dns_callback;
225     host_from_uh(buf, aconf->host, HOSTLEN);
226     buf[HOSTLEN] = '\0';
227
228     if (0 == (dns_reply = gethost_byname(buf, &query)))
229       aconf->dns_pending = 1;
230   }
231   return dns_reply;
232 }
233
234
235 /*
236  * lookup_confhost
237  *
238  * Do (start) DNS lookups of all hostnames in the conf line and convert
239  * an IP addresses in a.b.c.d number for to IP#s.
240  */
241 void lookup_confhost(struct ConfItem *aconf)
242 {
243   struct DNSReply* reply;
244
245   if (EmptyString(aconf->host) || EmptyString(aconf->name)) {
246     Debug((DEBUG_ERROR, "Host/server name error: (%s) (%s)",
247            aconf->host, aconf->name));
248     return;
249   }
250   /*
251    * Do name lookup now on hostnames given and store the
252    * ip numbers in conf structure.
253    */
254   if (IsDigit(*aconf->host)) {
255     /*
256      * rfc 1035 sez host names may not start with a digit
257      * XXX - this has changed code needs to be updated
258      */
259     aconf->ipnum.s_addr = inet_addr(aconf->host);
260     if (INADDR_NONE == aconf->ipnum.s_addr) {
261       Debug((DEBUG_ERROR, "Host/server name error: (%s) (%s)",
262             aconf->host, aconf->name));
263     }
264   }
265   else if ((reply = conf_dns_lookup(aconf)))
266     memcpy(&aconf->ipnum, reply->hp->h_addr, sizeof(struct in_addr));
267 }
268
269 /*
270  * conf_find_server - find a server by name or hostname
271  * returns a server conf item pointer if found, 0 otherwise
272  *
273  * NOTE: at some point when we don't have to scan the entire
274  * list it may be cheaper to look for server names and host
275  * names in separate loops (original code did it that way)
276  */
277 struct ConfItem* conf_find_server(const char* name)
278 {
279   struct ConfItem* conf;
280   assert(0 != name);
281
282   for (conf = GlobalConfList; conf; conf = conf->next) {
283     if (CONF_SERVER == conf->status) {
284       /*
285        * Check first servernames, then try hostnames.
286        * XXX - match returns 0 if there _is_ a match... guess they
287        * haven't decided what true is yet
288        */
289       if (0 == match(name, conf->name))
290         return conf;
291     }
292   }
293   return 0;
294 }
295
296 /*
297  * conf_eval_crule - evaluate connection rules
298  * returns the name of the rule triggered if found, 0 otherwise
299  *
300  * Evaluate connection rules...  If no rules found, allow the
301  * connect.   Otherwise stop with the first true rule (ie: rules
302  * are ored together.  Oper connects are effected only by D
303  * lines (CRULE_ALL) not d lines (CRULE_AUTO).
304  */
305 const char* conf_eval_crule(const char* name, int mask)
306 {
307   struct CRuleConf* p = cruleConfList;
308   assert(0 != name);
309
310   for ( ; p; p = p->next) {
311     if (0 != (p->type & mask) && 0 == match(p->hostmask, name)) {
312       if (crule_eval(p->node))
313         return p->rule;
314     }
315   }
316   return 0;
317 }
318
319 /*
320  * Remove all conf entries from the client except those which match
321  * the status field mask.
322  */
323 void det_confs_butmask(struct Client* cptr, int mask)
324 {
325   struct SLink* link;
326   struct SLink* next;
327   assert(0 != cptr);
328
329   for (link = cli_confs(cptr); link; link = next) {
330     next = link->next;
331     if ((link->value.aconf->status & mask) == 0)
332       detach_conf(cptr, link->value.aconf);
333   }
334 }
335
336 /*
337  * check_limit_and_attach - check client limits and attach I:line
338  *
339  * Made it accept 1 charactor, and 2 charactor limits (0->99 now), 
340  * and dislallow more than 255 people here as well as in ipcheck.
341  * removed the old "ONE" scheme too.
342  *  -- Isomer 2000-06-22
343  */
344 static enum AuthorizationCheckResult
345 check_limit_and_attach(struct Client* cptr, struct ConfItem* aconf)
346 {
347   int number = 255;
348   
349   if (aconf->passwd) {
350     if (IsDigit(*aconf->passwd) && !aconf->passwd[1])
351       number = *aconf->passwd-'0';
352     else if (IsDigit(*aconf->passwd) && IsDigit(aconf->passwd[1]) && 
353              !aconf->passwd[2])
354       number = (*aconf->passwd-'0')*10+(aconf->passwd[1]-'0');
355   }
356   if (IPcheck_nr(cptr) > number)
357     return ACR_TOO_MANY_FROM_IP;
358   return attach_conf(cptr, aconf);
359 }
360
361 /*
362  * Find the first (best) I line to attach.
363  */
364 enum AuthorizationCheckResult attach_iline(struct Client*  cptr)
365 {
366   struct ConfItem* aconf;
367   const char*      hname;
368   int              i;
369   static char      uhost[HOSTLEN + USERLEN + 3];
370   static char      fullname[HOSTLEN + 1];
371   struct hostent*  hp = 0;
372
373   assert(0 != cptr);
374
375   if (cli_dns_reply(cptr))
376     hp = cli_dns_reply(cptr)->hp;
377
378   for (aconf = GlobalConfList; aconf; aconf = aconf->next) {
379     if (aconf->status != CONF_CLIENT)
380       continue;
381     if (aconf->port && aconf->port != cli_listener(cptr)->port)
382       continue;
383     if (!aconf->host || !aconf->name)
384       continue;
385     if (hp) {
386       for (i = 0, hname = hp->h_name; hname; hname = hp->h_aliases[i++]) {
387         ircd_strncpy(fullname, hname, HOSTLEN);
388         fullname[HOSTLEN] = '\0';
389
390         Debug((DEBUG_DNS, "a_il: %s->%s", cli_sockhost(cptr), fullname));
391
392         if (strchr(aconf->name, '@')) {
393           strcpy(uhost, cli_username(cptr));
394           strcat(uhost, "@");
395         }
396         else
397           *uhost = '\0';
398         strncat(uhost, fullname, sizeof(uhost) - 1 - strlen(uhost));
399         uhost[sizeof(uhost) - 1] = 0;
400         if (0 == match(aconf->name, uhost)) {
401           if (strchr(uhost, '@'))
402             cli_flags(cptr) |= FLAGS_DOID;
403           return check_limit_and_attach(cptr, aconf);
404         }
405       }
406     }
407     if (strchr(aconf->host, '@')) {
408       ircd_strncpy(uhost, cli_username(cptr), sizeof(uhost) - 2);
409       uhost[sizeof(uhost) - 2] = 0;
410       strcat(uhost, "@");
411     }
412     else
413       *uhost = '\0';
414     strncat(uhost, cli_sock_ip(cptr), sizeof(uhost) - 1 - strlen(uhost));
415     uhost[sizeof(uhost) - 1] = 0;
416     if (match(aconf->host, uhost))
417       continue;
418     if (strchr(uhost, '@'))
419       cli_flags(cptr) |= FLAGS_DOID;
420
421     return check_limit_and_attach(cptr, aconf);
422   }
423   return ACR_NO_AUTHORIZATION;
424 }
425
426 static int is_attached(struct ConfItem *aconf, struct Client *cptr)
427 {
428   struct SLink *lp;
429
430   for (lp = cli_confs(cptr); lp; lp = lp->next) {
431     if (lp->value.aconf == aconf)
432       return 1;
433   }
434   return 0;
435 }
436
437 /*
438  * attach_conf
439  *
440  * Associate a specific configuration entry to a *local*
441  * client (this is the one which used in accepting the
442  * connection). Note, that this automaticly changes the
443  * attachment if there was an old one...
444  */
445 enum AuthorizationCheckResult attach_conf(struct Client *cptr, struct ConfItem *aconf)
446 {
447   struct SLink *lp;
448
449   if (is_attached(aconf, cptr))
450     return ACR_ALREADY_AUTHORIZED;
451   if (IsIllegal(aconf))
452     return ACR_NO_AUTHORIZATION;
453   if ((aconf->status & (CONF_LOCOP | CONF_OPERATOR | CONF_CLIENT)) &&
454       ConfLinks(aconf) >= ConfMaxLinks(aconf) && ConfMaxLinks(aconf) > 0)
455     return ACR_TOO_MANY_IN_CLASS;  /* Use this for printing error message */
456   lp = make_link();
457   lp->next = cli_confs(cptr);
458   lp->value.aconf = aconf;
459   cli_confs(cptr) = lp;
460   ++aconf->clients;
461   if (aconf->status & CONF_CLIENT_MASK)
462     ConfLinks(aconf)++;
463   return ACR_OK;
464 }
465
466 const struct LocalConf* conf_get_local(void)
467 {
468   return &localConf;
469 }
470
471 /*
472  * attach_confs_byname
473  *
474  * Attach a CONF line to a client if the name passed matches that for
475  * the conf file (for non-C/N lines) or is an exact match (C/N lines
476  * only).  The difference in behaviour is to stop C:*::* and N:*::*.
477  */
478 struct ConfItem* attach_confs_byname(struct Client* cptr, const char* name,
479                                      int statmask)
480 {
481   struct ConfItem* tmp;
482   struct ConfItem* first = NULL;
483
484   assert(0 != name);
485
486   if (HOSTLEN < strlen(name))
487     return 0;
488
489   for (tmp = GlobalConfList; tmp; tmp = tmp->next) {
490     if (0 != (tmp->status & statmask) && !IsIllegal(tmp)) {
491       assert(0 != tmp->name);
492       if (0 == match(tmp->name, name) || 0 == ircd_strcmp(tmp->name, name)) { 
493         if (ACR_OK == attach_conf(cptr, tmp) && !first)
494           first = tmp;
495       }
496     }
497   }
498   return first;
499 }
500
501 /*
502  * Added for new access check    meLazy
503  */
504 struct ConfItem* attach_confs_byhost(struct Client* cptr, const char* host,
505                                      int statmask)
506 {
507   struct ConfItem* tmp;
508   struct ConfItem* first = 0;
509
510   assert(0 != host);
511   if (HOSTLEN < strlen(host))
512     return 0;
513
514   for (tmp = GlobalConfList; tmp; tmp = tmp->next) {
515     if (0 != (tmp->status & statmask) && !IsIllegal(tmp)) {
516       assert(0 != tmp->host);
517       if (0 == match(tmp->host, host) || 0 == ircd_strcmp(tmp->host, host)) { 
518         if (ACR_OK == attach_conf(cptr, tmp) && !first)
519           first = tmp;
520       }
521     }
522   }
523   return first;
524 }
525
526 /*
527  * find a conf entry which matches the hostname and has the same name.
528  */
529 struct ConfItem* find_conf_exact(const char* name, const char* user,
530                                  const char* host, int statmask)
531 {
532   struct ConfItem *tmp;
533   char userhost[USERLEN + HOSTLEN + 3];
534
535   if (user)
536     ircd_snprintf(0, userhost, sizeof(userhost), "%s@%s", user, host);
537   else
538     ircd_strncpy(userhost, host, sizeof(userhost) - 1);
539
540   for (tmp = GlobalConfList; tmp; tmp = tmp->next) {
541     if (!(tmp->status & statmask) || !tmp->name || !tmp->host ||
542         0 != ircd_strcmp(tmp->name, name))
543       continue;
544     /*
545      * Accept if the *real* hostname (usually sockecthost)
546      * socket host) matches *either* host or name field
547      * of the configuration.
548      */
549     if (match(tmp->host, userhost))
550       continue;
551     if (tmp->status & (CONF_OPERATOR | CONF_LOCOP)) {
552       if (tmp->clients < MaxLinks(tmp->conn_class))
553         return tmp;
554       else
555         continue;
556     }
557     else
558       return tmp;
559   }
560   return 0;
561 }
562
563 struct ConfItem* find_conf_byname(struct SLink* lp, const char* name,
564                                   int statmask)
565 {
566   struct ConfItem* tmp;
567   assert(0 != name);
568
569   if (HOSTLEN < strlen(name))
570     return 0;
571
572   for (; lp; lp = lp->next) {
573     tmp = lp->value.aconf;
574     if (0 != (tmp->status & statmask)) {
575       assert(0 != tmp->name);
576       if (0 == ircd_strcmp(tmp->name, name) || 0 == match(tmp->name, name))
577         return tmp;
578     }
579   }
580   return 0;
581 }
582
583 /*
584  * Added for new access check    meLazy
585  */
586 struct ConfItem* find_conf_byhost(struct SLink* lp, const char* host,
587                                   int statmask)
588 {
589   struct ConfItem* tmp = NULL;
590   assert(0 != host);
591
592   if (HOSTLEN < strlen(host))
593     return 0;
594
595   for (; lp; lp = lp->next) {
596     tmp = lp->value.aconf;
597     if (0 != (tmp->status & statmask)) {
598       assert(0 != tmp->host);
599       if (0 == match(tmp->host, host))
600         return tmp;
601     }
602   }
603   return 0;
604 }
605
606 /*
607  * find_conf_ip
608  *
609  * Find a conf line using the IP# stored in it to search upon.
610  * Added 1/8/92 by Avalon.
611  */
612 struct ConfItem* find_conf_byip(struct SLink* lp, const char* ip, 
613                                 int statmask)
614 {
615   struct ConfItem* tmp;
616
617   for (; lp; lp = lp->next) {
618     tmp = lp->value.aconf;
619     if (0 != (tmp->status & statmask)) {
620       if (0 == memcmp(&tmp->ipnum, ip, sizeof(struct in_addr)))
621         return tmp;
622     }
623   }
624   return 0;
625 }
626
627 /*
628  * find_conf_entry
629  *
630  * - looks for a match on all given fields.
631  */
632 #if 0
633 static struct ConfItem *find_conf_entry(struct ConfItem *aconf,
634                                         unsigned int mask)
635 {
636   struct ConfItem *bconf;
637   assert(0 != aconf);
638
639   mask &= ~CONF_ILLEGAL;
640
641   for (bconf = GlobalConfList; bconf; bconf = bconf->next) {
642     if (!(bconf->status & mask) || (bconf->port != aconf->port))
643       continue;
644
645     if ((EmptyString(bconf->host) && !EmptyString(aconf->host)) ||
646         (EmptyString(aconf->host) && !EmptyString(bconf->host)))
647       continue;
648     if (!EmptyString(bconf->host) && 0 != ircd_strcmp(bconf->host, aconf->host))
649       continue;
650
651     if ((EmptyString(bconf->passwd) && !EmptyString(aconf->passwd)) ||
652         (EmptyString(aconf->passwd) && !EmptyString(bconf->passwd)))
653       continue;
654     if (!EmptyString(bconf->passwd) && (!IsDigit(*bconf->passwd) || bconf->passwd[1])
655         && 0 != ircd_strcmp(bconf->passwd, aconf->passwd))
656       continue;
657
658     if ((EmptyString(bconf->name) && !EmptyString(aconf->name)) ||
659         (EmptyString(aconf->name) && !EmptyString(bconf->name)))
660       continue;
661     if (!EmptyString(bconf->name) && 0 != ircd_strcmp(bconf->name, aconf->name))
662       continue;
663     break;
664   }
665   return bconf;
666 }
667
668 /*
669  * If conf line is a class definition, create a class entry
670  * for it and make the conf_line illegal and delete it.
671  */
672 void conf_add_class(const char* const* fields, int count)
673 {
674   if (count < 6)
675     return;
676   add_class(atoi(fields[1]), atoi(fields[2]), atoi(fields[3]),
677             atoi(fields[4]), atoi(fields[5]));
678 }
679
680 void conf_add_listener(const char* const* fields, int count)
681 {
682   int is_server = 0;
683   int is_hidden = 0;
684
685   /*
686    * need a port
687    */
688   if (count < 5 || EmptyString(fields[4]))
689     return;
690
691   if (!EmptyString(fields[3])) {
692     const char* x = fields[3];
693     if ('S' == ToUpper(*x))
694       is_server = 1;
695     ++x;
696     if ('H' == ToUpper(*x))
697       is_hidden = 1;
698   }
699   /*           port             vhost      mask  */
700   add_listener(atoi(fields[4]), fields[2], fields[1], is_server, is_hidden);
701 }
702
703 void conf_add_local(const char* const* fields, int count)
704 {
705   if (count < 6 || EmptyString(fields[1]) || EmptyString(fields[5])) {
706     log_write(LS_CONFIG, L_CRIT, 0, "Your M: line must have 6 fields!");
707     return;
708   }
709   /*
710    * these two can only be set the first time
711    */
712   if (0 == localConf.name) {
713     if (string_is_hostname(fields[1]))
714       DupString(localConf.name, fields[1]);
715   }
716   if (0 == localConf.numeric) {
717     localConf.numeric = atoi(fields[5]);
718     if (0 == localConf.numeric)
719       log_write(LS_CONFIG, L_WARNING, 0,
720                 "Your M: line must have a Numeric value greater than 0");
721   }
722   /*
723    * these two can be changed while the server is running
724    */
725   if (string_is_address(fields[2])) {
726     if (INADDR_NONE == (localConf.vhost_address.s_addr = inet_addr(fields[2])))
727       localConf.vhost_address.s_addr = INADDR_ANY;
728   }
729   MyFree(localConf.description);
730   DupString(localConf.description, fields[3]);
731   /*
732    * XXX - shouldn't be setting these directly here
733    */
734   ircd_strncpy(cli_info(&me), fields[3], REALLEN);
735   set_virtual_host(localConf.vhost_address);
736 }
737
738 void conf_add_admin(const char* const* fields, int count)
739 {
740   /*
741    * if you have one, it MUST have 3 lines
742    */
743   if (count < 4) {
744     log_write(LS_CONFIG, L_CRIT, 0, "Your A: line must have 4 fields!");
745     return;
746   }
747   MyFree(localConf.location1);
748   DupString(localConf.location1, fields[1]);
749
750   MyFree(localConf.location2);
751   DupString(localConf.location2, fields[2]);
752
753   MyFree(localConf.contact);
754   DupString(localConf.contact, fields[3]);
755 }
756
757 /*
758  * conf_add_crule - Create expression tree from connect rule and add it
759  * to the crule list
760  */
761 void conf_add_crule(const char* const* fields, int count, int type)
762 {
763   struct CRuleNode* node;
764   assert(0 != fields);
765   
766   if (count < 4 || EmptyString(fields[1]) || EmptyString(fields[3]))
767     return;
768   
769   if ((node = crule_parse(fields[3]))) {
770     struct CRuleConf* p = (struct CRuleConf*) MyMalloc(sizeof(struct CRuleConf));
771     assert(0 != p);
772
773     DupString(p->hostmask, fields[1]);
774     collapse(p->hostmask);
775
776     DupString(p->rule, fields[3]);
777
778     p->type = type;
779     p->node = node;
780     p->next = cruleConfList;
781     cruleConfList = p;
782   } 
783 }
784 #endif
785
786 void conf_erase_crule_list(void)
787 {
788   struct CRuleConf* next;
789   struct CRuleConf* p = cruleConfList;
790
791   for ( ; p; p = next) {
792     next = p->next;
793     crule_free(&p->node);
794     MyFree(p->hostmask);
795     MyFree(p->rule);
796     MyFree(p);
797   }
798   cruleConfList = 0;
799 }
800
801 const struct CRuleConf* conf_get_crule_list(void)
802 {
803   return cruleConfList;
804 }
805
806 #if 0
807 void conf_add_server(const char* const* fields, int count)
808 {
809   struct ServerConf* server;
810   struct in_addr    addr;
811   assert(0 != fields);
812   /*
813    * missing host, password, or alias?
814    */
815   if (count < 6 || EmptyString(fields[1]) || EmptyString(fields[2]) || EmptyString(fields[3]))
816     return;
817   /*
818    * check the host
819    */
820   if (string_is_hostname(fields[1]))
821     addr.s_addr = INADDR_NONE;
822   else if (INADDR_NONE == (addr.s_addr = inet_addr(fields[1])))
823     return;
824
825   server = (struct ServerConf*) MyMalloc(sizeof(struct ServerConf));
826   assert(0 != server);
827   DupString(server->hostname, fields[1]);
828   DupString(server->passwd,   fields[2]);
829   DupString(server->alias,    fields[3]);
830   server->address.s_addr = addr.s_addr;
831   server->port           = atoi(fields[4]);
832   server->dns_pending    = 0;
833   server->connected      = 0;
834   server->hold           = 0;
835   server->conn_class      = find_class(atoi(fields[5]));
836
837   server->next = serverConfList;
838   serverConfList = server;
839
840   /* if (INADDR_NONE == server->address.s_addr) */
841     /* lookup_confhost(server); */
842 }
843
844 void conf_add_deny(const char* const* fields, int count, int ip_kill)
845 {
846   struct DenyConf* conf;
847
848   if (count < 4 || EmptyString(fields[1]) || EmptyString(fields[3]))
849     return;
850   
851   conf = (struct DenyConf*) MyMalloc(sizeof(struct DenyConf));
852   assert(0 != conf);
853   memset(conf, 0, sizeof(struct DenyConf));
854
855   if (fields[1][0] == '$' && fields[1][1] == 'R')
856     conf->flags |= DENY_FLAGS_REALNAME;
857
858   DupString(conf->hostmask, fields[1]);
859   collapse(conf->hostmask);
860
861   if (!EmptyString(fields[2])) {
862     const char* p = fields[2];
863     if ('!' == *p) {
864       conf->flags |= DENY_FLAGS_FILE;
865       ++p;
866     }
867     DupString(conf->message, p);
868   }
869   DupString(conf->usermask, fields[3]);
870   collapse(conf->usermask);
871
872   if (ip_kill) {
873     /* 
874      * Here we use the same kludge as in listener.c to parse
875      * a.b.c.d, or a.b.c.*, or a.b.c.d/e.
876      */
877     int  c_class;
878     char ipname[16];
879     int  ad[4] = { 0 };
880     int  bits2 = 0;
881     c_class = sscanf(conf->hostmask, "%d.%d.%d.%d/%d",
882                      &ad[0], &ad[1], &ad[2], &ad[3], &bits2);
883     if (c_class != 5) {
884       conf->bits = c_class * 8;
885     }
886     else {
887       conf->bits = bits2;
888     }
889     ircd_snprintf(0, ipname, sizeof(ipname), "%d.%d.%d.%d", ad[0], ad[1],
890                   ad[2], ad[3]);
891     
892     /*
893      * This ensures endian correctness
894      */
895     conf->address = inet_addr(ipname);
896     Debug((DEBUG_DEBUG, "IPkill: %s = %08x/%i (%08x)", ipname,
897            conf->address, conf->bits, NETMASK(conf->bits)));
898     conf->flags |= DENY_FLAGS_IP;
899   }
900   conf->next = denyConfList;
901   denyConfList = conf;
902 }
903 #endif
904
905
906 void conf_erase_deny_list(void)
907 {
908   struct DenyConf* next;
909   struct DenyConf* p = denyConfList;
910   for ( ; p; p = next) {
911     next = p->next;
912     MyFree(p->hostmask);
913     MyFree(p->usermask);
914     MyFree(p->message);
915     MyFree(p);
916   }
917   denyConfList = 0;
918 }
919  
920 const struct DenyConf* conf_get_deny_list(void)
921 {
922   return denyConfList;
923 }
924
925 /*
926  * read_configuration_file
927  *
928  * Read configuration file.
929  *
930  * returns 0, if file cannot be opened
931  *         1, if file read
932  */
933
934 #define MAXCONFLINKS 150
935
936 extern FILE *yyin;
937 void init_lexer(void);
938
939 int read_configuration_file(void)
940 {
941   feature_unmark(); /* unmark all features for resetting later */
942   /* Now just open an fd. The buffering isn't really needed... */
943   init_lexer();
944   yyparse();
945   fclose(yyin);
946   yyin = NULL;
947   feature_mark(); /* reset unmarked features */
948   return 1;
949 }
950
951 void
952 yyerror(const char *msg)
953 {
954  sendto_opmask_butone(0, SNO_ALL, "Config file parse error line %d: %s",
955                       lineno, msg);
956  log_write(LS_CONFIG, L_ERROR, 0, "Config file parse error line %d: %s",
957            lineno, msg);
958 }
959
960 /*
961  * rehash
962  *
963  * Actual REHASH service routine. Called with sig == 0 if it has been called
964  * as a result of an operator issuing this command, else assume it has been
965  * called as a result of the server receiving a HUP signal.
966  */
967 int rehash(struct Client *cptr, int sig)
968 {
969   struct ConfItem** tmp = &GlobalConfList;
970   struct ConfItem*  tmp2;
971   struct Client*    acptr;
972   int               i;
973   int               ret = 0;
974   int               found_g = 0;
975
976   if (1 == sig)
977     sendto_opmask_butone(0, SNO_OLDSNO,
978                          "Got signal SIGHUP, reloading ircd conf. file");
979
980   while ((tmp2 = *tmp)) {
981     if (tmp2->clients) {
982       /*
983        * Configuration entry is still in use by some
984        * local clients, cannot delete it--mark it so
985        * that it will be deleted when the last client
986        * exits...
987        */
988       if (CONF_CLIENT == (tmp2->status & CONF_CLIENT))
989         tmp = &tmp2->next;
990       else {
991         *tmp = tmp2->next;
992         tmp2->next = 0;
993       }
994       tmp2->status |= CONF_ILLEGAL;
995     }
996     else {
997       *tmp = tmp2->next;
998       free_conf(tmp2);
999     }
1000   }
1001   conf_erase_crule_list();
1002   conf_erase_deny_list();
1003   motd_clear();
1004
1005   /*
1006    * delete the juped nicks list
1007    */
1008   clearNickJupes();
1009
1010   if (sig != 2)
1011     flush_resolver_cache();
1012
1013   class_mark_delete();
1014   mark_listeners_closing();
1015
1016   read_configuration_file();
1017
1018   log_reopen(); /* reopen log files */
1019
1020   close_listeners();
1021   class_delete_marked();         /* unless it fails */
1022
1023   /*
1024    * Flush out deleted I and P lines although still in use.
1025    */
1026   for (tmp = &GlobalConfList; (tmp2 = *tmp);) {
1027     if (CONF_ILLEGAL == (tmp2->status & CONF_ILLEGAL)) {
1028       *tmp = tmp2->next;
1029       tmp2->next = NULL;
1030       if (!tmp2->clients)
1031         free_conf(tmp2);
1032     }
1033     else
1034       tmp = &tmp2->next;
1035   }
1036
1037   for (i = 0; i <= HighestFd; i++) {
1038     if ((acptr = LocalClientArray[i])) {
1039       assert(!IsMe(acptr));
1040       if (IsServer(acptr)) {
1041         det_confs_butmask(acptr,
1042             ~(CONF_HUB | CONF_LEAF | CONF_UWORLD | CONF_ILLEGAL));
1043         attach_confs_byname(acptr, cli_name(acptr),
1044                             CONF_HUB | CONF_LEAF | CONF_UWORLD);
1045       }
1046       /* Because admin's are getting so uppity about people managing to
1047        * get past K/G's etc, we'll "fix" the bug by actually explaining
1048        * whats going on.
1049        */
1050       if ((found_g = find_kill(acptr))) {
1051         sendto_opmask_butone(0, found_g == -2 ? SNO_GLINE : SNO_OPERKILL,
1052                              found_g == -2 ? "G-line active for %s%s" :
1053                              "K-line active for %s%s",
1054                              IsUnknown(acptr) ? "Unregistered Client ":"",                     
1055                              get_client_name(acptr, HIDE_IP));
1056         if (exit_client(cptr, acptr, &me, found_g == -2 ? "G-lined" :
1057             "K-lined") == CPTR_KILLED)
1058           ret = CPTR_KILLED;
1059       }
1060     }
1061   }
1062
1063   return ret;
1064 }
1065
1066 /*
1067  * init_conf
1068  *
1069  * Read configuration file.
1070  *
1071  * returns 0, if file cannot be opened
1072  *         1, if file read
1073  */
1074
1075 int init_conf(void)
1076 {
1077   if (read_configuration_file()) {
1078     /*
1079      * make sure we're sane to start if the config
1080      * file read didn't get everything we need.
1081      * XXX - should any of these abort the server?
1082      * TODO: add warning messages
1083      */
1084     if (0 == localConf.name || 0 == localConf.numeric)
1085       return 0;
1086
1087     if (0 == localConf.location1)
1088       DupString(localConf.location1, "");
1089     if (0 == localConf.location2)
1090       DupString(localConf.location2, "");
1091     if (0 == localConf.contact)
1092       DupString(localConf.contact, "");
1093     
1094     return 1;
1095   }
1096   return 0;
1097 }
1098
1099 /*
1100  * find_kill
1101  * input:
1102  *  client pointer
1103  * returns:
1104  *  0: Client may continue to try and connect
1105  * -1: Client was K/k:'d - sideeffect: reason was sent.
1106  * -2: Client was G/g:'d - sideeffect: reason was sent.
1107  * sideeffects:
1108  *  Client may have been sent a reason why they are denied, as above.
1109  */
1110 int find_kill(struct Client *cptr)
1111 {
1112   const char*      host;
1113   const char*      name;
1114   const char*      realname;
1115   struct DenyConf* deny;
1116   struct Gline*    agline = NULL;
1117
1118   assert(0 != cptr);
1119
1120   if (!cli_user(cptr))
1121     return 0;
1122
1123   host = cli_sockhost(cptr);
1124   name = cli_user(cptr)->username;
1125   realname = cli_info(cptr);
1126
1127   assert(strlen(host) <= HOSTLEN);
1128   assert((name ? strlen(name) : 0) <= HOSTLEN);
1129   assert((realname ? strlen(realname) : 0) <= REALLEN);
1130
1131   /* 2000-07-14: Rewrote this loop for massive speed increases.
1132    *             -- Isomer
1133    */
1134   for (deny = denyConfList; deny; deny = deny->next) {
1135     if (0 != match(deny->usermask, name))
1136       continue;
1137
1138     if (EmptyString(deny->hostmask))
1139       break;
1140
1141     if (deny->flags & DENY_FLAGS_REALNAME) { /* K: by real name */
1142       if (0 == match(deny->hostmask, realname))
1143         break;
1144     } else if (deny->flags & DENY_FLAGS_IP) { /* k: by IP */
1145       Debug((DEBUG_DEBUG, "ip: %08x network: %08x/%i mask: %08x",
1146              cli_ip(cptr).s_addr, deny->address, deny->bits, NETMASK(deny->bits)));
1147       if ((cli_ip(cptr).s_addr & NETMASK(deny->bits)) == deny->address)
1148         break;
1149     }
1150     else if (0 == match(deny->hostmask, host))
1151       break;
1152   }
1153   if (deny) {
1154     if (EmptyString(deny->message))
1155       send_reply(cptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP,
1156                  ":Connection from your host is refused on this server.");
1157     else {
1158       if (deny->flags & DENY_FLAGS_FILE)
1159         killcomment(cptr, deny->message);
1160       else
1161         send_reply(cptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP, ":%s.", deny->message);
1162     }
1163   }
1164   else if ((agline = gline_lookup(cptr, 0)) && GlineIsActive(agline)) {
1165     /*
1166      * find active glines
1167      * added a check against the user's IP address to find_gline() -Kev
1168      */
1169     send_reply(cptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP, ":%s.", GlineReason(agline));
1170   }
1171   else
1172     agline = 0;          /* if a gline was found, it was inactive */
1173
1174   if (deny)
1175     return -1;
1176   if (agline)
1177     return -2;
1178     
1179   return 0;
1180 }
1181
1182 /*
1183  * Ordinary client access check. Look for conf lines which have the same
1184  * status as the flags passed.
1185  */
1186 enum AuthorizationCheckResult conf_check_client(struct Client *cptr)
1187 {
1188   enum AuthorizationCheckResult acr = ACR_OK;
1189
1190   ClearAccess(cptr);
1191
1192   if ((acr = attach_iline(cptr))) {
1193     Debug((DEBUG_DNS, "ch_cl: access denied: %s[%s]", 
1194           cli_name(cptr), cli_sockhost(cptr)));
1195     return acr;
1196   }
1197   return ACR_OK;
1198 }
1199
1200 /*
1201  * check_server()
1202  *
1203  * Check access for a server given its name (passed in cptr struct).
1204  * Must check for all C/N lines which have a name which matches the
1205  * name given and a host which matches. A host alias which is the
1206  * same as the server name is also acceptable in the host field of a
1207  * C/N line.
1208  *
1209  * Returns
1210  *  0 = Success
1211  * -1 = Access denied
1212  * -2 = Bad socket.
1213  */
1214 int conf_check_server(struct Client *cptr)
1215 {
1216   struct ConfItem* c_conf = NULL;
1217   struct SLink*    lp;
1218
1219   Debug((DEBUG_DNS, "sv_cl: check access for %s[%s]", 
1220         cli_name(cptr), cli_sockhost(cptr)));
1221
1222   if (IsUnknown(cptr) && !attach_confs_byname(cptr, cli_name(cptr), CONF_SERVER)) {
1223     Debug((DEBUG_DNS, "No C/N lines for %s", cli_sockhost(cptr)));
1224     return -1;
1225   }
1226   lp = cli_confs(cptr);
1227   /*
1228    * We initiated this connection so the client should have a C and N
1229    * line already attached after passing through the connect_server()
1230    * function earlier.
1231    */
1232   if (IsConnecting(cptr) || IsHandshake(cptr)) {
1233     c_conf = find_conf_byname(lp, cli_name(cptr), CONF_SERVER);
1234     if (!c_conf) {
1235       sendto_opmask_butone(0, SNO_OLDSNO, "Connect Error: lost C:line for %s",
1236                            cli_name(cptr));
1237       det_confs_butmask(cptr, 0);
1238       return -1;
1239     }
1240   }
1241
1242   ClearAccess(cptr);
1243
1244   if (!c_conf) {
1245     if (cli_dns_reply(cptr)) {
1246       int             i;
1247       struct hostent* hp = cli_dns_reply(cptr)->hp;
1248       const char*     name = hp->h_name;
1249       /*
1250        * If we are missing a C or N line from above, search for
1251        * it under all known hostnames we have for this ip#.
1252        */
1253       for (i = 0; name; name = hp->h_aliases[i++]) {
1254         if ((c_conf = find_conf_byhost(lp, name, CONF_SERVER))) {
1255           ircd_strncpy(cli_sockhost(cptr), name, HOSTLEN);
1256           break;
1257         }
1258       }
1259       if (!c_conf) {
1260         for (i = 0; hp->h_addr_list[i]; i++) {
1261           if ((c_conf = find_conf_byip(lp, hp->h_addr_list[i], CONF_SERVER)))
1262             break;
1263         }
1264       }
1265     }
1266     else {
1267       /*
1268        * Check for C lines with the hostname portion the ip number
1269        * of the host the server runs on. This also checks the case where
1270        * there is a server connecting from 'localhost'.
1271        */
1272       c_conf = find_conf_byhost(lp, cli_sockhost(cptr), CONF_SERVER);
1273     }
1274   }
1275   /*
1276    * Attach by IP# only if all other checks have failed.
1277    * It is quite possible to get here with the strange things that can
1278    * happen when using DNS in the way the irc server does. -avalon
1279    */
1280   if (!c_conf)
1281     c_conf = find_conf_byip(lp, (const char*) &(cli_ip(cptr)), CONF_SERVER);
1282   /*
1283    * detach all conf lines that got attached by attach_confs()
1284    */
1285   det_confs_butmask(cptr, 0);
1286   /*
1287    * if no C or no N lines, then deny access
1288    */
1289   if (!c_conf) {
1290     Debug((DEBUG_DNS, "sv_cl: access denied: %s[%s@%s]",
1291           cli_name(cptr), cli_username(cptr), cli_sockhost(cptr)));
1292     return -1;
1293   }
1294   ircd_strncpy(cli_name(cptr), c_conf->name, HOSTLEN);
1295   /*
1296    * attach the C and N lines to the client structure for later use.
1297    */
1298   attach_conf(cptr, c_conf);
1299   attach_confs_byname(cptr, cli_name(cptr), CONF_HUB | CONF_LEAF | CONF_UWORLD);
1300
1301   if (INADDR_NONE == c_conf->ipnum.s_addr)
1302     c_conf->ipnum.s_addr = cli_ip(cptr).s_addr;
1303
1304   Debug((DEBUG_DNS, "sv_cl: access ok: %s[%s]", cli_name(cptr), cli_sockhost(cptr)));
1305   return 0;
1306 }
1307