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