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