]> jfr.im git - solanum.git/blob - src/s_conf.c
BAN: Reject bans with insufficient non-wildcard characters.
[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 = 0;
487
488 if(IsConfExemptLimits(aconf))
489 return (attach_conf(client_p, aconf));
490
491 if(*client_p->username == '~')
492 unidented = 1;
493
494
495 /* find_hostname() returns the head of the list to search */
496 RB_DLINK_FOREACH(ptr, find_hostname(client_p->host))
497 {
498 target_p = ptr->data;
499
500 if(irccmp(client_p->host, target_p->orighost) != 0)
501 continue;
502
503 if(MyConnect(target_p))
504 local_count++;
505
506 global_count++;
507
508 if(unidented)
509 {
510 if(*target_p->username == '~')
511 ident_count++;
512 }
513 else if(irccmp(target_p->username, client_p->username) == 0)
514 ident_count++;
515
516 if(ConfMaxLocal(aconf) && local_count >= ConfMaxLocal(aconf))
517 return (TOO_MANY_LOCAL);
518 else if(ConfMaxGlobal(aconf) && global_count >= ConfMaxGlobal(aconf))
519 return (TOO_MANY_GLOBAL);
520 else if(ConfMaxIdent(aconf) && ident_count >= ConfMaxIdent(aconf))
521 return (TOO_MANY_IDENT);
522 }
523
524
525 return (attach_conf(client_p, aconf));
526 }
527
528 /*
529 * detach_conf
530 *
531 * inputs - pointer to client to detach
532 * output - 0 for success, -1 for failure
533 * side effects - Disassociate configuration from the client.
534 * Also removes a class from the list if marked for deleting.
535 */
536 int
537 detach_conf(struct Client *client_p)
538 {
539 struct ConfItem *aconf;
540
541 aconf = client_p->localClient->att_conf;
542
543 if(aconf != NULL)
544 {
545 if(ClassPtr(aconf))
546 {
547 remove_ip_limit(client_p, aconf);
548
549 if(ConfCurrUsers(aconf) > 0)
550 --ConfCurrUsers(aconf);
551
552 if(ConfMaxUsers(aconf) == -1 && ConfCurrUsers(aconf) == 0)
553 {
554 free_class(ClassPtr(aconf));
555 ClassPtr(aconf) = NULL;
556 }
557
558 }
559
560 aconf->clients--;
561 if(!aconf->clients && IsIllegal(aconf))
562 free_conf(aconf);
563
564 client_p->localClient->att_conf = NULL;
565 return 0;
566 }
567
568 return -1;
569 }
570
571 /*
572 * attach_conf
573 *
574 * inputs - client pointer
575 * - conf pointer
576 * output -
577 * side effects - Associate a specific configuration entry to a *local*
578 * client (this is the one which used in accepting the
579 * connection). Note, that this automatically changes the
580 * attachment if there was an old one...
581 */
582 int
583 attach_conf(struct Client *client_p, struct ConfItem *aconf)
584 {
585 if(IsIllegal(aconf))
586 return (NOT_AUTHORISED);
587
588 if(ClassPtr(aconf))
589 {
590 if(!add_ip_limit(client_p, aconf))
591 return (TOO_MANY_LOCAL);
592 }
593
594 if((aconf->status & CONF_CLIENT) &&
595 ConfCurrUsers(aconf) >= ConfMaxUsers(aconf) && ConfMaxUsers(aconf) > 0)
596 {
597 if(!IsConfExemptLimits(aconf))
598 {
599 return (I_LINE_FULL);
600 }
601 else
602 {
603 sendto_one_notice(client_p, ":*** I: line is full, but you have an >I: line!");
604 }
605
606 }
607
608 if(client_p->localClient->att_conf != NULL)
609 detach_conf(client_p);
610
611 client_p->localClient->att_conf = aconf;
612
613 aconf->clients++;
614 ConfCurrUsers(aconf)++;
615 return (0);
616 }
617
618 /*
619 * rehash
620 *
621 * Actual REHASH service routine. Called with sig == 0 if it has been called
622 * as a result of an operator issuing this command, else assume it has been
623 * called as a result of the server receiving a HUP signal.
624 */
625 int
626 rehash(int sig)
627 {
628 if(sig != 0)
629 {
630 sendto_realops_snomask(SNO_GENERAL, L_ALL,
631 "Got signal SIGHUP, reloading ircd conf. file");
632 }
633
634 restart_resolver();
635 /* don't close listeners until we know we can go ahead with the rehash */
636 read_conf_files(NO);
637
638 if(ServerInfo.description != NULL)
639 rb_strlcpy(me.info, ServerInfo.description, sizeof(me.info));
640 else
641 rb_strlcpy(me.info, "unknown", sizeof(me.info));
642
643 open_logfiles();
644 return (0);
645 }
646
647 void
648 rehash_bans(int sig)
649 {
650 bandb_rehash_bans();
651 }
652
653 /*
654 * set_default_conf()
655 *
656 * inputs - NONE
657 * output - NONE
658 * side effects - Set default values here.
659 * This is called **PRIOR** to parsing the
660 * configuration file. If you want to do some validation
661 * of values later, put them in validate_conf().
662 */
663
664 #define YES 1
665 #define NO 0
666 #define UNSET -1
667
668 static void
669 set_default_conf(void)
670 {
671 /* ServerInfo.name is not rehashable */
672 /* ServerInfo.name = ServerInfo.name; */
673 ServerInfo.description = NULL;
674 ServerInfo.network_name = rb_strdup(NETWORK_NAME_DEFAULT);
675 ServerInfo.network_desc = rb_strdup(NETWORK_DESC_DEFAULT);
676
677 memset(&ServerInfo.ip, 0, sizeof(ServerInfo.ip));
678 ServerInfo.specific_ipv4_vhost = 0;
679 #ifdef RB_IPV6
680 memset(&ServerInfo.ip6, 0, sizeof(ServerInfo.ip6));
681 ServerInfo.specific_ipv6_vhost = 0;
682 #endif
683
684 /* Don't reset hub, as that will break lazylinks */
685 /* ServerInfo.hub = NO; */
686 AdminInfo.name = NULL;
687 AdminInfo.email = NULL;
688 AdminInfo.description = NULL;
689
690 ConfigFileEntry.default_operstring = rb_strdup("is an IRC operator");
691 ConfigFileEntry.default_adminstring = rb_strdup("is a Server Administrator");
692 ConfigFileEntry.servicestring = rb_strdup("is a Network Service");
693
694 ConfigFileEntry.default_umodes = UMODE_INVISIBLE;
695 ConfigFileEntry.failed_oper_notice = YES;
696 ConfigFileEntry.anti_nick_flood = NO;
697 ConfigFileEntry.disable_fake_channels = NO;
698 ConfigFileEntry.max_nick_time = 20;
699 ConfigFileEntry.max_nick_changes = 5;
700 ConfigFileEntry.max_accept = 20;
701 ConfigFileEntry.max_monitor = 60;
702 ConfigFileEntry.nick_delay = 900; /* 15 minutes */
703 ConfigFileEntry.target_change = YES;
704 ConfigFileEntry.anti_spam_exit_message_time = 0;
705 ConfigFileEntry.ts_warn_delta = TS_WARN_DELTA_DEFAULT;
706 ConfigFileEntry.ts_max_delta = TS_MAX_DELTA_DEFAULT;
707 ConfigFileEntry.client_exit = YES;
708 ConfigFileEntry.dline_with_reason = YES;
709 ConfigFileEntry.kline_with_reason = YES;
710 ConfigFileEntry.kline_delay = 0;
711 ConfigFileEntry.warn_no_nline = YES;
712 ConfigFileEntry.non_redundant_klines = YES;
713 ConfigFileEntry.stats_e_disabled = NO;
714 ConfigFileEntry.stats_o_oper_only = NO;
715 ConfigFileEntry.stats_k_oper_only = 1; /* masked */
716 ConfigFileEntry.stats_i_oper_only = 1; /* masked */
717 ConfigFileEntry.stats_P_oper_only = NO;
718 ConfigFileEntry.stats_c_oper_only = NO;
719 ConfigFileEntry.stats_y_oper_only = NO;
720 ConfigFileEntry.stats_h_oper_only = NO;
721 ConfigFileEntry.map_oper_only = YES;
722 ConfigFileEntry.operspy_admin_only = NO;
723 ConfigFileEntry.pace_wait = 10;
724 ConfigFileEntry.caller_id_wait = 60;
725 ConfigFileEntry.pace_wait_simple = 1;
726 ConfigFileEntry.short_motd = NO;
727 ConfigFileEntry.no_oper_flood = NO;
728 ConfigFileEntry.fname_userlog = NULL;
729 ConfigFileEntry.fname_fuserlog = NULL;
730 ConfigFileEntry.fname_operlog = NULL;
731 ConfigFileEntry.fname_foperlog = NULL;
732 ConfigFileEntry.fname_serverlog = NULL;
733 ConfigFileEntry.fname_klinelog = NULL;
734 ConfigFileEntry.fname_operspylog = NULL;
735 ConfigFileEntry.fname_ioerrorlog = NULL;
736 ConfigFileEntry.use_egd = NO;
737 ConfigFileEntry.hide_spoof_ips = YES;
738 ConfigFileEntry.hide_error_messages = 1;
739 ConfigFileEntry.dots_in_ident = 0;
740 ConfigFileEntry.max_targets = MAX_TARGETS_DEFAULT;
741 ConfigFileEntry.egdpool_path = NULL;
742 ConfigFileEntry.use_whois_actually = YES;
743 ConfigFileEntry.burst_away = NO;
744 ConfigFileEntry.collision_fnc = YES;
745 ConfigFileEntry.global_snotices = YES;
746 ConfigFileEntry.operspy_dont_care_user_info = NO;
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
776 ConfigServerHide.flatten_links = 0;
777 ConfigServerHide.links_delay = 300;
778 ConfigServerHide.hidden = 0;
779 ConfigServerHide.disable_hidden = 0;
780
781 ConfigFileEntry.min_nonwildcard = 4;
782 ConfigFileEntry.min_nonwildcard_simple = 3;
783 ConfigFileEntry.default_floodcount = 8;
784 ConfigFileEntry.client_flood = CLIENT_FLOOD_DEFAULT;
785 ConfigFileEntry.tkline_expire_notices = 0;
786
787 ConfigFileEntry.reject_after_count = 5;
788 ConfigFileEntry.reject_ban_time = 300;
789 ConfigFileEntry.reject_duration = 120;
790 ConfigFileEntry.throttle_count = 4;
791 ConfigFileEntry.throttle_duration = 60;
792
793 ServerInfo.default_max_clients = MAXCONNECTIONS;
794
795 if (!alias_dict)
796 alias_dict = irc_dictionary_create(strcasecmp);
797 }
798
799 #undef YES
800 #undef NO
801
802 /*
803 * read_conf()
804 *
805 *
806 * inputs - file descriptor pointing to config file to use
807 * output - None
808 * side effects - Read configuration file.
809 */
810 static void
811 read_conf(FILE * file)
812 {
813 lineno = 0;
814
815 set_default_conf(); /* Set default values prior to conf parsing */
816 yyparse(); /* Load the values from the conf */
817 validate_conf(); /* Check to make sure some values are still okay. */
818 /* Some global values are also loaded here. */
819 check_class(); /* Make sure classes are valid */
820 privilegeset_delete_all_illegal();
821 }
822
823 static void
824 validate_conf(void)
825 {
826 if(ConfigFileEntry.ts_warn_delta < TS_WARN_DELTA_MIN)
827 ConfigFileEntry.ts_warn_delta = TS_WARN_DELTA_DEFAULT;
828
829 if(ConfigFileEntry.ts_max_delta < TS_MAX_DELTA_MIN)
830 ConfigFileEntry.ts_max_delta = TS_MAX_DELTA_DEFAULT;
831
832 if(ServerInfo.network_name == NULL)
833 ServerInfo.network_name = rb_strdup(NETWORK_NAME_DEFAULT);
834
835 if(ServerInfo.network_desc == NULL)
836 ServerInfo.network_desc = rb_strdup(NETWORK_DESC_DEFAULT);
837
838 if(ServerInfo.ssld_count < 1)
839 ServerInfo.ssld_count = 1;
840
841 if(!rb_setup_ssl_server(ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params))
842 {
843 ilog(L_MAIN, "WARNING: Unable to setup SSL.");
844 ssl_ok = 0;
845 } else {
846 ssl_ok = 1;
847 send_new_ssl_certs(ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params);
848 }
849
850 if(ServerInfo.ssld_count > get_ssld_count())
851 {
852 int start = ServerInfo.ssld_count - get_ssld_count();
853 /* start up additional ssld if needed */
854 start_ssldaemon(start, ServerInfo.ssl_cert, ServerInfo.ssl_private_key, ServerInfo.ssl_dh_params);
855
856 }
857
858 if((ConfigFileEntry.client_flood < CLIENT_FLOOD_MIN) ||
859 (ConfigFileEntry.client_flood > CLIENT_FLOOD_MAX))
860 ConfigFileEntry.client_flood = CLIENT_FLOOD_MAX;
861
862 if(!split_users || !split_servers ||
863 (!ConfigChannel.no_create_on_split && !ConfigChannel.no_join_on_split))
864 {
865 rb_event_delete(check_splitmode_ev);
866 check_splitmode_ev = NULL;
867 splitmode = 0;
868 splitchecking = 0;
869 }
870 }
871
872 /* add_temp_kline()
873 *
874 * inputs - pointer to struct ConfItem
875 * output - none
876 * Side effects - links in given struct ConfItem into
877 * temporary kline link list
878 */
879 void
880 add_temp_kline(struct ConfItem *aconf)
881 {
882 if(aconf->hold >= rb_current_time() + (10080 * 60))
883 {
884 rb_dlinkAddAlloc(aconf, &temp_klines[TEMP_WEEK]);
885 aconf->port = TEMP_WEEK;
886 }
887 else if(aconf->hold >= rb_current_time() + (1440 * 60))
888 {
889 rb_dlinkAddAlloc(aconf, &temp_klines[TEMP_DAY]);
890 aconf->port = TEMP_DAY;
891 }
892 else if(aconf->hold >= rb_current_time() + (60 * 60))
893 {
894 rb_dlinkAddAlloc(aconf, &temp_klines[TEMP_HOUR]);
895 aconf->port = TEMP_HOUR;
896 }
897 else
898 {
899 rb_dlinkAddAlloc(aconf, &temp_klines[TEMP_MIN]);
900 aconf->port = TEMP_MIN;
901 }
902
903 aconf->flags |= CONF_FLAGS_TEMPORARY;
904 add_conf_by_address(aconf->host, CONF_KILL, aconf->user, NULL, aconf);
905 }
906
907 /* add_temp_dline()
908 *
909 * input - pointer to struct ConfItem
910 * output - none
911 * side effects - added to tdline link list and address hash
912 */
913 void
914 add_temp_dline(struct ConfItem *aconf)
915 {
916 if(aconf->hold >= rb_current_time() + (10080 * 60))
917 {
918 rb_dlinkAddAlloc(aconf, &temp_dlines[TEMP_WEEK]);
919 aconf->port = TEMP_WEEK;
920 }
921 else if(aconf->hold >= rb_current_time() + (1440 * 60))
922 {
923 rb_dlinkAddAlloc(aconf, &temp_dlines[TEMP_DAY]);
924 aconf->port = TEMP_DAY;
925 }
926 else if(aconf->hold >= rb_current_time() + (60 * 60))
927 {
928 rb_dlinkAddAlloc(aconf, &temp_dlines[TEMP_HOUR]);
929 aconf->port = TEMP_HOUR;
930 }
931 else
932 {
933 rb_dlinkAddAlloc(aconf, &temp_dlines[TEMP_MIN]);
934 aconf->port = TEMP_MIN;
935 }
936
937 aconf->flags |= CONF_FLAGS_TEMPORARY;
938 add_conf_by_address(aconf->host, CONF_DLINE, aconf->user, NULL, aconf);
939 }
940
941 /* valid_wild_card()
942 *
943 * input - user buffer, host buffer
944 * output - 0 if invalid, 1 if valid
945 * side effects -
946 */
947 int
948 valid_wild_card(const char *luser, const char *lhost)
949 {
950 const char *p;
951 char tmpch;
952 int nonwild = 0;
953 int bitlen;
954
955 /* user has no wildcards, always accept -- jilles */
956 if(!strchr(luser, '?') && !strchr(luser, '*'))
957 return 1;
958
959 /* check there are enough non wildcard chars */
960 p = luser;
961 while((tmpch = *p++))
962 {
963 if(!IsKWildChar(tmpch))
964 {
965 /* found enough chars, return */
966 if(++nonwild >= ConfigFileEntry.min_nonwildcard)
967 return 1;
968 }
969 }
970
971 /* try host, as user didnt contain enough */
972 /* special case for cidr masks -- jilles */
973 if((p = strrchr(lhost, '/')) != NULL && IsDigit(p[1]))
974 {
975 bitlen = atoi(p + 1);
976 /* much like non-cidr for ipv6, rather arbitrary for ipv4 */
977 if(bitlen > 0
978 && bitlen >=
979 (strchr(lhost, ':') ? 4 * (ConfigFileEntry.min_nonwildcard - nonwild) : 6 -
980 2 * nonwild))
981 return 1;
982 }
983 else
984 {
985 p = lhost;
986 while((tmpch = *p++))
987 {
988 if(!IsKWildChar(tmpch))
989 if(++nonwild >= ConfigFileEntry.min_nonwildcard)
990 return 1;
991 }
992 }
993
994 return 0;
995 }
996
997 rb_dlink_node *
998 find_prop_ban(unsigned int status, const char *user, const char *host)
999 {
1000 rb_dlink_node *ptr;
1001 struct ConfItem *aconf;
1002
1003 RB_DLINK_FOREACH(ptr, prop_bans.head)
1004 {
1005 aconf = ptr->data;
1006
1007 if((aconf->status & ~CONF_ILLEGAL) == status &&
1008 (!user || !aconf->user ||
1009 !irccmp(aconf->user, user)) &&
1010 !irccmp(aconf->host, host))
1011 return ptr;
1012 }
1013 return NULL;
1014 }
1015
1016 void
1017 deactivate_conf(struct ConfItem *aconf, rb_dlink_node *ptr)
1018 {
1019 int i;
1020
1021 s_assert(ptr->data == aconf);
1022
1023 switch (aconf->status)
1024 {
1025 case CONF_KILL:
1026 if (aconf->lifetime == 0 &&
1027 aconf->flags & CONF_FLAGS_TEMPORARY)
1028 for (i = 0; i < LAST_TEMP_TYPE; i++)
1029 rb_dlinkFindDestroy(aconf, &temp_klines[i]);
1030 /* Make sure delete_one_address_conf() does not
1031 * free the aconf.
1032 */
1033 aconf->clients++;
1034 delete_one_address_conf(aconf->host, aconf);
1035 aconf->clients--;
1036 break;
1037 case CONF_DLINE:
1038 if (aconf->lifetime == 0 &&
1039 aconf->flags & CONF_FLAGS_TEMPORARY)
1040 for (i = 0; i < LAST_TEMP_TYPE; i++)
1041 rb_dlinkFindDestroy(aconf, &temp_dlines[i]);
1042 aconf->clients++;
1043 delete_one_address_conf(aconf->host, aconf);
1044 aconf->clients--;
1045 break;
1046 case CONF_XLINE:
1047 rb_dlinkFindDestroy(aconf, &xline_conf_list);
1048 break;
1049 case CONF_RESV_NICK:
1050 rb_dlinkFindDestroy(aconf, &resv_conf_list);
1051 break;
1052 case CONF_RESV_CHANNEL:
1053 del_from_resv_hash(aconf->host, aconf);
1054 break;
1055 }
1056 if (aconf->lifetime != 0 && rb_current_time() < aconf->lifetime)
1057 aconf->status |= CONF_ILLEGAL;
1058 else
1059 {
1060 if (aconf->lifetime != 0)
1061 rb_dlinkDestroy(ptr, &prop_bans);
1062 free_conf(aconf);
1063 }
1064 }
1065
1066 static void
1067 expire_prop_bans(void *list)
1068 {
1069 rb_dlink_node *ptr;
1070 rb_dlink_node *next_ptr;
1071 struct ConfItem *aconf;
1072
1073 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, ((rb_dlink_list *) list)->head)
1074 {
1075 aconf = ptr->data;
1076
1077 if(aconf->lifetime <= rb_current_time() ||
1078 (aconf->hold <= rb_current_time() &&
1079 !(aconf->status & CONF_ILLEGAL)))
1080 {
1081 /* Alert opers that a TKline expired - Hwy */
1082 /* XXX show what type of ban it is */
1083 if(ConfigFileEntry.tkline_expire_notices &&
1084 !(aconf->status & CONF_ILLEGAL))
1085 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1086 "Propagated ban for [%s%s%s] expired",
1087 aconf->user ? aconf->user : "",
1088 aconf->user ? "@" : "",
1089 aconf->host ? aconf->host : "*");
1090
1091 /* will destroy or mark illegal */
1092 deactivate_conf(aconf, ptr);
1093 }
1094 }
1095 }
1096
1097 /* expire_tkline()
1098 *
1099 * inputs - list pointer
1100 * - type
1101 * output - NONE
1102 * side effects - expire tklines and moves them between lists
1103 */
1104 static void
1105 expire_temp_kd(void *list)
1106 {
1107 rb_dlink_node *ptr;
1108 rb_dlink_node *next_ptr;
1109 struct ConfItem *aconf;
1110
1111 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, ((rb_dlink_list *) list)->head)
1112 {
1113 aconf = ptr->data;
1114
1115 if(aconf->hold <= rb_current_time())
1116 {
1117 /* Alert opers that a TKline expired - Hwy */
1118 if(ConfigFileEntry.tkline_expire_notices)
1119 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1120 "Temporary K-line for [%s@%s] expired",
1121 (aconf->user) ? aconf->
1122 user : "*", (aconf->host) ? aconf->host : "*");
1123
1124 delete_one_address_conf(aconf->host, aconf);
1125 rb_dlinkDestroy(ptr, list);
1126 }
1127 }
1128 }
1129
1130 static void
1131 reorganise_temp_kd(void *list)
1132 {
1133 struct ConfItem *aconf;
1134 rb_dlink_node *ptr, *next_ptr;
1135
1136 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, ((rb_dlink_list *) list)->head)
1137 {
1138 aconf = ptr->data;
1139
1140 if(aconf->hold < (rb_current_time() + (60 * 60)))
1141 {
1142 rb_dlinkMoveNode(ptr, list, (aconf->status == CONF_KILL) ?
1143 &temp_klines[TEMP_MIN] : &temp_dlines[TEMP_MIN]);
1144 aconf->port = TEMP_MIN;
1145 }
1146 else if(aconf->port > TEMP_HOUR)
1147 {
1148 if(aconf->hold < (rb_current_time() + (1440 * 60)))
1149 {
1150 rb_dlinkMoveNode(ptr, list, (aconf->status == CONF_KILL) ?
1151 &temp_klines[TEMP_HOUR] : &temp_dlines[TEMP_HOUR]);
1152 aconf->port = TEMP_HOUR;
1153 }
1154 else if(aconf->port > TEMP_DAY &&
1155 (aconf->hold < (rb_current_time() + (10080 * 60))))
1156 {
1157 rb_dlinkMoveNode(ptr, list, (aconf->status == CONF_KILL) ?
1158 &temp_klines[TEMP_DAY] : &temp_dlines[TEMP_DAY]);
1159 aconf->port = TEMP_DAY;
1160 }
1161 }
1162 }
1163 }
1164
1165
1166 /* const char* get_oper_name(struct Client *client_p)
1167 * Input: A client to find the active oper{} name for.
1168 * Output: The nick!user@host{oper} of the oper.
1169 * "oper" is server name for remote opers
1170 * Side effects: None.
1171 */
1172 char *
1173 get_oper_name(struct Client *client_p)
1174 {
1175 /* +5 for !,@,{,} and null */
1176 static char buffer[NICKLEN + USERLEN + HOSTLEN + HOSTLEN + 5];
1177
1178 if(MyOper(client_p))
1179 {
1180 rb_snprintf(buffer, sizeof(buffer), "%s!%s@%s{%s}",
1181 client_p->name, client_p->username,
1182 client_p->host, client_p->localClient->opername);
1183 return buffer;
1184 }
1185
1186 rb_snprintf(buffer, sizeof(buffer), "%s!%s@%s{%s}",
1187 client_p->name, client_p->username,
1188 client_p->host, client_p->servptr->name);
1189 return buffer;
1190 }
1191
1192 /*
1193 * get_printable_conf
1194 *
1195 * inputs - struct ConfItem
1196 *
1197 * output - name
1198 * - host
1199 * - pass
1200 * - user
1201 * - port
1202 *
1203 * side effects -
1204 * Examine the struct struct ConfItem, setting the values
1205 * of name, host, pass, user to values either
1206 * in aconf, or "<NULL>" port is set to aconf->port in all cases.
1207 */
1208 void
1209 get_printable_conf(struct ConfItem *aconf, char **name, char **host,
1210 char **pass, char **user, int *port, char **classname)
1211 {
1212 static char null[] = "<NULL>";
1213 static char zero[] = "default";
1214
1215 *name = EmptyString(aconf->info.name) ? null : aconf->info.name;
1216 *host = EmptyString(aconf->host) ? null : aconf->host;
1217 *pass = EmptyString(aconf->passwd) ? null : aconf->passwd;
1218 *user = EmptyString(aconf->user) ? null : aconf->user;
1219 *classname = EmptyString(aconf->className) ? zero : aconf->className;
1220 *port = (int) aconf->port;
1221 }
1222
1223 char *
1224 get_user_ban_reason(struct ConfItem *aconf)
1225 {
1226 static char reasonbuf[BUFSIZE];
1227
1228 if (aconf->flags & CONF_FLAGS_TEMPORARY &&
1229 (aconf->status == CONF_KILL || aconf->status == CONF_DLINE))
1230 rb_snprintf(reasonbuf, sizeof reasonbuf,
1231 "Temporary %c-line %d min. - ",
1232 aconf->status == CONF_DLINE ? 'D' : 'K',
1233 (aconf->hold - aconf->created) / 60);
1234 else
1235 reasonbuf[0] = '\0';
1236 if (aconf->passwd)
1237 rb_strlcat(reasonbuf, aconf->passwd, sizeof reasonbuf);
1238 else
1239 rb_strlcat(reasonbuf, "No Reason", sizeof reasonbuf);
1240 if (aconf->created)
1241 {
1242 rb_strlcat(reasonbuf, " (", sizeof reasonbuf);
1243 rb_strlcat(reasonbuf, smalldate(aconf->created),
1244 sizeof reasonbuf);
1245 rb_strlcat(reasonbuf, ")", sizeof reasonbuf);
1246 }
1247 return reasonbuf;
1248 }
1249
1250 void
1251 get_printable_kline(struct Client *source_p, struct ConfItem *aconf,
1252 char **host, char **reason,
1253 char **user, char **oper_reason)
1254 {
1255 static char null[] = "<NULL>";
1256
1257 *host = EmptyString(aconf->host) ? null : aconf->host;
1258 *user = EmptyString(aconf->user) ? null : aconf->user;
1259 *reason = get_user_ban_reason(aconf);
1260
1261 if(EmptyString(aconf->spasswd) || !IsOper(source_p))
1262 *oper_reason = NULL;
1263 else
1264 *oper_reason = aconf->spasswd;
1265 }
1266
1267 /*
1268 * read_conf_files
1269 *
1270 * inputs - cold start YES or NO
1271 * output - none
1272 * side effects - read all conf files needed, ircd.conf kline.conf etc.
1273 */
1274 void
1275 read_conf_files(int cold)
1276 {
1277 const char *filename;
1278
1279 conf_fbfile_in = NULL;
1280
1281 filename = ConfigFileEntry.configfile;
1282
1283 /* We need to know the initial filename for the yyerror() to report
1284 FIXME: The full path is in conffilenamebuf first time since we
1285 dont know anything else
1286
1287 - Gozem 2002-07-21
1288 */
1289 rb_strlcpy(conffilebuf, filename, sizeof(conffilebuf));
1290
1291 if((conf_fbfile_in = fopen(filename, "r")) == NULL)
1292 {
1293 if(cold)
1294 {
1295 ilog(L_MAIN, "Failed in reading configuration file %s", filename);
1296 exit(-1);
1297 }
1298 else
1299 {
1300 sendto_realops_snomask(SNO_GENERAL, L_ALL,
1301 "Can't open file '%s' - aborting rehash!", filename);
1302 return;
1303 }
1304 }
1305
1306 if(!cold)
1307 {
1308 clear_out_old_conf();
1309 }
1310
1311 read_conf(conf_fbfile_in);
1312 fclose(conf_fbfile_in);
1313 }
1314
1315 /*
1316 * free an alias{} entry.
1317 */
1318 static void
1319 free_alias_cb(struct DictionaryElement *ptr, void *unused)
1320 {
1321 struct alias_entry *aptr = ptr->data;
1322
1323 rb_free(aptr->name);
1324 rb_free(aptr->target);
1325 rb_free(aptr);
1326 }
1327
1328 /*
1329 * clear_out_old_conf
1330 *
1331 * inputs - none
1332 * output - none
1333 * side effects - Clear out the old configuration
1334 */
1335 static void
1336 clear_out_old_conf(void)
1337 {
1338 struct Class *cltmp;
1339 rb_dlink_node *ptr;
1340 rb_dlink_node *next_ptr;
1341
1342 /*
1343 * don't delete the class table, rather mark all entries
1344 * for deletion. The table is cleaned up by check_class. - avalon
1345 */
1346 RB_DLINK_FOREACH(ptr, class_list.head)
1347 {
1348 cltmp = ptr->data;
1349 MaxUsers(cltmp) = -1;
1350 }
1351
1352 clear_out_address_conf();
1353 clear_s_newconf();
1354
1355 /* clean out module paths */
1356 #ifndef STATIC_MODULES
1357 mod_clear_paths();
1358 mod_add_path(MODULE_DIR);
1359 mod_add_path(MODULE_DIR "/autoload");
1360 #endif
1361
1362 /* clean out ServerInfo */
1363 rb_free(ServerInfo.description);
1364 ServerInfo.description = NULL;
1365 rb_free(ServerInfo.network_name);
1366 ServerInfo.network_name = NULL;
1367 rb_free(ServerInfo.network_desc);
1368 ServerInfo.network_desc = NULL;
1369
1370 ServerInfo.ssld_count = 1;
1371
1372 /* clean out AdminInfo */
1373 rb_free(AdminInfo.name);
1374 AdminInfo.name = NULL;
1375 rb_free(AdminInfo.email);
1376 AdminInfo.email = NULL;
1377 rb_free(AdminInfo.description);
1378 AdminInfo.description = NULL;
1379
1380 /* operator{} and class{} blocks are freed above */
1381 /* clean out listeners */
1382 close_listeners();
1383
1384 /* auth{}, quarantine{}, shared{}, connect{}, kill{}, deny{}, exempt{}
1385 * and gecos{} blocks are freed above too
1386 */
1387
1388 /* clean out general */
1389 rb_free(ConfigFileEntry.kline_reason);
1390 ConfigFileEntry.kline_reason = NULL;
1391
1392 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, service_list.head)
1393 {
1394 rb_free(ptr->data);
1395 rb_dlinkDestroy(ptr, &service_list);
1396 }
1397
1398 /* remove any aliases... -- nenolod */
1399 if (alias_dict != NULL)
1400 {
1401 irc_dictionary_destroy(alias_dict, free_alias_cb, NULL);
1402 alias_dict = NULL;
1403 }
1404
1405 destroy_blacklists();
1406
1407 privilegeset_mark_all_illegal();
1408
1409 /* OK, that should be everything... */
1410 }
1411
1412
1413 /*
1414 * conf_add_class_to_conf
1415 * inputs - pointer to config item
1416 * output - NONE
1417 * side effects - Add a class pointer to a conf
1418 */
1419
1420 void
1421 conf_add_class_to_conf(struct ConfItem *aconf)
1422 {
1423 if(aconf->className == NULL)
1424 {
1425 aconf->className = rb_strdup("default");
1426 ClassPtr(aconf) = default_class;
1427 return;
1428 }
1429
1430 ClassPtr(aconf) = find_class(aconf->className);
1431
1432 if(ClassPtr(aconf) == default_class)
1433 {
1434 if(aconf->status == CONF_CLIENT)
1435 {
1436 conf_report_error(
1437 "Using default class for missing class \"%s\" in auth{} for %s@%s",
1438 aconf->className, aconf->user, aconf->host);
1439 }
1440
1441 rb_free(aconf->className);
1442 aconf->className = rb_strdup("default");
1443 return;
1444 }
1445
1446 if(ConfMaxUsers(aconf) < 0)
1447 {
1448 ClassPtr(aconf) = default_class;
1449 rb_free(aconf->className);
1450 aconf->className = rb_strdup("default");
1451 return;
1452 }
1453 }
1454
1455 /*
1456 * conf_add_d_conf
1457 * inputs - pointer to config item
1458 * output - NONE
1459 * side effects - Add a d/D line
1460 */
1461 void
1462 conf_add_d_conf(struct ConfItem *aconf)
1463 {
1464 if(aconf->host == NULL)
1465 return;
1466
1467 aconf->user = NULL;
1468
1469 /* XXX - Should 'd' ever be in the old conf? For new conf we don't
1470 * need this anyway, so I will disable it for now... -A1kmm
1471 */
1472
1473 if(parse_netmask(aconf->host, NULL, NULL) == HM_HOST)
1474 {
1475 ilog(L_MAIN, "Invalid Dline %s ignored", aconf->host);
1476 free_conf(aconf);
1477 }
1478 else
1479 {
1480 add_conf_by_address(aconf->host, CONF_DLINE, NULL, NULL, aconf);
1481 }
1482 }
1483
1484 static char *
1485 strip_tabs(char *dest, const char *src, size_t len)
1486 {
1487 char *d = dest;
1488
1489 if(dest == NULL || src == NULL)
1490 return NULL;
1491
1492 rb_strlcpy(dest, src, len);
1493
1494 while(*d)
1495 {
1496 if(*d == '\t')
1497 *d = ' ';
1498 d++;
1499 }
1500 return dest;
1501 }
1502
1503 /*
1504 * yyerror
1505 *
1506 * inputs - message from parser
1507 * output - none
1508 * side effects - message to opers and log file entry is made
1509 */
1510 void
1511 yyerror(const char *msg)
1512 {
1513 char newlinebuf[BUFSIZE];
1514
1515 strip_tabs(newlinebuf, linebuf, strlen(linebuf));
1516
1517 ierror("\"%s\", line %d: %s at '%s'", conffilebuf, lineno + 1, msg, newlinebuf);
1518 sendto_realops_snomask(SNO_GENERAL, L_ALL, "\"%s\", line %d: %s at '%s'",
1519 conffilebuf, lineno + 1, msg, newlinebuf);
1520
1521 }
1522
1523 int
1524 conf_fgets(char *lbuf, int max_size, FILE * fb)
1525 {
1526 char *buff;
1527
1528 if((buff = fgets(lbuf, max_size, fb)) == NULL)
1529 return (0);
1530
1531 return (strlen(lbuf));
1532 }
1533
1534 int
1535 conf_yy_fatal_error(const char *msg)
1536 {
1537 return (0);
1538 }