]> jfr.im git - solanum.git/blob - src/s_conf.c
newconf: fix a warning
[solanum.git] / src / s_conf.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * s_conf.c: Configuration file functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: s_conf.c 3550 2007-08-09 06:47:26Z nenolod $
25 */
26
27 #include "stdinc.h"
28 #include "ircd_defs.h"
29 #include "s_conf.h"
30 #include "s_newconf.h"
31 #include "newconf.h"
32 #include "s_serv.h"
33 #include "s_stats.h"
34 #include "channel.h"
35 #include "class.h"
36 #include "client.h"
37 #include "common.h"
38 #include "hash.h"
39 #include "match.h"
40 #include "ircd.h"
41 #include "listener.h"
42 #include "hostmask.h"
43 #include "modules.h"
44 #include "numeric.h"
45 #include "logger.h"
46 #include "send.h"
47 #include "reject.h"
48 #include "cache.h"
49 #include "blacklist.h"
50 #include "privilege.h"
51 #include "sslproc.h"
52 #include "bandbi.h"
53 #include "operhash.h"
54
55 struct config_server_hide ConfigServerHide;
56
57 extern int yyparse(void); /* defined in y.tab.c */
58 extern char linebuf[];
59
60 #ifndef INADDR_NONE
61 #define INADDR_NONE ((unsigned int) 0xffffffff)
62 #endif
63
64 static rb_bh *confitem_heap = NULL;
65
66 rb_dlink_list prop_bans;
67
68 rb_dlink_list temp_klines[LAST_TEMP_TYPE];
69 rb_dlink_list temp_dlines[LAST_TEMP_TYPE];
70 rb_dlink_list service_list;
71
72 /* internally defined functions */
73 static void set_default_conf(void);
74 static void validate_conf(void);
75 static void read_conf(FILE *);
76 static void clear_out_old_conf(void);
77
78 static void expire_prop_bans(void *list);
79 static void expire_temp_kd(void *list);
80 static void reorganise_temp_kd(void *list);
81
82 FILE *conf_fbfile_in;
83 extern char yytext[];
84
85 static int verify_access(struct Client *client_p, const char *username);
86 static int attach_iline(struct Client *, struct ConfItem *);
87
88 void
89 init_s_conf(void)
90 {
91 confitem_heap = rb_bh_create(sizeof(struct ConfItem), CONFITEM_HEAP_SIZE, "confitem_heap");
92
93 rb_event_addish("expire_prop_bans", expire_prop_bans, &prop_bans, 60);
94
95 rb_event_addish("expire_temp_klines", expire_temp_kd, &temp_klines[TEMP_MIN], 60);
96 rb_event_addish("expire_temp_dlines", expire_temp_kd, &temp_dlines[TEMP_MIN], 60);
97
98 rb_event_addish("expire_temp_klines_hour", reorganise_temp_kd,
99 &temp_klines[TEMP_HOUR], 3600);
100 rb_event_addish("expire_temp_dlines_hour", reorganise_temp_kd,
101 &temp_dlines[TEMP_HOUR], 3600);
102 rb_event_addish("expire_temp_klines_day", reorganise_temp_kd,
103 &temp_klines[TEMP_DAY], 86400);
104 rb_event_addish("expire_temp_dlines_day", reorganise_temp_kd,
105 &temp_dlines[TEMP_DAY], 86400);
106 rb_event_addish("expire_temp_klines_week", reorganise_temp_kd,
107 &temp_klines[TEMP_WEEK], 604800);
108 rb_event_addish("expire_temp_dlines_week", reorganise_temp_kd,
109 &temp_dlines[TEMP_WEEK], 604800);
110 }
111
112 /*
113 * make_conf
114 *
115 * inputs - none
116 * output - pointer to new conf entry
117 * side effects - none
118 */
119 struct ConfItem *
120 make_conf()
121 {
122 struct ConfItem *aconf;
123
124 aconf = rb_bh_alloc(confitem_heap);
125 aconf->status = CONF_ILLEGAL;
126 return (aconf);
127 }
128
129 /*
130 * free_conf
131 *
132 * inputs - pointer to conf to free
133 * output - none
134 * side effects - crucial password fields are zeroed, conf is freed
135 */
136 void
137 free_conf(struct ConfItem *aconf)
138 {
139 s_assert(aconf != NULL);
140 if(aconf == NULL)
141 return;
142
143 /* security.. */
144 if(aconf->passwd)
145 memset(aconf->passwd, 0, strlen(aconf->passwd));
146 if(aconf->spasswd)
147 memset(aconf->spasswd, 0, strlen(aconf->spasswd));
148
149 rb_free(aconf->passwd);
150 rb_free(aconf->spasswd);
151 rb_free(aconf->className);
152 rb_free(aconf->user);
153 rb_free(aconf->host);
154
155 if(IsConfBan(aconf))
156 operhash_delete(aconf->info.oper);
157 else
158 rb_free(aconf->info.name);
159
160 rb_bh_free(confitem_heap, aconf);
161 }
162
163 /*
164 * check_client
165 *
166 * inputs - pointer to client
167 * output - 0 = Success
168 * NOT_AUTHORISED (-1) = Access denied (no I line match)
169 * SOCKET_ERROR (-2) = Bad socket.
170 * I_LINE_FULL (-3) = I-line is full
171 * TOO_MANY (-4) = Too many connections from hostname
172 * BANNED_CLIENT (-5) = K-lined
173 * side effects - Ordinary client access check.
174 * Look for conf lines which have the same
175 * status as the flags passed.
176 */
177 int
178 check_client(struct Client *client_p, struct Client *source_p, const char *username)
179 {
180 int i;
181
182 if((i = verify_access(source_p, username)))
183 {
184 ilog(L_FUSER, "Access denied: %s[%s]",
185 source_p->name, source_p->sockhost);
186 }
187
188 switch (i)
189 {
190 case SOCKET_ERROR:
191 exit_client(client_p, source_p, &me, "Socket Error");
192 break;
193
194 case TOO_MANY_LOCAL:
195 /* Note that these notices are sent to opers on other
196 * servers also, so even if local opers are allowed to
197 * see the IP, we still cannot send it.
198 */
199 sendto_realops_snomask(SNO_FULL, L_NETWIDE,
200 "Too many local connections for %s!%s%s@%s",
201 source_p->name, IsGotId(source_p) ? "" : "~",
202 source_p->username,
203 show_ip(NULL, source_p) && !IsIPSpoof(source_p) ? source_p->sockhost : source_p->host);
204
205 ilog(L_FUSER, "Too many local connections from %s!%s%s@%s",
206 source_p->name, IsGotId(source_p) ? "" : "~",
207 source_p->username, source_p->sockhost);
208
209 ServerStats.is_ref++;
210 exit_client(client_p, source_p, &me, "Too many host connections (local)");
211 break;
212
213 case TOO_MANY_GLOBAL:
214 sendto_realops_snomask(SNO_FULL, L_NETWIDE,
215 "Too many global connections for %s!%s%s@%s",
216 source_p->name, IsGotId(source_p) ? "" : "~",
217 source_p->username,
218 show_ip(NULL, source_p) && !IsIPSpoof(source_p) ? source_p->sockhost : source_p->host);
219 ilog(L_FUSER, "Too many global connections from %s!%s%s@%s",
220 source_p->name, IsGotId(source_p) ? "" : "~",
221 source_p->username, source_p->sockhost);
222
223 ServerStats.is_ref++;
224 exit_client(client_p, source_p, &me, "Too many host connections (global)");
225 break;
226
227 case TOO_MANY_IDENT:
228 sendto_realops_snomask(SNO_FULL, L_NETWIDE,
229 "Too many user connections for %s!%s%s@%s",
230 source_p->name, IsGotId(source_p) ? "" : "~",
231 source_p->username,
232 show_ip(NULL, source_p) && !IsIPSpoof(source_p) ? source_p->sockhost : source_p->host);
233 ilog(L_FUSER, "Too many user connections from %s!%s%s@%s",
234 source_p->name, IsGotId(source_p) ? "" : "~",
235 source_p->username, source_p->sockhost);
236
237 ServerStats.is_ref++;
238 exit_client(client_p, source_p, &me, "Too many user connections (global)");
239 break;
240
241 case I_LINE_FULL:
242 sendto_realops_snomask(SNO_FULL, L_NETWIDE,
243 "I-line is full for %s!%s%s@%s (%s).",
244 source_p->name, IsGotId(source_p) ? "" : "~",
245 source_p->username, source_p->host,
246 show_ip(NULL, source_p) && !IsIPSpoof(source_p) ? source_p->sockhost : "255.255.255.255");
247
248 ilog(L_FUSER, "Too many connections from %s!%s%s@%s.",
249 source_p->name, IsGotId(source_p) ? "" : "~",
250 source_p->username, source_p->sockhost);
251
252 ServerStats.is_ref++;
253 exit_client(client_p, source_p, &me,
254 "No more connections allowed in your connection class");
255 break;
256
257 case NOT_AUTHORISED:
258 {
259 int port = -1;
260 #ifdef RB_IPV6
261 if(source_p->localClient->ip.ss_family == AF_INET6)
262 port = ntohs(((struct sockaddr_in6 *)&source_p->localClient->listener->addr)->sin6_port);
263 else
264 #endif
265 port = ntohs(((struct sockaddr_in *)&source_p->localClient->listener->addr)->sin_port);
266
267 ServerStats.is_ref++;
268 /* jdc - lists server name & port connections are on */
269 /* a purely cosmetical change */
270 /* why ipaddr, and not just source_p->sockhost? --fl */
271 #if 0
272 static char ipaddr[HOSTIPLEN];
273 rb_inet_ntop_sock(&source_p->localClient->ip, ipaddr, sizeof(ipaddr));
274 #endif
275 sendto_realops_snomask(SNO_UNAUTH, L_ALL,
276 "Unauthorised client connection from "
277 "%s!%s%s@%s [%s] on [%s/%u].",
278 source_p->name, IsGotId(source_p) ? "" : "~",
279 source_p->username, source_p->host,
280 source_p->sockhost,
281 source_p->localClient->listener->name, port);
282
283 ilog(L_FUSER,
284 "Unauthorised client connection from %s!%s%s@%s on [%s/%u].",
285 source_p->name, IsGotId(source_p) ? "" : "~",
286 source_p->username, source_p->sockhost,
287 source_p->localClient->listener->name, port);
288 add_reject(client_p, NULL, NULL);
289 exit_client(client_p, source_p, &me,
290 "You are not authorised to use this server");
291 break;
292 }
293 case BANNED_CLIENT:
294 exit_client(client_p, client_p, &me, "*** Banned ");
295 ServerStats.is_ref++;
296 break;
297
298 case 0:
299 default:
300 break;
301 }
302 return (i);
303 }
304
305 /*
306 * verify_access
307 *
308 * inputs - pointer to client to verify
309 * - pointer to proposed username
310 * output - 0 if success -'ve if not
311 * side effect - find the first (best) I line to attach.
312 */
313 static int
314 verify_access(struct Client *client_p, const char *username)
315 {
316 struct ConfItem *aconf;
317 char non_ident[USERLEN + 1];
318
319 if(IsGotId(client_p))
320 {
321 aconf = find_address_conf(client_p->host, client_p->sockhost,
322 client_p->username, client_p->username,
323 (struct sockaddr *) &client_p->localClient->ip,
324 client_p->localClient->ip.ss_family,
325 client_p->localClient->auth_user);
326 }
327 else
328 {
329 rb_strlcpy(non_ident, "~", sizeof(non_ident));
330 rb_strlcat(non_ident, username, sizeof(non_ident));
331 aconf = find_address_conf(client_p->host, client_p->sockhost,
332 non_ident, client_p->username,
333 (struct sockaddr *) &client_p->localClient->ip,
334 client_p->localClient->ip.ss_family,
335 client_p->localClient->auth_user);
336 }
337
338 if(aconf == NULL)
339 return NOT_AUTHORISED;
340
341 if(aconf->status & CONF_CLIENT)
342 {
343 if(aconf->flags & CONF_FLAGS_REDIR)
344 {
345 sendto_one_numeric(client_p, RPL_REDIR, form_str(RPL_REDIR),
346 aconf->info.name ? aconf->info.name : "", aconf->port);
347 return (NOT_AUTHORISED);
348 }
349
350 /* Thanks for spoof idea amm */
351 if(IsConfDoSpoofIp(aconf))
352 {
353 char *p;
354
355 /* show_ip() depends on this --fl */
356 SetIPSpoof(client_p);
357
358 if(IsConfSpoofNotice(aconf))
359 {
360 sendto_realops_snomask(SNO_GENERAL, L_ALL,
361 "%s spoofing: %s as %s",
362 client_p->name,
363 show_ip(NULL, client_p) ? client_p->host : aconf->info.name,
364 aconf->info.name);
365 }
366
367 /* user@host spoof */
368 if((p = strchr(aconf->info.name, '@')) != NULL)
369 {
370 char *host = p+1;
371 *p = '\0';
372
373 rb_strlcpy(client_p->username, aconf->info.name,
374 sizeof(client_p->username));
375 rb_strlcpy(client_p->host, host,
376 sizeof(client_p->host));
377 *p = '@';
378 }
379 else
380 rb_strlcpy(client_p->host, aconf->info.name, sizeof(client_p->host));
381 }
382 return (attach_iline(client_p, aconf));
383 }
384 else if(aconf->status & CONF_KILL)
385 {
386 if(ConfigFileEntry.kline_with_reason)
387 sendto_one(client_p,
388 form_str(ERR_YOUREBANNEDCREEP),
389 me.name, client_p->name,
390 get_user_ban_reason(aconf));
391 add_reject(client_p, aconf->user, aconf->host);
392 return (BANNED_CLIENT);
393 }
394
395 return NOT_AUTHORISED;
396 }
397
398
399 /*
400 * add_ip_limit
401 *
402 * Returns 1 if successful 0 if not
403 *
404 * This checks if the user has exceed the limits for their class
405 * unless of course they are exempt..
406 */
407
408 static int
409 add_ip_limit(struct Client *client_p, struct ConfItem *aconf)
410 {
411 rb_patricia_node_t *pnode;
412 int bitlen;
413
414 /* If the limits are 0 don't do anything.. */
415 if(ConfCidrAmount(aconf) == 0
416 || (ConfCidrIpv4Bitlen(aconf) == 0 && ConfCidrIpv6Bitlen(aconf) == 0))
417 return -1;
418
419 pnode = rb_match_ip(ConfIpLimits(aconf), (struct sockaddr *)&client_p->localClient->ip);
420
421 if(GET_SS_FAMILY(&client_p->localClient->ip) == AF_INET)
422 bitlen = ConfCidrIpv4Bitlen(aconf);
423 else
424 bitlen = ConfCidrIpv6Bitlen(aconf);
425
426 if(pnode == NULL)
427 pnode = make_and_lookup_ip(ConfIpLimits(aconf), (struct sockaddr *)&client_p->localClient->ip, bitlen);
428
429 s_assert(pnode != NULL);
430
431 if(pnode != NULL)
432 {
433 if(((intptr_t)pnode->data) >= ConfCidrAmount(aconf) && !IsConfExemptLimits(aconf))
434 {
435 /* This should only happen if the limits are set to 0 */
436 if((intptr_t)pnode->data == 0)
437 {
438 rb_patricia_remove(ConfIpLimits(aconf), pnode);
439 }
440 return (0);
441 }
442
443 pnode->data = (void *)(((intptr_t)pnode->data) + 1);
444 }
445 return 1;
446 }
447
448 static void
449 remove_ip_limit(struct Client *client_p, struct ConfItem *aconf)
450 {
451 rb_patricia_node_t *pnode;
452
453 /* If the limits are 0 don't do anything.. */
454 if(ConfCidrAmount(aconf) == 0
455 || (ConfCidrIpv4Bitlen(aconf) == 0 && ConfCidrIpv6Bitlen(aconf) == 0))
456 return;
457
458 pnode = rb_match_ip(ConfIpLimits(aconf), (struct sockaddr *)&client_p->localClient->ip);
459 if(pnode == NULL)
460 return;
461
462 pnode->data = (void *)(((intptr_t)pnode->data) - 1);
463 if(((intptr_t)pnode->data) == 0)
464 {
465 rb_patricia_remove(ConfIpLimits(aconf), pnode);
466 }
467
468 }
469
470 /*
471 * attach_iline
472 *
473 * inputs - client pointer
474 * - conf pointer
475 * output -
476 * side effects - do actual attach
477 */
478 static int
479 attach_iline(struct Client *client_p, struct ConfItem *aconf)
480 {
481 struct Client *target_p;
482 rb_dlink_node *ptr;
483 int local_count = 0;
484 int global_count = 0;
485 int ident_count = 0;
486 int unidented;
487
488 if(IsConfExemptLimits(aconf))
489 return (attach_conf(client_p, aconf));
490
491 unidented = !IsGotId(client_p) && !IsNoTilde(aconf) &&
492 (!IsConfDoSpoofIp(aconf) || !strchr(aconf->info.name, '@'));
493
494 /* find_hostname() returns the head of the list to search */
495 RB_DLINK_FOREACH(ptr, find_hostname(client_p->host))
496 {
497 target_p = ptr->data;
498
499 if(irccmp(client_p->host, target_p->orighost) != 0)
500 continue;
501
502 if(MyConnect(target_p))
503 local_count++;
504
505 global_count++;
506
507 if(unidented)
508 {
509 if(*target_p->username == '~')
510 ident_count++;
511 }
512 else if(irccmp(target_p->username, client_p->username) == 0)
513 ident_count++;
514
515 if(ConfMaxLocal(aconf) && local_count >= ConfMaxLocal(aconf))
516 return (TOO_MANY_LOCAL);
517 else if(ConfMaxGlobal(aconf) && global_count >= ConfMaxGlobal(aconf))
518 return (TOO_MANY_GLOBAL);
519 else if(ConfMaxIdent(aconf) && ident_count >= ConfMaxIdent(aconf))
520 return (TOO_MANY_IDENT);
521 }
522
523
524 return (attach_conf(client_p, aconf));
525 }
526
527 /*
528 * detach_conf
529 *
530 * inputs - pointer to client to detach
531 * output - 0 for success, -1 for failure
532 * side effects - Disassociate configuration from the client.
533 * Also removes a class from the list if marked for deleting.
534 */
535 int
536 detach_conf(struct Client *client_p)
537 {
538 struct ConfItem *aconf;
539
540 aconf = client_p->localClient->att_conf;
541
542 if(aconf != NULL)
543 {
544 if(ClassPtr(aconf))
545 {
546 remove_ip_limit(client_p, aconf);
547
548 if(ConfCurrUsers(aconf) > 0)
549 --ConfCurrUsers(aconf);
550
551 if(ConfMaxUsers(aconf) == -1 && ConfCurrUsers(aconf) == 0)
552 {
553 free_class(ClassPtr(aconf));
554 ClassPtr(aconf) = NULL;
555 }
556
557 }
558
559 aconf->clients--;
560 if(!aconf->clients && IsIllegal(aconf))
561 free_conf(aconf);
562
563 client_p->localClient->att_conf = NULL;
564 return 0;
565 }
566
567 return -1;
568 }
569
570 /*
571 * attach_conf
572 *
573 * inputs - client pointer
574 * - conf pointer
575 * output -
576 * side effects - Associate a specific configuration entry to a *local*
577 * client (this is the one which used in accepting the
578 * connection). Note, that this automatically changes the
579 * attachment if there was an old one...
580 */
581 int
582 attach_conf(struct Client *client_p, struct ConfItem *aconf)
583 {
584 if(IsIllegal(aconf))
585 return (NOT_AUTHORISED);
586
587 if(ClassPtr(aconf))
588 {
589 if(!add_ip_limit(client_p, aconf))
590 return (TOO_MANY_LOCAL);
591 }
592
593 if((aconf->status & CONF_CLIENT) &&
594 ConfCurrUsers(aconf) >= ConfMaxUsers(aconf) && ConfMaxUsers(aconf) > 0)
595 {
596 if(!IsConfExemptLimits(aconf))
597 {
598 return (I_LINE_FULL);
599 }
600 else
601 {
602 sendto_one_notice(client_p, ":*** I: line is full, but you have an >I: line!");
603 }
604
605 }
606
607 if(client_p->localClient->att_conf != NULL)
608 detach_conf(client_p);
609
610 client_p->localClient->att_conf = aconf;
611
612 aconf->clients++;
613 ConfCurrUsers(aconf)++;
614 return (0);
615 }
616
617 /*
618 * rehash
619 *
620 * Actual REHASH service routine. Called with sig == 0 if it has been called
621 * as a result of an operator issuing this command, else assume it has been
622 * called as a result of the server receiving a HUP signal.
623 */
624 int
625 rehash(int sig)
626 {
627 if(sig != 0)
628 {
629 sendto_realops_snomask(SNO_GENERAL, L_ALL,
630 "Got signal SIGHUP, reloading ircd conf. file");
631 }
632
633 restart_resolver();
634 /* don't close listeners until we know we can go ahead with the rehash */
635 read_conf_files(NO);
636
637 if(ServerInfo.description != NULL)
638 rb_strlcpy(me.info, ServerInfo.description, sizeof(me.info));
639 else
640 rb_strlcpy(me.info, "unknown", sizeof(me.info));
641
642 open_logfiles();
643 return (0);
644 }
645
646 void
647 rehash_bans(int sig)
648 {
649 bandb_rehash_bans();
650 }
651
652 /*
653 * set_default_conf()
654 *
655 * inputs - NONE
656 * output - NONE
657 * side effects - Set default values here.
658 * This is called **PRIOR** to parsing the
659 * configuration file. If you want to do some validation
660 * of values later, put them in validate_conf().
661 */
662
663 #define YES 1
664 #define NO 0
665 #define UNSET -1
666
667 static void
668 set_default_conf(void)
669 {
670 /* ServerInfo.name is not rehashable */
671 /* ServerInfo.name = ServerInfo.name; */
672 ServerInfo.description = NULL;
673 ServerInfo.network_name = rb_strdup(NETWORK_NAME_DEFAULT);
674 ServerInfo.network_desc = rb_strdup(NETWORK_DESC_DEFAULT);
675
676 memset(&ServerInfo.ip, 0, sizeof(ServerInfo.ip));
677 ServerInfo.specific_ipv4_vhost = 0;
678 #ifdef RB_IPV6
679 memset(&ServerInfo.ip6, 0, sizeof(ServerInfo.ip6));
680 ServerInfo.specific_ipv6_vhost = 0;
681 #endif
682
683 /* Don't reset hub, as that will break lazylinks */
684 /* ServerInfo.hub = NO; */
685 AdminInfo.name = NULL;
686 AdminInfo.email = NULL;
687 AdminInfo.description = NULL;
688
689 ConfigFileEntry.default_operstring = rb_strdup("is an IRC operator");
690 ConfigFileEntry.default_adminstring = rb_strdup("is a Server Administrator");
691 ConfigFileEntry.servicestring = rb_strdup("is a Network Service");
692
693 ConfigFileEntry.default_umodes = UMODE_INVISIBLE;
694 ConfigFileEntry.failed_oper_notice = YES;
695 ConfigFileEntry.anti_nick_flood = NO;
696 ConfigFileEntry.disable_fake_channels = NO;
697 ConfigFileEntry.max_nick_time = 20;
698 ConfigFileEntry.max_nick_changes = 5;
699 ConfigFileEntry.max_accept = 20;
700 ConfigFileEntry.max_monitor = 60;
701 ConfigFileEntry.nick_delay = 900; /* 15 minutes */
702 ConfigFileEntry.target_change = YES;
703 ConfigFileEntry.anti_spam_exit_message_time = 0;
704 ConfigFileEntry.ts_warn_delta = TS_WARN_DELTA_DEFAULT;
705 ConfigFileEntry.ts_max_delta = TS_MAX_DELTA_DEFAULT;
706 ConfigFileEntry.client_exit = YES;
707 ConfigFileEntry.dline_with_reason = YES;
708 ConfigFileEntry.kline_with_reason = YES;
709 ConfigFileEntry.kline_delay = 0;
710 ConfigFileEntry.warn_no_nline = YES;
711 ConfigFileEntry.non_redundant_klines = YES;
712 ConfigFileEntry.stats_e_disabled = NO;
713 ConfigFileEntry.stats_o_oper_only = NO;
714 ConfigFileEntry.stats_k_oper_only = 1; /* masked */
715 ConfigFileEntry.stats_i_oper_only = 1; /* masked */
716 ConfigFileEntry.stats_P_oper_only = NO;
717 ConfigFileEntry.stats_c_oper_only = NO;
718 ConfigFileEntry.stats_y_oper_only = NO;
719 ConfigFileEntry.stats_h_oper_only = NO;
720 ConfigFileEntry.map_oper_only = YES;
721 ConfigFileEntry.operspy_admin_only = NO;
722 ConfigFileEntry.pace_wait = 10;
723 ConfigFileEntry.caller_id_wait = 60;
724 ConfigFileEntry.pace_wait_simple = 1;
725 ConfigFileEntry.short_motd = NO;
726 ConfigFileEntry.no_oper_flood = NO;
727 ConfigFileEntry.fname_userlog = NULL;
728 ConfigFileEntry.fname_fuserlog = NULL;
729 ConfigFileEntry.fname_operlog = NULL;
730 ConfigFileEntry.fname_foperlog = NULL;
731 ConfigFileEntry.fname_serverlog = NULL;
732 ConfigFileEntry.fname_klinelog = NULL;
733 ConfigFileEntry.fname_operspylog = NULL;
734 ConfigFileEntry.fname_ioerrorlog = NULL;
735 ConfigFileEntry.use_egd = NO;
736 ConfigFileEntry.hide_spoof_ips = YES;
737 ConfigFileEntry.hide_error_messages = 1;
738 ConfigFileEntry.dots_in_ident = 0;
739 ConfigFileEntry.max_targets = MAX_TARGETS_DEFAULT;
740 ConfigFileEntry.egdpool_path = NULL;
741 ConfigFileEntry.use_whois_actually = YES;
742 ConfigFileEntry.burst_away = NO;
743 ConfigFileEntry.collision_fnc = YES;
744 ConfigFileEntry.global_snotices = YES;
745 ConfigFileEntry.operspy_dont_care_user_info = NO;
746 ConfigFileEntry.use_propagated_bans = YES;
747
748 #ifdef HAVE_LIBZ
749 ConfigFileEntry.compression_level = 4;
750 #endif
751
752 ConfigFileEntry.oper_umodes = UMODE_LOCOPS | UMODE_SERVNOTICE |
753 UMODE_OPERWALL | UMODE_WALLOP;
754 ConfigFileEntry.oper_only_umodes = UMODE_SERVNOTICE;
755 ConfigFileEntry.oper_snomask = SNO_GENERAL;
756
757 ConfigChannel.use_except = YES;
758 ConfigChannel.use_invex = YES;
759 ConfigChannel.use_knock = YES;
760 ConfigChannel.use_forward = YES;
761 ConfigChannel.knock_delay = 300;
762 ConfigChannel.knock_delay_channel = 60;
763 ConfigChannel.max_chans_per_user = 15;
764 ConfigChannel.max_bans = 25;
765 ConfigChannel.max_bans_large = 500;
766 ConfigChannel.only_ascii_channels = NO;
767 ConfigChannel.burst_topicwho = NO;
768 ConfigChannel.kick_on_split_riding = NO;
769
770 ConfigChannel.default_split_user_count = 15000;
771 ConfigChannel.default_split_server_count = 10;
772 ConfigChannel.no_join_on_split = NO;
773 ConfigChannel.no_create_on_split = YES;
774 ConfigChannel.resv_forcepart = YES;
775 ConfigChannel.channel_target_change = YES;
776 ConfigChannel.disable_local_channels = NO;
777
778 ConfigServerHide.flatten_links = 0;
779 ConfigServerHide.links_delay = 300;
780 ConfigServerHide.hidden = 0;
781 ConfigServerHide.disable_hidden = 0;
782
783 ConfigFileEntry.min_nonwildcard = 4;
784 ConfigFileEntry.min_nonwildcard_simple = 3;
785 ConfigFileEntry.default_floodcount = 8;
786 ConfigFileEntry.default_ident_timeout = 5;
787 ConfigFileEntry.client_flood = CLIENT_FLOOD_DEFAULT;
788 ConfigFileEntry.tkline_expire_notices = 0;
789
790 ConfigFileEntry.reject_after_count = 5;
791 ConfigFileEntry.reject_ban_time = 300;
792 ConfigFileEntry.reject_duration = 120;
793 ConfigFileEntry.throttle_count = 4;
794 ConfigFileEntry.throttle_duration = 60;
795
796 ServerInfo.default_max_clients = MAXCONNECTIONS;
797
798 if (!alias_dict)
799 alias_dict = irc_dictionary_create(strcasecmp);
800 }
801
802 #undef YES
803 #undef NO
804
805 /*
806 * read_conf()
807 *
808 *
809 * inputs - file descriptor pointing to config file to use
810 * output - None
811 * side effects - Read configuration file.
812 */
813 static void
814 read_conf(FILE * file)
815 {
816 lineno = 0;
817
818 set_default_conf(); /* Set default values prior to conf parsing */
819 yyparse(); /* Load the values from the conf */
820 validate_conf(); /* Check to make sure some values are still okay. */
821 /* Some global values are also loaded here. */
822 check_class(); /* Make sure classes are valid */
823 privilegeset_delete_all_illegal();
824 }
825
826 static void
827 validate_conf(void)
828 {
829 if(ConfigFileEntry.ts_warn_delta < TS_WARN_DELTA_MIN)
830 ConfigFileEntry.ts_warn_delta = TS_WARN_DELTA_DEFAULT;
831
832 if(ConfigFileEntry.ts_max_delta < TS_MAX_DELTA_MIN)
833 ConfigFileEntry.ts_max_delta = TS_MAX_DELTA_DEFAULT;
834
835 if(ServerInfo.network_name == NULL)
836 ServerInfo.network_name = rb_strdup(NETWORK_NAME_DEFAULT);
837
838 if(ServerInfo.network_desc == NULL)
839 ServerInfo.network_desc = rb_strdup(NETWORK_DESC_DEFAULT);
840
841 if(ServerInfo.ssld_count < 1)
842 ServerInfo.ssld_count = 1;
843
844 if(!rb_setup_ssl_server(ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params))
845 {
846 ilog(L_MAIN, "WARNING: Unable to setup SSL.");
847 ssl_ok = 0;
848 } else {
849 ssl_ok = 1;
850 send_new_ssl_certs(ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params);
851 }
852
853 if(ServerInfo.ssld_count > get_ssld_count())
854 {
855 int start = ServerInfo.ssld_count - get_ssld_count();
856 /* start up additional ssld if needed */
857 start_ssldaemon(start, ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params);
858
859 }
860
861 if((ConfigFileEntry.client_flood < CLIENT_FLOOD_MIN) ||
862 (ConfigFileEntry.client_flood > CLIENT_FLOOD_MAX))
863 ConfigFileEntry.client_flood = CLIENT_FLOOD_MAX;
864
865 if(!split_users || !split_servers ||
866 (!ConfigChannel.no_create_on_split && !ConfigChannel.no_join_on_split))
867 {
868 rb_event_delete(check_splitmode_ev);
869 check_splitmode_ev = NULL;
870 splitmode = 0;
871 splitchecking = 0;
872 }
873 }
874
875 /* add_temp_kline()
876 *
877 * inputs - pointer to struct ConfItem
878 * output - none
879 * Side effects - links in given struct ConfItem into
880 * temporary kline link list
881 */
882 void
883 add_temp_kline(struct ConfItem *aconf)
884 {
885 if(aconf->hold >= rb_current_time() + (10080 * 60))
886 {
887 rb_dlinkAddAlloc(aconf, &temp_klines[TEMP_WEEK]);
888 aconf->port = TEMP_WEEK;
889 }
890 else if(aconf->hold >= rb_current_time() + (1440 * 60))
891 {
892 rb_dlinkAddAlloc(aconf, &temp_klines[TEMP_DAY]);
893 aconf->port = TEMP_DAY;
894 }
895 else if(aconf->hold >= rb_current_time() + (60 * 60))
896 {
897 rb_dlinkAddAlloc(aconf, &temp_klines[TEMP_HOUR]);
898 aconf->port = TEMP_HOUR;
899 }
900 else
901 {
902 rb_dlinkAddAlloc(aconf, &temp_klines[TEMP_MIN]);
903 aconf->port = TEMP_MIN;
904 }
905
906 aconf->flags |= CONF_FLAGS_TEMPORARY;
907 add_conf_by_address(aconf->host, CONF_KILL, aconf->user, NULL, aconf);
908 }
909
910 /* add_temp_dline()
911 *
912 * input - pointer to struct ConfItem
913 * output - none
914 * side effects - added to tdline link list and address hash
915 */
916 void
917 add_temp_dline(struct ConfItem *aconf)
918 {
919 if(aconf->hold >= rb_current_time() + (10080 * 60))
920 {
921 rb_dlinkAddAlloc(aconf, &temp_dlines[TEMP_WEEK]);
922 aconf->port = TEMP_WEEK;
923 }
924 else if(aconf->hold >= rb_current_time() + (1440 * 60))
925 {
926 rb_dlinkAddAlloc(aconf, &temp_dlines[TEMP_DAY]);
927 aconf->port = TEMP_DAY;
928 }
929 else if(aconf->hold >= rb_current_time() + (60 * 60))
930 {
931 rb_dlinkAddAlloc(aconf, &temp_dlines[TEMP_HOUR]);
932 aconf->port = TEMP_HOUR;
933 }
934 else
935 {
936 rb_dlinkAddAlloc(aconf, &temp_dlines[TEMP_MIN]);
937 aconf->port = TEMP_MIN;
938 }
939
940 aconf->flags |= CONF_FLAGS_TEMPORARY;
941 add_conf_by_address(aconf->host, CONF_DLINE, aconf->user, NULL, aconf);
942 }
943
944 /* valid_wild_card()
945 *
946 * input - user buffer, host buffer
947 * output - 0 if invalid, 1 if valid
948 * side effects -
949 */
950 int
951 valid_wild_card(const char *luser, const char *lhost)
952 {
953 const char *p;
954 char tmpch;
955 int nonwild = 0;
956 int bitlen;
957
958 /* user has no wildcards, always accept -- jilles */
959 if(!strchr(luser, '?') && !strchr(luser, '*'))
960 return 1;
961
962 /* check there are enough non wildcard chars */
963 p = luser;
964 while((tmpch = *p++))
965 {
966 if(!IsKWildChar(tmpch))
967 {
968 /* found enough chars, return */
969 if(++nonwild >= ConfigFileEntry.min_nonwildcard)
970 return 1;
971 }
972 }
973
974 /* try host, as user didnt contain enough */
975 /* special case for cidr masks -- jilles */
976 if((p = strrchr(lhost, '/')) != NULL && IsDigit(p[1]))
977 {
978 bitlen = atoi(p + 1);
979 /* much like non-cidr for ipv6, rather arbitrary for ipv4 */
980 if(bitlen > 0
981 && bitlen >=
982 (strchr(lhost, ':') ? 4 * (ConfigFileEntry.min_nonwildcard - nonwild) : 6 -
983 2 * nonwild))
984 return 1;
985 }
986 else
987 {
988 p = lhost;
989 while((tmpch = *p++))
990 {
991 if(!IsKWildChar(tmpch))
992 if(++nonwild >= ConfigFileEntry.min_nonwildcard)
993 return 1;
994 }
995 }
996
997 return 0;
998 }
999
1000 rb_dlink_node *
1001 find_prop_ban(unsigned int status, const char *user, const char *host)
1002 {
1003 rb_dlink_node *ptr;
1004 struct ConfItem *aconf;
1005
1006 RB_DLINK_FOREACH(ptr, prop_bans.head)
1007 {
1008 aconf = ptr->data;
1009
1010 if((aconf->status & ~CONF_ILLEGAL) == status &&
1011 (!user || !aconf->user ||
1012 !irccmp(aconf->user, user)) &&
1013 !irccmp(aconf->host, host))
1014 return ptr;
1015 }
1016 return NULL;
1017 }
1018
1019 void
1020 deactivate_conf(struct ConfItem *aconf, rb_dlink_node *ptr)
1021 {
1022 int i;
1023
1024 s_assert(ptr->data == aconf);
1025
1026 switch (aconf->status)
1027 {
1028 case CONF_KILL:
1029 if (aconf->lifetime == 0 &&
1030 aconf->flags & CONF_FLAGS_TEMPORARY)
1031 for (i = 0; i < LAST_TEMP_TYPE; i++)
1032 rb_dlinkFindDestroy(aconf, &temp_klines[i]);
1033 /* Make sure delete_one_address_conf() does not
1034 * free the aconf.
1035 */
1036 aconf->clients++;
1037 delete_one_address_conf(aconf->host, aconf);
1038 aconf->clients--;
1039 break;
1040 case CONF_DLINE:
1041 if (aconf->lifetime == 0 &&
1042 aconf->flags & CONF_FLAGS_TEMPORARY)
1043 for (i = 0; i < LAST_TEMP_TYPE; i++)
1044 rb_dlinkFindDestroy(aconf, &temp_dlines[i]);
1045 aconf->clients++;
1046 delete_one_address_conf(aconf->host, aconf);
1047 aconf->clients--;
1048 break;
1049 case CONF_XLINE:
1050 rb_dlinkFindDestroy(aconf, &xline_conf_list);
1051 break;
1052 case CONF_RESV_NICK:
1053 rb_dlinkFindDestroy(aconf, &resv_conf_list);
1054 break;
1055 case CONF_RESV_CHANNEL:
1056 del_from_resv_hash(aconf->host, aconf);
1057 break;
1058 }
1059 if (aconf->lifetime != 0 && rb_current_time() < aconf->lifetime)
1060 aconf->status |= CONF_ILLEGAL;
1061 else
1062 {
1063 if (aconf->lifetime != 0)
1064 rb_dlinkDestroy(ptr, &prop_bans);
1065 free_conf(aconf);
1066 }
1067 }
1068
1069 /* Given a new ban ConfItem, look for any matching ban, update the lifetime
1070 * from it and delete it.
1071 */
1072 void
1073 replace_old_ban(struct ConfItem *aconf)
1074 {
1075 rb_dlink_node *ptr;
1076 struct ConfItem *oldconf;
1077
1078 ptr = find_prop_ban(aconf->status, aconf->user, aconf->host);
1079 if(ptr != NULL)
1080 {
1081 oldconf = ptr->data;
1082 /* Remember at least as long as the old one. */
1083 if(oldconf->lifetime > aconf->lifetime)
1084 aconf->lifetime = oldconf->lifetime;
1085 /* Force creation time to increase. */
1086 if(oldconf->created >= aconf->created)
1087 aconf->created = oldconf->created + 1;
1088 /* Leave at least one second of validity. */
1089 if(aconf->hold <= aconf->created)
1090 aconf->hold = aconf->created + 1;
1091 if(aconf->lifetime < aconf->hold)
1092 aconf->lifetime = aconf->hold;
1093 /* Tell deactivate_conf() to destroy it. */
1094 oldconf->lifetime = rb_current_time();
1095 deactivate_conf(oldconf, ptr);
1096 }
1097 }
1098
1099 static void
1100 expire_prop_bans(void *list)
1101 {
1102 rb_dlink_node *ptr;
1103 rb_dlink_node *next_ptr;
1104 struct ConfItem *aconf;
1105
1106 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, ((rb_dlink_list *) list)->head)
1107 {
1108 aconf = ptr->data;
1109
1110 if(aconf->lifetime <= rb_current_time() ||
1111 (aconf->hold <= rb_current_time() &&
1112 !(aconf->status & CONF_ILLEGAL)))
1113 {
1114 /* Alert opers that a TKline expired - Hwy */
1115 /* XXX show what type of ban it is */
1116 if(ConfigFileEntry.tkline_expire_notices &&
1117 !(aconf->status & CONF_ILLEGAL))
1118 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1119 "Propagated ban for [%s%s%s] expired",
1120 aconf->user ? aconf->user : "",
1121 aconf->user ? "@" : "",
1122 aconf->host ? aconf->host : "*");
1123
1124 /* will destroy or mark illegal */
1125 deactivate_conf(aconf, ptr);
1126 }
1127 }
1128 }
1129
1130 /* expire_tkline()
1131 *
1132 * inputs - list pointer
1133 * - type
1134 * output - NONE
1135 * side effects - expire tklines and moves them between lists
1136 */
1137 static void
1138 expire_temp_kd(void *list)
1139 {
1140 rb_dlink_node *ptr;
1141 rb_dlink_node *next_ptr;
1142 struct ConfItem *aconf;
1143
1144 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, ((rb_dlink_list *) list)->head)
1145 {
1146 aconf = ptr->data;
1147
1148 if(aconf->hold <= rb_current_time())
1149 {
1150 /* Alert opers that a TKline expired - Hwy */
1151 if(ConfigFileEntry.tkline_expire_notices)
1152 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1153 "Temporary K-line for [%s@%s] expired",
1154 (aconf->user) ? aconf->
1155 user : "*", (aconf->host) ? aconf->host : "*");
1156
1157 delete_one_address_conf(aconf->host, aconf);
1158 rb_dlinkDestroy(ptr, list);
1159 }
1160 }
1161 }
1162
1163 static void
1164 reorganise_temp_kd(void *list)
1165 {
1166 struct ConfItem *aconf;
1167 rb_dlink_node *ptr, *next_ptr;
1168
1169 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, ((rb_dlink_list *) list)->head)
1170 {
1171 aconf = ptr->data;
1172
1173 if(aconf->hold < (rb_current_time() + (60 * 60)))
1174 {
1175 rb_dlinkMoveNode(ptr, list, (aconf->status == CONF_KILL) ?
1176 &temp_klines[TEMP_MIN] : &temp_dlines[TEMP_MIN]);
1177 aconf->port = TEMP_MIN;
1178 }
1179 else if(aconf->port > TEMP_HOUR)
1180 {
1181 if(aconf->hold < (rb_current_time() + (1440 * 60)))
1182 {
1183 rb_dlinkMoveNode(ptr, list, (aconf->status == CONF_KILL) ?
1184 &temp_klines[TEMP_HOUR] : &temp_dlines[TEMP_HOUR]);
1185 aconf->port = TEMP_HOUR;
1186 }
1187 else if(aconf->port > TEMP_DAY &&
1188 (aconf->hold < (rb_current_time() + (10080 * 60))))
1189 {
1190 rb_dlinkMoveNode(ptr, list, (aconf->status == CONF_KILL) ?
1191 &temp_klines[TEMP_DAY] : &temp_dlines[TEMP_DAY]);
1192 aconf->port = TEMP_DAY;
1193 }
1194 }
1195 }
1196 }
1197
1198
1199 /* const char* get_oper_name(struct Client *client_p)
1200 * Input: A client to find the active oper{} name for.
1201 * Output: The nick!user@host{oper} of the oper.
1202 * "oper" is server name for remote opers
1203 * Side effects: None.
1204 */
1205 char *
1206 get_oper_name(struct Client *client_p)
1207 {
1208 /* +5 for !,@,{,} and null */
1209 static char buffer[NICKLEN + USERLEN + HOSTLEN + HOSTLEN + 5];
1210
1211 if(MyOper(client_p))
1212 {
1213 rb_snprintf(buffer, sizeof(buffer), "%s!%s@%s{%s}",
1214 client_p->name, client_p->username,
1215 client_p->host, client_p->localClient->opername);
1216 return buffer;
1217 }
1218
1219 rb_snprintf(buffer, sizeof(buffer), "%s!%s@%s{%s}",
1220 client_p->name, client_p->username,
1221 client_p->host, client_p->servptr->name);
1222 return buffer;
1223 }
1224
1225 /*
1226 * get_printable_conf
1227 *
1228 * inputs - struct ConfItem
1229 *
1230 * output - name
1231 * - host
1232 * - pass
1233 * - user
1234 * - port
1235 *
1236 * side effects -
1237 * Examine the struct struct ConfItem, setting the values
1238 * of name, host, pass, user to values either
1239 * in aconf, or "<NULL>" port is set to aconf->port in all cases.
1240 */
1241 void
1242 get_printable_conf(struct ConfItem *aconf, char **name, char **host,
1243 char **pass, char **user, int *port, char **classname)
1244 {
1245 static char null[] = "<NULL>";
1246 static char zero[] = "default";
1247
1248 *name = EmptyString(aconf->info.name) ? null : aconf->info.name;
1249 *host = EmptyString(aconf->host) ? null : aconf->host;
1250 *pass = EmptyString(aconf->passwd) ? null : aconf->passwd;
1251 *user = EmptyString(aconf->user) ? null : aconf->user;
1252 *classname = EmptyString(aconf->className) ? zero : aconf->className;
1253 *port = (int) aconf->port;
1254 }
1255
1256 char *
1257 get_user_ban_reason(struct ConfItem *aconf)
1258 {
1259 static char reasonbuf[BUFSIZE];
1260
1261 if (aconf->flags & CONF_FLAGS_TEMPORARY &&
1262 (aconf->status == CONF_KILL || aconf->status == CONF_DLINE))
1263 rb_snprintf(reasonbuf, sizeof reasonbuf,
1264 "Temporary %c-line %d min. - ",
1265 aconf->status == CONF_DLINE ? 'D' : 'K',
1266 (int)((aconf->hold - aconf->created) / 60));
1267 else
1268 reasonbuf[0] = '\0';
1269 if (aconf->passwd)
1270 rb_strlcat(reasonbuf, aconf->passwd, sizeof reasonbuf);
1271 else
1272 rb_strlcat(reasonbuf, "No Reason", sizeof reasonbuf);
1273 if (aconf->created)
1274 {
1275 rb_strlcat(reasonbuf, " (", sizeof reasonbuf);
1276 rb_strlcat(reasonbuf, smalldate(aconf->created),
1277 sizeof reasonbuf);
1278 rb_strlcat(reasonbuf, ")", sizeof reasonbuf);
1279 }
1280 return reasonbuf;
1281 }
1282
1283 void
1284 get_printable_kline(struct Client *source_p, struct ConfItem *aconf,
1285 char **host, char **reason,
1286 char **user, char **oper_reason)
1287 {
1288 static char null[] = "<NULL>";
1289 static char operreasonbuf[BUFSIZE];
1290
1291 *host = EmptyString(aconf->host) ? null : aconf->host;
1292 *user = EmptyString(aconf->user) ? null : aconf->user;
1293 *reason = get_user_ban_reason(aconf);
1294
1295 if(!IsOper(source_p))
1296 *oper_reason = NULL;
1297 else
1298 {
1299 rb_snprintf(operreasonbuf, sizeof operreasonbuf, "%s%s(%s)",
1300 EmptyString(aconf->spasswd) ? "" : aconf->spasswd,
1301 EmptyString(aconf->spasswd) ? "" : " ",
1302 aconf->info.oper);
1303 *oper_reason = operreasonbuf;
1304 }
1305 }
1306
1307 /*
1308 * read_conf_files
1309 *
1310 * inputs - cold start YES or NO
1311 * output - none
1312 * side effects - read all conf files needed, ircd.conf kline.conf etc.
1313 */
1314 void
1315 read_conf_files(int cold)
1316 {
1317 const char *filename;
1318
1319 conf_fbfile_in = NULL;
1320
1321 filename = ConfigFileEntry.configfile;
1322
1323 /* We need to know the initial filename for the yyerror() to report
1324 FIXME: The full path is in conffilenamebuf first time since we
1325 dont know anything else
1326
1327 - Gozem 2002-07-21
1328 */
1329 rb_strlcpy(conffilebuf, filename, sizeof(conffilebuf));
1330
1331 if((conf_fbfile_in = fopen(filename, "r")) == NULL)
1332 {
1333 if(cold)
1334 {
1335 ilog(L_MAIN, "Failed in reading configuration file %s", filename);
1336 exit(-1);
1337 }
1338 else
1339 {
1340 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1341 "Can't open file '%s' - aborting rehash!", filename);
1342 return;
1343 }
1344 }
1345
1346 if(!cold)
1347 {
1348 clear_out_old_conf();
1349 }
1350
1351 read_conf(conf_fbfile_in);
1352 fclose(conf_fbfile_in);
1353 }
1354
1355 /*
1356 * free an alias{} entry.
1357 */
1358 static void
1359 free_alias_cb(struct DictionaryElement *ptr, void *unused)
1360 {
1361 struct alias_entry *aptr = ptr->data;
1362
1363 rb_free(aptr->name);
1364 rb_free(aptr->target);
1365 rb_free(aptr);
1366 }
1367
1368 /*
1369 * clear_out_old_conf
1370 *
1371 * inputs - none
1372 * output - none
1373 * side effects - Clear out the old configuration
1374 */
1375 static void
1376 clear_out_old_conf(void)
1377 {
1378 struct Class *cltmp;
1379 rb_dlink_node *ptr;
1380 rb_dlink_node *next_ptr;
1381
1382 /*
1383 * don't delete the class table, rather mark all entries
1384 * for deletion. The table is cleaned up by check_class. - avalon
1385 */
1386 RB_DLINK_FOREACH(ptr, class_list.head)
1387 {
1388 cltmp = ptr->data;
1389 MaxUsers(cltmp) = -1;
1390 }
1391
1392 clear_out_address_conf();
1393 clear_s_newconf();
1394
1395 /* clean out module paths */
1396 #ifndef STATIC_MODULES
1397 mod_clear_paths();
1398 mod_add_path(MODULE_DIR);
1399 mod_add_path(MODULE_DIR "/autoload");
1400 #endif
1401
1402 /* clean out ServerInfo */
1403 rb_free(ServerInfo.description);
1404 ServerInfo.description = NULL;
1405 rb_free(ServerInfo.network_name);
1406 ServerInfo.network_name = NULL;
1407 rb_free(ServerInfo.network_desc);
1408 ServerInfo.network_desc = NULL;
1409
1410 ServerInfo.ssld_count = 1;
1411
1412 /* clean out AdminInfo */
1413 rb_free(AdminInfo.name);
1414 AdminInfo.name = NULL;
1415 rb_free(AdminInfo.email);
1416 AdminInfo.email = NULL;
1417 rb_free(AdminInfo.description);
1418 AdminInfo.description = NULL;
1419
1420 /* operator{} and class{} blocks are freed above */
1421 /* clean out listeners */
1422 close_listeners();
1423
1424 /* auth{}, quarantine{}, shared{}, connect{}, kill{}, deny{}, exempt{}
1425 * and gecos{} blocks are freed above too
1426 */
1427
1428 /* clean out general */
1429 rb_free(ConfigFileEntry.kline_reason);
1430 ConfigFileEntry.kline_reason = NULL;
1431
1432 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, service_list.head)
1433 {
1434 rb_free(ptr->data);
1435 rb_dlinkDestroy(ptr, &service_list);
1436 }
1437
1438 /* remove any aliases... -- nenolod */
1439 if (alias_dict != NULL)
1440 {
1441 irc_dictionary_destroy(alias_dict, free_alias_cb, NULL);
1442 alias_dict = NULL;
1443 }
1444
1445 destroy_blacklists();
1446
1447 privilegeset_mark_all_illegal();
1448
1449 /* OK, that should be everything... */
1450 }
1451
1452
1453 /*
1454 * conf_add_class_to_conf
1455 * inputs - pointer to config item
1456 * output - NONE
1457 * side effects - Add a class pointer to a conf
1458 */
1459
1460 void
1461 conf_add_class_to_conf(struct ConfItem *aconf)
1462 {
1463 if(aconf->className == NULL)
1464 {
1465 aconf->className = rb_strdup("default");
1466 ClassPtr(aconf) = default_class;
1467 return;
1468 }
1469
1470 ClassPtr(aconf) = find_class(aconf->className);
1471
1472 if(ClassPtr(aconf) == default_class)
1473 {
1474 if(aconf->status == CONF_CLIENT)
1475 {
1476 conf_report_error(
1477 "Using default class for missing class \"%s\" in auth{} for %s@%s",
1478 aconf->className, aconf->user, aconf->host);
1479 }
1480
1481 rb_free(aconf->className);
1482 aconf->className = rb_strdup("default");
1483 return;
1484 }
1485
1486 if(ConfMaxUsers(aconf) < 0)
1487 {
1488 ClassPtr(aconf) = default_class;
1489 rb_free(aconf->className);
1490 aconf->className = rb_strdup("default");
1491 return;
1492 }
1493 }
1494
1495 /*
1496 * conf_add_d_conf
1497 * inputs - pointer to config item
1498 * output - NONE
1499 * side effects - Add a d/D line
1500 */
1501 void
1502 conf_add_d_conf(struct ConfItem *aconf)
1503 {
1504 if(aconf->host == NULL)
1505 return;
1506
1507 aconf->user = NULL;
1508
1509 /* XXX - Should 'd' ever be in the old conf? For new conf we don't
1510 * need this anyway, so I will disable it for now... -A1kmm
1511 */
1512
1513 if(parse_netmask(aconf->host, NULL, NULL) == HM_HOST)
1514 {
1515 ilog(L_MAIN, "Invalid Dline %s ignored", aconf->host);
1516 free_conf(aconf);
1517 }
1518 else
1519 {
1520 add_conf_by_address(aconf->host, CONF_DLINE, NULL, NULL, aconf);
1521 }
1522 }
1523
1524 static char *
1525 strip_tabs(char *dest, const char *src, size_t len)
1526 {
1527 char *d = dest;
1528
1529 if(dest == NULL || src == NULL)
1530 return NULL;
1531
1532 rb_strlcpy(dest, src, len);
1533
1534 while(*d)
1535 {
1536 if(*d == '\t')
1537 *d = ' ';
1538 d++;
1539 }
1540 return dest;
1541 }
1542
1543 /*
1544 * yyerror
1545 *
1546 * inputs - message from parser
1547 * output - none
1548 * side effects - message to opers and log file entry is made
1549 */
1550 void
1551 yyerror(const char *msg)
1552 {
1553 char newlinebuf[BUFSIZE];
1554
1555 strip_tabs(newlinebuf, linebuf, strlen(linebuf));
1556
1557 ierror("\"%s\", line %d: %s at '%s'", conffilebuf, lineno + 1, msg, newlinebuf);
1558 sendto_realops_snomask(SNO_GENERAL, L_ALL, "\"%s\", line %d: %s at '%s'",
1559 conffilebuf, lineno + 1, msg, newlinebuf);
1560
1561 }
1562
1563 int
1564 conf_fgets(char *lbuf, int max_size, FILE * fb)
1565 {
1566 if(fgets(lbuf, max_size, fb) == NULL)
1567 return (0);
1568
1569 return (strlen(lbuf));
1570 }
1571
1572 int
1573 conf_yy_fatal_error(const char *msg)
1574 {
1575 return (0);
1576 }