ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/conf.c
Revision: 1751
Committed: Wed Jan 16 18:30:52 2013 UTC (12 years, 7 months ago) by michael
Content type: text/x-csrc
File size: 64886 byte(s)
Log Message:
- Forward-port -r1750 [IMPORTANT: nick and topic lengths are now configurable
  via ircd.conf. A max_nick_length, as well as a max_topic_length configuration
  option can now be found in the serverinfo{} block]
- OpenSSL 0.9.8s and higher is now required in order to enable ssl support

File Contents

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

Properties

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