Author: Michael Poole <mdpoole@troilus.org>
[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  flags = CONF_AUTOCONNECT;
467 } '{' connectitems '}' ';'
468 {
469  struct ConfItem *aconf = NULL;
470  if (name == NULL)
471   parse_error("Missing name in connect block");
472  else if (pass == NULL)
473   parse_error("Missing password in connect block");
474  else if (strlen(pass) > PASSWDLEN)
475   parse_error("Password too long in connect block");
476  else if (host == NULL)
477   parse_error("Missing host in connect block");
478  else if (strchr(host, '*') || strchr(host, '?'))
479   parse_error("Invalid host '%s' in connect block", host);
480  else if (c_class == NULL)
481   parse_error("Missing or non-existent class in connect block");
482  else {
483    aconf = make_conf(CONF_SERVER);
484    aconf->name = name;
485    aconf->origin_name = origin;
486    aconf->passwd = pass;
487    aconf->conn_class = c_class;
488    aconf->address.port = port;
489    aconf->host = host;
490    /* If the user specified a hub allowance, but not maximum links,
491     * allow an effectively unlimited number of hops.
492     */
493    aconf->maximum = (hub_limit != NULL && maxlinks == 0) ? 65535 : maxlinks;
494    aconf->hub_limit = hub_limit;
495    aconf->flags = flags;
496    lookup_confhost(aconf);
497  }
498  if (!aconf) {
499    MyFree(name);
500    MyFree(pass);
501    MyFree(host);
502    MyFree(origin);
503    MyFree(hub_limit);
504  }
505  name = pass = host = origin = hub_limit = NULL;
506  c_class = NULL;
507  port = flags = maxlinks = 0;
508 };
509 connectitems: connectitem connectitems | connectitem;
510 connectitem: connectname | connectpass | connectclass | connecthost
511               | connectport | connectvhost | connectleaf | connecthub
512               | connecthublimit | connectmaxhops | connectauto;
513 connectname: NAME '=' QSTRING ';'
514 {
515  MyFree(name);
516  name = $3;
517 };
518 connectpass: PASS '=' QSTRING ';'
519 {
520  MyFree(pass);
521  pass = $3;
522 };
523 connectclass: CLASS '=' QSTRING ';'
524 {
525  c_class = find_class($3);
526  if (!c_class)
527   parse_error("No such connection class '%s' for Connect block", $3);
528  MyFree($3);
529 };
530 connecthost: HOST '=' QSTRING ';'
531 {
532  MyFree(host);
533  host = $3;
534 };
535 connectport: PORT '=' NUMBER ';'
536 {
537  port = $3;
538 };
539 connectvhost: VHOST '=' QSTRING ';'
540 {
541  MyFree(origin);
542  origin = $3;
543 };
544 connectleaf: LEAF ';'
545 {
546  maxlinks = 0;
547 };
548 connecthub: HUB ';'
549 {
550  MyFree(hub_limit);
551  DupString(hub_limit, "*");
552 };
553 connecthublimit: HUB '=' QSTRING ';'
554 {
555  MyFree(hub_limit);
556  hub_limit = $3;
557 };
558 connectmaxhops: MAXHOPS '=' expr ';'
559 {
560   maxlinks = $3;
561 };
562 connectauto: AUTOCONNECT '=' YES ';' { flags |= CONF_AUTOCONNECT; }
563  | AUTOCONNECT '=' NO ';' { flags &= ~CONF_AUTOCONNECT; };
564
565 uworldblock: UWORLD '{' uworlditems '}' ';';
566 uworlditems: uworlditem uworlditems | uworlditem;
567 uworlditem: uworldname;
568 uworldname: NAME '=' QSTRING ';'
569 {
570   make_conf(CONF_UWORLD)->host = $3;
571 };
572
573 operblock: OPER '{' operitems '}' ';'
574 {
575   struct ConfItem *aconf = NULL;
576   struct SLink *link;
577
578   if (name == NULL)
579     parse_error("Missing name in operator block");
580   else if (pass == NULL)
581     parse_error("Missing password in operator block");
582   /* Do not check password length because it may be crypted. */
583   else if (hosts == NULL)
584     parse_error("Missing host(s) in operator block");
585   else if (c_class == NULL)
586     parse_error("Invalid or missing class in operator block");
587   else if (!FlagHas(&privs_dirty, PRIV_PROPAGATE)
588            && !FlagHas(&c_class->privs_dirty, PRIV_PROPAGATE))
589     parse_error("Operator block for %s and class %s have no LOCAL setting", name, c_class->cc_name);
590   else for (link = hosts; link != NULL; link = link->next) {
591     aconf = make_conf(CONF_OPERATOR);
592     DupString(aconf->name, name);
593     DupString(aconf->passwd, pass);
594     conf_parse_userhost(aconf, link->value.cp);
595     aconf->conn_class = c_class;
596     memcpy(&aconf->privs, &privs, sizeof(aconf->privs));
597     memcpy(&aconf->privs_dirty, &privs_dirty, sizeof(aconf->privs_dirty));
598   }
599   MyFree(name);
600   MyFree(pass);
601   free_slist(&hosts);
602   name = pass = NULL;
603   c_class = NULL;
604   memset(&privs, 0, sizeof(privs));
605   memset(&privs_dirty, 0, sizeof(privs_dirty));
606 };
607 operitems: operitem | operitems operitem;
608 operitem: opername | operpass | operhost | operclass | priv;
609 opername: NAME '=' QSTRING ';'
610 {
611   MyFree(name);
612   name = $3;
613 };
614 operpass: PASS '=' QSTRING ';'
615 {
616   MyFree(pass);
617   pass = $3;
618 };
619 operhost: HOST '=' QSTRING ';'
620 {
621  struct SLink *link;
622  link = make_link();
623  if (!strchr($3, '@'))
624  {
625    int uh_len;
626    link->value.cp = (char*) MyMalloc((uh_len = strlen($3)+3));
627    ircd_snprintf(0, link->value.cp, uh_len, "*@%s", $3);
628  }
629  else
630    DupString(link->value.cp, $3);
631  MyFree($3);
632  link->next = hosts;
633  hosts = link;
634 };
635 operclass: CLASS '=' QSTRING ';'
636 {
637  c_class = find_class($3);
638  if (!c_class)
639   parse_error("No such connection class '%s' for Operator block", $3);
640  MyFree($3);
641 };
642
643 priv: privtype '=' yesorno ';'
644 {
645   FlagSet(&privs_dirty, $1);
646   if (($3 == 1) ^ invert)
647     FlagSet(&privs, $1);
648   else
649     FlagClr(&privs, $1);
650   invert = 0;
651 };
652
653 privtype: TPRIV_CHAN_LIMIT { $$ = PRIV_CHAN_LIMIT; } |
654           TPRIV_MODE_LCHAN { $$ = PRIV_MODE_LCHAN; } |
655           TPRIV_DEOP_LCHAN { $$ = PRIV_DEOP_LCHAN; } |
656           TPRIV_WALK_LCHAN { $$ = PRIV_WALK_LCHAN; } |
657           KILL { $$ = PRIV_KILL; } |
658           TPRIV_LOCAL_KILL { $$ = PRIV_LOCAL_KILL; } |
659           TPRIV_REHASH { $$ = PRIV_REHASH; } |
660           TPRIV_RESTART { $$ = PRIV_RESTART; } |
661           TPRIV_DIE { $$ = PRIV_DIE; } |
662           TPRIV_GLINE { $$ = PRIV_GLINE; } |
663           TPRIV_LOCAL_GLINE { $$ = PRIV_LOCAL_GLINE; } |
664           JUPE { $$ = PRIV_JUPE; } |
665           TPRIV_LOCAL_JUPE { $$ = PRIV_LOCAL_JUPE; } |
666           TPRIV_LOCAL_OPMODE { $$ = PRIV_LOCAL_OPMODE; } |
667           TPRIV_OPMODE { $$ = PRIV_OPMODE; }|
668           TPRIV_SET { $$ = PRIV_SET; } |
669           TPRIV_WHOX { $$ = PRIV_WHOX; } |
670           TPRIV_BADCHAN { $$ = PRIV_BADCHAN; } |
671           TPRIV_LOCAL_BADCHAN { $$ = PRIV_LOCAL_BADCHAN; } |
672           TPRIV_SEE_CHAN { $$ = PRIV_SEE_CHAN; } |
673           TPRIV_SHOW_INVIS { $$ = PRIV_SHOW_INVIS; } |
674           TPRIV_SHOW_ALL_INVIS { $$ = PRIV_SHOW_ALL_INVIS; } |
675           TPRIV_PROPAGATE { $$ = PRIV_PROPAGATE; } |
676           TPRIV_UNLIMIT_QUERY { $$ = PRIV_UNLIMIT_QUERY; } |
677           TPRIV_DISPLAY { $$ = PRIV_DISPLAY; } |
678           TPRIV_SEE_OPERS { $$ = PRIV_SEE_OPERS; } |
679           TPRIV_WIDE_GLINE { $$ = PRIV_WIDE_GLINE; } |
680           TPRIV_LIST_CHAN { $$ = PRIV_LIST_CHAN; } |
681           LOCAL { $$ = PRIV_PROPAGATE; invert = 1; } |
682           TPRIV_FORCE_OPMODE { $$ = PRIV_FORCE_OPMODE; } |
683           TPRIV_FORCE_LOCAL_OPMODE { $$ = PRIV_FORCE_LOCAL_OPMODE; } |
684           TPRIV_APASS_OPMODE { $$ = PRIV_APASS_OPMODE; } ;
685
686 yesorno: YES { $$ = 1; } | NO { $$ = 0; };
687
688 /* not a recursive definition because some pedant will just come along
689  * and whine that the parser accepts "ipv4 ipv4 ipv4 ipv4"
690  */
691 address_family:
692                { $$ = 0; }
693     | TOK_IPV4 { $$ = USE_IPV4; }
694     | TOK_IPV6 { $$ = USE_IPV6; }
695     | TOK_IPV4 TOK_IPV6 { $$ = USE_IPV4 | USE_IPV6; }
696     | TOK_IPV6 TOK_IPV4 { $$ = USE_IPV6 | USE_IPV4; }
697     ;
698
699 /* The port block... */
700 portblock: PORT '{' portitems '}' ';' {
701   struct ListenerFlags flags_here;
702   struct SLink *link;
703   if (hosts == NULL) {
704     struct SLink *link;
705     link = make_link();
706     DupString(link->value.cp, "*");
707     link->flags = 0;
708     link->next = hosts;
709     hosts = link;
710   }
711   for (link = hosts; link != NULL; link = link->next) {
712     memcpy(&flags_here, &listen_flags, sizeof(&flags_here));
713     switch (link->flags & (USE_IPV4 | USE_IPV6)) {
714     case USE_IPV4:
715       FlagSet(&flags_here, LISTEN_IPV4);
716       break;
717     case USE_IPV6:
718       FlagSet(&flags_here, LISTEN_IPV6);
719       break;
720     default: /* 0 or USE_IPV4|USE_IPV6 */
721       FlagSet(&flags_here, LISTEN_IPV4);
722       FlagSet(&flags_here, LISTEN_IPV6);
723       break;
724     }
725     if (link->flags & 65535)
726       port = link->flags & 65535;
727     add_listener(port, link->value.cp, pass, &flags_here);
728   }
729   free_slist(&hosts);
730   MyFree(pass);
731   memset(&listen_flags, 0, sizeof(listen_flags));
732   pass = NULL;
733   port = 0;
734 };
735 portitems: portitem portitems | portitem;
736 portitem: portnumber | portvhost | portvhostnumber | portmask | portserver | porthidden;
737 portnumber: PORT '=' address_family NUMBER ';'
738 {
739   if ($4 < 1 || $4 > 65535) {
740     parse_error("Port %d is out of range", port);
741   } else {
742     port = $3 | $4;
743     if (hosts && (0 == (hosts->flags & 65535)))
744       hosts->flags = (hosts->flags & ~65535) | port;
745   }
746 };
747
748 portvhost: VHOST '=' address_family QSTRING ';'
749 {
750   struct SLink *link;
751   link = make_link();
752   link->value.cp = $4;
753   link->flags = $3 | port;
754   link->next = hosts;
755   hosts = link;
756 };
757
758 portvhostnumber: VHOST '=' address_family QSTRING NUMBER ';'
759 {
760   if ($5 < 1 || $5 > 65535) {
761     parse_error("Port %d is out of range", port);
762   } else {
763     struct SLink *link;
764     link = make_link();
765     link->value.cp = $4;
766     link->flags = $3 | $5;
767     link->next = hosts;
768     hosts = link;
769   }
770 };
771
772 portmask: MASK '=' QSTRING ';'
773 {
774   MyFree(pass);
775   pass = $3;
776 };
777
778 portserver: SERVER '=' YES ';'
779 {
780   FlagSet(&listen_flags, LISTEN_SERVER);
781 } | SERVER '=' NO ';'
782 {
783   FlagClr(&listen_flags, LISTEN_SERVER);
784 };
785
786 porthidden: HIDDEN '=' YES ';'
787 {
788   FlagSet(&listen_flags, LISTEN_HIDDEN);
789 } | HIDDEN '=' NO ';'
790 {
791   FlagClr(&listen_flags, LISTEN_HIDDEN);
792 };
793
794 clientblock: CLIENT
795 {
796   maxlinks = 65535;
797   port = 0;
798 }
799 '{' clientitems '}' ';'
800 {
801   struct ConfItem *aconf = 0;
802   struct irc_in_addr addr;
803   unsigned char addrbits = 0;
804
805   if (!c_class)
806     parse_error("Invalid or missing class in Client block");
807   else if (pass && strlen(pass) > PASSWDLEN)
808     parse_error("Password too long in connect block");
809   else if (ip && !ipmask_parse(ip, &addr, &addrbits))
810     parse_error("Invalid IP address %s in Client block", ip);
811   else {
812     aconf = make_conf(CONF_CLIENT);
813     aconf->username = username;
814     aconf->host = host;
815     if (ip)
816       memcpy(&aconf->address.addr, &addr, sizeof(aconf->address.addr));
817     else
818       memset(&aconf->address.addr, 0, sizeof(aconf->address.addr));
819     aconf->address.port = port;
820     aconf->addrbits = addrbits;
821     aconf->name = ip;
822     aconf->conn_class = c_class;
823     aconf->maximum = maxlinks;
824     aconf->passwd = pass;
825   }
826   if (!aconf) {
827     MyFree(username);
828     MyFree(host);
829     MyFree(ip);
830     MyFree(pass);
831   }
832   host = NULL;
833   username = NULL;
834   c_class = NULL;
835   maxlinks = 0;
836   ip = NULL;
837   pass = NULL;
838   port = 0;
839 };
840 clientitems: clientitem clientitems | clientitem;
841 clientitem: clienthost | clientip | clientusername | clientclass | clientpass | clientmaxlinks | clientport;
842 clienthost: HOST '=' QSTRING ';'
843 {
844   char *sep = strchr($3, '@');
845   MyFree(host);
846   if (sep) {
847     *sep++ = '\0';
848     MyFree(username);
849     DupString(host, sep);
850     username = $3;
851   } else {
852     host = $3;
853   }
854 };
855 clientip: IP '=' QSTRING ';'
856 {
857   char *sep;
858   sep = strchr($3, '@');
859   MyFree(ip);
860   if (sep) {
861     *sep++ = '\0';
862     MyFree(username);
863     DupString(ip, sep);
864     username = $3;
865   } else {
866     ip = $3;
867   }
868 };
869 clientusername: USERNAME '=' QSTRING ';'
870 {
871   MyFree(username);
872   username = $3;
873 };
874 clientclass: CLASS '=' QSTRING ';'
875 {
876   c_class = find_class($3);
877   if (!c_class)
878     parse_error("No such connection class '%s' for Client block", $3);
879   MyFree($3);
880 };
881 clientpass: PASS '=' QSTRING ';'
882 {
883   MyFree(pass);
884   pass = $3;
885 };
886 clientmaxlinks: MAXLINKS '=' expr ';'
887 {
888   maxlinks = $3;
889 };
890 clientport: PORT '=' expr ';'
891 {
892   port = $3;
893 };
894
895 killblock: KILL
896 {
897   dconf = (struct DenyConf*) MyCalloc(1, sizeof(*dconf));
898 } '{' killitems '}' ';'
899 {
900   if (dconf->usermask || dconf->hostmask ||dconf->realmask) {
901     dconf->next = denyConfList;
902     denyConfList = dconf;
903   }
904   else
905   {
906     MyFree(dconf->usermask);
907     MyFree(dconf->hostmask);
908     MyFree(dconf->realmask);
909     MyFree(dconf->message);
910     MyFree(dconf);
911     parse_error("Kill block must match on at least one of username, host or realname");
912   }
913   dconf = NULL;
914 };
915 killitems: killitem killitems | killitem;
916 killitem: killuhost | killreal | killusername | killreasonfile | killreason;
917 killuhost: HOST '=' QSTRING ';'
918 {
919   char *h;
920   MyFree(dconf->hostmask);
921   MyFree(dconf->usermask);
922   if ((h = strchr($3, '@')) == NULL)
923   {
924     DupString(dconf->usermask, "*");
925     dconf->hostmask = $3;
926   }
927   else
928   {
929     *h++ = '\0';
930     DupString(dconf->hostmask, h);
931     dconf->usermask = $3;
932   }
933   ipmask_parse(dconf->hostmask, &dconf->address, &dconf->bits);
934 };
935
936 killusername: USERNAME '=' QSTRING ';'
937 {
938   MyFree(dconf->usermask);
939   dconf->usermask = $3;
940 };
941
942 killreal: REAL '=' QSTRING ';'
943 {
944  MyFree(dconf->realmask);
945  dconf->realmask = $3;
946 };
947
948 killreason: REASON '=' QSTRING ';'
949 {
950  dconf->flags &= ~DENY_FLAGS_FILE;
951  MyFree(dconf->message);
952  dconf->message = $3;
953 };
954
955 killreasonfile: TFILE '=' QSTRING ';'
956 {
957  dconf->flags |= DENY_FLAGS_FILE;
958  MyFree(dconf->message);
959  dconf->message = $3;
960 };
961
962 cruleblock: CRULE
963 {
964   tconn = CRULE_AUTO;
965 } '{' cruleitems '}' ';'
966 {
967   struct CRuleNode *node = NULL;
968   struct SLink *link;
969
970   if (hosts == NULL)
971     parse_error("Missing server(s) in crule block");
972   else if (pass == NULL)
973     parse_error("Missing rule in crule block");
974   else if ((node = crule_parse(pass)) == NULL)
975     parse_error("Invalid rule '%s' in crule block", pass);
976   else for (link = hosts; link != NULL; link = link->next)
977   {
978     struct CRuleConf *p = (struct CRuleConf*) MyMalloc(sizeof(*p));
979     if (node == NULL)
980       node = crule_parse(pass);
981     DupString(p->hostmask, link->value.cp);
982     DupString(p->rule, pass);
983     p->type = tconn;
984     p->node = node;
985     node = NULL;
986     p->next = cruleConfList;
987     cruleConfList = p;
988   }
989   free_slist(&hosts);
990   MyFree(pass);
991   pass = NULL;
992   tconn = 0;
993 };
994
995 cruleitems: cruleitem cruleitems | cruleitem;
996 cruleitem: cruleserver | crulerule | cruleall;
997
998 cruleserver: SERVER '=' QSTRING ';'
999 {
1000   struct SLink *link;
1001   link = make_link();
1002   link->value.cp = $3;
1003   link->next = hosts;
1004   hosts = link;
1005 };
1006
1007 crulerule: RULE '=' QSTRING ';'
1008 {
1009  MyFree(pass);
1010  pass = $3;
1011 };
1012
1013 cruleall: ALL '=' YES ';'
1014 {
1015  tconn = CRULE_ALL;
1016 } | ALL '=' NO ';'
1017 {
1018  tconn = CRULE_AUTO;
1019 };
1020
1021 motdblock: MOTD '{' motditems '}' ';'
1022 {
1023   struct SLink *link;
1024   if (pass != NULL)
1025     for (link = hosts; link != NULL; link = link->next)
1026       motd_add(link->value.cp, pass);
1027   free_slist(&hosts);
1028   MyFree(pass);
1029   pass = NULL;
1030 };
1031
1032 motditems: motditem motditems | motditem;
1033 motditem: motdhost | motdfile;
1034 motdhost: HOST '=' QSTRING ';'
1035 {
1036   struct SLink *link;
1037   link = make_link();
1038   link->value.cp = $3;
1039   link->next = hosts;
1040   hosts = link;
1041 };
1042
1043 motdfile: TFILE '=' QSTRING ';'
1044 {
1045   MyFree(pass);
1046   pass = $3;
1047 };
1048
1049 featuresblock: FEATURES '{' featureitems '}' ';';
1050 featureitems: featureitems featureitem | featureitem;
1051
1052 featureitem: QSTRING
1053 {
1054   stringlist[0] = $1;
1055   stringno = 1;
1056 } '=' stringlist ';' {
1057   unsigned int ii;
1058   feature_set(NULL, (const char * const *)stringlist, stringno);
1059   for (ii = 0; ii < stringno; ++ii)
1060     MyFree(stringlist[ii]);
1061 };
1062
1063 stringlist: stringlist extrastring | extrastring;
1064 extrastring: QSTRING
1065 {
1066   if (stringno < MAX_STRINGS)
1067     stringlist[stringno++] = $1;
1068   else
1069     MyFree($1);
1070 };
1071
1072 quarantineblock: QUARANTINE '{' quarantineitems '}' ';';
1073 quarantineitems: quarantineitems quarantineitem | quarantineitem;
1074 quarantineitem: QSTRING '=' QSTRING ';'
1075 {
1076   struct qline *qconf = MyCalloc(1, sizeof(*qconf));
1077   qconf->chname = $1;
1078   qconf->reason = $3;
1079   qconf->next = GlobalQuarantineList;
1080   GlobalQuarantineList = qconf;
1081 };
1082
1083 pseudoblock: PSEUDO QSTRING '{'
1084 {
1085   smap = MyCalloc(1, sizeof(struct s_map));
1086   smap->command = $2;
1087 }
1088 pseudoitems '}' ';'
1089 {
1090   int valid = 0;
1091
1092   if (!smap->name)
1093     parse_error("Missing name in pseudo %s block", smap->command);
1094   else if (!smap->services)
1095     parse_error("Missing nick in pseudo %s block", smap->command);
1096   else if (!strIsAlpha(smap->command))
1097     parse_error("Pseudo command %s invalid: must all be letters", smap->command);
1098   else
1099     valid = 1;
1100   if (valid && register_mapping(smap))
1101   {
1102     smap->next = GlobalServiceMapList;
1103     GlobalServiceMapList = smap;
1104   }
1105   else
1106   {
1107     free_mapping(smap);
1108   }
1109   smap = NULL;
1110 };
1111
1112 pseudoitems: pseudoitem pseudoitems | pseudoitem;
1113 pseudoitem: pseudoname | pseudoprepend | pseudonick | pseudoflags;
1114 pseudoname: NAME '=' QSTRING ';'
1115 {
1116   MyFree(smap->name);
1117   smap->name = $3;
1118 };
1119 pseudoprepend: PREPEND '=' QSTRING ';'
1120 {
1121   MyFree(smap->prepend);
1122   smap->prepend = $3;
1123 };
1124 pseudonick: NICK '=' QSTRING ';'
1125 {
1126   char *sep = strchr($3, '@');
1127
1128   if (sep != NULL) {
1129     size_t slen = strlen($3);
1130     struct nick_host *nh = MyMalloc(sizeof(*nh) + slen);
1131     memcpy(nh->nick, $3, slen + 1);
1132     nh->nicklen = sep - $3;
1133     nh->next = smap->services;
1134     smap->services = nh;
1135   }
1136   MyFree($3);
1137 };
1138 pseudoflags: FAST ';'
1139 {
1140   smap->flags |= SMAP_FAST;
1141 };
1142
1143 iauthblock: IAUTH '{' iauthitems '}' ';'
1144 {
1145   auth_spawn(stringno, stringlist);
1146   while (stringno > 0)
1147   {
1148     --stringno;
1149     MyFree(stringlist[stringno]);
1150   }
1151 };
1152
1153 iauthitems: iauthitem iauthitems | iauthitem;
1154 iauthitem: iauthprogram;
1155 iauthprogram: PROGRAM '='
1156 {
1157   while (stringno > 0)
1158   {
1159     --stringno;
1160     MyFree(stringlist[stringno]);
1161   }
1162 } stringlist ';';