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