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