]> jfr.im git - solanum.git/blob - modules/m_kline.c
Combine stats A output parameters (#35)
[solanum.git] / modules / m_kline.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_kline.c: Bans/unbans a user.
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
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 */
24
25 #include "stdinc.h"
26 #include "channel.h"
27 #include "class.h"
28 #include "client.h"
29 #include "match.h"
30 #include "ircd.h"
31 #include "hostmask.h"
32 #include "numeric.h"
33 #include "s_conf.h"
34 #include "s_newconf.h"
35 #include "logger.h"
36 #include "send.h"
37 #include "hash.h"
38 #include "s_serv.h"
39 #include "msg.h"
40 #include "parse.h"
41 #include "modules.h"
42 #include "reject.h"
43 #include "bandbi.h"
44 #include "operhash.h"
45
46 static const char kline_desc[] = "Provides the KLINE facility to ban users via hostmask";
47
48 static void mo_kline(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
49 static void ms_kline(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
50 static void me_kline(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
51 static void mo_unkline(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
52 static void ms_unkline(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
53 static void me_unkline(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
54
55 struct Message kline_msgtab = {
56 "KLINE", 0, 0, 0, 0,
57 {mg_unreg, mg_not_oper, {ms_kline, 5}, {ms_kline, 5}, {me_kline, 5}, {mo_kline, 3}}
58 };
59
60 struct Message unkline_msgtab = {
61 "UNKLINE", 0, 0, 0, 0,
62 {mg_unreg, mg_not_oper, {ms_unkline, 4}, {ms_unkline, 4}, {me_unkline, 3}, {mo_unkline, 2}}
63 };
64
65 mapi_clist_av1 kline_clist[] = { &kline_msgtab, &unkline_msgtab, NULL };
66
67 DECLARE_MODULE_AV2(kline, NULL, NULL, kline_clist, NULL, NULL, NULL, NULL, kline_desc);
68
69 /* Local function prototypes */
70 static bool find_user_host(struct Client *source_p, const char *userhost, char *user, char *host);
71 static bool valid_user_host(struct Client *source_p, const char *user, const char *host);
72
73 static void handle_remote_kline(struct Client *source_p, int tkline_time,
74 const char *user, const char *host, const char *reason);
75 static void apply_kline(struct Client *source_p, struct ConfItem *aconf,
76 const char *reason, const char *oper_reason);
77 static void apply_tkline(struct Client *source_p, struct ConfItem *aconf,
78 const char *, const char *, int);
79 static void apply_prop_kline(struct Client *source_p, struct ConfItem *aconf,
80 const char *, const char *, int);
81 static bool already_placed_kline(struct Client *, const char *, const char *, int);
82
83 static void handle_remote_unkline(struct Client *source_p, const char *user, const char *host);
84 static void remove_permkline_match(struct Client *, struct ConfItem *);
85 static bool remove_temp_kline(struct Client *, struct ConfItem *);
86 static void remove_prop_kline(struct Client *, struct ConfItem *);
87
88
89 /* mo_kline()
90 *
91 * parv[1] - temp time or user@host
92 * parv[2] - user@host, "ON", or reason
93 * parv[3] - "ON", reason, or server to target
94 * parv[4] - server to target, or reason
95 * parv[5] - reason
96 */
97 static void
98 mo_kline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char **parv)
99 {
100 char def[] = "No Reason";
101 char user[USERLEN + 2];
102 char host_buf[HOSTLEN + 3], *host = host_buf + 1;
103 char *reason = def;
104 char *oper_reason;
105 const char *target_server = NULL;
106 struct ConfItem *aconf;
107 int tkline_time = 0;
108 int loc = 1;
109 bool propagated = ConfigFileEntry.use_propagated_bans;
110
111 if(!IsOperK(source_p))
112 {
113 sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "kline");
114 return;
115 }
116
117 if((tkline_time = valid_temp_time(parv[loc])) >= 0)
118 loc++;
119 /* we just set tkline_time to -1! */
120 else
121 tkline_time = 0;
122
123 if(find_user_host(source_p, parv[loc], user, host) == 0)
124 return;
125
126 if (*host == ':')
127 {
128 host--;
129 *host = '0';
130 }
131
132 loc++;
133
134 if(parc >= loc + 2 && !irccmp(parv[loc], "ON"))
135 {
136 if(!IsOperRemoteBan(source_p))
137 {
138 sendto_one(source_p, form_str(ERR_NOPRIVS),
139 me.name, source_p->name, "remoteban");
140 return;
141 }
142
143 target_server = parv[loc + 1];
144 loc += 2;
145 }
146
147 if(parc <= loc || EmptyString(parv[loc]))
148 {
149 sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
150 me.name, source_p->name, "KLINE");
151 return;
152 }
153
154 reason = LOCAL_COPY(parv[loc]);
155
156 if(parse_netmask_strict(host, NULL, NULL) == HM_ERROR)
157 {
158 sendto_one_notice(source_p,
159 ":[%s@%s] looks like an ill-formed IP K-line, refusing to set it",
160 user, host);
161 return;
162 }
163
164 if(target_server != NULL)
165 {
166 propagate_generic(source_p, "KLINE", target_server, CAP_KLN,
167 "%d %s %s :%s", tkline_time, user, host, reason);
168
169 /* If we are sending it somewhere that doesnt include us, stop */
170 if(!match(target_server, me.name))
171 return;
172
173 /* Set as local-only. */
174 propagated = false;
175 }
176 /* if we have cluster servers, send it to them.. */
177 else if(!propagated && rb_dlink_list_length(&cluster_conf_list) > 0)
178 cluster_generic(source_p, "KLINE",
179 (tkline_time > 0) ? SHARED_TKLINE : SHARED_PKLINE, CAP_KLN,
180 "%lu %s %s :%s", tkline_time, user, host, reason);
181
182 if(!valid_user_host(source_p, user, host))
183 return;
184
185 if(!valid_wild_card(user, host))
186 {
187 sendto_one_notice(source_p,
188 ":Please include at least %d non-wildcard "
189 "characters with the user@host",
190 ConfigFileEntry.min_nonwildcard);
191 return;
192 }
193
194 if(propagated && tkline_time == 0)
195 {
196 sendto_one_notice(source_p, ":Cannot set a permanent global ban");
197 return;
198 }
199
200 if(already_placed_kline(source_p, user, host, tkline_time))
201 return;
202
203 rb_set_time();
204 aconf = make_conf();
205 aconf->status = CONF_KILL;
206 aconf->created = rb_current_time();
207 aconf->host = rb_strdup(host);
208 aconf->user = rb_strdup(user);
209 aconf->port = 0;
210 aconf->info.oper = operhash_add(get_oper_name(source_p));
211
212 if(strlen(reason) > BANREASONLEN)
213 reason[BANREASONLEN] = '\0';
214
215 /* Look for an oper reason */
216 if((oper_reason = strchr(reason, '|')) != NULL)
217 {
218 *oper_reason = '\0';
219 oper_reason++;
220
221 if(!EmptyString(oper_reason))
222 aconf->spasswd = rb_strdup(oper_reason);
223 }
224 aconf->passwd = rb_strdup(reason);
225
226 if(propagated)
227 apply_prop_kline(source_p, aconf, reason, oper_reason, tkline_time);
228 else if(tkline_time > 0)
229 apply_tkline(source_p, aconf, reason, oper_reason, tkline_time);
230 else
231 apply_kline(source_p, aconf, reason, oper_reason);
232
233 check_one_kline(aconf);
234 }
235
236 /* ms_kline()
237 *
238 * parv[1] - server targeted at
239 * parv[2] - tkline time (0 if perm)
240 * parv[3] - user
241 * parv[4] - host
242 * parv[5] - reason
243 */
244 static void
245 ms_kline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
246 {
247 int tkline_time = atoi(parv[2]);
248
249 /* 1.5-3 and earlier contains a bug that allows remote klines to be
250 * sent with an empty reason field. This is a protocol violation,
251 * but its not worth dropping the link over.. --anfl
252 */
253 if(parc < 6 || EmptyString(parv[5]))
254 return;
255
256 propagate_generic(source_p, "KLINE", parv[1], CAP_KLN,
257 "%d %s %s :%s", tkline_time, parv[3], parv[4], parv[5]);
258
259 if(!match(parv[1], me.name))
260 return;
261
262 if(!IsPerson(source_p))
263 return;
264
265 handle_remote_kline(source_p, tkline_time, parv[3], parv[4], parv[5]);
266 }
267
268 static void
269 me_kline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
270 {
271 /* <tkline_time> <user> <host> :<reason> */
272 if(!IsPerson(source_p))
273 return;
274
275 handle_remote_kline(source_p, atoi(parv[1]), parv[2], parv[3], parv[4]);
276 }
277
278 static void
279 handle_remote_kline(struct Client *source_p, int tkline_time,
280 const char *user, const char *host, const char *kreason)
281 {
282 char *reason = LOCAL_COPY(kreason);
283 struct ConfItem *aconf = NULL;
284 char *oper_reason;
285
286 if(!find_shared_conf(source_p->username, source_p->host,
287 source_p->servptr->name,
288 (tkline_time > 0) ? SHARED_TKLINE : SHARED_PKLINE))
289 return;
290
291 if(!valid_user_host(source_p, user, host))
292 return;
293
294 if(!valid_wild_card(user, host))
295 {
296 sendto_one_notice(source_p,
297 ":Please include at least %d non-wildcard "
298 "characters with the user@host",
299 ConfigFileEntry.min_nonwildcard);
300 return;
301 }
302
303 if(already_placed_kline(source_p, user, host, tkline_time))
304 return;
305
306 aconf = make_conf();
307
308 aconf->status = CONF_KILL;
309 aconf->created = rb_current_time();
310 aconf->user = rb_strdup(user);
311 aconf->host = rb_strdup(host);
312 aconf->info.oper = operhash_add(get_oper_name(source_p));
313
314 if(strlen(reason) > BANREASONLEN)
315 reason[BANREASONLEN] = '\0';
316
317 /* Look for an oper reason */
318 if((oper_reason = strchr(reason, '|')) != NULL)
319 {
320 *oper_reason = '\0';
321 oper_reason++;
322
323 if(!EmptyString(oper_reason))
324 aconf->spasswd = rb_strdup(oper_reason);
325 }
326 aconf->passwd = rb_strdup(reason);
327
328 if(tkline_time > 0)
329 apply_tkline(source_p, aconf, reason, oper_reason, tkline_time);
330 else
331 apply_kline(source_p, aconf, reason, oper_reason);
332
333 check_one_kline(aconf);
334 }
335
336 /* mo_unkline()
337 *
338 * parv[1] - kline to remove
339 * parv[2] - optional "ON"
340 * parv[3] - optional target server
341 */
342 static void
343 mo_unkline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
344 {
345 const char *user;
346 char *host;
347 char splat[] = "*";
348 char *h = LOCAL_COPY(parv[1]);
349 struct ConfItem *aconf;
350 bool propagated = true;
351
352 if(!IsOperUnkline(source_p))
353 {
354 sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "unkline");
355 return;
356 }
357
358 if((host = strchr(h, '@')) || *h == '*' || strchr(h, '.') || strchr(h, ':'))
359 {
360 /* Explicit user@host mask given */
361
362 if(host) /* Found user@host */
363 {
364 *host++ = '\0';
365
366 /* check for @host */
367 if(*h)
368 user = h;
369 else
370 user = splat;
371
372 /* check for user@ */
373 if(!*host)
374 host = splat;
375 }
376 else
377 {
378 user = splat; /* no @ found, assume its *@somehost */
379 host = h;
380 }
381 }
382 else
383 {
384 sendto_one_notice(source_p, ":Invalid parameters");
385 return;
386 }
387
388 /* possible remote kline.. */
389 if((parc > 3) && (irccmp(parv[2], "ON") == 0))
390 {
391 if(!IsOperRemoteBan(source_p))
392 {
393 sendto_one(source_p, form_str(ERR_NOPRIVS),
394 me.name, source_p->name, "remoteban");
395 return;
396 }
397
398 propagate_generic(source_p, "UNKLINE", parv[3], CAP_UNKLN, "%s %s", user, host);
399
400 if(match(parv[3], me.name) == 0)
401 return;
402
403 propagated = false;
404 }
405
406 aconf = find_exact_conf_by_address(host, CONF_KILL, user);
407
408 /* No clustering for removing a propagated kline */
409 if(propagated && (aconf == NULL || !aconf->lifetime) &&
410 rb_dlink_list_length(&cluster_conf_list) > 0)
411 cluster_generic(source_p, "UNKLINE", SHARED_UNKLINE, CAP_UNKLN,
412 "%s %s", user, host);
413
414 if(aconf == NULL)
415 {
416 sendto_one_notice(source_p, ":No K-Line for %s@%s", user, host);
417 return;
418 }
419
420 if(aconf->lifetime)
421 {
422 if(propagated)
423 remove_prop_kline(source_p, aconf);
424 else
425 sendto_one_notice(source_p, ":Cannot remove global K-Line %s@%s on specific servers", user, host);
426 return;
427 }
428
429 if(remove_temp_kline(source_p, aconf))
430 return;
431
432 remove_permkline_match(source_p, aconf);
433 }
434
435 /* ms_unkline()
436 *
437 * parv[1] - target server
438 * parv[2] - user to unkline
439 * parv[3] - host to unkline
440 */
441 static void
442 ms_unkline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
443 {
444 /* parv[0] parv[1] parv[2] parv[3]
445 * oper target server user host */
446 propagate_generic(source_p, "UNKLINE", parv[1], CAP_UNKLN, "%s %s", parv[2], parv[3]);
447
448 if(!match(parv[1], me.name))
449 return;
450
451 if(!IsPerson(source_p))
452 return;
453
454 handle_remote_unkline(source_p, parv[2], parv[3]);
455 }
456
457 static void
458 me_unkline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
459 {
460 /* user host */
461 if(!IsPerson(source_p))
462 return;
463
464 handle_remote_unkline(source_p, parv[1], parv[2]);
465 }
466
467 static void
468 handle_remote_unkline(struct Client *source_p, const char *user, const char *host)
469 {
470 struct ConfItem *aconf;
471
472 if(!find_shared_conf(source_p->username, source_p->host,
473 source_p->servptr->name, SHARED_UNKLINE))
474 return;
475
476 aconf = find_exact_conf_by_address(host, CONF_KILL, user);
477 if(aconf == NULL)
478 {
479 sendto_one_notice(source_p, ":No K-Line for %s@%s", user, host);
480 return;
481 }
482 if(aconf->lifetime)
483 {
484 sendto_one_notice(source_p, ":Cannot remove global K-Line %s@%s on specific servers", user, host);
485 return;
486 }
487
488 if(remove_temp_kline(source_p, aconf))
489 return;
490
491 remove_permkline_match(source_p, aconf);
492 }
493
494 /* apply_kline()
495 *
496 * inputs -
497 * output - NONE
498 * side effects - kline as given, is added to the hashtable
499 * and conf file
500 */
501 static void
502 apply_kline(struct Client *source_p, struct ConfItem *aconf,
503 const char *reason, const char *oper_reason)
504 {
505 add_conf_by_address(aconf->host, CONF_KILL, aconf->user, NULL, aconf);
506 bandb_add(BANDB_KLINE, source_p, aconf->user, aconf->host,
507 reason, EmptyString(oper_reason) ? NULL : oper_reason, 0);
508
509 /* no oper reason.. */
510 if(EmptyString(oper_reason))
511 {
512 sendto_realops_snomask(SNO_GENERAL, L_ALL,
513 "%s added K-Line for [%s@%s] [%s]",
514 get_oper_name(source_p), aconf->user, aconf->host, reason);
515 ilog(L_KLINE, "K %s 0 %s %s %s",
516 get_oper_name(source_p), aconf->user, aconf->host, reason);
517 }
518 else
519 {
520 sendto_realops_snomask(SNO_GENERAL, L_ALL,
521 "%s added K-Line for [%s@%s] [%s|%s]",
522 get_oper_name(source_p), aconf->user, aconf->host,
523 reason, oper_reason);
524 ilog(L_KLINE, "K %s 0 %s %s %s|%s",
525 get_oper_name(source_p), aconf->user, aconf->host, reason, oper_reason);
526 }
527
528 sendto_one_notice(source_p, ":Added K-Line [%s@%s]",
529 aconf->user, aconf->host);
530 }
531
532 /* apply_tkline()
533 *
534 * inputs -
535 * output - NONE
536 * side effects - tkline as given is placed
537 */
538 static void
539 apply_tkline(struct Client *source_p, struct ConfItem *aconf,
540 const char *reason, const char *oper_reason, int tkline_time)
541 {
542 aconf->hold = rb_current_time() + tkline_time;
543 add_temp_kline(aconf);
544
545 /* no oper reason.. */
546 if(EmptyString(oper_reason))
547 {
548 sendto_realops_snomask(SNO_GENERAL, L_ALL,
549 "%s added temporary %d min. K-Line for [%s@%s] [%s]",
550 get_oper_name(source_p), tkline_time / 60,
551 aconf->user, aconf->host, reason);
552 ilog(L_KLINE, "K %s %d %s %s %s",
553 get_oper_name(source_p), tkline_time / 60, aconf->user, aconf->host, reason);
554 }
555 else
556 {
557 sendto_realops_snomask(SNO_GENERAL, L_ALL,
558 "%s added temporary %d min. K-Line for [%s@%s] [%s|%s]",
559 get_oper_name(source_p), tkline_time / 60,
560 aconf->user, aconf->host, reason, oper_reason);
561 ilog(L_KLINE, "K %s %d %s %s %s|%s",
562 get_oper_name(source_p), tkline_time / 60,
563 aconf->user, aconf->host, reason, oper_reason);
564 }
565
566 sendto_one_notice(source_p, ":Added temporary %d min. K-Line [%s@%s]",
567 tkline_time / 60, aconf->user, aconf->host);
568 }
569
570 static void
571 apply_prop_kline(struct Client *source_p, struct ConfItem *aconf,
572 const char *reason, const char *oper_reason, int tkline_time)
573 {
574 aconf->flags |= CONF_FLAGS_MYOPER | CONF_FLAGS_TEMPORARY;
575 aconf->hold = rb_current_time() + tkline_time;
576 aconf->lifetime = aconf->hold;
577
578 replace_old_ban(aconf);
579
580 rb_dlinkAddAlloc(aconf, &prop_bans);
581 add_conf_by_address(aconf->host, CONF_KILL, aconf->user, NULL, aconf);
582
583 /* no oper reason.. */
584 if(EmptyString(oper_reason))
585 {
586 sendto_realops_snomask(SNO_GENERAL, L_ALL,
587 "%s added global %d min. K-Line for [%s@%s] [%s]",
588 get_oper_name(source_p), tkline_time / 60,
589 aconf->user, aconf->host, reason);
590 ilog(L_KLINE, "K %s %d %s %s %s",
591 get_oper_name(source_p), tkline_time / 60, aconf->user, aconf->host, reason);
592 }
593 else
594 {
595 sendto_realops_snomask(SNO_GENERAL, L_ALL,
596 "%s added global %d min. K-Line for [%s@%s] [%s|%s]",
597 get_oper_name(source_p), tkline_time / 60,
598 aconf->user, aconf->host, reason, oper_reason);
599 ilog(L_KLINE, "K %s %d %s %s %s|%s",
600 get_oper_name(source_p), tkline_time / 60,
601 aconf->user, aconf->host, reason, oper_reason);
602 }
603
604 sendto_one_notice(source_p, ":Added global %d min. K-Line [%s@%s]",
605 tkline_time / 60, aconf->user, aconf->host);
606
607 sendto_server(NULL, NULL, CAP_BAN|CAP_TS6, NOCAPS,
608 ":%s BAN K %s %s %lu %d %d * :%s%s%s",
609 source_p->id, aconf->user, aconf->host,
610 (unsigned long)aconf->created,
611 (int)(aconf->hold - aconf->created),
612 (int)(aconf->lifetime - aconf->created),
613 reason,
614 oper_reason ? "|" : "",
615 oper_reason ? oper_reason : "");
616 }
617
618 /* find_user_host()
619 *
620 * inputs - client placing kline, user@host, user buffer, host buffer
621 * output - false if not ok to kline, true to kline i.e. if valid user host
622 * side effects -
623 */
624 static bool
625 find_user_host(struct Client *source_p, const char *userhost, char *luser, char *lhost)
626 {
627 char *hostp;
628
629 hostp = strchr(userhost, '@');
630
631 if(hostp != NULL) /* I'm a little user@host */
632 {
633 *(hostp++) = '\0'; /* short and squat */
634 if(*userhost)
635 rb_strlcpy(luser, userhost, USERLEN + 1); /* here is my user */
636 else
637 strcpy(luser, "*");
638 if(*hostp)
639 rb_strlcpy(lhost, hostp, HOSTLEN + 1); /* here is my host */
640 else
641 strcpy(lhost, "*");
642 }
643 else
644 {
645 /* no '@', no '.', so its not a user@host or host, therefore
646 * its a nick, which support was removed for.
647 */
648 if(strchr(userhost, '.') == NULL && strchr(userhost, ':') == NULL)
649 {
650 sendto_one_notice(source_p, ":K-Line must be a user@host or host");
651 return false;
652 }
653
654 luser[0] = '*'; /* no @ found, assume its *@somehost */
655 luser[1] = '\0';
656 rb_strlcpy(lhost, userhost, HOSTLEN + 1);
657 }
658
659 /* would break the protocol */
660 if (*luser == ':' || *lhost == ':')
661 {
662 sendto_one_notice(source_p, ":Invalid K-Line");
663 return false;
664 }
665
666 return true;
667 }
668
669 /* valid_user_host()
670 *
671 * inputs - user buffer, host buffer
672 * output - false if invalid, true if valid
673 * side effects -
674 */
675 static bool
676 valid_user_host(struct Client *source_p, const char *luser, const char *lhost)
677 {
678 /* # is invalid, as are '!' (n!u@h kline) and '@' (u@@h kline) */
679 if(strchr(lhost, '#') || strchr(luser, '#') || strchr(luser, '!') || strchr(lhost, '@'))
680 {
681 sendto_one_notice(source_p, ":Invalid K-Line");
682 return false;
683 }
684
685 return true;
686 }
687
688 /* already_placed_kline()
689 *
690 * inputs - source to notify, user@host to check, tkline time
691 * outputs - true if a perm kline or a tkline when a tkline is being
692 * set exists, else false
693 * side effects - notifies source_p kline exists
694 */
695 /* Note: This currently works if the new K-line is a special case of an
696 * existing K-line, but not the other way round. To do that we would
697 * have to walk the hash and check every existing K-line. -A1kmm.
698 */
699 static bool
700 already_placed_kline(struct Client *source_p, const char *luser, const char *lhost, int tkline)
701 {
702 const char *reason, *p;
703 struct rb_sockaddr_storage iphost, *piphost;
704 struct ConfItem *aconf;
705 int t, bits;
706
707 aconf = find_exact_conf_by_address(lhost, CONF_KILL, luser);
708 if(aconf == NULL && ConfigFileEntry.non_redundant_klines)
709 {
710 bits = 0;
711 t = parse_netmask_strict(lhost, &iphost, &bits);
712 piphost = &iphost;
713 if (t == HM_IPV4)
714 t = AF_INET;
715 else if (t == HM_IPV6)
716 t = AF_INET6;
717 else
718 piphost = NULL;
719
720 aconf = find_conf_by_address(lhost, NULL, NULL, (struct sockaddr *) piphost,
721 CONF_KILL, t, luser, NULL);
722 if(aconf != NULL)
723 {
724 /* The above was really a lookup of a single IP,
725 * so check if the new kline is wider than the
726 * existing one.
727 * -- jilles
728 */
729 p = strchr(aconf->host, '/');
730 if(bits > 0 && (p == NULL || bits < atoi(p + 1)))
731 aconf = NULL;
732 }
733 }
734 if(aconf != NULL)
735 {
736 /* setting a tkline, or existing one is perm */
737 if(tkline || ((aconf->flags & CONF_FLAGS_TEMPORARY) == 0))
738 {
739 reason = aconf->passwd ? aconf->passwd : "<No Reason>";
740
741 sendto_one_notice(source_p,
742 ":[%s@%s] already K-Lined by [%s@%s] - %s",
743 luser, lhost, aconf->user, aconf->host, reason);
744 return true;
745 }
746 }
747
748 return false;
749 }
750
751 /* remove_permkline_match()
752 *
753 * hunts for a permanent kline, and removes it.
754 */
755 static void
756 remove_permkline_match(struct Client *source_p, struct ConfItem *aconf)
757 {
758 sendto_one_notice(source_p, ":K-Line for [%s@%s] is removed", aconf->user, aconf->host);
759
760 sendto_realops_snomask(SNO_GENERAL, L_ALL,
761 "%s has removed the K-Line for: [%s@%s]",
762 get_oper_name(source_p), aconf->user, aconf->host);
763
764 ilog(L_KLINE, "UK %s %s %s", get_oper_name(source_p), aconf->user, aconf->host);
765
766 remove_reject_mask(aconf->user, aconf->host);
767 bandb_del(BANDB_KLINE, aconf->user, aconf->host);
768 delete_one_address_conf(aconf->host, aconf);
769 }
770
771 /* remove_temp_kline()
772 *
773 * inputs - username, hostname to unkline
774 * outputs -
775 * side effects - tries to unkline anything that matches
776 */
777 static bool
778 remove_temp_kline(struct Client *source_p, struct ConfItem *aconf)
779 {
780 rb_dlink_node *ptr;
781 int i;
782
783 for(i = 0; i < LAST_TEMP_TYPE; i++)
784 {
785 RB_DLINK_FOREACH(ptr, temp_klines[i].head)
786 {
787 if(aconf == ptr->data)
788 {
789 sendto_one_notice(source_p,
790 ":Un-klined [%s@%s] from temporary k-lines",
791 aconf->user, aconf->host);
792 sendto_realops_snomask(SNO_GENERAL, L_ALL,
793 "%s has removed the temporary K-Line for: [%s@%s]",
794 get_oper_name(source_p), aconf->user,
795 aconf->host);
796
797 ilog(L_KLINE, "UK %s %s %s",
798 get_oper_name(source_p), aconf->user, aconf->host);
799 rb_dlinkDestroy(ptr, &temp_klines[i]);
800 remove_reject_mask(aconf->user, aconf->host);
801 delete_one_address_conf(aconf->host, aconf);
802 return true;
803 }
804 }
805 }
806
807 return false;
808 }
809
810 static void
811 remove_prop_kline(struct Client *source_p, struct ConfItem *aconf)
812 {
813 rb_dlink_node *ptr;
814 time_t now;
815
816 ptr = rb_dlinkFind(aconf, &prop_bans);
817 if (!ptr)
818 return;
819 sendto_one_notice(source_p,
820 ":Un-klined [%s@%s] from global k-lines",
821 aconf->user, aconf->host);
822 sendto_realops_snomask(SNO_GENERAL, L_ALL,
823 "%s has removed the global K-Line for: [%s@%s]",
824 get_oper_name(source_p), aconf->user,
825 aconf->host);
826
827 ilog(L_KLINE, "UK %s %s %s",
828 get_oper_name(source_p), aconf->user, aconf->host);
829 now = rb_current_time();
830 if(aconf->created < now)
831 aconf->created = now;
832 else
833 aconf->created++;
834 aconf->hold = aconf->created;
835 operhash_delete(aconf->info.oper);
836 aconf->info.oper = operhash_add(get_oper_name(source_p));
837 aconf->flags |= CONF_FLAGS_MYOPER | CONF_FLAGS_TEMPORARY;
838 sendto_server(NULL, NULL, CAP_BAN|CAP_TS6, NOCAPS,
839 ":%s BAN K %s %s %lu %d %d * :*",
840 source_p->id, aconf->user, aconf->host,
841 (unsigned long)aconf->created,
842 0,
843 (int)(aconf->lifetime - aconf->created));
844 remove_reject_mask(aconf->user, aconf->host);
845 deactivate_conf(aconf, ptr, now);
846 }