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