Allow multiple server entries in a CRule and multiple vhosts in a Port.
[ircu2.10.12-pk.git] / ircd / ircd_parser.y
1 /*
2  * ircd_parser.y: A yacc/bison parser for ircd config files.
3  * This is part of ircu, an Internet Relay Chat server.
4  * The contents of this file are Copyright 2001 Diane Bruce,
5  * Andrew Miller, the ircd-hybrid team and the ircu team.
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 2 of the License, or
9  *  (at your option) 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19  *  USA.
20  * $Id$
21  */
22 %{
23
24 #include "config.h"
25 #include "s_conf.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_auth.h"
50 #include "s_bsd.h"
51 #include "s_conf.h"
52 #include "s_debug.h"
53 #include "s_misc.h"
54 #include "send.h"
55 #include "struct.h"
56 #include "sys.h"
57 #include <stdlib.h>
58 #include <stdio.h>
59 #include <string.h>
60 #include <arpa/inet.h>
61
62 #define MAX_STRINGS 80 /* Maximum number of feature params. */
63 #define USE_IPV4 (1 << 16)
64 #define USE_IPV6 (1 << 17)
65
66   extern struct LocalConf   localConf;
67   extern struct DenyConf*   denyConfList;
68   extern struct CRuleConf*  cruleConfList;
69   extern struct ServerConf* serverConfList;
70   extern struct s_map*      GlobalServiceMapList;
71   extern struct qline*      GlobalQuarantineList;
72
73   int yylex(void);
74   /* Now all the globals we need :/... */
75   int tping, tconn, maxlinks, sendq, port, invert, stringno, flags;
76   char *name, *pass, *host, *ip, *username, *origin, *hub_limit;
77   struct SLink *hosts;
78   char *stringlist[MAX_STRINGS];
79   struct ListenerFlags listen_flags;
80   struct ConnectionClass *c_class;
81   struct DenyConf *dconf;
82   struct ServerConf *sconf;
83   struct s_map *smap;
84   struct Privs privs;
85   struct Privs privs_dirty;
86
87 static void parse_error(char *pattern,...) {
88   static char error_buffer[1024];
89   va_list vl;
90   va_start(vl,pattern);
91   ircd_vsnprintf(NULL, error_buffer, sizeof(error_buffer), pattern, vl);
92   va_end(vl);
93   yyerror(error_buffer);
94 }
95
96 static void free_slist(struct SLink **link) {
97   struct SLink *next;
98   while (*link != NULL) {
99     next = (*link)->next;
100     MyFree((*link)->value.cp);
101     free_link(*link);
102     *link = next;
103   }
104 }
105
106 %}
107
108 %token <text> QSTRING
109 %token <num> NUMBER
110
111 %token GENERAL
112 %token ADMIN
113 %token LOCATION
114 %token CONTACT
115 %token CONNECT
116 %token CLASS
117 %token CHANNEL
118 %token PINGFREQ
119 %token CONNECTFREQ
120 %token MAXLINKS
121 %token MAXHOPS
122 %token SENDQ
123 %token NAME
124 %token HOST
125 %token IP
126 %token USERNAME
127 %token PASS
128 %token LOCAL
129 %token SECONDS
130 %token MINUTES
131 %token HOURS
132 %token DAYS
133 %token WEEKS
134 %token MONTHS
135 %token YEARS
136 %token DECADES
137 %token BYTES
138 %token KBYTES
139 %token MBYTES
140 %token GBYTES
141 %token TBYTES
142 %token SERVER
143 %token PORT
144 %token MASK
145 %token HUB
146 %token LEAF
147 %token UWORLD
148 %token YES
149 %token NO
150 %token OPER
151 %token VHOST
152 %token HIDDEN
153 %token MOTD
154 %token JUPE
155 %token NICK
156 %token NUMERIC
157 %token DESCRIPTION
158 %token CLIENT
159 %token KILL
160 %token CRULE
161 %token REAL
162 %token REASON
163 %token TFILE
164 %token RULE
165 %token ALL
166 %token FEATURES
167 %token QUARANTINE
168 %token PSEUDO
169 %token PREPEND
170 %token USERMODE
171 %token IAUTH
172 %token TIMEOUT
173 %token FAST
174 %token AUTOCONNECT
175 %token PROGRAM
176 %token TOK_IPV4 TOK_IPV6
177 %token DNS
178 /* and now a lot of privileges... */
179 %token TPRIV_CHAN_LIMIT TPRIV_MODE_LCHAN TPRIV_DEOP_LCHAN TPRIV_WALK_LCHAN
180 %token TPRIV_LOCAL_KILL TPRIV_REHASH TPRIV_RESTART TPRIV_DIE
181 %token TPRIV_GLINE TPRIV_LOCAL_GLINE TPRIV_LOCAL_JUPE TPRIV_LOCAL_BADCHAN
182 %token TPRIV_LOCAL_OPMODE TPRIV_OPMODE TPRIV_SET TPRIV_WHOX TPRIV_BADCHAN
183 %token TPRIV_SEE_CHAN TPRIV_SHOW_INVIS TPRIV_SHOW_ALL_INVIS TPRIV_PROPAGATE
184 %token TPRIV_UNLIMIT_QUERY TPRIV_DISPLAY TPRIV_SEE_OPERS TPRIV_WIDE_GLINE
185 %token TPRIV_FORCE_OPMODE TPRIV_FORCE_LOCAL_OPMODE TPRIV_APASS_OPMODE
186 %token TPRIV_LIST_CHAN
187 /* and some types... */
188 %type <num> sizespec
189 %type <num> timespec timefactor factoredtimes factoredtime
190 %type <num> expr yesorno privtype address_family
191 %left '+' '-'
192 %left '*' '/'
193
194 %union{
195  char *text;
196  int num;
197 }
198
199 %%
200 /* Blocks in the config file... */
201 blocks: blocks block | block;
202 block: adminblock | generalblock | classblock | connectblock |
203        uworldblock | operblock | portblock | jupeblock | clientblock |
204        killblock | cruleblock | motdblock | featuresblock | quarantineblock |
205        pseudoblock | iauthblock | error ';';
206
207 /* The timespec, sizespec and expr was ripped straight from
208  * ircd-hybrid-7. */
209 timespec: expr | factoredtimes;
210
211 factoredtimes: factoredtimes factoredtime
212 {
213   $$ = $1 + $2;
214 } | factoredtime;
215
216 factoredtime: expr timefactor
217 {
218   $$ = $1 * $2;
219 };
220
221 timefactor: SECONDS { $$ = 1; }
222 | MINUTES { $$ = 60; }
223 | HOURS { $$ = 60 * 60; }
224 | DAYS { $$ = 60 * 60 * 24; }
225 | WEEKS { $$ = 60 * 60 * 24 * 7; }
226 | MONTHS { $$ = 60 * 60 * 24 * 7 * 4; }
227 | YEARS { $$ = 60 * 60 * 24 * 365; }
228 | DECADES { $$ = 60 * 60 * 24 * 365 * 10; };
229
230
231 sizespec:       expr    {
232                         $$ = $1;
233                 }
234                 | expr BYTES  { 
235                         $$ = $1;
236                 }
237                 | expr KBYTES {
238                         $$ = $1 * 1024;
239                 }
240                 | expr MBYTES {
241                         $$ = $1 * 1024 * 1024;
242                 }
243                 | expr GBYTES {
244                         $$ = $1 * 1024 * 1024 * 1024;
245                 }
246                 | expr TBYTES {
247                         $$ = $1 * 1024 * 1024 * 1024;
248                 }
249                 ;
250
251 /* this is an arithmetic expression */
252 expr: NUMBER
253                 { 
254                         $$ = $1;
255                 }
256                 | expr '+' expr { 
257                         $$ = $1 + $3;
258                 }
259                 | expr '-' expr { 
260                         $$ = $1 - $3;
261                 }
262                 | expr '*' expr { 
263                         $$ = $1 * $3;
264                 }
265                 | expr '/' expr { 
266                         $$ = $1 / $3;
267                 }
268 /* leave this out until we find why it makes BSD yacc dump core -larne
269                 | '-' expr  %prec NEG {
270                         $$ = -$2;
271                 } */
272                 | '(' expr ')' {
273                         $$ = $2;
274                 }
275                 ;
276
277 jupeblock: JUPE '{' jupeitems '}' ';' ;
278 jupeitems: jupeitem jupeitems | jupeitem;
279 jupeitem: jupenick;
280 jupenick: NICK '=' QSTRING ';'
281 {
282   addNickJupes($3);
283   MyFree($3);
284 };
285
286 generalblock: GENERAL
287 {
288     /* Zero out the vhost addresses, in case they were removed. */
289     memset(&VirtualHost_v4.addr, 0, sizeof(VirtualHost_v4.addr));
290     memset(&VirtualHost_v6.addr, 0, sizeof(VirtualHost_v6.addr));
291 } '{' generalitems '}' ';' {
292   if (localConf.name == NULL)
293     parse_error("Your General block must contain a name.");
294   if (localConf.numeric == 0)
295     parse_error("Your General block must contain a numeric (between 1 and 4095).");
296 };
297 generalitems: generalitem generalitems | generalitem;
298 generalitem: generalnumeric | generalname | generalvhost | generaldesc
299   | generaldnsvhost | generaldnsserver;
300
301 generalnumeric: NUMERIC '=' NUMBER ';'
302 {
303   if (localConf.numeric == 0)
304     localConf.numeric = $3;
305   else if (localConf.numeric != $3)
306     parse_error("Redefinition of server numeric %i (%i)", $3,
307                 localConf.numeric);
308 };
309
310 generalname: NAME '=' QSTRING ';'
311 {
312   if (localConf.name == NULL)
313     localConf.name = $3;
314   else {
315     if (strcmp(localConf.name, $3))
316       parse_error("Redefinition of server name %s (%s)", $3,
317                   localConf.name);
318     MyFree($3);
319   }
320 };
321
322 generaldesc: DESCRIPTION '=' QSTRING ';'
323 {
324   MyFree(localConf.description);
325   localConf.description = $3;
326   ircd_strncpy(cli_info(&me), $3, REALLEN);
327 };
328
329 generalvhost: VHOST '=' QSTRING ';'
330 {
331   struct irc_in_addr addr;
332   char *vhost = $3;
333
334   if (!strcmp(vhost, "*")) {
335     /* This traditionally meant bind to all interfaces and connect
336      * from the default. */
337   } else if (!ircd_aton(&addr, vhost))
338     parse_error("Invalid virtual host '%s'.", vhost);
339   else if (irc_in_addr_is_ipv4(&addr))
340     memcpy(&VirtualHost_v4.addr, &addr, sizeof(addr));
341   else
342     memcpy(&VirtualHost_v6.addr, &addr, sizeof(addr));
343   MyFree(vhost);
344 };
345
346 generaldnsvhost: DNS VHOST '=' address_family QSTRING ';'
347 {
348   struct irc_in_addr addr;
349   int families = $4;
350   char *vhost = $5;
351
352   if (!strcmp(vhost, "*")) {
353     /* Let the operating system assign the default. */
354   } else if (!ircd_aton(&addr, vhost))
355     parse_error("Invalid DNS virtual host '%s'.", vhost);
356   else
357   {
358     if ((families & USE_IPV4)
359         || (!families && irc_in_addr_is_ipv4(&addr)))
360       memcpy(&VirtualHost_dns_v4.addr, &addr, sizeof(addr));
361     if ((families & USE_IPV6)
362         || (!families && !irc_in_addr_is_ipv4(&addr)))
363       memcpy(&VirtualHost_dns_v6.addr, &addr, sizeof(addr));
364   }
365   MyFree(vhost);
366 };
367
368 generaldnsserver: DNS SERVER '=' QSTRING ';'
369 {
370   char *server = $4;
371
372   add_nameserver(server);
373   MyFree(server);
374 };
375
376 adminblock: ADMIN
377 {
378   MyFree(localConf.location1);
379   MyFree(localConf.location2);
380   MyFree(localConf.contact);
381   localConf.location1 = localConf.location2 = localConf.contact = NULL;
382 }
383 '{' adminitems '}' ';'
384 {
385   if (localConf.location1 == NULL)
386     DupString(localConf.location1, "");
387   if (localConf.location2 == NULL)
388     DupString(localConf.location2, "");
389   if (localConf.contact == NULL)
390     DupString(localConf.contact, "");
391 };
392 adminitems: adminitems adminitem | adminitem;
393 adminitem: adminlocation | admincontact;
394 adminlocation: LOCATION '=' QSTRING ';'
395 {
396   if (localConf.location1 == NULL)
397     localConf.location1 = $3;
398   else if (localConf.location2 == NULL)
399     localConf.location2 = $3;
400   else /* Otherwise just drop it. -A1kmm */
401     MyFree($3);
402 };
403 admincontact: CONTACT '=' QSTRING ';'
404 {
405  MyFree(localConf.contact);
406  localConf.contact = $3;
407 };
408
409 classblock: CLASS {
410   tping = 90;
411 } '{' classitems '}' ';'
412 {
413   if (name != NULL)
414   {
415     struct ConnectionClass *c_class;
416     add_class(name, tping, tconn, maxlinks, sendq);
417     c_class = find_class(name);
418     MyFree(c_class->default_umode);
419     c_class->default_umode = pass;
420     memcpy(&c_class->privs, &privs, sizeof(c_class->privs));
421     memcpy(&c_class->privs_dirty, &privs_dirty, sizeof(c_class->privs_dirty));
422   }
423   else {
424    parse_error("Missing name in class block");
425   }
426   name = NULL;
427   pass = NULL;
428   tconn = 0;
429   maxlinks = 0;
430   sendq = 0;
431   memset(&privs, 0, sizeof(privs));
432   memset(&privs_dirty, 0, sizeof(privs_dirty));
433 };
434 classitems: classitem classitems | classitem;
435 classitem: classname | classpingfreq | classconnfreq | classmaxlinks |
436            classsendq | classusermode | priv;
437 classname: NAME '=' QSTRING ';'
438 {
439   MyFree(name);
440   name = $3;
441 };
442 classpingfreq: PINGFREQ '=' timespec ';'
443 {
444   tping = $3;
445 };
446 classconnfreq: CONNECTFREQ '=' timespec ';'
447 {
448   tconn = $3;
449 };
450 classmaxlinks: MAXLINKS '=' expr ';'
451 {
452   maxlinks = $3;
453 };
454 classsendq: SENDQ '=' sizespec ';'
455 {
456   sendq = $3;
457 };
458 classusermode: USERMODE '=' QSTRING ';'
459 {
460   MyFree(pass);
461   pass = $3;
462 };
463
464 connectblock: CONNECT
465 {
466  maxlinks = 65535;
467  flags = CONF_AUTOCONNECT;
468 } '{' connectitems '}' ';'
469 {
470  struct ConfItem *aconf = NULL;
471  if (name == NULL)
472   parse_error("Missing name in connect block");
473  else if (pass == NULL)
474   parse_error("Missing password in connect block");
475  else if (strlen(pass) > PASSWDLEN)
476   parse_error("Password too long in connect block");
477  else if (host == NULL)
478   parse_error("Missing host in connect block");
479  else if (strchr(host, '*') || strchr(host, '?'))
480   parse_error("Invalid host '%s' in connect block", host);
481  else if (c_class == NULL)
482   parse_error("Missing or non-existent class in connect block");
483  else {
484    aconf = make_conf(CONF_SERVER);
485    aconf->name = name;
486    aconf->origin_name = origin;
487    aconf->passwd = pass;
488    aconf->conn_class = c_class;
489    aconf->address.port = port;
490    aconf->host = host;
491    aconf->maximum = maxlinks;
492    aconf->hub_limit = hub_limit;
493    aconf->flags = flags;
494    lookup_confhost(aconf);
495  }
496  if (!aconf) {
497    MyFree(name);
498    MyFree(pass);
499    MyFree(host);
500    MyFree(origin);
501    MyFree(hub_limit);
502  }
503  name = pass = host = origin = hub_limit = NULL;
504  c_class = NULL;
505  port = flags = 0;
506 };
507 connectitems: connectitem connectitems | connectitem;
508 connectitem: connectname | connectpass | connectclass | connecthost
509               | connectport | connectvhost | connectleaf | connecthub
510               | connecthublimit | connectmaxhops | connectauto;
511 connectname: NAME '=' QSTRING ';'
512 {
513  MyFree(name);
514  name = $3;
515 };
516 connectpass: PASS '=' QSTRING ';'
517 {
518  MyFree(pass);
519  pass = $3;
520 };
521 connectclass: CLASS '=' QSTRING ';'
522 {
523  c_class = find_class($3);
524  if (!c_class)
525   parse_error("No such connection class '%s' for Connect block", $3);
526  MyFree($3);
527 };
528 connecthost: HOST '=' QSTRING ';'
529 {
530  MyFree(host);
531  host = $3;
532 };
533 connectport: PORT '=' NUMBER ';'
534 {
535  port = $3;
536 };
537 connectvhost: VHOST '=' QSTRING ';'
538 {
539  MyFree(origin);
540  origin = $3;
541 };
542 connectleaf: LEAF ';'
543 {
544  maxlinks = 0;
545 };
546 connecthub: HUB ';'
547 {
548  MyFree(hub_limit);
549  DupString(hub_limit, "*");
550 };
551 connecthublimit: HUB '=' QSTRING ';'
552 {
553  MyFree(hub_limit);
554  hub_limit = $3;
555 };
556 connectmaxhops: MAXHOPS '=' expr ';'
557 {
558   maxlinks = $3;
559 };
560 connectauto: AUTOCONNECT '=' YES ';' { flags |= CONF_AUTOCONNECT; }
561  | AUTOCONNECT '=' NO ';' { flags &= ~CONF_AUTOCONNECT; };
562
563 uworldblock: UWORLD '{' uworlditems '}' ';';
564 uworlditems: uworlditem uworlditems | uworlditem;
565 uworlditem: uworldname;
566 uworldname: NAME '=' QSTRING ';'
567 {
568   make_conf(CONF_UWORLD)->host = $3;
569 };
570
571 operblock: OPER '{' operitems '}' ';'
572 {
573   struct ConfItem *aconf = NULL;
574   struct SLink *link;
575
576   if (name == NULL)
577     parse_error("Missing name in operator block");
578   else if (pass == NULL)
579     parse_error("Missing password in operator block");
580   /* Do not check password length because it may be crypted. */
581   else if (hosts == NULL)
582     parse_error("Missing host(s) in operator block");
583   else if (c_class == NULL)
584     parse_error("Invalid or missing class in operator block");
585   else if (!FlagHas(&privs_dirty, PRIV_PROPAGATE)
586            && !FlagHas(&c_class->privs_dirty, PRIV_PROPAGATE))
587     parse_error("Operator block for %s and class %s have no LOCAL setting", name, c_class->cc_name);
588   else for (link = hosts; link != NULL; link = link->next) {
589     aconf = make_conf(CONF_OPERATOR);
590     DupString(aconf->name, name);
591     DupString(aconf->passwd, pass);
592     conf_parse_userhost(aconf, link->value.cp);
593     aconf->conn_class = c_class;
594     memcpy(&aconf->privs, &privs, sizeof(aconf->privs));
595     memcpy(&aconf->privs_dirty, &privs_dirty, sizeof(aconf->privs_dirty));
596   }
597   MyFree(name);
598   MyFree(pass);
599   free_slist(&hosts);
600   name = pass = NULL;
601   c_class = NULL;
602   memset(&privs, 0, sizeof(privs));
603   memset(&privs_dirty, 0, sizeof(privs_dirty));
604 };
605 operitems: operitem | operitems operitem;
606 operitem: opername | operpass | operhost | operclass | priv;
607 opername: NAME '=' QSTRING ';'
608 {
609   MyFree(name);
610   name = $3;
611 };
612 operpass: PASS '=' QSTRING ';'
613 {
614   MyFree(pass);
615   pass = $3;
616 };
617 operhost: HOST '=' QSTRING ';'
618 {
619  struct SLink *link;
620  link = make_link();
621  if (!strchr($3, '@'))
622  {
623    int uh_len;
624    link->value.cp = (char*) MyMalloc((uh_len = strlen($3)+3));
625    ircd_snprintf(0, link->value.cp, uh_len, "*@%s", $3);
626  }
627  else
628    DupString(link->value.cp, $3);
629  MyFree($3);
630  link->next = hosts;
631  hosts = link;
632 };
633 operclass: CLASS '=' QSTRING ';'
634 {
635  c_class = find_class($3);
636  if (!c_class)
637   parse_error("No such connection class '%s' for Operator block", $3);
638  MyFree($3);
639 };
640
641 priv: privtype '=' yesorno ';'
642 {
643   FlagSet(&privs_dirty, $1);
644   if (($3 == 1) ^ invert)
645     FlagSet(&privs, $1);
646   else
647     FlagClr(&privs, $1);
648   invert = 0;
649 };
650
651 privtype: TPRIV_CHAN_LIMIT { $$ = PRIV_CHAN_LIMIT; } |
652           TPRIV_MODE_LCHAN { $$ = PRIV_MODE_LCHAN; } |
653           TPRIV_DEOP_LCHAN { $$ = PRIV_DEOP_LCHAN; } |
654           TPRIV_WALK_LCHAN { $$ = PRIV_WALK_LCHAN; } |
655           KILL { $$ = PRIV_KILL; } |
656           TPRIV_LOCAL_KILL { $$ = PRIV_LOCAL_KILL; } |
657           TPRIV_REHASH { $$ = PRIV_REHASH; } |
658           TPRIV_RESTART { $$ = PRIV_RESTART; } |
659           TPRIV_DIE { $$ = PRIV_DIE; } |
660           TPRIV_GLINE { $$ = PRIV_GLINE; } |
661           TPRIV_LOCAL_GLINE { $$ = PRIV_LOCAL_GLINE; } |
662           JUPE { $$ = PRIV_JUPE; } |
663           TPRIV_LOCAL_JUPE { $$ = PRIV_LOCAL_JUPE; } |
664           TPRIV_LOCAL_OPMODE { $$ = PRIV_LOCAL_OPMODE; } |
665           TPRIV_OPMODE { $$ = PRIV_OPMODE; }|
666           TPRIV_SET { $$ = PRIV_SET; } |
667           TPRIV_WHOX { $$ = PRIV_WHOX; } |
668           TPRIV_BADCHAN { $$ = PRIV_BADCHAN; } |
669           TPRIV_LOCAL_BADCHAN { $$ = PRIV_LOCAL_BADCHAN; } |
670           TPRIV_SEE_CHAN { $$ = PRIV_SEE_CHAN; } |
671           TPRIV_SHOW_INVIS { $$ = PRIV_SHOW_INVIS; } |
672           TPRIV_SHOW_ALL_INVIS { $$ = PRIV_SHOW_ALL_INVIS; } |
673           TPRIV_PROPAGATE { $$ = PRIV_PROPAGATE; } |
674           TPRIV_UNLIMIT_QUERY { $$ = PRIV_UNLIMIT_QUERY; } |
675           TPRIV_DISPLAY { $$ = PRIV_DISPLAY; } |
676           TPRIV_SEE_OPERS { $$ = PRIV_SEE_OPERS; } |
677           TPRIV_WIDE_GLINE { $$ = PRIV_WIDE_GLINE; } |
678           TPRIV_LIST_CHAN { $$ = PRIV_LIST_CHAN; } |
679           LOCAL { $$ = PRIV_PROPAGATE; invert = 1; } |
680           TPRIV_FORCE_OPMODE { $$ = PRIV_FORCE_OPMODE; } |
681           TPRIV_FORCE_LOCAL_OPMODE { $$ = PRIV_FORCE_LOCAL_OPMODE; } |
682           TPRIV_APASS_OPMODE { $$ = PRIV_APASS_OPMODE; } ;
683
684 yesorno: YES { $$ = 1; } | NO { $$ = 0; };
685
686 /* not a recursive definition because some pedant will just come along
687  * and whine that the parser accepts "ipv4 ipv4 ipv4 ipv4"
688  */
689 address_family:
690                { $$ = 0; }
691     | TOK_IPV4 { $$ = USE_IPV4; }
692     | TOK_IPV6 { $$ = USE_IPV6; }
693     | TOK_IPV4 TOK_IPV6 { $$ = USE_IPV4 | USE_IPV6; }
694     | TOK_IPV6 TOK_IPV4 { $$ = USE_IPV6 | USE_IPV4; }
695     ;
696
697 /* The port block... */
698 portblock: PORT '{' portitems '}' ';' {
699   struct ListenerFlags flags_here;
700   struct SLink *link;
701   for (link = hosts; link != NULL; link = link->next) {
702     memcpy(&flags_here, &listen_flags, sizeof(&flags_here));
703     switch (link->flags & (USE_IPV4 | USE_IPV6)) {
704     case USE_IPV4:
705       FlagSet(&flags_here, LISTEN_IPV4);
706       break;
707     case USE_IPV6:
708       FlagSet(&flags_here, LISTEN_IPV6);
709       break;
710     default: /* 0 or USE_IPV4|USE_IPV6 */
711       FlagSet(&flags_here, LISTEN_IPV4);
712       FlagSet(&flags_here, LISTEN_IPV6);
713       break;
714     }
715     if (link->flags & 65535)
716       port = link->flags & 65535;
717     add_listener(port, link->value.cp, pass, &flags_here);
718   }
719   free_slist(&hosts);
720   MyFree(pass);
721   memset(&listen_flags, 0, sizeof(listen_flags));
722   pass = NULL;
723   port = 0;
724 };
725 portitems: portitem portitems | portitem;
726 portitem: portnumber | portvhost | portvhostnumber | portmask | portserver | porthidden;
727 portnumber: PORT '=' address_family NUMBER ';'
728 {
729   if ($4 < 1 || $4 > 65535) {
730     parse_error("Port %d is out of range", port);
731   } else {
732     port = $3 | $4;
733     if (hosts && (0 == (hosts->flags & 65535)))
734       hosts->flags = (hosts->flags & ~65535) | port;
735   }
736 };
737
738 portvhost: VHOST '=' address_family QSTRING ';'
739 {
740   struct SLink *link;
741   link = make_link();
742   link->value.cp = $4;
743   link->flags = $3 | port;
744   link->next = hosts;
745   hosts = link;
746 };
747
748 portvhostnumber: VHOST '=' address_family QSTRING NUMBER ';'
749 {
750   if ($5 < 1 || $5 > 65535) {
751     parse_error("Port %d is out of range", port);
752   } else {
753     struct SLink *link;
754     link = make_link();
755     link->value.cp = $4;
756     link->flags = $3 | $5;
757     link->next = hosts;
758     hosts = link;
759   }
760 };
761
762 portmask: MASK '=' QSTRING ';'
763 {
764   MyFree(pass);
765   pass = $3;
766 };
767
768 portserver: SERVER '=' YES ';'
769 {
770   FlagSet(&listen_flags, LISTEN_SERVER);
771 } | SERVER '=' NO ';'
772 {
773   FlagClr(&listen_flags, LISTEN_SERVER);
774 };
775
776 porthidden: HIDDEN '=' YES ';'
777 {
778   FlagSet(&listen_flags, LISTEN_HIDDEN);
779 } | HIDDEN '=' NO ';'
780 {
781   FlagClr(&listen_flags, LISTEN_HIDDEN);
782 };
783
784 clientblock: CLIENT
785 {
786   maxlinks = 65535;
787   port = 0;
788 }
789 '{' clientitems '}' ';'
790 {
791   struct ConfItem *aconf = 0;
792   struct irc_in_addr addr;
793   unsigned char addrbits = 0;
794
795   if (!c_class)
796     parse_error("Invalid or missing class in Client block");
797   else if (pass && strlen(pass) > PASSWDLEN)
798     parse_error("Password too long in connect block");
799   else if (ip && !ipmask_parse(ip, &addr, &addrbits))
800     parse_error("Invalid IP address %s in Client block", ip);
801   else {
802     aconf = make_conf(CONF_CLIENT);
803     aconf->username = username;
804     aconf->host = host;
805     if (ip)
806       memcpy(&aconf->address.addr, &addr, sizeof(aconf->address.addr));
807     else
808       memset(&aconf->address.addr, 0, sizeof(aconf->address.addr));
809     aconf->address.port = port;
810     aconf->addrbits = addrbits;
811     aconf->name = ip;
812     aconf->conn_class = c_class;
813     aconf->maximum = maxlinks;
814     aconf->passwd = pass;
815   }
816   if (!aconf) {
817     MyFree(username);
818     MyFree(host);
819     MyFree(ip);
820     MyFree(pass);
821   }
822   host = NULL;
823   username = NULL;
824   c_class = NULL;
825   ip = NULL;
826   pass = NULL;
827   port = 0;
828 };
829 clientitems: clientitem clientitems | clientitem;
830 clientitem: clienthost | clientip | clientusername | clientclass | clientpass | clientmaxlinks | clientport;
831 clienthost: HOST '=' QSTRING ';'
832 {
833   char *sep = strchr($3, '@');
834   MyFree(host);
835   if (sep) {
836     *sep++ = '\0';
837     MyFree(username);
838     DupString(host, sep);
839     username = $3;
840   } else {
841     host = $3;
842   }
843 };
844 clientip: IP '=' QSTRING ';'
845 {
846   char *sep;
847   sep = strchr($3, '@');
848   MyFree(ip);
849   if (sep) {
850     *sep++ = '\0';
851     MyFree(username);
852     DupString(ip, sep);
853     username = $3;
854   } else {
855     ip = $3;
856   }
857 };
858 clientusername: USERNAME '=' QSTRING ';'
859 {
860   MyFree(username);
861   username = $3;
862 };
863 clientclass: CLASS '=' QSTRING ';'
864 {
865   c_class = find_class($3);
866   if (!c_class)
867     parse_error("No such connection class '%s' for Client block", $3);
868   MyFree($3);
869 };
870 clientpass: PASS '=' QSTRING ';'
871 {
872   MyFree(pass);
873   pass = $3;
874 };
875 clientmaxlinks: MAXLINKS '=' expr ';'
876 {
877   maxlinks = $3;
878 };
879 clientport: PORT '=' expr ';'
880 {
881   port = $3;
882 };
883
884 killblock: KILL
885 {
886   dconf = (struct DenyConf*) MyCalloc(1, sizeof(*dconf));
887 } '{' killitems '}' ';'
888 {
889   if (dconf->usermask || dconf->hostmask ||dconf->realmask) {
890     dconf->next = denyConfList;
891     denyConfList = dconf;
892   }
893   else
894   {
895     MyFree(dconf->usermask);
896     MyFree(dconf->hostmask);
897     MyFree(dconf->realmask);
898     MyFree(dconf->message);
899     MyFree(dconf);
900     parse_error("Kill block must match on at least one of username, host or realname");
901   }
902   dconf = NULL;
903 };
904 killitems: killitem killitems | killitem;
905 killitem: killuhost | killreal | killusername | killreasonfile | killreason;
906 killuhost: HOST '=' QSTRING ';'
907 {
908   char *h;
909   MyFree(dconf->hostmask);
910   MyFree(dconf->usermask);
911   if ((h = strchr($3, '@')) == NULL)
912   {
913     DupString(dconf->usermask, "*");
914     dconf->hostmask = $3;
915   }
916   else
917   {
918     *h++ = '\0';
919     DupString(dconf->hostmask, h);
920     dconf->usermask = $3;
921   }
922   ipmask_parse(dconf->hostmask, &dconf->address, &dconf->bits);
923 };
924
925 killusername: USERNAME '=' QSTRING ';'
926 {
927   MyFree(dconf->usermask);
928   dconf->usermask = $3;
929 };
930
931 killreal: REAL '=' QSTRING ';'
932 {
933  MyFree(dconf->realmask);
934  dconf->realmask = $3;
935 };
936
937 killreason: REASON '=' QSTRING ';'
938 {
939  dconf->flags &= ~DENY_FLAGS_FILE;
940  MyFree(dconf->message);
941  dconf->message = $3;
942 };
943
944 killreasonfile: TFILE '=' QSTRING ';'
945 {
946  dconf->flags |= DENY_FLAGS_FILE;
947  MyFree(dconf->message);
948  dconf->message = $3;
949 };
950
951 cruleblock: CRULE
952 {
953   tconn = CRULE_AUTO;
954 } '{' cruleitems '}' ';'
955 {
956   struct CRuleNode *node = NULL;
957   struct SLink *link;
958
959   if (hosts == NULL)
960     parse_error("Missing server(s) in crule block");
961   else if (pass == NULL)
962     parse_error("Missing rule in crule block");
963   else if ((node = crule_parse(pass)) == NULL)
964     parse_error("Invalid rule '%s' in crule block", pass);
965   else for (link = hosts; link != NULL; link = link->next)
966   {
967     struct CRuleConf *p = (struct CRuleConf*) MyMalloc(sizeof(*p));
968     if (node == NULL)
969       node = crule_parse(pass);
970     DupString(p->hostmask, link->value.cp);
971     DupString(p->rule, pass);
972     p->type = tconn;
973     p->node = node;
974     node = NULL;
975     p->next = cruleConfList;
976     cruleConfList = p;
977   }
978   free_slist(&hosts);
979   MyFree(pass);
980   pass = NULL;
981   tconn = 0;
982 };
983
984 cruleitems: cruleitem cruleitems | cruleitem;
985 cruleitem: cruleserver | crulerule | cruleall;
986
987 cruleserver: SERVER '=' QSTRING ';'
988 {
989   struct SLink *link;
990   link = make_link();
991   link->value.cp = $3;
992   link->next = hosts;
993   hosts = link;
994 };
995
996 crulerule: RULE '=' QSTRING ';'
997 {
998  MyFree(pass);
999  pass = $3;
1000 };
1001
1002 cruleall: ALL '=' YES ';'
1003 {
1004  tconn = CRULE_ALL;
1005 } | ALL '=' NO ';'
1006 {
1007  tconn = CRULE_AUTO;
1008 };
1009
1010 motdblock: MOTD '{' motditems '}' ';'
1011 {
1012   struct SLink *link;
1013   if (pass != NULL)
1014     for (link = hosts; link != NULL; link = link->next)
1015       motd_add(link->value.cp, pass);
1016   free_slist(&hosts);
1017   MyFree(pass);
1018   pass = NULL;
1019 };
1020
1021 motditems: motditem motditems | motditem;
1022 motditem: motdhost | motdfile;
1023 motdhost: HOST '=' QSTRING ';'
1024 {
1025   struct SLink *link;
1026   link = make_link();
1027   link->value.cp = $3;
1028   link->next = hosts;
1029   hosts = link;
1030 };
1031
1032 motdfile: TFILE '=' QSTRING ';'
1033 {
1034   MyFree(pass);
1035   pass = $3;
1036 };
1037
1038 featuresblock: FEATURES '{' featureitems '}' ';';
1039 featureitems: featureitems featureitem | featureitem;
1040
1041 featureitem: QSTRING
1042 {
1043   stringlist[0] = $1;
1044   stringno = 1;
1045 } '=' stringlist ';' {
1046   unsigned int ii;
1047   feature_set(NULL, (const char * const *)stringlist, stringno);
1048   for (ii = 0; ii < stringno; ++ii)
1049     MyFree(stringlist[ii]);
1050 };
1051
1052 stringlist: stringlist extrastring | extrastring;
1053 extrastring: QSTRING
1054 {
1055   if (stringno < MAX_STRINGS)
1056     stringlist[stringno++] = $1;
1057   else
1058     MyFree($1);
1059 };
1060
1061 quarantineblock: QUARANTINE '{' quarantineitems '}' ';';
1062 quarantineitems: quarantineitems quarantineitem | quarantineitem;
1063 quarantineitem: QSTRING '=' QSTRING ';'
1064 {
1065   struct qline *qconf = MyCalloc(1, sizeof(*qconf));
1066   qconf->chname = $1;
1067   qconf->reason = $3;
1068   qconf->next = GlobalQuarantineList;
1069   GlobalQuarantineList = qconf;
1070 };
1071
1072 pseudoblock: PSEUDO QSTRING '{'
1073 {
1074   smap = MyCalloc(1, sizeof(struct s_map));
1075   smap->command = $2;
1076 }
1077 pseudoitems '}' ';'
1078 {
1079   int valid = 0;
1080
1081   if (!smap->name)
1082     parse_error("Missing name in pseudo %s block", smap->command);
1083   else if (!smap->services)
1084     parse_error("Missing nick in pseudo %s block", smap->command);
1085   else
1086     valid = 1;
1087   if (valid && register_mapping(smap))
1088   {
1089     smap->next = GlobalServiceMapList;
1090     GlobalServiceMapList = smap;
1091   }
1092   else
1093   {
1094     free_mapping(smap);
1095   }
1096   smap = NULL;
1097 };
1098
1099 pseudoitems: pseudoitem pseudoitems | pseudoitem;
1100 pseudoitem: pseudoname | pseudoprepend | pseudonick | pseudoflags;
1101 pseudoname: NAME '=' QSTRING ';'
1102 {
1103   MyFree(smap->name);
1104   smap->name = $3;
1105 };
1106 pseudoprepend: PREPEND '=' QSTRING ';'
1107 {
1108   MyFree(smap->prepend);
1109   smap->prepend = $3;
1110 };
1111 pseudonick: NICK '=' QSTRING ';'
1112 {
1113   char *sep = strchr($3, '@');
1114
1115   if (sep != NULL) {
1116     size_t slen = strlen($3);
1117     struct nick_host *nh = MyMalloc(sizeof(*nh) + slen);
1118     memcpy(nh->nick, $3, slen + 1);
1119     nh->nicklen = sep - $3;
1120     nh->next = smap->services;
1121     smap->services = nh;
1122   }
1123   MyFree($3);
1124 };
1125 pseudoflags: FAST ';'
1126 {
1127   smap->flags |= SMAP_FAST;
1128 };
1129
1130 iauthblock: IAUTH '{' iauthitems '}' ';'
1131 {
1132   auth_spawn(stringno, stringlist);
1133   while (stringno > 0)
1134     MyFree(stringlist[--stringno]);
1135 };
1136
1137 iauthitems: iauthitem iauthitems | iauthitem;
1138 iauthitem: iauthprogram;
1139 iauthprogram: PROGRAM '='
1140 {
1141   while (stringno > 0)
1142     MyFree(stringlist[--stringno]);
1143 } stringlist ';';