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