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