]> jfr.im git - solanum.git/blame - ircd/hostmask.c
librb/event: Don't leak event names on completion
[solanum.git] / ircd / hostmask.c
CommitLineData
212380e3
AC
1/*
2 * charybdis: an advanced internet relay chat daemon (ircd).
3 * hostmask.c: Code to efficiently find IP & hostmask based configs.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
05ee179e 8 * Copyright (C) 2005-2008 charybdis development team
212380e3
AC
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
212380e3
AC
24 */
25
26#include "stdinc.h"
212380e3
AC
27#include "ircd_defs.h"
28#include "s_conf.h"
29#include "hostmask.h"
30#include "numeric.h"
31#include "send.h"
4562c604 32#include "match.h"
212380e3 33
212380e3 34static unsigned long hash_ipv6(struct sockaddr *, int);
212380e3
AC
35static unsigned long hash_ipv4(struct sockaddr *, int);
36
37
e7046ee5 38/* int parse_netmask(const char *, struct rb_sockaddr_storage *, int *);
212380e3
AC
39 * Input: A hostmask, or an IPV4/6 address.
40 * Output: An integer describing whether it is an IPV4, IPV6 address or a
41 * hostmask, an address(if it is an IP mask),
42 * a bitlength(if it is IP mask).
43 * Side effects: None
44 */
45int
29c92cf9 46parse_netmask(const char *text, struct rb_sockaddr_storage *naddr, int *nb)
212380e3
AC
47{
48 char *ip = LOCAL_COPY(text);
49 char *ptr;
e7046ee5 50 struct rb_sockaddr_storage *addr, xaddr;
212380e3
AC
51 int *b, xb;
52 if(nb == NULL)
53 b = &xb;
54 else
55 b = nb;
55abcbb2 56
212380e3 57 if(naddr == NULL)
29c92cf9 58 addr = &xaddr;
212380e3 59 else
29c92cf9 60 addr = naddr;
17e4b48b
JT
61
62 if(strpbrk(ip, "*?") != NULL)
63 {
64 return HM_HOST;
65 }
212380e3 66 if(strchr(ip, ':'))
55abcbb2 67 {
212380e3
AC
68 if((ptr = strchr(ip, '/')))
69 {
70 *ptr = '\0';
71 ptr++;
72 *b = atoi(ptr);
73 if(*b > 128)
74 *b = 128;
4e4a5fcc
JT
75 else if(*b < 0)
76 return HM_HOST;
212380e3
AC
77 } else
78 *b = 128;
17809d2d 79 if(rb_inet_pton_sock(ip, addr) > 0)
212380e3
AC
80 return HM_IPV6;
81 else
82 return HM_HOST;
83 } else
212380e3
AC
84 if(strchr(text, '.'))
85 {
86 if((ptr = strchr(ip, '/')))
87 {
88 *ptr = '\0';
89 ptr++;
90 *b = atoi(ptr);
91 if(*b > 32)
92 *b = 32;
4e4a5fcc
JT
93 else if(*b < 0)
94 return HM_HOST;
212380e3
AC
95 } else
96 *b = 32;
17809d2d 97 if(rb_inet_pton_sock(ip, addr) > 0)
212380e3
AC
98 return HM_IPV4;
99 else
100 return HM_HOST;
101 }
102 return HM_HOST;
103}
104
105/* Hashtable stuff...now external as its used in m_stats.c */
106struct AddressRec *atable[ATABLE_SIZE];
107
108void
109init_host_hash(void)
110{
111 memset(&atable, 0, sizeof(atable));
112}
113
e7046ee5 114/* unsigned long hash_ipv4(struct rb_sockaddr_storage*)
212380e3
AC
115 * Input: An IP address.
116 * Output: A hash value of the IP address.
117 * Side effects: None
118 */
119static unsigned long
120hash_ipv4(struct sockaddr *saddr, int bits)
121{
29c92cf9 122 struct sockaddr_in *addr = (struct sockaddr_in *)(void *)saddr;
55abcbb2 123
212380e3
AC
124 if(bits != 0)
125 {
126 unsigned long av = ntohl(addr->sin_addr.s_addr) & ~((1 << (32 - bits)) - 1);
127 return (av ^ (av >> 12) ^ (av >> 24)) & (ATABLE_SIZE - 1);
128 }
129
130 return 0;
131}
132
e7046ee5 133/* unsigned long hash_ipv6(struct rb_sockaddr_storage*)
212380e3
AC
134 * Input: An IP address.
135 * Output: A hash value of the IP address.
136 * Side effects: None
137 */
212380e3
AC
138static unsigned long
139hash_ipv6(struct sockaddr *saddr, int bits)
140{
29c92cf9 141 struct sockaddr_in6 *addr = (struct sockaddr_in6 *)(void *)saddr;
212380e3
AC
142 unsigned long v = 0, n;
143 for (n = 0; n < 16; n++)
144 {
145 if(bits >= 8)
146 {
147 v ^= addr->sin6_addr.s6_addr[n];
148 bits -= 8;
149 }
150 else if(bits)
151 {
152 v ^= addr->sin6_addr.s6_addr[n] & ~((1 << (8 - bits)) - 1);
153 return v & (ATABLE_SIZE - 1);
154 }
155 else
156 return v & (ATABLE_SIZE - 1);
157 }
158 return v & (ATABLE_SIZE - 1);
159}
212380e3
AC
160
161/* int hash_text(const char *start)
162 * Input: The start of the text to hash.
163 * Output: The hash of the string between 1 and (TH_MAX-1)
164 * Side-effects: None.
165 */
166static int
167hash_text(const char *start)
168{
169 const char *p = start;
170 unsigned long h = 0;
171
172 while(*p)
173 {
7e6b5384 174 h = (h << 4) - (h + (unsigned char) irctolower(*p++));
212380e3
AC
175 }
176
177 return (h & (ATABLE_SIZE - 1));
178}
179
180/* unsigned long get_hash_mask(const char *)
181 * Input: The text to hash.
182 * Output: The hash of the string right of the first '.' past the last
183 * wildcard in the string.
184 * Side-effects: None.
185 */
186static unsigned long
187get_mask_hash(const char *text)
188{
189 const char *hp = "", *p;
190
191 for (p = text + strlen(text) - 1; p >= text; p--)
192 if(*p == '*' || *p == '?')
193 return hash_text(hp);
194 else if(*p == '.')
195 hp = p + 1;
196 return hash_text(text);
197}
198
e7046ee5 199/* struct ConfItem* find_conf_by_address(const char*, struct rb_sockaddr_storage*,
212380e3 200 * int type, int fam, const char *username)
b18dba6d
SA
201 *
202 * This process needs to be kept in sync with check_one_kline().
203 *
212380e3
AC
204 * Input: The hostname, the address, the type of mask to find, the address
205 * family, the username.
206 * Output: The matching value with the highest precedence.
207 * Side-effects: None
208 * Note: Setting bit 0 of the type means that the username is ignored.
209 */
210struct ConfItem *
211find_conf_by_address(const char *name, const char *sockhost,
212 const char *orighost,
55abcbb2 213 struct sockaddr *addr, int type, int fam,
40c1fd47 214 const char *username, const char *auth_user)
212380e3
AC
215{
216 unsigned long hprecv = 0;
217 struct ConfItem *hprec = NULL;
218 struct AddressRec *arec;
de0673d7
EK
219 struct sockaddr_in ip4;
220 struct sockaddr *pip4 = NULL;
212380e3
AC
221 int b;
222
223 if(username == NULL)
224 username = "";
225
226 if(addr)
227 {
de0673d7
EK
228 if (fam == AF_INET)
229 pip4 = addr;
230
231 if (fam == AF_INET6)
212380e3 232 {
de0673d7
EK
233 if (type == CONF_KILL && rb_ipv4_from_ipv6((struct sockaddr_in6 *)addr, &ip4))
234 pip4 = (struct sockaddr *)&ip4;
212380e3
AC
235
236 for (b = 128; b >= 0; b -= 16)
237 {
238 for (arec = atable[hash_ipv6(addr, b)]; arec; arec = arec->next)
239 if(arec->type == (type & ~0x1) &&
240 arec->masktype == HM_IPV6 &&
241 comp_with_mask_sock(addr, (struct sockaddr *)&arec->Mask.ipa.addr,
55abcbb2
KB
242 arec->Mask.ipa.bits) &&
243 (type & 0x1 || match(arec-> username, username)) &&
244 (type != CONF_CLIENT || !arec->auth_user ||
245 (auth_user && match(arec->auth_user, auth_user))) &&
246 arec->precedence > hprecv)
212380e3
AC
247 {
248 hprecv = arec->precedence;
249 hprec = arec->aconf;
250 }
251 }
252 }
de0673d7
EK
253
254 if (pip4 != NULL)
212380e3
AC
255 {
256 for (b = 32; b >= 0; b -= 8)
257 {
de0673d7 258 for (arec = atable[hash_ipv4(pip4, b)]; arec; arec = arec->next)
212380e3
AC
259 if(arec->type == (type & ~0x1) &&
260 arec->masktype == HM_IPV4 &&
de0673d7 261 comp_with_mask_sock(pip4, (struct sockaddr *)&arec->Mask.ipa.addr,
55abcbb2
KB
262 arec->Mask.ipa.bits) &&
263 (type & 0x1 || match(arec->username, username)) &&
264 (type != CONF_CLIENT || !arec->auth_user ||
265 (auth_user && match(arec->auth_user, auth_user))) &&
266 arec->precedence > hprecv)
212380e3
AC
267 {
268 hprecv = arec->precedence;
269 hprec = arec->aconf;
270 }
271 }
272 }
273 }
274
275 if(orighost != NULL)
276 {
277 const char *p;
278
279 for (p = orighost; p != NULL;)
280 {
281 for (arec = atable[hash_text(p)]; arec; arec = arec->next)
55abcbb2 282
212380e3
AC
283 if((arec->type == (type & ~0x1)) &&
284 (arec->masktype == HM_HOST) &&
285 arec->precedence > hprecv &&
286 match(arec->Mask.hostname, orighost) &&
55abcbb2
KB
287 (type != CONF_CLIENT || !arec->auth_user ||
288 (auth_user && match(arec->auth_user, auth_user))) &&
212380e3
AC
289 (type & 0x1 || match(arec->username, username)))
290 {
291 hprecv = arec->precedence;
292 hprec = arec->aconf;
293 }
294 p = strchr(p, '.');
295 if(p != NULL)
296 p++;
297 else
298 break;
299 }
300 for (arec = atable[0]; arec; arec = arec->next)
301 {
302 if(arec->type == (type & ~0x1) &&
303 arec->masktype == HM_HOST &&
55abcbb2 304 arec->precedence > hprecv &&
212380e3
AC
305 (match(arec->Mask.hostname, orighost) ||
306 (sockhost && match(arec->Mask.hostname, sockhost))) &&
55abcbb2
KB
307 (type != CONF_CLIENT || !arec->auth_user ||
308 (auth_user && match(arec->auth_user, auth_user))) &&
212380e3
AC
309 (type & 0x1 || match(arec->username, username)))
310 {
311 hprecv = arec->precedence;
312 hprec = arec->aconf;
313 }
314 }
315 }
316
317 if(name != NULL)
318 {
319 const char *p;
320 /* And yes - we have to check p after strchr and p after increment for
321 * NULL -kre */
322 for (p = name; p != NULL;)
323 {
324 for (arec = atable[hash_text(p)]; arec; arec = arec->next)
325 if((arec->type == (type & ~0x1)) &&
326 (arec->masktype == HM_HOST) &&
327 arec->precedence > hprecv &&
328 match(arec->Mask.hostname, name) &&
55abcbb2
KB
329 (type != CONF_CLIENT || !arec->auth_user ||
330 (auth_user && match(arec->auth_user, auth_user))) &&
212380e3
AC
331 (type & 0x1 || match(arec->username, username)))
332 {
333 hprecv = arec->precedence;
334 hprec = arec->aconf;
335 }
336 p = strchr(p, '.');
337 if(p != NULL)
338 p++;
339 else
340 break;
341 }
342 for (arec = atable[0]; arec; arec = arec->next)
343 {
344 if(arec->type == (type & ~0x1) &&
345 arec->masktype == HM_HOST &&
55abcbb2 346 arec->precedence > hprecv &&
212380e3
AC
347 (match(arec->Mask.hostname, name) ||
348 (sockhost && match(arec->Mask.hostname, sockhost))) &&
55abcbb2
KB
349 (type != CONF_CLIENT || !arec->auth_user ||
350 (auth_user && match(arec->auth_user, auth_user))) &&
212380e3
AC
351 (type & 0x1 || match(arec->username, username)))
352 {
353 hprecv = arec->precedence;
354 hprec = arec->aconf;
355 }
356 }
357 }
358 return hprec;
359}
360
361/* struct ConfItem* find_address_conf(const char*, const char*,
e7046ee5 362 * struct rb_sockaddr_storage*, int);
212380e3
AC
363 * Input: The hostname, username, address, address family.
364 * Output: The applicable ConfItem.
365 * Side-effects: None
366 */
367struct ConfItem *
55abcbb2 368find_address_conf(const char *host, const char *sockhost, const char *user,
40c1fd47 369 const char *notildeuser, struct sockaddr *ip, int aftype, char *auth_user)
212380e3
AC
370{
371 struct ConfItem *iconf, *kconf;
372 const char *vuser;
373
374 /* Find the best I-line... If none, return NULL -A1kmm */
40c1fd47 375 if(!(iconf = find_conf_by_address(host, sockhost, NULL, ip, CONF_CLIENT, aftype, user, auth_user)))
212380e3
AC
376 return NULL;
377 /* Find what their visible username will be.
378 * Note that the username without tilde may contain one char more.
379 * -- jilles */
380 vuser = IsNoTilde(iconf) ? notildeuser : user;
381
382 /* If they are exempt from K-lines, return the best I-line. -A1kmm */
383 if(IsConfExemptKline(iconf))
384 return iconf;
385
386 /* Find the best K-line... -A1kmm */
40c1fd47 387 kconf = find_conf_by_address(host, sockhost, NULL, ip, CONF_KILL, aftype, user, NULL);
212380e3
AC
388
389 /* If they are K-lined, return the K-line */
390 if(kconf)
391 return kconf;
392
393 /* if theres a spoof, check it against klines.. */
394 if(IsConfDoSpoofIp(iconf))
395 {
27f616dd 396 char *p = strchr(iconf->info.name, '@');
212380e3
AC
397
398 /* note, we dont need to pass sockhost here, as its
399 * guaranteed to not match by whats above.. --anfl
400 */
401 if(p)
402 {
403 *p = '\0';
27f616dd 404 kconf = find_conf_by_address(p+1, NULL, NULL, ip, CONF_KILL, aftype, iconf->info.name, NULL);
212380e3
AC
405 *p = '@';
406 }
407 else
27f616dd 408 kconf = find_conf_by_address(iconf->info.name, NULL, NULL, ip, CONF_KILL, aftype, vuser, NULL);
212380e3
AC
409
410 if(kconf)
411 return kconf;
412 }
413
414 /* if no_tilde, check the username without tilde against klines too
415 * -- jilles */
416 if(user != vuser)
417 {
40c1fd47 418 kconf = find_conf_by_address(host, sockhost, NULL, ip, CONF_KILL, aftype, vuser, NULL);
212380e3
AC
419 if(kconf)
420 return kconf;
421 }
422
212380e3
AC
423 return iconf;
424}
425
e7046ee5 426/* struct ConfItem* find_dline(struct rb_sockaddr_storage*, int)
54ac8b60
VY
427 * Input: An address, an address family.
428 * Output: The best matching D-line or exempt line.
429 * Side effects: None.
430 */
431struct ConfItem *
432find_dline(struct sockaddr *addr, int aftype)
433{
d006b551 434 struct ConfItem *aconf;
d006b551 435 struct sockaddr_in addr2;
d006b551
JT
436
437 aconf = find_conf_by_address(NULL, NULL, NULL, addr, CONF_EXEMPTDLINE | 1, aftype, NULL, NULL);
438 if(aconf)
439 return aconf;
440 aconf = find_conf_by_address(NULL, NULL, NULL, addr, CONF_DLINE | 1, aftype, NULL, NULL);
441 if(aconf)
442 return aconf;
d006b551 443 if(addr->sa_family == AF_INET6 &&
4eafa9e6 444 rb_ipv4_from_ipv6((const struct sockaddr_in6 *)(const void *)addr, &addr2))
d006b551
JT
445 {
446 aconf = find_conf_by_address(NULL, NULL, NULL, (struct sockaddr *)&addr2, CONF_DLINE | 1, AF_INET, NULL, NULL);
447 if(aconf)
448 return aconf;
449 }
d006b551 450 return NULL;
54ac8b60
VY
451}
452
6f3a09ff 453/* void find_exact_conf_by_address(const char*, int, const char *)
55abcbb2 454 * Input:
4e0f14a0
JT
455 * Output: ConfItem if found
456 * Side-effects: None
457 */
458struct ConfItem *
459find_exact_conf_by_address(const char *address, int type, const char *username)
460{
461 int masktype, bits;
462 unsigned long hv;
463 struct AddressRec *arec;
e7046ee5 464 struct rb_sockaddr_storage addr;
4e0f14a0
JT
465
466 if(address == NULL)
467 address = "/NOMATCH!/";
29c92cf9 468 masktype = parse_netmask(address, &addr, &bits);
4e0f14a0
JT
469 if(masktype == HM_IPV6)
470 {
471 /* We have to do this, since we do not re-hash for every bit -A1kmm. */
472 hv = hash_ipv6((struct sockaddr *)&addr, bits - bits % 16);
473 }
de293496 474 else if(masktype == HM_IPV4)
4e0f14a0
JT
475 {
476 /* We have to do this, since we do not re-hash for every bit -A1kmm. */
477 hv = hash_ipv4((struct sockaddr *)&addr, bits - bits % 8);
478 }
479 else
480 {
481 hv = get_mask_hash(address);
482 }
483 for (arec = atable[hv]; arec; arec = arec->next)
484 {
485 if (arec->type == type &&
486 arec->masktype == masktype &&
6f3a09ff 487 (arec->username == NULL || username == NULL ? arec->username == username : !irccmp(arec->username, username)))
4e0f14a0
JT
488 {
489 if (masktype == HM_HOST)
490 {
491 if (!irccmp(arec->Mask.hostname, address))
492 return arec->aconf;
493 }
494 else
495 {
496 if (arec->Mask.ipa.bits == bits &&
497 comp_with_mask_sock((struct sockaddr *)&arec->Mask.ipa.addr, (struct sockaddr *)&addr, bits))
498 return arec->aconf;
499 }
500 }
501 }
502 return NULL;
503}
504
212380e3
AC
505/* void add_conf_by_address(const char*, int, const char *,
506 * struct ConfItem *aconf)
55abcbb2 507 * Input:
212380e3
AC
508 * Output: None
509 * Side-effects: Adds this entry to the hash table.
510 */
511void
40c1fd47 512add_conf_by_address(const char *address, int type, const char *username, const char *auth_user, struct ConfItem *aconf)
212380e3
AC
513{
514 static unsigned long prec_value = 0xFFFFFFFF;
ab5fc9c0 515 int bits;
212380e3
AC
516 unsigned long hv;
517 struct AddressRec *arec;
518
519 if(address == NULL)
520 address = "/NOMATCH!/";
eddc2ab6 521 arec = rb_malloc(sizeof(struct AddressRec));
ab5fc9c0 522 arec->masktype = parse_netmask(address, &arec->Mask.ipa.addr, &bits);
ab5fc9c0 523 if(arec->masktype == HM_IPV6)
212380e3 524 {
ab5fc9c0 525 arec->Mask.ipa.bits = bits;
212380e3
AC
526 /* We have to do this, since we do not re-hash for every bit -A1kmm. */
527 bits -= bits % 16;
528 arec->next = atable[(hv = hash_ipv6((struct sockaddr *)&arec->Mask.ipa.addr, bits))];
529 atable[hv] = arec;
530 }
de293496 531 else if(arec->masktype == HM_IPV4)
212380e3 532 {
ab5fc9c0 533 arec->Mask.ipa.bits = bits;
212380e3
AC
534 /* We have to do this, since we do not re-hash for every bit -A1kmm. */
535 bits -= bits % 8;
536 arec->next = atable[(hv = hash_ipv4((struct sockaddr *)&arec->Mask.ipa.addr, bits))];
537 atable[hv] = arec;
538 }
539 else
540 {
541 arec->Mask.hostname = address;
542 arec->next = atable[(hv = get_mask_hash(address))];
543 atable[hv] = arec;
544 }
545 arec->username = username;
40c1fd47 546 arec->auth_user = auth_user;
212380e3
AC
547 arec->aconf = aconf;
548 arec->precedence = prec_value--;
549 arec->type = type;
550}
551
552/* void delete_one_address(const char*, struct ConfItem*)
553 * Input: An address string, the associated ConfItem.
554 * Output: None
555 * Side effects: Deletes an address record. Frees the ConfItem if there
556 * is nothing referencing it, sets it as illegal otherwise.
557 */
558void
559delete_one_address_conf(const char *address, struct ConfItem *aconf)
560{
561 int masktype, bits;
562 unsigned long hv;
563 struct AddressRec *arec, *arecl = NULL;
e7046ee5 564 struct rb_sockaddr_storage addr;
29c92cf9 565 masktype = parse_netmask(address, &addr, &bits);
212380e3
AC
566 if(masktype == HM_IPV6)
567 {
568 /* We have to do this, since we do not re-hash for every bit -A1kmm. */
569 bits -= bits % 16;
570 hv = hash_ipv6((struct sockaddr *)&addr, bits);
571 }
de293496 572 else if(masktype == HM_IPV4)
212380e3
AC
573 {
574 /* We have to do this, since we do not re-hash for every bit -A1kmm. */
575 bits -= bits % 8;
576 hv = hash_ipv4((struct sockaddr *)&addr, bits);
577 }
578 else
579 hv = get_mask_hash(address);
580 for (arec = atable[hv]; arec; arec = arec->next)
581 {
582 if(arec->aconf == aconf)
583 {
584 if(arecl)
585 arecl->next = arec->next;
586 else
587 atable[hv] = arec->next;
588 aconf->status |= CONF_ILLEGAL;
589 if(!aconf->clients)
590 free_conf(aconf);
637c4932 591 rb_free(arec);
212380e3
AC
592 return;
593 }
594 arecl = arec;
595 }
596}
597
598/* void clear_out_address_conf(void)
599 * Input: None
600 * Output: None
601 * Side effects: Clears out all address records in the hash table,
602 * frees them, and frees the ConfItems if nothing references
603 * them, otherwise sets them as illegal.
604 */
605void
606clear_out_address_conf(void)
607{
608 int i;
609 struct AddressRec **store_next;
610 struct AddressRec *arec, *arecn;
611
612 for (i = 0; i < ATABLE_SIZE; i++)
613 {
614 store_next = &atable[i];
615 for (arec = atable[i]; arec; arec = arecn)
616 {
617 arecn = arec->next;
618 /* We keep the temporary K-lines and destroy the
619 * permanent ones, just to be confusing :) -A1kmm */
620 if(arec->aconf->flags & CONF_FLAGS_TEMPORARY ||
621 (arec->type != CONF_CLIENT && arec->type != CONF_EXEMPTDLINE))
622 {
623 *store_next = arec;
624 store_next = &arec->next;
625 }
626 else
627 {
628 arec->aconf->status |= CONF_ILLEGAL;
629 if(!arec->aconf->clients)
630 free_conf(arec->aconf);
637c4932 631 rb_free(arec);
212380e3
AC
632 }
633 }
634 *store_next = NULL;
635 }
636}
637
638void
639clear_out_address_conf_bans(void)
640{
641 int i;
642 struct AddressRec **store_next;
643 struct AddressRec *arec, *arecn;
644
645 for (i = 0; i < ATABLE_SIZE; i++)
646 {
647 store_next = &atable[i];
648 for (arec = atable[i]; arec; arec = arecn)
649 {
650 arecn = arec->next;
651 /* We keep the temporary K-lines and destroy the
652 * permanent ones, just to be confusing :) -A1kmm */
653 if(arec->aconf->flags & CONF_FLAGS_TEMPORARY ||
654 (arec->type == CONF_CLIENT || arec->type == CONF_EXEMPTDLINE))
655 {
656 *store_next = arec;
657 store_next = &arec->next;
658 }
659 else
660 {
661 arec->aconf->status |= CONF_ILLEGAL;
662 if(!arec->aconf->clients)
663 free_conf(arec->aconf);
637c4932 664 rb_free(arec);
212380e3
AC
665 }
666 }
667 *store_next = NULL;
668 }
669}
670
671
672/*
673 * show_iline_prefix()
674 *
675 * inputs - pointer to struct Client requesting output
55abcbb2 676 * - pointer to struct ConfItem
212380e3
AC
677 * - name to which iline prefix will be prefixed to
678 * output - pointer to static string with prefixes listed in ascii form
679 * side effects - NONE
680 */
681char *
682show_iline_prefix(struct Client *sptr, struct ConfItem *aconf, char *name)
683{
684 static char prefix_of_host[USERLEN + 15];
685 char *prefix_ptr;
686
687 prefix_ptr = prefix_of_host;
688 if(IsNoTilde(aconf))
689 *prefix_ptr++ = '-';
212380e3
AC
690 if(IsNeedIdentd(aconf))
691 *prefix_ptr++ = '+';
212380e3
AC
692 if(IsConfDoSpoofIp(aconf))
693 *prefix_ptr++ = '=';
c4f13a64
JT
694 if(IsOper(sptr) && IsConfExemptFlood(aconf))
695 *prefix_ptr++ = '|';
c4f13a64
JT
696 if(IsOper(sptr) && IsConfExemptDNSBL(aconf) && !IsConfExemptKline(aconf))
697 *prefix_ptr++ = '$';
a63a1eab 698 if(IsOper(sptr) && IsConfExemptKline(aconf))
212380e3 699 *prefix_ptr++ = '^';
a63a1eab 700 if(IsOper(sptr) && IsConfExemptLimits(aconf))
212380e3 701 *prefix_ptr++ = '>';
212380e3
AC
702 *prefix_ptr = '\0';
703 strncpy(prefix_ptr, name, USERLEN);
704 return (prefix_of_host);
705}
706
707/* report_auth()
708 *
709 * Inputs: pointer to client to report to
710 * Output: None
711 * Side effects: Reports configured auth{} blocks to client_p
712 */
713void
714report_auth(struct Client *client_p)
715{
29c92cf9
JB
716 char *name, *host, *user, *classname;
717 const char *pass;
212380e3
AC
718 struct AddressRec *arec;
719 struct ConfItem *aconf;
720 int i, port;
721
722 for (i = 0; i < ATABLE_SIZE; i++)
723 for (arec = atable[i]; arec; arec = arec->next)
724 if(arec->type == CONF_CLIENT)
725 {
726 aconf = arec->aconf;
727
a63a1eab 728 if(!IsOper(client_p) && IsConfDoSpoofIp(aconf))
212380e3
AC
729 continue;
730
731 get_printable_conf(aconf, &name, &host, &pass, &user, &port,
732 &classname);
55abcbb2 733
40c1fd47
VY
734 if(!EmptyString(aconf->spasswd))
735 pass = aconf->spasswd;
212380e3 736
55abcbb2 737 sendto_one_numeric(client_p, RPL_STATSILINE,
212380e3 738 form_str(RPL_STATSILINE),
40c1fd47 739 name, pass, show_iline_prefix(client_p, aconf, user),
212380e3
AC
740 show_ip_conf(aconf, client_p) ? host : "255.255.255.255",
741 port, classname);
742 }
743}
744