]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_dline.c
Generate the "Temporary K-line %d min" part from aconf->hold - aconf->created.
[irc/rqf/shadowircd.git] / modules / m_dline.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_dline.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 * $Id$
25 */
26
27 #include "stdinc.h"
28 #include "channel.h"
29 #include "class.h"
30 #include "client.h"
31 #include "common.h"
32 #include "match.h"
33 #include "ircd.h"
34 #include "hostmask.h"
35 #include "numeric.h"
36 #include "s_conf.h"
37 #include "s_newconf.h"
38 #include "logger.h"
39 #include "send.h"
40 #include "hash.h"
41 #include "s_serv.h"
42 #include "msg.h"
43 #include "parse.h"
44 #include "modules.h"
45 #include "bandbi.h"
46
47 static int mo_dline(struct Client *, struct Client *, int, const char **);
48 static int me_dline(struct Client *, struct Client *, int, const char **);
49 static int mo_undline(struct Client *, struct Client *, int, const char **);
50 static int me_undline(struct Client *, struct Client *, int, const char **);
51
52 struct Message dline_msgtab = {
53 "DLINE", 0, 0, 0, MFLG_SLOW,
54 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_dline, 3}, {mo_dline, 2}}
55 };
56
57 struct Message undline_msgtab = {
58 "UNDLINE", 0, 0, 0, MFLG_SLOW,
59 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_undline, 1}, {mo_undline, 2}}
60 };
61
62 mapi_clist_av1 dline_clist[] = { &dline_msgtab, &undline_msgtab, NULL };
63
64 DECLARE_MODULE_AV1(dline, NULL, NULL, dline_clist, NULL, NULL, "$Revision$");
65
66 static int valid_comment(char *comment);
67 static int remove_temp_dline(struct ConfItem *);
68 static int apply_dline(struct Client *, const char *, int, char *);
69 static int apply_undline(struct Client *, const char *);
70
71 /* mo_dline()
72 *
73 * parv[1] - dline to add
74 * parv[2] - reason
75 */
76 static int
77 mo_dline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
78 {
79 char def[] = "No Reason";
80 const char *dlhost;
81 char *reason = def;
82 char cidr_form_host[HOSTLEN + 1];
83 int tdline_time = 0;
84 const char *target_server = NULL;
85 int loc = 1;
86
87 if(!IsOperK(source_p))
88 {
89 sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "kline");
90 return 0;
91 }
92
93 if((tdline_time = valid_temp_time(parv[loc])) >= 0)
94 loc++;
95
96 dlhost = parv[loc];
97 rb_strlcpy(cidr_form_host, dlhost, sizeof(cidr_form_host));
98
99 loc++;
100
101 if(parc >= loc + 2 && !irccmp(parv[loc], "ON"))
102 {
103 if(!IsOperRemoteBan(source_p))
104 {
105 sendto_one(source_p, form_str(ERR_NOPRIVS),
106 me.name, source_p->name, "remoteban");
107 return 0;
108 }
109
110 target_server = parv[loc + 1];
111 loc += 2;
112 }
113
114 if(parc >= loc + 1 && !EmptyString(parv[loc]))
115 reason = LOCAL_COPY(parv[loc]);
116
117 if(target_server != NULL)
118 {
119 sendto_match_servs(source_p, target_server,
120 CAP_ENCAP, NOCAPS,
121 "ENCAP %s DLINE %d %s :%s",
122 target_server, tdline_time, dlhost, reason);
123
124 if(!match(target_server, me.name))
125 return 0;
126 }
127
128 apply_dline(source_p, dlhost, tdline_time, reason);
129
130 check_dlines();
131 return 0;
132 }
133
134 /* mo_undline()
135 *
136 * parv[1] = dline to remove
137 */
138 static int
139 mo_undline(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
140 {
141 const char *cidr;
142 const char *target_server = NULL;
143
144 if(!IsOperK(source_p))
145 {
146 sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, source_p->name, "unkline");
147 return 0;
148 }
149
150 cidr = parv[1];
151
152 if(parc >= 4 && !irccmp(parv[2], "ON"))
153 {
154 if(!IsOperRemoteBan(source_p))
155 {
156 sendto_one(source_p, form_str(ERR_NOPRIVS),
157 me.name, source_p->name, "remoteban");
158 return 0;
159 }
160
161 target_server = parv[3];
162 sendto_match_servs(source_p, target_server,
163 CAP_ENCAP, NOCAPS, "ENCAP %s UNDLINE %s", target_server, cidr);
164
165 if(!match(target_server, me.name))
166 return 0;
167 }
168
169 apply_undline(source_p, cidr);
170
171 return 0;
172 }
173
174 static int
175 me_dline(struct Client *client_p, struct Client *source_p, int parc, const char **parv)
176 {
177 int tdline_time = atoi(parv[1]);
178 /* Since this is coming over a server link, assume that the originating
179 * server did the relevant permission/sanity checks...
180 */
181
182 if(!IsPerson(source_p))
183 return 0;
184
185 if(!find_shared_conf(source_p->username, source_p->host,
186 source_p->servptr->name,
187 tdline_time > 0 ? SHARED_TDLINE : SHARED_PDLINE))
188 return 0;
189
190 apply_dline(source_p, parv[2], tdline_time, LOCAL_COPY(parv[3]));
191
192 check_dlines();
193 return 0;
194 }
195
196 static int
197 me_undline(struct Client *client_p, struct Client *source_p, int parc, const char **parv)
198 {
199 if(!IsPerson(source_p))
200 return 0;
201
202 if(!find_shared_conf(source_p->username, source_p->host,
203 source_p->servptr->name, SHARED_UNDLINE))
204 return 0;
205
206 apply_undline(source_p, parv[1]);
207
208 return 0;
209 }
210
211 static int
212 apply_dline(struct Client *source_p, const char *dlhost, int tdline_time, char *reason)
213 {
214 struct ConfItem *aconf;
215 char *oper_reason;
216 struct rb_sockaddr_storage daddr;
217 int t = AF_INET, ty, b;
218 const char *creason;
219
220 ty = parse_netmask(dlhost, (struct sockaddr *) &daddr, &b);
221 if(ty == HM_HOST)
222 {
223 sendto_one(source_p, ":%s NOTICE %s :Invalid D-Line", me.name, source_p->name);
224 return 0;
225 }
226 #ifdef RB_IPV6
227 if(ty == HM_IPV6)
228 t = AF_INET6;
229 else
230 #endif
231 t = AF_INET;
232
233 /* This means dlines wider than /16 cannot be set remotely */
234 if(IsOperAdmin(source_p))
235 {
236 if(b < 8)
237 {
238 sendto_one_notice(source_p,
239 ":For safety, bitmasks less than 8 require conf access.");
240 return 0;
241 }
242 }
243 else
244 {
245 if(b < 16)
246 {
247 sendto_one_notice(source_p,
248 ":Dline bitmasks less than 16 are for admins only.");
249 return 0;
250 }
251 }
252
253 if(!valid_comment(reason))
254 {
255 sendto_one(source_p,
256 ":%s NOTICE %s :Invalid character '\"' in comment",
257 me.name, source_p->name);
258 return 0;
259 }
260
261 if(ConfigFileEntry.non_redundant_klines)
262 {
263 if((aconf = find_dline((struct sockaddr *) &daddr, t)) != NULL)
264 {
265 int bx;
266 parse_netmask(aconf->host, NULL, &bx);
267 if(b >= bx)
268 {
269 creason = aconf->passwd ? aconf->passwd : "<No Reason>";
270 if(IsConfExemptKline(aconf))
271 sendto_one(source_p,
272 ":%s NOTICE %s :[%s] is (E)d-lined by [%s] - %s",
273 me.name, source_p->name, dlhost, aconf->host,
274 creason);
275 else
276 sendto_one(source_p,
277 ":%s NOTICE %s :[%s] already D-lined by [%s] - %s",
278 me.name, source_p->name, dlhost, aconf->host,
279 creason);
280 return 0;
281 }
282 }
283 }
284
285 rb_set_time();
286
287 aconf = make_conf();
288 aconf->status = CONF_DLINE;
289 aconf->created = rb_current_time();
290 aconf->host = rb_strdup(dlhost);
291 aconf->passwd = rb_strdup(reason);
292
293 /* Look for an oper reason */
294 if((oper_reason = strchr(reason, '|')) != NULL)
295 {
296 *oper_reason = '\0';
297 oper_reason++;
298
299 if(!EmptyString(oper_reason))
300 aconf->spasswd = rb_strdup(oper_reason);
301 }
302
303 if(tdline_time > 0)
304 {
305 aconf->hold = rb_current_time() + tdline_time;
306 add_temp_dline(aconf);
307
308 if(EmptyString(oper_reason))
309 {
310 sendto_realops_snomask(SNO_GENERAL, L_ALL,
311 "%s added temporary %d min. D-Line for [%s] [%s]",
312 get_oper_name(source_p), tdline_time / 60,
313 aconf->host, reason);
314 ilog(L_KLINE, "D %s %d %s %s",
315 get_oper_name(source_p), tdline_time / 60, aconf->host, reason);
316 }
317 else
318 {
319 sendto_realops_snomask(SNO_GENERAL, L_ALL,
320 "%s added temporary %d min. D-Line for [%s] [%s|%s]",
321 get_oper_name(source_p), tdline_time / 60,
322 aconf->host, reason, oper_reason);
323 ilog(L_KLINE, "D %s %d %s %s|%s",
324 get_oper_name(source_p), tdline_time / 60,
325 aconf->host, reason, oper_reason);
326 }
327
328 sendto_one(source_p, ":%s NOTICE %s :Added temporary %d min. D-Line for [%s]",
329 me.name, source_p->name, tdline_time / 60, aconf->host);
330 }
331 else
332 {
333 add_conf_by_address(aconf->host, CONF_DLINE, NULL, NULL, aconf);
334
335 bandb_add(BANDB_DLINE, source_p, aconf->host, NULL,
336 reason, EmptyString(aconf->spasswd) ? NULL : aconf->spasswd, 0);
337
338 if(EmptyString(oper_reason))
339 {
340 sendto_realops_snomask(SNO_GENERAL, L_ALL,
341 "%s added D-Line for [%s] [%s]",
342 get_oper_name(source_p), aconf->host, reason);
343 ilog(L_KLINE, "D %s 0 %s %s",
344 get_oper_name(source_p), aconf->host, reason);
345 }
346 else
347 {
348 sendto_realops_snomask(SNO_GENERAL, L_ALL,
349 "%s added D-Line for [%s] [%s|%s]",
350 get_oper_name(source_p), aconf->host, reason, oper_reason);
351 ilog(L_KLINE, "D %s 0 %s %s|%s",
352 get_oper_name(source_p),
353 aconf->host, reason, oper_reason);
354 }
355 }
356
357 return 0;
358 }
359
360 static int
361 apply_undline(struct Client *source_p, const char *cidr)
362 {
363 char buf[BUFSIZE];
364 struct ConfItem *aconf;
365
366 if(parse_netmask(cidr, NULL, NULL) == HM_HOST)
367 {
368 sendto_one_notice(source_p, ":Invalid D-Line");
369 return 0;
370 }
371
372 aconf = find_exact_conf_by_address(cidr, CONF_DLINE, NULL);
373 if(aconf == NULL)
374 {
375 sendto_one_notice(source_p, ":No D-Line for %s", cidr);
376 return 0;
377 }
378
379 rb_strlcpy(buf, aconf->host, sizeof buf);
380 if(remove_temp_dline(aconf))
381 {
382 sendto_one(source_p,
383 ":%s NOTICE %s :Un-dlined [%s] from temporary D-lines",
384 me.name, source_p->name, buf);
385 sendto_realops_snomask(SNO_GENERAL, L_ALL,
386 "%s has removed the temporary D-Line for: [%s]",
387 get_oper_name(source_p), buf);
388 ilog(L_KLINE, "UD %s %s", get_oper_name(source_p), buf);
389 return 0;
390 }
391
392 bandb_del(BANDB_DLINE, aconf->host, NULL);
393
394 sendto_one(source_p, ":%s NOTICE %s :D-Line for [%s] is removed", me.name, source_p->name,
395 aconf->host);
396 sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s has removed the D-Line for: [%s]",
397 get_oper_name(source_p), aconf->host);
398 ilog(L_KLINE, "UD %s %s", get_oper_name(source_p), aconf->host);
399 delete_one_address_conf(aconf->host, aconf);
400
401 return 0;
402 }
403
404 /*
405 * valid_comment
406 * inputs - pointer to client
407 * - pointer to comment
408 * output - 0 if no valid comment, 1 if valid
409 * side effects - NONE
410 */
411 static int
412 valid_comment(char *comment)
413 {
414 if(strchr(comment, '"'))
415 return 0;
416
417 if(strlen(comment) > BANREASONLEN)
418 comment[BANREASONLEN] = '\0';
419
420 return 1;
421 }
422
423 /* remove_temp_dline()
424 *
425 * inputs - confitem to undline
426 * outputs -
427 * side effects - tries to undline anything that matches
428 */
429 static int
430 remove_temp_dline(struct ConfItem *aconf)
431 {
432 rb_dlink_node *ptr;
433 int i;
434
435 for(i = 0; i < LAST_TEMP_TYPE; i++)
436 {
437 RB_DLINK_FOREACH(ptr, temp_dlines[i].head)
438 {
439 if(aconf == ptr->data)
440 {
441 rb_dlinkDestroy(ptr, &temp_dlines[i]);
442 delete_one_address_conf(aconf->host, aconf);
443 return YES;
444 }
445 }
446 }
447
448 return NO;
449 }