]> jfr.im git - solanum.git/blame - ircd/newconf.c
opm: add support for HTTPS CONNECT proxies.
[solanum.git] / ircd / newconf.c
CommitLineData
212380e3 1/* This code is in the public domain.
212380e3
AC
2 */
3
4#include "stdinc.h"
5
6#ifdef HAVE_LIBCRYPTO
7#include <openssl/pem.h>
8#include <openssl/rsa.h>
9#endif
10
212380e3 11#include "newconf.h"
212380e3 12#include "ircd_defs.h"
4016731b 13#include "logger.h"
212380e3
AC
14#include "s_conf.h"
15#include "s_user.h"
16#include "s_newconf.h"
17#include "send.h"
18#include "setup.h"
19#include "modules.h"
20#include "listener.h"
21#include "hostmask.h"
22#include "s_serv.h"
212380e3
AC
23#include "hash.h"
24#include "cache.h"
25#include "ircd.h"
26#include "snomask.h"
c6d72037 27#include "sslproc.h"
c53ca1e0 28#include "wsproc.h"
f8606875 29#include "privilege.h"
63eb8567 30#include "chmode.h"
212380e3
AC
31
32#define CF_TYPE(x) ((x) & CF_MTYPE)
33
02270e96 34static int yy_defer_accept = 1;
c53ca1e0 35static int yy_wsock = 0;
02270e96 36
212380e3 37struct TopConf *conf_cur_block;
e12981c0 38static char *conf_cur_block_name = NULL;
212380e3 39
330fc5c1 40static rb_dlink_list conf_items;
212380e3
AC
41
42static struct ConfItem *yy_aconf = NULL;
43
44static struct Class *yy_class = NULL;
45
46static struct remote_conf *yy_shared = NULL;
47static struct server_conf *yy_server = NULL;
48
330fc5c1
AC
49static rb_dlink_list yy_aconf_list;
50static rb_dlink_list yy_oper_list;
51static rb_dlink_list yy_shared_list;
52static rb_dlink_list yy_cluster_list;
212380e3
AC
53static struct oper_conf *yy_oper = NULL;
54
55static struct alias_entry *yy_alias = NULL;
56
57static char *yy_blacklist_host = NULL;
58static char *yy_blacklist_reason = NULL;
d3f6b808 59static uint8_t yy_blacklist_iptype = 0;
50808796 60static rb_dlink_list yy_blacklist_filters = { NULL, NULL, 0 };
0a1e77c2 61
8275e270
EM
62static char *yy_opm_address_ipv4 = NULL;
63static char *yy_opm_address_ipv6 = NULL;
64static uint16_t yy_opm_port_ipv4 = 0;
65static uint16_t yy_opm_port_ipv6 = 0;
9bba0f61 66static int yy_opm_timeout = 0;
51fa2ab8 67static rb_dlink_list yy_opm_scanner_list;
8275e270 68
f8606875 69static char *yy_privset_extends = NULL;
212380e3
AC
70
71static const char *
72conf_strtype(int type)
73{
dceac3e4 74 switch (CF_TYPE(type))
212380e3
AC
75 {
76 case CF_INT:
77 return "integer value";
78 case CF_STRING:
79 return "unquoted string";
80 case CF_YESNO:
81 return "yes/no value";
82 case CF_QSTRING:
83 return "quoted string";
84 case CF_TIME:
85 return "time/size value";
86 default:
87 return "unknown type";
88 }
89}
90
91int
023c36ae 92add_top_conf(const char *name, int (*sfunc) (struct TopConf *),
212380e3
AC
93 int (*efunc) (struct TopConf *), struct ConfEntry *items)
94{
95 struct TopConf *tc;
96
eddc2ab6 97 tc = rb_malloc(sizeof(struct TopConf));
212380e3 98
d7f753cd 99 tc->tc_name = name;
212380e3
AC
100 tc->tc_sfunc = sfunc;
101 tc->tc_efunc = efunc;
102 tc->tc_entries = items;
103
330fc5c1 104 rb_dlinkAddAlloc(tc, &conf_items);
212380e3
AC
105 return 0;
106}
107
108struct TopConf *
109find_top_conf(const char *name)
110{
330fc5c1 111 rb_dlink_node *d;
212380e3
AC
112 struct TopConf *tc;
113
5cefa1d6 114 RB_DLINK_FOREACH(d, conf_items.head)
212380e3
AC
115 {
116 tc = d->data;
117 if(strcasecmp(tc->tc_name, name) == 0)
118 return tc;
119 }
120
121 return NULL;
122}
123
124
125struct ConfEntry *
126find_conf_item(const struct TopConf *top, const char *name)
127{
128 struct ConfEntry *cf;
330fc5c1 129 rb_dlink_node *d;
212380e3
AC
130
131 if(top->tc_entries)
132 {
133 int i;
134
135 for(i = 0; top->tc_entries[i].cf_type; i++)
136 {
137 cf = &top->tc_entries[i];
138
139 if(!strcasecmp(cf->cf_name, name))
140 return cf;
141 }
142 }
143
5cefa1d6 144 RB_DLINK_FOREACH(d, top->tc_items.head)
212380e3
AC
145 {
146 cf = d->data;
147 if(strcasecmp(cf->cf_name, name) == 0)
148 return cf;
149 }
150
151 return NULL;
152}
153
154int
155remove_top_conf(char *name)
156{
157 struct TopConf *tc;
330fc5c1 158 rb_dlink_node *ptr;
212380e3
AC
159
160 if((tc = find_top_conf(name)) == NULL)
161 return -1;
162
330fc5c1 163 if((ptr = rb_dlinkFind(tc, &conf_items)) == NULL)
212380e3
AC
164 return -1;
165
330fc5c1 166 rb_dlinkDestroy(ptr, &conf_items);
637c4932 167 rb_free(tc);
212380e3
AC
168
169 return 0;
170}
171
172static void
173conf_set_serverinfo_name(void *data)
174{
175 if(ServerInfo.name == NULL)
176 {
177 const char *s;
178 int dots = 0;
179
180 for(s = data; *s != '\0'; s++)
181 {
182 if(!IsServChar(*s))
183 {
184 conf_report_error("Ignoring serverinfo::name "
185 "-- bogus servername.");
186 return;
187 }
188 else if(*s == '.')
189 ++dots;
190 }
191
192 if(!dots)
193 {
194 conf_report_error("Ignoring serverinfo::name -- must contain '.'");
195 return;
196 }
197
198 s = data;
199
200 if(IsDigit(*s))
201 {
202 conf_report_error("Ignoring serverinfo::name -- cannot begin with digit.");
203 return;
204 }
205
206 /* the ircd will exit() in main() if we dont set one */
207 if(strlen(s) <= HOSTLEN)
47a03750 208 ServerInfo.name = rb_strdup((char *) data);
212380e3
AC
209 }
210}
211
212static void
213conf_set_serverinfo_sid(void *data)
214{
215 char *sid = data;
216
217 if(ServerInfo.sid[0] == '\0')
218 {
219 if(!IsDigit(sid[0]) || !IsIdChar(sid[1]) ||
220 !IsIdChar(sid[2]) || sid[3] != '\0')
221 {
222 conf_report_error("Ignoring serverinfo::sid "
223 "-- bogus sid.");
224 return;
225 }
226
227 strcpy(ServerInfo.sid, sid);
228 }
229}
230
231static void
232conf_set_serverinfo_network_name(void *data)
233{
234 char *p;
235
236 if((p = strchr((char *) data, ' ')))
237 *p = '\0';
238
637c4932 239 rb_free(ServerInfo.network_name);
47a03750 240 ServerInfo.network_name = rb_strdup((char *) data);
212380e3
AC
241}
242
243static void
244conf_set_serverinfo_vhost(void *data)
245{
caa4d9d2 246 if(rb_inet_pton(AF_INET, (char *) data, &ServerInfo.ip.sin_addr) <= 0)
212380e3 247 {
532f83a7 248 conf_report_error("Invalid IPv4 address for server vhost (%s)", (char *) data);
212380e3
AC
249 return;
250 }
251 ServerInfo.ip.sin_family = AF_INET;
252 ServerInfo.specific_ipv4_vhost = 1;
253}
254
255static void
256conf_set_serverinfo_vhost6(void *data)
257{
ccda6e3f 258#ifdef RB_IPV6
caa4d9d2 259 if(rb_inet_pton(AF_INET6, (char *) data, &ServerInfo.ip6.sin6_addr) <= 0)
212380e3 260 {
532f83a7 261 conf_report_error("Invalid IPv6 address for server vhost (%s)", (char *) data);
212380e3
AC
262 return;
263 }
264
265 ServerInfo.specific_ipv6_vhost = 1;
266 ServerInfo.ip6.sin6_family = AF_INET6;
267#else
268 conf_report_error("Warning -- ignoring serverinfo::vhost6 -- IPv6 support not available.");
269#endif
270}
271
b583faf9
AC
272static void
273conf_set_serverinfo_nicklen(void *data)
274{
7b42eab6 275 ConfigFileEntry.nicklen = (*(unsigned int *) data) + 1;
b583faf9
AC
276
277 if (ConfigFileEntry.nicklen > NICKLEN)
278 {
279 conf_report_error("Warning -- ignoring serverinfo::nicklen -- provided nicklen (%u) is greater than allowed nicklen (%u)",
ca8ff483 280 ConfigFileEntry.nicklen - 1, NICKLEN - 1);
b583faf9
AC
281 ConfigFileEntry.nicklen = NICKLEN;
282 }
ca8ff483
JT
283 else if (ConfigFileEntry.nicklen < 9 + 1)
284 {
285 conf_report_error("Warning -- serverinfo::nicklen is too low (%u) -- forcing 9",
4f0d2b58 286 ConfigFileEntry.nicklen - 1);
ca8ff483
JT
287 ConfigFileEntry.nicklen = 9 + 1;
288 }
b583faf9
AC
289}
290
212380e3
AC
291static void
292conf_set_modules_module(void *data)
293{
212380e3
AC
294 char *m_bn;
295
b7a689d1 296 m_bn = rb_basename((char *) data);
212380e3 297
43f45e81 298 if(findmodule_byname(m_bn) == -1)
216d70e9 299 load_one_module((char *) data, MAPI_ORIGIN_EXTENSION, 0);
212380e3 300
637c4932 301 rb_free(m_bn);
212380e3
AC
302}
303
304static void
305conf_set_modules_path(void *data)
306{
212380e3 307 mod_add_path((char *) data);
212380e3
AC
308}
309
310struct mode_table
311{
312 const char *name;
313 int mode;
314};
315
316/* *INDENT-OFF* */
317static struct mode_table umode_table[] = {
318 {"callerid", UMODE_CALLERID },
319 {"deaf", UMODE_DEAF },
320 {"invisible", UMODE_INVISIBLE },
321 {"locops", UMODE_LOCOPS },
322 {"noforward", UMODE_NOFORWARD },
323 {"regonlymsg", UMODE_REGONLYMSG},
324 {"servnotice", UMODE_SERVNOTICE},
325 {"wallop", UMODE_WALLOP },
326 {"operwall", UMODE_OPERWALL },
327 {NULL, 0}
328};
329
19c13ce5 330static struct mode_table oper_table[] = {
212380e3 331 {"encrypted", OPER_ENCRYPTED },
b1594414 332 {"need_ssl", OPER_NEEDSSL },
212380e3
AC
333 {NULL, 0}
334};
335
336static struct mode_table auth_table[] = {
fbe8d087
EM
337 {"encrypted", CONF_FLAGS_ENCRYPTED },
338 {"spoof_notice", CONF_FLAGS_SPOOF_NOTICE },
339 {"exceed_limit", CONF_FLAGS_NOLIMIT },
340 {"dnsbl_exempt", CONF_FLAGS_EXEMPTDNSBL },
341 {"proxy_exempt", CONF_FLAGS_EXEMPTPROXY },
342 {"kline_exempt", CONF_FLAGS_EXEMPTKLINE },
343 {"flood_exempt", CONF_FLAGS_EXEMPTFLOOD },
344 {"spambot_exempt", CONF_FLAGS_EXEMPTSPAMBOT },
345 {"shide_exempt", CONF_FLAGS_EXEMPTSHIDE },
346 {"jupe_exempt", CONF_FLAGS_EXEMPTJUPE },
347 {"resv_exempt", CONF_FLAGS_EXEMPTRESV },
348 {"no_tilde", CONF_FLAGS_NO_TILDE },
349 {"need_ident", CONF_FLAGS_NEED_IDENTD },
350 {"have_ident", CONF_FLAGS_NEED_IDENTD },
351 {"need_ssl", CONF_FLAGS_NEED_SSL },
352 {"need_sasl", CONF_FLAGS_NEED_SASL },
353 {"extend_chans", CONF_FLAGS_EXTEND_CHANS },
212380e3
AC
354 {NULL, 0}
355};
356
357static struct mode_table connect_table[] = {
358 { "autoconn", SERVER_AUTOCONN },
359 { "compressed", SERVER_COMPRESSED },
360 { "encrypted", SERVER_ENCRYPTED },
361 { "topicburst", SERVER_TB },
c6d72037 362 { "ssl", SERVER_SSL },
212380e3
AC
363 { NULL, 0 },
364};
365
366static struct mode_table cluster_table[] = {
367 { "kline", SHARED_PKLINE },
368 { "tkline", SHARED_TKLINE },
369 { "unkline", SHARED_UNKLINE },
370 { "locops", SHARED_LOCOPS },
371 { "xline", SHARED_PXLINE },
372 { "txline", SHARED_TXLINE },
373 { "unxline", SHARED_UNXLINE },
374 { "resv", SHARED_PRESV },
375 { "tresv", SHARED_TRESV },
376 { "unresv", SHARED_UNRESV },
377 { "all", CLUSTER_ALL },
378 {NULL, 0}
379};
380
381static struct mode_table shared_table[] =
382{
383 { "kline", SHARED_PKLINE|SHARED_TKLINE },
384 { "xline", SHARED_PXLINE|SHARED_TXLINE },
385 { "resv", SHARED_PRESV|SHARED_TRESV },
9bba0f61
EM
386 { "dline", SHARED_PDLINE|SHARED_TDLINE },
387 { "tdline", SHARED_TDLINE },
388 { "pdline", SHARED_PDLINE },
f5cb68d5 389 { "undline", SHARED_UNDLINE },
212380e3
AC
390 { "tkline", SHARED_TKLINE },
391 { "unkline", SHARED_UNKLINE },
392 { "txline", SHARED_TXLINE },
393 { "unxline", SHARED_UNXLINE },
394 { "tresv", SHARED_TRESV },
395 { "unresv", SHARED_UNRESV },
396 { "locops", SHARED_LOCOPS },
397 { "rehash", SHARED_REHASH },
fe749d37 398 { "grant", SHARED_GRANT },
cc7ae51c 399 { "die", SHARED_DIE },
15feac53 400 { "module", SHARED_MODULE },
212380e3
AC
401 { "all", SHARED_ALL },
402 { "none", 0 },
403 {NULL, 0}
404};
405/* *INDENT-ON* */
406
407static int
408find_umode(struct mode_table *tab, const char *name)
409{
410 int i;
411
412 for (i = 0; tab[i].name; i++)
413 {
414 if(strcmp(tab[i].name, name) == 0)
415 return tab[i].mode;
416 }
417
418 return -1;
419}
420
421static void
422set_modes_from_table(int *modes, const char *whatis, struct mode_table *tab, conf_parm_t * args)
423{
424 for (; args; args = args->next)
425 {
426 const char *umode;
427 int dir = 1;
428 int mode;
429
dceac3e4 430 if(CF_TYPE(args->type) != CF_STRING)
212380e3
AC
431 {
432 conf_report_error("Warning -- %s is not a string; ignoring.", whatis);
433 continue;
434 }
435
436 umode = args->v.string;
437
438 if(*umode == '~')
439 {
440 dir = 0;
441 umode++;
442 }
443
444 mode = find_umode(tab, umode);
445
446 if(mode == -1)
447 {
448 conf_report_error("Warning -- unknown %s %s.", whatis, args->v.string);
449 continue;
450 }
451
452 if(mode)
453 {
454 if(dir)
455 *modes |= mode;
456 else
457 *modes &= ~mode;
458 }
459 else
460 *modes = 0;
461 }
462}
463
f8606875
AC
464static void
465conf_set_privset_extends(void *data)
466{
467 yy_privset_extends = rb_strdup((char *) data);
468}
469
470static void
471conf_set_privset_privs(void *data)
472{
473 char *privs = NULL;
474 conf_parm_t *args = data;
475
476 for (; args; args = args->next)
477 {
478 if (privs == NULL)
479 privs = rb_strdup(args->v.string);
480 else
481 {
482 char *privs_old = privs;
483
484 privs = rb_malloc(strlen(privs_old) + 1 + strlen(args->v.string) + 1);
065f67db 485 strcpy(privs, privs_old);
f8606875
AC
486 strcat(privs, " ");
487 strcat(privs, args->v.string);
488
489 rb_free(privs_old);
490 }
491 }
492
493 if (privs)
494 {
495 if (yy_privset_extends)
496 {
497 struct PrivilegeSet *set = privilegeset_get(yy_privset_extends);
498
499 if (!set)
500 {
49b0375d 501 conf_report_error("Warning -- unknown parent privilege set %s for %s; assuming defaults", yy_privset_extends, conf_cur_block_name);
f8606875 502
49b0375d 503 set = privilegeset_get("default");
f8606875
AC
504 }
505
506 privilegeset_extend(set, conf_cur_block_name != NULL ? conf_cur_block_name : "<unknown>", privs, 0);
507
508 rb_free(yy_privset_extends);
509 yy_privset_extends = NULL;
510 }
511 else
512 privilegeset_set_new(conf_cur_block_name != NULL ? conf_cur_block_name : "<unknown>", privs, 0);
513
514 rb_free(privs);
515 }
516}
517
212380e3
AC
518static int
519conf_begin_oper(struct TopConf *tc)
520{
330fc5c1 521 rb_dlink_node *ptr;
637c4932 522 rb_dlink_node *next_ptr;
212380e3
AC
523
524 if(yy_oper != NULL)
525 {
526 free_oper_conf(yy_oper);
527 yy_oper = NULL;
528 }
529
637c4932 530 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_oper_list.head)
212380e3
AC
531 {
532 free_oper_conf(ptr->data);
330fc5c1 533 rb_dlinkDestroy(ptr, &yy_oper_list);
212380e3
AC
534 }
535
536 yy_oper = make_oper_conf();
10847f65 537 yy_oper->flags |= OPER_ENCRYPTED;
212380e3
AC
538
539 return 0;
540}
541
542static int
543conf_end_oper(struct TopConf *tc)
544{
545 struct oper_conf *yy_tmpoper;
330fc5c1 546 rb_dlink_node *ptr;
637c4932 547 rb_dlink_node *next_ptr;
212380e3
AC
548
549 if(conf_cur_block_name != NULL)
550 {
551 if(strlen(conf_cur_block_name) > OPERNICKLEN)
552 conf_cur_block_name[OPERNICKLEN] = '\0';
553
47a03750 554 yy_oper->name = rb_strdup(conf_cur_block_name);
212380e3
AC
555 }
556
557 if(EmptyString(yy_oper->name))
558 {
559 conf_report_error("Ignoring operator block -- missing name.");
560 return 0;
561 }
562
563#ifdef HAVE_LIBCRYPTO
564 if(EmptyString(yy_oper->passwd) && EmptyString(yy_oper->rsa_pubkey_file))
565#else
566 if(EmptyString(yy_oper->passwd))
567#endif
568 {
569 conf_report_error("Ignoring operator block for %s -- missing password",
570 yy_oper->name);
571 return 0;
572 }
573
7d5acab7
JT
574
575 if (!yy_oper->privset)
576 yy_oper->privset = privilegeset_get("default");
577
212380e3
AC
578 /* now, yy_oper_list contains a stack of oper_conf's with just user
579 * and host in, yy_oper contains the rest of the information which
580 * we need to copy into each element in yy_oper_list
581 */
637c4932 582 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_oper_list.head)
212380e3
AC
583 {
584 yy_tmpoper = ptr->data;
585
47a03750 586 yy_tmpoper->name = rb_strdup(yy_oper->name);
212380e3
AC
587
588 /* could be an rsa key instead.. */
589 if(!EmptyString(yy_oper->passwd))
47a03750 590 yy_tmpoper->passwd = rb_strdup(yy_oper->passwd);
212380e3
AC
591
592 yy_tmpoper->flags = yy_oper->flags;
593 yy_tmpoper->umodes = yy_oper->umodes;
594 yy_tmpoper->snomask = yy_oper->snomask;
22c3b270 595 yy_tmpoper->privset = yy_oper->privset;
212380e3
AC
596
597#ifdef HAVE_LIBCRYPTO
598 if(yy_oper->rsa_pubkey_file)
599 {
600 BIO *file;
601
602 if((file = BIO_new_file(yy_oper->rsa_pubkey_file, "r")) == NULL)
603 {
604 conf_report_error("Ignoring operator block for %s -- "
605 "rsa_public_key_file cant be opened",
606 yy_tmpoper->name);
607 return 0;
608 }
023c36ae 609
212380e3
AC
610 yy_tmpoper->rsa_pubkey =
611 (RSA *) PEM_read_bio_RSA_PUBKEY(file, NULL, 0, NULL);
612
c422d2a0 613 (void)BIO_set_close(file, BIO_CLOSE);
212380e3
AC
614 BIO_free(file);
615
616 if(yy_tmpoper->rsa_pubkey == NULL)
617 {
618 conf_report_error("Ignoring operator block for %s -- "
619 "rsa_public_key_file key invalid; check syntax",
620 yy_tmpoper->name);
621 return 0;
622 }
623 }
63c7a68e
EM
624
625 if(!EmptyString(yy_oper->certfp))
462ae9d7 626 yy_tmpoper->certfp = rb_strdup(yy_oper->certfp);
212380e3
AC
627#endif
628
629 /* all is ok, put it on oper_conf_list */
330fc5c1 630 rb_dlinkMoveNode(ptr, &yy_oper_list, &oper_conf_list);
212380e3
AC
631 }
632
633 free_oper_conf(yy_oper);
634 yy_oper = NULL;
635
636 return 0;
637}
638
639static void
640conf_set_oper_flags(void *data)
641{
642 conf_parm_t *args = data;
643
19c13ce5 644 set_modes_from_table(&yy_oper->flags, "flag", oper_table, args);
212380e3
AC
645}
646
ff31db84
AC
647static void
648conf_set_oper_fingerprint(void *data)
649{
462ae9d7
JT
650 if (yy_oper->certfp)
651 rb_free(yy_oper->certfp);
ff31db84
AC
652 yy_oper->certfp = rb_strdup((char *) data);
653}
654
22c3b270
AC
655static void
656conf_set_oper_privset(void *data)
657{
658 yy_oper->privset = privilegeset_get((char *) data);
659}
660
212380e3
AC
661static void
662conf_set_oper_user(void *data)
663{
664 struct oper_conf *yy_tmpoper;
665 char *p;
666 char *host = (char *) data;
667
668 yy_tmpoper = make_oper_conf();
669
670 if((p = strchr(host, '@')))
671 {
672 *p++ = '\0';
673
47a03750
VY
674 yy_tmpoper->username = rb_strdup(host);
675 yy_tmpoper->host = rb_strdup(p);
212380e3
AC
676 }
677 else
678 {
679
47a03750
VY
680 yy_tmpoper->username = rb_strdup("*");
681 yy_tmpoper->host = rb_strdup(host);
212380e3
AC
682 }
683
684 if(EmptyString(yy_tmpoper->username) || EmptyString(yy_tmpoper->host))
685 {
686 conf_report_error("Ignoring user -- missing username/host");
687 free_oper_conf(yy_tmpoper);
688 return;
689 }
690
330fc5c1 691 rb_dlinkAddAlloc(yy_tmpoper, &yy_oper_list);
212380e3
AC
692}
693
694static void
695conf_set_oper_password(void *data)
696{
697 if(yy_oper->passwd)
698 {
699 memset(yy_oper->passwd, 0, strlen(yy_oper->passwd));
637c4932 700 rb_free(yy_oper->passwd);
212380e3
AC
701 }
702
47a03750 703 yy_oper->passwd = rb_strdup((char *) data);
212380e3
AC
704}
705
706static void
707conf_set_oper_rsa_public_key_file(void *data)
708{
709#ifdef HAVE_LIBCRYPTO
637c4932 710 rb_free(yy_oper->rsa_pubkey_file);
47a03750 711 yy_oper->rsa_pubkey_file = rb_strdup((char *) data);
212380e3
AC
712#else
713 conf_report_error("Warning -- ignoring rsa_public_key_file (OpenSSL support not available");
714#endif
715}
716
717static void
718conf_set_oper_umodes(void *data)
719{
720 set_modes_from_table(&yy_oper->umodes, "umode", umode_table, data);
721}
722
723static void
724conf_set_oper_snomask(void *data)
725{
726 yy_oper->snomask = parse_snobuf_to_mask(0, (const char *) data);
727}
728
729static int
730conf_begin_class(struct TopConf *tc)
731{
732 if(yy_class)
733 free_class(yy_class);
734
735 yy_class = make_class();
736 return 0;
737}
738
739static int
740conf_end_class(struct TopConf *tc)
741{
742 if(conf_cur_block_name != NULL)
47a03750 743 yy_class->class_name = rb_strdup(conf_cur_block_name);
212380e3
AC
744
745 if(EmptyString(yy_class->class_name))
746 {
747 conf_report_error("Ignoring connect block -- missing name.");
748 return 0;
749 }
750
751 add_class(yy_class);
752 yy_class = NULL;
753 return 0;
754}
755
756static void
757conf_set_class_ping_time(void *data)
758{
759 yy_class->ping_freq = *(unsigned int *) data;
760}
761
762static void
e33e589c 763conf_set_class_cidr_ipv4_bitlen(void *data)
212380e3 764{
e33e589c
JT
765 unsigned int maxsize = 32;
766 if(*(unsigned int *) data > maxsize)
767 conf_report_error
768 ("class::cidr_ipv4_bitlen argument exceeds maxsize (%d > %d) - ignoring.",
769 *(unsigned int *) data, maxsize);
770 else
771 yy_class->cidr_ipv4_bitlen = *(unsigned int *) data;
772
773}
774
ccda6e3f 775#ifdef RB_IPV6
e33e589c
JT
776static void
777conf_set_class_cidr_ipv6_bitlen(void *data)
778{
212380e3 779 unsigned int maxsize = 128;
212380e3
AC
780 if(*(unsigned int *) data > maxsize)
781 conf_report_error
e33e589c 782 ("class::cidr_ipv6_bitlen argument exceeds maxsize (%d > %d) - ignoring.",
212380e3
AC
783 *(unsigned int *) data, maxsize);
784 else
e33e589c 785 yy_class->cidr_ipv6_bitlen = *(unsigned int *) data;
212380e3
AC
786
787}
e33e589c
JT
788#endif
789
212380e3
AC
790static void
791conf_set_class_number_per_cidr(void *data)
792{
793 yy_class->cidr_amount = *(unsigned int *) data;
794}
795
796static void
797conf_set_class_number_per_ip(void *data)
798{
799 yy_class->max_local = *(unsigned int *) data;
800}
801
802
803static void
804conf_set_class_number_per_ip_global(void *data)
805{
806 yy_class->max_global = *(unsigned int *) data;
807}
808
809static void
810conf_set_class_number_per_ident(void *data)
811{
812 yy_class->max_ident = *(unsigned int *) data;
813}
814
815static void
816conf_set_class_connectfreq(void *data)
817{
818 yy_class->con_freq = *(unsigned int *) data;
819}
820
821static void
822conf_set_class_max_number(void *data)
823{
824 yy_class->max_total = *(unsigned int *) data;
825}
826
827static void
828conf_set_class_sendq(void *data)
829{
830 yy_class->max_sendq = *(unsigned int *) data;
831}
832
833static char *listener_address;
834
835static int
836conf_begin_listen(struct TopConf *tc)
837{
637c4932 838 rb_free(listener_address);
212380e3
AC
839 listener_address = NULL;
840 return 0;
841}
842
843static int
844conf_end_listen(struct TopConf *tc)
845{
637c4932 846 rb_free(listener_address);
212380e3
AC
847 listener_address = NULL;
848 return 0;
849}
850
02270e96
AC
851static void
852conf_set_listen_defer_accept(void *data)
853{
854 yy_defer_accept = *(unsigned int *) data;
855}
c6d72037 856
c53ca1e0
AC
857static void
858conf_set_listen_wsock(void *data)
859{
860 yy_wsock = *(unsigned int *) data;
861}
862
212380e3 863static void
c6d72037 864conf_set_listen_port_both(void *data, int ssl)
212380e3
AC
865{
866 conf_parm_t *args = data;
867 for (; args; args = args->next)
868 {
dceac3e4 869 if(CF_TYPE(args->type) != CF_INT)
212380e3
AC
870 {
871 conf_report_error
872 ("listener::port argument is not an integer " "-- ignoring.");
873 continue;
874 }
875 if(listener_address == NULL)
876 {
35f284c2
AC
877 if (!ssl)
878 {
d84acbce
AC
879 conf_report_warning("listener 'ANY/%d': support for plaintext listeners may be removed in a future release per RFC 7194. "
880 "It is suggested that users be migrated to SSL/TLS connections.", args->v.number);
35f284c2 881 }
c53ca1e0 882 add_listener(args->v.number, listener_address, AF_INET, ssl, ssl || yy_defer_accept, yy_wsock);
ccda6e3f 883#ifdef RB_IPV6
c53ca1e0 884 add_listener(args->v.number, listener_address, AF_INET6, ssl, ssl || yy_defer_accept, yy_wsock);
212380e3
AC
885#endif
886 }
887 else
888 {
889 int family;
ccda6e3f 890#ifdef RB_IPV6
212380e3
AC
891 if(strchr(listener_address, ':') != NULL)
892 family = AF_INET6;
023c36ae 893 else
212380e3
AC
894#endif
895 family = AF_INET;
023c36ae 896
35f284c2
AC
897 if (!ssl)
898 {
d84acbce
AC
899 conf_report_warning("listener '%s/%d': support for plaintext listeners may be removed in a future release per RFC 7194. "
900 "It is suggested that users be migrated to SSL/TLS connections.", listener_address, args->v.number);
35f284c2 901 }
023c36ae 902
c53ca1e0 903 add_listener(args->v.number, listener_address, family, ssl, ssl || yy_defer_accept, yy_wsock);
212380e3 904 }
212380e3
AC
905 }
906}
907
8bd5767b
JT
908static void
909conf_set_listen_port(void *data)
910{
911 conf_set_listen_port_both(data, 0);
912}
913
914static void
915conf_set_listen_sslport(void *data)
916{
917 conf_set_listen_port_both(data, 1);
c6d72037
VY
918}
919
212380e3
AC
920static void
921conf_set_listen_address(void *data)
922{
637c4932 923 rb_free(listener_address);
47a03750 924 listener_address = rb_strdup(data);
212380e3
AC
925}
926
927static int
928conf_begin_auth(struct TopConf *tc)
929{
330fc5c1 930 rb_dlink_node *ptr;
637c4932 931 rb_dlink_node *next_ptr;
212380e3
AC
932
933 if(yy_aconf)
934 free_conf(yy_aconf);
935
637c4932 936 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_aconf_list.head)
212380e3
AC
937 {
938 free_conf(ptr->data);
330fc5c1 939 rb_dlinkDestroy(ptr, &yy_aconf_list);
212380e3
AC
940 }
941
942 yy_aconf = make_conf();
943 yy_aconf->status = CONF_CLIENT;
944
945 return 0;
946}
947
948static int
949conf_end_auth(struct TopConf *tc)
950{
3d1f32c0 951 struct ConfItem *yy_tmp, *found_conf;
330fc5c1 952 rb_dlink_node *ptr;
637c4932 953 rb_dlink_node *next_ptr;
212380e3 954
27f616dd
JT
955 if(EmptyString(yy_aconf->info.name))
956 yy_aconf->info.name = rb_strdup("NOMATCH");
212380e3
AC
957
958 /* didnt even get one ->host? */
959 if(EmptyString(yy_aconf->host))
960 {
961 conf_report_error("Ignoring auth block -- missing user@host");
962 return 0;
963 }
964
965 /* so the stacking works in order.. */
966 collapse(yy_aconf->user);
967 collapse(yy_aconf->host);
968 conf_add_class_to_conf(yy_aconf);
3d1f32c0 969 if ((found_conf = find_exact_conf_by_address("*", CONF_CLIENT, "*")) && found_conf->spasswd == NULL)
6e5e2b00 970 conf_report_error("Ignoring redundant auth block (after *@*)");
3d1f32c0 971 else if ((found_conf = find_exact_conf_by_address(yy_aconf->host, CONF_CLIENT, yy_aconf->user)) &&
5f2df251 972 (!found_conf->spasswd || (yy_aconf->spasswd &&
3d1f32c0 973 0 == irccmp(found_conf->spasswd, yy_aconf->spasswd))))
6e5e2b00
JT
974 conf_report_error("Ignoring duplicate auth block for %s@%s",
975 yy_aconf->user, yy_aconf->host);
976 else
977 add_conf_by_address(yy_aconf->host, CONF_CLIENT, yy_aconf->user, yy_aconf->spasswd, yy_aconf);
212380e3 978
637c4932 979 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_aconf_list.head)
212380e3
AC
980 {
981 yy_tmp = ptr->data;
982
983 if(yy_aconf->passwd)
47a03750 984 yy_tmp->passwd = rb_strdup(yy_aconf->passwd);
212380e3 985
40c1fd47
VY
986 if(yy_aconf->spasswd)
987 yy_tmp->spasswd = rb_strdup(yy_aconf->spasswd);
023c36ae 988
212380e3 989 /* this will always exist.. */
27f616dd 990 yy_tmp->info.name = rb_strdup(yy_aconf->info.name);
212380e3
AC
991
992 if(yy_aconf->className)
47a03750 993 yy_tmp->className = rb_strdup(yy_aconf->className);
212380e3
AC
994
995 yy_tmp->flags = yy_aconf->flags;
996 yy_tmp->port = yy_aconf->port;
997
998 collapse(yy_tmp->user);
999 collapse(yy_tmp->host);
1000
1001 conf_add_class_to_conf(yy_tmp);
1002
0c2ea0c3 1003 if ((found_conf = find_exact_conf_by_address("*", CONF_CLIENT, "*")) && found_conf->spasswd == NULL)
6e5e2b00 1004 conf_report_error("Ignoring redundant auth block (after *@*)");
0c2ea0c3
JT
1005 else if ((found_conf = find_exact_conf_by_address(yy_tmp->host, CONF_CLIENT, yy_tmp->user)) &&
1006 (!found_conf->spasswd || (yy_tmp->spasswd &&
1007 0 == irccmp(found_conf->spasswd, yy_tmp->spasswd))))
6e5e2b00
JT
1008 conf_report_error("Ignoring duplicate auth block for %s@%s",
1009 yy_tmp->user, yy_tmp->host);
1010 else
1011 add_conf_by_address(yy_tmp->host, CONF_CLIENT, yy_tmp->user, yy_tmp->spasswd, yy_tmp);
330fc5c1 1012 rb_dlinkDestroy(ptr, &yy_aconf_list);
212380e3
AC
1013 }
1014
1015 yy_aconf = NULL;
1016 return 0;
1017}
1018
1019static void
1020conf_set_auth_user(void *data)
1021{
1022 struct ConfItem *yy_tmp;
1023 char *p;
1024
1025 /* The first user= line doesn't allocate a new conf */
1026 if(!EmptyString(yy_aconf->host))
1027 {
1028 yy_tmp = make_conf();
1029 yy_tmp->status = CONF_CLIENT;
1030 }
1031 else
1032 yy_tmp = yy_aconf;
1033
1034 if((p = strchr(data, '@')))
1035 {
1036 *p++ = '\0';
1037
47a03750
VY
1038 yy_tmp->user = rb_strdup(data);
1039 yy_tmp->host = rb_strdup(p);
212380e3
AC
1040 }
1041 else
1042 {
47a03750
VY
1043 yy_tmp->user = rb_strdup("*");
1044 yy_tmp->host = rb_strdup(data);
212380e3
AC
1045 }
1046
1047 if(yy_aconf != yy_tmp)
330fc5c1 1048 rb_dlinkAddAlloc(yy_tmp, &yy_aconf_list);
212380e3
AC
1049}
1050
40c1fd47
VY
1051static void
1052conf_set_auth_auth_user(void *data)
1053{
1054 if(yy_aconf->spasswd)
1055 memset(yy_aconf->spasswd, 0, strlen(yy_aconf->spasswd));
1056 rb_free(yy_aconf->spasswd);
1057 yy_aconf->spasswd = rb_strdup(data);
1058}
1059
212380e3
AC
1060static void
1061conf_set_auth_passwd(void *data)
1062{
1063 if(yy_aconf->passwd)
1064 memset(yy_aconf->passwd, 0, strlen(yy_aconf->passwd));
637c4932 1065 rb_free(yy_aconf->passwd);
47a03750 1066 yy_aconf->passwd = rb_strdup(data);
212380e3
AC
1067}
1068
1069static void
1070conf_set_auth_spoof(void *data)
1071{
1072 char *p;
1073 char *user = NULL;
1074 char *host = NULL;
1075
1076 host = data;
1077
1078 /* user@host spoof */
1079 if((p = strchr(host, '@')) != NULL)
1080 {
1081 *p = '\0';
1082 user = data;
1083 host = p+1;
1084
1085 if(EmptyString(user))
1086 {
1087 conf_report_error("Warning -- spoof ident empty.");
1088 return;
1089 }
1090
1091 if(strlen(user) > USERLEN)
1092 {
1093 conf_report_error("Warning -- spoof ident length invalid.");
1094 return;
1095 }
1096
1097 if(!valid_username(user))
1098 {
1099 conf_report_error("Warning -- invalid spoof (ident).");
1100 return;
1101 }
1102
1103 /* this must be restored! */
1104 *p = '@';
1105 }
1106
1107 if(EmptyString(host))
1108 {
1109 conf_report_error("Warning -- spoof host empty.");
1110 return;
1111 }
1112
1113 if(strlen(host) > HOSTLEN)
1114 {
1115 conf_report_error("Warning -- spoof host length invalid.");
1116 return;
1117 }
1118
1119 if(!valid_hostname(host))
1120 {
1121 conf_report_error("Warning -- invalid spoof (host).");
1122 return;
1123 }
1124
27f616dd
JT
1125 rb_free(yy_aconf->info.name);
1126 yy_aconf->info.name = rb_strdup(data);
212380e3
AC
1127 yy_aconf->flags |= CONF_FLAGS_SPOOF_IP;
1128}
1129
1130static void
1131conf_set_auth_flags(void *data)
1132{
1133 conf_parm_t *args = data;
1134
1135 set_modes_from_table((int *) &yy_aconf->flags, "flag", auth_table, args);
1136}
1137
1138static void
1139conf_set_auth_redir_serv(void *data)
1140{
1141 yy_aconf->flags |= CONF_FLAGS_REDIR;
27f616dd
JT
1142 rb_free(yy_aconf->info.name);
1143 yy_aconf->info.name = rb_strdup(data);
212380e3
AC
1144}
1145
1146static void
1147conf_set_auth_redir_port(void *data)
1148{
1149 int port = *(unsigned int *) data;
1150
1151 yy_aconf->flags |= CONF_FLAGS_REDIR;
1152 yy_aconf->port = port;
1153}
1154
1155static void
1156conf_set_auth_class(void *data)
1157{
637c4932 1158 rb_free(yy_aconf->className);
47a03750 1159 yy_aconf->className = rb_strdup(data);
212380e3
AC
1160}
1161
1162/* ok, shared_oper handles the stacking, shared_flags handles adding
1163 * things.. so all we need to do when we start and end a shared block, is
1164 * clean up anything thats been left over.
1165 */
1166static int
1167conf_cleanup_shared(struct TopConf *tc)
1168{
637c4932 1169 rb_dlink_node *ptr, *next_ptr;
212380e3 1170
637c4932 1171 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_shared_list.head)
212380e3
AC
1172 {
1173 free_remote_conf(ptr->data);
330fc5c1 1174 rb_dlinkDestroy(ptr, &yy_shared_list);
212380e3
AC
1175 }
1176
1177 if(yy_shared != NULL)
1178 {
1179 free_remote_conf(yy_shared);
1180 yy_shared = NULL;
1181 }
1182
1183 return 0;
1184}
1185
1186static void
1187conf_set_shared_oper(void *data)
1188{
1189 conf_parm_t *args = data;
1190 const char *username;
1191 char *p;
1192
1193 if(yy_shared != NULL)
1194 free_remote_conf(yy_shared);
1195
1196 yy_shared = make_remote_conf();
1197
1198 if(args->next != NULL)
1199 {
dceac3e4 1200 if(CF_TYPE(args->type) != CF_QSTRING)
212380e3
AC
1201 {
1202 conf_report_error("Ignoring shared::oper -- server is not a qstring");
1203 return;
1204 }
1205
47a03750 1206 yy_shared->server = rb_strdup(args->v.string);
212380e3
AC
1207 args = args->next;
1208 }
1209 else
47a03750 1210 yy_shared->server = rb_strdup("*");
212380e3 1211
dceac3e4 1212 if(CF_TYPE(args->type) != CF_QSTRING)
212380e3
AC
1213 {
1214 conf_report_error("Ignoring shared::oper -- oper is not a qstring");
1215 return;
1216 }
1217
1218 if((p = strchr(args->v.string, '@')) == NULL)
1219 {
1220 conf_report_error("Ignoring shard::oper -- oper is not a user@host");
1221 return;
1222 }
1223
1224 username = args->v.string;
1225 *p++ = '\0';
1226
1227 if(EmptyString(p))
47a03750 1228 yy_shared->host = rb_strdup("*");
212380e3 1229 else
47a03750 1230 yy_shared->host = rb_strdup(p);
212380e3
AC
1231
1232 if(EmptyString(username))
47a03750 1233 yy_shared->username = rb_strdup("*");
212380e3 1234 else
47a03750 1235 yy_shared->username = rb_strdup(username);
212380e3 1236
330fc5c1 1237 rb_dlinkAddAlloc(yy_shared, &yy_shared_list);
212380e3
AC
1238 yy_shared = NULL;
1239}
1240
1241static void
1242conf_set_shared_flags(void *data)
1243{
1244 conf_parm_t *args = data;
1245 int flags = 0;
637c4932 1246 rb_dlink_node *ptr, *next_ptr;
212380e3
AC
1247
1248 if(yy_shared != NULL)
1249 free_remote_conf(yy_shared);
1250
1251 set_modes_from_table(&flags, "flag", shared_table, args);
1252
637c4932 1253 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_shared_list.head)
212380e3
AC
1254 {
1255 yy_shared = ptr->data;
1256
1257 yy_shared->flags = flags;
330fc5c1
AC
1258 rb_dlinkDestroy(ptr, &yy_shared_list);
1259 rb_dlinkAddTail(yy_shared, &yy_shared->node, &shared_conf_list);
212380e3
AC
1260 }
1261
1262 yy_shared = NULL;
1263}
1264
1265static int
1266conf_begin_connect(struct TopConf *tc)
1267{
1268 if(yy_server)
1269 free_server_conf(yy_server);
1270
1271 yy_server = make_server_conf();
1272 yy_server->port = PORTNUM;
5aa453a4 1273 yy_server->flags |= SERVER_TB;
212380e3
AC
1274
1275 if(conf_cur_block_name != NULL)
47a03750 1276 yy_server->name = rb_strdup(conf_cur_block_name);
212380e3
AC
1277
1278 return 0;
1279}
1280
1281static int
1282conf_end_connect(struct TopConf *tc)
1283{
1284 if(EmptyString(yy_server->name))
1285 {
1286 conf_report_error("Ignoring connect block -- missing name.");
1287 return 0;
1288 }
1289
1290 if(ServerInfo.name != NULL && !irccmp(ServerInfo.name, yy_server->name))
1291 {
1292 conf_report_error("Ignoring connect block for %s -- name is equal to my own name.",
1293 yy_server->name);
1294 return 0;
1295 }
1296
ff0cc1e6 1297 if((EmptyString(yy_server->passwd) || EmptyString(yy_server->spasswd)) && EmptyString(yy_server->certfp))
212380e3 1298 {
c8f26906 1299 conf_report_error("Ignoring connect block for %s -- no fingerprint or password credentials provided.",
212380e3
AC
1300 yy_server->name);
1301 return 0;
1302 }
1303
1304 if(EmptyString(yy_server->host))
1305 {
1306 conf_report_error("Ignoring connect block for %s -- missing host.",
1307 yy_server->name);
1308 return 0;
1309 }
1310
1311#ifndef HAVE_LIBZ
1312 if(ServerConfCompressed(yy_server))
1313 {
1314 conf_report_error("Ignoring connect::flags::compressed -- zlib not available.");
1315 yy_server->flags &= ~SERVER_COMPRESSED;
1316 }
1317#endif
1318
1319 add_server_conf(yy_server);
330fc5c1 1320 rb_dlinkAdd(yy_server, &yy_server->node, &server_conf_list);
212380e3
AC
1321
1322 yy_server = NULL;
1323 return 0;
1324}
1325
1326static void
1327conf_set_connect_host(void *data)
1328{
637c4932 1329 rb_free(yy_server->host);
47a03750 1330 yy_server->host = rb_strdup(data);
212380e3
AC
1331 if (strchr(yy_server->host, ':'))
1332 yy_server->aftype = AF_INET6;
1333}
1334
1335static void
1336conf_set_connect_vhost(void *data)
1337{
caa4d9d2 1338 if(rb_inet_pton_sock(data, (struct sockaddr *)&yy_server->my_ipnum) <= 0)
212380e3 1339 {
532f83a7 1340 conf_report_error("Invalid IP address for server connect vhost (%s)",
212380e3
AC
1341 (char *) data);
1342 return;
1343 }
1344
1345 yy_server->flags |= SERVER_VHOSTED;
1346}
1347
1348static void
1349conf_set_connect_send_password(void *data)
1350{
1351 if(yy_server->spasswd)
1352 {
1353 memset(yy_server->spasswd, 0, strlen(yy_server->spasswd));
637c4932 1354 rb_free(yy_server->spasswd);
212380e3
AC
1355 }
1356
47a03750 1357 yy_server->spasswd = rb_strdup(data);
212380e3
AC
1358}
1359
1360static void
1361conf_set_connect_accept_password(void *data)
1362{
1363 if(yy_server->passwd)
1364 {
1365 memset(yy_server->passwd, 0, strlen(yy_server->passwd));
637c4932 1366 rb_free(yy_server->passwd);
212380e3 1367 }
47a03750 1368 yy_server->passwd = rb_strdup(data);
212380e3
AC
1369}
1370
ff0cc1e6
AC
1371static void
1372conf_set_connect_fingerprint(void *data)
1373{
462ae9d7
JT
1374 if (yy_server->certfp)
1375 rb_free(yy_server->certfp);
ff0cc1e6
AC
1376 yy_server->certfp = rb_strdup((char *) data);
1377
1378 /* force SSL to be enabled if fingerprint is enabled. */
1379 yy_server->flags |= SERVER_SSL;
1380}
1381
212380e3
AC
1382static void
1383conf_set_connect_port(void *data)
1384{
1385 int port = *(unsigned int *) data;
1386
1387 if(port < 1)
1388 port = PORTNUM;
1389
1390 yy_server->port = port;
1391}
1392
1393static void
1394conf_set_connect_aftype(void *data)
1395{
1396 char *aft = data;
1397
1398 if(strcasecmp(aft, "ipv4") == 0)
1399 yy_server->aftype = AF_INET;
ccda6e3f 1400#ifdef RB_IPV6
212380e3
AC
1401 else if(strcasecmp(aft, "ipv6") == 0)
1402 yy_server->aftype = AF_INET6;
1403#endif
1404 else
1405 conf_report_error("connect::aftype '%s' is unknown.", aft);
1406}
1407
1408static void
1409conf_set_connect_flags(void *data)
1410{
1411 conf_parm_t *args = data;
1412
1413 /* note, we allow them to set compressed, then remove it later if
1414 * they do and LIBZ isnt available
1415 */
1416 set_modes_from_table(&yy_server->flags, "flag", connect_table, args);
1417}
1418
1419static void
1420conf_set_connect_hub_mask(void *data)
1421{
1422 struct remote_conf *yy_hub;
1423
1424 if(EmptyString(yy_server->name))
1425 return;
1426
1427 yy_hub = make_remote_conf();
1428 yy_hub->flags = CONF_HUB;
1429
47a03750
VY
1430 yy_hub->host = rb_strdup(data);
1431 yy_hub->server = rb_strdup(yy_server->name);
330fc5c1 1432 rb_dlinkAdd(yy_hub, &yy_hub->node, &hubleaf_conf_list);
212380e3
AC
1433}
1434
1435static void
1436conf_set_connect_leaf_mask(void *data)
1437{
1438 struct remote_conf *yy_leaf;
1439
1440 if(EmptyString(yy_server->name))
1441 return;
1442
1443 yy_leaf = make_remote_conf();
1444 yy_leaf->flags = CONF_LEAF;
1445
47a03750
VY
1446 yy_leaf->host = rb_strdup(data);
1447 yy_leaf->server = rb_strdup(yy_server->name);
330fc5c1 1448 rb_dlinkAdd(yy_leaf, &yy_leaf->node, &hubleaf_conf_list);
212380e3
AC
1449}
1450
1451static void
1452conf_set_connect_class(void *data)
1453{
637c4932 1454 rb_free(yy_server->class_name);
47a03750 1455 yy_server->class_name = rb_strdup(data);
212380e3
AC
1456}
1457
1458static void
1459conf_set_exempt_ip(void *data)
1460{
1461 struct ConfItem *yy_tmp;
1462
1463 if(parse_netmask(data, NULL, NULL) == HM_HOST)
1464 {
1465 conf_report_error("Ignoring exempt -- invalid exempt::ip.");
1466 return;
1467 }
1468
1469 yy_tmp = make_conf();
47a03750
VY
1470 yy_tmp->passwd = rb_strdup("*");
1471 yy_tmp->host = rb_strdup(data);
212380e3 1472 yy_tmp->status = CONF_EXEMPTDLINE;
40c1fd47 1473 add_conf_by_address(yy_tmp->host, CONF_EXEMPTDLINE, NULL, NULL, yy_tmp);
212380e3
AC
1474}
1475
1476static int
1477conf_cleanup_cluster(struct TopConf *tc)
1478{
637c4932 1479 rb_dlink_node *ptr, *next_ptr;
212380e3 1480
637c4932 1481 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_cluster_list.head)
212380e3
AC
1482 {
1483 free_remote_conf(ptr->data);
330fc5c1 1484 rb_dlinkDestroy(ptr, &yy_cluster_list);
212380e3
AC
1485 }
1486
1487 if(yy_shared != NULL)
1488 {
1489 free_remote_conf(yy_shared);
1490 yy_shared = NULL;
1491 }
1492
1493 return 0;
1494}
1495
1496static void
1497conf_set_cluster_name(void *data)
1498{
1499 if(yy_shared != NULL)
1500 free_remote_conf(yy_shared);
1501
1502 yy_shared = make_remote_conf();
47a03750 1503 yy_shared->server = rb_strdup(data);
330fc5c1 1504 rb_dlinkAddAlloc(yy_shared, &yy_cluster_list);
212380e3
AC
1505
1506 yy_shared = NULL;
1507}
1508
1509static void
1510conf_set_cluster_flags(void *data)
1511{
1512 conf_parm_t *args = data;
1513 int flags = 0;
637c4932 1514 rb_dlink_node *ptr, *next_ptr;
212380e3
AC
1515
1516 if(yy_shared != NULL)
1517 free_remote_conf(yy_shared);
1518
1519 set_modes_from_table(&flags, "flag", cluster_table, args);
1520
637c4932 1521 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_cluster_list.head)
212380e3
AC
1522 {
1523 yy_shared = ptr->data;
1524 yy_shared->flags = flags;
330fc5c1
AC
1525 rb_dlinkAddTail(yy_shared, &yy_shared->node, &cluster_conf_list);
1526 rb_dlinkDestroy(ptr, &yy_cluster_list);
212380e3
AC
1527 }
1528
1529 yy_shared = NULL;
1530}
1531
1532static void
1533conf_set_general_havent_read_conf(void *data)
1534{
1535 if(*(unsigned int *) data)
1536 {
1537 conf_report_error("You haven't read your config file properly.");
1538 conf_report_error
1539 ("There is a line in the example conf that will kill your server if not removed.");
1540 conf_report_error
1541 ("Consider actually reading/editing the conf file, and removing this line.");
1542 if (!testing_conf)
1543 exit(0);
1544 }
1545}
1546
1547static void
1548conf_set_general_hide_error_messages(void *data)
1549{
1550 char *val = data;
1551
1552 if(strcasecmp(val, "yes") == 0)
1553 ConfigFileEntry.hide_error_messages = 2;
1554 else if(strcasecmp(val, "opers") == 0)
1555 ConfigFileEntry.hide_error_messages = 1;
1556 else if(strcasecmp(val, "no") == 0)
1557 ConfigFileEntry.hide_error_messages = 0;
1558 else
1559 conf_report_error("Invalid setting '%s' for general::hide_error_messages.", val);
1560}
1561
1562static void
1563conf_set_general_kline_delay(void *data)
1564{
1565 ConfigFileEntry.kline_delay = *(unsigned int *) data;
1566
1567 /* THIS MUST BE HERE to stop us being unable to check klines */
f66f0baa 1568 kline_queued = false;
212380e3
AC
1569}
1570
1571static void
1572conf_set_general_stats_k_oper_only(void *data)
1573{
1574 char *val = data;
1575
1576 if(strcasecmp(val, "yes") == 0)
1577 ConfigFileEntry.stats_k_oper_only = 2;
1578 else if(strcasecmp(val, "masked") == 0)
1579 ConfigFileEntry.stats_k_oper_only = 1;
1580 else if(strcasecmp(val, "no") == 0)
1581 ConfigFileEntry.stats_k_oper_only = 0;
1582 else
1583 conf_report_error("Invalid setting '%s' for general::stats_k_oper_only.", val);
1584}
1585
1586static void
1587conf_set_general_stats_i_oper_only(void *data)
1588{
1589 char *val = data;
1590
1591 if(strcasecmp(val, "yes") == 0)
1592 ConfigFileEntry.stats_i_oper_only = 2;
1593 else if(strcasecmp(val, "masked") == 0)
1594 ConfigFileEntry.stats_i_oper_only = 1;
1595 else if(strcasecmp(val, "no") == 0)
1596 ConfigFileEntry.stats_i_oper_only = 0;
1597 else
1598 conf_report_error("Invalid setting '%s' for general::stats_i_oper_only.", val);
1599}
1600
1601static void
1602conf_set_general_compression_level(void *data)
1603{
1604#ifdef HAVE_LIBZ
1605 ConfigFileEntry.compression_level = *(unsigned int *) data;
1606
1607 if((ConfigFileEntry.compression_level < 1) || (ConfigFileEntry.compression_level > 9))
1608 {
1609 conf_report_error
1610 ("Invalid general::compression_level %d -- using default.",
1611 ConfigFileEntry.compression_level);
1612 ConfigFileEntry.compression_level = 0;
1613 }
1614#else
1615 conf_report_error("Ignoring general::compression_level -- zlib not available.");
1616#endif
1617}
1618
1619static void
1620conf_set_general_default_umodes(void *data)
1621{
1622 char *pm;
1623 int what = MODE_ADD, flag;
1624
1625 ConfigFileEntry.default_umodes = 0;
1626 for (pm = (char *) data; *pm; pm++)
1627 {
1628 switch (*pm)
1629 {
1630 case '+':
1631 what = MODE_ADD;
1632 break;
1633 case '-':
1634 what = MODE_DEL;
1635 break;
1636
1637 /* don't allow +o */
1638 case 'o':
1639 case 'S':
5fabe513 1640 case 'Z':
212380e3
AC
1641 case ' ':
1642 break;
1643
1644 default:
1645 if ((flag = user_modes[(unsigned char) *pm]))
1646 {
1647 /* Proper value has probably not yet been set
1648 * so don't check oper_only_umodes -- jilles */
1649 if (what == MODE_ADD)
1650 ConfigFileEntry.default_umodes |= flag;
1651 else
1652 ConfigFileEntry.default_umodes &= ~flag;
1653 }
1654 break;
1655 }
023c36ae 1656 }
212380e3
AC
1657}
1658
1659static void
1660conf_set_general_oper_umodes(void *data)
1661{
1662 set_modes_from_table(&ConfigFileEntry.oper_umodes, "umode", umode_table, data);
1663}
1664
13d8f0ed
AC
1665static void
1666conf_set_general_certfp_method(void *data)
1667{
1668 char *method = data;
1669
1670 if (!strcasecmp(method, "sha1"))
1671 ConfigFileEntry.certfp_method = RB_SSL_CERTFP_METH_SHA1;
1672 else if (!strcasecmp(method, "sha256"))
1673 ConfigFileEntry.certfp_method = RB_SSL_CERTFP_METH_SHA256;
1674 else if (!strcasecmp(method, "sha512"))
1675 ConfigFileEntry.certfp_method = RB_SSL_CERTFP_METH_SHA512;
1676 else
1677 {
1678 ConfigFileEntry.certfp_method = RB_SSL_CERTFP_METH_SHA1;
1679 conf_report_error("Ignoring general::certfp_method -- bogus certfp method %s", method);
1680 }
1681}
1682
212380e3
AC
1683static void
1684conf_set_general_oper_only_umodes(void *data)
1685{
1686 set_modes_from_table(&ConfigFileEntry.oper_only_umodes, "umode", umode_table, data);
1687}
1688
1689static void
1690conf_set_general_oper_snomask(void *data)
1691{
1692 char *pm;
1693 int what = MODE_ADD, flag;
1694
1695 ConfigFileEntry.oper_snomask = 0;
1696 for (pm = (char *) data; *pm; pm++)
1697 {
1698 switch (*pm)
1699 {
1700 case '+':
1701 what = MODE_ADD;
1702 break;
1703 case '-':
1704 what = MODE_DEL;
1705 break;
1706
1707 default:
1708 if ((flag = snomask_modes[(unsigned char) *pm]))
1709 {
1710 if (what == MODE_ADD)
1711 ConfigFileEntry.oper_snomask |= flag;
1712 else
1713 ConfigFileEntry.oper_snomask &= ~flag;
1714 }
1715 break;
1716 }
1717 }
1718}
1719
1720static void
1721conf_set_serverhide_links_delay(void *data)
1722{
1723 int val = *(unsigned int *) data;
1724
212380e3
AC
1725 ConfigServerHide.links_delay = val;
1726}
1727
212380e3
AC
1728static void
1729conf_set_service_name(void *data)
1730{
212380e3
AC
1731 const char *s;
1732 char *tmp;
1733 int dots = 0;
1734
1735 for(s = data; *s != '\0'; s++)
1736 {
1737 if(!IsServChar(*s))
1738 {
1739 conf_report_error("Ignoring service::name "
1740 "-- bogus servername.");
1741 return;
1742 }
1743 else if(*s == '.')
1744 dots++;
1745 }
1746
1747 if(!dots)
1748 {
1749 conf_report_error("Ignoring service::name -- must contain '.'");
1750 return;
1751 }
1752
47a03750 1753 tmp = rb_strdup(data);
330fc5c1 1754 rb_dlinkAddAlloc(tmp, &service_list);
212380e3
AC
1755}
1756
212380e3
AC
1757static int
1758conf_begin_alias(struct TopConf *tc)
1759{
eddc2ab6 1760 yy_alias = rb_malloc(sizeof(struct alias_entry));
212380e3
AC
1761
1762 if (conf_cur_block_name != NULL)
47a03750 1763 yy_alias->name = rb_strdup(conf_cur_block_name);
212380e3
AC
1764
1765 yy_alias->flags = 0;
1766 yy_alias->hits = 0;
1767
1768 return 0;
1769}
1770
1771static int
1772conf_end_alias(struct TopConf *tc)
1773{
212380e3
AC
1774 if (yy_alias == NULL)
1775 return -1;
1776
1777 if (yy_alias->name == NULL)
1778 {
1779 conf_report_error("Ignoring alias -- must have a name.");
1780
637c4932 1781 rb_free(yy_alias);
212380e3
AC
1782
1783 return -1;
1784 }
1785
1786 if (yy_alias->target == NULL)
1787 {
1788 conf_report_error("Ignoring alias -- must have a target.");
1789
637c4932 1790 rb_free(yy_alias);
212380e3
AC
1791
1792 return -1;
1793 }
1794
a4bf26dd 1795 rb_dictionary_add(alias_dict, yy_alias->name, yy_alias);
212380e3
AC
1796
1797 return 0;
1798}
1799
1800static void
1801conf_set_alias_name(void *data)
1802{
1803 if (data == NULL || yy_alias == NULL) /* this shouldn't ever happen */
1804 return;
1805
47a03750 1806 yy_alias->name = rb_strdup(data);
212380e3
AC
1807}
1808
1809static void
1810conf_set_alias_target(void *data)
1811{
1812 if (data == NULL || yy_alias == NULL) /* this shouldn't ever happen */
1813 return;
1814
47a03750 1815 yy_alias->target = rb_strdup(data);
212380e3
AC
1816}
1817
63eb8567
AC
1818static void
1819conf_set_channel_autochanmodes(void *data)
1820{
1821 char *pm;
1822 int what = MODE_ADD;
1823
1824 ConfigChannel.autochanmodes = 0;
1825 for (pm = (char *) data; *pm; pm++)
1826 {
1827 switch (*pm)
1828 {
1829 case '+':
1830 what = MODE_ADD;
1831 break;
1832 case '-':
1833 what = MODE_DEL;
1834 break;
1835
1836 default:
1837 if (chmode_table[(unsigned char) *pm].set_func == chm_simple)
1838 {
1839 if (what == MODE_ADD)
1840 ConfigChannel.autochanmodes |= chmode_table[(unsigned char) *pm].mode_type;
1841 else
1842 ConfigChannel.autochanmodes &= ~chmode_table[(unsigned char) *pm].mode_type;
1843 }
1844 else
1845 {
4952e40b 1846 conf_report_error("channel::autochanmodes -- Invalid channel mode %c", *pm);
63eb8567
AC
1847 continue;
1848 }
1849 break;
1850 }
1851 }
1852}
1853
3c93d380
EM
1854/* XXX for below */
1855static void conf_set_blacklist_reason(void *data);
1856
d3f6b808
EM
1857#define IPTYPE_IPV4 1
1858#define IPTYPE_IPV6 2
1859
212380e3
AC
1860static void
1861conf_set_blacklist_host(void *data)
1862{
3c93d380
EM
1863 if (yy_blacklist_host)
1864 {
1865 conf_report_error("blacklist::host %s overlaps existing host %s",
1866 (char *)data, yy_blacklist_host);
1867
1868 /* Cleanup */
1869 conf_set_blacklist_reason(NULL);
1870 return;
1871 }
1872
d3f6b808 1873 yy_blacklist_iptype |= IPTYPE_IPV4;
47a03750 1874 yy_blacklist_host = rb_strdup(data);
212380e3
AC
1875}
1876
0a1e77c2
EM
1877static void
1878conf_set_blacklist_type(void *data)
1879{
1880 conf_parm_t *args = data;
1881
1882 /* Don't assume we have either if we got here */
d3f6b808 1883 yy_blacklist_iptype = 0;
0a1e77c2
EM
1884
1885 for (; args; args = args->next)
1886 {
1887 if (!strcasecmp(args->v.string, "ipv4"))
d3f6b808 1888 yy_blacklist_iptype |= IPTYPE_IPV4;
0a1e77c2 1889 else if (!strcasecmp(args->v.string, "ipv6"))
d3f6b808 1890 yy_blacklist_iptype |= IPTYPE_IPV6;
0a1e77c2
EM
1891 else
1892 conf_report_error("blacklist::type has unknown address family %s",
1893 args->v.string);
1894 }
1895
1896 /* If we have neither, just default to IPv4 */
d3f6b808 1897 if (!yy_blacklist_iptype)
0a1e77c2 1898 {
3fe0efd5 1899 conf_report_warning("blacklist::type has neither IPv4 nor IPv6 (defaulting to IPv4)");
d3f6b808 1900 yy_blacklist_iptype = IPTYPE_IPV4;
0a1e77c2
EM
1901 }
1902}
1903
3c93d380
EM
1904static void
1905conf_set_blacklist_matches(void *data)
1906{
1907 conf_parm_t *args = data;
d3f6b808 1908 enum filter_t { FILTER_NONE, FILTER_ALL, FILTER_LAST };
3c93d380
EM
1909
1910 for (; args; args = args->next)
1911 {
3c93d380
EM
1912 char *str = args->v.string;
1913 char *p;
d3f6b808 1914 enum filter_t type = FILTER_LAST;
3c93d380
EM
1915
1916 if (CF_TYPE(args->type) != CF_QSTRING)
1917 {
1918 conf_report_error("blacklist::matches -- must be quoted string");
1919 continue;
1920 }
1921
1922 if (str == NULL)
1923 {
1924 conf_report_error("blacklist::matches -- invalid entry");
1925 continue;
1926 }
1927
1928 if (strlen(str) > HOSTIPLEN)
1929 {
1930 conf_report_error("blacklist::matches has an entry too long: %s",
1931 str);
1932 continue;
1933 }
1934
1935 for (p = str; *p != '\0'; p++)
1936 {
1937 /* Check for validity */
1938 if (*p == '.')
d3f6b808
EM
1939 type = FILTER_ALL;
1940 else if (!isdigit((unsigned char)*p))
3c93d380
EM
1941 {
1942 conf_report_error("blacklist::matches has invalid IP match entry %s",
1943 str);
d3f6b808 1944 type = FILTER_NONE;
3c93d380
EM
1945 break;
1946 }
1947 }
1948
d3f6b808 1949 if (type == FILTER_ALL)
3c93d380
EM
1950 {
1951 /* Basic IP sanity check */
1952 struct rb_sockaddr_storage tmp;
1953 if (rb_inet_pton(AF_INET, str, &tmp) <= 0)
1954 {
1955 conf_report_error("blacklist::matches has invalid IP match entry %s",
1956 str);
1957 continue;
1958 }
1959 }
d3f6b808 1960 else if (type == FILTER_LAST)
3c93d380
EM
1961 {
1962 /* Verify it's the correct length */
1963 if (strlen(str) > 3)
1964 {
1965 conf_report_error("blacklist::matches has invalid octet match entry %s",
1966 str);
1967 continue;
1968 }
1969 }
1970 else
1971 {
1972 continue; /* Invalid entry */
1973 }
1974
d3f6b808 1975 rb_dlinkAddAlloc(rb_strdup(str), &yy_blacklist_filters);
3c93d380
EM
1976 }
1977}
1978
212380e3
AC
1979static void
1980conf_set_blacklist_reason(void *data)
1981{
3c93d380 1982 rb_dlink_node *ptr, *nptr;
212380e3 1983
2196b182 1984 if (yy_blacklist_host && data)
212380e3 1985 {
2196b182 1986 yy_blacklist_reason = rb_strdup(data);
835d456c 1987 if (yy_blacklist_iptype & IPTYPE_IPV6)
0a1e77c2 1988 {
a6a30cc7 1989 /* Make sure things fit (magic number 64 = alnum count + dots)
771dcfad
EM
1990 * Example: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa
1991 */
0a1e77c2
EM
1992 if ((64 + strlen(yy_blacklist_host)) > IRCD_RES_HOSTLEN)
1993 {
1994 conf_report_error("blacklist::host %s results in IPv6 queries that are too long",
1995 yy_blacklist_host);
1996 goto cleanup_bl;
1997 }
1998 }
1999 /* Avoid doing redundant check, IPv6 is bigger than IPv4 --Elizabeth */
d3f6b808 2000 if ((yy_blacklist_iptype & IPTYPE_IPV4) && !(yy_blacklist_iptype & IPTYPE_IPV6))
0a1e77c2 2001 {
a6a30cc7
EM
2002 /* Make sure things fit for worst case (magic number 16 = number of nums + dots)
2003 * Example: 127.127.127.127.in-addr.arpa
771dcfad 2004 */
0a1e77c2
EM
2005 if ((16 + strlen(yy_blacklist_host)) > IRCD_RES_HOSTLEN)
2006 {
2007 conf_report_error("blacklist::host %s results in IPv4 queries that are too long",
2008 yy_blacklist_host);
2009 goto cleanup_bl;
2010 }
2011 }
2012
d3f6b808 2013 add_blacklist(yy_blacklist_host, yy_blacklist_reason, yy_blacklist_iptype, &yy_blacklist_filters);
3c93d380 2014 }
0a1e77c2
EM
2015
2016cleanup_bl:
d3f6b808 2017 RB_DLINK_FOREACH_SAFE(ptr, nptr, yy_blacklist_filters.head)
e232f35c 2018 {
d3f6b808
EM
2019 rb_free(ptr->data);
2020 rb_dlinkDestroy(ptr, &yy_blacklist_filters);
212380e3 2021 }
3c93d380 2022
d3f6b808
EM
2023 yy_blacklist_filters = (rb_dlink_list){ NULL, NULL, 0 };
2024
3c93d380
EM
2025 rb_free(yy_blacklist_host);
2026 rb_free(yy_blacklist_reason);
2027 yy_blacklist_host = NULL;
2028 yy_blacklist_reason = NULL;
d3f6b808 2029 yy_blacklist_iptype = 0;
212380e3
AC
2030}
2031
51fa2ab8
EM
2032
2033struct opm_scanner
2034{
2035 const char *type;
2036 uint16_t port;
2037
2038 rb_dlink_node node;
2039};
2040
8275e270
EM
2041static int
2042conf_begin_opm(struct TopConf *tc)
2043{
2044 yy_opm_address_ipv4 = yy_opm_address_ipv6 = NULL;
9bba0f61 2045 yy_opm_port_ipv4 = yy_opm_port_ipv6 = yy_opm_timeout = 0;
8275e270
EM
2046 return 0;
2047}
2048
2049static int
2050conf_end_opm(struct TopConf *tc)
2051{
51fa2ab8
EM
2052 rb_dlink_node *ptr, *nptr;
2053 bool fail = false;
2054
2055 if(!rb_dlink_list_length(&yy_opm_scanner_list))
2056 {
2057 conf_report_error("No opm scanners configured, disabling opm.");
2058 fail = true;
2059 goto end;
2060 }
2061
8275e270
EM
2062 if(yy_opm_port_ipv4 > 0)
2063 {
2064 if(yy_opm_address_ipv4 != NULL)
2065 create_opm_listener(yy_opm_address_ipv4, yy_opm_port_ipv4);
2066 else
2067 {
2068 char ip[HOSTIPLEN];
2069 if(!rb_inet_ntop_sock((struct sockaddr *)&ServerInfo.ip, ip, sizeof(ip)))
8275e270 2070 conf_report_error("No opm::listen_ipv4 nor serverinfo::vhost directive; cannot listen on IPv4");
8275e270 2071 else
8275e270 2072 create_opm_listener(ip, yy_opm_port_ipv4);
8275e270
EM
2073 }
2074 }
2075
2076 if(yy_opm_port_ipv6 > 0)
2077 {
2078 if(yy_opm_address_ipv6 != NULL)
2079 create_opm_listener(yy_opm_address_ipv6, yy_opm_port_ipv6);
2080 else
2081 {
2082 char ip[HOSTIPLEN];
2083 if(!rb_inet_ntop_sock((struct sockaddr *)&ServerInfo.ip6, ip, sizeof(ip)))
8275e270 2084 conf_report_error("No opm::listen_ipv6 nor serverinfo::vhost directive; cannot listen on IPv6");
8275e270 2085 else
8275e270 2086 create_opm_listener(ip, yy_opm_port_ipv6);
8275e270
EM
2087 }
2088 }
2089
51fa2ab8
EM
2090 /* If there's no listeners... */
2091 fail = (yy_opm_port_ipv4 == 0 || yy_opm_port_ipv6 == 0);
2092
9bba0f61
EM
2093 if(!fail && yy_opm_timeout > 0)
2094 /* Send timeout */
2095 set_authd_timeout("opm_timeout", yy_opm_timeout);
2096
51fa2ab8
EM
2097end:
2098 RB_DLINK_FOREACH_SAFE(ptr, nptr, yy_opm_scanner_list.head)
2099 {
2100 struct opm_scanner *scanner = ptr->data;
2101
2102 if(!fail)
2103 create_opm_proxy_scanner(scanner->type, scanner->port);
2104
2105 rb_dlinkDelete(&scanner->node, &yy_opm_scanner_list);
2106 rb_free(scanner);
2107 }
2108
8275e270
EM
2109 rb_free(yy_opm_address_ipv4);
2110 rb_free(yy_opm_address_ipv6);
2111 return 0;
2112}
2113
9bba0f61
EM
2114static void
2115conf_set_opm_timeout(void *data)
2116{
2117 int timeout = *((int *)data);
2118
2119 if(timeout <= 0 || timeout > 60)
2120 {
2121 conf_report_error("opm::timeout value %d is bogus, ignoring", timeout);
2122 return;
2123 }
2124
2125 yy_opm_timeout = timeout;
2126}
51fa2ab8 2127
8275e270 2128static void
51fa2ab8 2129conf_set_opm_listen_address_both(void *data, bool ipv6)
8275e270
EM
2130{
2131 struct rb_sockaddr_storage addr;
51fa2ab8 2132 const char *confstr = (ipv6 ? "opm::listen_ipv6" : "opm::listen_ipv4");
8275e270
EM
2133 char *ip = data;
2134
8275e270
EM
2135 if(!rb_inet_pton_sock(ip, (struct sockaddr *)&addr))
2136 {
51fa2ab8 2137 conf_report_error("%s is an invalid address: %s", confstr, ip);
8275e270
EM
2138 return;
2139 }
2140
51fa2ab8 2141 if(ipv6)
8275e270 2142 {
51fa2ab8
EM
2143#ifdef RB_IPV6
2144 if(GET_SS_FAMILY(&addr) != AF_INET6)
2145 {
2146 conf_report_error("%s is of the wrong address type: %s", confstr, ip);
2147 return;
2148 }
2149
2150 if(yy_opm_address_ipv6 != NULL)
2151 {
2152 conf_report_error("%s overwrites previous address %s", confstr, ip);
2153 return;
2154 }
2155
2156 yy_opm_address_ipv6 = rb_strdup(ip);
2157#else
2158 conf_report_error("%s requires IPv6 support in your ircd", confstr, ip);
8275e270 2159 return;
8275e270 2160#endif
51fa2ab8
EM
2161 }
2162 else
8275e270 2163 {
51fa2ab8
EM
2164 if(GET_SS_FAMILY(&addr) != AF_INET)
2165 {
2166 conf_report_error("%s is of the wrong address type: %s", confstr, ip);
2167 return;
2168 }
2169
2170 if(yy_opm_address_ipv4 != NULL)
2171 {
2172 conf_report_error("%s overwrites previous address %s", confstr, ip);
2173 return;
2174 }
2175
2176 yy_opm_address_ipv4 = rb_strdup(ip);
8275e270 2177 }
51fa2ab8 2178}
8275e270 2179
51fa2ab8
EM
2180static void
2181conf_set_opm_listen_address_ipv4(void *data)
2182{
2183 conf_set_opm_listen_address_both(data, false);
8275e270
EM
2184}
2185
2186static void
2187conf_set_opm_listen_address_ipv6(void *data)
2188{
51fa2ab8
EM
2189 conf_set_opm_listen_address_both(data, true);
2190}
8275e270 2191
51fa2ab8
EM
2192static void
2193conf_set_opm_listen_port_both(void *data, bool ipv6)
2194{
2195 int port = *((int *)data);
2196 const char *confstr = (ipv6 ? "opm::port_ipv6" : "opm::port_ipv4");
8275e270 2197
51fa2ab8
EM
2198#ifndef RB_IPV6
2199 if(ipv6)
8275e270 2200 {
51fa2ab8 2201 conf_report_error("%s requires IPv6 support in your ircd", confstr);
8275e270
EM
2202 return;
2203 }
51fa2ab8 2204#endif
8275e270 2205
51fa2ab8 2206 if(port > 65535 || port <= 0)
8275e270 2207 {
51fa2ab8 2208 conf_report_error("%s is out of range: %d", confstr, port);
8275e270
EM
2209 return;
2210 }
2211
51fa2ab8 2212 if(ipv6)
8275e270 2213 {
51fa2ab8
EM
2214 if(yy_opm_port_ipv4)
2215 {
2216 conf_report_error("%s overwrites existing port %hu",
2217 confstr, yy_opm_port_ipv4);
2218 return;
2219 }
2220
2221 yy_opm_port_ipv4 = port;
8275e270 2222 }
51fa2ab8
EM
2223 else
2224 {
2225 if(yy_opm_port_ipv6)
2226 {
2227 conf_report_error("%s overwrites existing port %hu",
2228 confstr, yy_opm_port_ipv6);
2229 return;
2230 }
8275e270 2231
51fa2ab8
EM
2232 yy_opm_port_ipv6 = port;
2233 }
8275e270
EM
2234}
2235
2236static void
2237conf_set_opm_listen_port_ipv4(void *data)
2238{
51fa2ab8 2239 conf_set_opm_listen_port_both(data, false);
8275e270
EM
2240}
2241
2242static void
2243conf_set_opm_listen_port_ipv6(void *data)
2244{
51fa2ab8 2245 conf_set_opm_listen_port_both(data, true);
8275e270
EM
2246}
2247
2248static void
2249conf_set_opm_listen_port(void *data)
2250{
51fa2ab8
EM
2251 conf_set_opm_listen_port_both(data, true);
2252 conf_set_opm_listen_port_both(data, false);
2253}
8275e270 2254
51fa2ab8
EM
2255static void
2256conf_set_opm_scan_ports_all(void *data, const char *node, const char *type)
2257{
2258 conf_parm_t *args = data;
2259 for (; args; args = args->next)
8275e270 2260 {
51fa2ab8
EM
2261 rb_dlink_node *ptr;
2262 bool dup = false;
8275e270 2263
51fa2ab8
EM
2264 if(CF_TYPE(args->type) != CF_INT)
2265 {
2266 conf_report_error("%s argument is not an integer -- ignoring.", node);
2267 continue;
2268 }
2269
2270 if(args->v.number > 65535 || args->v.number <= 0)
2271 {
2272 conf_report_error("%s argument is not an integer between 1 and 65535 -- ignoring.", node);
2273 continue;
2274 }
8275e270 2275
51fa2ab8
EM
2276 /* Check for duplicates */
2277 RB_DLINK_FOREACH(ptr, yy_opm_scanner_list.head)
2278 {
2279 struct opm_scanner *scanner = ptr->data;
2280
2281 if(scanner->port == args->v.number && strcmp(type, scanner->type) == 0)
2282 {
2283 conf_report_error("%s argument is duplicate", node);
2284 dup = true;
2285 break;
2286 }
2287 }
2288
2289 if(!dup)
2290 {
2291 struct opm_scanner *scanner = rb_malloc(sizeof(struct opm_scanner));
2292 scanner->port = args->v.number;
2293 scanner->type = type;
2294 rb_dlinkAdd(scanner, &scanner->node, &yy_opm_scanner_list);
2295 }
8275e270 2296 }
51fa2ab8 2297}
8275e270 2298
51fa2ab8
EM
2299static void
2300conf_set_opm_scan_ports_socks4(void *data)
2301{
2302 conf_set_opm_scan_ports_all(data, "opm::socks4_ports", "socks4");
2303}
8275e270 2304
51fa2ab8
EM
2305static void
2306conf_set_opm_scan_ports_socks5(void *data)
2307{
2308 conf_set_opm_scan_ports_all(data, "opm::socks5_ports", "socks5");
8275e270
EM
2309}
2310
fabe8b94
EM
2311static void
2312conf_set_opm_scan_ports_httpconnect(void *data)
2313{
2314 conf_set_opm_scan_ports_all(data, "opm::httpconnect_ports", "httpconnect");
2315}
2316
eb0814b3
EM
2317static void
2318conf_set_opm_scan_ports_httpsconnect(void *data)
2319{
2320 conf_set_opm_scan_ports_all(data, "opm::httpsconnect_ports", "httpsconnect");
2321}
2322
212380e3
AC
2323/* public functions */
2324
2325
2326void
2327conf_report_error(const char *fmt, ...)
2328{
2329 va_list ap;
82236a2a 2330 char msg[BUFSIZE + 1] = { 0 };
212380e3
AC
2331
2332 va_start(ap, fmt);
82236a2a 2333 vsnprintf(msg, BUFSIZE, fmt, ap);
212380e3
AC
2334 va_end(ap);
2335
2336 if (testing_conf)
2337 {
2338 fprintf(stderr, "\"%s\", line %d: %s\n", current_file, lineno + 1, msg);
2339 return;
2340 }
2341
2342 ierror("\"%s\", line %d: %s", current_file, lineno + 1, msg);
d84acbce
AC
2343 sendto_realops_snomask(SNO_GENERAL, L_ALL, "error: \"%s\", line %d: %s", current_file, lineno + 1, msg);
2344}
2345
2346void
2347conf_report_warning(const char *fmt, ...)
2348{
2349 va_list ap;
82236a2a 2350 char msg[BUFSIZE + 1] = { 0 };
d84acbce
AC
2351
2352 va_start(ap, fmt);
82236a2a 2353 vsnprintf(msg, BUFSIZE, fmt, ap);
d84acbce
AC
2354 va_end(ap);
2355
2356 if (testing_conf)
2357 {
2358 fprintf(stderr, "\"%s\", line %d: %s\n", current_file, lineno + 1, msg);
2359 return;
2360 }
2361
2362 iwarn("\"%s\", line %d: %s", current_file, lineno + 1, msg);
2363 sendto_realops_snomask(SNO_GENERAL, L_ALL, "warning: \"%s\", line %d: %s", current_file, lineno + 1, msg);
212380e3
AC
2364}
2365
2366int
2367conf_start_block(char *block, char *name)
2368{
2369 if((conf_cur_block = find_top_conf(block)) == NULL)
2370 {
2371 conf_report_error("Configuration block '%s' is not defined.", block);
2372 return -1;
2373 }
2374
2375 if(name)
47a03750 2376 conf_cur_block_name = rb_strdup(name);
212380e3
AC
2377 else
2378 conf_cur_block_name = NULL;
2379
2380 if(conf_cur_block->tc_sfunc)
2381 if(conf_cur_block->tc_sfunc(conf_cur_block) < 0)
2382 return -1;
2383
2384 return 0;
2385}
2386
2387int
2388conf_end_block(struct TopConf *tc)
2389{
e12981c0 2390 int ret = 0;
212380e3 2391 if(tc->tc_efunc)
e12981c0 2392 ret = tc->tc_efunc(tc);
212380e3 2393
637c4932 2394 rb_free(conf_cur_block_name);
e12981c0
KB
2395 conf_cur_block_name = NULL;
2396 return ret;
212380e3
AC
2397}
2398
2399static void
2400conf_set_generic_int(void *data, void *location)
2401{
2402 *((int *) location) = *((unsigned int *) data);
2403}
2404
2405static void
2406conf_set_generic_string(void *data, int len, void *location)
2407{
2408 char **loc = location;
2409 char *input = data;
2410
2e819b6b 2411 if(len && strlen(input) > (unsigned int)len)
212380e3
AC
2412 input[len] = '\0';
2413
637c4932 2414 rb_free(*loc);
47a03750 2415 *loc = rb_strdup(input);
212380e3
AC
2416}
2417
2418int
dceac3e4 2419conf_call_set(struct TopConf *tc, char *item, conf_parm_t * value)
212380e3
AC
2420{
2421 struct ConfEntry *cf;
2422 conf_parm_t *cp;
2423
2424 if(!tc)
2425 return -1;
2426
2427 if((cf = find_conf_item(tc, item)) == NULL)
2428 {
2429 conf_report_error
2430 ("Non-existant configuration setting %s::%s.", tc->tc_name, (char *) item);
2431 return -1;
2432 }
2433
2434 /* if it takes one thing, make sure they only passed one thing,
2435 and handle as needed. */
ed45dfe6 2436 if((value->v.list->type & CF_FLIST) && !(cf->cf_type & CF_FLIST))
212380e3
AC
2437 {
2438 conf_report_error
2439 ("Option %s::%s does not take a list of values.", tc->tc_name, item);
2440 return -1;
2441 }
2442
2443 cp = value->v.list;
2444
2445
2446 if(CF_TYPE(value->v.list->type) != CF_TYPE(cf->cf_type))
2447 {
023c36ae 2448 /* if it expects a string value, but we got a yesno,
212380e3
AC
2449 * convert it back
2450 */
2451 if((CF_TYPE(value->v.list->type) == CF_YESNO) &&
2452 (CF_TYPE(cf->cf_type) == CF_STRING))
2453 {
2454 value->v.list->type = CF_STRING;
2455
2456 if(cp->v.number == 1)
47a03750 2457 cp->v.string = rb_strdup("yes");
212380e3 2458 else
47a03750 2459 cp->v.string = rb_strdup("no");
212380e3
AC
2460 }
2461
2462 /* maybe it's a CF_TIME and they passed CF_INT --
2463 should still be valid */
2464 else if(!((CF_TYPE(value->v.list->type) == CF_INT) &&
2465 (CF_TYPE(cf->cf_type) == CF_TIME)))
2466 {
2467 conf_report_error
2468 ("Wrong type for %s::%s (expected %s, got %s)",
2469 tc->tc_name, (char *) item,
2470 conf_strtype(cf->cf_type), conf_strtype(value->v.list->type));
2471 return -1;
2472 }
2473 }
2474
2475 if(cf->cf_type & CF_FLIST)
2476 {
2477#if 0
2478 if(cf->cf_arg)
2479 conf_set_generic_list(value->v.list, cf->cf_arg);
2480 else
2481#endif
2482 /* just pass it the extended argument list */
2483 cf->cf_func(value->v.list);
2484 }
2485 else
2486 {
2487 /* it's old-style, needs only one arg */
2488 switch (cf->cf_type)
2489 {
2490 case CF_INT:
2491 case CF_TIME:
2492 case CF_YESNO:
2493 if(cf->cf_arg)
2494 conf_set_generic_int(&cp->v.number, cf->cf_arg);
2495 else
2496 cf->cf_func(&cp->v.number);
2497 break;
2498 case CF_STRING:
2499 case CF_QSTRING:
2500 if(EmptyString(cp->v.string))
2501 conf_report_error("Ignoring %s::%s -- empty field",
2502 tc->tc_name, item);
2503 else if(cf->cf_arg)
2504 conf_set_generic_string(cp->v.string, cf->cf_len, cf->cf_arg);
2505 else
2506 cf->cf_func(cp->v.string);
2507 break;
2508 }
2509 }
2510
2511
2512 return 0;
2513}
2514
2515int
2516add_conf_item(const char *topconf, const char *name, int type, void (*func) (void *))
2517{
2518 struct TopConf *tc;
2519 struct ConfEntry *cf;
2520
2521 if((tc = find_top_conf(topconf)) == NULL)
2522 return -1;
2523
12edf3e3 2524 if(find_conf_item(tc, name) != NULL)
212380e3
AC
2525 return -1;
2526
eddc2ab6 2527 cf = rb_malloc(sizeof(struct ConfEntry));
212380e3 2528
d7f753cd 2529 cf->cf_name = name;
212380e3
AC
2530 cf->cf_type = type;
2531 cf->cf_func = func;
2532 cf->cf_arg = NULL;
2533
330fc5c1 2534 rb_dlinkAddAlloc(cf, &tc->tc_items);
212380e3
AC
2535
2536 return 0;
2537}
2538
2539int
2540remove_conf_item(const char *topconf, const char *name)
2541{
2542 struct TopConf *tc;
2543 struct ConfEntry *cf;
330fc5c1 2544 rb_dlink_node *ptr;
212380e3
AC
2545
2546 if((tc = find_top_conf(topconf)) == NULL)
2547 return -1;
2548
2549 if((cf = find_conf_item(tc, name)) == NULL)
2550 return -1;
2551
330fc5c1 2552 if((ptr = rb_dlinkFind(cf, &tc->tc_items)) == NULL)
212380e3
AC
2553 return -1;
2554
330fc5c1 2555 rb_dlinkDestroy(ptr, &tc->tc_items);
637c4932 2556 rb_free(cf);
212380e3
AC
2557
2558 return 0;
2559}
2560
2561/* *INDENT-OFF* */
2562static struct ConfEntry conf_serverinfo_table[] =
2563{
2564 { "description", CF_QSTRING, NULL, 0, &ServerInfo.description },
212380e3
AC
2565
2566 { "network_name", CF_QSTRING, conf_set_serverinfo_network_name, 0, NULL },
2567 { "name", CF_QSTRING, conf_set_serverinfo_name, 0, NULL },
2568 { "sid", CF_QSTRING, conf_set_serverinfo_sid, 0, NULL },
2569 { "vhost", CF_QSTRING, conf_set_serverinfo_vhost, 0, NULL },
2570 { "vhost6", CF_QSTRING, conf_set_serverinfo_vhost6, 0, NULL },
2571
8bd5767b
JT
2572 { "ssl_private_key", CF_QSTRING, NULL, 0, &ServerInfo.ssl_private_key },
2573 { "ssl_ca_cert", CF_QSTRING, NULL, 0, &ServerInfo.ssl_ca_cert },
023c36ae 2574 { "ssl_cert", CF_QSTRING, NULL, 0, &ServerInfo.ssl_cert },
8bd5767b 2575 { "ssl_dh_params", CF_QSTRING, NULL, 0, &ServerInfo.ssl_dh_params },
c1725bda 2576 { "ssl_cipher_list", CF_QSTRING, NULL, 0, &ServerInfo.ssl_cipher_list },
c6d72037
VY
2577 { "ssld_count", CF_INT, NULL, 0, &ServerInfo.ssld_count },
2578
101db4c4 2579 { "default_max_clients",CF_INT, NULL, 0, &ServerInfo.default_max_clients },
c2d96fcb 2580
b583faf9
AC
2581 { "nicklen", CF_INT, conf_set_serverinfo_nicklen, 0, NULL },
2582
212380e3
AC
2583 { "\0", 0, NULL, 0, NULL }
2584};
2585
2586static struct ConfEntry conf_admin_table[] =
2587{
2588 { "name", CF_QSTRING, NULL, 200, &AdminInfo.name },
2589 { "description",CF_QSTRING, NULL, 200, &AdminInfo.description },
2590 { "email", CF_QSTRING, NULL, 200, &AdminInfo.email },
2591 { "\0", 0, NULL, 0, NULL }
2592};
2593
2594static struct ConfEntry conf_log_table[] =
2595{
d74fa5b5
JT
2596 { "fname_userlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_userlog },
2597 { "fname_fuserlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_fuserlog },
2598 { "fname_operlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_operlog },
2599 { "fname_foperlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_foperlog },
2600 { "fname_serverlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_serverlog },
2601 { "fname_killlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_killlog },
2602 { "fname_klinelog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_klinelog },
2603 { "fname_operspylog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_operspylog },
2604 { "fname_ioerrorlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_ioerrorlog },
212380e3
AC
2605 { "\0", 0, NULL, 0, NULL }
2606};
2607
2608static struct ConfEntry conf_operator_table[] =
2609{
2610 { "rsa_public_key_file", CF_QSTRING, conf_set_oper_rsa_public_key_file, 0, NULL },
2611 { "flags", CF_STRING | CF_FLIST, conf_set_oper_flags, 0, NULL },
2612 { "umodes", CF_STRING | CF_FLIST, conf_set_oper_umodes, 0, NULL },
22c3b270 2613 { "privset", CF_QSTRING, conf_set_oper_privset, 0, NULL },
212380e3
AC
2614 { "snomask", CF_QSTRING, conf_set_oper_snomask, 0, NULL },
2615 { "user", CF_QSTRING, conf_set_oper_user, 0, NULL },
2616 { "password", CF_QSTRING, conf_set_oper_password, 0, NULL },
ff31db84 2617 { "fingerprint", CF_QSTRING, conf_set_oper_fingerprint, 0, NULL },
212380e3
AC
2618 { "\0", 0, NULL, 0, NULL }
2619};
2620
f8606875
AC
2621static struct ConfEntry conf_privset_table[] =
2622{
2623 { "extends", CF_QSTRING, conf_set_privset_extends, 0, NULL },
2624 { "privs", CF_STRING | CF_FLIST, conf_set_privset_privs, 0, NULL },
2625 { "\0", 0, NULL, 0, NULL }
2626};
2627
212380e3
AC
2628static struct ConfEntry conf_class_table[] =
2629{
2630 { "ping_time", CF_TIME, conf_set_class_ping_time, 0, NULL },
e33e589c
JT
2631 { "cidr_ipv4_bitlen", CF_INT, conf_set_class_cidr_ipv4_bitlen, 0, NULL },
2632#ifdef RB_IPV6
2633 { "cidr_ipv6_bitlen", CF_INT, conf_set_class_cidr_ipv6_bitlen, 0, NULL },
2634#endif
212380e3
AC
2635 { "number_per_cidr", CF_INT, conf_set_class_number_per_cidr, 0, NULL },
2636 { "number_per_ip", CF_INT, conf_set_class_number_per_ip, 0, NULL },
2637 { "number_per_ip_global", CF_INT,conf_set_class_number_per_ip_global, 0, NULL },
2638 { "number_per_ident", CF_INT, conf_set_class_number_per_ident, 0, NULL },
2639 { "connectfreq", CF_TIME, conf_set_class_connectfreq, 0, NULL },
2640 { "max_number", CF_INT, conf_set_class_max_number, 0, NULL },
2641 { "sendq", CF_TIME, conf_set_class_sendq, 0, NULL },
2642 { "\0", 0, NULL, 0, NULL }
2643};
2644
2645static struct ConfEntry conf_auth_table[] =
2646{
2647 { "user", CF_QSTRING, conf_set_auth_user, 0, NULL },
40c1fd47 2648 { "auth_user", CF_QSTRING, conf_set_auth_auth_user, 0, NULL },
212380e3
AC
2649 { "password", CF_QSTRING, conf_set_auth_passwd, 0, NULL },
2650 { "class", CF_QSTRING, conf_set_auth_class, 0, NULL },
2651 { "spoof", CF_QSTRING, conf_set_auth_spoof, 0, NULL },
2652 { "redirserv", CF_QSTRING, conf_set_auth_redir_serv, 0, NULL },
2653 { "redirport", CF_INT, conf_set_auth_redir_port, 0, NULL },
2654 { "flags", CF_STRING | CF_FLIST, conf_set_auth_flags, 0, NULL },
2655 { "\0", 0, NULL, 0, NULL }
2656};
2657
2658static struct ConfEntry conf_connect_table[] =
2659{
2660 { "send_password", CF_QSTRING, conf_set_connect_send_password, 0, NULL },
2661 { "accept_password", CF_QSTRING, conf_set_connect_accept_password, 0, NULL },
ff0cc1e6 2662 { "fingerprint", CF_QSTRING, conf_set_connect_fingerprint, 0, NULL },
212380e3
AC
2663 { "flags", CF_STRING | CF_FLIST, conf_set_connect_flags, 0, NULL },
2664 { "host", CF_QSTRING, conf_set_connect_host, 0, NULL },
2665 { "vhost", CF_QSTRING, conf_set_connect_vhost, 0, NULL },
2666 { "port", CF_INT, conf_set_connect_port, 0, NULL },
2667 { "aftype", CF_STRING, conf_set_connect_aftype, 0, NULL },
2668 { "hub_mask", CF_QSTRING, conf_set_connect_hub_mask, 0, NULL },
2669 { "leaf_mask", CF_QSTRING, conf_set_connect_leaf_mask, 0, NULL },
2670 { "class", CF_QSTRING, conf_set_connect_class, 0, NULL },
2671 { "\0", 0, NULL, 0, NULL }
2672};
2673
2674static struct ConfEntry conf_general_table[] =
2675{
2676 { "oper_only_umodes", CF_STRING | CF_FLIST, conf_set_general_oper_only_umodes, 0, NULL },
2677 { "oper_umodes", CF_STRING | CF_FLIST, conf_set_general_oper_umodes, 0, NULL },
2678 { "oper_snomask", CF_QSTRING, conf_set_general_oper_snomask, 0, NULL },
2679 { "compression_level", CF_INT, conf_set_general_compression_level, 0, NULL },
2680 { "havent_read_conf", CF_YESNO, conf_set_general_havent_read_conf, 0, NULL },
2681 { "hide_error_messages",CF_STRING, conf_set_general_hide_error_messages,0, NULL },
2682 { "kline_delay", CF_TIME, conf_set_general_kline_delay, 0, NULL },
2683 { "stats_k_oper_only", CF_STRING, conf_set_general_stats_k_oper_only, 0, NULL },
2684 { "stats_i_oper_only", CF_STRING, conf_set_general_stats_i_oper_only, 0, NULL },
2685 { "default_umodes", CF_QSTRING, conf_set_general_default_umodes, 0, NULL },
2686
2687 { "default_operstring", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.default_operstring },
2688 { "default_adminstring",CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.default_adminstring },
2689 { "servicestring", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.servicestring },
212380e3
AC
2690 { "kline_reason", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.kline_reason },
2691 { "identify_service", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.identifyservice },
2692 { "identify_command", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.identifycommand },
7d33cce8 2693 { "sasl_service", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.sasl_service },
212380e3
AC
2694
2695 { "anti_spam_exit_message_time", CF_TIME, NULL, 0, &ConfigFileEntry.anti_spam_exit_message_time },
2696 { "disable_fake_channels", CF_YESNO, NULL, 0, &ConfigFileEntry.disable_fake_channels },
2697 { "min_nonwildcard_simple", CF_INT, NULL, 0, &ConfigFileEntry.min_nonwildcard_simple },
2698 { "non_redundant_klines", CF_YESNO, NULL, 0, &ConfigFileEntry.non_redundant_klines },
2699 { "tkline_expire_notices", CF_YESNO, NULL, 0, &ConfigFileEntry.tkline_expire_notices },
2700
2701 { "anti_nick_flood", CF_YESNO, NULL, 0, &ConfigFileEntry.anti_nick_flood },
2702 { "burst_away", CF_YESNO, NULL, 0, &ConfigFileEntry.burst_away },
2703 { "caller_id_wait", CF_TIME, NULL, 0, &ConfigFileEntry.caller_id_wait },
2704 { "client_exit", CF_YESNO, NULL, 0, &ConfigFileEntry.client_exit },
212380e3 2705 { "collision_fnc", CF_YESNO, NULL, 0, &ConfigFileEntry.collision_fnc },
330692a1 2706 { "resv_fnc", CF_YESNO, NULL, 0, &ConfigFileEntry.resv_fnc },
212380e3
AC
2707 { "connect_timeout", CF_TIME, NULL, 0, &ConfigFileEntry.connect_timeout },
2708 { "default_floodcount", CF_INT, NULL, 0, &ConfigFileEntry.default_floodcount },
944b0584 2709 { "default_ident_timeout", CF_INT, NULL, 0, &ConfigFileEntry.default_ident_timeout },
212380e3 2710 { "disable_auth", CF_YESNO, NULL, 0, &ConfigFileEntry.disable_auth },
212380e3
AC
2711 { "dots_in_ident", CF_INT, NULL, 0, &ConfigFileEntry.dots_in_ident },
2712 { "failed_oper_notice", CF_YESNO, NULL, 0, &ConfigFileEntry.failed_oper_notice },
212380e3 2713 { "global_snotices", CF_YESNO, NULL, 0, &ConfigFileEntry.global_snotices },
212380e3
AC
2714 { "hide_spoof_ips", CF_YESNO, NULL, 0, &ConfigFileEntry.hide_spoof_ips },
2715 { "dline_with_reason", CF_YESNO, NULL, 0, &ConfigFileEntry.dline_with_reason },
2716 { "kline_with_reason", CF_YESNO, NULL, 0, &ConfigFileEntry.kline_with_reason },
2717 { "map_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.map_oper_only },
2718 { "max_accept", CF_INT, NULL, 0, &ConfigFileEntry.max_accept },
2719 { "max_monitor", CF_INT, NULL, 0, &ConfigFileEntry.max_monitor },
2720 { "max_nick_time", CF_TIME, NULL, 0, &ConfigFileEntry.max_nick_time },
2721 { "max_nick_changes", CF_INT, NULL, 0, &ConfigFileEntry.max_nick_changes },
2722 { "max_targets", CF_INT, NULL, 0, &ConfigFileEntry.max_targets },
2723 { "min_nonwildcard", CF_INT, NULL, 0, &ConfigFileEntry.min_nonwildcard },
2724 { "nick_delay", CF_TIME, NULL, 0, &ConfigFileEntry.nick_delay },
2725 { "no_oper_flood", CF_YESNO, NULL, 0, &ConfigFileEntry.no_oper_flood },
2726 { "operspy_admin_only", CF_YESNO, NULL, 0, &ConfigFileEntry.operspy_admin_only },
2727 { "operspy_dont_care_user_info", CF_YESNO, NULL, 0, &ConfigFileEntry.operspy_dont_care_user_info },
2728 { "pace_wait", CF_TIME, NULL, 0, &ConfigFileEntry.pace_wait },
2729 { "pace_wait_simple", CF_TIME, NULL, 0, &ConfigFileEntry.pace_wait_simple },
2730 { "ping_cookie", CF_YESNO, NULL, 0, &ConfigFileEntry.ping_cookie },
2731 { "reject_after_count", CF_INT, NULL, 0, &ConfigFileEntry.reject_after_count },
2732 { "reject_ban_time", CF_TIME, NULL, 0, &ConfigFileEntry.reject_ban_time },
2733 { "reject_duration", CF_TIME, NULL, 0, &ConfigFileEntry.reject_duration },
43946961
JT
2734 { "throttle_count", CF_INT, NULL, 0, &ConfigFileEntry.throttle_count },
2735 { "throttle_duration", CF_TIME, NULL, 0, &ConfigFileEntry.throttle_duration },
212380e3
AC
2736 { "short_motd", CF_YESNO, NULL, 0, &ConfigFileEntry.short_motd },
2737 { "stats_c_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_c_oper_only },
2738 { "stats_e_disabled", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_e_disabled },
2739 { "stats_h_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_h_oper_only },
2740 { "stats_o_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_o_oper_only },
2741 { "stats_P_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_P_oper_only },
2742 { "stats_y_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_y_oper_only },
2743 { "target_change", CF_YESNO, NULL, 0, &ConfigFileEntry.target_change },
2744 { "ts_max_delta", CF_TIME, NULL, 0, &ConfigFileEntry.ts_max_delta },
212380e3
AC
2745 { "ts_warn_delta", CF_TIME, NULL, 0, &ConfigFileEntry.ts_warn_delta },
2746 { "use_whois_actually", CF_YESNO, NULL, 0, &ConfigFileEntry.use_whois_actually },
2747 { "warn_no_nline", CF_YESNO, NULL, 0, &ConfigFileEntry.warn_no_nline },
1702b694 2748 { "use_propagated_bans",CF_YESNO, NULL, 0, &ConfigFileEntry.use_propagated_bans },
e6e54763
SB
2749 { "client_flood_max_lines", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_max_lines },
2750 { "client_flood_burst_rate", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_burst_rate },
2751 { "client_flood_burst_max", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_burst_max },
2752 { "client_flood_message_num", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_message_num },
2753 { "client_flood_message_time", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_message_time },
e88a1f1b 2754 { "max_ratelimit_tokens", CF_INT, NULL, 0, &ConfigFileEntry.max_ratelimit_tokens },
d42e6915 2755 { "away_interval", CF_INT, NULL, 0, &ConfigFileEntry.away_interval },
71c95533 2756 { "hide_opers_in_whois", CF_YESNO, NULL, 0, &ConfigFileEntry.hide_opers_in_whois },
13d8f0ed 2757 { "certfp_method", CF_STRING, conf_set_general_certfp_method, 0, NULL },
212380e3
AC
2758 { "\0", 0, NULL, 0, NULL }
2759};
2760
2761static struct ConfEntry conf_channel_table[] =
2762{
2763 { "default_split_user_count", CF_INT, NULL, 0, &ConfigChannel.default_split_user_count },
2764 { "default_split_server_count", CF_INT, NULL, 0, &ConfigChannel.default_split_server_count },
2765 { "burst_topicwho", CF_YESNO, NULL, 0, &ConfigChannel.burst_topicwho },
212380e3
AC
2766 { "kick_on_split_riding", CF_YESNO, NULL, 0, &ConfigChannel.kick_on_split_riding },
2767 { "knock_delay", CF_TIME, NULL, 0, &ConfigChannel.knock_delay },
2768 { "knock_delay_channel",CF_TIME, NULL, 0, &ConfigChannel.knock_delay_channel },
2769 { "max_bans", CF_INT, NULL, 0, &ConfigChannel.max_bans },
2770 { "max_bans_large", CF_INT, NULL, 0, &ConfigChannel.max_bans_large },
2771 { "max_chans_per_user", CF_INT, NULL, 0, &ConfigChannel.max_chans_per_user },
a4721f5e 2772 { "max_chans_per_user_large", CF_INT, NULL, 0, &ConfigChannel.max_chans_per_user_large },
212380e3
AC
2773 { "no_create_on_split", CF_YESNO, NULL, 0, &ConfigChannel.no_create_on_split },
2774 { "no_join_on_split", CF_YESNO, NULL, 0, &ConfigChannel.no_join_on_split },
6865c0b0 2775 { "only_ascii_channels", CF_YESNO, NULL, 0, &ConfigChannel.only_ascii_channels },
212380e3
AC
2776 { "use_except", CF_YESNO, NULL, 0, &ConfigChannel.use_except },
2777 { "use_invex", CF_YESNO, NULL, 0, &ConfigChannel.use_invex },
2da6f6eb 2778 { "use_forward", CF_YESNO, NULL, 0, &ConfigChannel.use_forward },
212380e3 2779 { "use_knock", CF_YESNO, NULL, 0, &ConfigChannel.use_knock },
c2c25552 2780 { "resv_forcepart", CF_YESNO, NULL, 0, &ConfigChannel.resv_forcepart },
717238d2 2781 { "channel_target_change", CF_YESNO, NULL, 0, &ConfigChannel.channel_target_change },
341f971e 2782 { "disable_local_channels", CF_YESNO, NULL, 0, &ConfigChannel.disable_local_channels },
63eb8567 2783 { "autochanmodes", CF_QSTRING, conf_set_channel_autochanmodes, 0, NULL },
d513218a 2784 { "displayed_usercount", CF_INT, NULL, 0, &ConfigChannel.displayed_usercount },
14482679 2785 { "strip_topic_colors", CF_YESNO, NULL, 0, &ConfigChannel.strip_topic_colors },
212380e3
AC
2786 { "\0", 0, NULL, 0, NULL }
2787};
2788
2789static struct ConfEntry conf_serverhide_table[] =
2790{
2791 { "disable_hidden", CF_YESNO, NULL, 0, &ConfigServerHide.disable_hidden },
2792 { "flatten_links", CF_YESNO, NULL, 0, &ConfigServerHide.flatten_links },
2793 { "hidden", CF_YESNO, NULL, 0, &ConfigServerHide.hidden },
2794 { "links_delay", CF_TIME, conf_set_serverhide_links_delay, 0, NULL },
2795 { "\0", 0, NULL, 0, NULL }
2796};
2797/* *INDENT-ON* */
2798
2799void
2800newconf_init()
2801{
2802 add_top_conf("modules", NULL, NULL, NULL);
2803 add_conf_item("modules", "path", CF_QSTRING, conf_set_modules_path);
2804 add_conf_item("modules", "module", CF_QSTRING, conf_set_modules_module);
2805
2806 add_top_conf("serverinfo", NULL, NULL, conf_serverinfo_table);
2807 add_top_conf("admin", NULL, NULL, conf_admin_table);
2808 add_top_conf("log", NULL, NULL, conf_log_table);
2809 add_top_conf("operator", conf_begin_oper, conf_end_oper, conf_operator_table);
2810 add_top_conf("class", conf_begin_class, conf_end_class, conf_class_table);
f8606875 2811 add_top_conf("privset", NULL, NULL, conf_privset_table);
212380e3
AC
2812
2813 add_top_conf("listen", conf_begin_listen, conf_end_listen, NULL);
02270e96 2814 add_conf_item("listen", "defer_accept", CF_YESNO, conf_set_listen_defer_accept);
c53ca1e0 2815 add_conf_item("listen", "wsock", CF_YESNO, conf_set_listen_wsock);
212380e3 2816 add_conf_item("listen", "port", CF_INT | CF_FLIST, conf_set_listen_port);
c6d72037 2817 add_conf_item("listen", "sslport", CF_INT | CF_FLIST, conf_set_listen_sslport);
212380e3
AC
2818 add_conf_item("listen", "ip", CF_QSTRING, conf_set_listen_address);
2819 add_conf_item("listen", "host", CF_QSTRING, conf_set_listen_address);
2820
2821 add_top_conf("auth", conf_begin_auth, conf_end_auth, conf_auth_table);
2822
2823 add_top_conf("shared", conf_cleanup_shared, conf_cleanup_shared, NULL);
dceac3e4 2824 add_conf_item("shared", "oper", CF_QSTRING | CF_FLIST, conf_set_shared_oper);
212380e3
AC
2825 add_conf_item("shared", "flags", CF_STRING | CF_FLIST, conf_set_shared_flags);
2826
2827 add_top_conf("connect", conf_begin_connect, conf_end_connect, conf_connect_table);
2828
2829 add_top_conf("exempt", NULL, NULL, NULL);
2830 add_conf_item("exempt", "ip", CF_QSTRING, conf_set_exempt_ip);
2831
2832 add_top_conf("cluster", conf_cleanup_cluster, conf_cleanup_cluster, NULL);
2833 add_conf_item("cluster", "name", CF_QSTRING, conf_set_cluster_name);
2834 add_conf_item("cluster", "flags", CF_STRING | CF_FLIST, conf_set_cluster_flags);
2835
2836 add_top_conf("general", NULL, NULL, conf_general_table);
2837 add_top_conf("channel", NULL, NULL, conf_channel_table);
2838 add_top_conf("serverhide", NULL, NULL, conf_serverhide_table);
2839
c46a4ecd 2840 add_top_conf("service", NULL, NULL, NULL);
212380e3
AC
2841 add_conf_item("service", "name", CF_QSTRING, conf_set_service_name);
2842
2843 add_top_conf("alias", conf_begin_alias, conf_end_alias, NULL);
2844 add_conf_item("alias", "name", CF_QSTRING, conf_set_alias_name);
2845 add_conf_item("alias", "target", CF_QSTRING, conf_set_alias_target);
2846
2847 add_top_conf("blacklist", NULL, NULL, NULL);
2848 add_conf_item("blacklist", "host", CF_QSTRING, conf_set_blacklist_host);
0a1e77c2 2849 add_conf_item("blacklist", "type", CF_STRING | CF_FLIST, conf_set_blacklist_type);
3c93d380 2850 add_conf_item("blacklist", "matches", CF_QSTRING | CF_FLIST, conf_set_blacklist_matches);
212380e3 2851 add_conf_item("blacklist", "reject_reason", CF_QSTRING, conf_set_blacklist_reason);
8275e270
EM
2852
2853 add_top_conf("opm", conf_begin_opm, conf_end_opm, NULL);
9bba0f61 2854 add_conf_item("opm", "timeout", CF_INT, conf_set_opm_timeout);
8275e270 2855 add_conf_item("opm", "listen_ipv4", CF_QSTRING, conf_set_opm_listen_address_ipv4);
8275e270 2856 add_conf_item("opm", "listen_ipv6", CF_QSTRING, conf_set_opm_listen_address_ipv6);
51fa2ab8 2857 add_conf_item("opm", "port_v4", CF_INT, conf_set_opm_listen_port_ipv4);
8275e270
EM
2858 add_conf_item("opm", "port_v6", CF_INT, conf_set_opm_listen_port_ipv6);
2859 add_conf_item("opm", "listen_port", CF_INT, conf_set_opm_listen_port);
51fa2ab8
EM
2860 add_conf_item("opm", "socks4_ports", CF_INT | CF_FLIST, conf_set_opm_scan_ports_socks4);
2861 add_conf_item("opm", "socks5_ports", CF_INT | CF_FLIST, conf_set_opm_scan_ports_socks5);
fabe8b94 2862 add_conf_item("opm", "httpconnect_ports", CF_INT | CF_FLIST, conf_set_opm_scan_ports_httpconnect);
eb0814b3 2863 add_conf_item("opm", "httpsconnect_ports", CF_INT | CF_FLIST, conf_set_opm_scan_ports_httpsconnect);
212380e3 2864}