]> jfr.im git - solanum.git/blame - modules/m_xline.c
Replace RPL_WHOISTEXT(337) with RPL_WHOISSPECIAL(320) (#419)
[solanum.git] / modules / m_xline.c
CommitLineData
212380e3 1/* modules/m_xline.c
55abcbb2 2 *
212380e3
AC
3 * Copyright (C) 2002-2003 Lee Hardy <lee@leeh.co.uk>
4 * Copyright (C) 2002-2005 ircd-ratbox development team
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * 1.Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 * 2.Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3.The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
212380e3
AC
29 */
30
31#include "stdinc.h"
212380e3
AC
32#include "send.h"
33#include "channel.h"
34#include "client.h"
9b8e9eb3 35#include "defaults.h"
212380e3
AC
36#include "class.h"
37#include "ircd.h"
38#include "numeric.h"
4016731b 39#include "logger.h"
212380e3
AC
40#include "s_serv.h"
41#include "whowas.h"
4562c604 42#include "match.h"
212380e3
AC
43#include "hash.h"
44#include "msg.h"
45#include "parse.h"
46#include "modules.h"
47#include "s_conf.h"
48#include "s_newconf.h"
35f6f850 49#include "reject.h"
8bbeb278 50#include "bandbi.h"
27f616dd 51#include "operhash.h"
212380e3 52
eeabf33a
EM
53static const char xline_desc[] =
54 "Provides management of GECOS bans via (UN)XLINE command";
55
3c7d6fcc
EM
56static void mo_xline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
57static void ms_xline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
58static void me_xline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
59static void mo_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc,
8bbeb278 60 const char *parv[]);
3c7d6fcc 61static void ms_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc,
8bbeb278 62 const char *parv[]);
3c7d6fcc 63static void me_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc,
8bbeb278 64 const char *parv[]);
212380e3 65
3c7d6fcc 66static bool valid_xline(struct Client *, const char *, const char *);
8bbeb278 67static void apply_xline(struct Client *client_p, const char *name,
f66f0baa 68 const char *reason, int temp_time, bool propagated);
212380e3 69static void propagate_xline(struct Client *source_p, const char *target,
8bbeb278 70 int temp_time, const char *name, const char *type, const char *reason);
212380e3 71static void cluster_xline(struct Client *source_p, int temp_time,
8bbeb278 72 const char *name, const char *reason);
212380e3
AC
73
74static void handle_remote_xline(struct Client *source_p, int temp_time,
75 const char *name, const char *reason);
76static void handle_remote_unxline(struct Client *source_p, const char *name);
3cbbfb25 77static void remove_xline(struct Client *source_p, const char *name,
f66f0baa 78 bool propagated);
212380e3 79
eeabf33a
EM
80struct Message xline_msgtab = {
81 "XLINE", 0, 0, 0, 0,
82 {mg_unreg, mg_not_oper, {ms_xline, 5}, {ms_xline, 5}, {me_xline, 5}, {mo_xline, 3}}
83};
84
85struct Message unxline_msgtab = {
86 "UNXLINE", 0, 0, 0, 0,
87 {mg_unreg, mg_not_oper, {ms_unxline, 3}, {ms_unxline, 3}, {me_unxline, 2}, {mo_unxline, 2}}
88};
89
90mapi_clist_av1 xline_clist[] = { &xline_msgtab, &unxline_msgtab, NULL };
91
92DECLARE_MODULE_AV2(xline, NULL, NULL, xline_clist, NULL, NULL, NULL, NULL, xline_desc);
212380e3
AC
93
94/* m_xline()
95 *
96 * parv[1] - thing to xline
97 * parv[2] - optional type/reason
98 * parv[3] - reason
99 */
3c7d6fcc 100static void
428ca87b 101mo_xline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
102{
103 struct ConfItem *aconf;
104 const char *name;
105 const char *reason;
106 const char *target_server = NULL;
107 int temp_time;
108 int loc = 1;
f66f0baa 109 bool propagated = ConfigFileEntry.use_propagated_bans;
212380e3
AC
110
111 if(!IsOperXline(source_p))
112 {
8bbeb278 113 sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "xline");
3c7d6fcc 114 return;
212380e3
AC
115 }
116
117 if((temp_time = valid_temp_time(parv[loc])) >= 0)
118 loc++;
119 /* we just set temp_time to -1! */
120 else
121 temp_time = 0;
122
123 name = parv[loc];
124 loc++;
125
126 /* XLINE <gecos> ON <server> :<reason> */
8bbeb278 127 if(parc >= loc + 2 && !irccmp(parv[loc], "ON"))
212380e3
AC
128 {
129 if(!IsOperRemoteBan(source_p))
130 {
131 sendto_one(source_p, form_str(ERR_NOPRIVS),
8bbeb278 132 me.name, source_p->name, "remoteban");
3c7d6fcc 133 return;
212380e3
AC
134 }
135
8bbeb278 136 target_server = parv[loc + 1];
212380e3
AC
137 loc += 2;
138 }
139
140 if(parc <= loc || EmptyString(parv[loc]))
141 {
142 sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
8bbeb278 143 me.name, source_p->name, "XLINE");
3c7d6fcc 144 return;
212380e3
AC
145 }
146
147 reason = parv[loc];
148
149 if(target_server != NULL)
150 {
a9227555 151 if (temp_time)
152 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "%s is adding a temporary %d min. X-Line for [%s] on %s [%s]",
153 get_oper_name(source_p), temp_time / 60, name, target_server, reason);
154 else
155 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "%s is adding a permanent X-Line for [%s] on %s [%s]",
156 get_oper_name(source_p), name, target_server, reason);
157
8bbeb278 158 propagate_xline(source_p, target_server, temp_time, name, "2", reason);
212380e3
AC
159
160 if(!match(target_server, me.name))
3c7d6fcc 161 return;
3cbbfb25
JT
162
163 /* Set as local-only. */
f66f0baa 164 propagated = false;
212380e3 165 }
3cbbfb25 166 else if(!propagated && rb_dlink_list_length(&cluster_conf_list) > 0)
8bbeb278 167 cluster_xline(source_p, temp_time, name, reason);
212380e3 168
8bbeb278 169 if((aconf = find_xline_mask(name)) != NULL)
212380e3
AC
170 {
171 sendto_one(source_p, ":%s NOTICE %s :[%s] already X-Lined by [%s] - %s",
23959371 172 me.name, source_p->name, name, aconf->host, aconf->passwd);
3c7d6fcc 173 return;
212380e3
AC
174 }
175
8bbeb278 176 if(!valid_xline(source_p, name, reason))
3c7d6fcc 177 return;
212380e3 178
3cbbfb25
JT
179 if(propagated && temp_time == 0)
180 {
181 sendto_one_notice(source_p, ":Cannot set a permanent global ban");
3c7d6fcc 182 return;
3cbbfb25
JT
183 }
184
185 apply_xline(source_p, name, reason, temp_time, propagated);
212380e3
AC
186}
187
188/* ms_xline()
189 *
190 * handles a remote xline
191 */
3c7d6fcc 192static void
428ca87b 193ms_xline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3 194{
8bbeb278
AC
195 /* parv[0] parv[1] parv[2] parv[3] parv[4]
196 * oper target serv xline type reason
212380e3
AC
197 */
198 propagate_xline(source_p, parv[1], 0, parv[2], parv[3], parv[4]);
199
200 if(!IsPerson(source_p))
3c7d6fcc 201 return;
212380e3
AC
202
203 /* destined for me? */
204 if(!match(parv[1], me.name))
3c7d6fcc 205 return;
212380e3
AC
206
207 handle_remote_xline(source_p, 0, parv[2], parv[4]);
212380e3
AC
208}
209
3c7d6fcc 210static void
428ca87b 211me_xline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
212{
213 /* time name type :reason */
214 if(!IsPerson(source_p))
3c7d6fcc 215 return;
212380e3
AC
216
217 handle_remote_xline(source_p, atoi(parv[1]), parv[2], parv[4]);
212380e3
AC
218}
219
220static void
8bbeb278 221handle_remote_xline(struct Client *source_p, int temp_time, const char *name, const char *reason)
212380e3
AC
222{
223 struct ConfItem *aconf;
224
8bbeb278 225 if(!valid_xline(source_p, name, reason))
212380e3
AC
226 return;
227
228 /* already xlined */
0fdb2570 229 if((aconf = find_xline_mask(name)) != NULL)
212380e3 230 {
23959371 231 sendto_one_notice(source_p, ":[%s] already X-Lined by [%s] - %s", name, aconf->host,
8bbeb278 232 aconf->passwd);
212380e3
AC
233 return;
234 }
235
f66f0baa 236 apply_xline(source_p, name, reason, temp_time, false);
212380e3
AC
237}
238
239/* valid_xline()
240 *
8bbeb278 241 * inputs - client xlining, gecos, reason and whether to warn
212380e3
AC
242 * outputs -
243 * side effects - checks the xline for validity, erroring if needed
244 */
3c7d6fcc 245static bool
8bbeb278 246valid_xline(struct Client *source_p, const char *gecos, const char *reason)
212380e3
AC
247{
248 if(EmptyString(reason))
249 {
250 sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
8bbeb278 251 get_id(&me, source_p), get_id(source_p, source_p), "XLINE");
3c7d6fcc 252 return false;
cc169c94
JT
253 }
254
212380e3
AC
255 if(!valid_wild_card_simple(gecos))
256 {
257 sendto_one_notice(source_p,
258 ":Please include at least %d non-wildcard "
259 "characters with the xline",
260 ConfigFileEntry.min_nonwildcard_simple);
3c7d6fcc 261 return false;
212380e3
AC
262 }
263
3c7d6fcc 264 return true;
212380e3
AC
265}
266
267void
f66f0baa 268apply_xline(struct Client *source_p, const char *name, const char *reason, int temp_time, bool propagated)
212380e3
AC
269{
270 struct ConfItem *aconf;
271
272 aconf = make_conf();
273 aconf->status = CONF_XLINE;
b52c2949 274 aconf->created = rb_current_time();
4418166c 275 aconf->host = rb_strdup(name);
8bbeb278 276 aconf->passwd = rb_strdup(reason);
23959371 277 collapse(aconf->host);
212380e3 278
27f616dd
JT
279 aconf->info.oper = operhash_add(get_oper_name(source_p));
280
3cbbfb25
JT
281 if(propagated)
282 {
283 aconf->flags |= CONF_FLAGS_MYOPER | CONF_FLAGS_TEMPORARY;
284 aconf->hold = rb_current_time() + temp_time;
285 aconf->lifetime = aconf->hold;
286
287 replace_old_ban(aconf);
ce376a21 288 add_prop_ban(aconf);
3cbbfb25
JT
289
290 sendto_realops_snomask(SNO_GENERAL, L_ALL,
291 "%s added global %d min. X-Line for [%s] [%s]",
292 get_oper_name(source_p), temp_time / 60,
293 aconf->host, reason);
294 ilog(L_KLINE, "X %s %d %s %s",
295 get_oper_name(source_p), temp_time / 60, name, reason);
296 sendto_one_notice(source_p, ":Added global %d min. X-Line [%s]",
297 temp_time / 60, aconf->host);
298 sendto_server(NULL, NULL, CAP_BAN|CAP_TS6, NOCAPS,
299 ":%s BAN X * %s %lu %d %d * :%s",
300 source_p->id, aconf->host,
301 (unsigned long)aconf->created,
302 (int)(aconf->hold - aconf->created),
303 (int)(aconf->lifetime - aconf->created),
304 reason);
305 }
306 else if(temp_time > 0)
212380e3 307 {
8bbeb278 308 aconf->hold = rb_current_time() + temp_time;
212380e3 309
8bbeb278
AC
310 sendto_realops_snomask(SNO_GENERAL, L_ALL,
311 "%s added temporary %d min. X-Line for [%s] [%s]",
312 get_oper_name(source_p), temp_time / 60,
23959371 313 aconf->host, reason);
8bbeb278
AC
314 ilog(L_KLINE, "X %s %d %s %s",
315 get_oper_name(source_p), temp_time / 60, name, reason);
316 sendto_one_notice(source_p, ":Added temporary %d min. X-Line [%s]",
23959371 317 temp_time / 60, aconf->host);
8bbeb278
AC
318 }
319 else
212380e3 320 {
8bbeb278 321 sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s added X-Line for [%s] [%s]",
23959371 322 get_oper_name(source_p), aconf->host, aconf->passwd);
8bbeb278 323 sendto_one_notice(source_p, ":Added X-Line for [%s] [%s]",
23959371 324 aconf->host, aconf->passwd);
8bbeb278 325
23959371 326 bandb_add(BANDB_XLINE, source_p, aconf->host, NULL, aconf->passwd, NULL, 0);
f36d4fdd 327 ilog(L_KLINE, "X %s 0 %s %s", get_oper_name(source_p), name, aconf->passwd);
212380e3 328 }
8bbeb278
AC
329
330 rb_dlinkAddAlloc(aconf, &xline_conf_list);
331 check_xlines();
212380e3
AC
332}
333
8bbeb278 334static void
212380e3 335propagate_xline(struct Client *source_p, const char *target,
8bbeb278 336 int temp_time, const char *name, const char *type, const char *reason)
212380e3
AC
337{
338 if(!temp_time)
339 {
340 sendto_match_servs(source_p, target, CAP_CLUSTER, NOCAPS,
8bbeb278 341 "XLINE %s %s %s :%s", target, name, type, reason);
212380e3 342 sendto_match_servs(source_p, target, CAP_ENCAP, CAP_CLUSTER,
8bbeb278 343 "ENCAP %s XLINE %d %s 2 :%s", target, temp_time, name, reason);
212380e3
AC
344 }
345 else
346 sendto_match_servs(source_p, target, CAP_ENCAP, NOCAPS,
8bbeb278
AC
347 "ENCAP %s XLINE %d %s %s :%s",
348 target, temp_time, name, type, reason);
212380e3 349}
8bbeb278 350
212380e3 351static void
8bbeb278 352cluster_xline(struct Client *source_p, int temp_time, const char *name, const char *reason)
212380e3
AC
353{
354 struct remote_conf *shared_p;
5b96d9a6 355 rb_dlink_node *ptr;
212380e3 356
5b96d9a6 357 RB_DLINK_FOREACH(ptr, cluster_conf_list.head)
212380e3
AC
358 {
359 shared_p = ptr->data;
360
361 /* old protocol cant handle temps, and we dont really want
362 * to convert them to perm.. --fl
363 */
364 if(!temp_time)
365 {
366 if(!(shared_p->flags & SHARED_PXLINE))
367 continue;
368
369 sendto_match_servs(source_p, shared_p->server, CAP_CLUSTER, NOCAPS,
8bbeb278 370 "XLINE %s %s 2 :%s", shared_p->server, name, reason);
212380e3 371 sendto_match_servs(source_p, shared_p->server, CAP_ENCAP, CAP_CLUSTER,
8bbeb278
AC
372 "ENCAP %s XLINE 0 %s 2 :%s",
373 shared_p->server, name, reason);
212380e3
AC
374 }
375 else if(shared_p->flags & SHARED_TXLINE)
376 sendto_match_servs(source_p, shared_p->server, CAP_ENCAP, NOCAPS,
8bbeb278
AC
377 "ENCAP %s XLINE %d %s 2 :%s",
378 shared_p->server, temp_time, name, reason);
212380e3
AC
379 }
380}
381
382/* mo_unxline()
383 *
384 * parv[1] - thing to unxline
385 */
3c7d6fcc 386static void
428ca87b 387mo_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3 388{
f66f0baa 389 bool propagated = true;
3cbbfb25 390
212380e3
AC
391 if(!IsOperXline(source_p))
392 {
8bbeb278 393 sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "xline");
3c7d6fcc 394 return;
212380e3
AC
395 }
396
397 if(parc == 4 && !(irccmp(parv[2], "ON")))
398 {
399 if(!IsOperRemoteBan(source_p))
400 {
401 sendto_one(source_p, form_str(ERR_NOPRIVS),
8bbeb278 402 me.name, source_p->name, "remoteban");
3c7d6fcc 403 return;
212380e3
AC
404 }
405
a9227555 406 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "%s is removing the X-Line for [%s] on %s.",
407 get_oper_name(source_p), parv[1], parv[3]);
408
8bbeb278 409 propagate_generic(source_p, "UNXLINE", parv[3], CAP_CLUSTER, "%s", parv[1]);
212380e3
AC
410
411 if(match(parv[3], me.name) == 0)
3c7d6fcc 412 return;
3cbbfb25 413
f66f0baa 414 propagated = false;
212380e3 415 }
3cbbfb25 416 /* cluster{} moved to remove_xline */
212380e3 417
3cbbfb25 418 remove_xline(source_p, parv[1], propagated);
212380e3
AC
419}
420
421/* ms_unxline()
422 *
423 * handles a remote unxline
424 */
3c7d6fcc 425static void
428ca87b 426ms_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3 427{
8bbeb278
AC
428 /* parv[0] parv[1] parv[2]
429 * oper target server gecos
212380e3 430 */
8bbeb278 431 propagate_generic(source_p, "UNXLINE", parv[1], CAP_CLUSTER, "%s", parv[2]);
212380e3
AC
432
433 if(!match(parv[1], me.name))
3c7d6fcc 434 return;
212380e3
AC
435
436 if(!IsPerson(source_p))
3c7d6fcc 437 return;
212380e3
AC
438
439 handle_remote_unxline(source_p, parv[2]);
212380e3
AC
440}
441
3c7d6fcc 442static void
428ca87b 443me_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
444{
445 /* name */
446 if(!IsPerson(source_p))
3c7d6fcc 447 return;
212380e3
AC
448
449 handle_remote_unxline(source_p, parv[1]);
212380e3
AC
450}
451
452static void
453handle_remote_unxline(struct Client *source_p, const char *name)
454{
f66f0baa 455 remove_xline(source_p, name, false);
212380e3
AC
456}
457
60c96e64 458static void
5c1dbc3c 459remove_xline(struct Client *source_p, const char *name, bool propagated)
212380e3
AC
460{
461 struct ConfItem *aconf;
5b96d9a6 462 rb_dlink_node *ptr;
483987a4 463 time_t now;
212380e3 464
5b96d9a6 465 RB_DLINK_FOREACH(ptr, xline_conf_list.head)
212380e3
AC
466 {
467 aconf = ptr->data;
468
23959371 469 if(!irccmp(aconf->host, name))
212380e3 470 {
3cbbfb25
JT
471 if(aconf->lifetime)
472 {
473 if(!propagated)
474 {
475 sendto_one_notice(source_p, ":Cannot remove global X-Line %s on specific servers", name);
476 return;
477 }
ce376a21 478 if (!lookup_prop_ban(aconf))
3cbbfb25
JT
479 return;
480 sendto_one_notice(source_p, ":X-Line for [%s] is removed", name);
481 sendto_realops_snomask(SNO_GENERAL, L_ALL,
482 "%s has removed the global X-Line for: [%s]",
483 get_oper_name(source_p), name);
484 ilog(L_KLINE, "UX %s %s", get_oper_name(source_p), name);
483987a4
JT
485 now = rb_current_time();
486 if(aconf->created < now)
487 aconf->created = now;
3cbbfb25
JT
488 else
489 aconf->created++;
490 aconf->hold = aconf->created;
491 operhash_delete(aconf->info.oper);
492 aconf->info.oper = operhash_add(get_oper_name(source_p));
493 aconf->flags |= CONF_FLAGS_MYOPER | CONF_FLAGS_TEMPORARY;
494 sendto_server(NULL, NULL, CAP_BAN|CAP_TS6, NOCAPS,
495 ":%s BAN X * %s %lu %d %d * :*",
496 source_p->id, aconf->host,
497 (unsigned long)aconf->created,
498 0,
499 (int)(aconf->lifetime - aconf->created));
500 remove_reject_mask(aconf->host, NULL);
ce376a21 501 deactivate_conf(aconf, now);
3cbbfb25
JT
502 return;
503 }
1b5d7c2e 504 else if(propagated && rb_dlink_list_length(&cluster_conf_list))
3cbbfb25 505 cluster_generic(source_p, "UNXLINE", SHARED_UNXLINE, CAP_CLUSTER, "%s", name);
8bbeb278 506 if(!aconf->hold)
5408b484 507 {
8bbeb278
AC
508 bandb_del(BANDB_XLINE, aconf->host, NULL);
509
510 sendto_one_notice(source_p, ":X-Line for [%s] is removed", aconf->host);
511 sendto_realops_snomask(SNO_GENERAL, L_ALL,
512 "%s has removed the X-Line for: [%s]",
513 get_oper_name(source_p), aconf->host);
514 ilog(L_KLINE, "UX %s %s", get_oper_name(source_p), aconf->host);
5408b484
JT
515 }
516 else
517 {
8bbeb278 518 sendto_one_notice(source_p, ":X-Line for [%s] is removed", name);
5408b484 519 sendto_realops_snomask(SNO_GENERAL, L_ALL,
8bbeb278
AC
520 "%s has removed the temporary X-Line for: [%s]",
521 get_oper_name(source_p), name);
522 ilog(L_KLINE, "UX %s %s", get_oper_name(source_p), name);
5408b484 523 }
8bbeb278 524
23959371 525 remove_reject_mask(aconf->host, NULL);
212380e3 526 free_conf(aconf);
555ac41f 527 rb_dlinkDestroy(ptr, &xline_conf_list);
60c96e64 528 return;
212380e3
AC
529 }
530 }
531
1b5d7c2e 532 if(propagated && rb_dlink_list_length(&cluster_conf_list))
3cbbfb25
JT
533 cluster_generic(source_p, "UNXLINE", SHARED_UNXLINE, CAP_CLUSTER, "%s", name);
534
8bbeb278 535 sendto_one_notice(source_p, ":No X-Line for %s", name);
212380e3 536}