]> jfr.im git - irc/rqf/shadowircd.git/blame - src/s_newconf.c
Make the epoll check work more reliably.
[irc/rqf/shadowircd.git] / src / s_newconf.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
3 * s_newconf.c - code for dealing with conf stuff
4 *
5 * Copyright (C) 2004 Lee Hardy <lee@leeh.co.uk>
6 * Copyright (C) 2004-2005 ircd-ratbox development team
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * 1.Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 * 2.Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3.The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 *
7d08aa89 32 * $Id: s_newconf.c 3508 2007-06-04 16:04:49Z jilles $
212380e3 33 */
34
35#include "stdinc.h"
36#include "ircd_defs.h"
37#include "common.h"
38#include "s_conf.h"
39#include "s_newconf.h"
40#include "tools.h"
41#include "client.h"
42#include "memory.h"
43#include "s_serv.h"
44#include "send.h"
45#include "hostmask.h"
46#include "newconf.h"
47#include "hash.h"
48#include "balloc.h"
49#include "event.h"
50#include "sprintf_irc.h"
b37021a4 51#include "irc_dictionary.h"
212380e3 52
53dlink_list shared_conf_list;
54dlink_list cluster_conf_list;
55dlink_list oper_conf_list;
56dlink_list hubleaf_conf_list;
57dlink_list server_conf_list;
58dlink_list xline_conf_list;
59dlink_list resv_conf_list; /* nicks only! */
60dlink_list nd_list; /* nick delay */
61dlink_list tgchange_list;
62
63patricia_tree_t *tgchange_tree;
64
65static BlockHeap *nd_heap = NULL;
66
67static void expire_temp_rxlines(void *unused);
68static void expire_nd_entries(void *unused);
69
70void
71init_s_newconf(void)
72{
73 tgchange_tree = New_Patricia(PATRICIA_BITS);
74 nd_heap = BlockHeapCreate(sizeof(struct nd_entry), ND_HEAP_SIZE);
75 eventAddIsh("expire_nd_entries", expire_nd_entries, NULL, 30);
76 eventAddIsh("expire_temp_rxlines", expire_temp_rxlines, NULL, 60);
77}
78
79void
80clear_s_newconf(void)
81{
82 struct server_conf *server_p;
83 dlink_node *ptr;
84 dlink_node *next_ptr;
85
86 DLINK_FOREACH_SAFE(ptr, next_ptr, shared_conf_list.head)
87 {
88 /* ptr here is ptr->data->node */
89 dlinkDelete(ptr, &shared_conf_list);
90 free_remote_conf(ptr->data);
91 }
92
93 DLINK_FOREACH_SAFE(ptr, next_ptr, cluster_conf_list.head)
94 {
95 dlinkDelete(ptr, &cluster_conf_list);
96 free_remote_conf(ptr->data);
97 }
98
99 DLINK_FOREACH_SAFE(ptr, next_ptr, hubleaf_conf_list.head)
100 {
101 dlinkDelete(ptr, &hubleaf_conf_list);
102 free_remote_conf(ptr->data);
103 }
104
105 DLINK_FOREACH_SAFE(ptr, next_ptr, oper_conf_list.head)
106 {
107 free_oper_conf(ptr->data);
108 dlinkDestroy(ptr, &oper_conf_list);
109 }
110
111 DLINK_FOREACH_SAFE(ptr, next_ptr, server_conf_list.head)
112 {
113 server_p = ptr->data;
114
115 if(!server_p->servers)
116 {
117 dlinkDelete(ptr, &server_conf_list);
118 free_server_conf(ptr->data);
119 }
120 else
121 server_p->flags |= SERVER_ILLEGAL;
122 }
123}
124
125void
126clear_s_newconf_bans(void)
127{
128 struct ConfItem *aconf;
129 dlink_node *ptr, *next_ptr;
130
131 DLINK_FOREACH_SAFE(ptr, next_ptr, xline_conf_list.head)
132 {
133 aconf = ptr->data;
134
135 if(aconf->hold)
136 continue;
137
138 free_conf(aconf);
139 dlinkDestroy(ptr, &xline_conf_list);
140 }
141
142 DLINK_FOREACH_SAFE(ptr, next_ptr, resv_conf_list.head)
143 {
144 aconf = ptr->data;
145
146 /* temporary resv */
147 if(aconf->hold)
148 continue;
149
150 free_conf(aconf);
151 dlinkDestroy(ptr, &resv_conf_list);
152 }
153
154 clear_resv_hash();
155}
156
157struct remote_conf *
158make_remote_conf(void)
159{
160 struct remote_conf *remote_p = MyMalloc(sizeof(struct remote_conf));
161 return remote_p;
162}
163
164void
165free_remote_conf(struct remote_conf *remote_p)
166{
167 s_assert(remote_p != NULL);
168 if(remote_p == NULL)
169 return;
170
171 MyFree(remote_p->username);
172 MyFree(remote_p->host);
173 MyFree(remote_p->server);
174 MyFree(remote_p);
175}
176
177int
178find_shared_conf(const char *username, const char *host,
179 const char *server, int flags)
180{
181 struct remote_conf *shared_p;
182 dlink_node *ptr;
183
184 DLINK_FOREACH(ptr, shared_conf_list.head)
185 {
186 shared_p = ptr->data;
187
188 if(match(shared_p->username, username) &&
189 match(shared_p->host, host) &&
190 match(shared_p->server, server))
191 {
192 if(shared_p->flags & flags)
193 return YES;
194 else
195 return NO;
196 }
197 }
198
199 return NO;
200}
201
202void
203propagate_generic(struct Client *source_p, const char *command,
204 const char *target, int cap, const char *format, ...)
205{
206 char buffer[BUFSIZE];
207 va_list args;
208
209 va_start(args, format);
210 ircvsnprintf(buffer, sizeof(buffer), format, args);
211 va_end(args);
212
213 sendto_match_servs(source_p, target, cap, NOCAPS,
214 "%s %s %s",
215 command, target, buffer);
216 sendto_match_servs(source_p, target, CAP_ENCAP, cap,
217 "ENCAP %s %s %s",
218 target, command, buffer);
219}
220
221void
222cluster_generic(struct Client *source_p, const char *command,
223 int cltype, int cap, const char *format, ...)
224{
225 char buffer[BUFSIZE];
226 struct remote_conf *shared_p;
227 va_list args;
228 dlink_node *ptr;
229
230 va_start(args, format);
231 ircvsnprintf(buffer, sizeof(buffer), format, args);
232 va_end(args);
233
234 DLINK_FOREACH(ptr, cluster_conf_list.head)
235 {
236 shared_p = ptr->data;
237
238 if(!(shared_p->flags & cltype))
239 continue;
240
241 sendto_match_servs(source_p, shared_p->server, cap, NOCAPS,
242 "%s %s %s",
243 command, shared_p->server, buffer);
244 sendto_match_servs(source_p, shared_p->server, CAP_ENCAP, cap,
245 "ENCAP %s %s %s",
246 shared_p->server, command, buffer);
247 }
248}
249
250struct oper_conf *
251make_oper_conf(void)
252{
253 struct oper_conf *oper_p = MyMalloc(sizeof(struct oper_conf));
254 return oper_p;
255}
256
257void
258free_oper_conf(struct oper_conf *oper_p)
259{
260 s_assert(oper_p != NULL);
261 if(oper_p == NULL)
262 return;
263
264 MyFree(oper_p->username);
265 MyFree(oper_p->host);
266 MyFree(oper_p->name);
267
268 if(oper_p->passwd)
269 {
270 memset(oper_p->passwd, 0, strlen(oper_p->passwd));
271 MyFree(oper_p->passwd);
272 }
273
274#ifdef HAVE_LIBCRYPTO
275 MyFree(oper_p->rsa_pubkey_file);
276
277 if(oper_p->rsa_pubkey)
278 RSA_free(oper_p->rsa_pubkey);
279#endif
280
281 MyFree(oper_p);
282}
283
284struct oper_conf *
285find_oper_conf(const char *username, const char *host, const char *locip, const char *name)
286{
287 struct oper_conf *oper_p;
288 struct irc_sockaddr_storage ip, cip;
289 char addr[HOSTLEN+1];
290 int bits, cbits;
291 dlink_node *ptr;
292
293 parse_netmask(locip, (struct sockaddr *)&cip, &cbits);
294
295 DLINK_FOREACH(ptr, oper_conf_list.head)
296 {
297 oper_p = ptr->data;
298
299 /* name/username doesnt match.. */
300 if(irccmp(oper_p->name, name) || !match(oper_p->username, username))
301 continue;
302
303 strlcpy(addr, oper_p->host, sizeof(addr));
304
305 if(parse_netmask(addr, (struct sockaddr *)&ip, &bits) != HM_HOST)
306 {
307 if(ip.ss_family == cip.ss_family &&
308 comp_with_mask_sock((struct sockaddr *)&ip, (struct sockaddr *)&cip, bits))
309 return oper_p;
310 }
311
312 /* we have to compare against the host as well, because its
313 * valid to set a spoof to an IP, which if we only compare
314 * in ip form to sockhost will not necessarily match --anfl
315 */
316 if(match(oper_p->host, host))
317 return oper_p;
318 }
319
320 return NULL;
321}
322
323struct oper_flags
324{
325 int flag;
326 char has;
327 char hasnt;
328};
329static struct oper_flags oper_flagtable[] =
330{
331 { OPER_GLINE, 'G', 'g' },
332 { OPER_KLINE, 'K', 'k' },
333 { OPER_XLINE, 'X', 'x' },
334 { OPER_GLOBKILL, 'O', 'o' },
335 { OPER_LOCKILL, 'C', 'c' },
336 { OPER_REMOTE, 'R', 'r' },
337 { OPER_UNKLINE, 'U', 'u' },
338 { OPER_REHASH, 'H', 'h' },
339 { OPER_DIE, 'D', 'd' },
340 { OPER_ADMIN, 'A', 'a' },
341 { OPER_NICKS, 'N', 'n' },
342 { OPER_OPERWALL, 'L', 'l' },
343 { OPER_SPY, 'S', 's' },
344 { OPER_INVIS, 'P', 'p' },
345 { OPER_REMOTEBAN, 'B', 'b' },
346 { 0, '\0', '\0' }
347};
348
349const char *
350get_oper_privs(int flags)
351{
352 static char buf[20];
353 char *p;
354 int i;
355
356 p = buf;
357
358 for(i = 0; oper_flagtable[i].flag; i++)
359 {
360 if(flags & oper_flagtable[i].flag)
361 *p++ = oper_flagtable[i].has;
362 else
363 *p++ = oper_flagtable[i].hasnt;
364 }
365
366 *p = '\0';
367
368 return buf;
369}
370
371struct server_conf *
372make_server_conf(void)
373{
374 struct server_conf *server_p = MyMalloc(sizeof(struct server_conf));
375 server_p->aftype = AF_INET;
376 return server_p;
377}
378
379void
380free_server_conf(struct server_conf *server_p)
381{
382 s_assert(server_p != NULL);
383 if(server_p == NULL)
384 return;
385
386 if(!EmptyString(server_p->passwd))
387 {
388 memset(server_p->passwd, 0, strlen(server_p->passwd));
389 MyFree(server_p->passwd);
390 }
391
392 if(!EmptyString(server_p->spasswd))
393 {
394 memset(server_p->spasswd, 0, strlen(server_p->spasswd));
395 MyFree(server_p->spasswd);
396 }
397
398 MyFree(server_p->name);
399 MyFree(server_p->host);
400 MyFree(server_p->class_name);
401 MyFree(server_p);
402}
403
404void
405add_server_conf(struct server_conf *server_p)
406{
407 if(EmptyString(server_p->class_name))
408 {
409 DupString(server_p->class_name, "default");
410 server_p->class = default_class;
411 return;
412 }
413
414 server_p->class = find_class(server_p->class_name);
415
416 if(server_p->class == default_class)
417 {
418 conf_report_error("Warning connect::class invalid for %s",
419 server_p->name);
420
421 MyFree(server_p->class_name);
422 DupString(server_p->class_name, "default");
423 }
424
425 if(strchr(server_p->host, '*') || strchr(server_p->host, '?'))
426 return;
427}
428
429struct server_conf *
430find_server_conf(const char *name)
431{
432 struct server_conf *server_p;
433 dlink_node *ptr;
434
435 DLINK_FOREACH(ptr, server_conf_list.head)
436 {
437 server_p = ptr->data;
438
439 if(ServerConfIllegal(server_p))
440 continue;
441
442 if(match(name, server_p->name))
443 return server_p;
444 }
445
446 return NULL;
447}
448
449void
450attach_server_conf(struct Client *client_p, struct server_conf *server_p)
451{
452 /* already have an attached conf */
453 if(client_p->localClient->att_sconf)
454 {
455 /* short circuit this special case :) */
456 if(client_p->localClient->att_sconf == server_p)
457 return;
458
459 detach_server_conf(client_p);
460 }
461
462 CurrUsers(server_p->class)++;
463
464 client_p->localClient->att_sconf = server_p;
465 server_p->servers++;
466}
467
468void
469detach_server_conf(struct Client *client_p)
470{
471 struct server_conf *server_p = client_p->localClient->att_sconf;
472
473 if(server_p == NULL)
474 return;
475
476 client_p->localClient->att_sconf = NULL;
477 server_p->servers--;
478 CurrUsers(server_p->class)--;
479
480 if(ServerConfIllegal(server_p) && !server_p->servers)
481 {
482 /* the class this one is using may need destroying too */
483 if(MaxUsers(server_p->class) < 0 && CurrUsers(server_p->class) <= 0)
484 free_class(server_p->class);
485
486 dlinkDelete(&server_p->node, &server_conf_list);
487 free_server_conf(server_p);
488 }
489}
490
491void
492set_server_conf_autoconn(struct Client *source_p, char *name, int newval)
493{
494 struct server_conf *server_p;
495
496 if((server_p = find_server_conf(name)) != NULL)
497 {
498 if(newval)
499 server_p->flags |= SERVER_AUTOCONN;
500 else
501 server_p->flags &= ~SERVER_AUTOCONN;
502
503 sendto_realops_snomask(SNO_GENERAL, L_ALL,
504 "%s has changed AUTOCONN for %s to %i",
505 get_oper_name(source_p), name, newval);
506 }
507 else
5366977b 508 sendto_one_notice(source_p, ":Can't find %s", name);
212380e3 509}
510
511struct ConfItem *
512find_xline(const char *gecos, int counter)
513{
514 struct ConfItem *aconf;
515 dlink_node *ptr;
516
517 DLINK_FOREACH(ptr, xline_conf_list.head)
518 {
519 aconf = ptr->data;
520
521 if(match_esc(aconf->name, gecos))
522 {
523 if(counter)
524 aconf->port++;
525 return aconf;
526 }
527 }
528
529 return NULL;
530}
531
0fdb2570
JT
532struct ConfItem *
533find_xline_mask(const char *gecos)
534{
535 struct ConfItem *aconf;
536 dlink_node *ptr;
537
538 DLINK_FOREACH(ptr, xline_conf_list.head)
539 {
540 aconf = ptr->data;
541
542 if(!irccmp(aconf->name, gecos))
543 return aconf;
544 }
545
546 return NULL;
547}
548
212380e3 549struct ConfItem *
550find_nick_resv(const char *name)
551{
552 struct ConfItem *aconf;
553 dlink_node *ptr;
554
555 DLINK_FOREACH(ptr, resv_conf_list.head)
556 {
557 aconf = ptr->data;
558
559 if(match_esc(aconf->name, name))
560 {
561 aconf->port++;
562 return aconf;
563 }
564 }
565
566 return NULL;
567}
568
0fdb2570
JT
569struct ConfItem *
570find_nick_resv_mask(const char *name)
571{
572 struct ConfItem *aconf;
573 dlink_node *ptr;
574
575 DLINK_FOREACH(ptr, resv_conf_list.head)
576 {
577 aconf = ptr->data;
578
579 if(!irccmp(aconf->name, name))
580 return aconf;
581 }
582
583 return NULL;
584}
585
212380e3 586/* clean_resv_nick()
587 *
588 * inputs - nick
589 * outputs - 1 if nick is vaild resv, 0 otherwise
590 * side effects -
591 */
592int
593clean_resv_nick(const char *nick)
594{
595 char tmpch;
596 int as = 0;
597 int q = 0;
598 int ch = 0;
599
600 if(*nick == '-' || IsDigit(*nick))
601 return 0;
602
603 while ((tmpch = *nick++))
604 {
605 if(tmpch == '?' || tmpch == '@' || tmpch == '#')
606 q++;
607 else if(tmpch == '*')
608 as++;
609 else if(IsNickChar(tmpch))
610 ch++;
611 else
612 return 0;
613 }
614
615 if(!ch && as)
616 return 0;
617
618 return 1;
619}
620
621/* valid_wild_card_simple()
622 *
623 * inputs - "thing" to test
624 * outputs - 1 if enough wildcards, else 0
625 * side effects -
626 */
627int
628valid_wild_card_simple(const char *data)
629{
630 const char *p;
631 char tmpch;
632 int nonwild = 0;
7d08aa89 633 int wild = 0;
212380e3 634
635 /* check the string for minimum number of nonwildcard chars */
636 p = data;
637
638 while((tmpch = *p++))
639 {
640 /* found an escape, p points to the char after it, so skip
641 * that and move on.
642 */
7d08aa89 643 if(tmpch == '\\' && *p)
212380e3 644 {
645 p++;
7d08aa89 646 if(++nonwild >= ConfigFileEntry.min_nonwildcard_simple)
647 return 1;
212380e3 648 }
649 else if(!IsMWildChar(tmpch))
650 {
651 /* if we have enough nonwildchars, return */
652 if(++nonwild >= ConfigFileEntry.min_nonwildcard_simple)
653 return 1;
654 }
7d08aa89 655 else
656 wild++;
212380e3 657 }
658
7d08aa89 659 /* strings without wilds are also ok */
660 return wild == 0;
212380e3 661}
662
663time_t
664valid_temp_time(const char *p)
665{
666 time_t result = 0;
667
668 while(*p)
669 {
670 if(IsDigit(*p))
671 {
672 result *= 10;
673 result += ((*p) & 0xF);
674 p++;
675 }
676 else
677 return -1;
678 }
679
680 if(result > (60 * 24 * 7 * 52))
681 result = (60 * 24 * 7 * 52);
682
683 return(result * 60);
684}
685
686static void
687expire_temp_rxlines(void *unused)
688{
689 struct ConfItem *aconf;
690 dlink_node *ptr;
691 dlink_node *next_ptr;
692 int i;
693
694 HASH_WALK_SAFE(i, R_MAX, ptr, next_ptr, resvTable)
695 {
696 aconf = ptr->data;
697
698 if(aconf->hold && aconf->hold <= CurrentTime)
699 {
700 if(ConfigFileEntry.tkline_expire_notices)
701 sendto_realops_snomask(SNO_GENERAL, L_ALL,
702 "Temporary RESV for [%s] expired",
703 aconf->name);
704
705 free_conf(aconf);
706 dlinkDestroy(ptr, &resvTable[i]);
707 }
708 }
709 HASH_WALK_END
710
711 DLINK_FOREACH_SAFE(ptr, next_ptr, resv_conf_list.head)
712 {
713 aconf = ptr->data;
714
715 if(aconf->hold && aconf->hold <= CurrentTime)
716 {
717 if(ConfigFileEntry.tkline_expire_notices)
718 sendto_realops_snomask(SNO_GENERAL, L_ALL,
719 "Temporary RESV for [%s] expired",
720 aconf->name);
721 free_conf(aconf);
722 dlinkDestroy(ptr, &resv_conf_list);
723 }
724 }
725
726 DLINK_FOREACH_SAFE(ptr, next_ptr, xline_conf_list.head)
727 {
728 aconf = ptr->data;
729
730 if(aconf->hold && aconf->hold <= CurrentTime)
731 {
732 if(ConfigFileEntry.tkline_expire_notices)
733 sendto_realops_snomask(SNO_GENERAL, L_ALL,
734 "Temporary X-line for [%s] expired",
735 aconf->name);
736 free_conf(aconf);
737 dlinkDestroy(ptr, &xline_conf_list);
738 }
739 }
740}
741
742unsigned long
743get_nd_count(void)
744{
745 return(dlink_list_length(&nd_list));
746}
747
212380e3 748void
749add_nd_entry(const char *name)
750{
751 struct nd_entry *nd;
752
b37021a4 753 if(irc_dictionary_find(nd_dict, name) != NULL)
212380e3 754 return;
755
756 nd = BlockHeapAlloc(nd_heap);
757
758 strlcpy(nd->name, name, sizeof(nd->name));
759 nd->expire = CurrentTime + ConfigFileEntry.nick_delay;
760
761 /* this list is ordered */
762 dlinkAddTail(nd, &nd->lnode, &nd_list);
b37021a4
WP
763
764 irc_dictionary_add(nd_dict, nd->name, nd);
212380e3 765}
766
767void
768free_nd_entry(struct nd_entry *nd)
769{
b37021a4
WP
770 irc_dictionary_delete(nd_dict, nd->name);
771
212380e3 772 dlinkDelete(&nd->lnode, &nd_list);
212380e3 773 BlockHeapFree(nd_heap, nd);
774}
775
776void
777expire_nd_entries(void *unused)
778{
779 struct nd_entry *nd;
780 dlink_node *ptr;
781 dlink_node *next_ptr;
782
783 DLINK_FOREACH_SAFE(ptr, next_ptr, nd_list.head)
784 {
785 nd = ptr->data;
786
787 /* this list is ordered - we can stop when we hit the first
788 * entry that doesnt expire..
789 */
790 if(nd->expire > CurrentTime)
791 return;
792
793 free_nd_entry(nd);
794 }
795}
796
797void
798add_tgchange(const char *host)
799{
800 tgchange *target;
801 patricia_node_t *pnode;
802
803 if(find_tgchange(host))
804 return;
805
806 target = MyMalloc(sizeof(tgchange));
807 pnode = make_and_lookup(tgchange_tree, host);
808
809 pnode->data = target;
810 target->pnode = pnode;
811
812 DupString(target->ip, host);
813 target->expiry = CurrentTime + (60*60*12);
814
815 dlinkAdd(target, &target->node, &tgchange_list);
816}
817
818tgchange *
819find_tgchange(const char *host)
820{
821 patricia_node_t *pnode;
822
823 if((pnode = match_exact_string(tgchange_tree, host)))
824 return pnode->data;
825
826 return NULL;
827}
828