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