]> jfr.im git - irc/rqf/shadowircd.git/blame - src/s_newconf.c
Disable autoconnect for a server with excessive TS delta.
[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"
212380e3 40#include "client.h"
212380e3 41#include "s_serv.h"
42#include "send.h"
43#include "hostmask.h"
44#include "newconf.h"
45#include "hash.h"
b37021a4 46#include "irc_dictionary.h"
212380e3 47
af81d5a0
WP
48rb_dlink_list shared_conf_list;
49rb_dlink_list cluster_conf_list;
50rb_dlink_list oper_conf_list;
51rb_dlink_list hubleaf_conf_list;
52rb_dlink_list server_conf_list;
53rb_dlink_list xline_conf_list;
54rb_dlink_list resv_conf_list; /* nicks only! */
55rb_dlink_list nd_list; /* nick delay */
56rb_dlink_list tgchange_list;
212380e3 57
7f4fa195 58rb_patricia_tree_t *tgchange_tree;
212380e3 59
6e9b4415 60static rb_bh *nd_heap = NULL;
212380e3 61
62static void expire_temp_rxlines(void *unused);
63static void expire_nd_entries(void *unused);
64
7c944f64
WP
65struct ev_entry *expire_nd_entries_ev = NULL;
66struct ev_entry *expire_temp_rxlines_ev = NULL;
67
212380e3 68void
69init_s_newconf(void)
70{
7c944f64
WP
71 tgchange_tree = rb_new_patricia(PATRICIA_BITS);
72 nd_heap = rb_bh_create(sizeof(struct nd_entry), ND_HEAP_SIZE, "nd_heap");
73 expire_nd_entries_ev = rb_event_addish("expire_nd_entries", expire_nd_entries, NULL, 30);
74 expire_temp_rxlines_ev = rb_event_addish("expire_temp_rxlines", expire_temp_rxlines, NULL, 60);
212380e3 75}
76
77void
78clear_s_newconf(void)
79{
80 struct server_conf *server_p;
af81d5a0 81 rb_dlink_node *ptr;
90a3c35b 82 rb_dlink_node *next_ptr;
212380e3 83
90a3c35b 84 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, shared_conf_list.head)
212380e3 85 {
86 /* ptr here is ptr->data->node */
af81d5a0 87 rb_dlinkDelete(ptr, &shared_conf_list);
212380e3 88 free_remote_conf(ptr->data);
89 }
90
90a3c35b 91 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, cluster_conf_list.head)
212380e3 92 {
af81d5a0 93 rb_dlinkDelete(ptr, &cluster_conf_list);
212380e3 94 free_remote_conf(ptr->data);
95 }
96
90a3c35b 97 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, hubleaf_conf_list.head)
212380e3 98 {
af81d5a0 99 rb_dlinkDelete(ptr, &hubleaf_conf_list);
212380e3 100 free_remote_conf(ptr->data);
101 }
102
90a3c35b 103 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, oper_conf_list.head)
212380e3 104 {
105 free_oper_conf(ptr->data);
af81d5a0 106 rb_dlinkDestroy(ptr, &oper_conf_list);
212380e3 107 }
108
90a3c35b 109 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, server_conf_list.head)
212380e3 110 {
111 server_p = ptr->data;
112
113 if(!server_p->servers)
114 {
af81d5a0 115 rb_dlinkDelete(ptr, &server_conf_list);
212380e3 116 free_server_conf(ptr->data);
117 }
118 else
119 server_p->flags |= SERVER_ILLEGAL;
120 }
121}
122
123void
124clear_s_newconf_bans(void)
125{
126 struct ConfItem *aconf;
90a3c35b 127 rb_dlink_node *ptr, *next_ptr;
212380e3 128
90a3c35b 129 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, xline_conf_list.head)
212380e3 130 {
131 aconf = ptr->data;
132
133 if(aconf->hold)
134 continue;
135
136 free_conf(aconf);
af81d5a0 137 rb_dlinkDestroy(ptr, &xline_conf_list);
212380e3 138 }
139
90a3c35b 140 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, resv_conf_list.head)
212380e3 141 {
142 aconf = ptr->data;
143
144 /* temporary resv */
145 if(aconf->hold)
146 continue;
147
148 free_conf(aconf);
af81d5a0 149 rb_dlinkDestroy(ptr, &resv_conf_list);
212380e3 150 }
151
152 clear_resv_hash();
153}
154
155struct remote_conf *
156make_remote_conf(void)
157{
8e43b0b4 158 struct remote_conf *remote_p = rb_malloc(sizeof(struct remote_conf));
212380e3 159 return remote_p;
160}
161
162void
163free_remote_conf(struct remote_conf *remote_p)
164{
165 s_assert(remote_p != NULL);
166 if(remote_p == NULL)
167 return;
168
90a3c35b
VY
169 rb_free(remote_p->username);
170 rb_free(remote_p->host);
171 rb_free(remote_p->server);
172 rb_free(remote_p);
212380e3 173}
174
175int
176find_shared_conf(const char *username, const char *host,
177 const char *server, int flags)
178{
179 struct remote_conf *shared_p;
af81d5a0 180 rb_dlink_node *ptr;
212380e3 181
8e69bb4e 182 RB_DLINK_FOREACH(ptr, shared_conf_list.head)
212380e3 183 {
184 shared_p = ptr->data;
185
186 if(match(shared_p->username, username) &&
187 match(shared_p->host, host) &&
188 match(shared_p->server, server))
189 {
190 if(shared_p->flags & flags)
191 return YES;
192 else
193 return NO;
194 }
195 }
196
197 return NO;
198}
199
200void
201propagate_generic(struct Client *source_p, const char *command,
202 const char *target, int cap, const char *format, ...)
203{
204 char buffer[BUFSIZE];
205 va_list args;
206
207 va_start(args, format);
7c944f64 208 rb_vsnprintf(buffer, sizeof(buffer), format, args);
212380e3 209 va_end(args);
210
211 sendto_match_servs(source_p, target, cap, NOCAPS,
212 "%s %s %s",
213 command, target, buffer);
214 sendto_match_servs(source_p, target, CAP_ENCAP, cap,
215 "ENCAP %s %s %s",
216 target, command, buffer);
217}
218
219void
220cluster_generic(struct Client *source_p, const char *command,
221 int cltype, int cap, const char *format, ...)
222{
223 char buffer[BUFSIZE];
224 struct remote_conf *shared_p;
225 va_list args;
af81d5a0 226 rb_dlink_node *ptr;
212380e3 227
228 va_start(args, format);
7c944f64 229 rb_vsnprintf(buffer, sizeof(buffer), format, args);
212380e3 230 va_end(args);
231
8e69bb4e 232 RB_DLINK_FOREACH(ptr, cluster_conf_list.head)
212380e3 233 {
234 shared_p = ptr->data;
235
236 if(!(shared_p->flags & cltype))
237 continue;
238
239 sendto_match_servs(source_p, shared_p->server, cap, NOCAPS,
240 "%s %s %s",
241 command, shared_p->server, buffer);
242 sendto_match_servs(source_p, shared_p->server, CAP_ENCAP, cap,
243 "ENCAP %s %s %s",
244 shared_p->server, command, buffer);
245 }
246}
247
248struct oper_conf *
249make_oper_conf(void)
250{
8e43b0b4 251 struct oper_conf *oper_p = rb_malloc(sizeof(struct oper_conf));
212380e3 252 return oper_p;
253}
254
255void
256free_oper_conf(struct oper_conf *oper_p)
257{
258 s_assert(oper_p != NULL);
259 if(oper_p == NULL)
260 return;
261
90a3c35b
VY
262 rb_free(oper_p->username);
263 rb_free(oper_p->host);
264 rb_free(oper_p->name);
212380e3 265
266 if(oper_p->passwd)
267 {
268 memset(oper_p->passwd, 0, strlen(oper_p->passwd));
90a3c35b 269 rb_free(oper_p->passwd);
212380e3 270 }
271
272#ifdef HAVE_LIBCRYPTO
90a3c35b 273 rb_free(oper_p->rsa_pubkey_file);
212380e3 274
275 if(oper_p->rsa_pubkey)
276 RSA_free(oper_p->rsa_pubkey);
277#endif
278
90a3c35b 279 rb_free(oper_p);
212380e3 280}
281
282struct oper_conf *
283find_oper_conf(const char *username, const char *host, const char *locip, const char *name)
284{
285 struct oper_conf *oper_p;
3ea5fee7 286 struct rb_sockaddr_storage ip, cip;
212380e3 287 char addr[HOSTLEN+1];
288 int bits, cbits;
af81d5a0 289 rb_dlink_node *ptr;
212380e3 290
291 parse_netmask(locip, (struct sockaddr *)&cip, &cbits);
292
8e69bb4e 293 RB_DLINK_FOREACH(ptr, oper_conf_list.head)
212380e3 294 {
295 oper_p = ptr->data;
296
297 /* name/username doesnt match.. */
298 if(irccmp(oper_p->name, name) || !match(oper_p->username, username))
299 continue;
300
907468c4 301 rb_strlcpy(addr, oper_p->host, sizeof(addr));
212380e3 302
303 if(parse_netmask(addr, (struct sockaddr *)&ip, &bits) != HM_HOST)
304 {
305 if(ip.ss_family == cip.ss_family &&
306 comp_with_mask_sock((struct sockaddr *)&ip, (struct sockaddr *)&cip, bits))
307 return oper_p;
308 }
309
310 /* we have to compare against the host as well, because its
311 * valid to set a spoof to an IP, which if we only compare
312 * in ip form to sockhost will not necessarily match --anfl
313 */
314 if(match(oper_p->host, host))
315 return oper_p;
316 }
317
318 return NULL;
319}
320
212380e3 321struct server_conf *
322make_server_conf(void)
323{
8e43b0b4 324 struct server_conf *server_p = rb_malloc(sizeof(struct server_conf));
212380e3 325 server_p->aftype = AF_INET;
326 return server_p;
327}
328
329void
330free_server_conf(struct server_conf *server_p)
331{
332 s_assert(server_p != NULL);
333 if(server_p == NULL)
334 return;
335
336 if(!EmptyString(server_p->passwd))
337 {
338 memset(server_p->passwd, 0, strlen(server_p->passwd));
90a3c35b 339 rb_free(server_p->passwd);
212380e3 340 }
341
342 if(!EmptyString(server_p->spasswd))
343 {
344 memset(server_p->spasswd, 0, strlen(server_p->spasswd));
90a3c35b 345 rb_free(server_p->spasswd);
212380e3 346 }
347
90a3c35b
VY
348 rb_free(server_p->name);
349 rb_free(server_p->host);
350 rb_free(server_p->class_name);
351 rb_free(server_p);
212380e3 352}
353
354void
355add_server_conf(struct server_conf *server_p)
356{
357 if(EmptyString(server_p->class_name))
358 {
62d28946 359 server_p->class_name = rb_strdup("default");
212380e3 360 server_p->class = default_class;
361 return;
362 }
363
364 server_p->class = find_class(server_p->class_name);
365
366 if(server_p->class == default_class)
367 {
368 conf_report_error("Warning connect::class invalid for %s",
369 server_p->name);
370
90a3c35b 371 rb_free(server_p->class_name);
62d28946 372 server_p->class_name = rb_strdup("default");
212380e3 373 }
374
375 if(strchr(server_p->host, '*') || strchr(server_p->host, '?'))
376 return;
377}
378
379struct server_conf *
380find_server_conf(const char *name)
381{
382 struct server_conf *server_p;
af81d5a0 383 rb_dlink_node *ptr;
212380e3 384
8e69bb4e 385 RB_DLINK_FOREACH(ptr, server_conf_list.head)
212380e3 386 {
387 server_p = ptr->data;
388
389 if(ServerConfIllegal(server_p))
390 continue;
391
392 if(match(name, server_p->name))
393 return server_p;
394 }
395
396 return NULL;
397}
398
399void
400attach_server_conf(struct Client *client_p, struct server_conf *server_p)
401{
402 /* already have an attached conf */
403 if(client_p->localClient->att_sconf)
404 {
405 /* short circuit this special case :) */
406 if(client_p->localClient->att_sconf == server_p)
407 return;
408
409 detach_server_conf(client_p);
410 }
411
412 CurrUsers(server_p->class)++;
413
414 client_p->localClient->att_sconf = server_p;
415 server_p->servers++;
416}
417
418void
419detach_server_conf(struct Client *client_p)
420{
421 struct server_conf *server_p = client_p->localClient->att_sconf;
422
423 if(server_p == NULL)
424 return;
425
426 client_p->localClient->att_sconf = NULL;
427 server_p->servers--;
428 CurrUsers(server_p->class)--;
429
430 if(ServerConfIllegal(server_p) && !server_p->servers)
431 {
432 /* the class this one is using may need destroying too */
433 if(MaxUsers(server_p->class) < 0 && CurrUsers(server_p->class) <= 0)
434 free_class(server_p->class);
435
af81d5a0 436 rb_dlinkDelete(&server_p->node, &server_conf_list);
212380e3 437 free_server_conf(server_p);
438 }
439}
440
441void
6d18bf1a 442set_server_conf_autoconn(struct Client *source_p, const char *name, int newval)
212380e3 443{
444 struct server_conf *server_p;
445
446 if((server_p = find_server_conf(name)) != NULL)
447 {
448 if(newval)
449 server_p->flags |= SERVER_AUTOCONN;
450 else
451 server_p->flags &= ~SERVER_AUTOCONN;
452
453 sendto_realops_snomask(SNO_GENERAL, L_ALL,
454 "%s has changed AUTOCONN for %s to %i",
455 get_oper_name(source_p), name, newval);
456 }
457 else
5366977b 458 sendto_one_notice(source_p, ":Can't find %s", name);
212380e3 459}
460
6b2cf989
JT
461void
462disable_server_conf_autoconn(const char *name)
463{
464 struct server_conf *server_p;
465
466 server_p = find_server_conf(name);
467 if(server_p != NULL && server_p->flags & SERVER_AUTOCONN)
468 {
469 server_p->flags &= ~SERVER_AUTOCONN;
470
471 sendto_realops_snomask(SNO_GENERAL, L_ALL,
472 "Disabling AUTOCONN for %s because of error",
473 name);
474 ilog(L_SERVER, "Disabling AUTOCONN for %s because of error",
475 name);
476 }
477}
478
212380e3 479struct ConfItem *
480find_xline(const char *gecos, int counter)
481{
482 struct ConfItem *aconf;
af81d5a0 483 rb_dlink_node *ptr;
212380e3 484
8e69bb4e 485 RB_DLINK_FOREACH(ptr, xline_conf_list.head)
212380e3 486 {
487 aconf = ptr->data;
488
489 if(match_esc(aconf->name, gecos))
490 {
491 if(counter)
492 aconf->port++;
493 return aconf;
494 }
495 }
496
497 return NULL;
498}
499
0fdb2570
JT
500struct ConfItem *
501find_xline_mask(const char *gecos)
502{
503 struct ConfItem *aconf;
af81d5a0 504 rb_dlink_node *ptr;
0fdb2570 505
8e69bb4e 506 RB_DLINK_FOREACH(ptr, xline_conf_list.head)
0fdb2570
JT
507 {
508 aconf = ptr->data;
509
510 if(!irccmp(aconf->name, gecos))
511 return aconf;
512 }
513
514 return NULL;
515}
516
212380e3 517struct ConfItem *
518find_nick_resv(const char *name)
519{
520 struct ConfItem *aconf;
af81d5a0 521 rb_dlink_node *ptr;
212380e3 522
8e69bb4e 523 RB_DLINK_FOREACH(ptr, resv_conf_list.head)
212380e3 524 {
525 aconf = ptr->data;
526
527 if(match_esc(aconf->name, name))
528 {
529 aconf->port++;
530 return aconf;
531 }
532 }
533
534 return NULL;
535}
536
0fdb2570
JT
537struct ConfItem *
538find_nick_resv_mask(const char *name)
539{
540 struct ConfItem *aconf;
af81d5a0 541 rb_dlink_node *ptr;
0fdb2570 542
8e69bb4e 543 RB_DLINK_FOREACH(ptr, resv_conf_list.head)
0fdb2570
JT
544 {
545 aconf = ptr->data;
546
547 if(!irccmp(aconf->name, name))
548 return aconf;
549 }
550
551 return NULL;
552}
553
212380e3 554/* clean_resv_nick()
555 *
556 * inputs - nick
557 * outputs - 1 if nick is vaild resv, 0 otherwise
558 * side effects -
559 */
560int
561clean_resv_nick(const char *nick)
562{
563 char tmpch;
564 int as = 0;
565 int q = 0;
566 int ch = 0;
567
568 if(*nick == '-' || IsDigit(*nick))
569 return 0;
570
571 while ((tmpch = *nick++))
572 {
573 if(tmpch == '?' || tmpch == '@' || tmpch == '#')
574 q++;
575 else if(tmpch == '*')
576 as++;
577 else if(IsNickChar(tmpch))
578 ch++;
579 else
580 return 0;
581 }
582
583 if(!ch && as)
584 return 0;
585
586 return 1;
587}
588
589/* valid_wild_card_simple()
590 *
591 * inputs - "thing" to test
592 * outputs - 1 if enough wildcards, else 0
593 * side effects -
594 */
595int
596valid_wild_card_simple(const char *data)
597{
598 const char *p;
599 char tmpch;
600 int nonwild = 0;
7d08aa89 601 int wild = 0;
212380e3 602
603 /* check the string for minimum number of nonwildcard chars */
604 p = data;
605
606 while((tmpch = *p++))
607 {
608 /* found an escape, p points to the char after it, so skip
609 * that and move on.
610 */
7d08aa89 611 if(tmpch == '\\' && *p)
212380e3 612 {
613 p++;
7d08aa89 614 if(++nonwild >= ConfigFileEntry.min_nonwildcard_simple)
615 return 1;
212380e3 616 }
617 else if(!IsMWildChar(tmpch))
618 {
619 /* if we have enough nonwildchars, return */
620 if(++nonwild >= ConfigFileEntry.min_nonwildcard_simple)
621 return 1;
622 }
7d08aa89 623 else
624 wild++;
212380e3 625 }
626
7d08aa89 627 /* strings without wilds are also ok */
628 return wild == 0;
212380e3 629}
630
631time_t
632valid_temp_time(const char *p)
633{
634 time_t result = 0;
635
636 while(*p)
637 {
638 if(IsDigit(*p))
639 {
640 result *= 10;
641 result += ((*p) & 0xF);
642 p++;
643 }
644 else
645 return -1;
646 }
647
648 if(result > (60 * 24 * 7 * 52))
649 result = (60 * 24 * 7 * 52);
650
651 return(result * 60);
652}
653
654static void
655expire_temp_rxlines(void *unused)
656{
657 struct ConfItem *aconf;
af81d5a0 658 rb_dlink_node *ptr;
90a3c35b 659 rb_dlink_node *next_ptr;
212380e3 660 int i;
661
90a3c35b 662 HASH_WALK_SAFE(i, R_MAX, ptr, next_ptr, resvTable)
212380e3 663 {
664 aconf = ptr->data;
665
9f6bbe3c 666 if(aconf->hold && aconf->hold <= rb_current_time())
212380e3 667 {
668 if(ConfigFileEntry.tkline_expire_notices)
669 sendto_realops_snomask(SNO_GENERAL, L_ALL,
670 "Temporary RESV for [%s] expired",
671 aconf->name);
672
673 free_conf(aconf);
af81d5a0 674 rb_dlinkDestroy(ptr, &resvTable[i]);
212380e3 675 }
676 }
677 HASH_WALK_END
678
90a3c35b 679 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, resv_conf_list.head)
212380e3 680 {
681 aconf = ptr->data;
682
9f6bbe3c 683 if(aconf->hold && aconf->hold <= rb_current_time())
212380e3 684 {
685 if(ConfigFileEntry.tkline_expire_notices)
686 sendto_realops_snomask(SNO_GENERAL, L_ALL,
687 "Temporary RESV for [%s] expired",
688 aconf->name);
689 free_conf(aconf);
af81d5a0 690 rb_dlinkDestroy(ptr, &resv_conf_list);
212380e3 691 }
692 }
693
90a3c35b 694 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, xline_conf_list.head)
212380e3 695 {
696 aconf = ptr->data;
697
9f6bbe3c 698 if(aconf->hold && aconf->hold <= rb_current_time())
212380e3 699 {
700 if(ConfigFileEntry.tkline_expire_notices)
701 sendto_realops_snomask(SNO_GENERAL, L_ALL,
702 "Temporary X-line for [%s] expired",
703 aconf->name);
704 free_conf(aconf);
af81d5a0 705 rb_dlinkDestroy(ptr, &xline_conf_list);
212380e3 706 }
707 }
708}
709
710unsigned long
711get_nd_count(void)
712{
af81d5a0 713 return(rb_dlink_list_length(&nd_list));
212380e3 714}
715
212380e3 716void
717add_nd_entry(const char *name)
718{
719 struct nd_entry *nd;
720
b37021a4 721 if(irc_dictionary_find(nd_dict, name) != NULL)
212380e3 722 return;
723
6e9b4415 724 nd = rb_bh_alloc(nd_heap);
212380e3 725
907468c4 726 rb_strlcpy(nd->name, name, sizeof(nd->name));
9f6bbe3c 727 nd->expire = rb_current_time() + ConfigFileEntry.nick_delay;
212380e3 728
729 /* this list is ordered */
af81d5a0 730 rb_dlinkAddTail(nd, &nd->lnode, &nd_list);
b37021a4
WP
731
732 irc_dictionary_add(nd_dict, nd->name, nd);
212380e3 733}
734
735void
736free_nd_entry(struct nd_entry *nd)
737{
b37021a4
WP
738 irc_dictionary_delete(nd_dict, nd->name);
739
af81d5a0 740 rb_dlinkDelete(&nd->lnode, &nd_list);
6e9b4415 741 rb_bh_free(nd_heap, nd);
212380e3 742}
743
744void
745expire_nd_entries(void *unused)
746{
747 struct nd_entry *nd;
af81d5a0 748 rb_dlink_node *ptr;
90a3c35b 749 rb_dlink_node *next_ptr;
212380e3 750
90a3c35b 751 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, nd_list.head)
212380e3 752 {
753 nd = ptr->data;
754
755 /* this list is ordered - we can stop when we hit the first
756 * entry that doesnt expire..
757 */
9f6bbe3c 758 if(nd->expire > rb_current_time())
212380e3 759 return;
760
761 free_nd_entry(nd);
762 }
763}
764
765void
766add_tgchange(const char *host)
767{
768 tgchange *target;
7c944f64 769 rb_patricia_node_t *pnode;
212380e3 770
771 if(find_tgchange(host))
772 return;
773
8e43b0b4 774 target = rb_malloc(sizeof(tgchange));
212380e3 775 pnode = make_and_lookup(tgchange_tree, host);
776
777 pnode->data = target;
778 target->pnode = pnode;
779
62d28946 780 target->ip = rb_strdup(host);
9f6bbe3c 781 target->expiry = rb_current_time() + (60*60*12);
212380e3 782
af81d5a0 783 rb_dlinkAdd(target, &target->node, &tgchange_list);
212380e3 784}
785
786tgchange *
787find_tgchange(const char *host)
788{
7c944f64 789 rb_patricia_node_t *pnode;
212380e3 790
7c944f64 791 if((pnode = rb_match_exact_string(tgchange_tree, host)))
212380e3 792 return pnode->data;
793
794 return NULL;
795}
796