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