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