ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/src/conf.c
Revision: 4314
Committed: Thu Jul 31 18:53:31 2014 UTC (9 years, 8 months ago) by michael
Content type: text/x-csrc
File size: 58018 byte(s)
Log Message:
- Improved AWAY throttling to allow for better fine-tuning

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2014 ircd-hybrid development team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 * USA
20 */
21
22 /*! \file conf.c
23 * \brief Configuration file functions.
24 * \version $Id$
25 */
26
27 #include "stdinc.h"
28 #include "list.h"
29 #include "ircd_defs.h"
30 #include "conf.h"
31 #include "server.h"
32 #include "resv.h"
33 #include "channel.h"
34 #include "client.h"
35 #include "event.h"
36 #include "irc_string.h"
37 #include "s_bsd.h"
38 #include "ircd.h"
39 #include "listener.h"
40 #include "hostmask.h"
41 #include "modules.h"
42 #include "numeric.h"
43 #include "fdlist.h"
44 #include "log.h"
45 #include "send.h"
46 #include "memory.h"
47 #include "mempool.h"
48 #include "res.h"
49 #include "userhost.h"
50 #include "user.h"
51 #include "channel_mode.h"
52 #include "parse.h"
53 #include "misc.h"
54 #include "conf_db.h"
55 #include "conf_class.h"
56 #include "motd.h"
57
58
59 /* general conf items link list root, other than k lines etc. */
60 dlink_list service_items = { NULL, NULL, 0 };
61 dlink_list server_items = { NULL, NULL, 0 };
62 dlink_list cluster_items = { NULL, NULL, 0 };
63 dlink_list oconf_items = { NULL, NULL, 0 };
64 dlink_list uconf_items = { NULL, NULL, 0 };
65 dlink_list xconf_items = { NULL, NULL, 0 };
66 dlink_list nresv_items = { NULL, NULL, 0 };
67 dlink_list cresv_items = { NULL, NULL, 0 };
68
69 extern unsigned int lineno;
70 extern char linebuf[];
71 extern char conffilebuf[IRCD_BUFSIZE];
72 extern int yyparse(); /* defined in y.tab.c */
73
74 /* internally defined functions */
75 static void read_conf(FILE *);
76 static void clear_out_old_conf(void);
77 static void expire_tklines(dlink_list *);
78 static void garbage_collect_ip_entries(void);
79 static int hash_ip(struct irc_ssaddr *);
80 static int verify_access(struct Client *);
81 static int attach_iline(struct Client *, struct MaskItem *);
82 static struct ip_entry *find_or_add_ip(struct irc_ssaddr *);
83 static dlink_list *map_to_list(enum maskitem_type);
84 static int find_user_host(struct Client *, char *, char *, char *, unsigned int);
85
86
87 /* usually, with hash tables, you use a prime number...
88 * but in this case I am dealing with ip addresses,
89 * not ascii strings.
90 */
91 #define IP_HASH_SIZE 0x1000
92
93 struct ip_entry
94 {
95 struct irc_ssaddr ip;
96 unsigned int count; /**< Number of registered users using this IP */
97 unsigned int connection_count; /**< Number of connections from this IP in the last throttle_time duration */
98 time_t last_attempt; /**< The last time someone connected from this IP */
99 struct ip_entry *next;
100 };
101
102 static struct ip_entry *ip_hash_table[IP_HASH_SIZE];
103 static mp_pool_t *ip_entry_pool = NULL;
104 static int ip_entries_count = 0;
105
106
107 /* conf_dns_callback()
108 *
109 * inputs - pointer to struct MaskItem
110 * - pointer to DNSReply reply
111 * output - none
112 * side effects - called when resolver query finishes
113 * if the query resulted in a successful search, hp will contain
114 * a non-null pointer, otherwise hp will be null.
115 * if successful save hp in the conf item it was called with
116 */
117 static void
118 conf_dns_callback(void *vptr, const struct irc_ssaddr *addr, const char *name)
119 {
120 struct MaskItem *conf = vptr;
121
122 conf->dns_pending = 0;
123
124 if (addr)
125 memcpy(&conf->addr, addr, sizeof(conf->addr));
126 else
127 conf->dns_failed = 1;
128 }
129
130 /* conf_dns_lookup()
131 *
132 * do a nameserver lookup of the conf host
133 * if the conf entry is currently doing a ns lookup do nothing, otherwise
134 * allocate a dns_query and start ns lookup.
135 */
136 static void
137 conf_dns_lookup(struct MaskItem *conf)
138 {
139 if (!conf->dns_pending)
140 {
141 conf->dns_pending = 1;
142 gethost_byname(conf_dns_callback, conf, conf->host);
143 }
144 }
145
146 struct MaskItem *
147 conf_make(enum maskitem_type type)
148 {
149 struct MaskItem *conf = MyCalloc(sizeof(*conf));
150 dlink_list *list = NULL;
151
152 conf->type = type;
153 conf->active = 1;
154 conf->aftype = AF_INET;
155
156 if ((list = map_to_list(type)))
157 dlinkAdd(conf, &conf->node, list);
158 return conf;
159 }
160
161 void
162 conf_free(struct MaskItem *conf)
163 {
164 dlink_node *ptr = NULL, *ptr_next = NULL;
165 dlink_list *list = NULL;
166
167 if (conf->node.next)
168 if ((list = map_to_list(conf->type)))
169 dlinkDelete(&conf->node, list);
170
171 MyFree(conf->name);
172
173 if (conf->dns_pending)
174 delete_resolver_queries(conf);
175 if (conf->passwd)
176 memset(conf->passwd, 0, strlen(conf->passwd));
177 if (conf->spasswd)
178 memset(conf->spasswd, 0, strlen(conf->spasswd));
179
180 conf->class = NULL;
181
182 MyFree(conf->passwd);
183 MyFree(conf->spasswd);
184 MyFree(conf->reason);
185 MyFree(conf->certfp);
186 MyFree(conf->user);
187 MyFree(conf->host);
188 #ifdef HAVE_LIBCRYPTO
189 MyFree(conf->cipher_list);
190
191 if (conf->rsa_public_key)
192 RSA_free(conf->rsa_public_key);
193 #endif
194 DLINK_FOREACH_SAFE(ptr, ptr_next, conf->hub_list.head)
195 {
196 MyFree(ptr->data);
197 dlinkDelete(ptr, &conf->hub_list);
198 free_dlink_node(ptr);
199 }
200
201 DLINK_FOREACH_SAFE(ptr, ptr_next, conf->leaf_list.head)
202 {
203 MyFree(ptr->data);
204 dlinkDelete(ptr, &conf->leaf_list);
205 free_dlink_node(ptr);
206 }
207
208 DLINK_FOREACH_SAFE(ptr, ptr_next, conf->exempt_list.head)
209 {
210 struct exempt *exptr = ptr->data;
211
212 dlinkDelete(ptr, &conf->exempt_list);
213 MyFree(exptr->name);
214 MyFree(exptr->user);
215 MyFree(exptr->host);
216 MyFree(exptr);
217 }
218
219 MyFree(conf);
220 }
221
222 /* check_client()
223 *
224 * inputs - pointer to client
225 * output - 0 = Success
226 * NOT_AUTHORIZED (-1) = Access denied (no I line match)
227 * IRCD_SOCKET_ERROR (-2) = Bad socket.
228 * I_LINE_FULL (-3) = I-line is full
229 * TOO_MANY (-4) = Too many connections from hostname
230 * BANNED_CLIENT (-5) = K-lined
231 * side effects - Ordinary client access check.
232 * Look for conf lines which have the same
233 * status as the flags passed.
234 */
235 int
236 check_client(struct Client *source_p)
237 {
238 int i;
239
240 if ((i = verify_access(source_p)))
241 ilog(LOG_TYPE_IRCD, "Access denied: %s[%s]",
242 source_p->name, source_p->sockhost);
243
244 switch (i)
245 {
246 case TOO_MANY:
247 sendto_realops_flags(UMODE_FULL, L_ALL, SEND_NOTICE,
248 "Too many on IP for %s (%s).",
249 get_client_name(source_p, SHOW_IP),
250 source_p->sockhost);
251 ilog(LOG_TYPE_IRCD, "Too many connections on IP from %s.",
252 get_client_name(source_p, SHOW_IP));
253 ++ServerStats.is_ref;
254 exit_client(source_p, "No more connections allowed on that IP");
255 break;
256
257 case I_LINE_FULL:
258 sendto_realops_flags(UMODE_FULL, L_ALL, SEND_NOTICE,
259 "auth{} block is full for %s (%s).",
260 get_client_name(source_p, SHOW_IP),
261 source_p->sockhost);
262 ilog(LOG_TYPE_IRCD, "Too many connections from %s.",
263 get_client_name(source_p, SHOW_IP));
264 ++ServerStats.is_ref;
265 exit_client(source_p, "No more connections allowed in your connection class");
266 break;
267
268 case NOT_AUTHORIZED:
269 ++ServerStats.is_ref;
270 /* jdc - lists server name & port connections are on */
271 /* a purely cosmetical change */
272 sendto_realops_flags(UMODE_UNAUTH, L_ALL, SEND_NOTICE,
273 "Unauthorized client connection from %s [%s] on [%s/%u].",
274 get_client_name(source_p, SHOW_IP),
275 source_p->sockhost,
276 source_p->localClient->listener->name,
277 source_p->localClient->listener->port);
278 ilog(LOG_TYPE_IRCD,
279 "Unauthorized client connection from %s on [%s/%u].",
280 get_client_name(source_p, SHOW_IP),
281 source_p->localClient->listener->name,
282 source_p->localClient->listener->port);
283
284 exit_client(source_p, "You are not authorized to use this server");
285 break;
286
287 case BANNED_CLIENT:
288 exit_client(source_p, "Banned");
289 ++ServerStats.is_ref;
290 break;
291
292 case 0:
293 default:
294 break;
295 }
296
297 return (i < 0 ? 0 : 1);
298 }
299
300 /* verify_access()
301 *
302 * inputs - pointer to client to verify
303 * output - 0 if success -'ve if not
304 * side effect - find the first (best) I line to attach.
305 */
306 static int
307 verify_access(struct Client *client_p)
308 {
309 struct MaskItem *conf = NULL;
310 char non_ident[USERLEN + 1] = "~";
311
312 if (IsGotId(client_p))
313 {
314 conf = find_address_conf(client_p->host, client_p->username,
315 &client_p->localClient->ip,
316 client_p->localClient->aftype,
317 client_p->localClient->passwd);
318 }
319 else
320 {
321 strlcpy(non_ident + 1, client_p->username, sizeof(non_ident) - 1);
322 conf = find_address_conf(client_p->host,non_ident,
323 &client_p->localClient->ip,
324 client_p->localClient->aftype,
325 client_p->localClient->passwd);
326 }
327
328 if (conf)
329 {
330 if (IsConfClient(conf))
331 {
332 if (IsConfRedir(conf))
333 {
334 sendto_one_numeric(client_p, &me, RPL_REDIR,
335 conf->name ? conf->name : "",
336 conf->port);
337 return NOT_AUTHORIZED;
338 }
339
340 if (IsConfDoIdentd(conf))
341 SetNeedId(client_p);
342
343 /* Thanks for spoof idea amm */
344 if (IsConfDoSpoofIp(conf))
345 {
346 if (!ConfigFileEntry.hide_spoof_ips && IsConfSpoofNotice(conf))
347 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
348 "%s spoofing: %s as %s",
349 client_p->name, client_p->host, conf->name);
350 strlcpy(client_p->host, conf->name, sizeof(client_p->host));
351 AddFlag(client_p, FLAGS_IP_SPOOFING | FLAGS_AUTH_SPOOF);
352 }
353
354 return attach_iline(client_p, conf);
355 }
356 else if (IsConfKill(conf) || (ConfigFileEntry.glines && IsConfGline(conf)))
357 {
358 if (IsConfGline(conf))
359 sendto_one_notice(client_p, &me, ":*** G-lined");
360 sendto_one_notice(client_p, &me, ":*** Banned: %s", conf->reason);
361 return BANNED_CLIENT;
362 }
363 }
364
365 return NOT_AUTHORIZED;
366 }
367
368 /* attach_iline()
369 *
370 * inputs - client pointer
371 * - conf pointer
372 * output -
373 * side effects - do actual attach
374 */
375 static int
376 attach_iline(struct Client *client_p, struct MaskItem *conf)
377 {
378 struct ClassItem *class = NULL;
379 struct ip_entry *ip_found;
380 int a_limit_reached = 0;
381 unsigned int local = 0, global = 0, ident = 0;
382
383 assert(conf->class);
384
385 ip_found = find_or_add_ip(&client_p->localClient->ip);
386 ip_found->count++;
387 SetIpHash(client_p);
388
389 class = conf->class;
390
391 count_user_host(client_p->username, client_p->host,
392 &global, &local, &ident);
393
394 /* XXX blah. go down checking the various silly limits
395 * setting a_limit_reached if any limit is reached.
396 * - Dianora
397 */
398 if (class->max_total && class->ref_count >= class->max_total)
399 a_limit_reached = 1;
400 else if (class->max_perip && ip_found->count > class->max_perip)
401 a_limit_reached = 1;
402 else if (class->max_local && local >= class->max_local)
403 a_limit_reached = 1;
404 else if (class->max_global && global >= class->max_global)
405 a_limit_reached = 1;
406 else if (class->max_ident && ident >= class->max_ident &&
407 client_p->username[0] != '~')
408 a_limit_reached = 1;
409
410 if (a_limit_reached)
411 {
412 if (!IsConfExemptLimits(conf))
413 return TOO_MANY; /* Already at maximum allowed */
414
415 sendto_one_notice(client_p, &me, ":*** Your connection class is full, "
416 "but you have exceed_limit = yes;");
417 }
418
419 return attach_conf(client_p, conf);
420 }
421
422 /* init_ip_hash_table()
423 *
424 * inputs - NONE
425 * output - NONE
426 * side effects - allocate memory for ip_entry(s)
427 * - clear the ip hash table
428 */
429 void
430 init_ip_hash_table(void)
431 {
432 ip_entry_pool = mp_pool_new(sizeof(struct ip_entry), MP_CHUNK_SIZE_IP_ENTRY);
433 memset(ip_hash_table, 0, sizeof(ip_hash_table));
434 }
435
436 /* find_or_add_ip()
437 *
438 * inputs - pointer to struct irc_ssaddr
439 * output - pointer to a struct ip_entry
440 * side effects -
441 *
442 * If the ip # was not found, a new struct ip_entry is created, and the ip
443 * count set to 0.
444 */
445 static struct ip_entry *
446 find_or_add_ip(struct irc_ssaddr *ip_in)
447 {
448 struct ip_entry *ptr, *newptr;
449 int hash_index = hash_ip(ip_in), res;
450 struct sockaddr_in *v4 = (struct sockaddr_in *)ip_in, *ptr_v4;
451 #ifdef IPV6
452 struct sockaddr_in6 *v6 = (struct sockaddr_in6 *)ip_in, *ptr_v6;
453 #endif
454
455 for (ptr = ip_hash_table[hash_index]; ptr; ptr = ptr->next)
456 {
457 #ifdef IPV6
458 if (ptr->ip.ss.ss_family != ip_in->ss.ss_family)
459 continue;
460 if (ip_in->ss.ss_family == AF_INET6)
461 {
462 ptr_v6 = (struct sockaddr_in6 *)&ptr->ip;
463 res = memcmp(&v6->sin6_addr, &ptr_v6->sin6_addr, sizeof(struct in6_addr));
464 }
465 else
466 #endif
467 {
468 ptr_v4 = (struct sockaddr_in *)&ptr->ip;
469 res = memcmp(&v4->sin_addr, &ptr_v4->sin_addr, sizeof(struct in_addr));
470 }
471 if (res == 0)
472 {
473 /* Found entry already in hash, return it. */
474 return ptr;
475 }
476 }
477
478 if (ip_entries_count >= 2 * hard_fdlimit)
479 garbage_collect_ip_entries();
480
481 newptr = mp_pool_get(ip_entry_pool);
482
483 ip_entries_count++;
484 memcpy(&newptr->ip, ip_in, sizeof(struct irc_ssaddr));
485
486 newptr->next = ip_hash_table[hash_index];
487 ip_hash_table[hash_index] = newptr;
488
489 return newptr;
490 }
491
492 /* remove_one_ip()
493 *
494 * inputs - unsigned long IP address value
495 * output - NONE
496 * side effects - The ip address given, is looked up in ip hash table
497 * and number of ip#'s for that ip decremented.
498 * If ip # count reaches 0 and has expired,
499 * the struct ip_entry is returned to the ip_entry_heap
500 */
501 void
502 remove_one_ip(struct irc_ssaddr *ip_in)
503 {
504 struct ip_entry *ptr;
505 struct ip_entry *last_ptr = NULL;
506 int hash_index = hash_ip(ip_in), res;
507 struct sockaddr_in *v4 = (struct sockaddr_in *)ip_in, *ptr_v4;
508 #ifdef IPV6
509 struct sockaddr_in6 *v6 = (struct sockaddr_in6 *)ip_in, *ptr_v6;
510 #endif
511
512 for (ptr = ip_hash_table[hash_index]; ptr; ptr = ptr->next)
513 {
514 #ifdef IPV6
515 if (ptr->ip.ss.ss_family != ip_in->ss.ss_family)
516 continue;
517 if (ip_in->ss.ss_family == AF_INET6)
518 {
519 ptr_v6 = (struct sockaddr_in6 *)&ptr->ip;
520 res = memcmp(&v6->sin6_addr, &ptr_v6->sin6_addr, sizeof(struct in6_addr));
521 }
522 else
523 #endif
524 {
525 ptr_v4 = (struct sockaddr_in *)&ptr->ip;
526 res = memcmp(&v4->sin_addr, &ptr_v4->sin_addr, sizeof(struct in_addr));
527 }
528 if (res)
529 continue;
530 if (ptr->count > 0)
531 ptr->count--;
532 if (ptr->count == 0 &&
533 (CurrentTime-ptr->last_attempt) >= ConfigFileEntry.throttle_time)
534 {
535 if (last_ptr != NULL)
536 last_ptr->next = ptr->next;
537 else
538 ip_hash_table[hash_index] = ptr->next;
539
540 mp_pool_release(ptr);
541 ip_entries_count--;
542 return;
543 }
544 last_ptr = ptr;
545 }
546 }
547
548 /* hash_ip()
549 *
550 * input - pointer to an irc_inaddr
551 * output - integer value used as index into hash table
552 * side effects - hopefully, none
553 */
554 static int
555 hash_ip(struct irc_ssaddr *addr)
556 {
557 if (addr->ss.ss_family == AF_INET)
558 {
559 struct sockaddr_in *v4 = (struct sockaddr_in *)addr;
560 int hash;
561 uint32_t ip;
562
563 ip = ntohl(v4->sin_addr.s_addr);
564 hash = ((ip >> 12) + ip) & (IP_HASH_SIZE-1);
565 return hash;
566 }
567 #ifdef IPV6
568 else
569 {
570 int hash;
571 struct sockaddr_in6 *v6 = (struct sockaddr_in6 *)addr;
572 uint32_t *ip = (uint32_t *)&v6->sin6_addr.s6_addr;
573
574 hash = ip[0] ^ ip[3];
575 hash ^= hash >> 16;
576 hash ^= hash >> 8;
577 hash = hash & (IP_HASH_SIZE - 1);
578 return hash;
579 }
580 #else
581 return 0;
582 #endif
583 }
584
585 /* count_ip_hash()
586 *
587 * inputs - pointer to counter of number of ips hashed
588 * - pointer to memory used for ip hash
589 * output - returned via pointers input
590 * side effects - NONE
591 *
592 * number of hashed ip #'s is counted up, plus the amount of memory
593 * used in the hash.
594 */
595 void
596 count_ip_hash(unsigned int *number_ips_stored, uint64_t *mem_ips_stored)
597 {
598 struct ip_entry *ptr;
599
600 *number_ips_stored = 0;
601 *mem_ips_stored = 0;
602
603 for (unsigned int i = 0; i < IP_HASH_SIZE; ++i)
604 {
605 for (ptr = ip_hash_table[i]; ptr; ptr = ptr->next)
606 {
607 *number_ips_stored += 1;
608 *mem_ips_stored += sizeof(struct ip_entry);
609 }
610 }
611 }
612
613 /* garbage_collect_ip_entries()
614 *
615 * input - NONE
616 * output - NONE
617 * side effects - free up all ip entries with no connections
618 */
619 static void
620 garbage_collect_ip_entries(void)
621 {
622 struct ip_entry *ptr;
623 struct ip_entry *last_ptr;
624 struct ip_entry *next_ptr;
625
626 for (unsigned int i = 0; i < IP_HASH_SIZE; ++i)
627 {
628 last_ptr = NULL;
629
630 for (ptr = ip_hash_table[i]; ptr; ptr = next_ptr)
631 {
632 next_ptr = ptr->next;
633
634 if (ptr->count == 0 &&
635 (CurrentTime - ptr->last_attempt) >= ConfigFileEntry.throttle_time)
636 {
637 if (last_ptr != NULL)
638 last_ptr->next = ptr->next;
639 else
640 ip_hash_table[i] = ptr->next;
641 mp_pool_release(ptr);
642 ip_entries_count--;
643 }
644 else
645 last_ptr = ptr;
646 }
647 }
648 }
649
650 /* detach_conf()
651 *
652 * inputs - pointer to client to detach
653 * - type of conf to detach
654 * output - 0 for success, -1 for failure
655 * side effects - Disassociate configuration from the client.
656 * Also removes a class from the list if marked for deleting.
657 */
658 void
659 detach_conf(struct Client *client_p, enum maskitem_type type)
660 {
661 dlink_node *ptr = NULL, *ptr_next = NULL;
662
663 DLINK_FOREACH_SAFE(ptr, ptr_next, client_p->localClient->confs.head)
664 {
665 struct MaskItem *conf = ptr->data;
666
667 assert(conf->type & (CONF_CLIENT | CONF_OPER | CONF_SERVER));
668 assert(conf->ref_count > 0);
669 assert(conf->class->ref_count > 0);
670
671 if (!(conf->type & type))
672 continue;
673
674 dlinkDelete(ptr, &client_p->localClient->confs);
675 free_dlink_node(ptr);
676
677 if (conf->type == CONF_CLIENT)
678 remove_from_cidr_check(&client_p->localClient->ip, conf->class);
679
680 if (--conf->class->ref_count == 0 && conf->class->active == 0)
681 {
682 class_free(conf->class);
683 conf->class = NULL;
684 }
685
686 if (--conf->ref_count == 0 && conf->active == 0)
687 conf_free(conf);
688 }
689 }
690
691 /* attach_conf()
692 *
693 * inputs - client pointer
694 * - conf pointer
695 * output -
696 * side effects - Associate a specific configuration entry to a *local*
697 * client (this is the one which used in accepting the
698 * connection). Note, that this automatically changes the
699 * attachment if there was an old one...
700 */
701 int
702 attach_conf(struct Client *client_p, struct MaskItem *conf)
703 {
704 if (dlinkFind(&client_p->localClient->confs, conf))
705 return 1;
706
707 if (conf->type == CONF_CLIENT)
708 if (cidr_limit_reached(IsConfExemptLimits(conf),
709 &client_p->localClient->ip, conf->class))
710 return TOO_MANY; /* Already at maximum allowed */
711
712 conf->class->ref_count++;
713 conf->ref_count++;
714
715 dlinkAdd(conf, make_dlink_node(), &client_p->localClient->confs);
716
717 return 0;
718 }
719
720 /* attach_connect_block()
721 *
722 * inputs - pointer to server to attach
723 * - name of server
724 * - hostname of server
725 * output - true (1) if both are found, otherwise return false (0)
726 * side effects - find connect block and attach them to connecting client
727 */
728 int
729 attach_connect_block(struct Client *client_p, const char *name,
730 const char *host)
731 {
732 dlink_node *ptr;
733 struct MaskItem *conf = NULL;
734
735 assert(client_p != NULL);
736 assert(host != NULL);
737
738 if (client_p == NULL || host == NULL)
739 return 0;
740
741 DLINK_FOREACH(ptr, server_items.head)
742 {
743 conf = ptr->data;
744
745 if (match(conf->name, name) || match(conf->host, host))
746 continue;
747
748 attach_conf(client_p, conf);
749 return -1;
750 }
751
752 return 0;
753 }
754
755 /* find_conf_name()
756 *
757 * inputs - pointer to conf link list to search
758 * - pointer to name to find
759 * - int mask of type of conf to find
760 * output - NULL or pointer to conf found
761 * side effects - find a conf entry which matches the name
762 * and has the given mask.
763 */
764 struct MaskItem *
765 find_conf_name(dlink_list *list, const char *name, enum maskitem_type type)
766 {
767 dlink_node *ptr;
768 struct MaskItem* conf;
769
770 DLINK_FOREACH(ptr, list->head)
771 {
772 conf = ptr->data;
773
774 if (conf->type == type)
775 {
776 if (conf->name && (!irccmp(conf->name, name) ||
777 !match(conf->name, name)))
778 return conf;
779 }
780 }
781
782 return NULL;
783 }
784
785 /* map_to_list()
786 *
787 * inputs - ConfType conf
788 * output - pointer to dlink_list to use
789 * side effects - none
790 */
791 static dlink_list *
792 map_to_list(enum maskitem_type type)
793 {
794 switch(type)
795 {
796 case CONF_XLINE:
797 return(&xconf_items);
798 break;
799 case CONF_ULINE:
800 return(&uconf_items);
801 break;
802 case CONF_NRESV:
803 return(&nresv_items);
804 break;
805 case CONF_CRESV:
806 return(&cresv_items);
807 case CONF_OPER:
808 return(&oconf_items);
809 break;
810 case CONF_SERVER:
811 return(&server_items);
812 break;
813 case CONF_SERVICE:
814 return(&service_items);
815 break;
816 case CONF_CLUSTER:
817 return(&cluster_items);
818 break;
819 default:
820 return NULL;
821 }
822 }
823
824 /* find_matching_name_conf()
825 *
826 * inputs - type of link list to look in
827 * - pointer to name string to find
828 * - pointer to user
829 * - pointer to host
830 * - optional flags to match on as well
831 * output - NULL or pointer to found struct MaskItem
832 * side effects - looks for a match on name field
833 */
834 struct MaskItem *
835 find_matching_name_conf(enum maskitem_type type, const char *name, const char *user,
836 const char *host, unsigned int flags)
837 {
838 dlink_node *ptr=NULL;
839 struct MaskItem *conf=NULL;
840 dlink_list *list_p = map_to_list(type);
841
842 switch (type)
843 {
844 case CONF_SERVICE:
845 DLINK_FOREACH(ptr, list_p->head)
846 {
847 conf = ptr->data;
848
849 if (EmptyString(conf->name))
850 continue;
851 if ((name != NULL) && !irccmp(name, conf->name))
852 return conf;
853 }
854 break;
855
856 case CONF_XLINE:
857 case CONF_ULINE:
858 case CONF_NRESV:
859 case CONF_CRESV:
860 DLINK_FOREACH(ptr, list_p->head)
861 {
862 conf = ptr->data;
863
864 if (EmptyString(conf->name))
865 continue;
866 if ((name != NULL) && !match(conf->name, name))
867 {
868 if ((user == NULL && (host == NULL)))
869 return conf;
870 if ((conf->flags & flags) != flags)
871 continue;
872 if (EmptyString(conf->user) || EmptyString(conf->host))
873 return conf;
874 if (!match(conf->user, user) && !match(conf->host, host))
875 return conf;
876 }
877 }
878 break;
879
880 case CONF_SERVER:
881 DLINK_FOREACH(ptr, list_p->head)
882 {
883 conf = ptr->data;
884
885 if ((name != NULL) && !match(name, conf->name))
886 return conf;
887 else if ((host != NULL) && !match(host, conf->host))
888 return conf;
889 }
890 break;
891
892 default:
893 break;
894 }
895 return NULL;
896 }
897
898 /* find_exact_name_conf()
899 *
900 * inputs - type of link list to look in
901 * - pointer to name string to find
902 * - pointer to user
903 * - pointer to host
904 * output - NULL or pointer to found struct MaskItem
905 * side effects - looks for an exact match on name field
906 */
907 struct MaskItem *
908 find_exact_name_conf(enum maskitem_type type, const struct Client *who, const char *name,
909 const char *user, const char *host)
910 {
911 dlink_node *ptr = NULL;
912 struct MaskItem *conf;
913 dlink_list *list_p = map_to_list(type);
914
915 switch(type)
916 {
917 case CONF_XLINE:
918 case CONF_ULINE:
919 case CONF_NRESV:
920 case CONF_CRESV:
921
922 DLINK_FOREACH(ptr, list_p->head)
923 {
924 conf = ptr->data;
925
926 if (EmptyString(conf->name))
927 continue;
928
929 if (irccmp(conf->name, name) == 0)
930 {
931 if ((user == NULL && (host == NULL)))
932 return conf;
933 if (EmptyString(conf->user) || EmptyString(conf->host))
934 return conf;
935 if (!match(conf->user, user) && !match(conf->host, host))
936 return conf;
937 }
938 }
939 break;
940
941 case CONF_OPER:
942 DLINK_FOREACH(ptr, list_p->head)
943 {
944 conf = ptr->data;
945
946 if (EmptyString(conf->name))
947 continue;
948
949 if (!irccmp(conf->name, name))
950 {
951 if (!who)
952 return conf;
953 if (EmptyString(conf->user) || EmptyString(conf->host))
954 return NULL;
955 if (!match(conf->user, who->username))
956 {
957 switch (conf->htype)
958 {
959 case HM_HOST:
960 if (!match(conf->host, who->host) || !match(conf->host, who->sockhost))
961 if (!conf->class->max_total || conf->class->ref_count < conf->class->max_total)
962 return conf;
963 break;
964 case HM_IPV4:
965 if (who->localClient->aftype == AF_INET)
966 if (match_ipv4(&who->localClient->ip, &conf->addr, conf->bits))
967 if (!conf->class->max_total || conf->class->ref_count < conf->class->max_total)
968 return conf;
969 break;
970 #ifdef IPV6
971 case HM_IPV6:
972 if (who->localClient->aftype == AF_INET6)
973 if (match_ipv6(&who->localClient->ip, &conf->addr, conf->bits))
974 if (!conf->class->max_total || conf->class->ref_count < conf->class->max_total)
975 return conf;
976 break;
977 #endif
978 default:
979 assert(0);
980 }
981 }
982 }
983 }
984
985 break;
986
987 case CONF_SERVER:
988 DLINK_FOREACH(ptr, list_p->head)
989 {
990 conf = ptr->data;
991
992 if (EmptyString(conf->name))
993 continue;
994
995 if (name == NULL)
996 {
997 if (EmptyString(conf->host))
998 continue;
999 if (irccmp(conf->host, host) == 0)
1000 return conf;
1001 }
1002 else if (irccmp(conf->name, name) == 0)
1003 return conf;
1004 }
1005
1006 break;
1007
1008 default:
1009 break;
1010 }
1011
1012 return NULL;
1013 }
1014
1015 /* rehash()
1016 *
1017 * Actual REHASH service routine. Called with sig == 0 if it has been called
1018 * as a result of an operator issuing this command, else assume it has been
1019 * called as a result of the server receiving a HUP signal.
1020 */
1021 int
1022 rehash(int sig)
1023 {
1024 if (sig)
1025 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1026 "Got signal SIGHUP, reloading configuration file(s)");
1027
1028 restart_resolver();
1029
1030 /* don't close listeners until we know we can go ahead with the rehash */
1031
1032 /* Check to see if we magically got(or lost) IPv6 support */
1033 check_can_use_v6();
1034
1035 read_conf_files(0);
1036
1037 if (ServerInfo.description)
1038 strlcpy(me.info, ServerInfo.description, sizeof(me.info));
1039
1040 load_conf_modules();
1041 check_conf_klines();
1042
1043 return 0;
1044 }
1045
1046 /* set_default_conf()
1047 *
1048 * inputs - NONE
1049 * output - NONE
1050 * side effects - Set default values here.
1051 * This is called **PRIOR** to parsing the
1052 * configuration file. If you want to do some validation
1053 * of values later, put them in validate_conf().
1054 */
1055 static void
1056 set_default_conf(void)
1057 {
1058 /* verify init_class() ran, this should be an unnecessary check
1059 * but its not much work.
1060 */
1061 assert(class_default == class_get_list()->tail->data);
1062
1063 #ifdef HAVE_LIBCRYPTO
1064 ServerInfo.message_digest_algorithm = EVP_sha256();
1065 ServerInfo.rsa_private_key = NULL;
1066 ServerInfo.rsa_private_key_file = NULL;
1067 #endif
1068
1069 /* ServerInfo.name is not rehashable */
1070 /* ServerInfo.name = ServerInfo.name; */
1071 ServerInfo.description = NULL;
1072 ServerInfo.network_name = xstrdup(NETWORK_NAME_DEFAULT);
1073 ServerInfo.network_desc = xstrdup(NETWORK_DESC_DEFAULT);
1074
1075 memset(&ServerInfo.ip, 0, sizeof(ServerInfo.ip));
1076 ServerInfo.specific_ipv4_vhost = 0;
1077 memset(&ServerInfo.ip6, 0, sizeof(ServerInfo.ip6));
1078 ServerInfo.specific_ipv6_vhost = 0;
1079
1080 ServerInfo.max_clients = MAXCLIENTS_MAX;
1081 ServerInfo.max_nick_length = 9;
1082 ServerInfo.max_topic_length = 80;
1083 ServerInfo.hub = 0;
1084 ServerInfo.dns_host.sin_addr.s_addr = 0;
1085 ServerInfo.dns_host.sin_port = 0;
1086
1087 AdminInfo.name = NULL;
1088 AdminInfo.email = NULL;
1089 AdminInfo.description = NULL;
1090
1091 log_del_all();
1092
1093 ConfigLoggingEntry.use_logging = 1;
1094
1095 ConfigChannel.disable_fake_channels = 0;
1096 ConfigChannel.invite_client_count = 10;
1097 ConfigChannel.invite_client_time = 300;
1098 ConfigChannel.knock_client_count = 1;
1099 ConfigChannel.knock_client_time = 300;
1100 ConfigChannel.knock_delay_channel = 60;
1101 ConfigChannel.max_channels = 25;
1102 ConfigChannel.max_bans = 25;
1103 ConfigChannel.default_split_user_count = 0;
1104 ConfigChannel.default_split_server_count = 0;
1105 ConfigChannel.no_join_on_split = 0;
1106 ConfigChannel.no_create_on_split = 0;
1107
1108 ConfigServerHide.flatten_links = 0;
1109 ConfigServerHide.links_delay = 300;
1110 ConfigServerHide.hidden = 0;
1111 ConfigServerHide.hide_servers = 0;
1112 ConfigServerHide.hide_services = 0;
1113 ConfigServerHide.hidden_name = xstrdup(NETWORK_NAME_DEFAULT);
1114 ConfigServerHide.hide_server_ips = 0;
1115 ConfigServerHide.disable_remote_commands = 0;
1116
1117 ConfigFileEntry.away_count = 2;
1118 ConfigFileEntry.away_time = 10;
1119 ConfigFileEntry.service_name = xstrdup(SERVICE_NAME_DEFAULT);
1120 ConfigFileEntry.max_watch = WATCHSIZE_DEFAULT;
1121 ConfigFileEntry.cycle_on_host_change = 1;
1122 ConfigFileEntry.glines = 0;
1123 ConfigFileEntry.gline_time = 12 * 3600;
1124 ConfigFileEntry.gline_request_time = GLINE_REQUEST_EXPIRE_DEFAULT;
1125 ConfigFileEntry.gline_min_cidr = 16;
1126 ConfigFileEntry.gline_min_cidr6 = 48;
1127 ConfigFileEntry.invisible_on_connect = 1;
1128 ConfigFileEntry.tkline_expire_notices = 1;
1129 ConfigFileEntry.hide_spoof_ips = 1;
1130 ConfigFileEntry.ignore_bogus_ts = 0;
1131 ConfigFileEntry.disable_auth = 0;
1132 ConfigFileEntry.kill_chase_time_limit = 90;
1133 ConfigFileEntry.default_floodcount = 8;
1134 ConfigFileEntry.failed_oper_notice = 1;
1135 ConfigFileEntry.dots_in_ident = 0;
1136 ConfigFileEntry.min_nonwildcard = 4;
1137 ConfigFileEntry.min_nonwildcard_simple = 3;
1138 ConfigFileEntry.max_accept = 20;
1139 ConfigFileEntry.anti_nick_flood = 0;
1140 ConfigFileEntry.max_nick_time = 20;
1141 ConfigFileEntry.max_nick_changes = 5;
1142 ConfigFileEntry.anti_spam_exit_message_time = 0;
1143 ConfigFileEntry.ts_warn_delta = TS_WARN_DELTA_DEFAULT;
1144 ConfigFileEntry.ts_max_delta = TS_MAX_DELTA_DEFAULT;
1145 ConfigFileEntry.warn_no_connect_block = 1;
1146 ConfigFileEntry.stats_e_disabled = 0;
1147 ConfigFileEntry.stats_o_oper_only = 0;
1148 ConfigFileEntry.stats_k_oper_only = 1; /* 1 = masked */
1149 ConfigFileEntry.stats_i_oper_only = 1; /* 1 = masked */
1150 ConfigFileEntry.stats_P_oper_only = 0;
1151 ConfigFileEntry.stats_u_oper_only = 0;
1152 ConfigFileEntry.caller_id_wait = 60;
1153 ConfigFileEntry.opers_bypass_callerid = 0;
1154 ConfigFileEntry.pace_wait = 10;
1155 ConfigFileEntry.pace_wait_simple = 1;
1156 ConfigFileEntry.short_motd = 0;
1157 ConfigFileEntry.ping_cookie = 0;
1158 ConfigFileEntry.no_oper_flood = 0;
1159 ConfigFileEntry.true_no_oper_flood = 0;
1160 ConfigFileEntry.oper_pass_resv = 1;
1161 ConfigFileEntry.max_targets = MAX_TARGETS_DEFAULT;
1162 ConfigFileEntry.oper_only_umodes = UMODE_DEBUG;
1163 ConfigFileEntry.oper_umodes = UMODE_BOTS | UMODE_LOCOPS | UMODE_SERVNOTICE | UMODE_WALLOP;
1164 ConfigFileEntry.throttle_count = 1;
1165 ConfigFileEntry.throttle_time = 1;
1166 }
1167
1168 static void
1169 validate_conf(void)
1170 {
1171 if (ConfigFileEntry.ts_warn_delta < TS_WARN_DELTA_MIN)
1172 ConfigFileEntry.ts_warn_delta = TS_WARN_DELTA_DEFAULT;
1173
1174 if (ConfigFileEntry.ts_max_delta < TS_MAX_DELTA_MIN)
1175 ConfigFileEntry.ts_max_delta = TS_MAX_DELTA_DEFAULT;
1176
1177 if (ServerInfo.network_name == NULL)
1178 ServerInfo.network_name = xstrdup(NETWORK_NAME_DEFAULT);
1179
1180 if (ServerInfo.network_desc == NULL)
1181 ServerInfo.network_desc = xstrdup(NETWORK_DESC_DEFAULT);
1182
1183 if (ConfigFileEntry.service_name == NULL)
1184 ConfigFileEntry.service_name = xstrdup(SERVICE_NAME_DEFAULT);
1185
1186 ConfigFileEntry.max_watch = IRCD_MAX(ConfigFileEntry.max_watch, WATCHSIZE_MIN);
1187 }
1188
1189 /* read_conf()
1190 *
1191 * inputs - file descriptor pointing to config file to use
1192 * output - None
1193 * side effects - Read configuration file.
1194 */
1195 static void
1196 read_conf(FILE *file)
1197 {
1198 lineno = 0;
1199
1200 set_default_conf(); /* Set default values prior to conf parsing */
1201 conf_parser_ctx.pass = 1;
1202 yyparse(); /* Pick up the classes first */
1203
1204 rewind(file);
1205
1206 conf_parser_ctx.pass = 2;
1207 yyparse(); /* Load the values from the conf */
1208 validate_conf(); /* Check to make sure some values are still okay. */
1209 /* Some global values are also loaded here. */
1210 class_delete_marked(); /* Delete unused classes that are marked for deletion */
1211 }
1212
1213 /* lookup_confhost()
1214 *
1215 * start DNS lookups of all hostnames in the conf
1216 * line and convert an IP addresses in a.b.c.d number for to IP#s.
1217 */
1218 void
1219 lookup_confhost(struct MaskItem *conf)
1220 {
1221 struct addrinfo hints, *res;
1222
1223 /*
1224 * Do name lookup now on hostnames given and store the
1225 * ip numbers in conf structure.
1226 */
1227 memset(&hints, 0, sizeof(hints));
1228
1229 hints.ai_family = AF_UNSPEC;
1230 hints.ai_socktype = SOCK_STREAM;
1231
1232 /* Get us ready for a bind() and don't bother doing dns lookup */
1233 hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
1234
1235 if (getaddrinfo(conf->host, NULL, &hints, &res))
1236 {
1237 conf_dns_lookup(conf);
1238 return;
1239 }
1240
1241 assert(res);
1242
1243 memcpy(&conf->addr, res->ai_addr, res->ai_addrlen);
1244 conf->addr.ss_len = res->ai_addrlen;
1245 conf->addr.ss.ss_family = res->ai_family;
1246
1247 freeaddrinfo(res);
1248 }
1249
1250 /* conf_connect_allowed()
1251 *
1252 * inputs - pointer to inaddr
1253 * - int type ipv4 or ipv6
1254 * output - BANNED or accepted
1255 * side effects - none
1256 */
1257 int
1258 conf_connect_allowed(struct irc_ssaddr *addr, int aftype)
1259 {
1260 struct ip_entry *ip_found = NULL;
1261 struct MaskItem *conf = find_dline_conf(addr, aftype);
1262
1263 /* DLINE exempt also gets you out of static limits/pacing... */
1264 if (conf && (conf->type == CONF_EXEMPT))
1265 return 0;
1266
1267 if (conf)
1268 return BANNED_CLIENT;
1269
1270 ip_found = find_or_add_ip(addr);
1271
1272 if ((CurrentTime - ip_found->last_attempt) < ConfigFileEntry.throttle_time)
1273 {
1274 if (ip_found->connection_count >= ConfigFileEntry.throttle_count)
1275 return TOO_FAST;
1276
1277 ++ip_found->connection_count;
1278 }
1279 else
1280 ip_found->connection_count = 1;
1281
1282 ip_found->last_attempt = CurrentTime;
1283 return 0;
1284 }
1285
1286 /* cleanup_tklines()
1287 *
1288 * inputs - NONE
1289 * output - NONE
1290 * side effects - call function to expire temporary k/d lines
1291 * This is an event started off in ircd.c
1292 */
1293 void
1294 cleanup_tklines(void *notused)
1295 {
1296 hostmask_expire_temporary();
1297 expire_tklines(&xconf_items);
1298 expire_tklines(&nresv_items);
1299 expire_tklines(&cresv_items);
1300 }
1301
1302 /* expire_tklines()
1303 *
1304 * inputs - tkline list pointer
1305 * output - NONE
1306 * side effects - expire tklines
1307 */
1308 static void
1309 expire_tklines(dlink_list *tklist)
1310 {
1311 dlink_node *ptr = NULL, *ptr_next = NULL;
1312 struct MaskItem *conf = NULL;
1313
1314 DLINK_FOREACH_SAFE(ptr, ptr_next, tklist->head)
1315 {
1316 conf = ptr->data;
1317
1318 if (!conf->until || conf->until > CurrentTime)
1319 continue;
1320
1321 if (conf->type == CONF_XLINE)
1322 {
1323 if (ConfigFileEntry.tkline_expire_notices)
1324 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1325 "Temporary X-line for [%s] expired", conf->name);
1326 conf_free(conf);
1327 }
1328 else if (conf->type == CONF_NRESV || conf->type == CONF_CRESV)
1329 {
1330 if (ConfigFileEntry.tkline_expire_notices)
1331 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1332 "Temporary RESV for [%s] expired", conf->name);
1333 conf_free(conf);
1334 }
1335 }
1336 }
1337
1338 /* oper_privs_as_string()
1339 *
1340 * inputs - pointer to client_p
1341 * output - pointer to static string showing oper privs
1342 * side effects - return as string, the oper privs as derived from port
1343 */
1344 static const struct oper_privs
1345 {
1346 const unsigned int flag;
1347 const unsigned char c;
1348 } flag_list[] = {
1349 { OPER_FLAG_ADMIN, 'A' },
1350 { OPER_FLAG_REMOTEBAN, 'B' },
1351 { OPER_FLAG_DIE, 'D' },
1352 { OPER_FLAG_GLINE, 'G' },
1353 { OPER_FLAG_REHASH, 'H' },
1354 { OPER_FLAG_KLINE, 'K' },
1355 { OPER_FLAG_KILL, 'N' },
1356 { OPER_FLAG_KILL_REMOTE, 'O' },
1357 { OPER_FLAG_CONNECT, 'P' },
1358 { OPER_FLAG_CONNECT_REMOTE, 'Q' },
1359 { OPER_FLAG_SQUIT, 'R' },
1360 { OPER_FLAG_SQUIT_REMOTE, 'S' },
1361 { OPER_FLAG_UNKLINE, 'U' },
1362 { OPER_FLAG_XLINE, 'X' },
1363 { 0, '\0' }
1364 };
1365
1366 char *
1367 oper_privs_as_string(const unsigned int port)
1368 {
1369 static char privs_out[IRCD_BUFSIZE];
1370 char *privs_ptr = privs_out;
1371
1372 for (const struct oper_privs *opriv = flag_list; opriv->flag; ++opriv)
1373 {
1374 if (port & opriv->flag)
1375 *privs_ptr++ = opriv->c;
1376 else
1377 *privs_ptr++ = ToLower(opriv->c);
1378 }
1379
1380 *privs_ptr = '\0';
1381
1382 return privs_out;
1383 }
1384
1385 /*
1386 * Input: A client to find the active operator {} name for.
1387 * Output: The nick!user@host{oper} of the oper.
1388 * "oper" is server name for remote opers
1389 * Side effects: None.
1390 */
1391 const char *
1392 get_oper_name(const struct Client *client_p)
1393 {
1394 const dlink_node *cnode = NULL;
1395 /* +5 for !,@,{,} and null */
1396 static char buffer[NICKLEN + USERLEN + HOSTLEN + HOSTLEN + 5];
1397
1398 if (MyConnect(client_p))
1399 {
1400 if ((cnode = client_p->localClient->confs.head))
1401 {
1402 const struct MaskItem *conf = cnode->data;
1403
1404 if (IsConfOperator(conf))
1405 {
1406 snprintf(buffer, sizeof(buffer), "%s!%s@%s{%s}", client_p->name,
1407 client_p->username, client_p->host, conf->name);
1408 return buffer;
1409 }
1410 }
1411
1412 /*
1413 * Probably should assert here for now. If there is an oper out there
1414 * with no operator {} conf attached, it would be good for us to know...
1415 */
1416 assert(0); /* Oper without oper conf! */
1417 }
1418
1419 snprintf(buffer, sizeof(buffer), "%s!%s@%s{%s}", client_p->name,
1420 client_p->username, client_p->host, client_p->servptr->name);
1421 return buffer;
1422 }
1423
1424 /* read_conf_files()
1425 *
1426 * inputs - cold start YES or NO
1427 * output - none
1428 * side effects - read all conf files needed, ircd.conf kline.conf etc.
1429 */
1430 void
1431 read_conf_files(int cold)
1432 {
1433 const char *filename = NULL;
1434 char chanmodes[IRCD_BUFSIZE] = "";
1435 char chanlimit[IRCD_BUFSIZE] = "";
1436
1437 conf_parser_ctx.boot = cold;
1438 filename = ConfigFileEntry.configfile;
1439
1440 /* We need to know the initial filename for the yyerror() to report
1441 FIXME: The full path is in conffilenamebuf first time since we
1442 don't know anything else
1443
1444 - Gozem 2002-07-21
1445 */
1446 strlcpy(conffilebuf, filename, sizeof(conffilebuf));
1447
1448 if ((conf_parser_ctx.conf_file = fopen(filename, "r")) == NULL)
1449 {
1450 if (cold)
1451 {
1452 ilog(LOG_TYPE_IRCD, "Unable to read configuration file '%s': %s",
1453 filename, strerror(errno));
1454 exit(-1);
1455 }
1456 else
1457 {
1458 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1459 "Unable to read configuration file '%s': %s",
1460 filename, strerror(errno));
1461 return;
1462 }
1463 }
1464
1465 if (!cold)
1466 clear_out_old_conf();
1467
1468 read_conf(conf_parser_ctx.conf_file);
1469 fclose(conf_parser_ctx.conf_file);
1470
1471 log_reopen_all();
1472
1473 add_isupport("NICKLEN", NULL, ServerInfo.max_nick_length);
1474 add_isupport("NETWORK", ServerInfo.network_name, -1);
1475
1476 snprintf(chanmodes, sizeof(chanmodes), "beI:%d", ConfigChannel.max_bans);
1477 add_isupport("MAXLIST", chanmodes, -1);
1478 add_isupport("MAXTARGETS", NULL, ConfigFileEntry.max_targets);
1479 add_isupport("CHANTYPES", "#", -1);
1480
1481 snprintf(chanlimit, sizeof(chanlimit), "#:%d",
1482 ConfigChannel.max_channels);
1483 add_isupport("CHANLIMIT", chanlimit, -1);
1484 snprintf(chanmodes, sizeof(chanmodes), "%s", "beI,k,l,cimnprstMORS");
1485 add_isupport("CHANNELLEN", NULL, CHANNELLEN);
1486 add_isupport("TOPICLEN", NULL, ServerInfo.max_topic_length);
1487 add_isupport("CHANMODES", chanmodes, -1);
1488
1489 /*
1490 * message_locale may have changed. rebuild isupport since it relies
1491 * on strlen(form_str(RPL_ISUPPORT))
1492 */
1493 rebuild_isupport_message_line();
1494 }
1495
1496 /* clear_out_old_conf()
1497 *
1498 * inputs - none
1499 * output - none
1500 * side effects - Clear out the old configuration
1501 */
1502 static void
1503 clear_out_old_conf(void)
1504 {
1505 dlink_node *ptr = NULL, *next_ptr = NULL;
1506 struct MaskItem *conf;
1507 dlink_list *free_items [] = {
1508 &server_items, &oconf_items,
1509 &uconf_items, &xconf_items,
1510 &nresv_items, &cluster_items, &service_items, &cresv_items, NULL
1511 };
1512
1513 dlink_list ** iterator = free_items; /* C is dumb */
1514
1515 /* We only need to free anything allocated by yyparse() here.
1516 * Resetting structs, etc, is taken care of by set_default_conf().
1517 */
1518
1519 for (; *iterator != NULL; iterator++)
1520 {
1521 DLINK_FOREACH_SAFE(ptr, next_ptr, (*iterator)->head)
1522 {
1523 conf = ptr->data;
1524
1525 dlinkDelete(&conf->node, map_to_list(conf->type));
1526
1527 /* XXX This is less than pretty */
1528 if (conf->type == CONF_SERVER || conf->type == CONF_OPER)
1529 {
1530 if (!conf->ref_count)
1531 conf_free(conf);
1532 }
1533 else if (conf->type == CONF_XLINE)
1534 {
1535 if (!conf->until)
1536 conf_free(conf);
1537 }
1538 else
1539 conf_free(conf);
1540 }
1541 }
1542
1543 motd_clear();
1544
1545 /*
1546 * don't delete the class table, rather mark all entries
1547 * for deletion. The table is cleaned up by class_delete_marked. - avalon
1548 */
1549 class_mark_for_deletion();
1550
1551 clear_out_address_conf();
1552
1553 /* clean out module paths */
1554 mod_clear_paths();
1555
1556 /* clean out ServerInfo */
1557 MyFree(ServerInfo.description);
1558 ServerInfo.description = NULL;
1559 MyFree(ServerInfo.network_name);
1560 ServerInfo.network_name = NULL;
1561 MyFree(ServerInfo.network_desc);
1562 ServerInfo.network_desc = NULL;
1563 #ifdef HAVE_LIBCRYPTO
1564 if (ServerInfo.rsa_private_key)
1565 {
1566 RSA_free(ServerInfo.rsa_private_key);
1567 ServerInfo.rsa_private_key = NULL;
1568 }
1569
1570 MyFree(ServerInfo.rsa_private_key_file);
1571 ServerInfo.rsa_private_key_file = NULL;
1572 #endif
1573
1574 /* clean out AdminInfo */
1575 MyFree(AdminInfo.name);
1576 AdminInfo.name = NULL;
1577 MyFree(AdminInfo.email);
1578 AdminInfo.email = NULL;
1579 MyFree(AdminInfo.description);
1580 AdminInfo.description = NULL;
1581
1582 /* clean out listeners */
1583 close_listeners();
1584
1585 /* clean out general */
1586 MyFree(ConfigFileEntry.service_name);
1587 ConfigFileEntry.service_name = NULL;
1588 }
1589
1590 /* conf_add_class_to_conf()
1591 *
1592 * inputs - pointer to config item
1593 * output - NONE
1594 * side effects - Add a class pointer to a conf
1595 */
1596 void
1597 conf_add_class_to_conf(struct MaskItem *conf, const char *class_name)
1598 {
1599 if (class_name == NULL)
1600 {
1601 conf->class = class_default;
1602
1603 if (conf->type == CONF_CLIENT)
1604 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1605 "Warning *** Defaulting to default class for %s@%s",
1606 conf->user, conf->host);
1607 else
1608 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1609 "Warning *** Defaulting to default class for %s",
1610 conf->name);
1611 }
1612 else
1613 conf->class = class_find(class_name, 1);
1614
1615 if (conf->class == NULL)
1616 {
1617 if (conf->type == CONF_CLIENT)
1618 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1619 "Warning *** Defaulting to default class for %s@%s",
1620 conf->user, conf->host);
1621 else
1622 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1623 "Warning *** Defaulting to default class for %s",
1624 conf->name);
1625 conf->class = class_default;
1626 }
1627 }
1628
1629 /* yyerror()
1630 *
1631 * inputs - message from parser
1632 * output - NONE
1633 * side effects - message to opers and log file entry is made
1634 */
1635 void
1636 yyerror(const char *msg)
1637 {
1638 char newlinebuf[IRCD_BUFSIZE];
1639
1640 if (conf_parser_ctx.pass != 1)
1641 return;
1642
1643 strip_tabs(newlinebuf, linebuf, sizeof(newlinebuf));
1644 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1645 "\"%s\", line %u: %s: %s",
1646 conffilebuf, lineno + 1, msg, newlinebuf);
1647 ilog(LOG_TYPE_IRCD, "\"%s\", line %u: %s: %s",
1648 conffilebuf, lineno + 1, msg, newlinebuf);
1649 }
1650
1651 void
1652 conf_error_report(const char *msg)
1653 {
1654 char newlinebuf[IRCD_BUFSIZE];
1655
1656 strip_tabs(newlinebuf, linebuf, sizeof(newlinebuf));
1657 sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
1658 "\"%s\", line %u: %s: %s",
1659 conffilebuf, lineno + 1, msg, newlinebuf);
1660 ilog(LOG_TYPE_IRCD, "\"%s\", line %u: %s: %s",
1661 conffilebuf, lineno + 1, msg, newlinebuf);
1662 }
1663
1664 /*
1665 * valid_tkline()
1666 *
1667 * inputs - pointer to ascii string to check
1668 * - whether the specified time is in seconds or minutes
1669 * output - -1 not enough parameters
1670 * - 0 if not an integer number, else the number
1671 * side effects - none
1672 * Originally written by Dianora (Diane, db@db.net)
1673 */
1674 time_t
1675 valid_tkline(const char *data, const int minutes)
1676 {
1677 const unsigned char *p = (const unsigned char *)data;
1678 unsigned char tmpch = '\0';
1679 time_t result = 0;
1680
1681 while ((tmpch = *p++))
1682 {
1683 if (!IsDigit(tmpch))
1684 return 0;
1685
1686 result *= 10;
1687 result += (tmpch & 0xF);
1688 }
1689
1690 /*
1691 * In the degenerate case where oper does a /quote kline 0 user@host :reason
1692 * i.e. they specifically use 0, I am going to return 1 instead
1693 * as a return value of non-zero is used to flag it as a temporary kline
1694 */
1695 if (result == 0)
1696 result = 1;
1697
1698 /*
1699 * If the incoming time is in seconds convert it to minutes for the purpose
1700 * of this calculation
1701 */
1702 if (!minutes)
1703 result = result / 60;
1704
1705 if (result > MAX_TDKLINE_TIME)
1706 result = MAX_TDKLINE_TIME;
1707
1708 result = result * 60; /* turn it into seconds */
1709
1710 return result;
1711 }
1712
1713 /* valid_wild_card_simple()
1714 *
1715 * inputs - data to check for sufficient non-wildcard characters
1716 * outputs - 1 if valid, else 0
1717 * side effects - none
1718 */
1719 int
1720 valid_wild_card_simple(const char *data)
1721 {
1722 const unsigned char *p = (const unsigned char *)data;
1723 unsigned char tmpch = '\0';
1724 unsigned int nonwild = 0;
1725
1726 while ((tmpch = *p++))
1727 {
1728 if (tmpch == '\\' && *p)
1729 {
1730 ++p;
1731 if (++nonwild >= ConfigFileEntry.min_nonwildcard_simple)
1732 return 1;
1733 }
1734 else if (!IsMWildChar(tmpch))
1735 {
1736 if (++nonwild >= ConfigFileEntry.min_nonwildcard_simple)
1737 return 1;
1738 }
1739 }
1740
1741 return 0;
1742 }
1743
1744 /* valid_wild_card()
1745 *
1746 * input - pointer to client
1747 * - int flag, 0 for no warning oper 1 for warning oper
1748 * - count of following varargs to check
1749 * output - 0 if not valid, 1 if valid
1750 * side effects - NOTICE is given to source_p if warn is 1
1751 */
1752 int
1753 valid_wild_card(struct Client *source_p, int warn, int count, ...)
1754 {
1755 unsigned char tmpch = '\0';
1756 unsigned int nonwild = 0;
1757 va_list args;
1758
1759 /*
1760 * Now we must check the user and host to make sure there
1761 * are at least NONWILDCHARS non-wildcard characters in
1762 * them, otherwise assume they are attempting to kline
1763 * *@* or some variant of that. This code will also catch
1764 * people attempting to kline *@*.tld, as long as NONWILDCHARS
1765 * is greater than 3. In that case, there are only 3 non-wild
1766 * characters (tld), so if NONWILDCHARS is 4, the kline will
1767 * be disallowed.
1768 * -wnder
1769 */
1770
1771 va_start(args, count);
1772
1773 while (count--)
1774 {
1775 const unsigned char *p = va_arg(args, const unsigned char *);
1776 if (p == NULL)
1777 continue;
1778
1779 while ((tmpch = *p++))
1780 {
1781 if (!IsKWildChar(tmpch))
1782 {
1783 /*
1784 * If we find enough non-wild characters, we can
1785 * break - no point in searching further.
1786 */
1787 if (++nonwild >= ConfigFileEntry.min_nonwildcard)
1788 {
1789 va_end(args);
1790 return 1;
1791 }
1792 }
1793 }
1794 }
1795
1796 if (warn)
1797 sendto_one_notice(source_p, &me,
1798 ":Please include at least %u non-wildcard characters with the mask",
1799 ConfigFileEntry.min_nonwildcard);
1800 va_end(args);
1801 return 0;
1802 }
1803
1804 /* XXX should this go into a separate file ? -Dianora */
1805 /* parse_aline
1806 *
1807 * input - pointer to cmd name being used
1808 * - pointer to client using cmd
1809 * - parc parameter count
1810 * - parv[] list of parameters to parse
1811 * - parse_flags bit map of things to test
1812 * - pointer to user or string to parse into
1813 * - pointer to host or NULL to parse into if non NULL
1814 * - pointer to optional tkline time or NULL
1815 * - pointer to target_server to parse into if non NULL
1816 * - pointer to reason to parse into
1817 *
1818 * output - 1 if valid, -1 if not valid
1819 * side effects - A generalised k/d/x etc. line parser,
1820 * "ALINE [time] user@host|string [ON] target :reason"
1821 * will parse returning a parsed user, host if
1822 * h_p pointer is non NULL, string otherwise.
1823 * if tkline_time pointer is non NULL a tk line will be set
1824 * to non zero if found.
1825 * if tkline_time pointer is NULL and tk line is found,
1826 * error is reported.
1827 * if target_server is NULL and an "ON" is found error
1828 * is reported.
1829 * if reason pointer is NULL ignore pointer,
1830 * this allows use of parse_a_line in unkline etc.
1831 *
1832 * - Dianora
1833 */
1834 int
1835 parse_aline(const char *cmd, struct Client *source_p,
1836 int parc, char **parv,
1837 int parse_flags, char **up_p, char **h_p, time_t *tkline_time,
1838 char **target_server, char **reason)
1839 {
1840 int found_tkline_time=0;
1841 static char def_reason[] = CONF_NOREASON;
1842 static char user[USERLEN*4+1];
1843 static char host[HOSTLEN*4+1];
1844
1845 parv++;
1846 parc--;
1847
1848 found_tkline_time = valid_tkline(*parv, TK_MINUTES);
1849
1850 if (found_tkline_time != 0)
1851 {
1852 parv++;
1853 parc--;
1854
1855 if (tkline_time != NULL)
1856 *tkline_time = found_tkline_time;
1857 else
1858 {
1859 sendto_one_notice(source_p, &me, ":temp_line not supported by %s", cmd);
1860 return -1;
1861 }
1862 }
1863
1864 if (parc == 0)
1865 {
1866 sendto_one_numeric(source_p, &me, ERR_NEEDMOREPARAMS, cmd);
1867 return -1;
1868 }
1869
1870 if (h_p == NULL)
1871 *up_p = *parv;
1872 else
1873 {
1874 if (find_user_host(source_p, *parv, user, host, parse_flags) == 0)
1875 return -1;
1876
1877 *up_p = user;
1878 *h_p = host;
1879 }
1880
1881 parc--;
1882 parv++;
1883
1884 if (parc != 0)
1885 {
1886 if (irccmp(*parv, "ON") == 0)
1887 {
1888 parc--;
1889 parv++;
1890
1891 if (target_server == NULL)
1892 {
1893 sendto_one_notice(source_p, &me, ":ON server not supported by %s", cmd);
1894 return -1;
1895 }
1896
1897 if (!HasOFlag(source_p, OPER_FLAG_REMOTEBAN))
1898 {
1899 sendto_one_numeric(source_p, &me, ERR_NOPRIVS, "remoteban");
1900 return -1;
1901 }
1902
1903 if (parc == 0 || EmptyString(*parv))
1904 {
1905 sendto_one_numeric(source_p, &me, ERR_NEEDMOREPARAMS, cmd);
1906 return -1;
1907 }
1908
1909 *target_server = *parv;
1910 parc--;
1911 parv++;
1912 }
1913 else
1914 {
1915 /* Make sure target_server *is* NULL if no ON server found
1916 * caller probably NULL'd it first, but no harm to do it again -db
1917 */
1918 if (target_server != NULL)
1919 *target_server = NULL;
1920 }
1921 }
1922
1923 if (h_p != NULL)
1924 {
1925 if (strchr(user, '!') != NULL)
1926 {
1927 sendto_one_notice(source_p, &me, ":Invalid character '!' in kline");
1928 return -1;
1929 }
1930
1931 if ((parse_flags & AWILD) && !valid_wild_card(source_p, 1, 2, *up_p, *h_p))
1932 return -1;
1933 }
1934 else
1935 if ((parse_flags & AWILD) && !valid_wild_card(source_p, 1, 1, *up_p))
1936 return -1;
1937
1938 if (reason != NULL)
1939 {
1940 if (parc != 0 && !EmptyString(*parv))
1941 {
1942 *reason = *parv;
1943 if (!valid_comment(source_p, *reason, 1))
1944 return -1;
1945 }
1946 else
1947 *reason = def_reason;
1948 }
1949
1950 return 1;
1951 }
1952
1953 /* find_user_host()
1954 *
1955 * inputs - pointer to client placing kline
1956 * - pointer to user_host_or_nick
1957 * - pointer to user buffer
1958 * - pointer to host buffer
1959 * output - 0 if not ok to kline, 1 to kline i.e. if valid user host
1960 * side effects -
1961 */
1962 static int
1963 find_user_host(struct Client *source_p, char *user_host_or_nick,
1964 char *luser, char *lhost, unsigned int flags)
1965 {
1966 struct Client *target_p = NULL;
1967 char *hostp = NULL;
1968
1969 if (lhost == NULL)
1970 {
1971 strlcpy(luser, user_host_or_nick, USERLEN*4 + 1);
1972 return 1;
1973 }
1974
1975 if ((hostp = strchr(user_host_or_nick, '@')) || *user_host_or_nick == '*')
1976 {
1977 /* Explicit user@host mask given */
1978
1979 if (hostp != NULL) /* I'm a little user@host */
1980 {
1981 *(hostp++) = '\0'; /* short and squat */
1982 if (*user_host_or_nick)
1983 strlcpy(luser, user_host_or_nick, USERLEN*4 + 1); /* here is my user */
1984 else
1985 strcpy(luser, "*");
1986
1987 if (*hostp)
1988 strlcpy(lhost, hostp, HOSTLEN + 1); /* here is my host */
1989 else
1990 strcpy(lhost, "*");
1991 }
1992 else
1993 {
1994 luser[0] = '*'; /* no @ found, assume its *@somehost */
1995 luser[1] = '\0';
1996 strlcpy(lhost, user_host_or_nick, HOSTLEN*4 + 1);
1997 }
1998
1999 return 1;
2000 }
2001 else
2002 {
2003 /* Try to find user@host mask from nick */
2004 /* Okay to use source_p as the first param, because source_p == client_p */
2005 if ((target_p =
2006 find_chasing(source_p, user_host_or_nick)) == NULL)
2007 return 0; /* find_chasing sends ERR_NOSUCHNICK */
2008
2009 if (IsExemptKline(target_p))
2010 {
2011 if (!IsServer(source_p))
2012 sendto_one_notice(source_p, &me, ":%s is E-lined", target_p->name);
2013 return 0;
2014 }
2015
2016 /*
2017 * turn the "user" bit into "*user", blow away '~'
2018 * if found in original user name (non-idented)
2019 */
2020 strlcpy(luser, target_p->username, USERLEN*4 + 1);
2021
2022 if (target_p->username[0] == '~')
2023 luser[0] = '*';
2024
2025 if (target_p->sockhost[0] == '\0' ||
2026 (target_p->sockhost[0] == '0' && target_p->sockhost[1] == '\0'))
2027 strlcpy(lhost, target_p->host, HOSTLEN*4 + 1);
2028 else
2029 strlcpy(lhost, target_p->sockhost, HOSTLEN*4 + 1);
2030 return 1;
2031 }
2032
2033 return 0;
2034 }
2035
2036 /* valid_comment()
2037 *
2038 * inputs - pointer to client
2039 * - pointer to comment
2040 * output - 0 if no valid comment,
2041 * - 1 if valid
2042 * side effects - truncates reason where necessary
2043 */
2044 int
2045 valid_comment(struct Client *source_p, char *comment, int warn)
2046 {
2047 if (strlen(comment) > REASONLEN)
2048 comment[REASONLEN-1] = '\0';
2049
2050 return 1;
2051 }
2052
2053 /* match_conf_password()
2054 *
2055 * inputs - pointer to given password
2056 * - pointer to Conf
2057 * output - 1 or 0 if match
2058 * side effects - none
2059 */
2060 int
2061 match_conf_password(const char *password, const struct MaskItem *conf)
2062 {
2063 const char *encr = NULL;
2064
2065 if (EmptyString(password) || EmptyString(conf->passwd))
2066 return 0;
2067
2068 if (conf->flags & CONF_FLAGS_ENCRYPTED)
2069 encr = crypt(password, conf->passwd);
2070 else
2071 encr = password;
2072
2073 return encr && !strcmp(encr, conf->passwd);
2074 }
2075
2076 /*
2077 * cluster_a_line
2078 *
2079 * inputs - client sending the cluster
2080 * - command name "KLINE" "XLINE" etc.
2081 * - capab -- CAP_KLN etc. from server.h
2082 * - cluster type -- CLUSTER_KLINE etc. from conf.h
2083 * - pattern and args to send along
2084 * output - none
2085 * side effects - Take source_p send the pattern with args given
2086 * along to all servers that match capab and cluster type
2087 */
2088 void
2089 cluster_a_line(struct Client *source_p, const char *command,
2090 int capab, int cluster_type, const char *pattern, ...)
2091 {
2092 va_list args;
2093 char buffer[IRCD_BUFSIZE] = "";
2094 const dlink_node *ptr = NULL;
2095
2096 va_start(args, pattern);
2097 vsnprintf(buffer, sizeof(buffer), pattern, args);
2098 va_end(args);
2099
2100 DLINK_FOREACH(ptr, cluster_items.head)
2101 {
2102 const struct MaskItem *conf = ptr->data;
2103
2104 if (conf->flags & cluster_type)
2105 sendto_match_servs(source_p, conf->name, CAP_CLUSTER|capab,
2106 "%s %s %s", command, conf->name, buffer);
2107 }
2108 }
2109
2110 /*
2111 * split_nuh
2112 *
2113 * inputs - pointer to original mask (modified in place)
2114 * - pointer to pointer where nick should go
2115 * - pointer to pointer where user should go
2116 * - pointer to pointer where host should go
2117 * output - NONE
2118 * side effects - mask is modified in place
2119 * If nick pointer is NULL, ignore writing to it
2120 * this allows us to use this function elsewhere.
2121 *
2122 * mask nick user host
2123 * ---------------------- ------- ------- ------
2124 * Dianora!db@db.net Dianora db db.net
2125 * Dianora Dianora * *
2126 * db.net * * db.net
2127 * OR if nick pointer is NULL
2128 * Dianora - * Dianora
2129 * Dianora! Dianora * *
2130 * Dianora!@ Dianora * *
2131 * Dianora!db Dianora db *
2132 * Dianora!@db.net Dianora * db.net
2133 * db@db.net * db db.net
2134 * !@ * * *
2135 * @ * * *
2136 * ! * * *
2137 */
2138 void
2139 split_nuh(struct split_nuh_item *const iptr)
2140 {
2141 char *p = NULL, *q = NULL;
2142
2143 if (iptr->nickptr)
2144 strlcpy(iptr->nickptr, "*", iptr->nicksize);
2145 if (iptr->userptr)
2146 strlcpy(iptr->userptr, "*", iptr->usersize);
2147 if (iptr->hostptr)
2148 strlcpy(iptr->hostptr, "*", iptr->hostsize);
2149
2150 if ((p = strchr(iptr->nuhmask, '!')))
2151 {
2152 *p = '\0';
2153
2154 if (iptr->nickptr && *iptr->nuhmask)
2155 strlcpy(iptr->nickptr, iptr->nuhmask, iptr->nicksize);
2156
2157 if ((q = strchr(++p, '@')))
2158 {
2159 *q++ = '\0';
2160
2161 if (*p)
2162 strlcpy(iptr->userptr, p, iptr->usersize);
2163
2164 if (*q)
2165 strlcpy(iptr->hostptr, q, iptr->hostsize);
2166 }
2167 else
2168 {
2169 if (*p)
2170 strlcpy(iptr->userptr, p, iptr->usersize);
2171 }
2172 }
2173 else
2174 {
2175 /* No ! found so lets look for a user@host */
2176 if ((p = strchr(iptr->nuhmask, '@')))
2177 {
2178 /* if found a @ */
2179 *p++ = '\0';
2180
2181 if (*iptr->nuhmask)
2182 strlcpy(iptr->userptr, iptr->nuhmask, iptr->usersize);
2183
2184 if (*p)
2185 strlcpy(iptr->hostptr, p, iptr->hostsize);
2186 }
2187 else
2188 {
2189 /* no @ found */
2190 if (!iptr->nickptr || strpbrk(iptr->nuhmask, ".:"))
2191 strlcpy(iptr->hostptr, iptr->nuhmask, iptr->hostsize);
2192 else
2193 strlcpy(iptr->nickptr, iptr->nuhmask, iptr->nicksize);
2194 }
2195 }
2196 }

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision