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