]> jfr.im git - solanum.git/blob - ircd/newconf.c
Rename authd.[ch] on ircd side to authproc.[ch] to prevent shadowing.
[solanum.git] / ircd / newconf.c
1 /* This code is in the public domain.
2 */
3
4 #include "stdinc.h"
5
6 #ifdef HAVE_LIBCRYPTO
7 #include <openssl/pem.h>
8 #include <openssl/rsa.h>
9 #endif
10
11 #include "newconf.h"
12 #include "ircd_defs.h"
13 #include "logger.h"
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"
23 #include "hash.h"
24 #include "cache.h"
25 #include "ircd.h"
26 #include "snomask.h"
27 #include "sslproc.h"
28 #include "wsproc.h"
29 #include "privilege.h"
30 #include "chmode.h"
31
32 #define CF_TYPE(x) ((x) & CF_MTYPE)
33
34 static int yy_defer_accept = 1;
35 static int yy_wsock = 0;
36
37 struct TopConf *conf_cur_block;
38 static char *conf_cur_block_name = NULL;
39
40 static rb_dlink_list conf_items;
41
42 static struct ConfItem *yy_aconf = NULL;
43
44 static struct Class *yy_class = NULL;
45
46 static struct remote_conf *yy_shared = NULL;
47 static struct server_conf *yy_server = NULL;
48
49 static rb_dlink_list yy_aconf_list;
50 static rb_dlink_list yy_oper_list;
51 static rb_dlink_list yy_shared_list;
52 static rb_dlink_list yy_cluster_list;
53 static struct oper_conf *yy_oper = NULL;
54
55 static struct alias_entry *yy_alias = NULL;
56
57 static char *yy_blacklist_host = NULL;
58 static char *yy_blacklist_reason = NULL;
59 static uint8_t yy_blacklist_iptype = 0;
60 static rb_dlink_list yy_blacklist_filters = { NULL, NULL, 0 };
61
62 static char *yy_opm_address_ipv4 = NULL;
63 static char *yy_opm_address_ipv6 = NULL;
64 static uint16_t yy_opm_port_ipv4 = 0;
65 static uint16_t yy_opm_port_ipv6 = 0;
66 static int yy_opm_timeout = 0;
67 static rb_dlink_list yy_opm_scanner_list;
68
69 static char *yy_privset_extends = NULL;
70
71 static const char *
72 conf_strtype(int type)
73 {
74 switch (CF_TYPE(type))
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
91 int
92 add_top_conf(const char *name, int (*sfunc) (struct TopConf *),
93 int (*efunc) (struct TopConf *), struct ConfEntry *items)
94 {
95 struct TopConf *tc;
96
97 tc = rb_malloc(sizeof(struct TopConf));
98
99 tc->tc_name = name;
100 tc->tc_sfunc = sfunc;
101 tc->tc_efunc = efunc;
102 tc->tc_entries = items;
103
104 rb_dlinkAddAlloc(tc, &conf_items);
105 return 0;
106 }
107
108 struct TopConf *
109 find_top_conf(const char *name)
110 {
111 rb_dlink_node *d;
112 struct TopConf *tc;
113
114 RB_DLINK_FOREACH(d, conf_items.head)
115 {
116 tc = d->data;
117 if(strcasecmp(tc->tc_name, name) == 0)
118 return tc;
119 }
120
121 return NULL;
122 }
123
124
125 struct ConfEntry *
126 find_conf_item(const struct TopConf *top, const char *name)
127 {
128 struct ConfEntry *cf;
129 rb_dlink_node *d;
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
144 RB_DLINK_FOREACH(d, top->tc_items.head)
145 {
146 cf = d->data;
147 if(strcasecmp(cf->cf_name, name) == 0)
148 return cf;
149 }
150
151 return NULL;
152 }
153
154 int
155 remove_top_conf(char *name)
156 {
157 struct TopConf *tc;
158 rb_dlink_node *ptr;
159
160 if((tc = find_top_conf(name)) == NULL)
161 return -1;
162
163 if((ptr = rb_dlinkFind(tc, &conf_items)) == NULL)
164 return -1;
165
166 rb_dlinkDestroy(ptr, &conf_items);
167 rb_free(tc);
168
169 return 0;
170 }
171
172 static void
173 conf_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)
208 ServerInfo.name = rb_strdup((char *) data);
209 }
210 }
211
212 static void
213 conf_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
231 static void
232 conf_set_serverinfo_network_name(void *data)
233 {
234 char *p;
235
236 if((p = strchr((char *) data, ' ')))
237 *p = '\0';
238
239 rb_free(ServerInfo.network_name);
240 ServerInfo.network_name = rb_strdup((char *) data);
241 }
242
243 static void
244 conf_set_serverinfo_vhost(void *data)
245 {
246 if(rb_inet_pton(AF_INET, (char *) data, &ServerInfo.ip.sin_addr) <= 0)
247 {
248 conf_report_error("Invalid IPv4 address for server vhost (%s)", (char *) data);
249 return;
250 }
251 ServerInfo.ip.sin_family = AF_INET;
252 ServerInfo.specific_ipv4_vhost = 1;
253 }
254
255 static void
256 conf_set_serverinfo_vhost6(void *data)
257 {
258 #ifdef RB_IPV6
259 if(rb_inet_pton(AF_INET6, (char *) data, &ServerInfo.ip6.sin6_addr) <= 0)
260 {
261 conf_report_error("Invalid IPv6 address for server vhost (%s)", (char *) data);
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
272 static void
273 conf_set_serverinfo_nicklen(void *data)
274 {
275 ConfigFileEntry.nicklen = (*(unsigned int *) data) + 1;
276
277 if (ConfigFileEntry.nicklen > NICKLEN)
278 {
279 conf_report_error("Warning -- ignoring serverinfo::nicklen -- provided nicklen (%u) is greater than allowed nicklen (%u)",
280 ConfigFileEntry.nicklen - 1, NICKLEN - 1);
281 ConfigFileEntry.nicklen = NICKLEN;
282 }
283 else if (ConfigFileEntry.nicklen < 9 + 1)
284 {
285 conf_report_error("Warning -- serverinfo::nicklen is too low (%u) -- forcing 9",
286 ConfigFileEntry.nicklen - 1);
287 ConfigFileEntry.nicklen = 9 + 1;
288 }
289 }
290
291 static void
292 conf_set_modules_module(void *data)
293 {
294 char *m_bn;
295
296 m_bn = rb_basename((char *) data);
297
298 if(findmodule_byname(m_bn) == -1)
299 load_one_module((char *) data, MAPI_ORIGIN_EXTENSION, 0);
300
301 rb_free(m_bn);
302 }
303
304 static void
305 conf_set_modules_path(void *data)
306 {
307 mod_add_path((char *) data);
308 }
309
310 struct mode_table
311 {
312 const char *name;
313 int mode;
314 };
315
316 /* *INDENT-OFF* */
317 static 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
330 static struct mode_table oper_table[] = {
331 {"encrypted", OPER_ENCRYPTED },
332 {"need_ssl", OPER_NEEDSSL },
333 {NULL, 0}
334 };
335
336 static struct mode_table auth_table[] = {
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 },
354 {NULL, 0}
355 };
356
357 static struct mode_table connect_table[] = {
358 { "autoconn", SERVER_AUTOCONN },
359 { "compressed", SERVER_COMPRESSED },
360 { "encrypted", SERVER_ENCRYPTED },
361 { "topicburst", SERVER_TB },
362 { "ssl", SERVER_SSL },
363 { NULL, 0 },
364 };
365
366 static 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
381 static struct mode_table shared_table[] =
382 {
383 { "kline", SHARED_PKLINE|SHARED_TKLINE },
384 { "xline", SHARED_PXLINE|SHARED_TXLINE },
385 { "resv", SHARED_PRESV|SHARED_TRESV },
386 { "dline", SHARED_PDLINE|SHARED_TDLINE },
387 { "tdline", SHARED_TDLINE },
388 { "pdline", SHARED_PDLINE },
389 { "undline", SHARED_UNDLINE },
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 },
398 { "grant", SHARED_GRANT },
399 { "die", SHARED_DIE },
400 { "module", SHARED_MODULE },
401 { "all", SHARED_ALL },
402 { "none", 0 },
403 {NULL, 0}
404 };
405 /* *INDENT-ON* */
406
407 static int
408 find_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
421 static void
422 set_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
430 if(CF_TYPE(args->type) != CF_STRING)
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
464 static void
465 conf_set_privset_extends(void *data)
466 {
467 yy_privset_extends = rb_strdup((char *) data);
468 }
469
470 static void
471 conf_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);
485 strcpy(privs, privs_old);
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 {
501 conf_report_error("Warning -- unknown parent privilege set %s for %s; assuming defaults", yy_privset_extends, conf_cur_block_name);
502
503 set = privilegeset_get("default");
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
518 static int
519 conf_begin_oper(struct TopConf *tc)
520 {
521 rb_dlink_node *ptr;
522 rb_dlink_node *next_ptr;
523
524 if(yy_oper != NULL)
525 {
526 free_oper_conf(yy_oper);
527 yy_oper = NULL;
528 }
529
530 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_oper_list.head)
531 {
532 free_oper_conf(ptr->data);
533 rb_dlinkDestroy(ptr, &yy_oper_list);
534 }
535
536 yy_oper = make_oper_conf();
537 yy_oper->flags |= OPER_ENCRYPTED;
538
539 return 0;
540 }
541
542 static int
543 conf_end_oper(struct TopConf *tc)
544 {
545 struct oper_conf *yy_tmpoper;
546 rb_dlink_node *ptr;
547 rb_dlink_node *next_ptr;
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
554 yy_oper->name = rb_strdup(conf_cur_block_name);
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
574
575 if (!yy_oper->privset)
576 yy_oper->privset = privilegeset_get("default");
577
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 */
582 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_oper_list.head)
583 {
584 yy_tmpoper = ptr->data;
585
586 yy_tmpoper->name = rb_strdup(yy_oper->name);
587
588 /* could be an rsa key instead.. */
589 if(!EmptyString(yy_oper->passwd))
590 yy_tmpoper->passwd = rb_strdup(yy_oper->passwd);
591
592 yy_tmpoper->flags = yy_oper->flags;
593 yy_tmpoper->umodes = yy_oper->umodes;
594 yy_tmpoper->snomask = yy_oper->snomask;
595 yy_tmpoper->privset = yy_oper->privset;
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 }
609
610 yy_tmpoper->rsa_pubkey =
611 (RSA *) PEM_read_bio_RSA_PUBKEY(file, NULL, 0, NULL);
612
613 (void)BIO_set_close(file, BIO_CLOSE);
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 }
624
625 if(!EmptyString(yy_oper->certfp))
626 yy_tmpoper->certfp = rb_strdup(yy_oper->certfp);
627 #endif
628
629 /* all is ok, put it on oper_conf_list */
630 rb_dlinkMoveNode(ptr, &yy_oper_list, &oper_conf_list);
631 }
632
633 free_oper_conf(yy_oper);
634 yy_oper = NULL;
635
636 return 0;
637 }
638
639 static void
640 conf_set_oper_flags(void *data)
641 {
642 conf_parm_t *args = data;
643
644 set_modes_from_table(&yy_oper->flags, "flag", oper_table, args);
645 }
646
647 static void
648 conf_set_oper_fingerprint(void *data)
649 {
650 if (yy_oper->certfp)
651 rb_free(yy_oper->certfp);
652 yy_oper->certfp = rb_strdup((char *) data);
653 }
654
655 static void
656 conf_set_oper_privset(void *data)
657 {
658 yy_oper->privset = privilegeset_get((char *) data);
659 }
660
661 static void
662 conf_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
674 yy_tmpoper->username = rb_strdup(host);
675 yy_tmpoper->host = rb_strdup(p);
676 }
677 else
678 {
679
680 yy_tmpoper->username = rb_strdup("*");
681 yy_tmpoper->host = rb_strdup(host);
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
691 rb_dlinkAddAlloc(yy_tmpoper, &yy_oper_list);
692 }
693
694 static void
695 conf_set_oper_password(void *data)
696 {
697 if(yy_oper->passwd)
698 {
699 memset(yy_oper->passwd, 0, strlen(yy_oper->passwd));
700 rb_free(yy_oper->passwd);
701 }
702
703 yy_oper->passwd = rb_strdup((char *) data);
704 }
705
706 static void
707 conf_set_oper_rsa_public_key_file(void *data)
708 {
709 #ifdef HAVE_LIBCRYPTO
710 rb_free(yy_oper->rsa_pubkey_file);
711 yy_oper->rsa_pubkey_file = rb_strdup((char *) data);
712 #else
713 conf_report_error("Warning -- ignoring rsa_public_key_file (OpenSSL support not available");
714 #endif
715 }
716
717 static void
718 conf_set_oper_umodes(void *data)
719 {
720 set_modes_from_table(&yy_oper->umodes, "umode", umode_table, data);
721 }
722
723 static void
724 conf_set_oper_snomask(void *data)
725 {
726 yy_oper->snomask = parse_snobuf_to_mask(0, (const char *) data);
727 }
728
729 static int
730 conf_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
739 static int
740 conf_end_class(struct TopConf *tc)
741 {
742 if(conf_cur_block_name != NULL)
743 yy_class->class_name = rb_strdup(conf_cur_block_name);
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
756 static void
757 conf_set_class_ping_time(void *data)
758 {
759 yy_class->ping_freq = *(unsigned int *) data;
760 }
761
762 static void
763 conf_set_class_cidr_ipv4_bitlen(void *data)
764 {
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
775 #ifdef RB_IPV6
776 static void
777 conf_set_class_cidr_ipv6_bitlen(void *data)
778 {
779 unsigned int maxsize = 128;
780 if(*(unsigned int *) data > maxsize)
781 conf_report_error
782 ("class::cidr_ipv6_bitlen argument exceeds maxsize (%d > %d) - ignoring.",
783 *(unsigned int *) data, maxsize);
784 else
785 yy_class->cidr_ipv6_bitlen = *(unsigned int *) data;
786
787 }
788 #endif
789
790 static void
791 conf_set_class_number_per_cidr(void *data)
792 {
793 yy_class->cidr_amount = *(unsigned int *) data;
794 }
795
796 static void
797 conf_set_class_number_per_ip(void *data)
798 {
799 yy_class->max_local = *(unsigned int *) data;
800 }
801
802
803 static void
804 conf_set_class_number_per_ip_global(void *data)
805 {
806 yy_class->max_global = *(unsigned int *) data;
807 }
808
809 static void
810 conf_set_class_number_per_ident(void *data)
811 {
812 yy_class->max_ident = *(unsigned int *) data;
813 }
814
815 static void
816 conf_set_class_connectfreq(void *data)
817 {
818 yy_class->con_freq = *(unsigned int *) data;
819 }
820
821 static void
822 conf_set_class_max_number(void *data)
823 {
824 yy_class->max_total = *(unsigned int *) data;
825 }
826
827 static void
828 conf_set_class_sendq(void *data)
829 {
830 yy_class->max_sendq = *(unsigned int *) data;
831 }
832
833 static char *listener_address;
834
835 static int
836 conf_begin_listen(struct TopConf *tc)
837 {
838 rb_free(listener_address);
839 listener_address = NULL;
840 return 0;
841 }
842
843 static int
844 conf_end_listen(struct TopConf *tc)
845 {
846 rb_free(listener_address);
847 listener_address = NULL;
848 return 0;
849 }
850
851 static void
852 conf_set_listen_defer_accept(void *data)
853 {
854 yy_defer_accept = *(unsigned int *) data;
855 }
856
857 static void
858 conf_set_listen_wsock(void *data)
859 {
860 yy_wsock = *(unsigned int *) data;
861 }
862
863 static void
864 conf_set_listen_port_both(void *data, int ssl)
865 {
866 conf_parm_t *args = data;
867 for (; args; args = args->next)
868 {
869 if(CF_TYPE(args->type) != CF_INT)
870 {
871 conf_report_error
872 ("listener::port argument is not an integer " "-- ignoring.");
873 continue;
874 }
875 if(listener_address == NULL)
876 {
877 if (!ssl)
878 {
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);
881 }
882 add_listener(args->v.number, listener_address, AF_INET, ssl, ssl || yy_defer_accept, yy_wsock);
883 #ifdef RB_IPV6
884 add_listener(args->v.number, listener_address, AF_INET6, ssl, ssl || yy_defer_accept, yy_wsock);
885 #endif
886 }
887 else
888 {
889 int family;
890 #ifdef RB_IPV6
891 if(strchr(listener_address, ':') != NULL)
892 family = AF_INET6;
893 else
894 #endif
895 family = AF_INET;
896
897 if (!ssl)
898 {
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);
901 }
902
903 add_listener(args->v.number, listener_address, family, ssl, ssl || yy_defer_accept, yy_wsock);
904 }
905 }
906 }
907
908 static void
909 conf_set_listen_port(void *data)
910 {
911 conf_set_listen_port_both(data, 0);
912 }
913
914 static void
915 conf_set_listen_sslport(void *data)
916 {
917 conf_set_listen_port_both(data, 1);
918 }
919
920 static void
921 conf_set_listen_address(void *data)
922 {
923 rb_free(listener_address);
924 listener_address = rb_strdup(data);
925 }
926
927 static int
928 conf_begin_auth(struct TopConf *tc)
929 {
930 rb_dlink_node *ptr;
931 rb_dlink_node *next_ptr;
932
933 if(yy_aconf)
934 free_conf(yy_aconf);
935
936 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_aconf_list.head)
937 {
938 free_conf(ptr->data);
939 rb_dlinkDestroy(ptr, &yy_aconf_list);
940 }
941
942 yy_aconf = make_conf();
943 yy_aconf->status = CONF_CLIENT;
944
945 return 0;
946 }
947
948 static int
949 conf_end_auth(struct TopConf *tc)
950 {
951 struct ConfItem *yy_tmp, *found_conf;
952 rb_dlink_node *ptr;
953 rb_dlink_node *next_ptr;
954
955 if(EmptyString(yy_aconf->info.name))
956 yy_aconf->info.name = rb_strdup("NOMATCH");
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);
969 if ((found_conf = find_exact_conf_by_address("*", CONF_CLIENT, "*")) && found_conf->spasswd == NULL)
970 conf_report_error("Ignoring redundant auth block (after *@*)");
971 else if ((found_conf = find_exact_conf_by_address(yy_aconf->host, CONF_CLIENT, yy_aconf->user)) &&
972 (!found_conf->spasswd || (yy_aconf->spasswd &&
973 0 == irccmp(found_conf->spasswd, yy_aconf->spasswd))))
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);
978
979 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_aconf_list.head)
980 {
981 yy_tmp = ptr->data;
982
983 if(yy_aconf->passwd)
984 yy_tmp->passwd = rb_strdup(yy_aconf->passwd);
985
986 if(yy_aconf->spasswd)
987 yy_tmp->spasswd = rb_strdup(yy_aconf->spasswd);
988
989 /* this will always exist.. */
990 yy_tmp->info.name = rb_strdup(yy_aconf->info.name);
991
992 if(yy_aconf->className)
993 yy_tmp->className = rb_strdup(yy_aconf->className);
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
1003 if ((found_conf = find_exact_conf_by_address("*", CONF_CLIENT, "*")) && found_conf->spasswd == NULL)
1004 conf_report_error("Ignoring redundant auth block (after *@*)");
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))))
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);
1012 rb_dlinkDestroy(ptr, &yy_aconf_list);
1013 }
1014
1015 yy_aconf = NULL;
1016 return 0;
1017 }
1018
1019 static void
1020 conf_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
1038 yy_tmp->user = rb_strdup(data);
1039 yy_tmp->host = rb_strdup(p);
1040 }
1041 else
1042 {
1043 yy_tmp->user = rb_strdup("*");
1044 yy_tmp->host = rb_strdup(data);
1045 }
1046
1047 if(yy_aconf != yy_tmp)
1048 rb_dlinkAddAlloc(yy_tmp, &yy_aconf_list);
1049 }
1050
1051 static void
1052 conf_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
1060 static void
1061 conf_set_auth_passwd(void *data)
1062 {
1063 if(yy_aconf->passwd)
1064 memset(yy_aconf->passwd, 0, strlen(yy_aconf->passwd));
1065 rb_free(yy_aconf->passwd);
1066 yy_aconf->passwd = rb_strdup(data);
1067 }
1068
1069 static void
1070 conf_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
1125 rb_free(yy_aconf->info.name);
1126 yy_aconf->info.name = rb_strdup(data);
1127 yy_aconf->flags |= CONF_FLAGS_SPOOF_IP;
1128 }
1129
1130 static void
1131 conf_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
1138 static void
1139 conf_set_auth_redir_serv(void *data)
1140 {
1141 yy_aconf->flags |= CONF_FLAGS_REDIR;
1142 rb_free(yy_aconf->info.name);
1143 yy_aconf->info.name = rb_strdup(data);
1144 }
1145
1146 static void
1147 conf_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
1155 static void
1156 conf_set_auth_class(void *data)
1157 {
1158 rb_free(yy_aconf->className);
1159 yy_aconf->className = rb_strdup(data);
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 */
1166 static int
1167 conf_cleanup_shared(struct TopConf *tc)
1168 {
1169 rb_dlink_node *ptr, *next_ptr;
1170
1171 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_shared_list.head)
1172 {
1173 free_remote_conf(ptr->data);
1174 rb_dlinkDestroy(ptr, &yy_shared_list);
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
1186 static void
1187 conf_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 {
1200 if(CF_TYPE(args->type) != CF_QSTRING)
1201 {
1202 conf_report_error("Ignoring shared::oper -- server is not a qstring");
1203 return;
1204 }
1205
1206 yy_shared->server = rb_strdup(args->v.string);
1207 args = args->next;
1208 }
1209 else
1210 yy_shared->server = rb_strdup("*");
1211
1212 if(CF_TYPE(args->type) != CF_QSTRING)
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))
1228 yy_shared->host = rb_strdup("*");
1229 else
1230 yy_shared->host = rb_strdup(p);
1231
1232 if(EmptyString(username))
1233 yy_shared->username = rb_strdup("*");
1234 else
1235 yy_shared->username = rb_strdup(username);
1236
1237 rb_dlinkAddAlloc(yy_shared, &yy_shared_list);
1238 yy_shared = NULL;
1239 }
1240
1241 static void
1242 conf_set_shared_flags(void *data)
1243 {
1244 conf_parm_t *args = data;
1245 int flags = 0;
1246 rb_dlink_node *ptr, *next_ptr;
1247
1248 if(yy_shared != NULL)
1249 free_remote_conf(yy_shared);
1250
1251 set_modes_from_table(&flags, "flag", shared_table, args);
1252
1253 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_shared_list.head)
1254 {
1255 yy_shared = ptr->data;
1256
1257 yy_shared->flags = flags;
1258 rb_dlinkDestroy(ptr, &yy_shared_list);
1259 rb_dlinkAddTail(yy_shared, &yy_shared->node, &shared_conf_list);
1260 }
1261
1262 yy_shared = NULL;
1263 }
1264
1265 static int
1266 conf_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;
1273 yy_server->flags |= SERVER_TB;
1274
1275 if(conf_cur_block_name != NULL)
1276 yy_server->name = rb_strdup(conf_cur_block_name);
1277
1278 return 0;
1279 }
1280
1281 static int
1282 conf_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
1297 if((EmptyString(yy_server->passwd) || EmptyString(yy_server->spasswd)) && EmptyString(yy_server->certfp))
1298 {
1299 conf_report_error("Ignoring connect block for %s -- no fingerprint or password credentials provided.",
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);
1320 rb_dlinkAdd(yy_server, &yy_server->node, &server_conf_list);
1321
1322 yy_server = NULL;
1323 return 0;
1324 }
1325
1326 static void
1327 conf_set_connect_host(void *data)
1328 {
1329 rb_free(yy_server->host);
1330 yy_server->host = rb_strdup(data);
1331 if (strchr(yy_server->host, ':'))
1332 yy_server->aftype = AF_INET6;
1333 }
1334
1335 static void
1336 conf_set_connect_vhost(void *data)
1337 {
1338 if(rb_inet_pton_sock(data, (struct sockaddr *)&yy_server->my_ipnum) <= 0)
1339 {
1340 conf_report_error("Invalid IP address for server connect vhost (%s)",
1341 (char *) data);
1342 return;
1343 }
1344
1345 yy_server->flags |= SERVER_VHOSTED;
1346 }
1347
1348 static void
1349 conf_set_connect_send_password(void *data)
1350 {
1351 if(yy_server->spasswd)
1352 {
1353 memset(yy_server->spasswd, 0, strlen(yy_server->spasswd));
1354 rb_free(yy_server->spasswd);
1355 }
1356
1357 yy_server->spasswd = rb_strdup(data);
1358 }
1359
1360 static void
1361 conf_set_connect_accept_password(void *data)
1362 {
1363 if(yy_server->passwd)
1364 {
1365 memset(yy_server->passwd, 0, strlen(yy_server->passwd));
1366 rb_free(yy_server->passwd);
1367 }
1368 yy_server->passwd = rb_strdup(data);
1369 }
1370
1371 static void
1372 conf_set_connect_fingerprint(void *data)
1373 {
1374 if (yy_server->certfp)
1375 rb_free(yy_server->certfp);
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
1382 static void
1383 conf_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
1393 static void
1394 conf_set_connect_aftype(void *data)
1395 {
1396 char *aft = data;
1397
1398 if(strcasecmp(aft, "ipv4") == 0)
1399 yy_server->aftype = AF_INET;
1400 #ifdef RB_IPV6
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
1408 static void
1409 conf_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
1419 static void
1420 conf_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
1430 yy_hub->host = rb_strdup(data);
1431 yy_hub->server = rb_strdup(yy_server->name);
1432 rb_dlinkAdd(yy_hub, &yy_hub->node, &hubleaf_conf_list);
1433 }
1434
1435 static void
1436 conf_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
1446 yy_leaf->host = rb_strdup(data);
1447 yy_leaf->server = rb_strdup(yy_server->name);
1448 rb_dlinkAdd(yy_leaf, &yy_leaf->node, &hubleaf_conf_list);
1449 }
1450
1451 static void
1452 conf_set_connect_class(void *data)
1453 {
1454 rb_free(yy_server->class_name);
1455 yy_server->class_name = rb_strdup(data);
1456 }
1457
1458 static void
1459 conf_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();
1470 yy_tmp->passwd = rb_strdup("*");
1471 yy_tmp->host = rb_strdup(data);
1472 yy_tmp->status = CONF_EXEMPTDLINE;
1473 add_conf_by_address(yy_tmp->host, CONF_EXEMPTDLINE, NULL, NULL, yy_tmp);
1474 }
1475
1476 static int
1477 conf_cleanup_cluster(struct TopConf *tc)
1478 {
1479 rb_dlink_node *ptr, *next_ptr;
1480
1481 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_cluster_list.head)
1482 {
1483 free_remote_conf(ptr->data);
1484 rb_dlinkDestroy(ptr, &yy_cluster_list);
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
1496 static void
1497 conf_set_cluster_name(void *data)
1498 {
1499 if(yy_shared != NULL)
1500 free_remote_conf(yy_shared);
1501
1502 yy_shared = make_remote_conf();
1503 yy_shared->server = rb_strdup(data);
1504 rb_dlinkAddAlloc(yy_shared, &yy_cluster_list);
1505
1506 yy_shared = NULL;
1507 }
1508
1509 static void
1510 conf_set_cluster_flags(void *data)
1511 {
1512 conf_parm_t *args = data;
1513 int flags = 0;
1514 rb_dlink_node *ptr, *next_ptr;
1515
1516 if(yy_shared != NULL)
1517 free_remote_conf(yy_shared);
1518
1519 set_modes_from_table(&flags, "flag", cluster_table, args);
1520
1521 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, yy_cluster_list.head)
1522 {
1523 yy_shared = ptr->data;
1524 yy_shared->flags = flags;
1525 rb_dlinkAddTail(yy_shared, &yy_shared->node, &cluster_conf_list);
1526 rb_dlinkDestroy(ptr, &yy_cluster_list);
1527 }
1528
1529 yy_shared = NULL;
1530 }
1531
1532 static void
1533 conf_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
1547 static void
1548 conf_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
1562 static void
1563 conf_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 */
1568 kline_queued = false;
1569 }
1570
1571 static void
1572 conf_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
1586 static void
1587 conf_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
1601 static void
1602 conf_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
1619 static void
1620 conf_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':
1640 case 'Z':
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 }
1656 }
1657 }
1658
1659 static void
1660 conf_set_general_oper_umodes(void *data)
1661 {
1662 set_modes_from_table(&ConfigFileEntry.oper_umodes, "umode", umode_table, data);
1663 }
1664
1665 static void
1666 conf_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
1683 static void
1684 conf_set_general_oper_only_umodes(void *data)
1685 {
1686 set_modes_from_table(&ConfigFileEntry.oper_only_umodes, "umode", umode_table, data);
1687 }
1688
1689 static void
1690 conf_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
1720 static void
1721 conf_set_serverhide_links_delay(void *data)
1722 {
1723 int val = *(unsigned int *) data;
1724
1725 ConfigServerHide.links_delay = val;
1726 }
1727
1728 static void
1729 conf_set_service_name(void *data)
1730 {
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
1753 tmp = rb_strdup(data);
1754 rb_dlinkAddAlloc(tmp, &service_list);
1755 }
1756
1757 static int
1758 conf_begin_alias(struct TopConf *tc)
1759 {
1760 yy_alias = rb_malloc(sizeof(struct alias_entry));
1761
1762 if (conf_cur_block_name != NULL)
1763 yy_alias->name = rb_strdup(conf_cur_block_name);
1764
1765 yy_alias->flags = 0;
1766 yy_alias->hits = 0;
1767
1768 return 0;
1769 }
1770
1771 static int
1772 conf_end_alias(struct TopConf *tc)
1773 {
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
1781 rb_free(yy_alias);
1782
1783 return -1;
1784 }
1785
1786 if (yy_alias->target == NULL)
1787 {
1788 conf_report_error("Ignoring alias -- must have a target.");
1789
1790 rb_free(yy_alias);
1791
1792 return -1;
1793 }
1794
1795 rb_dictionary_add(alias_dict, yy_alias->name, yy_alias);
1796
1797 return 0;
1798 }
1799
1800 static void
1801 conf_set_alias_name(void *data)
1802 {
1803 if (data == NULL || yy_alias == NULL) /* this shouldn't ever happen */
1804 return;
1805
1806 yy_alias->name = rb_strdup(data);
1807 }
1808
1809 static void
1810 conf_set_alias_target(void *data)
1811 {
1812 if (data == NULL || yy_alias == NULL) /* this shouldn't ever happen */
1813 return;
1814
1815 yy_alias->target = rb_strdup(data);
1816 }
1817
1818 static void
1819 conf_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 {
1846 conf_report_error("channel::autochanmodes -- Invalid channel mode %c", *pm);
1847 continue;
1848 }
1849 break;
1850 }
1851 }
1852 }
1853
1854 /* XXX for below */
1855 static void conf_set_blacklist_reason(void *data);
1856
1857 #define IPTYPE_IPV4 1
1858 #define IPTYPE_IPV6 2
1859
1860 static void
1861 conf_set_blacklist_host(void *data)
1862 {
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
1873 yy_blacklist_iptype |= IPTYPE_IPV4;
1874 yy_blacklist_host = rb_strdup(data);
1875 }
1876
1877 static void
1878 conf_set_blacklist_type(void *data)
1879 {
1880 conf_parm_t *args = data;
1881
1882 /* Don't assume we have either if we got here */
1883 yy_blacklist_iptype = 0;
1884
1885 for (; args; args = args->next)
1886 {
1887 if (!strcasecmp(args->v.string, "ipv4"))
1888 yy_blacklist_iptype |= IPTYPE_IPV4;
1889 else if (!strcasecmp(args->v.string, "ipv6"))
1890 yy_blacklist_iptype |= IPTYPE_IPV6;
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 */
1897 if (!yy_blacklist_iptype)
1898 {
1899 conf_report_warning("blacklist::type has neither IPv4 nor IPv6 (defaulting to IPv4)");
1900 yy_blacklist_iptype = IPTYPE_IPV4;
1901 }
1902 }
1903
1904 static void
1905 conf_set_blacklist_matches(void *data)
1906 {
1907 conf_parm_t *args = data;
1908 enum filter_t { FILTER_NONE, FILTER_ALL, FILTER_LAST };
1909
1910 for (; args; args = args->next)
1911 {
1912 char *str = args->v.string;
1913 char *p;
1914 enum filter_t type = FILTER_LAST;
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 == '.')
1939 type = FILTER_ALL;
1940 else if (!isdigit((unsigned char)*p))
1941 {
1942 conf_report_error("blacklist::matches has invalid IP match entry %s",
1943 str);
1944 type = FILTER_NONE;
1945 break;
1946 }
1947 }
1948
1949 if (type == FILTER_ALL)
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 }
1960 else if (type == FILTER_LAST)
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
1975 rb_dlinkAddAlloc(rb_strdup(str), &yy_blacklist_filters);
1976 }
1977 }
1978
1979 static void
1980 conf_set_blacklist_reason(void *data)
1981 {
1982 rb_dlink_node *ptr, *nptr;
1983
1984 if (yy_blacklist_host && data)
1985 {
1986 yy_blacklist_reason = rb_strdup(data);
1987 if (yy_blacklist_iptype & IPTYPE_IPV6)
1988 {
1989 /* Make sure things fit (magic number 64 = alnum count + dots)
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 */
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 */
2000 if ((yy_blacklist_iptype & IPTYPE_IPV4) && !(yy_blacklist_iptype & IPTYPE_IPV6))
2001 {
2002 /* Make sure things fit for worst case (magic number 16 = number of nums + dots)
2003 * Example: 127.127.127.127.in-addr.arpa
2004 */
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
2013 add_blacklist(yy_blacklist_host, yy_blacklist_reason, yy_blacklist_iptype, &yy_blacklist_filters);
2014 }
2015
2016 cleanup_bl:
2017 RB_DLINK_FOREACH_SAFE(ptr, nptr, yy_blacklist_filters.head)
2018 {
2019 rb_free(ptr->data);
2020 rb_dlinkDestroy(ptr, &yy_blacklist_filters);
2021 }
2022
2023 yy_blacklist_filters = (rb_dlink_list){ NULL, NULL, 0 };
2024
2025 rb_free(yy_blacklist_host);
2026 rb_free(yy_blacklist_reason);
2027 yy_blacklist_host = NULL;
2028 yy_blacklist_reason = NULL;
2029 yy_blacklist_iptype = 0;
2030 }
2031
2032
2033 struct opm_scanner
2034 {
2035 const char *type;
2036 uint16_t port;
2037
2038 rb_dlink_node node;
2039 };
2040
2041 static int
2042 conf_begin_opm(struct TopConf *tc)
2043 {
2044 yy_opm_address_ipv4 = yy_opm_address_ipv6 = NULL;
2045 yy_opm_port_ipv4 = yy_opm_port_ipv6 = yy_opm_timeout = 0;
2046 return 0;
2047 }
2048
2049 static int
2050 conf_end_opm(struct TopConf *tc)
2051 {
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
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)))
2070 conf_report_error("No opm::listen_ipv4 nor serverinfo::vhost directive; cannot listen on IPv4");
2071 else
2072 create_opm_listener(ip, yy_opm_port_ipv4);
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)))
2084 conf_report_error("No opm::listen_ipv6 nor serverinfo::vhost directive; cannot listen on IPv6");
2085 else
2086 create_opm_listener(ip, yy_opm_port_ipv6);
2087 }
2088 }
2089
2090 /* If there's no listeners... */
2091 fail = (yy_opm_port_ipv4 == 0 || yy_opm_port_ipv6 == 0);
2092
2093 if(!fail && yy_opm_timeout > 0)
2094 /* Send timeout */
2095 set_authd_timeout("opm_timeout", yy_opm_timeout);
2096
2097 end:
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
2109 rb_free(yy_opm_address_ipv4);
2110 rb_free(yy_opm_address_ipv6);
2111 return 0;
2112 }
2113
2114 static void
2115 conf_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 }
2127
2128 static void
2129 conf_set_opm_listen_address_both(void *data, bool ipv6)
2130 {
2131 struct rb_sockaddr_storage addr;
2132 const char *confstr = (ipv6 ? "opm::listen_ipv6" : "opm::listen_ipv4");
2133 char *ip = data;
2134
2135 if(!rb_inet_pton_sock(ip, (struct sockaddr *)&addr))
2136 {
2137 conf_report_error("%s is an invalid address: %s", confstr, ip);
2138 return;
2139 }
2140
2141 if(ipv6)
2142 {
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);
2159 return;
2160 #endif
2161 }
2162 else
2163 {
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);
2177 }
2178 }
2179
2180 static void
2181 conf_set_opm_listen_address_ipv4(void *data)
2182 {
2183 conf_set_opm_listen_address_both(data, false);
2184 }
2185
2186 static void
2187 conf_set_opm_listen_address_ipv6(void *data)
2188 {
2189 conf_set_opm_listen_address_both(data, true);
2190 }
2191
2192 static void
2193 conf_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");
2197
2198 #ifndef RB_IPV6
2199 if(ipv6)
2200 {
2201 conf_report_error("%s requires IPv6 support in your ircd", confstr);
2202 return;
2203 }
2204 #endif
2205
2206 if(port > 65535 || port <= 0)
2207 {
2208 conf_report_error("%s is out of range: %d", confstr, port);
2209 return;
2210 }
2211
2212 if(ipv6)
2213 {
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;
2222 }
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 }
2231
2232 yy_opm_port_ipv6 = port;
2233 }
2234 }
2235
2236 static void
2237 conf_set_opm_listen_port_ipv4(void *data)
2238 {
2239 conf_set_opm_listen_port_both(data, false);
2240 }
2241
2242 static void
2243 conf_set_opm_listen_port_ipv6(void *data)
2244 {
2245 conf_set_opm_listen_port_both(data, true);
2246 }
2247
2248 static void
2249 conf_set_opm_listen_port(void *data)
2250 {
2251 conf_set_opm_listen_port_both(data, true);
2252 conf_set_opm_listen_port_both(data, false);
2253 }
2254
2255 static void
2256 conf_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)
2260 {
2261 rb_dlink_node *ptr;
2262 bool dup = false;
2263
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 }
2275
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 }
2296 }
2297 }
2298
2299 static void
2300 conf_set_opm_scan_ports_socks4(void *data)
2301 {
2302 conf_set_opm_scan_ports_all(data, "opm::socks4_ports", "socks4");
2303 }
2304
2305 static void
2306 conf_set_opm_scan_ports_socks5(void *data)
2307 {
2308 conf_set_opm_scan_ports_all(data, "opm::socks5_ports", "socks5");
2309 }
2310
2311 static void
2312 conf_set_opm_scan_ports_httpconnect(void *data)
2313 {
2314 conf_set_opm_scan_ports_all(data, "opm::httpconnect_ports", "httpconnect");
2315 }
2316
2317 /* public functions */
2318
2319
2320 void
2321 conf_report_error(const char *fmt, ...)
2322 {
2323 va_list ap;
2324 char msg[BUFSIZE + 1] = { 0 };
2325
2326 va_start(ap, fmt);
2327 vsnprintf(msg, BUFSIZE, fmt, ap);
2328 va_end(ap);
2329
2330 if (testing_conf)
2331 {
2332 fprintf(stderr, "\"%s\", line %d: %s\n", current_file, lineno + 1, msg);
2333 return;
2334 }
2335
2336 ierror("\"%s\", line %d: %s", current_file, lineno + 1, msg);
2337 sendto_realops_snomask(SNO_GENERAL, L_ALL, "error: \"%s\", line %d: %s", current_file, lineno + 1, msg);
2338 }
2339
2340 void
2341 conf_report_warning(const char *fmt, ...)
2342 {
2343 va_list ap;
2344 char msg[BUFSIZE + 1] = { 0 };
2345
2346 va_start(ap, fmt);
2347 vsnprintf(msg, BUFSIZE, fmt, ap);
2348 va_end(ap);
2349
2350 if (testing_conf)
2351 {
2352 fprintf(stderr, "\"%s\", line %d: %s\n", current_file, lineno + 1, msg);
2353 return;
2354 }
2355
2356 iwarn("\"%s\", line %d: %s", current_file, lineno + 1, msg);
2357 sendto_realops_snomask(SNO_GENERAL, L_ALL, "warning: \"%s\", line %d: %s", current_file, lineno + 1, msg);
2358 }
2359
2360 int
2361 conf_start_block(char *block, char *name)
2362 {
2363 if((conf_cur_block = find_top_conf(block)) == NULL)
2364 {
2365 conf_report_error("Configuration block '%s' is not defined.", block);
2366 return -1;
2367 }
2368
2369 if(name)
2370 conf_cur_block_name = rb_strdup(name);
2371 else
2372 conf_cur_block_name = NULL;
2373
2374 if(conf_cur_block->tc_sfunc)
2375 if(conf_cur_block->tc_sfunc(conf_cur_block) < 0)
2376 return -1;
2377
2378 return 0;
2379 }
2380
2381 int
2382 conf_end_block(struct TopConf *tc)
2383 {
2384 int ret = 0;
2385 if(tc->tc_efunc)
2386 ret = tc->tc_efunc(tc);
2387
2388 rb_free(conf_cur_block_name);
2389 conf_cur_block_name = NULL;
2390 return ret;
2391 }
2392
2393 static void
2394 conf_set_generic_int(void *data, void *location)
2395 {
2396 *((int *) location) = *((unsigned int *) data);
2397 }
2398
2399 static void
2400 conf_set_generic_string(void *data, int len, void *location)
2401 {
2402 char **loc = location;
2403 char *input = data;
2404
2405 if(len && strlen(input) > (unsigned int)len)
2406 input[len] = '\0';
2407
2408 rb_free(*loc);
2409 *loc = rb_strdup(input);
2410 }
2411
2412 int
2413 conf_call_set(struct TopConf *tc, char *item, conf_parm_t * value)
2414 {
2415 struct ConfEntry *cf;
2416 conf_parm_t *cp;
2417
2418 if(!tc)
2419 return -1;
2420
2421 if((cf = find_conf_item(tc, item)) == NULL)
2422 {
2423 conf_report_error
2424 ("Non-existant configuration setting %s::%s.", tc->tc_name, (char *) item);
2425 return -1;
2426 }
2427
2428 /* if it takes one thing, make sure they only passed one thing,
2429 and handle as needed. */
2430 if((value->v.list->type & CF_FLIST) && !(cf->cf_type & CF_FLIST))
2431 {
2432 conf_report_error
2433 ("Option %s::%s does not take a list of values.", tc->tc_name, item);
2434 return -1;
2435 }
2436
2437 cp = value->v.list;
2438
2439
2440 if(CF_TYPE(value->v.list->type) != CF_TYPE(cf->cf_type))
2441 {
2442 /* if it expects a string value, but we got a yesno,
2443 * convert it back
2444 */
2445 if((CF_TYPE(value->v.list->type) == CF_YESNO) &&
2446 (CF_TYPE(cf->cf_type) == CF_STRING))
2447 {
2448 value->v.list->type = CF_STRING;
2449
2450 if(cp->v.number == 1)
2451 cp->v.string = rb_strdup("yes");
2452 else
2453 cp->v.string = rb_strdup("no");
2454 }
2455
2456 /* maybe it's a CF_TIME and they passed CF_INT --
2457 should still be valid */
2458 else if(!((CF_TYPE(value->v.list->type) == CF_INT) &&
2459 (CF_TYPE(cf->cf_type) == CF_TIME)))
2460 {
2461 conf_report_error
2462 ("Wrong type for %s::%s (expected %s, got %s)",
2463 tc->tc_name, (char *) item,
2464 conf_strtype(cf->cf_type), conf_strtype(value->v.list->type));
2465 return -1;
2466 }
2467 }
2468
2469 if(cf->cf_type & CF_FLIST)
2470 {
2471 #if 0
2472 if(cf->cf_arg)
2473 conf_set_generic_list(value->v.list, cf->cf_arg);
2474 else
2475 #endif
2476 /* just pass it the extended argument list */
2477 cf->cf_func(value->v.list);
2478 }
2479 else
2480 {
2481 /* it's old-style, needs only one arg */
2482 switch (cf->cf_type)
2483 {
2484 case CF_INT:
2485 case CF_TIME:
2486 case CF_YESNO:
2487 if(cf->cf_arg)
2488 conf_set_generic_int(&cp->v.number, cf->cf_arg);
2489 else
2490 cf->cf_func(&cp->v.number);
2491 break;
2492 case CF_STRING:
2493 case CF_QSTRING:
2494 if(EmptyString(cp->v.string))
2495 conf_report_error("Ignoring %s::%s -- empty field",
2496 tc->tc_name, item);
2497 else if(cf->cf_arg)
2498 conf_set_generic_string(cp->v.string, cf->cf_len, cf->cf_arg);
2499 else
2500 cf->cf_func(cp->v.string);
2501 break;
2502 }
2503 }
2504
2505
2506 return 0;
2507 }
2508
2509 int
2510 add_conf_item(const char *topconf, const char *name, int type, void (*func) (void *))
2511 {
2512 struct TopConf *tc;
2513 struct ConfEntry *cf;
2514
2515 if((tc = find_top_conf(topconf)) == NULL)
2516 return -1;
2517
2518 if(find_conf_item(tc, name) != NULL)
2519 return -1;
2520
2521 cf = rb_malloc(sizeof(struct ConfEntry));
2522
2523 cf->cf_name = name;
2524 cf->cf_type = type;
2525 cf->cf_func = func;
2526 cf->cf_arg = NULL;
2527
2528 rb_dlinkAddAlloc(cf, &tc->tc_items);
2529
2530 return 0;
2531 }
2532
2533 int
2534 remove_conf_item(const char *topconf, const char *name)
2535 {
2536 struct TopConf *tc;
2537 struct ConfEntry *cf;
2538 rb_dlink_node *ptr;
2539
2540 if((tc = find_top_conf(topconf)) == NULL)
2541 return -1;
2542
2543 if((cf = find_conf_item(tc, name)) == NULL)
2544 return -1;
2545
2546 if((ptr = rb_dlinkFind(cf, &tc->tc_items)) == NULL)
2547 return -1;
2548
2549 rb_dlinkDestroy(ptr, &tc->tc_items);
2550 rb_free(cf);
2551
2552 return 0;
2553 }
2554
2555 /* *INDENT-OFF* */
2556 static struct ConfEntry conf_serverinfo_table[] =
2557 {
2558 { "description", CF_QSTRING, NULL, 0, &ServerInfo.description },
2559
2560 { "network_name", CF_QSTRING, conf_set_serverinfo_network_name, 0, NULL },
2561 { "name", CF_QSTRING, conf_set_serverinfo_name, 0, NULL },
2562 { "sid", CF_QSTRING, conf_set_serverinfo_sid, 0, NULL },
2563 { "vhost", CF_QSTRING, conf_set_serverinfo_vhost, 0, NULL },
2564 { "vhost6", CF_QSTRING, conf_set_serverinfo_vhost6, 0, NULL },
2565
2566 { "ssl_private_key", CF_QSTRING, NULL, 0, &ServerInfo.ssl_private_key },
2567 { "ssl_ca_cert", CF_QSTRING, NULL, 0, &ServerInfo.ssl_ca_cert },
2568 { "ssl_cert", CF_QSTRING, NULL, 0, &ServerInfo.ssl_cert },
2569 { "ssl_dh_params", CF_QSTRING, NULL, 0, &ServerInfo.ssl_dh_params },
2570 { "ssl_cipher_list", CF_QSTRING, NULL, 0, &ServerInfo.ssl_cipher_list },
2571 { "ssld_count", CF_INT, NULL, 0, &ServerInfo.ssld_count },
2572
2573 { "default_max_clients",CF_INT, NULL, 0, &ServerInfo.default_max_clients },
2574
2575 { "nicklen", CF_INT, conf_set_serverinfo_nicklen, 0, NULL },
2576
2577 { "\0", 0, NULL, 0, NULL }
2578 };
2579
2580 static struct ConfEntry conf_admin_table[] =
2581 {
2582 { "name", CF_QSTRING, NULL, 200, &AdminInfo.name },
2583 { "description",CF_QSTRING, NULL, 200, &AdminInfo.description },
2584 { "email", CF_QSTRING, NULL, 200, &AdminInfo.email },
2585 { "\0", 0, NULL, 0, NULL }
2586 };
2587
2588 static struct ConfEntry conf_log_table[] =
2589 {
2590 { "fname_userlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_userlog },
2591 { "fname_fuserlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_fuserlog },
2592 { "fname_operlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_operlog },
2593 { "fname_foperlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_foperlog },
2594 { "fname_serverlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_serverlog },
2595 { "fname_killlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_killlog },
2596 { "fname_klinelog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_klinelog },
2597 { "fname_operspylog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_operspylog },
2598 { "fname_ioerrorlog", CF_QSTRING, NULL, PATH_MAX, &ConfigFileEntry.fname_ioerrorlog },
2599 { "\0", 0, NULL, 0, NULL }
2600 };
2601
2602 static struct ConfEntry conf_operator_table[] =
2603 {
2604 { "rsa_public_key_file", CF_QSTRING, conf_set_oper_rsa_public_key_file, 0, NULL },
2605 { "flags", CF_STRING | CF_FLIST, conf_set_oper_flags, 0, NULL },
2606 { "umodes", CF_STRING | CF_FLIST, conf_set_oper_umodes, 0, NULL },
2607 { "privset", CF_QSTRING, conf_set_oper_privset, 0, NULL },
2608 { "snomask", CF_QSTRING, conf_set_oper_snomask, 0, NULL },
2609 { "user", CF_QSTRING, conf_set_oper_user, 0, NULL },
2610 { "password", CF_QSTRING, conf_set_oper_password, 0, NULL },
2611 { "fingerprint", CF_QSTRING, conf_set_oper_fingerprint, 0, NULL },
2612 { "\0", 0, NULL, 0, NULL }
2613 };
2614
2615 static struct ConfEntry conf_privset_table[] =
2616 {
2617 { "extends", CF_QSTRING, conf_set_privset_extends, 0, NULL },
2618 { "privs", CF_STRING | CF_FLIST, conf_set_privset_privs, 0, NULL },
2619 { "\0", 0, NULL, 0, NULL }
2620 };
2621
2622 static struct ConfEntry conf_class_table[] =
2623 {
2624 { "ping_time", CF_TIME, conf_set_class_ping_time, 0, NULL },
2625 { "cidr_ipv4_bitlen", CF_INT, conf_set_class_cidr_ipv4_bitlen, 0, NULL },
2626 #ifdef RB_IPV6
2627 { "cidr_ipv6_bitlen", CF_INT, conf_set_class_cidr_ipv6_bitlen, 0, NULL },
2628 #endif
2629 { "number_per_cidr", CF_INT, conf_set_class_number_per_cidr, 0, NULL },
2630 { "number_per_ip", CF_INT, conf_set_class_number_per_ip, 0, NULL },
2631 { "number_per_ip_global", CF_INT,conf_set_class_number_per_ip_global, 0, NULL },
2632 { "number_per_ident", CF_INT, conf_set_class_number_per_ident, 0, NULL },
2633 { "connectfreq", CF_TIME, conf_set_class_connectfreq, 0, NULL },
2634 { "max_number", CF_INT, conf_set_class_max_number, 0, NULL },
2635 { "sendq", CF_TIME, conf_set_class_sendq, 0, NULL },
2636 { "\0", 0, NULL, 0, NULL }
2637 };
2638
2639 static struct ConfEntry conf_auth_table[] =
2640 {
2641 { "user", CF_QSTRING, conf_set_auth_user, 0, NULL },
2642 { "auth_user", CF_QSTRING, conf_set_auth_auth_user, 0, NULL },
2643 { "password", CF_QSTRING, conf_set_auth_passwd, 0, NULL },
2644 { "class", CF_QSTRING, conf_set_auth_class, 0, NULL },
2645 { "spoof", CF_QSTRING, conf_set_auth_spoof, 0, NULL },
2646 { "redirserv", CF_QSTRING, conf_set_auth_redir_serv, 0, NULL },
2647 { "redirport", CF_INT, conf_set_auth_redir_port, 0, NULL },
2648 { "flags", CF_STRING | CF_FLIST, conf_set_auth_flags, 0, NULL },
2649 { "\0", 0, NULL, 0, NULL }
2650 };
2651
2652 static struct ConfEntry conf_connect_table[] =
2653 {
2654 { "send_password", CF_QSTRING, conf_set_connect_send_password, 0, NULL },
2655 { "accept_password", CF_QSTRING, conf_set_connect_accept_password, 0, NULL },
2656 { "fingerprint", CF_QSTRING, conf_set_connect_fingerprint, 0, NULL },
2657 { "flags", CF_STRING | CF_FLIST, conf_set_connect_flags, 0, NULL },
2658 { "host", CF_QSTRING, conf_set_connect_host, 0, NULL },
2659 { "vhost", CF_QSTRING, conf_set_connect_vhost, 0, NULL },
2660 { "port", CF_INT, conf_set_connect_port, 0, NULL },
2661 { "aftype", CF_STRING, conf_set_connect_aftype, 0, NULL },
2662 { "hub_mask", CF_QSTRING, conf_set_connect_hub_mask, 0, NULL },
2663 { "leaf_mask", CF_QSTRING, conf_set_connect_leaf_mask, 0, NULL },
2664 { "class", CF_QSTRING, conf_set_connect_class, 0, NULL },
2665 { "\0", 0, NULL, 0, NULL }
2666 };
2667
2668 static struct ConfEntry conf_general_table[] =
2669 {
2670 { "oper_only_umodes", CF_STRING | CF_FLIST, conf_set_general_oper_only_umodes, 0, NULL },
2671 { "oper_umodes", CF_STRING | CF_FLIST, conf_set_general_oper_umodes, 0, NULL },
2672 { "oper_snomask", CF_QSTRING, conf_set_general_oper_snomask, 0, NULL },
2673 { "compression_level", CF_INT, conf_set_general_compression_level, 0, NULL },
2674 { "havent_read_conf", CF_YESNO, conf_set_general_havent_read_conf, 0, NULL },
2675 { "hide_error_messages",CF_STRING, conf_set_general_hide_error_messages,0, NULL },
2676 { "kline_delay", CF_TIME, conf_set_general_kline_delay, 0, NULL },
2677 { "stats_k_oper_only", CF_STRING, conf_set_general_stats_k_oper_only, 0, NULL },
2678 { "stats_i_oper_only", CF_STRING, conf_set_general_stats_i_oper_only, 0, NULL },
2679 { "default_umodes", CF_QSTRING, conf_set_general_default_umodes, 0, NULL },
2680
2681 { "default_operstring", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.default_operstring },
2682 { "default_adminstring",CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.default_adminstring },
2683 { "servicestring", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.servicestring },
2684 { "kline_reason", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.kline_reason },
2685 { "identify_service", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.identifyservice },
2686 { "identify_command", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.identifycommand },
2687 { "sasl_service", CF_QSTRING, NULL, REALLEN, &ConfigFileEntry.sasl_service },
2688
2689 { "anti_spam_exit_message_time", CF_TIME, NULL, 0, &ConfigFileEntry.anti_spam_exit_message_time },
2690 { "disable_fake_channels", CF_YESNO, NULL, 0, &ConfigFileEntry.disable_fake_channels },
2691 { "min_nonwildcard_simple", CF_INT, NULL, 0, &ConfigFileEntry.min_nonwildcard_simple },
2692 { "non_redundant_klines", CF_YESNO, NULL, 0, &ConfigFileEntry.non_redundant_klines },
2693 { "tkline_expire_notices", CF_YESNO, NULL, 0, &ConfigFileEntry.tkline_expire_notices },
2694
2695 { "anti_nick_flood", CF_YESNO, NULL, 0, &ConfigFileEntry.anti_nick_flood },
2696 { "burst_away", CF_YESNO, NULL, 0, &ConfigFileEntry.burst_away },
2697 { "caller_id_wait", CF_TIME, NULL, 0, &ConfigFileEntry.caller_id_wait },
2698 { "client_exit", CF_YESNO, NULL, 0, &ConfigFileEntry.client_exit },
2699 { "collision_fnc", CF_YESNO, NULL, 0, &ConfigFileEntry.collision_fnc },
2700 { "resv_fnc", CF_YESNO, NULL, 0, &ConfigFileEntry.resv_fnc },
2701 { "connect_timeout", CF_TIME, NULL, 0, &ConfigFileEntry.connect_timeout },
2702 { "default_floodcount", CF_INT, NULL, 0, &ConfigFileEntry.default_floodcount },
2703 { "default_ident_timeout", CF_INT, NULL, 0, &ConfigFileEntry.default_ident_timeout },
2704 { "disable_auth", CF_YESNO, NULL, 0, &ConfigFileEntry.disable_auth },
2705 { "dots_in_ident", CF_INT, NULL, 0, &ConfigFileEntry.dots_in_ident },
2706 { "failed_oper_notice", CF_YESNO, NULL, 0, &ConfigFileEntry.failed_oper_notice },
2707 { "global_snotices", CF_YESNO, NULL, 0, &ConfigFileEntry.global_snotices },
2708 { "hide_spoof_ips", CF_YESNO, NULL, 0, &ConfigFileEntry.hide_spoof_ips },
2709 { "dline_with_reason", CF_YESNO, NULL, 0, &ConfigFileEntry.dline_with_reason },
2710 { "kline_with_reason", CF_YESNO, NULL, 0, &ConfigFileEntry.kline_with_reason },
2711 { "map_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.map_oper_only },
2712 { "max_accept", CF_INT, NULL, 0, &ConfigFileEntry.max_accept },
2713 { "max_monitor", CF_INT, NULL, 0, &ConfigFileEntry.max_monitor },
2714 { "max_nick_time", CF_TIME, NULL, 0, &ConfigFileEntry.max_nick_time },
2715 { "max_nick_changes", CF_INT, NULL, 0, &ConfigFileEntry.max_nick_changes },
2716 { "max_targets", CF_INT, NULL, 0, &ConfigFileEntry.max_targets },
2717 { "min_nonwildcard", CF_INT, NULL, 0, &ConfigFileEntry.min_nonwildcard },
2718 { "nick_delay", CF_TIME, NULL, 0, &ConfigFileEntry.nick_delay },
2719 { "no_oper_flood", CF_YESNO, NULL, 0, &ConfigFileEntry.no_oper_flood },
2720 { "operspy_admin_only", CF_YESNO, NULL, 0, &ConfigFileEntry.operspy_admin_only },
2721 { "operspy_dont_care_user_info", CF_YESNO, NULL, 0, &ConfigFileEntry.operspy_dont_care_user_info },
2722 { "pace_wait", CF_TIME, NULL, 0, &ConfigFileEntry.pace_wait },
2723 { "pace_wait_simple", CF_TIME, NULL, 0, &ConfigFileEntry.pace_wait_simple },
2724 { "ping_cookie", CF_YESNO, NULL, 0, &ConfigFileEntry.ping_cookie },
2725 { "reject_after_count", CF_INT, NULL, 0, &ConfigFileEntry.reject_after_count },
2726 { "reject_ban_time", CF_TIME, NULL, 0, &ConfigFileEntry.reject_ban_time },
2727 { "reject_duration", CF_TIME, NULL, 0, &ConfigFileEntry.reject_duration },
2728 { "throttle_count", CF_INT, NULL, 0, &ConfigFileEntry.throttle_count },
2729 { "throttle_duration", CF_TIME, NULL, 0, &ConfigFileEntry.throttle_duration },
2730 { "short_motd", CF_YESNO, NULL, 0, &ConfigFileEntry.short_motd },
2731 { "stats_c_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_c_oper_only },
2732 { "stats_e_disabled", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_e_disabled },
2733 { "stats_h_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_h_oper_only },
2734 { "stats_o_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_o_oper_only },
2735 { "stats_P_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_P_oper_only },
2736 { "stats_y_oper_only", CF_YESNO, NULL, 0, &ConfigFileEntry.stats_y_oper_only },
2737 { "target_change", CF_YESNO, NULL, 0, &ConfigFileEntry.target_change },
2738 { "ts_max_delta", CF_TIME, NULL, 0, &ConfigFileEntry.ts_max_delta },
2739 { "ts_warn_delta", CF_TIME, NULL, 0, &ConfigFileEntry.ts_warn_delta },
2740 { "use_whois_actually", CF_YESNO, NULL, 0, &ConfigFileEntry.use_whois_actually },
2741 { "warn_no_nline", CF_YESNO, NULL, 0, &ConfigFileEntry.warn_no_nline },
2742 { "use_propagated_bans",CF_YESNO, NULL, 0, &ConfigFileEntry.use_propagated_bans },
2743 { "client_flood_max_lines", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_max_lines },
2744 { "client_flood_burst_rate", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_burst_rate },
2745 { "client_flood_burst_max", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_burst_max },
2746 { "client_flood_message_num", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_message_num },
2747 { "client_flood_message_time", CF_INT, NULL, 0, &ConfigFileEntry.client_flood_message_time },
2748 { "max_ratelimit_tokens", CF_INT, NULL, 0, &ConfigFileEntry.max_ratelimit_tokens },
2749 { "away_interval", CF_INT, NULL, 0, &ConfigFileEntry.away_interval },
2750 { "hide_opers_in_whois", CF_YESNO, NULL, 0, &ConfigFileEntry.hide_opers_in_whois },
2751 { "certfp_method", CF_STRING, conf_set_general_certfp_method, 0, NULL },
2752 { "\0", 0, NULL, 0, NULL }
2753 };
2754
2755 static struct ConfEntry conf_channel_table[] =
2756 {
2757 { "default_split_user_count", CF_INT, NULL, 0, &ConfigChannel.default_split_user_count },
2758 { "default_split_server_count", CF_INT, NULL, 0, &ConfigChannel.default_split_server_count },
2759 { "burst_topicwho", CF_YESNO, NULL, 0, &ConfigChannel.burst_topicwho },
2760 { "kick_on_split_riding", CF_YESNO, NULL, 0, &ConfigChannel.kick_on_split_riding },
2761 { "knock_delay", CF_TIME, NULL, 0, &ConfigChannel.knock_delay },
2762 { "knock_delay_channel",CF_TIME, NULL, 0, &ConfigChannel.knock_delay_channel },
2763 { "max_bans", CF_INT, NULL, 0, &ConfigChannel.max_bans },
2764 { "max_bans_large", CF_INT, NULL, 0, &ConfigChannel.max_bans_large },
2765 { "max_chans_per_user", CF_INT, NULL, 0, &ConfigChannel.max_chans_per_user },
2766 { "max_chans_per_user_large", CF_INT, NULL, 0, &ConfigChannel.max_chans_per_user_large },
2767 { "no_create_on_split", CF_YESNO, NULL, 0, &ConfigChannel.no_create_on_split },
2768 { "no_join_on_split", CF_YESNO, NULL, 0, &ConfigChannel.no_join_on_split },
2769 { "only_ascii_channels", CF_YESNO, NULL, 0, &ConfigChannel.only_ascii_channels },
2770 { "use_except", CF_YESNO, NULL, 0, &ConfigChannel.use_except },
2771 { "use_invex", CF_YESNO, NULL, 0, &ConfigChannel.use_invex },
2772 { "use_forward", CF_YESNO, NULL, 0, &ConfigChannel.use_forward },
2773 { "use_knock", CF_YESNO, NULL, 0, &ConfigChannel.use_knock },
2774 { "resv_forcepart", CF_YESNO, NULL, 0, &ConfigChannel.resv_forcepart },
2775 { "channel_target_change", CF_YESNO, NULL, 0, &ConfigChannel.channel_target_change },
2776 { "disable_local_channels", CF_YESNO, NULL, 0, &ConfigChannel.disable_local_channels },
2777 { "autochanmodes", CF_QSTRING, conf_set_channel_autochanmodes, 0, NULL },
2778 { "displayed_usercount", CF_INT, NULL, 0, &ConfigChannel.displayed_usercount },
2779 { "strip_topic_colors", CF_YESNO, NULL, 0, &ConfigChannel.strip_topic_colors },
2780 { "\0", 0, NULL, 0, NULL }
2781 };
2782
2783 static struct ConfEntry conf_serverhide_table[] =
2784 {
2785 { "disable_hidden", CF_YESNO, NULL, 0, &ConfigServerHide.disable_hidden },
2786 { "flatten_links", CF_YESNO, NULL, 0, &ConfigServerHide.flatten_links },
2787 { "hidden", CF_YESNO, NULL, 0, &ConfigServerHide.hidden },
2788 { "links_delay", CF_TIME, conf_set_serverhide_links_delay, 0, NULL },
2789 { "\0", 0, NULL, 0, NULL }
2790 };
2791 /* *INDENT-ON* */
2792
2793 void
2794 newconf_init()
2795 {
2796 add_top_conf("modules", NULL, NULL, NULL);
2797 add_conf_item("modules", "path", CF_QSTRING, conf_set_modules_path);
2798 add_conf_item("modules", "module", CF_QSTRING, conf_set_modules_module);
2799
2800 add_top_conf("serverinfo", NULL, NULL, conf_serverinfo_table);
2801 add_top_conf("admin", NULL, NULL, conf_admin_table);
2802 add_top_conf("log", NULL, NULL, conf_log_table);
2803 add_top_conf("operator", conf_begin_oper, conf_end_oper, conf_operator_table);
2804 add_top_conf("class", conf_begin_class, conf_end_class, conf_class_table);
2805 add_top_conf("privset", NULL, NULL, conf_privset_table);
2806
2807 add_top_conf("listen", conf_begin_listen, conf_end_listen, NULL);
2808 add_conf_item("listen", "defer_accept", CF_YESNO, conf_set_listen_defer_accept);
2809 add_conf_item("listen", "wsock", CF_YESNO, conf_set_listen_wsock);
2810 add_conf_item("listen", "port", CF_INT | CF_FLIST, conf_set_listen_port);
2811 add_conf_item("listen", "sslport", CF_INT | CF_FLIST, conf_set_listen_sslport);
2812 add_conf_item("listen", "ip", CF_QSTRING, conf_set_listen_address);
2813 add_conf_item("listen", "host", CF_QSTRING, conf_set_listen_address);
2814
2815 add_top_conf("auth", conf_begin_auth, conf_end_auth, conf_auth_table);
2816
2817 add_top_conf("shared", conf_cleanup_shared, conf_cleanup_shared, NULL);
2818 add_conf_item("shared", "oper", CF_QSTRING | CF_FLIST, conf_set_shared_oper);
2819 add_conf_item("shared", "flags", CF_STRING | CF_FLIST, conf_set_shared_flags);
2820
2821 add_top_conf("connect", conf_begin_connect, conf_end_connect, conf_connect_table);
2822
2823 add_top_conf("exempt", NULL, NULL, NULL);
2824 add_conf_item("exempt", "ip", CF_QSTRING, conf_set_exempt_ip);
2825
2826 add_top_conf("cluster", conf_cleanup_cluster, conf_cleanup_cluster, NULL);
2827 add_conf_item("cluster", "name", CF_QSTRING, conf_set_cluster_name);
2828 add_conf_item("cluster", "flags", CF_STRING | CF_FLIST, conf_set_cluster_flags);
2829
2830 add_top_conf("general", NULL, NULL, conf_general_table);
2831 add_top_conf("channel", NULL, NULL, conf_channel_table);
2832 add_top_conf("serverhide", NULL, NULL, conf_serverhide_table);
2833
2834 add_top_conf("service", NULL, NULL, NULL);
2835 add_conf_item("service", "name", CF_QSTRING, conf_set_service_name);
2836
2837 add_top_conf("alias", conf_begin_alias, conf_end_alias, NULL);
2838 add_conf_item("alias", "name", CF_QSTRING, conf_set_alias_name);
2839 add_conf_item("alias", "target", CF_QSTRING, conf_set_alias_target);
2840
2841 add_top_conf("blacklist", NULL, NULL, NULL);
2842 add_conf_item("blacklist", "host", CF_QSTRING, conf_set_blacklist_host);
2843 add_conf_item("blacklist", "type", CF_STRING | CF_FLIST, conf_set_blacklist_type);
2844 add_conf_item("blacklist", "matches", CF_QSTRING | CF_FLIST, conf_set_blacklist_matches);
2845 add_conf_item("blacklist", "reject_reason", CF_QSTRING, conf_set_blacklist_reason);
2846
2847 add_top_conf("opm", conf_begin_opm, conf_end_opm, NULL);
2848 add_conf_item("opm", "timeout", CF_INT, conf_set_opm_timeout);
2849 add_conf_item("opm", "listen_ipv4", CF_QSTRING, conf_set_opm_listen_address_ipv4);
2850 add_conf_item("opm", "listen_ipv6", CF_QSTRING, conf_set_opm_listen_address_ipv6);
2851 add_conf_item("opm", "port_v4", CF_INT, conf_set_opm_listen_port_ipv4);
2852 add_conf_item("opm", "port_v6", CF_INT, conf_set_opm_listen_port_ipv6);
2853 add_conf_item("opm", "listen_port", CF_INT, conf_set_opm_listen_port);
2854 add_conf_item("opm", "socks4_ports", CF_INT | CF_FLIST, conf_set_opm_scan_ports_socks4);
2855 add_conf_item("opm", "socks5_ports", CF_INT | CF_FLIST, conf_set_opm_scan_ports_socks5);
2856 add_conf_item("opm", "httpconnect_ports", CF_INT | CF_FLIST, conf_set_opm_scan_ports_httpconnect);
2857 }