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