Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / gline.c
1 /*
2  * IRC - Internet Relay Chat, ircd/gline.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Finland
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 1, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * $Id$
21  */
22 #include "gline.h"
23 #include "client.h"
24 #include "ircd.h"
25 #include "ircd_alloc.h"
26 #include "ircd_reply.h"
27 #include "ircd_string.h"
28 #include "match.h"
29 #include "numeric.h"
30 #include "s_bsd.h"
31 #include "s_misc.h"
32 #include "send.h"
33 #include "struct.h"
34 #include "support.h"
35 #include "msg.h"
36 #include "numnicks.h"
37 #include "numeric.h"
38 #include "sys.h"    /* FALSE bleah */
39
40 #include <assert.h>
41 #include <string.h>
42
43 struct Gline* GlobalGlineList  = 0;
44 struct Gline* BadChanGlineList = 0;
45
46 static void
47 canon_userhost(char *userhost, char **user_p, char **host_p, char *def_user)
48 {
49   char *tmp;
50
51   if (!(tmp = strchr(userhost, '@'))) {
52     *user_p = def_user;
53     *host_p = userhost;
54   } else {
55     *user_p = userhost;
56     *(tmp++) = '\0';
57     *host_p = tmp;
58   }
59 }
60
61 static struct Gline *
62 make_gline(char *userhost, char *reason, time_t expire, time_t lastmod,
63            unsigned int flags)
64 {
65   struct Gline *gline, *sgline, *after = 0;
66   char *user, *host;
67
68   if (!(flags & GLINE_BADCHAN)) { /* search for overlapping glines first */
69     canon_userhost(userhost, &user, &host, "*"); /* find user and host */
70
71     for (gline = GlobalGlineList; gline; gline = sgline) {
72       sgline = gline->gl_next;
73
74       if (gline->gl_expire <= CurrentTime)
75         gline_free(gline);
76       else if ((gline->gl_flags & GLINE_LOCAL) != (flags & GLINE_LOCAL))
77         continue;
78       else if (!mmatch(gline->gl_user, user) && /* gline contains new mask */
79                !mmatch(gline->gl_host, host)) {
80         if (expire <= gline->gl_expire) /* will expire before wider gline */
81           return 0;
82         else
83           after = gline; /* stick new gline after this one */
84       } else if (!mmatch(user, gline->gl_user) && /* new mask contains gline */
85                  !mmatch(host, gline->gl_host) &&
86                  gline->gl_expire <= expire) /* gline expires before new one */
87         gline_free(gline); /* save some memory */
88     }
89   }
90
91   gline = (struct Gline *)MyMalloc(sizeof(struct Gline)); /* alloc memory */
92   assert(0 != gline);
93
94   DupString(gline->gl_reason, reason); /* initialize gline... */
95   gline->gl_expire = expire;
96   gline->gl_lastmod = lastmod;
97   gline->gl_flags = flags & GLINE_MASK;
98
99   if (flags & GLINE_BADCHAN) { /* set a BADCHAN gline */
100     DupString(gline->gl_user, userhost); /* first, remember channel */
101     gline->gl_host = 0;
102
103     gline->gl_next = BadChanGlineList; /* then link it into list */
104     gline->gl_prev_p = &BadChanGlineList;
105     if (BadChanGlineList)
106       BadChanGlineList->gl_prev_p = &gline->gl_next;
107     BadChanGlineList = gline;
108   } else {
109     DupString(gline->gl_user, user); /* remember them... */
110     DupString(gline->gl_host, host);
111
112     if (check_if_ipmask(host)) /* mark if it's an IP mask */
113       gline->gl_flags |= GLINE_IPMASK;
114
115     if (after) {
116       gline->gl_next = after->gl_next;
117       gline->gl_prev_p = &after->gl_next;
118       if (after->gl_next)
119         after->gl_next->gl_prev_p = &gline->gl_next;
120       after->gl_next = gline;
121     } else {
122       gline->gl_next = GlobalGlineList; /* then link it into list */
123       gline->gl_prev_p = &GlobalGlineList;
124       if (GlobalGlineList)
125         GlobalGlineList->gl_prev_p = &gline->gl_next;
126       GlobalGlineList = gline;
127     }
128   }
129
130   return gline;
131 }
132
133 static int
134 do_gline(struct Client *cptr, struct Client *sptr, struct Gline *gline)
135 {
136   struct Client *acptr;
137   int fd, retval = 0, tval;
138
139   if (!GlineIsActive(gline)) /* no action taken on inactive glines */
140     return 0;
141
142   for (fd = HighestFd; fd >= 0; --fd) {
143     /*
144      * get the users!
145      */
146     if ((acptr = LocalClientArray[fd])) {
147       if (!acptr->user)
148         continue;
149
150       if ((GlineIsIpMask(gline) ? match(gline->gl_host, acptr->sock_ip) :
151            match(gline->gl_host, acptr->sockhost)) == 0 &&
152           (!acptr->user->username ||
153            match(gline->gl_user, acptr->user->username) == 0)) {
154         /* ok, here's one that got G-lined */
155         sendto_one(acptr, ":%s %d %s :*** %s.", me.name, ERR_YOUREBANNEDCREEP,
156                    acptr->name, gline->gl_reason);
157
158         /* let the ops know about it */
159         sendto_op_mask(SNO_GLINE, "G-line active for %s",
160                        get_client_name(acptr, FALSE));
161
162         /* and get rid of him */
163         if ((tval = exit_client_msg(cptr, acptr, &me, "G-lined (%s)",
164                                     gline->gl_reason)))
165           retval = tval; /* retain killed status */
166       }
167     }
168   }
169
170   return retval;
171 }
172
173 static void
174 propagate_gline(struct Client *cptr, struct Client *sptr, struct Gline *gline)
175 {
176   if (GlineIsLocal(gline) || (IsUser(sptr) && !gline->gl_lastmod))
177     return;
178
179   if (gline->gl_lastmod)
180     sendcmdto_serv_butone(cptr, CMD_GLINE, sptr, "* %c%s%s%s %Tu %Tu :%s",
181                           GlineIsActive(gline) ? '+' : '-', gline->gl_user,
182                           GlineIsBadChan(gline) ? "" : "@",
183                           GlineIsBadChan(gline) ? "" : gline->gl_host,
184                           gline->gl_expire - CurrentTime, gline->gl_lastmod,
185                           gline->gl_reason);
186   else
187     sendcmdto_serv_butone(cptr, CMD_GLINE, sptr, "* %c%s%s%s %Tu :%s",
188                           GlineIsActive(gline) ? '+' : '-', gline->gl_user,
189                           GlineIsBadChan(gline) ? "" : "@",
190                           GlineIsBadChan(gline) ? "" : gline->gl_host,
191                           gline->gl_expire - CurrentTime, gline->gl_reason);
192 }
193
194 int 
195 gline_add(struct Client *cptr, struct Client *sptr, char *userhost,
196           char *reason, time_t expire, time_t lastmod, unsigned int flags)
197 {
198   struct Gline *agline;
199
200   assert(0 != userhost);
201   assert(0 != reason);
202
203   /*
204    * You cannot set a negative (or zero) expire time, nor can you set an
205    * expiration time for greater than GLINE_MAX_EXPIRE.
206    */
207   if (!(flags & GLINE_FORCE) && (expire <= 0 || expire > GLINE_MAX_EXPIRE)) {
208     if (!IsServer(sptr) && MyConnect(sptr))
209       send_error_to_client(sptr, ERR_BADEXPIRE, expire);
210     return 0;
211   }
212
213   expire += CurrentTime; /* convert from lifetime to timestamp */
214
215   /* NO_OLD_GLINE allows *@#channel to work correctly */
216 #ifdef BADCHAN
217   if (*userhost == '#' || *userhost == '&' || *userhost == '+'
218 # ifndef NO_OLD_GLINE
219       || userhost[2] == '#' || userhost[2] == '&' || userhost[2] == '+'
220 # endif /* OLD_GLINE */
221       ) {
222 # ifndef LOCAL_BADCHAN
223     if (flags & GLINE_LOCAL)
224       return 0;
225 # endif
226     flags |= GLINE_BADCHAN;
227   }
228 #endif /* BADCHAN */
229
230   /* Inform ops... */
231   sendto_op_mask(SNO_GLINE, "%s adding %s %s for %s, expiring at "
232                  TIME_T_FMT ": %s",
233                  IsServer(sptr) ? sptr->name : sptr->user->server->name,
234                  flags & GLINE_LOCAL ? "local" : "global",
235                  flags & GLINE_BADCHAN ? "BADCHAN" : "GLINE", userhost,
236                  expire + TSoffset, reason);
237
238 #ifdef GPATH
239   /* and log it */
240   if (IsServer(sptr))
241     write_log(GPATH, "# " TIME_T_FMT " %s adding %s %s for %s, expiring at "
242               TIME_T_FMT ": %s\n", TStime(), sptr->name,
243               flags & GLINE_LOCAL ? "local" : "global",
244               flags & GLINE_BADCHAN ? "BADCHAN" : "GLINE", userhost,
245               expire + TSoffset, reason);
246   else
247     write_log(GPATH, "# " TIME_T_FMT " %s!%s@%s adding %s %s for %s, "
248               "expiring at " TIME_T_FMT ": %s\n", TStime(), sptr->name,
249               sptr->user->username, sptr->user->host,
250               flags & GLINE_LOCAL ? "local" : "global",
251               flags & GLINE_BADCHAN ? "BADCHAN" : "GLINE", userhost,
252               expire + TSoffset, reason);
253 #endif /* GPATH */
254
255   /* make the gline */
256   agline = make_gline(userhost, reason, expire, lastmod, flags);
257
258   if (!agline) /* if it overlapped, silently return */
259     return 0;
260
261   propagate_gline(cptr, sptr, agline);
262
263   if (GlineIsBadChan(agline))
264     return 0;
265
266 #ifdef GPATH
267   /* this can be inserted into the conf */
268   write_log(GPATH, "%c:%s:%s:%s\n", GlineIsIpMask(agline) ? 'k' : 'K',
269             GlineHost(agline), GlineReason(agline), GlineUser(agline));
270 #endif /* GPATH */
271
272   return do_gline(cptr, sptr, agline); /* knock off users if necessary */
273 }
274
275 int
276 gline_activate(struct Client *cptr, struct Client *sptr, struct Gline *gline,
277                time_t lastmod, unsigned int flags)
278 {
279   assert(0 != gline);
280   assert(!GlineIsLocal(gline));
281
282   gline->gl_flags |= GLINE_ACTIVE;
283
284   if (gline->gl_lastmod >= lastmod) /* force lastmod to increase */
285     gline->gl_lastmod++;
286   else
287     gline->gl_lastmod = lastmod;
288
289   /* Inform ops and log it */
290   sendto_op_mask(SNO_GLINE, "%s activating global %s for %s%s%s, expiring at "
291                  TIME_T_FMT ": %s",
292                  IsServer(sptr) ? sptr->name : sptr->user->server->name,
293                  GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
294                  gline->gl_user, GlineIsBadChan(gline) ? "" : "@",
295                  GlineIsBadChan(gline) ? "" : gline->gl_host,
296                  gline->gl_expire + TSoffset, gline->gl_reason);
297
298 #ifdef GPATH
299   if (IsServer(sptr))
300     write_log(GPATH, "# " TIME_T_FMT " %s activating global %s for %s%s%s, "
301               "expiring at " TIME_T_FMT ": %s\n", TStime(), sptr->name,
302               GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
303               gline->gl_user, GlineIsBadChan(gline) ? "" : "@",
304               GlineIsBadChan(gline) ? "" : gline->gl_host,
305               gline->gl_expire + TSoffset, gline->gl_reason);
306   else
307     write_log(GPATH, "# " TIME_T_FMT " %s!%s@%s activating %s for "
308               "%s%s%s, expiring at " TIME_T_FMT ": %s\n", TStime(), sptr->name,
309               sptr->user->username, sptr->user->host,
310               GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
311               gline->gl_user, GlineIsBadChan(gline) ? "" : "@",
312               GlineIsBadChan(gline) ? "" : gline->gl_host,
313               gline->gl_expire + TSoffset, gline->gl_reason);
314 #endif /* GPATH */
315
316   propagate_gline(cptr, sptr, gline);
317
318   return GlineIsBadChan(gline) ? 0 : do_gline(cptr, sptr, gline);
319 }
320
321 int
322 gline_deactivate(struct Client *cptr, struct Client *sptr, struct Gline *gline,
323                  time_t lastmod, unsigned int flags)
324 {
325   assert(0 != gline);
326
327   if (!GlineIsLocal(gline)) {
328     gline->gl_flags &= ~GLINE_ACTIVE;
329
330     if (gline->gl_lastmod >= lastmod)
331       gline->gl_lastmod++;
332     else
333       gline->gl_lastmod = lastmod;
334   }
335
336   /* Inform ops and log it */
337   sendto_op_mask(SNO_GLINE, "%s %s %s for %s%s%s, expiring at "
338                  TIME_T_FMT ": %s",
339                  IsServer(sptr) ? sptr->name : sptr->user->server->name,
340                  GlineIsLocal(gline) ? "removing local" :
341                  "deactivating global",
342                  GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
343                  gline->gl_user, GlineIsBadChan(gline) ? "" : "@",
344                  GlineIsBadChan(gline) ? "" : gline->gl_host,
345                  gline->gl_expire + TSoffset, gline->gl_reason);
346
347 #ifdef GPATH
348   if (IsServer(sptr))
349     write_log(GPATH, "# " TIME_T_FMT " %s %s %s for %s%s%s, "
350               "expiring at " TIME_T_FMT ": %s\n", TStime(), sptr->name,
351               GlineIsLocal(gline) ? "removing local" : "deactivating global",
352               GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
353               gline->gl_user, GlineIsBadChan(gline) ? "" : "@",
354               GlineIsBadChan(gline) ? "" : gline->gl_host,
355               gline->gl_expire + TSoffset, gline->gl_reason);
356   else
357     write_log(GPATH, "# " TIME_T_FMT " %s!%s@%s %s %s for "
358               "%s%s%s, expiring at " TIME_T_FMT ": %s\n", TStime(), sptr->name,
359               sptr->user->username, sptr->user->host,
360               GlineIsLocal(gline) ? "removing local" : "deactivating global",
361               GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
362               gline->gl_user, GlineIsBadChan(gline) ? "" : "@",
363               GlineIsBadChan(gline) ? "" : gline->gl_host,
364               gline->gl_expire + TSoffset, gline->gl_reason);
365 #endif /* GPATH */
366
367   if (GlineIsLocal(gline))
368     gline_free(gline);
369   else
370     propagate_gline(cptr, sptr, gline);
371
372   return 0;
373 }
374
375 struct Gline *
376 gline_find(char *userhost, unsigned int flags)
377 {
378   struct Gline *gline;
379   struct Gline *sgline;
380   char *user, *host, *t_uh;
381
382   if (flags & (GLINE_BADCHAN | GLINE_ANY)) {
383     for (gline = BadChanGlineList; gline; gline = sgline) {
384       sgline = gline->gl_next;
385
386       if (gline->gl_expire <= CurrentTime)
387         gline_free(gline);
388       else if ((flags & GLINE_EXACT ? ircd_strcmp(gline->gl_user, userhost) :
389                 match(gline->gl_user, userhost)) == 0)
390         return gline;
391     }
392   }
393
394   if ((flags & (GLINE_BADCHAN | GLINE_ANY)) == GLINE_BADCHAN ||
395       *userhost == '#' || *userhost == '&' || *userhost == '+'
396 #ifndef NO_OLD_GLINE
397       || userhost[2] == '#' || userhost[2] == '&' || userhost[2] == '+'
398 #endif /* NO_OLD_GLINE */
399       )
400     return 0;
401
402   DupString(t_uh, userhost);
403   canon_userhost(t_uh, &user, &host, 0);
404
405   for (gline = GlobalGlineList; gline; gline = sgline) {
406     sgline = gline->gl_next;
407
408     if (gline->gl_expire <= CurrentTime)
409       gline_free(gline);
410     else if (flags & GLINE_EXACT) {
411       if (ircd_strcmp(gline->gl_host, host) == 0 &&
412           ((!user && ircd_strcmp(gline->gl_user, "*") == 0) ||
413            ircd_strcmp(gline->gl_user, user) == 0))
414         break;
415     } else {
416       if (match(gline->gl_host, host) == 0 &&
417           ((!user && ircd_strcmp(gline->gl_user, "*") == 0) ||
418            match(gline->gl_user, user) == 0))
419       break;
420     }
421   }
422
423   MyFree(t_uh);
424
425   return gline;
426 }
427
428 struct Gline *
429 gline_lookup(struct Client *cptr)
430 {
431   struct Gline *gline;
432   struct Gline *sgline;
433
434   for (gline = GlobalGlineList; gline; gline = sgline) {
435     sgline = gline->gl_next;
436
437     if (gline->gl_expire <= CurrentTime)
438       gline_free(gline);
439     else if ((GlineIsIpMask(gline) ?
440               match(gline->gl_host, ircd_ntoa((const char *)&cptr->ip)) :
441               match(gline->gl_host, cptr->user->host)) == 0 &&
442              match(gline->gl_user, cptr->user->username) == 0)
443       return gline;
444   }
445
446   return 0;
447 }
448
449 void
450 gline_free(struct Gline *gline)
451 {
452   assert(0 != gline);
453
454   *gline->gl_prev_p = gline->gl_next; /* squeeze this gline out */
455   if (gline->gl_next)
456     gline->gl_next->gl_prev_p = gline->gl_prev_p;
457
458   MyFree(gline->gl_user); /* free up the memory */
459   if (gline->gl_host)
460     MyFree(gline->gl_host);
461   MyFree(gline->gl_reason);
462   MyFree(gline);
463 }
464
465 void
466 gline_burst(struct Client *cptr)
467 {
468   struct Gline *gline;
469   struct Gline *sgline;
470
471   for (gline = GlobalGlineList; gline; gline = sgline) { /* all glines */
472     sgline = gline->gl_next;
473
474     if (gline->gl_expire <= CurrentTime) /* expire any that need expiring */
475       gline_free(gline);
476     else if (!GlineIsLocal(gline) && gline->gl_lastmod)
477       sendcmdto_one(cptr, CMD_GLINE, &me, "* %c%s@%s %Tu %Tu :%s",
478                     GlineIsActive(gline) ? '+' : '-', gline->gl_user,
479                     gline->gl_host, gline->gl_expire - CurrentTime,
480                     gline->gl_lastmod, gline->gl_reason);
481   }
482
483   for (gline = BadChanGlineList; gline; gline = sgline) { /* all glines */
484     sgline = gline->gl_next;
485
486     if (gline->gl_expire <= CurrentTime) /* expire any that need expiring */
487       gline_free(gline);
488     else if (!GlineIsLocal(gline) && gline->gl_lastmod)
489       sendcmdto_one(cptr, CMD_GLINE, &me, "* %c%s %Tu %Tu :%s",
490                     GlineIsActive(gline) ? '+' : '-', gline->gl_user,
491                     gline->gl_expire - CurrentTime, gline->gl_lastmod,
492                     gline->gl_reason);
493   }
494 }
495
496 int
497 gline_resend(struct Client *cptr, struct Gline *gline)
498 {
499   if (GlineIsLocal(gline) || !gline->gl_lastmod)
500     return 0;
501
502   sendcmdto_one(cptr, CMD_GLINE, &me, "* %c%s%s%s %Tu %Tu :%s",
503                 GlineIsActive(gline) ? '+' : '-', gline->gl_user,
504                 GlineIsBadChan(gline) ? "" : "@",
505                 GlineIsBadChan(gline) ? "" : gline->gl_host,
506                 gline->gl_expire - CurrentTime, gline->gl_lastmod,
507                 gline->gl_reason);
508
509   return 0;
510 }
511
512 int
513 gline_list(struct Client *sptr, char *userhost)
514 {
515   struct Gline *gline;
516   struct Gline *sgline;
517
518   if (userhost) {
519     if (!(gline = gline_find(userhost, GLINE_ANY))) /* no such gline */
520       return send_error_to_client(sptr, ERR_NOSUCHGLINE, userhost);
521
522     /* send gline information along */
523     sendto_one(sptr, rpl_str(RPL_GLIST), me.name, sptr->name, gline->gl_user,
524                GlineIsBadChan(gline) ? "" : "@",
525                GlineIsBadChan(gline) ? "" : gline->gl_host,
526                gline->gl_expire + TSoffset,
527                GlineIsLocal(gline) ? me.name : "*",
528                GlineIsActive(gline) ? '+' : '-', gline->gl_reason);
529   } else {
530     for (gline = GlobalGlineList; gline; gline = sgline) {
531       sgline = gline->gl_next;
532
533       if (gline->gl_expire <= CurrentTime)
534         gline_free(gline);
535       else
536         sendto_one(sptr, rpl_str(RPL_GLIST), me.name, sptr->name,
537                    gline->gl_user, "@", gline->gl_host,
538                    gline->gl_expire + TSoffset,
539                    GlineIsLocal(gline) ? me.name : "*",
540                    GlineIsActive(gline) ? '+' : '-', gline->gl_reason);
541     }
542
543     for (gline = BadChanGlineList; gline; gline = sgline) {
544       sgline = gline->gl_next;
545
546       if (gline->gl_expire <= CurrentTime)
547         gline_free(gline);
548       else
549         sendto_one(sptr, rpl_str(RPL_GLIST), me.name, sptr->name,
550                    gline->gl_user, "", "", gline->gl_expire + TSoffset,
551                    GlineIsLocal(gline) ? me.name : "*",
552                    GlineIsActive(gline) ? '+' : '-', gline->gl_reason);
553     }
554   }
555
556   /* end of gline information */
557   sendto_one(sptr, rpl_str(RPL_ENDOFGLIST), me.name, sptr->name);
558   return 0;
559 }
560
561 void
562 gline_stats(struct Client *sptr)
563 {
564   struct Gline *gline;
565   struct Gline *sgline;
566
567   for (gline = GlobalGlineList; gline; gline = sgline) {
568     sgline = gline->gl_next;
569
570     if (gline->gl_expire <= CurrentTime)
571       gline_free(gline);
572     else
573       sendto_one(sptr, rpl_str(RPL_STATSGLINE), me.name, sptr->name, 'G',
574                  gline->gl_user, gline->gl_host, gline->gl_expire + TSoffset,
575                  gline->gl_reason);
576   }
577 }