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