ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/releases/8.1.0beta2/src/conf_parser.y
Revision: 1783
Committed: Thu Jan 24 19:26:51 2013 UTC (13 years, 6 months ago) by michael
Original Path: ircd-hybrid/trunk/src/conf_parser.y
File size: 74124 byte(s)
Log Message:
- Forward-port -r1774:
  - Configuration parser now does support 'year' and 'month' units
  - Add support for fake idle times to /whois. Known from csircd, this
    adds min_idle, and max_idle configuration directives to class{} blocks

File Contents

# User Rev Content
1 adx 30 /*
2     * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 michael 1309 * conf_parser.y: Parses the ircd configuration file.
4 adx 30 *
5     * Copyright (C) 2005 by the past and present ircd coders, and others.
6     *
7     * This program is free software; you can redistribute it and/or modify
8     * it under the terms of the GNU General Public License as published by
9     * the Free Software Foundation; either version 2 of the License, or
10     * (at your option) any later version.
11     *
12     * This program is distributed in the hope that it will be useful,
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     * GNU General Public License for more details.
16     *
17     * You should have received a copy of the GNU General Public License
18     * along with this program; if not, write to the Free Software
19     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20     * USA
21     *
22 knight 31 * $Id$
23 adx 30 */
24    
25     %{
26    
27     #define YY_NO_UNPUT
28     #include <sys/types.h>
29 stu 909 #include <string.h>
30 adx 30
31 michael 1009 #include "config.h"
32 adx 30 #include "stdinc.h"
33     #include "ircd.h"
34     #include "list.h"
35 michael 1309 #include "conf.h"
36 michael 1632 #include "conf_class.h"
37 adx 30 #include "event.h"
38 michael 1309 #include "log.h"
39 adx 30 #include "client.h" /* for UMODE_ALL only */
40     #include "irc_string.h"
41     #include "sprintf_irc.h"
42     #include "memory.h"
43     #include "modules.h"
44 michael 885 #include "s_serv.h"
45 adx 30 #include "hostmask.h"
46     #include "send.h"
47     #include "listener.h"
48     #include "resv.h"
49     #include "numeric.h"
50     #include "s_user.h"
51    
52     #ifdef HAVE_LIBCRYPTO
53     #include <openssl/rsa.h>
54     #include <openssl/bio.h>
55     #include <openssl/pem.h>
56 michael 1306 #include <openssl/dh.h>
57 adx 30 #endif
58    
59 michael 1752 #include "rsa.h"
60    
61 michael 1329 int yylex(void);
62    
63 michael 1646 static struct
64 michael 593 {
65 michael 1646 struct {
66     dlink_list list;
67     } mask,
68     leaf,
69     hub;
70 adx 30
71 michael 1646 struct {
72     char buf[IRCD_BUFSIZE];
73     } name,
74     user,
75     host,
76     addr,
77 michael 1647 bind,
78 michael 1646 file,
79 michael 1647 ciph,
80     rpass,
81     spass,
82 michael 1646 class;
83    
84     struct {
85     unsigned int value;
86     } flags,
87     modes,
88 michael 1647 size,
89     type,
90 michael 1646 port,
91 michael 1647 aftype,
92 michael 1646 ping_freq,
93     max_perip,
94     con_freq,
95 michael 1783 min_idle,
96     max_idle,
97 michael 1646 max_total,
98     max_global,
99     max_local,
100     max_ident,
101     max_sendq,
102     max_recvq,
103     cidr_bitlen_ipv4,
104     cidr_bitlen_ipv6,
105     number_per_cidr;
106     } block_state;
107    
108 adx 30 static void
109 michael 1646 reset_block_state(void)
110 adx 30 {
111 michael 1646 dlink_node *ptr = NULL, *ptr_next = NULL;
112    
113     DLINK_FOREACH_SAFE(ptr, ptr_next, block_state.mask.list.head)
114     {
115     MyFree(ptr->data);
116     dlinkDelete(ptr, &block_state.mask.list);
117     free_dlink_node(ptr);
118     }
119    
120     DLINK_FOREACH_SAFE(ptr, ptr_next, block_state.leaf.list.head)
121     {
122     MyFree(ptr->data);
123     dlinkDelete(ptr, &block_state.leaf.list);
124     free_dlink_node(ptr);
125     }
126    
127     DLINK_FOREACH_SAFE(ptr, ptr_next, block_state.hub.list.head)
128     {
129     MyFree(ptr->data);
130     dlinkDelete(ptr, &block_state.hub.list);
131     free_dlink_node(ptr);
132     }
133    
134     memset(&block_state, 0, sizeof(block_state));
135 adx 30 }
136    
137     %}
138    
139     %union {
140     int number;
141     char *string;
142     }
143    
144     %token ACCEPT_PASSWORD
145     %token ADMIN
146     %token AFTYPE
147     %token ANTI_NICK_FLOOD
148     %token ANTI_SPAM_EXIT_MESSAGE_TIME
149     %token AUTOCONN
150 michael 1520 %token BYTES KBYTES MBYTES
151 adx 30 %token CALLER_ID_WAIT
152     %token CAN_FLOOD
153     %token CHANNEL
154     %token CIDR_BITLEN_IPV4
155     %token CIDR_BITLEN_IPV6
156     %token CLASS
157     %token CONNECT
158     %token CONNECTFREQ
159     %token DEFAULT_FLOODCOUNT
160     %token DEFAULT_SPLIT_SERVER_COUNT
161     %token DEFAULT_SPLIT_USER_COUNT
162     %token DENY
163     %token DESCRIPTION
164     %token DIE
165     %token DISABLE_AUTH
166 michael 632 %token DISABLE_FAKE_CHANNELS
167 adx 30 %token DISABLE_REMOTE_COMMANDS
168     %token DOTS_IN_IDENT
169     %token EGDPOOL_PATH
170     %token EMAIL
171     %token ENCRYPTED
172     %token EXCEED_LIMIT
173     %token EXEMPT
174     %token FAILED_OPER_NOTICE
175     %token IRCD_FLAGS
176     %token FLATTEN_LINKS
177     %token GECOS
178     %token GENERAL
179     %token GLINE
180 michael 1459 %token GLINE_DURATION
181     %token GLINE_ENABLE
182 adx 30 %token GLINE_EXEMPT
183 michael 1459 %token GLINE_REQUEST_DURATION
184 adx 30 %token GLINE_MIN_CIDR
185     %token GLINE_MIN_CIDR6
186     %token GLOBAL_KILL
187     %token IRCD_AUTH
188     %token NEED_IDENT
189     %token HAVENT_READ_CONF
190     %token HIDDEN
191     %token HIDDEN_NAME
192     %token HIDE_SERVER_IPS
193     %token HIDE_SERVERS
194     %token HIDE_SPOOF_IPS
195     %token HOST
196     %token HUB
197     %token HUB_MASK
198     %token IGNORE_BOGUS_TS
199     %token INVISIBLE_ON_CONNECT
200     %token IP
201     %token KILL
202     %token KILL_CHASE_TIME_LIMIT
203     %token KLINE
204     %token KLINE_EXEMPT
205     %token KNOCK_DELAY
206     %token KNOCK_DELAY_CHANNEL
207     %token LEAF_MASK
208     %token LINKS_DELAY
209     %token LISTEN
210     %token T_LOG
211     %token MAX_ACCEPT
212     %token MAX_BANS
213 michael 1432 %token MAX_CHANS_PER_OPER
214 adx 30 %token MAX_CHANS_PER_USER
215     %token MAX_GLOBAL
216     %token MAX_IDENT
217     %token MAX_LOCAL
218     %token MAX_NICK_CHANGES
219 michael 1751 %token MAX_NICK_LENGTH
220 adx 30 %token MAX_NICK_TIME
221     %token MAX_NUMBER
222     %token MAX_TARGETS
223 michael 1751 %token MAX_TOPIC_LENGTH
224 michael 876 %token MAX_WATCH
225 adx 30 %token MESSAGE_LOCALE
226     %token MIN_NONWILDCARD
227     %token MIN_NONWILDCARD_SIMPLE
228 michael 1783 %token MIN_IDLE
229     %token MAX_IDLE
230     %token RANDOM_IDLE
231     %token HIDE_IDLE_FROM_OPERS
232 adx 30 %token MODULE
233     %token MODULES
234     %token NAME
235     %token NEED_PASSWORD
236     %token NETWORK_DESC
237     %token NETWORK_NAME
238     %token NICK
239     %token NICK_CHANGES
240     %token NO_CREATE_ON_SPLIT
241     %token NO_JOIN_ON_SPLIT
242     %token NO_OPER_FLOOD
243     %token NO_TILDE
244     %token NUMBER
245     %token NUMBER_PER_CIDR
246     %token NUMBER_PER_IP
247     %token OPERATOR
248     %token OPERS_BYPASS_CALLERID
249     %token OPER_ONLY_UMODES
250     %token OPER_PASS_RESV
251     %token OPER_SPY_T
252     %token OPER_UMODES
253     %token JOIN_FLOOD_COUNT
254     %token JOIN_FLOOD_TIME
255     %token PACE_WAIT
256     %token PACE_WAIT_SIMPLE
257     %token PASSWORD
258     %token PATH
259     %token PING_COOKIE
260     %token PING_TIME
261     %token PORT
262     %token QSTRING
263     %token QUIET_ON_BAN
264     %token REASON
265     %token REDIRPORT
266     %token REDIRSERV
267     %token REGEX_T
268     %token REHASH
269     %token REMOTE
270     %token REMOTEBAN
271     %token RESTRICT_CHANNELS
272     %token RSA_PRIVATE_KEY_FILE
273     %token RSA_PUBLIC_KEY_FILE
274     %token SSL_CERTIFICATE_FILE
275 michael 1306 %token SSL_DH_PARAM_FILE
276 michael 1316 %token T_SSL_CLIENT_METHOD
277     %token T_SSL_SERVER_METHOD
278 michael 967 %token T_SSLV3
279     %token T_TLSV1
280 adx 30 %token RESV
281     %token RESV_EXEMPT
282 michael 1783 %token SECONDS MINUTES HOURS DAYS WEEKS MONTHS YEARS
283 adx 30 %token SENDQ
284     %token SEND_PASSWORD
285     %token SERVERHIDE
286     %token SERVERINFO
287     %token IRCD_SID
288     %token TKLINE_EXPIRE_NOTICES
289     %token T_SHARED
290     %token T_CLUSTER
291     %token TYPE
292     %token SHORT_MOTD
293     %token SPOOF
294     %token SPOOF_NOTICE
295 michael 584 %token STATS_E_DISABLED
296 adx 30 %token STATS_I_OPER_ONLY
297     %token STATS_K_OPER_ONLY
298     %token STATS_O_OPER_ONLY
299     %token STATS_P_OPER_ONLY
300     %token TBOOL
301     %token TMASKED
302     %token TS_MAX_DELTA
303     %token TS_WARN_DELTA
304     %token TWODOTS
305     %token T_ALL
306     %token T_BOTS
307     %token T_SOFTCALLERID
308     %token T_CALLERID
309     %token T_CCONN
310 db 849 %token T_CCONN_FULL
311 michael 1306 %token T_SSL_CIPHER_LIST
312 adx 30 %token T_DEAF
313     %token T_DEBUG
314 michael 1247 %token T_DLINE
315 adx 30 %token T_EXTERNAL
316     %token T_FULL
317     %token T_INVISIBLE
318     %token T_IPV4
319     %token T_IPV6
320     %token T_LOCOPS
321     %token T_MAX_CLIENTS
322     %token T_NCHANGE
323     %token T_OPERWALL
324 michael 1516 %token T_RECVQ
325 adx 30 %token T_REJ
326 michael 900 %token T_SERVER
327 adx 30 %token T_SERVNOTICE
328 michael 1460 %token T_SET
329 adx 30 %token T_SKILL
330     %token T_SPY
331     %token T_SSL
332 michael 56 %token T_UMODES
333 adx 30 %token T_UNAUTH
334 michael 1301 %token T_UNDLINE
335 michael 1250 %token T_UNLIMITED
336 adx 30 %token T_UNRESV
337     %token T_UNXLINE
338 michael 1216 %token T_GLOBOPS
339 adx 30 %token T_WALLOP
340 michael 1715 %token T_WEBIRC
341 michael 1228 %token T_RESTART
342 michael 1157 %token T_SERVICE
343 michael 1176 %token T_SERVICES_NAME
344 adx 30 %token THROTTLE_TIME
345     %token TRUE_NO_OPER_FLOOD
346     %token UNKLINE
347     %token USER
348     %token USE_EGD
349     %token USE_LOGGING
350     %token VHOST
351     %token VHOST6
352     %token XLINE
353     %token WARN_NO_NLINE
354 michael 1247 %token T_SIZE
355     %token T_FILE
356 adx 30
357     %type <string> QSTRING
358     %type <number> NUMBER
359     %type <number> timespec
360     %type <number> timespec_
361     %type <number> sizespec
362     %type <number> sizespec_
363    
364     %%
365     conf:
366     | conf conf_item
367     ;
368    
369     conf_item: admin_entry
370     | logging_entry
371     | oper_entry
372     | channel_entry
373     | class_entry
374     | listen_entry
375     | auth_entry
376     | serverinfo_entry
377     | serverhide_entry
378     | resv_entry
379 michael 1157 | service_entry
380 adx 30 | shared_entry
381     | cluster_entry
382     | connect_entry
383     | kill_entry
384     | deny_entry
385     | exempt_entry
386     | general_entry
387     | gecos_entry
388     | modules_entry
389     | error ';'
390     | error '}'
391     ;
392    
393    
394     timespec_: { $$ = 0; } | timespec;
395     timespec: NUMBER timespec_
396     {
397     $$ = $1 + $2;
398     }
399     | NUMBER SECONDS timespec_
400     {
401     $$ = $1 + $3;
402     }
403     | NUMBER MINUTES timespec_
404     {
405     $$ = $1 * 60 + $3;
406     }
407     | NUMBER HOURS timespec_
408     {
409     $$ = $1 * 60 * 60 + $3;
410     }
411     | NUMBER DAYS timespec_
412     {
413     $$ = $1 * 60 * 60 * 24 + $3;
414     }
415     | NUMBER WEEKS timespec_
416     {
417     $$ = $1 * 60 * 60 * 24 * 7 + $3;
418     }
419 michael 1783 | NUMBER MONTHS timespec_
420     {
421     $$ = $1 * 60 * 60 * 24 * 7 * 4 + $3;
422     }
423     | NUMBER YEARS timespec_
424     {
425     $$ = $1 * 60 * 60 * 24 * 365 + $3;
426     }
427 adx 30 ;
428    
429     sizespec_: { $$ = 0; } | sizespec;
430     sizespec: NUMBER sizespec_ { $$ = $1 + $2; }
431     | NUMBER BYTES sizespec_ { $$ = $1 + $3; }
432     | NUMBER KBYTES sizespec_ { $$ = $1 * 1024 + $3; }
433     | NUMBER MBYTES sizespec_ { $$ = $1 * 1024 * 1024 + $3; }
434     ;
435    
436    
437     /***************************************************************************
438     * section modules
439     ***************************************************************************/
440     modules_entry: MODULES
441     '{' modules_items '}' ';';
442    
443     modules_items: modules_items modules_item | modules_item;
444     modules_item: modules_module | modules_path | error ';' ;
445    
446     modules_module: MODULE '=' QSTRING ';'
447     {
448 michael 967 if (conf_parser_ctx.pass == 2)
449 michael 978 add_conf_module(libio_basename(yylval.string));
450 adx 30 };
451    
452     modules_path: PATH '=' QSTRING ';'
453     {
454 michael 967 if (conf_parser_ctx.pass == 2)
455 adx 30 mod_add_path(yylval.string);
456     };
457    
458    
459 michael 967 serverinfo_entry: SERVERINFO '{' serverinfo_items '}' ';';
460    
461     serverinfo_items: serverinfo_items serverinfo_item | serverinfo_item ;
462 adx 30 serverinfo_item: serverinfo_name | serverinfo_vhost |
463     serverinfo_hub | serverinfo_description |
464     serverinfo_network_name | serverinfo_network_desc |
465 michael 1751 serverinfo_max_clients | serverinfo_max_nick_length |
466     serverinfo_max_topic_length | serverinfo_ssl_dh_param_file |
467 adx 30 serverinfo_rsa_private_key_file | serverinfo_vhost6 |
468     serverinfo_sid | serverinfo_ssl_certificate_file |
469 michael 1316 serverinfo_ssl_client_method | serverinfo_ssl_server_method |
470     serverinfo_ssl_cipher_list |
471 adx 30 error ';' ;
472    
473 michael 967
474 michael 1316 serverinfo_ssl_client_method: T_SSL_CLIENT_METHOD '=' client_method_types ';' ;
475     serverinfo_ssl_server_method: T_SSL_SERVER_METHOD '=' server_method_types ';' ;
476    
477     client_method_types: client_method_types ',' client_method_type_item | client_method_type_item;
478     client_method_type_item: T_SSLV3
479 michael 967 {
480 michael 1024 #ifdef HAVE_LIBCRYPTO
481 michael 1316 if (conf_parser_ctx.pass == 2 && ServerInfo.client_ctx)
482     SSL_CTX_clear_options(ServerInfo.client_ctx, SSL_OP_NO_SSLv3);
483 michael 1024 #endif
484 michael 1316 } | T_TLSV1
485 michael 967 {
486 michael 1024 #ifdef HAVE_LIBCRYPTO
487 michael 1316 if (conf_parser_ctx.pass == 2 && ServerInfo.client_ctx)
488     SSL_CTX_clear_options(ServerInfo.client_ctx, SSL_OP_NO_TLSv1);
489 michael 1024 #endif
490 michael 967 };
491    
492 michael 1316 server_method_types: server_method_types ',' server_method_type_item | server_method_type_item;
493     server_method_type_item: T_SSLV3
494 michael 967 {
495 michael 1024 #ifdef HAVE_LIBCRYPTO
496 michael 1316 if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
497     SSL_CTX_clear_options(ServerInfo.server_ctx, SSL_OP_NO_SSLv3);
498 michael 1024 #endif
499 michael 967 } | T_TLSV1
500     {
501 michael 1024 #ifdef HAVE_LIBCRYPTO
502 michael 1316 if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
503     SSL_CTX_clear_options(ServerInfo.server_ctx, SSL_OP_NO_TLSv1);
504 michael 1024 #endif
505 michael 967 };
506    
507 adx 30 serverinfo_ssl_certificate_file: SSL_CERTIFICATE_FILE '=' QSTRING ';'
508     {
509     #ifdef HAVE_LIBCRYPTO
510 michael 967 if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
511 adx 30 {
512     if (!ServerInfo.rsa_private_key_file)
513     {
514 michael 1752 conf_error_report("No rsa_private_key_file specified, SSL disabled");
515 adx 30 break;
516     }
517    
518 michael 967 if (SSL_CTX_use_certificate_file(ServerInfo.server_ctx, yylval.string,
519 michael 1303 SSL_FILETYPE_PEM) <= 0 ||
520     SSL_CTX_use_certificate_file(ServerInfo.client_ctx, yylval.string,
521 michael 967 SSL_FILETYPE_PEM) <= 0)
522 adx 30 {
523 michael 1752 report_crypto_errors();
524     conf_error_report("Could not open/read certificate file");
525 adx 30 break;
526     }
527    
528 michael 967 if (SSL_CTX_use_PrivateKey_file(ServerInfo.server_ctx, ServerInfo.rsa_private_key_file,
529 michael 1303 SSL_FILETYPE_PEM) <= 0 ||
530     SSL_CTX_use_PrivateKey_file(ServerInfo.client_ctx, ServerInfo.rsa_private_key_file,
531 michael 967 SSL_FILETYPE_PEM) <= 0)
532 adx 30 {
533 michael 1752 report_crypto_errors();
534     conf_error_report("Could not read RSA private key");
535 adx 30 break;
536     }
537    
538 michael 1303 if (!SSL_CTX_check_private_key(ServerInfo.server_ctx) ||
539     !SSL_CTX_check_private_key(ServerInfo.client_ctx))
540 adx 30 {
541 michael 1753 report_crypto_errors();
542     conf_error_report("Could not read RSA private key");
543 adx 30 break;
544     }
545     }
546     #endif
547     };
548    
549     serverinfo_rsa_private_key_file: RSA_PRIVATE_KEY_FILE '=' QSTRING ';'
550     {
551     #ifdef HAVE_LIBCRYPTO
552 michael 967 if (conf_parser_ctx.pass == 1)
553 adx 30 {
554     BIO *file;
555    
556     if (ServerInfo.rsa_private_key)
557     {
558     RSA_free(ServerInfo.rsa_private_key);
559     ServerInfo.rsa_private_key = NULL;
560     }
561    
562     if (ServerInfo.rsa_private_key_file)
563     {
564     MyFree(ServerInfo.rsa_private_key_file);
565     ServerInfo.rsa_private_key_file = NULL;
566     }
567    
568 michael 1646 ServerInfo.rsa_private_key_file = xstrdup(yylval.string);
569 adx 30
570     if ((file = BIO_new_file(yylval.string, "r")) == NULL)
571     {
572 michael 1752 conf_error_report("File open failed, ignoring");
573 adx 30 break;
574     }
575    
576 michael 1306 ServerInfo.rsa_private_key = PEM_read_bio_RSAPrivateKey(file, NULL, 0, NULL);
577 adx 30
578     BIO_set_close(file, BIO_CLOSE);
579     BIO_free(file);
580    
581     if (ServerInfo.rsa_private_key == NULL)
582     {
583 michael 1752 conf_error_report("Couldn't extract key, ignoring");
584 adx 30 break;
585     }
586    
587     if (!RSA_check_key(ServerInfo.rsa_private_key))
588     {
589     RSA_free(ServerInfo.rsa_private_key);
590     ServerInfo.rsa_private_key = NULL;
591    
592 michael 1752 conf_error_report("Invalid key, ignoring");
593 adx 30 break;
594     }
595    
596     /* require 2048 bit (256 byte) key */
597     if (RSA_size(ServerInfo.rsa_private_key) != 256)
598     {
599     RSA_free(ServerInfo.rsa_private_key);
600     ServerInfo.rsa_private_key = NULL;
601    
602 michael 1752 conf_error_report("Not a 2048 bit key, ignoring");
603 adx 30 }
604     }
605     #endif
606     };
607    
608 michael 1306 serverinfo_ssl_dh_param_file: SSL_DH_PARAM_FILE '=' QSTRING ';'
609     {
610     /* TBD - XXX: error reporting */
611     #ifdef HAVE_LIBCRYPTO
612     if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
613     {
614     BIO *file = BIO_new_file(yylval.string, "r");
615    
616     if (file)
617     {
618     DH *dh = PEM_read_bio_DHparams(file, NULL, NULL, NULL);
619    
620     BIO_free(file);
621    
622     if (dh)
623     {
624 michael 1352 if (DH_size(dh) < 128)
625 michael 1752 conf_error_report("Ignoring serverinfo::ssl_dh_param_file -- need at least a 1024 bit DH prime size");
626 michael 1352 else
627     SSL_CTX_set_tmp_dh(ServerInfo.server_ctx, dh);
628    
629 michael 1306 DH_free(dh);
630     }
631     }
632     }
633     #endif
634     };
635    
636     serverinfo_ssl_cipher_list: T_SSL_CIPHER_LIST '=' QSTRING ';'
637     {
638     #ifdef HAVE_LIBCRYPTO
639     if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
640     SSL_CTX_set_cipher_list(ServerInfo.server_ctx, yylval.string);
641     #endif
642     };
643    
644 adx 30 serverinfo_name: NAME '=' QSTRING ';'
645     {
646     /* this isn't rehashable */
647 michael 1117 if (conf_parser_ctx.pass == 2 && !ServerInfo.name)
648 adx 30 {
649 michael 1117 if (valid_servname(yylval.string))
650 michael 1646 ServerInfo.name = xstrdup(yylval.string);
651 michael 1117 else
652 adx 30 {
653 michael 1752 conf_error_report("Ignoring serverinfo::name -- invalid name. Aborting.");
654 michael 1117 exit(0);
655 adx 30 }
656     }
657     };
658    
659     serverinfo_sid: IRCD_SID '=' QSTRING ';'
660     {
661     /* this isn't rehashable */
662 michael 967 if (conf_parser_ctx.pass == 2 && !ServerInfo.sid)
663 adx 30 {
664 michael 573 if (valid_sid(yylval.string))
665 michael 1646 ServerInfo.sid = xstrdup(yylval.string);
666 adx 30 else
667     {
668 michael 1752 conf_error_report("Ignoring serverinfo::sid -- invalid SID. Aborting.");
669 adx 30 exit(0);
670     }
671     }
672     };
673    
674     serverinfo_description: DESCRIPTION '=' QSTRING ';'
675     {
676 michael 967 if (conf_parser_ctx.pass == 2)
677 adx 30 {
678     MyFree(ServerInfo.description);
679 michael 1646 ServerInfo.description = xstrdup(yylval.string);
680 adx 30 }
681     };
682    
683     serverinfo_network_name: NETWORK_NAME '=' QSTRING ';'
684     {
685 michael 967 if (conf_parser_ctx.pass == 2)
686 adx 30 {
687     char *p;
688    
689     if ((p = strchr(yylval.string, ' ')) != NULL)
690     p = '\0';
691    
692     MyFree(ServerInfo.network_name);
693 michael 1646 ServerInfo.network_name = xstrdup(yylval.string);
694 adx 30 }
695     };
696    
697     serverinfo_network_desc: NETWORK_DESC '=' QSTRING ';'
698     {
699 michael 967 if (conf_parser_ctx.pass == 2)
700 adx 30 {
701     MyFree(ServerInfo.network_desc);
702 michael 1646 ServerInfo.network_desc = xstrdup(yylval.string);
703 adx 30 }
704     };
705    
706     serverinfo_vhost: VHOST '=' QSTRING ';'
707     {
708 michael 967 if (conf_parser_ctx.pass == 2 && *yylval.string != '*')
709 adx 30 {
710     struct addrinfo hints, *res;
711    
712     memset(&hints, 0, sizeof(hints));
713    
714     hints.ai_family = AF_UNSPEC;
715     hints.ai_socktype = SOCK_STREAM;
716     hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
717    
718 michael 1123 if (getaddrinfo(yylval.string, NULL, &hints, &res))
719 michael 1247 ilog(LOG_TYPE_IRCD, "Invalid netmask for server vhost(%s)", yylval.string);
720 adx 30 else
721     {
722     assert(res != NULL);
723    
724     memcpy(&ServerInfo.ip, res->ai_addr, res->ai_addrlen);
725     ServerInfo.ip.ss.ss_family = res->ai_family;
726     ServerInfo.ip.ss_len = res->ai_addrlen;
727 michael 1123 freeaddrinfo(res);
728 adx 30
729     ServerInfo.specific_ipv4_vhost = 1;
730     }
731     }
732     };
733    
734     serverinfo_vhost6: VHOST6 '=' QSTRING ';'
735     {
736     #ifdef IPV6
737 michael 967 if (conf_parser_ctx.pass == 2 && *yylval.string != '*')
738 adx 30 {
739     struct addrinfo hints, *res;
740    
741     memset(&hints, 0, sizeof(hints));
742    
743     hints.ai_family = AF_UNSPEC;
744     hints.ai_socktype = SOCK_STREAM;
745     hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
746    
747 michael 1123 if (getaddrinfo(yylval.string, NULL, &hints, &res))
748 michael 1247 ilog(LOG_TYPE_IRCD, "Invalid netmask for server vhost6(%s)", yylval.string);
749 adx 30 else
750     {
751     assert(res != NULL);
752    
753     memcpy(&ServerInfo.ip6, res->ai_addr, res->ai_addrlen);
754     ServerInfo.ip6.ss.ss_family = res->ai_family;
755     ServerInfo.ip6.ss_len = res->ai_addrlen;
756 michael 1123 freeaddrinfo(res);
757 adx 30
758     ServerInfo.specific_ipv6_vhost = 1;
759     }
760     }
761     #endif
762     };
763    
764     serverinfo_max_clients: T_MAX_CLIENTS '=' NUMBER ';'
765     {
766 michael 1736 if (conf_parser_ctx.pass != 2)
767     break;
768    
769     if ($3 < MAXCLIENTS_MIN)
770 adx 30 {
771 michael 1736 char buf[IRCD_BUFSIZE];
772 adx 30
773 michael 1736 snprintf(buf, sizeof(buf), "MAXCLIENTS too low, setting to %d", MAXCLIENTS_MIN);
774 michael 1752 conf_error_report(buf);
775 michael 1736 ServerInfo.max_clients = MAXCLIENTS_MIN;
776 adx 30 }
777 michael 1736 else if ($3 > MAXCLIENTS_MAX)
778     {
779     char buf[IRCD_BUFSIZE];
780    
781     snprintf(buf, sizeof(buf), "MAXCLIENTS too high, setting to %d", MAXCLIENTS_MAX);
782 michael 1752 conf_error_report(buf);
783 michael 1736 ServerInfo.max_clients = MAXCLIENTS_MAX;
784     }
785     else
786     ServerInfo.max_clients = $3;
787 adx 30 };
788    
789 michael 1751 serverinfo_max_nick_length: MAX_NICK_LENGTH '=' NUMBER ';'
790     {
791     if (conf_parser_ctx.pass != 2)
792     break;
793    
794     if ($3 < 9)
795     {
796     conf_error_report("max_nick_length too low, setting to 9");
797     ServerInfo.max_nick_length = 9;
798     }
799     else if ($3 > NICKLEN)
800     {
801     char buf[IRCD_BUFSIZE];
802    
803     snprintf(buf, sizeof(buf), "max_nick_length too high, setting to %d", NICKLEN);
804     conf_error_report(buf);
805     ServerInfo.max_nick_length = NICKLEN;
806     }
807     else
808     ServerInfo.max_nick_length = $3;
809     };
810    
811     serverinfo_max_topic_length: MAX_TOPIC_LENGTH '=' NUMBER ';'
812     {
813     if (conf_parser_ctx.pass != 2)
814     break;
815    
816     if ($3 < 80)
817     {
818     conf_error_report("max_topic_length too low, setting to 80");
819     ServerInfo.max_topic_length = 80;
820     }
821     else if ($3 > TOPICLEN)
822     {
823     char buf[IRCD_BUFSIZE];
824    
825     snprintf(buf, sizeof(buf), "max_topic_length too high, setting to %d", TOPICLEN);
826     conf_error_report(buf);
827     ServerInfo.max_topic_length = TOPICLEN;
828     }
829     else
830     ServerInfo.max_topic_length = $3;
831     };
832    
833 adx 30 serverinfo_hub: HUB '=' TBOOL ';'
834     {
835 michael 967 if (conf_parser_ctx.pass == 2)
836 michael 1119 ServerInfo.hub = yylval.number;
837 adx 30 };
838    
839     /***************************************************************************
840     * admin section
841     ***************************************************************************/
842     admin_entry: ADMIN '{' admin_items '}' ';' ;
843    
844     admin_items: admin_items admin_item | admin_item;
845     admin_item: admin_name | admin_description |
846     admin_email | error ';' ;
847    
848     admin_name: NAME '=' QSTRING ';'
849     {
850 michael 967 if (conf_parser_ctx.pass == 2)
851 adx 30 {
852     MyFree(AdminInfo.name);
853 michael 1646 AdminInfo.name = xstrdup(yylval.string);
854 adx 30 }
855     };
856    
857     admin_email: EMAIL '=' QSTRING ';'
858     {
859 michael 967 if (conf_parser_ctx.pass == 2)
860 adx 30 {
861     MyFree(AdminInfo.email);
862 michael 1646 AdminInfo.email = xstrdup(yylval.string);
863 adx 30 }
864     };
865    
866     admin_description: DESCRIPTION '=' QSTRING ';'
867     {
868 michael 967 if (conf_parser_ctx.pass == 2)
869 adx 30 {
870     MyFree(AdminInfo.description);
871 michael 1646 AdminInfo.description = xstrdup(yylval.string);
872 adx 30 }
873     };
874    
875     /***************************************************************************
876     * section logging
877     ***************************************************************************/
878 michael 1247 logging_entry: T_LOG '{' logging_items '}' ';' ;
879     logging_items: logging_items logging_item | logging_item ;
880 adx 30
881 michael 1324 logging_item: logging_use_logging | logging_file_entry |
882 adx 30 error ';' ;
883    
884 michael 1247 logging_use_logging: USE_LOGGING '=' TBOOL ';'
885 adx 30 {
886 michael 967 if (conf_parser_ctx.pass == 2)
887 michael 1247 ConfigLoggingEntry.use_logging = yylval.number;
888 adx 30 };
889    
890 michael 1247 logging_file_entry:
891 adx 30 {
892 michael 1647 if (conf_parser_ctx.pass == 2)
893     reset_block_state();
894 michael 1247 } T_FILE '{' logging_file_items '}' ';'
895 adx 30 {
896 michael 1647 if (conf_parser_ctx.pass != 2)
897     break;
898    
899     if (block_state.type.value && block_state.file.buf[0])
900     log_add_file(block_state.type.value, block_state.size.value,
901     block_state.file.buf);
902 adx 30 };
903    
904 michael 1247 logging_file_items: logging_file_items logging_file_item |
905     logging_file_item ;
906 adx 30
907 michael 1247 logging_file_item: logging_file_name | logging_file_type |
908     logging_file_size | error ';' ;
909    
910     logging_file_name: NAME '=' QSTRING ';'
911 adx 30 {
912 michael 1647 if (conf_parser_ctx.pass != 2)
913     break;
914    
915     strlcpy(block_state.file.buf, yylval.string, sizeof(block_state.file.buf));
916 michael 1247 }
917 adx 30
918 michael 1247 logging_file_size: T_SIZE '=' sizespec ';'
919 adx 30 {
920 michael 1647 block_state.size.value = $3;
921 michael 1250 } | T_SIZE '=' T_UNLIMITED ';'
922     {
923 michael 1647 block_state.size.value = 0;
924 adx 30 };
925    
926 michael 1247 logging_file_type: TYPE
927 adx 30 {
928 michael 967 if (conf_parser_ctx.pass == 2)
929 michael 1647 block_state.type.value = 0;
930 michael 1247 } '=' logging_file_type_items ';' ;
931 adx 30
932 michael 1247 logging_file_type_items: logging_file_type_items ',' logging_file_type_item | logging_file_type_item;
933     logging_file_type_item: USER
934 adx 30 {
935 michael 967 if (conf_parser_ctx.pass == 2)
936 michael 1647 block_state.type.value = LOG_TYPE_USER;
937 michael 1247 } | OPERATOR
938 adx 30 {
939 michael 967 if (conf_parser_ctx.pass == 2)
940 michael 1647 block_state.type.value = LOG_TYPE_OPER;
941 michael 1247 } | GLINE
942 adx 30 {
943 michael 967 if (conf_parser_ctx.pass == 2)
944 michael 1647 block_state.type.value = LOG_TYPE_GLINE;
945 michael 1247 } | T_DLINE
946 adx 30 {
947 michael 967 if (conf_parser_ctx.pass == 2)
948 michael 1647 block_state.type.value = LOG_TYPE_DLINE;
949 michael 1247 } | KLINE
950 adx 30 {
951 michael 967 if (conf_parser_ctx.pass == 2)
952 michael 1647 block_state.type.value = LOG_TYPE_KLINE;
953 michael 1247 } | KILL
954 adx 30 {
955 michael 967 if (conf_parser_ctx.pass == 2)
956 michael 1647 block_state.type.value = LOG_TYPE_KILL;
957 michael 1247 } | T_DEBUG
958 adx 30 {
959 michael 967 if (conf_parser_ctx.pass == 2)
960 michael 1647 block_state.type.value = LOG_TYPE_DEBUG;
961 adx 30 };
962    
963 michael 1247
964 adx 30 /***************************************************************************
965     * section oper
966     ***************************************************************************/
967     oper_entry: OPERATOR
968     {
969 michael 1646 if (conf_parser_ctx.pass != 2)
970     break;
971    
972     reset_block_state();
973     block_state.flags.value |= CONF_FLAGS_ENCRYPTED;
974 michael 1285 } '{' oper_items '}' ';'
975 adx 30 {
976 michael 1646 dlink_node *ptr = NULL;
977 adx 30
978 michael 1646 if (conf_parser_ctx.pass != 2)
979     break;
980 adx 30
981 michael 1646 if (!block_state.name.buf[0])
982     break;
983     #ifdef HAVE_LIBCRYPTO
984     if (!(block_state.file.buf[0] ||
985 michael 1647 block_state.rpass.buf[0]))
986 michael 1646 break;
987     #else
988 michael 1647 if (!block_state.rpass.buf[0])
989 michael 1646 break;
990     #endif
991 adx 30
992 michael 1646 DLINK_FOREACH(ptr, block_state.mask.list.head)
993     {
994     struct MaskItem *conf = NULL;
995     struct split_nuh_item nuh;
996 adx 30
997 michael 1646 nuh.nuhmask = ptr->data;
998     nuh.nickptr = NULL;
999 michael 1647 nuh.userptr = block_state.user.buf;
1000     nuh.hostptr = block_state.host.buf;
1001 michael 1646 nuh.nicksize = 0;
1002 michael 1647 nuh.usersize = sizeof(block_state.user.buf);
1003     nuh.hostsize = sizeof(block_state.host.buf);
1004 michael 1646 split_nuh(&nuh);
1005 adx 30
1006 michael 1646 conf = conf_make(CONF_OPER);
1007 michael 1650 conf->name = xstrdup(block_state.name.buf);
1008 michael 1647 conf->user = xstrdup(block_state.user.buf);
1009     conf->host = xstrdup(block_state.host.buf);
1010 michael 1285
1011 michael 1647 if (block_state.rpass.buf[0])
1012     conf->passwd = xstrdup(block_state.rpass.buf);
1013 michael 1285
1014 michael 1646 conf->flags = block_state.flags.value;
1015     conf->modes = block_state.modes.value;
1016     conf->port = block_state.port.value;
1017     conf->htype = parse_netmask(conf->host, &conf->addr, &conf->bits);
1018 adx 30
1019 michael 1646 conf_add_class_to_conf(conf, block_state.class.buf);
1020    
1021 adx 30 #ifdef HAVE_LIBCRYPTO
1022 michael 1646 if (block_state.file.buf[0])
1023     {
1024     BIO *file = NULL;
1025     RSA *pkey = NULL;
1026    
1027     if ((file = BIO_new_file(block_state.file.buf, "r")) == NULL)
1028 adx 30 {
1029 michael 1752 conf_error_report("Ignoring rsa_public_key_file -- file doesn't exist");
1030 michael 1646 break;
1031 adx 30 }
1032    
1033 michael 1646 if ((pkey = PEM_read_bio_RSA_PUBKEY(file, NULL, 0, NULL)) == NULL)
1034 michael 1752 conf_error_report("Ignoring rsa_public_key_file -- Key invalid; check key syntax.");
1035 adx 30
1036 michael 1646 conf->rsa_public_key = pkey;
1037     BIO_set_close(file, BIO_CLOSE);
1038     BIO_free(file);
1039 adx 30 }
1040 michael 1646 #endif /* HAVE_LIBCRYPTO */
1041 adx 30 }
1042 michael 1646 };
1043 adx 30
1044     oper_items: oper_items oper_item | oper_item;
1045 michael 1076 oper_item: oper_name | oper_user | oper_password |
1046     oper_umodes | oper_class | oper_encrypted |
1047     oper_rsa_public_key_file | oper_flags | error ';' ;
1048 adx 30
1049     oper_name: NAME '=' QSTRING ';'
1050     {
1051 michael 967 if (conf_parser_ctx.pass == 2)
1052 michael 1646 strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1053 adx 30 };
1054    
1055     oper_user: USER '=' QSTRING ';'
1056     {
1057 michael 967 if (conf_parser_ctx.pass == 2)
1058 michael 1646 dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.mask.list);
1059 adx 30 };
1060    
1061     oper_password: PASSWORD '=' QSTRING ';'
1062     {
1063 michael 967 if (conf_parser_ctx.pass == 2)
1064 michael 1647 strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
1065 adx 30 };
1066    
1067     oper_encrypted: ENCRYPTED '=' TBOOL ';'
1068     {
1069 michael 967 if (conf_parser_ctx.pass == 2)
1070 adx 30 {
1071     if (yylval.number)
1072 michael 1646 block_state.flags.value |= CONF_FLAGS_ENCRYPTED;
1073 adx 30 else
1074 michael 1646 block_state.flags.value &= ~CONF_FLAGS_ENCRYPTED;
1075 adx 30 }
1076     };
1077    
1078     oper_rsa_public_key_file: RSA_PUBLIC_KEY_FILE '=' QSTRING ';'
1079     {
1080 michael 967 if (conf_parser_ctx.pass == 2)
1081 michael 1646 strlcpy(block_state.file.buf, yylval.string, sizeof(block_state.file.buf));
1082 adx 30 };
1083    
1084     oper_class: CLASS '=' QSTRING ';'
1085     {
1086 michael 967 if (conf_parser_ctx.pass == 2)
1087 michael 1646 strlcpy(block_state.class.buf, yylval.string, sizeof(block_state.class.buf));
1088 adx 30 };
1089    
1090 michael 56 oper_umodes: T_UMODES
1091     {
1092 michael 967 if (conf_parser_ctx.pass == 2)
1093 michael 1646 block_state.modes.value = 0;
1094 michael 56 } '=' oper_umodes_items ';' ;
1095    
1096     oper_umodes_items: oper_umodes_items ',' oper_umodes_item | oper_umodes_item;
1097     oper_umodes_item: T_BOTS
1098     {
1099 michael 967 if (conf_parser_ctx.pass == 2)
1100 michael 1646 block_state.modes.value |= UMODE_BOTS;
1101 michael 56 } | T_CCONN
1102     {
1103 michael 967 if (conf_parser_ctx.pass == 2)
1104 michael 1646 block_state.modes.value |= UMODE_CCONN;
1105 db 849 } | T_CCONN_FULL
1106     {
1107 michael 967 if (conf_parser_ctx.pass == 2)
1108 michael 1646 block_state.modes.value |= UMODE_CCONN_FULL;
1109 michael 56 } | T_DEAF
1110     {
1111 michael 967 if (conf_parser_ctx.pass == 2)
1112 michael 1646 block_state.modes.value |= UMODE_DEAF;
1113 michael 56 } | T_DEBUG
1114     {
1115 michael 967 if (conf_parser_ctx.pass == 2)
1116 michael 1646 block_state.modes.value |= UMODE_DEBUG;
1117 michael 56 } | T_FULL
1118     {
1119 michael 967 if (conf_parser_ctx.pass == 2)
1120 michael 1646 block_state.modes.value |= UMODE_FULL;
1121 michael 1294 } | HIDDEN
1122     {
1123     if (conf_parser_ctx.pass == 2)
1124 michael 1646 block_state.modes.value |= UMODE_HIDDEN;
1125 michael 56 } | T_SKILL
1126     {
1127 michael 967 if (conf_parser_ctx.pass == 2)
1128 michael 1646 block_state.modes.value |= UMODE_SKILL;
1129 michael 56 } | T_NCHANGE
1130     {
1131 michael 967 if (conf_parser_ctx.pass == 2)
1132 michael 1646 block_state.modes.value |= UMODE_NCHANGE;
1133 michael 56 } | T_REJ
1134     {
1135 michael 967 if (conf_parser_ctx.pass == 2)
1136 michael 1646 block_state.modes.value |= UMODE_REJ;
1137 michael 56 } | T_UNAUTH
1138     {
1139 michael 967 if (conf_parser_ctx.pass == 2)
1140 michael 1646 block_state.modes.value |= UMODE_UNAUTH;
1141 michael 56 } | T_SPY
1142     {
1143 michael 967 if (conf_parser_ctx.pass == 2)
1144 michael 1646 block_state.modes.value |= UMODE_SPY;
1145 michael 56 } | T_EXTERNAL
1146     {
1147 michael 967 if (conf_parser_ctx.pass == 2)
1148 michael 1646 block_state.modes.value |= UMODE_EXTERNAL;
1149 michael 56 } | T_OPERWALL
1150     {
1151 michael 967 if (conf_parser_ctx.pass == 2)
1152 michael 1646 block_state.modes.value |= UMODE_OPERWALL;
1153 michael 56 } | T_SERVNOTICE
1154     {
1155 michael 967 if (conf_parser_ctx.pass == 2)
1156 michael 1646 block_state.modes.value |= UMODE_SERVNOTICE;
1157 michael 56 } | T_INVISIBLE
1158     {
1159 michael 967 if (conf_parser_ctx.pass == 2)
1160 michael 1646 block_state.modes.value |= UMODE_INVISIBLE;
1161 michael 56 } | T_WALLOP
1162     {
1163 michael 967 if (conf_parser_ctx.pass == 2)
1164 michael 1646 block_state.modes.value |= UMODE_WALLOP;
1165 michael 56 } | T_SOFTCALLERID
1166     {
1167 michael 967 if (conf_parser_ctx.pass == 2)
1168 michael 1646 block_state.modes.value |= UMODE_SOFTCALLERID;
1169 michael 56 } | T_CALLERID
1170     {
1171 michael 967 if (conf_parser_ctx.pass == 2)
1172 michael 1646 block_state.modes.value |= UMODE_CALLERID;
1173 michael 56 } | T_LOCOPS
1174     {
1175 michael 967 if (conf_parser_ctx.pass == 2)
1176 michael 1646 block_state.modes.value |= UMODE_LOCOPS;
1177 michael 56 };
1178    
1179 adx 30 oper_flags: IRCD_FLAGS
1180     {
1181 michael 1228 if (conf_parser_ctx.pass == 2)
1182 michael 1646 block_state.port.value = 0;
1183 adx 30 } '=' oper_flags_items ';';
1184    
1185     oper_flags_items: oper_flags_items ',' oper_flags_item | oper_flags_item;
1186 michael 1228 oper_flags_item: GLOBAL_KILL
1187 adx 30 {
1188 michael 967 if (conf_parser_ctx.pass == 2)
1189 michael 1646 block_state.port.value |= OPER_FLAG_GLOBAL_KILL;
1190 adx 30 } | REMOTE
1191     {
1192 michael 967 if (conf_parser_ctx.pass == 2)
1193 michael 1646 block_state.port.value |= OPER_FLAG_REMOTE;
1194 adx 30 } | KLINE
1195     {
1196 michael 967 if (conf_parser_ctx.pass == 2)
1197 michael 1646 block_state.port.value |= OPER_FLAG_K;
1198 adx 30 } | UNKLINE
1199     {
1200 michael 967 if (conf_parser_ctx.pass == 2)
1201 michael 1646 block_state.port.value |= OPER_FLAG_UNKLINE;
1202 michael 1301 } | T_DLINE
1203     {
1204     if (conf_parser_ctx.pass == 2)
1205 michael 1646 block_state.port.value |= OPER_FLAG_DLINE;
1206 michael 1301 } | T_UNDLINE
1207     {
1208     if (conf_parser_ctx.pass == 2)
1209 michael 1646 block_state.port.value |= OPER_FLAG_UNDLINE;
1210 adx 30 } | XLINE
1211     {
1212 michael 967 if (conf_parser_ctx.pass == 2)
1213 michael 1646 block_state.port.value |= OPER_FLAG_X;
1214 adx 30 } | GLINE
1215     {
1216 michael 967 if (conf_parser_ctx.pass == 2)
1217 michael 1646 block_state.port.value |= OPER_FLAG_GLINE;
1218 adx 30 } | DIE
1219     {
1220 michael 967 if (conf_parser_ctx.pass == 2)
1221 michael 1646 block_state.port.value |= OPER_FLAG_DIE;
1222 michael 1228 } | T_RESTART
1223     {
1224     if (conf_parser_ctx.pass == 2)
1225 michael 1646 block_state.port.value |= OPER_FLAG_RESTART;
1226 adx 30 } | REHASH
1227     {
1228 michael 967 if (conf_parser_ctx.pass == 2)
1229 michael 1646 block_state.port.value |= OPER_FLAG_REHASH;
1230 adx 30 } | ADMIN
1231     {
1232 michael 967 if (conf_parser_ctx.pass == 2)
1233 michael 1646 block_state.port.value |= OPER_FLAG_ADMIN;
1234 adx 30 } | NICK_CHANGES
1235     {
1236 michael 967 if (conf_parser_ctx.pass == 2)
1237 michael 1646 block_state.port.value |= OPER_FLAG_N;
1238 adx 30 } | T_OPERWALL
1239     {
1240 michael 967 if (conf_parser_ctx.pass == 2)
1241 michael 1646 block_state.port.value |= OPER_FLAG_OPERWALL;
1242 michael 1216 } | T_GLOBOPS
1243     {
1244     if (conf_parser_ctx.pass == 2)
1245 michael 1646 block_state.port.value |= OPER_FLAG_GLOBOPS;
1246 adx 30 } | OPER_SPY_T
1247     {
1248 michael 967 if (conf_parser_ctx.pass == 2)
1249 michael 1646 block_state.port.value |= OPER_FLAG_OPER_SPY;
1250 adx 30 } | REMOTEBAN
1251     {
1252 michael 967 if (conf_parser_ctx.pass == 2)
1253 michael 1646 block_state.port.value |= OPER_FLAG_REMOTEBAN;
1254 michael 1460 } | T_SET
1255     {
1256     if (conf_parser_ctx.pass == 2)
1257 michael 1646 block_state.port.value |= OPER_FLAG_SET;
1258 michael 1228 } | MODULE
1259 adx 30 {
1260 michael 967 if (conf_parser_ctx.pass == 2)
1261 michael 1646 block_state.port.value |= OPER_FLAG_MODULE;
1262 adx 30 };
1263    
1264    
1265     /***************************************************************************
1266     * section class
1267     ***************************************************************************/
1268     class_entry: CLASS
1269     {
1270 michael 1651 if (conf_parser_ctx.pass != 1)
1271     break;
1272    
1273     reset_block_state();
1274    
1275     block_state.ping_freq.value = DEFAULT_PINGFREQUENCY;
1276     block_state.con_freq.value = DEFAULT_CONNECTFREQUENCY;
1277     block_state.max_total.value = MAXIMUM_LINKS_DEFAULT;
1278     block_state.max_sendq.value = DEFAULT_SENDQ;
1279     block_state.max_recvq.value = DEFAULT_RECVQ;
1280 michael 1285 } '{' class_items '}' ';'
1281 adx 30 {
1282 michael 1647 struct ClassItem *class = NULL;
1283 adx 30
1284 michael 1647 if (conf_parser_ctx.pass != 1)
1285     break;
1286 adx 30
1287 michael 1647 if (!block_state.class.buf[0])
1288     break;
1289 michael 671
1290 michael 1647 if (!(class = class_find(block_state.class.buf, 0)))
1291     class = class_make();
1292 michael 671
1293 michael 1647 class->active = 1;
1294     MyFree(class->name);
1295     class->name = xstrdup(block_state.class.buf);
1296 michael 1783 class->flags = block_state.flags.value;
1297 michael 1647 class->ping_freq = block_state.ping_freq.value;
1298     class->max_perip = block_state.max_perip.value;
1299     class->con_freq = block_state.con_freq.value;
1300 michael 1783 class->min_idle = block_state.min_idle.value;
1301     class->max_idle = block_state.max_idle.value;
1302 michael 1647 class->max_total = block_state.max_total.value;
1303     class->max_global = block_state.max_global.value;
1304     class->max_local = block_state.max_local.value;
1305     class->max_ident = block_state.max_ident.value;
1306     class->max_sendq = block_state.max_sendq.value;
1307     class->max_recvq = block_state.max_recvq.value;
1308 michael 671
1309 michael 1647 if (class->number_per_cidr && block_state.number_per_cidr.value)
1310     if ((class->cidr_bitlen_ipv4 && block_state.cidr_bitlen_ipv4.value) ||
1311     (class->cidr_bitlen_ipv6 && block_state.cidr_bitlen_ipv6.value))
1312     if ((class->cidr_bitlen_ipv4 != block_state.cidr_bitlen_ipv4.value) ||
1313     (class->cidr_bitlen_ipv6 != block_state.cidr_bitlen_ipv6.value))
1314     rebuild_cidr_list(class);
1315 adx 30
1316 michael 1647 class->cidr_bitlen_ipv4 = block_state.cidr_bitlen_ipv4.value;
1317     class->cidr_bitlen_ipv6 = block_state.cidr_bitlen_ipv6.value;
1318     class->number_per_cidr = block_state.number_per_cidr.value;
1319 adx 30 };
1320    
1321     class_items: class_items class_item | class_item;
1322     class_item: class_name |
1323     class_cidr_bitlen_ipv4 | class_cidr_bitlen_ipv6 |
1324     class_ping_time |
1325     class_number_per_cidr |
1326     class_number_per_ip |
1327     class_connectfreq |
1328     class_max_number |
1329     class_max_global |
1330     class_max_local |
1331     class_max_ident |
1332 michael 1516 class_sendq | class_recvq |
1333 michael 1783 class_min_idle |
1334     class_max_idle |
1335     class_flags |
1336 adx 30 error ';' ;
1337    
1338     class_name: NAME '=' QSTRING ';'
1339     {
1340 michael 967 if (conf_parser_ctx.pass == 1)
1341 michael 1647 strlcpy(block_state.class.buf, yylval.string, sizeof(block_state.class.buf));
1342 adx 30 };
1343    
1344     class_ping_time: PING_TIME '=' timespec ';'
1345     {
1346 michael 967 if (conf_parser_ctx.pass == 1)
1347 michael 1647 block_state.ping_freq.value = $3;
1348 adx 30 };
1349    
1350     class_number_per_ip: NUMBER_PER_IP '=' NUMBER ';'
1351     {
1352 michael 967 if (conf_parser_ctx.pass == 1)
1353 michael 1647 block_state.max_perip.value = $3;
1354 adx 30 };
1355    
1356     class_connectfreq: CONNECTFREQ '=' timespec ';'
1357     {
1358 michael 967 if (conf_parser_ctx.pass == 1)
1359 michael 1647 block_state.con_freq.value = $3;
1360 adx 30 };
1361    
1362     class_max_number: MAX_NUMBER '=' NUMBER ';'
1363     {
1364 michael 967 if (conf_parser_ctx.pass == 1)
1365 michael 1647 block_state.max_total.value = $3;
1366 adx 30 };
1367    
1368     class_max_global: MAX_GLOBAL '=' NUMBER ';'
1369     {
1370 michael 967 if (conf_parser_ctx.pass == 1)
1371 michael 1647 block_state.max_global.value = $3;
1372 adx 30 };
1373    
1374     class_max_local: MAX_LOCAL '=' NUMBER ';'
1375     {
1376 michael 967 if (conf_parser_ctx.pass == 1)
1377 michael 1647 block_state.max_local.value = $3;
1378 adx 30 };
1379    
1380     class_max_ident: MAX_IDENT '=' NUMBER ';'
1381     {
1382 michael 967 if (conf_parser_ctx.pass == 1)
1383 michael 1647 block_state.max_ident.value = $3;
1384 adx 30 };
1385    
1386     class_sendq: SENDQ '=' sizespec ';'
1387     {
1388 michael 967 if (conf_parser_ctx.pass == 1)
1389 michael 1647 block_state.max_sendq.value = $3;
1390 adx 30 };
1391    
1392 michael 1516 class_recvq: T_RECVQ '=' sizespec ';'
1393     {
1394     if (conf_parser_ctx.pass == 1)
1395     if ($3 >= CLIENT_FLOOD_MIN && $3 <= CLIENT_FLOOD_MAX)
1396 michael 1647 block_state.max_recvq.value = $3;
1397 michael 1516 };
1398    
1399 adx 30 class_cidr_bitlen_ipv4: CIDR_BITLEN_IPV4 '=' NUMBER ';'
1400     {
1401 michael 967 if (conf_parser_ctx.pass == 1)
1402 michael 1647 block_state.cidr_bitlen_ipv4.value = $3 > 32 ? 32 : $3;
1403 adx 30 };
1404    
1405     class_cidr_bitlen_ipv6: CIDR_BITLEN_IPV6 '=' NUMBER ';'
1406     {
1407 michael 967 if (conf_parser_ctx.pass == 1)
1408 michael 1647 block_state.cidr_bitlen_ipv6.value = $3 > 128 ? 128 : $3;
1409 adx 30 };
1410    
1411     class_number_per_cidr: NUMBER_PER_CIDR '=' NUMBER ';'
1412     {
1413 michael 967 if (conf_parser_ctx.pass == 1)
1414 michael 1647 block_state.number_per_cidr.value = $3;
1415 adx 30 };
1416    
1417 michael 1783 class_min_idle: MIN_IDLE '=' timespec ';'
1418     {
1419     if (conf_parser_ctx.pass == 1)
1420     block_state.min_idle.value = $3;
1421     };
1422    
1423     class_max_idle: MAX_IDLE '=' timespec ';'
1424     {
1425     if (conf_parser_ctx.pass == 1)
1426     block_state.max_idle.value = $3;
1427     };
1428    
1429     class_flags: IRCD_FLAGS
1430     {
1431     if (conf_parser_ctx.pass == 1)
1432     block_state.flags.value = 0;
1433     } '=' class_flags_items ';';
1434    
1435     class_flags_items: class_flags_items ',' class_flags_item | class_flags_item;
1436     class_flags_item: RANDOM_IDLE
1437     {
1438     if (conf_parser_ctx.pass == 1)
1439     block_state.flags.value |= CLASS_FLAGS_RANDOM_IDLE;
1440     } | HIDE_IDLE_FROM_OPERS
1441     {
1442     if (conf_parser_ctx.pass == 1)
1443     block_state.flags.value |= CLASS_FLAGS_HIDE_IDLE_FROM_OPERS;
1444     };
1445    
1446    
1447 adx 30 /***************************************************************************
1448     * section listen
1449     ***************************************************************************/
1450     listen_entry: LISTEN
1451     {
1452 michael 967 if (conf_parser_ctx.pass == 2)
1453 michael 1646 reset_block_state();
1454     } '{' listen_items '}' ';';
1455 adx 30
1456     listen_flags: IRCD_FLAGS
1457     {
1458 michael 1646 block_state.flags.value = 0;
1459 adx 30 } '=' listen_flags_items ';';
1460    
1461     listen_flags_items: listen_flags_items ',' listen_flags_item | listen_flags_item;
1462     listen_flags_item: T_SSL
1463     {
1464 michael 967 if (conf_parser_ctx.pass == 2)
1465 michael 1646 block_state.flags.value |= LISTENER_SSL;
1466 adx 30 } | HIDDEN
1467     {
1468 michael 967 if (conf_parser_ctx.pass == 2)
1469 michael 1647 block_state.flags.value |= LISTENER_HIDDEN;
1470 michael 900 } | T_SERVER
1471     {
1472 michael 967 if (conf_parser_ctx.pass == 2)
1473 michael 1647 block_state.flags.value |= LISTENER_SERVER;
1474 adx 30 };
1475    
1476     listen_items: listen_items listen_item | listen_item;
1477 michael 440 listen_item: listen_port | listen_flags | listen_address | listen_host | error ';';
1478 adx 30
1479 michael 1648 listen_port: PORT '=' port_items { block_state.flags.value = 0; } ';';
1480 adx 30
1481     port_items: port_items ',' port_item | port_item;
1482    
1483     port_item: NUMBER
1484     {
1485 michael 967 if (conf_parser_ctx.pass == 2)
1486 adx 30 {
1487 michael 1646 if (block_state.flags.value & LISTENER_SSL)
1488 adx 30 #ifdef HAVE_LIBCRYPTO
1489 michael 967 if (!ServerInfo.server_ctx)
1490 adx 30 #endif
1491     {
1492 michael 1752 conf_error_report("SSL not available - port closed");
1493 adx 30 break;
1494     }
1495 michael 1646 add_listener($1, block_state.addr.buf, block_state.flags.value);
1496 adx 30 }
1497     } | NUMBER TWODOTS NUMBER
1498     {
1499 michael 967 if (conf_parser_ctx.pass == 2)
1500 adx 30 {
1501     int i;
1502    
1503 michael 1646 if (block_state.flags.value & LISTENER_SSL)
1504 adx 30 #ifdef HAVE_LIBCRYPTO
1505 michael 967 if (!ServerInfo.server_ctx)
1506 adx 30 #endif
1507     {
1508 michael 1752 conf_error_report("SSL not available - port closed");
1509 adx 30 break;
1510     }
1511    
1512     for (i = $1; i <= $3; ++i)
1513 michael 1646 add_listener(i, block_state.addr.buf, block_state.flags.value);
1514 adx 30 }
1515     };
1516    
1517     listen_address: IP '=' QSTRING ';'
1518     {
1519 michael 967 if (conf_parser_ctx.pass == 2)
1520 michael 1646 strlcpy(block_state.addr.buf, yylval.string, sizeof(block_state.addr.buf));
1521 adx 30 };
1522    
1523     listen_host: HOST '=' QSTRING ';'
1524     {
1525 michael 967 if (conf_parser_ctx.pass == 2)
1526 michael 1646 strlcpy(block_state.addr.buf, yylval.string, sizeof(block_state.addr.buf));
1527 adx 30 };
1528    
1529     /***************************************************************************
1530     * section auth
1531     ***************************************************************************/
1532     auth_entry: IRCD_AUTH
1533     {
1534 michael 967 if (conf_parser_ctx.pass == 2)
1535 michael 1646 reset_block_state();
1536 adx 30 } '{' auth_items '}' ';'
1537     {
1538 michael 1646 dlink_node *ptr = NULL;
1539 adx 30
1540 michael 1646 if (conf_parser_ctx.pass != 2)
1541     break;
1542 adx 30
1543 michael 1646 DLINK_FOREACH(ptr, block_state.mask.list.head)
1544     {
1545     struct MaskItem *conf = NULL;
1546     struct split_nuh_item nuh;
1547 adx 30
1548 michael 1646 nuh.nuhmask = ptr->data;
1549     nuh.nickptr = NULL;
1550 michael 1647 nuh.userptr = block_state.user.buf;
1551     nuh.hostptr = block_state.host.buf;
1552 michael 1646 nuh.nicksize = 0;
1553 michael 1647 nuh.usersize = sizeof(block_state.user.buf);
1554     nuh.hostsize = sizeof(block_state.host.buf);
1555 michael 1646 split_nuh(&nuh);
1556 adx 30
1557 michael 1646 conf = conf_make(CONF_CLIENT);
1558 michael 1647 conf->user = xstrdup(collapse(block_state.user.buf));
1559     conf->host = xstrdup(collapse(block_state.host.buf));
1560 adx 30
1561 michael 1647 if (block_state.rpass.buf[0])
1562     conf->passwd = xstrdup(block_state.rpass.buf);
1563 michael 1646 if (block_state.name.buf[0])
1564     conf->passwd = xstrdup(block_state.name.buf);
1565 adx 30
1566 michael 1646 conf->flags = block_state.flags.value;
1567     conf->port = block_state.port.value;
1568 adx 30
1569 michael 1646 conf_add_class_to_conf(conf, block_state.class.buf);
1570     add_conf_by_address(CONF_CLIENT, conf);
1571 adx 30 }
1572     };
1573    
1574     auth_items: auth_items auth_item | auth_item;
1575     auth_item: auth_user | auth_passwd | auth_class | auth_flags |
1576 michael 1076 auth_spoof | auth_redir_serv | auth_redir_port |
1577     auth_encrypted | error ';' ;
1578 adx 30
1579     auth_user: USER '=' QSTRING ';'
1580     {
1581 michael 967 if (conf_parser_ctx.pass == 2)
1582 michael 1646 dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.mask.list);
1583 adx 30 };
1584    
1585     auth_passwd: PASSWORD '=' QSTRING ';'
1586     {
1587 michael 967 if (conf_parser_ctx.pass == 2)
1588 michael 1647 strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
1589 adx 30 };
1590    
1591     auth_class: CLASS '=' QSTRING ';'
1592     {
1593 michael 967 if (conf_parser_ctx.pass == 2)
1594 michael 1646 strlcpy(block_state.class.buf, yylval.string, sizeof(block_state.class.buf));
1595 adx 30 };
1596    
1597     auth_encrypted: ENCRYPTED '=' TBOOL ';'
1598     {
1599 michael 967 if (conf_parser_ctx.pass == 2)
1600 adx 30 {
1601     if (yylval.number)
1602 michael 1646 block_state.flags.value |= CONF_FLAGS_ENCRYPTED;
1603 adx 30 else
1604 michael 1646 block_state.flags.value &= ~CONF_FLAGS_ENCRYPTED;
1605 adx 30 }
1606     };
1607    
1608     auth_flags: IRCD_FLAGS
1609     {
1610 michael 1646 if (conf_parser_ctx.pass == 2)
1611 michael 1648 block_state.flags.value &= CONF_FLAGS_ENCRYPTED;
1612 adx 30 } '=' auth_flags_items ';';
1613    
1614     auth_flags_items: auth_flags_items ',' auth_flags_item | auth_flags_item;
1615 michael 1228 auth_flags_item: SPOOF_NOTICE
1616 adx 30 {
1617 michael 967 if (conf_parser_ctx.pass == 2)
1618 michael 1646 block_state.flags.value |= CONF_FLAGS_SPOOF_NOTICE;
1619 adx 30 } | EXCEED_LIMIT
1620     {
1621 michael 967 if (conf_parser_ctx.pass == 2)
1622 michael 1646 block_state.flags.value |= CONF_FLAGS_NOLIMIT;
1623 adx 30 } | KLINE_EXEMPT
1624     {
1625 michael 967 if (conf_parser_ctx.pass == 2)
1626 michael 1646 block_state.flags.value |= CONF_FLAGS_EXEMPTKLINE;
1627 adx 30 } | NEED_IDENT
1628     {
1629 michael 967 if (conf_parser_ctx.pass == 2)
1630 michael 1646 block_state.flags.value |= CONF_FLAGS_NEED_IDENTD;
1631 adx 30 } | CAN_FLOOD
1632     {
1633 michael 967 if (conf_parser_ctx.pass == 2)
1634 michael 1646 block_state.flags.value |= CONF_FLAGS_CAN_FLOOD;
1635 adx 30 } | NO_TILDE
1636     {
1637 michael 967 if (conf_parser_ctx.pass == 2)
1638 michael 1646 block_state.flags.value |= CONF_FLAGS_NO_TILDE;
1639 adx 30 } | GLINE_EXEMPT
1640     {
1641 michael 967 if (conf_parser_ctx.pass == 2)
1642 michael 1646 block_state.flags.value |= CONF_FLAGS_EXEMPTGLINE;
1643 adx 30 } | RESV_EXEMPT
1644     {
1645 michael 967 if (conf_parser_ctx.pass == 2)
1646 michael 1646 block_state.flags.value |= CONF_FLAGS_EXEMPTRESV;
1647 michael 1715 } | T_WEBIRC
1648     {
1649     if (conf_parser_ctx.pass == 2)
1650     block_state.flags.value |= CONF_FLAGS_WEBIRC;
1651 adx 30 } | NEED_PASSWORD
1652     {
1653 michael 967 if (conf_parser_ctx.pass == 2)
1654 michael 1646 block_state.flags.value |= CONF_FLAGS_NEED_PASSWORD;
1655 adx 30 };
1656    
1657     auth_spoof: SPOOF '=' QSTRING ';'
1658     {
1659 michael 1646 if (conf_parser_ctx.pass != 2)
1660     break;
1661    
1662     if (strlen(yylval.string) <= HOSTLEN && valid_hostname(yylval.string))
1663 adx 30 {
1664 michael 1646 strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1665     block_state.flags.value |= CONF_FLAGS_SPOOF_IP;
1666 adx 30 }
1667 michael 1646 else
1668     ilog(LOG_TYPE_IRCD, "Spoof either is too long or contains invalid characters. Ignoring it.");
1669 adx 30 };
1670    
1671     auth_redir_serv: REDIRSERV '=' QSTRING ';'
1672     {
1673 michael 1646 if (conf_parser_ctx.pass != 2)
1674     break;
1675    
1676     strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1677     block_state.flags.value |= CONF_FLAGS_REDIR;
1678 adx 30 };
1679    
1680     auth_redir_port: REDIRPORT '=' NUMBER ';'
1681     {
1682 michael 1646 if (conf_parser_ctx.pass != 2)
1683     break;
1684 michael 1647
1685 michael 1646 block_state.flags.value |= CONF_FLAGS_REDIR;
1686     block_state.port.value = $3;
1687 adx 30 };
1688    
1689    
1690     /***************************************************************************
1691     * section resv
1692     ***************************************************************************/
1693     resv_entry: RESV
1694     {
1695 michael 1647 if (conf_parser_ctx.pass != 2)
1696     break;
1697 adx 30
1698 michael 1647 reset_block_state();
1699     strlcpy(block_state.rpass.buf, CONF_NOREASON, sizeof(block_state.rpass.buf));
1700     } '{' resv_items '}' ';';
1701    
1702 adx 30 resv_items: resv_items resv_item | resv_item;
1703     resv_item: resv_creason | resv_channel | resv_nick | error ';' ;
1704    
1705     resv_creason: REASON '=' QSTRING ';'
1706     {
1707 michael 967 if (conf_parser_ctx.pass == 2)
1708 michael 1647 strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
1709 adx 30 };
1710    
1711     resv_channel: CHANNEL '=' QSTRING ';'
1712     {
1713 michael 1647 if (conf_parser_ctx.pass != 2)
1714     break;
1715 adx 30
1716 michael 1647 if (IsChanPrefix(*yylval.string))
1717     create_channel_resv(yylval.string, block_state.rpass.buf, 1);
1718 adx 30 };
1719    
1720     resv_nick: NICK '=' QSTRING ';'
1721     {
1722 michael 967 if (conf_parser_ctx.pass == 2)
1723 michael 1647 create_nick_resv(yylval.string, block_state.rpass.buf, 1);
1724 adx 30 };
1725    
1726     /***************************************************************************
1727 michael 1157 * section service
1728     ***************************************************************************/
1729     service_entry: T_SERVICE '{' service_items '}' ';';
1730    
1731     service_items: service_items service_item | service_item;
1732     service_item: service_name | error;
1733    
1734     service_name: NAME '=' QSTRING ';'
1735     {
1736     if (conf_parser_ctx.pass == 2)
1737     {
1738     if (valid_servname(yylval.string))
1739     {
1740 michael 1647 struct MaskItem *conf = conf_make(CONF_SERVICE);
1741     conf->name = xstrdup(yylval.string);
1742 michael 1157 }
1743     }
1744     };
1745    
1746     /***************************************************************************
1747 adx 30 * section shared, for sharing remote klines etc.
1748     ***************************************************************************/
1749     shared_entry: T_SHARED
1750     {
1751 michael 1647 if (conf_parser_ctx.pass != 2)
1752     break;
1753    
1754     reset_block_state();
1755    
1756     strlcpy(block_state.name.buf, "*", sizeof(block_state.name.buf));
1757     strlcpy(block_state.user.buf, "*", sizeof(block_state.user.buf));
1758     strlcpy(block_state.host.buf, "*", sizeof(block_state.host.buf));
1759     block_state.flags.value = SHARED_ALL;
1760 adx 30 } '{' shared_items '}' ';'
1761     {
1762 michael 1647 struct MaskItem *conf = NULL;
1763    
1764     if (conf_parser_ctx.pass != 2)
1765     break;
1766    
1767     conf = conf_make(CONF_ULINE);
1768     conf->flags = block_state.flags.value;
1769     conf->name = xstrdup(block_state.name.buf);
1770     conf->user = xstrdup(block_state.user.buf);
1771     conf->user = xstrdup(block_state.host.buf);
1772 adx 30 };
1773    
1774     shared_items: shared_items shared_item | shared_item;
1775     shared_item: shared_name | shared_user | shared_type | error ';' ;
1776    
1777     shared_name: NAME '=' QSTRING ';'
1778     {
1779 michael 967 if (conf_parser_ctx.pass == 2)
1780 michael 1647 strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1781 adx 30 };
1782    
1783     shared_user: USER '=' QSTRING ';'
1784     {
1785 michael 967 if (conf_parser_ctx.pass == 2)
1786 adx 30 {
1787 michael 593 struct split_nuh_item nuh;
1788    
1789     nuh.nuhmask = yylval.string;
1790     nuh.nickptr = NULL;
1791 michael 1647 nuh.userptr = block_state.user.buf;
1792     nuh.hostptr = block_state.host.buf;
1793 michael 593
1794     nuh.nicksize = 0;
1795 michael 1647 nuh.usersize = sizeof(block_state.user.buf);
1796     nuh.hostsize = sizeof(block_state.host.buf);
1797 michael 593
1798     split_nuh(&nuh);
1799 adx 30 }
1800     };
1801    
1802     shared_type: TYPE
1803     {
1804 michael 967 if (conf_parser_ctx.pass == 2)
1805 michael 1647 block_state.flags.value = 0;
1806 adx 30 } '=' shared_types ';' ;
1807    
1808     shared_types: shared_types ',' shared_type_item | shared_type_item;
1809     shared_type_item: KLINE
1810     {
1811 michael 967 if (conf_parser_ctx.pass == 2)
1812 michael 1647 block_state.flags.value |= SHARED_KLINE;
1813 michael 1301 } | UNKLINE
1814 adx 30 {
1815 michael 967 if (conf_parser_ctx.pass == 2)
1816 michael 1647 block_state.flags.value |= SHARED_UNKLINE;
1817 michael 1301 } | T_DLINE
1818 adx 30 {
1819 michael 967 if (conf_parser_ctx.pass == 2)
1820 michael 1647 block_state.flags.value |= SHARED_DLINE;
1821 michael 1301 } | T_UNDLINE
1822     {
1823     if (conf_parser_ctx.pass == 2)
1824 michael 1647 block_state.flags.value |= SHARED_UNDLINE;
1825 adx 30 } | XLINE
1826     {
1827 michael 967 if (conf_parser_ctx.pass == 2)
1828 michael 1647 block_state.flags.value |= SHARED_XLINE;
1829 adx 30 } | T_UNXLINE
1830     {
1831 michael 967 if (conf_parser_ctx.pass == 2)
1832 michael 1647 block_state.flags.value |= SHARED_UNXLINE;
1833 adx 30 } | RESV
1834     {
1835 michael 967 if (conf_parser_ctx.pass == 2)
1836 michael 1647 block_state.flags.value |= SHARED_RESV;
1837 adx 30 } | T_UNRESV
1838     {
1839 michael 967 if (conf_parser_ctx.pass == 2)
1840 michael 1647 block_state.flags.value |= SHARED_UNRESV;
1841 adx 30 } | T_LOCOPS
1842     {
1843 michael 967 if (conf_parser_ctx.pass == 2)
1844 michael 1647 block_state.flags.value |= SHARED_LOCOPS;
1845 adx 30 } | T_ALL
1846     {
1847 michael 967 if (conf_parser_ctx.pass == 2)
1848 michael 1647 block_state.flags.value = SHARED_ALL;
1849 adx 30 };
1850    
1851     /***************************************************************************
1852     * section cluster
1853     ***************************************************************************/
1854     cluster_entry: T_CLUSTER
1855     {
1856 michael 1647 if (conf_parser_ctx.pass != 2)
1857     break;
1858    
1859     reset_block_state();
1860    
1861     strlcpy(block_state.name.buf, "*", sizeof(block_state.name.buf));
1862     block_state.flags.value = SHARED_ALL;
1863 adx 30 } '{' cluster_items '}' ';'
1864     {
1865 michael 1647 struct MaskItem *conf = NULL;
1866    
1867     if (conf_parser_ctx.pass != 2)
1868     break;
1869    
1870     conf = conf_make(CONF_CLUSTER);
1871     conf->flags = block_state.flags.value;
1872     conf->name = xstrdup(block_state.name.buf);
1873 adx 30 };
1874    
1875     cluster_items: cluster_items cluster_item | cluster_item;
1876     cluster_item: cluster_name | cluster_type | error ';' ;
1877    
1878     cluster_name: NAME '=' QSTRING ';'
1879     {
1880 michael 967 if (conf_parser_ctx.pass == 2)
1881 michael 1647 strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1882 adx 30 };
1883    
1884     cluster_type: TYPE
1885     {
1886 michael 967 if (conf_parser_ctx.pass == 2)
1887 michael 1647 block_state.flags.value = 0;
1888 adx 30 } '=' cluster_types ';' ;
1889    
1890     cluster_types: cluster_types ',' cluster_type_item | cluster_type_item;
1891     cluster_type_item: KLINE
1892     {
1893 michael 967 if (conf_parser_ctx.pass == 2)
1894 michael 1647 block_state.flags.value |= SHARED_KLINE;
1895 michael 1301 } | UNKLINE
1896 adx 30 {
1897 michael 967 if (conf_parser_ctx.pass == 2)
1898 michael 1647 block_state.flags.value |= SHARED_UNKLINE;
1899 michael 1301 } | T_DLINE
1900 adx 30 {
1901 michael 967 if (conf_parser_ctx.pass == 2)
1902 michael 1647 block_state.flags.value |= SHARED_DLINE;
1903 michael 1301 } | T_UNDLINE
1904     {
1905     if (conf_parser_ctx.pass == 2)
1906 michael 1647 block_state.flags.value |= SHARED_UNDLINE;
1907 adx 30 } | XLINE
1908     {
1909 michael 967 if (conf_parser_ctx.pass == 2)
1910 michael 1647 block_state.flags.value |= SHARED_XLINE;
1911 adx 30 } | T_UNXLINE
1912     {
1913 michael 967 if (conf_parser_ctx.pass == 2)
1914 michael 1647 block_state.flags.value |= SHARED_UNXLINE;
1915 adx 30 } | RESV
1916     {
1917 michael 967 if (conf_parser_ctx.pass == 2)
1918 michael 1647 block_state.flags.value |= SHARED_RESV;
1919 adx 30 } | T_UNRESV
1920     {
1921 michael 967 if (conf_parser_ctx.pass == 2)
1922 michael 1647 block_state.flags.value |= SHARED_UNRESV;
1923 adx 30 } | T_LOCOPS
1924     {
1925 michael 967 if (conf_parser_ctx.pass == 2)
1926 michael 1647 block_state.flags.value |= SHARED_LOCOPS;
1927 adx 30 } | T_ALL
1928     {
1929 michael 967 if (conf_parser_ctx.pass == 2)
1930 michael 1647 block_state.flags.value = SHARED_ALL;
1931 adx 30 };
1932    
1933     /***************************************************************************
1934     * section connect
1935     ***************************************************************************/
1936     connect_entry: CONNECT
1937     {
1938 michael 1265
1939 michael 1647 if (conf_parser_ctx.pass != 2)
1940     break;
1941    
1942     reset_block_state();
1943     block_state.port.value = PORTNUM;
1944 michael 1285 } '{' connect_items '}' ';'
1945 adx 30 {
1946 michael 1647 struct MaskItem *conf = NULL;
1947     struct addrinfo hints, *res;
1948    
1949     if (conf_parser_ctx.pass != 2)
1950     break;
1951    
1952 michael 1648 if (!block_state.name.buf[0] ||
1953     !block_state.host.buf[0])
1954 michael 1647 break;
1955    
1956     if (!(block_state.rpass.buf[0] ||
1957     block_state.spass.buf[0]))
1958     break;
1959    
1960     if (has_wildcards(block_state.name.buf) ||
1961     has_wildcards(block_state.host.buf))
1962     break;
1963    
1964     conf = conf_make(CONF_SERVER);
1965     conf->port = block_state.port.value;
1966     conf->flags = block_state.flags.value;
1967     conf->aftype = block_state.aftype.value;
1968     conf->host = xstrdup(block_state.host.buf);
1969     conf->name = xstrdup(block_state.name.buf);
1970     conf->passwd = xstrdup(block_state.rpass.buf);
1971     conf->spasswd = xstrdup(block_state.spass.buf);
1972     conf->cipher_list = xstrdup(block_state.ciph.buf);
1973    
1974     dlinkMoveList(&block_state.leaf.list, &conf->leaf_list);
1975     dlinkMoveList(&block_state.hub.list, &conf->hub_list);
1976    
1977     if (block_state.bind.buf[0])
1978 adx 30 {
1979 michael 1647 memset(&hints, 0, sizeof(hints));
1980    
1981     hints.ai_family = AF_UNSPEC;
1982     hints.ai_socktype = SOCK_STREAM;
1983     hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
1984    
1985     if (getaddrinfo(block_state.bind.buf, NULL, &hints, &res))
1986     ilog(LOG_TYPE_IRCD, "Invalid netmask for server vhost(%s)", block_state.bind.buf);
1987 michael 1302 else
1988     {
1989 michael 1647 assert(res != NULL);
1990 adx 30
1991 michael 1647 memcpy(&conf->bind, res->ai_addr, res->ai_addrlen);
1992     conf->bind.ss.ss_family = res->ai_family;
1993     conf->bind.ss_len = res->ai_addrlen;
1994     freeaddrinfo(res);
1995 michael 1302 }
1996 michael 1647 }
1997 adx 30
1998 michael 1647 conf_add_class_to_conf(conf, block_state.class.buf);
1999     lookup_confhost(conf);
2000 adx 30 };
2001    
2002     connect_items: connect_items connect_item | connect_item;
2003     connect_item: connect_name | connect_host | connect_vhost |
2004     connect_send_password | connect_accept_password |
2005 michael 1306 connect_aftype | connect_port | connect_ssl_cipher_list |
2006 michael 1076 connect_flags | connect_hub_mask | connect_leaf_mask |
2007 michael 1302 connect_class | connect_encrypted |
2008 michael 1076 error ';' ;
2009 adx 30
2010     connect_name: NAME '=' QSTRING ';'
2011     {
2012 michael 967 if (conf_parser_ctx.pass == 2)
2013 michael 1647 strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
2014 adx 30 };
2015    
2016     connect_host: HOST '=' QSTRING ';'
2017     {
2018 michael 967 if (conf_parser_ctx.pass == 2)
2019 michael 1647 strlcpy(block_state.host.buf, yylval.string, sizeof(block_state.host.buf));
2020 adx 30 };
2021    
2022     connect_vhost: VHOST '=' QSTRING ';'
2023     {
2024 michael 967 if (conf_parser_ctx.pass == 2)
2025 michael 1647 strlcpy(block_state.bind.buf, yylval.string, sizeof(block_state.bind.buf));
2026 adx 30 };
2027    
2028     connect_send_password: SEND_PASSWORD '=' QSTRING ';'
2029     {
2030 michael 1647 if (conf_parser_ctx.pass != 2)
2031     break;
2032 adx 30
2033 michael 1647 if ($3[0] == ':')
2034 michael 1752 conf_error_report("Server passwords cannot begin with a colon");
2035 michael 1647 else if (strchr($3, ' ') != NULL)
2036 michael 1752 conf_error_report("Server passwords cannot contain spaces");
2037 michael 1647 else
2038     strlcpy(block_state.spass.buf, yylval.string, sizeof(block_state.spass.buf));
2039 adx 30 };
2040    
2041     connect_accept_password: ACCEPT_PASSWORD '=' QSTRING ';'
2042     {
2043 michael 1647 if (conf_parser_ctx.pass != 2)
2044     break;
2045 adx 30
2046 michael 1647 if ($3[0] == ':')
2047 michael 1752 conf_error_report("Server passwords cannot begin with a colon");
2048 michael 1647 else if (strchr($3, ' ') != NULL)
2049 michael 1752 conf_error_report("Server passwords cannot contain spaces");
2050 michael 1647 else
2051     strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
2052 adx 30 };
2053    
2054     connect_port: PORT '=' NUMBER ';'
2055     {
2056 michael 967 if (conf_parser_ctx.pass == 2)
2057 michael 1647 block_state.port.value = $3;
2058 adx 30 };
2059    
2060     connect_aftype: AFTYPE '=' T_IPV4 ';'
2061     {
2062 michael 967 if (conf_parser_ctx.pass == 2)
2063 michael 1647 block_state.aftype.value = AF_INET;
2064 adx 30 } | AFTYPE '=' T_IPV6 ';'
2065     {
2066     #ifdef IPV6
2067 michael 967 if (conf_parser_ctx.pass == 2)
2068 michael 1647 block_state.aftype.value = AF_INET6;
2069 adx 30 #endif
2070     };
2071    
2072     connect_flags: IRCD_FLAGS
2073     {
2074 michael 1648 block_state.flags.value &= CONF_FLAGS_ENCRYPTED;
2075 adx 30 } '=' connect_flags_items ';';
2076    
2077     connect_flags_items: connect_flags_items ',' connect_flags_item | connect_flags_item;
2078 michael 1302 connect_flags_item: AUTOCONN
2079 adx 30 {
2080 michael 967 if (conf_parser_ctx.pass == 2)
2081 michael 1647 block_state.flags.value |= CONF_FLAGS_ALLOW_AUTO_CONN;
2082 michael 1303 } | T_SSL
2083     {
2084     if (conf_parser_ctx.pass == 2)
2085 michael 1647 block_state.flags.value |= CONF_FLAGS_SSL;
2086 michael 1228 };
2087 adx 30
2088     connect_encrypted: ENCRYPTED '=' TBOOL ';'
2089     {
2090 michael 967 if (conf_parser_ctx.pass == 2)
2091 adx 30 {
2092     if (yylval.number)
2093 michael 1647 block_state.flags.value |= CONF_FLAGS_ENCRYPTED;
2094 adx 30 else
2095 michael 1647 block_state.flags.value &= ~CONF_FLAGS_ENCRYPTED;
2096 adx 30 }
2097     };
2098    
2099     connect_hub_mask: HUB_MASK '=' QSTRING ';'
2100     {
2101 michael 967 if (conf_parser_ctx.pass == 2)
2102 michael 1647 dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.hub.list);
2103 adx 30 };
2104    
2105     connect_leaf_mask: LEAF_MASK '=' QSTRING ';'
2106     {
2107 michael 967 if (conf_parser_ctx.pass == 2)
2108 michael 1647 dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.leaf.list);
2109 adx 30 };
2110    
2111     connect_class: CLASS '=' QSTRING ';'
2112     {
2113 michael 967 if (conf_parser_ctx.pass == 2)
2114 michael 1647 strlcpy(block_state.class.buf, yylval.string, sizeof(block_state.class.buf));
2115 adx 30 };
2116    
2117 michael 1306 connect_ssl_cipher_list: T_SSL_CIPHER_LIST '=' QSTRING ';'
2118     {
2119     #ifdef HAVE_LIBCRYPTO
2120     if (conf_parser_ctx.pass == 2)
2121 michael 1647 strlcpy(block_state.ciph.buf, yylval.string, sizeof(block_state.ciph.buf));
2122 michael 1306 #else
2123     if (conf_parser_ctx.pass == 2)
2124 michael 1752 conf_error_report("Ignoring connect::ciphers -- no OpenSSL support");
2125 michael 1306 #endif
2126     };
2127    
2128    
2129 adx 30 /***************************************************************************
2130     * section kill
2131     ***************************************************************************/
2132     kill_entry: KILL
2133     {
2134 michael 967 if (conf_parser_ctx.pass == 2)
2135 michael 1647 reset_block_state();
2136 adx 30 } '{' kill_items '}' ';'
2137     {
2138 michael 1647 struct MaskItem *conf = NULL;
2139    
2140     if (conf_parser_ctx.pass != 2)
2141     break;
2142    
2143     if (!block_state.user.buf[0] ||
2144     !block_state.host.buf[0])
2145     break;
2146    
2147    
2148     if (block_state.port.value == 1)
2149 adx 30 {
2150 michael 1647 #ifdef HAVE_LIBPCRE
2151     void *exp_user = NULL;
2152     void *exp_host = NULL;
2153     const char *errptr = NULL;
2154    
2155     if (!(exp_user = ircd_pcre_compile(block_state.user.buf, &errptr)) ||
2156     !(exp_host = ircd_pcre_compile(block_state.host.buf, &errptr)))
2157 adx 30 {
2158 michael 1647 ilog(LOG_TYPE_IRCD, "Failed to add regular expression based K-Line: %s",
2159     errptr);
2160     break;
2161     }
2162 adx 30
2163 michael 1647 conf = conf_make(CONF_RKLINE);
2164     conf->regexuser = exp_user;
2165     conf->regexhost = exp_host;
2166 adx 30
2167 michael 1647 conf->user = xstrdup(block_state.user.buf);
2168     conf->host = xstrdup(block_state.host.buf);
2169 adx 30
2170 michael 1647 if (block_state.rpass.buf[0])
2171     conf->reason = xstrdup(block_state.rpass.buf);
2172     else
2173     conf->reason = xstrdup(CONF_NOREASON);
2174 michael 1009 #else
2175 michael 1647 ilog(LOG_TYPE_IRCD, "Failed to add regular expression based K-Line: no PCRE support");
2176     break;
2177 michael 1009 #endif
2178 michael 1647 }
2179     else
2180     {
2181     conf = conf_make(CONF_KLINE);
2182 adx 30
2183 michael 1647 conf->user = xstrdup(block_state.user.buf);
2184     conf->host = xstrdup(block_state.host.buf);
2185 adx 30
2186 michael 1647 if (block_state.rpass.buf[0])
2187     conf->reason = xstrdup(block_state.rpass.buf);
2188     else
2189     conf->reason = xstrdup(CONF_NOREASON);
2190     add_conf_by_address(CONF_KLINE, conf);
2191 adx 30 }
2192     };
2193    
2194     kill_type: TYPE
2195     {
2196 michael 1647 if (conf_parser_ctx.pass == 2)
2197     block_state.port.value = 0;
2198 adx 30 } '=' kill_type_items ';';
2199    
2200     kill_type_items: kill_type_items ',' kill_type_item | kill_type_item;
2201     kill_type_item: REGEX_T
2202     {
2203 michael 967 if (conf_parser_ctx.pass == 2)
2204 michael 1647 block_state.port.value = 1;
2205 adx 30 };
2206    
2207     kill_items: kill_items kill_item | kill_item;
2208     kill_item: kill_user | kill_reason | kill_type | error;
2209    
2210     kill_user: USER '=' QSTRING ';'
2211     {
2212 michael 1647
2213 michael 967 if (conf_parser_ctx.pass == 2)
2214 adx 30 {
2215 michael 593 struct split_nuh_item nuh;
2216 adx 30
2217 michael 593 nuh.nuhmask = yylval.string;
2218     nuh.nickptr = NULL;
2219 michael 1647 nuh.userptr = block_state.user.buf;
2220     nuh.hostptr = block_state.host.buf;
2221 adx 30
2222 michael 593 nuh.nicksize = 0;
2223 michael 1647 nuh.usersize = sizeof(block_state.user.buf);
2224     nuh.hostsize = sizeof(block_state.host.buf);
2225 adx 30
2226 michael 593 split_nuh(&nuh);
2227 adx 30 }
2228     };
2229    
2230     kill_reason: REASON '=' QSTRING ';'
2231     {
2232 michael 967 if (conf_parser_ctx.pass == 2)
2233 michael 1647 strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
2234 adx 30 };
2235    
2236     /***************************************************************************
2237     * section deny
2238     ***************************************************************************/
2239     deny_entry: DENY
2240     {
2241 michael 967 if (conf_parser_ctx.pass == 2)
2242 michael 1646 reset_block_state();
2243 adx 30 } '{' deny_items '}' ';'
2244     {
2245 michael 1646 struct MaskItem *conf = NULL;
2246    
2247     if (conf_parser_ctx.pass != 2)
2248     break;
2249    
2250     if (!block_state.addr.buf[0])
2251     break;
2252    
2253     if (parse_netmask(block_state.addr.buf, NULL, NULL) != HM_HOST)
2254 adx 30 {
2255 michael 1646 conf = conf_make(CONF_DLINE);
2256     conf->host = xstrdup(block_state.addr.buf);
2257 michael 1005
2258 michael 1647 if (block_state.rpass.buf[0])
2259     conf->reason = xstrdup(block_state.rpass.buf);
2260 michael 1646 else
2261     conf->reason = xstrdup(CONF_NOREASON);
2262     add_conf_by_address(CONF_DLINE, conf);
2263 adx 30 }
2264     };
2265    
2266     deny_items: deny_items deny_item | deny_item;
2267     deny_item: deny_ip | deny_reason | error;
2268    
2269     deny_ip: IP '=' QSTRING ';'
2270     {
2271 michael 967 if (conf_parser_ctx.pass == 2)
2272 michael 1646 strlcpy(block_state.addr.buf, yylval.string, sizeof(block_state.addr.buf));
2273 adx 30 };
2274    
2275     deny_reason: REASON '=' QSTRING ';'
2276     {
2277 michael 967 if (conf_parser_ctx.pass == 2)
2278 michael 1647 strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
2279 adx 30 };
2280    
2281     /***************************************************************************
2282     * section exempt
2283     ***************************************************************************/
2284     exempt_entry: EXEMPT '{' exempt_items '}' ';';
2285    
2286     exempt_items: exempt_items exempt_item | exempt_item;
2287     exempt_item: exempt_ip | error;
2288    
2289     exempt_ip: IP '=' QSTRING ';'
2290     {
2291 michael 967 if (conf_parser_ctx.pass == 2)
2292 adx 30 {
2293     if (yylval.string[0] && parse_netmask(yylval.string, NULL, NULL) != HM_HOST)
2294     {
2295 michael 1646 struct MaskItem *conf = conf_make(CONF_EXEMPT);
2296     conf->host = xstrdup(yylval.string);
2297 adx 30
2298 michael 1646 add_conf_by_address(CONF_EXEMPT, conf);
2299 adx 30 }
2300     }
2301     };
2302    
2303     /***************************************************************************
2304     * section gecos
2305     ***************************************************************************/
2306     gecos_entry: GECOS
2307     {
2308 michael 967 if (conf_parser_ctx.pass == 2)
2309 michael 1646 reset_block_state();
2310 adx 30 } '{' gecos_items '}' ';'
2311     {
2312 michael 1646 struct MaskItem *conf = NULL;
2313    
2314     if (conf_parser_ctx.pass != 2)
2315     break;
2316    
2317     if (!block_state.name.buf[0])
2318     break;
2319    
2320     if (block_state.port.value == 1)
2321 adx 30 {
2322 michael 1009 #ifdef HAVE_LIBPCRE
2323 michael 1646 void *exp_p = NULL;
2324     const char *errptr = NULL;
2325 adx 30
2326 michael 1646 if (!(exp_p = ircd_pcre_compile(block_state.name.buf, &errptr)))
2327     {
2328     ilog(LOG_TYPE_IRCD, "Failed to add regular expression based X-Line: %s",
2329     errptr);
2330     break;
2331     }
2332 adx 30
2333 michael 1646 conf = conf_make(CONF_RXLINE);
2334     conf->regexuser = exp_p;
2335 michael 1009 #else
2336 michael 1752 conf_error_report("Failed to add regular expression based X-Line: no PCRE support");
2337 michael 1646 break;
2338 michael 1009 #endif
2339 michael 1646 }
2340     else
2341     conf = conf_make(CONF_XLINE);
2342 adx 30
2343 michael 1646 conf->name = xstrdup(block_state.name.buf);
2344 adx 30
2345 michael 1647 if (block_state.rpass.buf[0])
2346     conf->reason = xstrdup(block_state.rpass.buf);
2347 michael 1646 else
2348     conf->reason = xstrdup(CONF_NOREASON);
2349 adx 30 };
2350    
2351     gecos_flags: TYPE
2352     {
2353 michael 1646 if (conf_parser_ctx.pass == 2)
2354     block_state.port.value = 0;
2355 adx 30 } '=' gecos_flags_items ';';
2356    
2357     gecos_flags_items: gecos_flags_items ',' gecos_flags_item | gecos_flags_item;
2358     gecos_flags_item: REGEX_T
2359     {
2360 michael 967 if (conf_parser_ctx.pass == 2)
2361 michael 1646 block_state.port.value = 1;
2362 adx 30 };
2363    
2364     gecos_items: gecos_items gecos_item | gecos_item;
2365     gecos_item: gecos_name | gecos_reason | gecos_flags | error;
2366    
2367     gecos_name: NAME '=' QSTRING ';'
2368     {
2369 michael 967 if (conf_parser_ctx.pass == 2)
2370 michael 1646 strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
2371 adx 30 };
2372    
2373     gecos_reason: REASON '=' QSTRING ';'
2374     {
2375 michael 967 if (conf_parser_ctx.pass == 2)
2376 michael 1647 strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
2377 adx 30 };
2378    
2379     /***************************************************************************
2380     * section general
2381     ***************************************************************************/
2382     general_entry: GENERAL
2383     '{' general_items '}' ';';
2384    
2385     general_items: general_items general_item | general_item;
2386     general_item: general_hide_spoof_ips | general_ignore_bogus_ts |
2387     general_failed_oper_notice | general_anti_nick_flood |
2388     general_max_nick_time | general_max_nick_changes |
2389     general_max_accept | general_anti_spam_exit_message_time |
2390     general_ts_warn_delta | general_ts_max_delta |
2391 michael 1549 general_kill_chase_time_limit |
2392     general_invisible_on_connect |
2393 adx 30 general_warn_no_nline | general_dots_in_ident |
2394     general_stats_o_oper_only | general_stats_k_oper_only |
2395     general_pace_wait | general_stats_i_oper_only |
2396     general_pace_wait_simple | general_stats_P_oper_only |
2397     general_short_motd | general_no_oper_flood |
2398     general_true_no_oper_flood | general_oper_pass_resv |
2399 michael 1176 general_message_locale |
2400 adx 30 general_oper_only_umodes | general_max_targets |
2401     general_use_egd | general_egdpool_path |
2402     general_oper_umodes | general_caller_id_wait |
2403     general_opers_bypass_callerid | general_default_floodcount |
2404     general_min_nonwildcard | general_min_nonwildcard_simple |
2405 michael 1302 general_disable_remote_commands |
2406 adx 30 general_throttle_time | general_havent_read_conf |
2407 michael 1072 general_ping_cookie |
2408 michael 1264 general_disable_auth |
2409 michael 1459 general_tkline_expire_notices | general_gline_enable |
2410     general_gline_duration | general_gline_request_duration |
2411     general_gline_min_cidr |
2412 michael 1547 general_gline_min_cidr6 |
2413 michael 1549 general_stats_e_disabled |
2414 michael 1176 general_max_watch | general_services_name |
2415 adx 30 error;
2416    
2417    
2418 michael 876 general_max_watch: MAX_WATCH '=' NUMBER ';'
2419     {
2420     ConfigFileEntry.max_watch = $3;
2421     };
2422 adx 30
2423 michael 1459 general_gline_enable: GLINE_ENABLE '=' TBOOL ';'
2424     {
2425     if (conf_parser_ctx.pass == 2)
2426     ConfigFileEntry.glines = yylval.number;
2427     };
2428    
2429     general_gline_duration: GLINE_DURATION '=' timespec ';'
2430     {
2431     if (conf_parser_ctx.pass == 2)
2432     ConfigFileEntry.gline_time = $3;
2433     };
2434    
2435     general_gline_request_duration: GLINE_REQUEST_DURATION '=' timespec ';'
2436     {
2437     if (conf_parser_ctx.pass == 2)
2438     ConfigFileEntry.gline_request_time = $3;
2439     };
2440    
2441 adx 30 general_gline_min_cidr: GLINE_MIN_CIDR '=' NUMBER ';'
2442     {
2443     ConfigFileEntry.gline_min_cidr = $3;
2444     };
2445    
2446     general_gline_min_cidr6: GLINE_MIN_CIDR6 '=' NUMBER ';'
2447     {
2448     ConfigFileEntry.gline_min_cidr6 = $3;
2449     };
2450    
2451     general_tkline_expire_notices: TKLINE_EXPIRE_NOTICES '=' TBOOL ';'
2452     {
2453     ConfigFileEntry.tkline_expire_notices = yylval.number;
2454     };
2455    
2456 michael 1074 general_kill_chase_time_limit: KILL_CHASE_TIME_LIMIT '=' timespec ';'
2457 adx 30 {
2458     ConfigFileEntry.kill_chase_time_limit = $3;
2459     };
2460    
2461     general_hide_spoof_ips: HIDE_SPOOF_IPS '=' TBOOL ';'
2462     {
2463     ConfigFileEntry.hide_spoof_ips = yylval.number;
2464     };
2465    
2466     general_ignore_bogus_ts: IGNORE_BOGUS_TS '=' TBOOL ';'
2467     {
2468     ConfigFileEntry.ignore_bogus_ts = yylval.number;
2469     };
2470    
2471     general_disable_remote_commands: DISABLE_REMOTE_COMMANDS '=' TBOOL ';'
2472     {
2473     ConfigFileEntry.disable_remote = yylval.number;
2474     };
2475    
2476     general_failed_oper_notice: FAILED_OPER_NOTICE '=' TBOOL ';'
2477     {
2478     ConfigFileEntry.failed_oper_notice = yylval.number;
2479     };
2480    
2481     general_anti_nick_flood: ANTI_NICK_FLOOD '=' TBOOL ';'
2482     {
2483     ConfigFileEntry.anti_nick_flood = yylval.number;
2484     };
2485    
2486     general_max_nick_time: MAX_NICK_TIME '=' timespec ';'
2487     {
2488     ConfigFileEntry.max_nick_time = $3;
2489     };
2490    
2491     general_max_nick_changes: MAX_NICK_CHANGES '=' NUMBER ';'
2492     {
2493     ConfigFileEntry.max_nick_changes = $3;
2494     };
2495    
2496     general_max_accept: MAX_ACCEPT '=' NUMBER ';'
2497     {
2498     ConfigFileEntry.max_accept = $3;
2499     };
2500    
2501     general_anti_spam_exit_message_time: ANTI_SPAM_EXIT_MESSAGE_TIME '=' timespec ';'
2502     {
2503     ConfigFileEntry.anti_spam_exit_message_time = $3;
2504     };
2505    
2506     general_ts_warn_delta: TS_WARN_DELTA '=' timespec ';'
2507     {
2508     ConfigFileEntry.ts_warn_delta = $3;
2509     };
2510    
2511     general_ts_max_delta: TS_MAX_DELTA '=' timespec ';'
2512     {
2513 michael 967 if (conf_parser_ctx.pass == 2)
2514 adx 30 ConfigFileEntry.ts_max_delta = $3;
2515     };
2516    
2517     general_havent_read_conf: HAVENT_READ_CONF '=' NUMBER ';'
2518     {
2519 michael 967 if (($3 > 0) && conf_parser_ctx.pass == 1)
2520 adx 30 {
2521 michael 1247 ilog(LOG_TYPE_IRCD, "You haven't read your config file properly.");
2522     ilog(LOG_TYPE_IRCD, "There is a line in the example conf that will kill your server if not removed.");
2523     ilog(LOG_TYPE_IRCD, "Consider actually reading/editing the conf file, and removing this line.");
2524 adx 30 exit(0);
2525     }
2526     };
2527    
2528     general_invisible_on_connect: INVISIBLE_ON_CONNECT '=' TBOOL ';'
2529     {
2530     ConfigFileEntry.invisible_on_connect = yylval.number;
2531     };
2532    
2533     general_warn_no_nline: WARN_NO_NLINE '=' TBOOL ';'
2534     {
2535     ConfigFileEntry.warn_no_nline = yylval.number;
2536     };
2537    
2538 michael 584 general_stats_e_disabled: STATS_E_DISABLED '=' TBOOL ';'
2539     {
2540     ConfigFileEntry.stats_e_disabled = yylval.number;
2541     };
2542    
2543 adx 30 general_stats_o_oper_only: STATS_O_OPER_ONLY '=' TBOOL ';'
2544     {
2545     ConfigFileEntry.stats_o_oper_only = yylval.number;
2546     };
2547    
2548     general_stats_P_oper_only: STATS_P_OPER_ONLY '=' TBOOL ';'
2549     {
2550     ConfigFileEntry.stats_P_oper_only = yylval.number;
2551     };
2552    
2553     general_stats_k_oper_only: STATS_K_OPER_ONLY '=' TBOOL ';'
2554     {
2555     ConfigFileEntry.stats_k_oper_only = 2 * yylval.number;
2556     } | STATS_K_OPER_ONLY '=' TMASKED ';'
2557     {
2558     ConfigFileEntry.stats_k_oper_only = 1;
2559     };
2560    
2561     general_stats_i_oper_only: STATS_I_OPER_ONLY '=' TBOOL ';'
2562     {
2563     ConfigFileEntry.stats_i_oper_only = 2 * yylval.number;
2564     } | STATS_I_OPER_ONLY '=' TMASKED ';'
2565     {
2566     ConfigFileEntry.stats_i_oper_only = 1;
2567     };
2568    
2569     general_pace_wait: PACE_WAIT '=' timespec ';'
2570     {
2571     ConfigFileEntry.pace_wait = $3;
2572     };
2573    
2574     general_caller_id_wait: CALLER_ID_WAIT '=' timespec ';'
2575     {
2576     ConfigFileEntry.caller_id_wait = $3;
2577     };
2578    
2579     general_opers_bypass_callerid: OPERS_BYPASS_CALLERID '=' TBOOL ';'
2580     {
2581     ConfigFileEntry.opers_bypass_callerid = yylval.number;
2582     };
2583    
2584     general_pace_wait_simple: PACE_WAIT_SIMPLE '=' timespec ';'
2585     {
2586     ConfigFileEntry.pace_wait_simple = $3;
2587     };
2588    
2589     general_short_motd: SHORT_MOTD '=' TBOOL ';'
2590     {
2591     ConfigFileEntry.short_motd = yylval.number;
2592     };
2593    
2594     general_no_oper_flood: NO_OPER_FLOOD '=' TBOOL ';'
2595     {
2596     ConfigFileEntry.no_oper_flood = yylval.number;
2597     };
2598    
2599     general_true_no_oper_flood: TRUE_NO_OPER_FLOOD '=' TBOOL ';'
2600     {
2601     ConfigFileEntry.true_no_oper_flood = yylval.number;
2602     };
2603    
2604     general_oper_pass_resv: OPER_PASS_RESV '=' TBOOL ';'
2605     {
2606     ConfigFileEntry.oper_pass_resv = yylval.number;
2607     };
2608    
2609     general_message_locale: MESSAGE_LOCALE '=' QSTRING ';'
2610     {
2611 michael 967 if (conf_parser_ctx.pass == 2)
2612 adx 30 {
2613     if (strlen(yylval.string) > LOCALE_LENGTH-2)
2614     yylval.string[LOCALE_LENGTH-1] = '\0';
2615    
2616     set_locale(yylval.string);
2617     }
2618     };
2619    
2620     general_dots_in_ident: DOTS_IN_IDENT '=' NUMBER ';'
2621     {
2622     ConfigFileEntry.dots_in_ident = $3;
2623     };
2624    
2625     general_max_targets: MAX_TARGETS '=' NUMBER ';'
2626     {
2627     ConfigFileEntry.max_targets = $3;
2628     };
2629    
2630     general_use_egd: USE_EGD '=' TBOOL ';'
2631     {
2632     ConfigFileEntry.use_egd = yylval.number;
2633     };
2634    
2635     general_egdpool_path: EGDPOOL_PATH '=' QSTRING ';'
2636     {
2637 michael 967 if (conf_parser_ctx.pass == 2)
2638 adx 30 {
2639     MyFree(ConfigFileEntry.egdpool_path);
2640 michael 1646 ConfigFileEntry.egdpool_path = xstrdup(yylval.string);
2641 adx 30 }
2642     };
2643    
2644 michael 1176 general_services_name: T_SERVICES_NAME '=' QSTRING ';'
2645 michael 1157 {
2646 michael 1176 if (conf_parser_ctx.pass == 2 && valid_servname(yylval.string))
2647 michael 1157 {
2648     MyFree(ConfigFileEntry.service_name);
2649 michael 1646 ConfigFileEntry.service_name = xstrdup(yylval.string);
2650 michael 1157 }
2651     };
2652    
2653 adx 30 general_ping_cookie: PING_COOKIE '=' TBOOL ';'
2654     {
2655     ConfigFileEntry.ping_cookie = yylval.number;
2656     };
2657    
2658     general_disable_auth: DISABLE_AUTH '=' TBOOL ';'
2659     {
2660     ConfigFileEntry.disable_auth = yylval.number;
2661     };
2662    
2663     general_throttle_time: THROTTLE_TIME '=' timespec ';'
2664     {
2665     ConfigFileEntry.throttle_time = yylval.number;
2666     };
2667    
2668     general_oper_umodes: OPER_UMODES
2669     {
2670     ConfigFileEntry.oper_umodes = 0;
2671     } '=' umode_oitems ';' ;
2672    
2673     umode_oitems: umode_oitems ',' umode_oitem | umode_oitem;
2674     umode_oitem: T_BOTS
2675     {
2676     ConfigFileEntry.oper_umodes |= UMODE_BOTS;
2677     } | T_CCONN
2678     {
2679     ConfigFileEntry.oper_umodes |= UMODE_CCONN;
2680 db 849 } | T_CCONN_FULL
2681     {
2682     ConfigFileEntry.oper_umodes |= UMODE_CCONN_FULL;
2683 adx 30 } | T_DEAF
2684     {
2685     ConfigFileEntry.oper_umodes |= UMODE_DEAF;
2686     } | T_DEBUG
2687     {
2688     ConfigFileEntry.oper_umodes |= UMODE_DEBUG;
2689     } | T_FULL
2690     {
2691     ConfigFileEntry.oper_umodes |= UMODE_FULL;
2692 michael 1294 } | HIDDEN
2693     {
2694     ConfigFileEntry.oper_umodes |= UMODE_HIDDEN;
2695 adx 30 } | T_SKILL
2696     {
2697     ConfigFileEntry.oper_umodes |= UMODE_SKILL;
2698     } | T_NCHANGE
2699     {
2700     ConfigFileEntry.oper_umodes |= UMODE_NCHANGE;
2701     } | T_REJ
2702     {
2703     ConfigFileEntry.oper_umodes |= UMODE_REJ;
2704     } | T_UNAUTH
2705     {
2706     ConfigFileEntry.oper_umodes |= UMODE_UNAUTH;
2707     } | T_SPY
2708     {
2709     ConfigFileEntry.oper_umodes |= UMODE_SPY;
2710     } | T_EXTERNAL
2711     {
2712     ConfigFileEntry.oper_umodes |= UMODE_EXTERNAL;
2713     } | T_OPERWALL
2714     {
2715     ConfigFileEntry.oper_umodes |= UMODE_OPERWALL;
2716     } | T_SERVNOTICE
2717     {
2718     ConfigFileEntry.oper_umodes |= UMODE_SERVNOTICE;
2719     } | T_INVISIBLE
2720     {
2721     ConfigFileEntry.oper_umodes |= UMODE_INVISIBLE;
2722     } | T_WALLOP
2723     {
2724     ConfigFileEntry.oper_umodes |= UMODE_WALLOP;
2725     } | T_SOFTCALLERID
2726     {
2727     ConfigFileEntry.oper_umodes |= UMODE_SOFTCALLERID;
2728     } | T_CALLERID
2729     {
2730     ConfigFileEntry.oper_umodes |= UMODE_CALLERID;
2731     } | T_LOCOPS
2732     {
2733     ConfigFileEntry.oper_umodes |= UMODE_LOCOPS;
2734     };
2735    
2736     general_oper_only_umodes: OPER_ONLY_UMODES
2737     {
2738     ConfigFileEntry.oper_only_umodes = 0;
2739     } '=' umode_items ';' ;
2740    
2741     umode_items: umode_items ',' umode_item | umode_item;
2742     umode_item: T_BOTS
2743     {
2744     ConfigFileEntry.oper_only_umodes |= UMODE_BOTS;
2745     } | T_CCONN
2746     {
2747     ConfigFileEntry.oper_only_umodes |= UMODE_CCONN;
2748 db 853 } | T_CCONN_FULL
2749     {
2750     ConfigFileEntry.oper_only_umodes |= UMODE_CCONN_FULL;
2751 adx 30 } | T_DEAF
2752     {
2753     ConfigFileEntry.oper_only_umodes |= UMODE_DEAF;
2754     } | T_DEBUG
2755     {
2756     ConfigFileEntry.oper_only_umodes |= UMODE_DEBUG;
2757     } | T_FULL
2758     {
2759     ConfigFileEntry.oper_only_umodes |= UMODE_FULL;
2760     } | T_SKILL
2761     {
2762     ConfigFileEntry.oper_only_umodes |= UMODE_SKILL;
2763 michael 1294 } | HIDDEN
2764     {
2765     ConfigFileEntry.oper_only_umodes |= UMODE_HIDDEN;
2766 adx 30 } | T_NCHANGE
2767     {
2768     ConfigFileEntry.oper_only_umodes |= UMODE_NCHANGE;
2769     } | T_REJ
2770     {
2771     ConfigFileEntry.oper_only_umodes |= UMODE_REJ;
2772     } | T_UNAUTH
2773     {
2774     ConfigFileEntry.oper_only_umodes |= UMODE_UNAUTH;
2775     } | T_SPY
2776     {
2777     ConfigFileEntry.oper_only_umodes |= UMODE_SPY;
2778     } | T_EXTERNAL
2779     {
2780     ConfigFileEntry.oper_only_umodes |= UMODE_EXTERNAL;
2781     } | T_OPERWALL
2782     {
2783     ConfigFileEntry.oper_only_umodes |= UMODE_OPERWALL;
2784     } | T_SERVNOTICE
2785     {
2786     ConfigFileEntry.oper_only_umodes |= UMODE_SERVNOTICE;
2787     } | T_INVISIBLE
2788     {
2789     ConfigFileEntry.oper_only_umodes |= UMODE_INVISIBLE;
2790     } | T_WALLOP
2791     {
2792     ConfigFileEntry.oper_only_umodes |= UMODE_WALLOP;
2793     } | T_SOFTCALLERID
2794     {
2795     ConfigFileEntry.oper_only_umodes |= UMODE_SOFTCALLERID;
2796     } | T_CALLERID
2797     {
2798     ConfigFileEntry.oper_only_umodes |= UMODE_CALLERID;
2799     } | T_LOCOPS
2800     {
2801     ConfigFileEntry.oper_only_umodes |= UMODE_LOCOPS;
2802     };
2803    
2804     general_min_nonwildcard: MIN_NONWILDCARD '=' NUMBER ';'
2805     {
2806     ConfigFileEntry.min_nonwildcard = $3;
2807     };
2808    
2809     general_min_nonwildcard_simple: MIN_NONWILDCARD_SIMPLE '=' NUMBER ';'
2810     {
2811     ConfigFileEntry.min_nonwildcard_simple = $3;
2812     };
2813    
2814     general_default_floodcount: DEFAULT_FLOODCOUNT '=' NUMBER ';'
2815     {
2816     ConfigFileEntry.default_floodcount = $3;
2817     };
2818    
2819    
2820     /***************************************************************************
2821     * section channel
2822     ***************************************************************************/
2823     channel_entry: CHANNEL
2824     '{' channel_items '}' ';';
2825    
2826     channel_items: channel_items channel_item | channel_item;
2827 michael 1495 channel_item: channel_max_bans |
2828 michael 1432 channel_knock_delay | channel_knock_delay_channel |
2829     channel_max_chans_per_user | channel_max_chans_per_oper |
2830 adx 201 channel_quiet_on_ban | channel_default_split_user_count |
2831     channel_default_split_server_count |
2832     channel_no_create_on_split | channel_restrict_channels |
2833 michael 1401 channel_no_join_on_split |
2834 adx 201 channel_jflood_count | channel_jflood_time |
2835 michael 632 channel_disable_fake_channels | error;
2836 adx 30
2837 michael 632 channel_disable_fake_channels: DISABLE_FAKE_CHANNELS '=' TBOOL ';'
2838     {
2839     ConfigChannel.disable_fake_channels = yylval.number;
2840     };
2841    
2842 adx 30 channel_restrict_channels: RESTRICT_CHANNELS '=' TBOOL ';'
2843     {
2844     ConfigChannel.restrict_channels = yylval.number;
2845     };
2846    
2847     channel_knock_delay: KNOCK_DELAY '=' timespec ';'
2848     {
2849     ConfigChannel.knock_delay = $3;
2850     };
2851    
2852     channel_knock_delay_channel: KNOCK_DELAY_CHANNEL '=' timespec ';'
2853     {
2854     ConfigChannel.knock_delay_channel = $3;
2855     };
2856    
2857     channel_max_chans_per_user: MAX_CHANS_PER_USER '=' NUMBER ';'
2858     {
2859     ConfigChannel.max_chans_per_user = $3;
2860     };
2861    
2862 michael 1432 channel_max_chans_per_oper: MAX_CHANS_PER_OPER '=' NUMBER ';'
2863     {
2864     ConfigChannel.max_chans_per_oper = $3;
2865     };
2866    
2867 adx 30 channel_quiet_on_ban: QUIET_ON_BAN '=' TBOOL ';'
2868     {
2869     ConfigChannel.quiet_on_ban = yylval.number;
2870     };
2871    
2872     channel_max_bans: MAX_BANS '=' NUMBER ';'
2873     {
2874     ConfigChannel.max_bans = $3;
2875     };
2876    
2877     channel_default_split_user_count: DEFAULT_SPLIT_USER_COUNT '=' NUMBER ';'
2878     {
2879     ConfigChannel.default_split_user_count = $3;
2880     };
2881    
2882     channel_default_split_server_count: DEFAULT_SPLIT_SERVER_COUNT '=' NUMBER ';'
2883     {
2884     ConfigChannel.default_split_server_count = $3;
2885     };
2886    
2887     channel_no_create_on_split: NO_CREATE_ON_SPLIT '=' TBOOL ';'
2888     {
2889     ConfigChannel.no_create_on_split = yylval.number;
2890     };
2891    
2892     channel_no_join_on_split: NO_JOIN_ON_SPLIT '=' TBOOL ';'
2893     {
2894     ConfigChannel.no_join_on_split = yylval.number;
2895     };
2896    
2897     channel_jflood_count: JOIN_FLOOD_COUNT '=' NUMBER ';'
2898     {
2899     GlobalSetOptions.joinfloodcount = yylval.number;
2900     };
2901    
2902     channel_jflood_time: JOIN_FLOOD_TIME '=' timespec ';'
2903     {
2904     GlobalSetOptions.joinfloodtime = yylval.number;
2905     };
2906    
2907     /***************************************************************************
2908     * section serverhide
2909     ***************************************************************************/
2910     serverhide_entry: SERVERHIDE
2911     '{' serverhide_items '}' ';';
2912    
2913     serverhide_items: serverhide_items serverhide_item | serverhide_item;
2914     serverhide_item: serverhide_flatten_links | serverhide_hide_servers |
2915     serverhide_links_delay |
2916     serverhide_hidden | serverhide_hidden_name |
2917     serverhide_hide_server_ips |
2918     error;
2919    
2920     serverhide_flatten_links: FLATTEN_LINKS '=' TBOOL ';'
2921     {
2922 michael 967 if (conf_parser_ctx.pass == 2)
2923 adx 30 ConfigServerHide.flatten_links = yylval.number;
2924     };
2925    
2926     serverhide_hide_servers: HIDE_SERVERS '=' TBOOL ';'
2927     {
2928 michael 967 if (conf_parser_ctx.pass == 2)
2929 adx 30 ConfigServerHide.hide_servers = yylval.number;
2930     };
2931    
2932     serverhide_hidden_name: HIDDEN_NAME '=' QSTRING ';'
2933     {
2934 michael 967 if (conf_parser_ctx.pass == 2)
2935 adx 30 {
2936     MyFree(ConfigServerHide.hidden_name);
2937 michael 1646 ConfigServerHide.hidden_name = xstrdup(yylval.string);
2938 adx 30 }
2939     };
2940    
2941     serverhide_links_delay: LINKS_DELAY '=' timespec ';'
2942     {
2943 michael 967 if (conf_parser_ctx.pass == 2)
2944 adx 30 {
2945     if (($3 > 0) && ConfigServerHide.links_disabled == 1)
2946     {
2947     eventAddIsh("write_links_file", write_links_file, NULL, $3);
2948     ConfigServerHide.links_disabled = 0;
2949     }
2950    
2951     ConfigServerHide.links_delay = $3;
2952     }
2953     };
2954    
2955     serverhide_hidden: HIDDEN '=' TBOOL ';'
2956     {
2957 michael 967 if (conf_parser_ctx.pass == 2)
2958 adx 30 ConfigServerHide.hidden = yylval.number;
2959     };
2960    
2961     serverhide_hide_server_ips: HIDE_SERVER_IPS '=' TBOOL ';'
2962     {
2963 michael 967 if (conf_parser_ctx.pass == 2)
2964 adx 30 ConfigServerHide.hide_server_ips = yylval.number;
2965     };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision