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