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