Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_gline.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_gline.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
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 1, or (at your option)
12  * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25
26 /*
27  * m_functions execute protocol messages on this server:
28  *
29  *    cptr    is always NON-NULL, pointing to a *LOCAL* client
30  *            structure (with an open socket connected!). This
31  *            identifies the physical socket where the message
32  *            originated (or which caused the m_function to be
33  *            executed--some m_functions may call others...).
34  *
35  *    sptr    is the source of the message, defined by the
36  *            prefix part of the message if present. If not
37  *            or prefix not found, then sptr==cptr.
38  *
39  *            (!IsServer(cptr)) => (cptr == sptr), because
40  *            prefixes are taken *only* from servers...
41  *
42  *            (IsServer(cptr))
43  *                    (sptr == cptr) => the message didn't
44  *                    have the prefix.
45  *
46  *                    (sptr != cptr && IsServer(sptr) means
47  *                    the prefix specified servername. (?)
48  *
49  *                    (sptr != cptr && !IsServer(sptr) means
50  *                    that message originated from a remote
51  *                    user (not local).
52  *
53  *            combining
54  *
55  *            (!IsServer(sptr)) means that, sptr can safely
56  *            taken as defining the target structure of the
57  *            message in this server.
58  *
59  *    *Always* true (if 'parse' and others are working correct):
60  *
61  *    1)      sptr->from == cptr  (note: cptr->from == cptr)
62  *
63  *    2)      MyConnect(sptr) <=> sptr == cptr (e.g. sptr
64  *            *cannot* be a local connection, unless it's
65  *            actually cptr!). [MyConnect(x) should probably
66  *            be defined as (x == x->from) --msa ]
67  *
68  *    parc    number of variable parameter strings (if zero,
69  *            parv is allowed to be NULL)
70  *
71  *    parv    a NULL terminated list of parameter pointers,
72  *
73  *                    parv[0], sender (prefix string), if not present
74  *                            this points to an empty string.
75  *                    parv[1]...parv[parc-1]
76  *                            pointers to additional parameters
77  *                    parv[parc] == NULL, *always*
78  *
79  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
80  *                    non-NULL pointers.
81  */
82 #include "config.h"
83
84 #include "client.h"
85 #include "gline.h"
86 #include "hash.h"
87 #include "ircd.h"
88 #include "ircd_features.h"
89 #include "ircd_log.h"
90 #include "ircd_reply.h"
91 #include "ircd_string.h"
92 #include "match.h"
93 #include "msg.h"
94 #include "numeric.h"
95 #include "numnicks.h"
96 #include "s_conf.h"
97 #include "s_debug.h"
98 #include "s_misc.h"
99 #include "send.h"
100
101 /* #include <assert.h> -- Now using assert in ircd_log.h */
102 #include <stdlib.h>
103 #include <string.h>
104
105 #define PASTWATCH       157680000       /* number of seconds in 5 years */
106
107 /*
108  * If the expiration value, interpreted as an absolute timestamp, is
109  * more recent than 5 years in the past, we interpret it as an
110  * absolute timestamp; otherwise, we assume it's relative and convert
111  * it to an absolute timestamp.  Either way, the output of this macro
112  * is an absolute timestamp--not guaranteed to be a *valid* timestamp,
113  * but you can't have everything in a macro ;)
114  */
115 #define abs_expire(exp)                                                 \
116   ((exp) >= CurrentTime - PASTWATCH ? (exp) : (exp) + CurrentTime)
117
118 /*
119  * ms_gline - server message handler
120  *
121  * parv[0] = Sender prefix
122  * parv[1] = Target: server numeric
123  * parv[2] = (+|-)<G-line mask>
124  *
125  * For other parameters, see doc/readme.gline.
126  */
127 int
128 ms_gline(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
129 {
130   struct Client *acptr = 0;
131   struct Gline *agline = 0;
132   unsigned int flags = 0;
133   enum GlineAction action = GLINE_MODIFY;
134   time_t expire = 0, lastmod = 0, lifetime = 0;
135   char *mask = parv[2], *target = parv[1], *reason = "No reason", *tmp = 0;
136
137   if (parc < 3)
138     return need_more_params(sptr, "GLINE");
139
140   if (IsServer(sptr))
141     flags |= GLINE_FORCE;
142
143   if (*mask == '!') {
144     mask++;
145     flags |= GLINE_OPERFORCE; /* assume oper had WIDE_GLINE */
146   }
147
148   switch (*mask) { /* handle +, -, <, and > */
149   case '+': /* activate the G-line */
150     action = GLINE_ACTIVATE;
151     mask++;
152     break;
153
154   case '-': /* deactivate the G-line */
155     action = GLINE_DEACTIVATE;
156     mask++;
157     break;
158
159   case '>': /* locally activate the G-line */
160     action = GLINE_LOCAL_ACTIVATE;
161     mask++;
162     break;
163
164   case '<': /* locally deactivate the G-line */
165     action = GLINE_LOCAL_DEACTIVATE;
166     mask++;
167     break;
168   }
169
170   /* Now, let's figure out if it's a local or global G-line */
171   if (action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE ||
172       (target[0] == '*' && target[1] == '\0'))
173     flags |= GLINE_GLOBAL;
174   else
175     flags |= GLINE_LOCAL;
176
177   /* now figure out if we need to resolve a server */
178   if ((action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE ||
179        (flags & GLINE_LOCAL)) && !(acptr = FindNServer(target)))
180     return 0; /* no such server, jump out */
181
182   /* If it's a local activate/deactivate and server isn't me, propagate it */
183   if ((action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE) &&
184       !IsMe(acptr)) {
185     Debug((DEBUG_DEBUG, "I am forwarding a local change to a global gline "
186            "to a remote server; target %s, mask %s, operforce %s, action %c",
187            target, mask, flags & GLINE_OPERFORCE ? "YES" : "NO",
188            action == GLINE_LOCAL_ACTIVATE ? '>' : '<'));
189
190     sendcmdto_one(sptr, CMD_GLINE, acptr, "%C %s%c%s", acptr,
191                   flags & GLINE_OPERFORCE ? "!" : "",
192                   action == GLINE_LOCAL_ACTIVATE ? '>' : '<', mask);
193
194     return 0; /* all done */
195   }
196
197   /* Next, try to find the G-line... */
198   if ((flags & GLINE_GLOBAL) || IsMe(acptr)) /* don't bother if it's not me! */
199     agline = gline_find(mask, flags | GLINE_ANY | GLINE_EXACT);
200
201   /* We now have all the pieces to tell us what we've got; let's put
202    * it all together and convert the rest of the arguments.
203    */
204
205   /* Handle the local G-lines first... */
206   if (flags & GLINE_LOCAL) {
207     assert(acptr);
208
209     /* normalize the action, first */
210     if (action == GLINE_LOCAL_ACTIVATE || action == GLINE_MODIFY)
211       action = GLINE_ACTIVATE;
212     else if (action == GLINE_LOCAL_DEACTIVATE)
213       action = GLINE_DEACTIVATE;
214
215     if (action == GLINE_ACTIVATE) { /* get expiration and reason */
216       if (parc < 5) /* check parameter count... */
217         return need_more_params(sptr, "GLINE");
218
219       expire = atoi(parv[3]); /* get expiration... */
220       expire = abs_expire(expire); /* convert to absolute... */
221       reason = parv[parc - 1]; /* and reason */
222
223       if (IsMe(acptr)) {
224         if (agline) /* G-line already exists, so let's ignore it... */
225           return 0;
226
227         /* OK, create the local G-line */
228         Debug((DEBUG_DEBUG, "I am creating a local G-line here; target %s, "
229                "mask %s, operforce %s, action %s, expire %Tu, reason: %s",
230                target, mask, flags & GLINE_OPERFORCE ? "YES" : "NO",
231                action == GLINE_ACTIVATE ? "+" : "-", expire, reason));
232
233         return gline_add(cptr, sptr, mask, reason, expire, lastmod,
234                          lifetime, flags | GLINE_ACTIVE);
235       }
236     } else if (IsMe(acptr)) { /* destroying a local G-line */
237       if (!agline) /* G-line doesn't exist, so let's complain... */
238         return send_reply(sptr, ERR_NOSUCHGLINE, mask);
239
240       /* Let's now destroy the G-line */;
241       Debug((DEBUG_DEBUG, "I am destroying a local G-line here; target %s, "
242              "mask %s, operforce %s, action %s", target, mask,
243              flags & GLINE_OPERFORCE ? "YES" : "NO",
244              action == GLINE_ACTIVATE ? "+" : "-"));
245
246       return gline_destroy(cptr, sptr, agline);
247     }
248
249     /* OK, we've converted arguments; if it's not for us, forward */
250     /* UPDATE NOTE: Once all servers are updated to u2.10.12.11, the
251      * format string in this sendcmdto_one() may be updated to omit
252      * <lastmod> for GLINE_ACTIVATE and to omit <expire>, <lastmod>,
253      * and <reason> for GLINE_DEACTIVATE.
254      */
255     assert(!IsMe(acptr));
256
257     Debug((DEBUG_DEBUG, "I am forwarding a local G-line to a remote server; "
258            "target %s, mask %s, operforce %s, action %c, expire %Tu, "
259            "lastmod %Tu, reason: %s", target, mask,
260            flags & GLINE_OPERFORCE ? "YES" : "NO",
261            action == GLINE_ACTIVATE ? '+' :  '-', expire, CurrentTime,
262            reason));
263
264     sendcmdto_one(sptr, CMD_GLINE, acptr, "%C %s%c%s %Tu %Tu :%s",
265                   acptr, flags & GLINE_OPERFORCE ? "!" : "",
266                   action == GLINE_ACTIVATE ? '+' : '-', mask,
267                   expire - CurrentTime, CurrentTime, reason);
268
269     return 0; /* all done */
270   }
271
272   /* can't modify a G-line that doesn't exist, so remap to activate */
273   if (!agline && action == GLINE_MODIFY)
274     action = GLINE_ACTIVATE;
275
276   /* OK, let's figure out what other parameters we may have... */
277   switch (action) {
278   case GLINE_LOCAL_ACTIVATE: /* locally activating a G-line */
279   case GLINE_LOCAL_DEACTIVATE: /* locally deactivating a G-line */
280     if (!agline) /* no G-line to locally activate or deactivate? */
281       return send_reply(sptr, ERR_NOSUCHGLINE, mask);
282     break; /* no additional parameters to manipulate */
283
284   case GLINE_ACTIVATE: /* activating a G-line */
285   case GLINE_DEACTIVATE: /* deactivating a G-line */
286     /* in either of these cases, we have at least a lastmod parameter */
287     if (parc < 4)
288       return need_more_params(sptr, "GLINE");
289     else if (parc == 4) /* lastmod only form... */
290       lastmod = atoi(parv[3]);
291     /*FALLTHROUGH*/
292   case GLINE_MODIFY: /* modifying a G-line */
293     /* convert expire and lastmod, look for lifetime and reason */
294     if (parc > 4) { /* protect against fall-through from 4-param form */
295       expire = atoi(parv[3]); /* convert expiration and lastmod */
296       expire = abs_expire(expire);
297       lastmod = atoi(parv[4]);
298
299       flags |= GLINE_EXPIRE; /* we have an expiration time update */
300
301       if (parc > 6) { /* no question, have a lifetime and reason */
302         lifetime = atoi(parv[5]);
303         reason = parv[parc - 1];
304
305         flags |= GLINE_LIFETIME | GLINE_REASON;
306       } else if (parc == 6) { /* either a lifetime or a reason */
307         if (!agline || /* gline creation, has to be the reason */
308             /* trial-convert as lifetime, and if it doesn't fully convert,
309              * it must be the reason */
310             ((lifetime = strtoul(parv[5], &tmp, 10)) && !*tmp)) {
311           lifetime = 0;
312           reason = parv[5];
313
314           flags |= GLINE_REASON; /* have a reason update */
315         } else if (lifetime)
316           flags |= GLINE_LIFETIME; /* have a lifetime update */
317       }
318     }
319   }
320
321   if (!lastmod) /* must have a lastmod parameter by now */
322     return need_more_params(sptr, "GLINE");
323
324   Debug((DEBUG_DEBUG, "I have a global G-line I am acting upon now; "
325          "target %s, mask %s, operforce %s, action %s, expire %Tu, "
326          "lastmod %Tu, lifetime %Tu, reason: %s; gline %s!  (fields "
327          "present: %s %s %s)", target, mask,
328          flags & GLINE_OPERFORCE ? "YES" : "NO",
329          action == GLINE_ACTIVATE ? "+" :
330          (action == GLINE_DEACTIVATE ? "-" :
331           (action == GLINE_LOCAL_ACTIVATE ? ">" :
332            (action == GLINE_LOCAL_DEACTIVATE ? "<" : "(MODIFY)"))),
333          expire, lastmod, lifetime, reason,
334          agline ? "EXISTS" : "does not exist",
335          flags & GLINE_EXPIRE ? "expire" : "",
336          flags & GLINE_LIFETIME ? "lifetime" : "",
337          flags & GLINE_REASON ? "reason" : ""));
338
339   /* OK, at this point, we have converted all available parameters.
340    * Let's actually do the action!
341    */
342   if (agline)
343     return gline_modify(cptr, sptr, agline, action, reason, expire,
344                         lastmod, lifetime, flags);
345
346   assert(action != GLINE_LOCAL_ACTIVATE);
347   assert(action != GLINE_LOCAL_DEACTIVATE);
348   assert(action != GLINE_MODIFY);
349
350   if (!expire) { /* Cannot *add* a G-line we don't have, but try hard */
351     Debug((DEBUG_DEBUG, "Propagating G-line %s for G-line we don't have",
352            action == GLINE_ACTIVATE ? "activation" : "deactivation"));
353
354     /* propagate the G-line, even though we don't have it */
355     sendcmdto_serv_butone(sptr, CMD_GLINE, cptr, "* %c%s %Tu",
356                           action == GLINE_ACTIVATE ? '+' : '-',
357                           mask, lastmod);
358
359     return 0;
360   }
361
362   return gline_add(cptr, sptr, mask, reason, expire, lastmod, lifetime,
363                    flags | ((action == GLINE_ACTIVATE) ? GLINE_ACTIVE : 0));
364 }
365
366 /*
367  * mo_gline - oper message handler
368  *
369  * parv[0] = Sender prefix
370  * parv[1] = [[+|-]<G-line mask>]
371  *
372  * For other parameters, see doc/readme.gline.
373  */
374 int
375 mo_gline(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
376 {
377   struct Client *acptr = 0;
378   struct Gline *agline = 0;
379   unsigned int flags = 0;
380   enum GlineAction action = GLINE_MODIFY;
381   time_t expire = 0;
382   char *mask = parv[1], *target = 0, *reason = 0;
383
384   if (parc < 2)
385     return gline_list(sptr, 0);
386
387   if (*mask == '!') {
388     mask++;
389
390     if (HasPriv(sptr, PRIV_WIDE_GLINE))
391       flags |= GLINE_OPERFORCE;
392   }
393
394   switch (*mask) { /* handle +, -, <, and > */
395   case '+': /* activate the G-line */
396     action = GLINE_ACTIVATE;
397     mask++;
398     break;
399
400   case '-': /* deactivate the G-line */
401     action = GLINE_DEACTIVATE;
402     mask++;
403     break;
404
405   case '>': /* locally activate the G-line */
406     action = GLINE_LOCAL_ACTIVATE;
407     mask++;
408     break;
409
410   case '<': /* locally deactivate the G-line */
411     action = GLINE_LOCAL_DEACTIVATE;
412     mask++;
413     break;
414   }
415
416   /* OK, let's figure out the parameters... */
417   switch (action) {
418   case GLINE_MODIFY: /* no specific action on the G-line... */
419     if (parc == 2) /* user wants a listing of a specific G-line */
420       return gline_list(sptr, mask);
421     else if (parc < 4) /* must have target and expire, minimum */
422       return need_more_params(sptr, "GLINE");
423
424     target = parv[2]; /* get the target... */
425     expire = atoi(parv[3]) + CurrentTime; /* and the expiration */
426
427     flags |= GLINE_EXPIRE; /* remember that we got an expire time */
428
429     if (parc > 4) { /* also got a reason... */
430       reason = parv[parc - 1];
431       flags |= GLINE_REASON;
432     }
433
434     /* target is not global, interpolate action and require reason */
435     if (target[0] != '*' || target[1] != '\0') {
436       if (!reason) /* have to have a reason for this */
437         return need_more_params(sptr, "GLINE");
438
439       action = GLINE_ACTIVATE;
440     }
441     break;
442
443   case GLINE_LOCAL_ACTIVATE: /* locally activate a G-line */
444   case GLINE_LOCAL_DEACTIVATE: /* locally deactivate a G-line */
445     if (parc > 2) /* if target is available, pick it */
446       target = parv[2];
447     break;
448
449   case GLINE_ACTIVATE: /* activating/adding a G-line */
450   case GLINE_DEACTIVATE: /* deactivating/removing a G-line */
451     if (parc < 3)
452       return need_more_params(sptr, "GLINE");
453
454     if (parc > 3) {
455       /* get expiration and target */
456       expire = atoi(parv[parc - 2]) + CurrentTime;
457       reason = parv[parc - 1];
458
459       flags |= GLINE_EXPIRE | GLINE_REASON; /* remember that we got 'em */
460
461       if (parc > 4) /* also have a target! */
462         target = parv[2];
463     } else {
464       target = parv[2]; /* target has to be present, and has to be '*' */
465
466       if (target[0] != '*' || target[1] != '\0')
467         return need_more_params(sptr, "GLINE");
468     }
469     break;
470   }
471
472   /* Now let's figure out which is the target server */
473   if (!target) /* no target, has to be me... */
474     acptr = &me;
475   /* if it's not '*', look up the server */
476   else if ((target[0] != '*' || target[1] != '\0') &&
477            !(acptr = find_match_server(target)))
478     return send_reply(sptr, ERR_NOSUCHSERVER, target);
479
480   /* Now, is the G-line local or global? */
481   if (action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE ||
482       !acptr)
483     flags |= GLINE_GLOBAL;
484   else /* it's some form of local G-line */
485     flags |= GLINE_LOCAL;
486
487   /* If it's a local activate/deactivate and server isn't me, propagate it */
488   if ((action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE) &&
489       !IsMe(acptr)) {
490     /* check for permissions... */
491     if (!feature_bool(FEAT_CONFIG_OPERCMDS))
492       return send_reply(sptr, ERR_DISABLED, "GLINE");
493     else if (!HasPriv(sptr, PRIV_GLINE))
494       return send_reply(sptr, ERR_NOPRIVILEGES);
495
496     Debug((DEBUG_DEBUG, "I am forwarding a local change to a global gline "
497            "to a remote server; target %s, mask %s, operforce %s, action %c",
498            cli_name(acptr), mask, flags & GLINE_OPERFORCE ? "YES" : "NO",
499            action == GLINE_LOCAL_ACTIVATE ? '>' : '<'));
500
501     sendcmdto_one(sptr, CMD_GLINE, acptr, "%C %s%c%s", acptr,
502                   flags & GLINE_OPERFORCE ? "!" : "",
503                   action == GLINE_LOCAL_ACTIVATE ? '>' : '<', mask);
504
505     return 0; /* all done */
506   }
507
508   /* Next, try to find the G-line... */
509   if ((flags & GLINE_GLOBAL) || IsMe(acptr)) /* don't bother if it's not me! */
510     agline = gline_find(mask, flags | GLINE_ANY | GLINE_EXACT);
511
512   /* We now have all the pieces to tell us what we've got; let's put
513    * it all together and convert the rest of the arguments.
514    */
515
516   /* Handle the local G-lines first... */
517   if (flags & GLINE_LOCAL) {
518     assert(acptr);
519
520     /* normalize the action, first */
521     if (action == GLINE_LOCAL_ACTIVATE || action == GLINE_MODIFY)
522       action = GLINE_ACTIVATE;
523     else if (action == GLINE_LOCAL_DEACTIVATE)
524       action = GLINE_DEACTIVATE;
525
526     /* If it's not for us, forward */
527     /* UPDATE NOTE: Once all servers are updated to u2.10.12.11, the
528      * format string in this sendcmdto_one() may be updated to omit
529      * <lastmod> for GLINE_ACTIVATE and to omit <expire>, <lastmod>,
530      * and <reason> for GLINE_DEACTIVATE.
531      */
532
533     if (!IsMe(acptr)) {
534       /* check for permissions... */
535       if (!feature_bool(FEAT_CONFIG_OPERCMDS))
536         return send_reply(sptr, ERR_DISABLED, "GLINE");
537       else if (!HasPriv(sptr, PRIV_GLINE))
538         return send_reply(sptr, ERR_NOPRIVILEGES);
539
540       Debug((DEBUG_DEBUG, "I am forwarding a local G-line to a remote "
541              "server; target %s, mask %s, operforce %s, action %c, "
542              "expire %Tu, reason %s", target, mask,
543              flags & GLINE_OPERFORCE ? "YES" : "NO",
544              action == GLINE_ACTIVATE ? '+' : '-', expire, reason));
545
546       sendcmdto_one(sptr, CMD_GLINE, acptr, "%C %s%c%s %Tu %Tu :%s",
547                     acptr, flags & GLINE_OPERFORCE ? "!" : "",
548                     action == GLINE_ACTIVATE ? '+' : '-', mask,
549                     expire - CurrentTime, CurrentTime, reason);
550
551       return 0; /* all done */
552     }
553
554     /* check local G-line permissions... */
555     if (!HasPriv(sptr, PRIV_LOCAL_GLINE))
556       return send_reply(sptr, ERR_NOPRIVILEGES);
557
558     /* let's handle activation... */
559     if (action == GLINE_ACTIVATE) {
560       if (agline) /* G-line already exists, so let's ignore it... */
561         return 0;
562
563       /* OK, create the local G-line */
564       Debug((DEBUG_DEBUG, "I am creating a local G-line here; target %s, "
565              "mask %s, operforce %s, action  %s, expire %Tu, reason: %s",
566              target, mask, flags & GLINE_OPERFORCE ? "YES" : "NO",
567              action == GLINE_ACTIVATE ? "+" : "-", expire, reason));
568
569       return gline_add(cptr, sptr, mask, reason, expire, 0, 0,
570                        flags | GLINE_ACTIVE);
571     } else { /* OK, it's a deactivation/destruction */
572       if (!agline) /* G-line doesn't exist, so let's complain... */
573         return send_reply(sptr, ERR_NOSUCHGLINE, mask);
574
575       /* Let's now destroy the G-line */
576       Debug((DEBUG_DEBUG, "I am destroying a local G-line here; target %s, "
577              "mask %s, operforce %s, action %s", target, mask,
578              flags & GLINE_OPERFORCE ? "YES" : "NO",
579              action == GLINE_ACTIVATE ? "+" : "-"));
580
581       return gline_destroy(cptr, sptr, agline);
582     }
583   }
584
585   /* can't modify a G-line that doesn't exist... */
586   if (!agline &&
587       (action == GLINE_MODIFY || action == GLINE_LOCAL_ACTIVATE ||
588        action == GLINE_LOCAL_DEACTIVATE))
589     return send_reply(sptr, ERR_NOSUCHGLINE, mask);
590
591   /* check for G-line permissions... */
592   if (action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE) {
593     /* only need local privileges for locally-limited status changes */
594     if (!HasPriv(sptr, PRIV_LOCAL_GLINE))
595       return send_reply(sptr, ERR_NOPRIVILEGES);
596   } else { /* global privileges required */
597     if (!feature_bool(FEAT_CONFIG_OPERCMDS))
598       return send_reply(sptr, ERR_DISABLED, "GLINE");
599     else if (!HasPriv(sptr, PRIV_GLINE))
600       return send_reply(sptr, ERR_NOPRIVILEGES);
601   }
602
603   Debug((DEBUG_DEBUG, "I have a global G-line I am acting upon now; "
604          "target %s, mask %s, operforce %s, action %s, expire %Tu, "
605          "reason: %s; gline %s!  (fields present: %s %s)", target, 
606          mask, flags & GLINE_OPERFORCE ? "YES" : "NO",
607          action == GLINE_ACTIVATE ? "+" :
608          (action == GLINE_DEACTIVATE ? "-" :
609           (action == GLINE_LOCAL_ACTIVATE ? ">" :
610            (action == GLINE_LOCAL_DEACTIVATE ? "<" : "(MODIFY)"))),
611          expire, reason, agline ? "EXISTS" : "does not exist",
612          flags & GLINE_EXPIRE ? "expire" : "",
613          flags & GLINE_REASON ? "reason" : ""));
614
615   if (agline) /* modifying an existing G-line */
616     return gline_modify(cptr, sptr, agline, action, reason, expire,
617                         CurrentTime, 0, flags);
618
619   assert(action != GLINE_LOCAL_ACTIVATE);
620   assert(action != GLINE_LOCAL_DEACTIVATE);
621   assert(action != GLINE_MODIFY);
622
623   /* create a new G-line */
624   return gline_add(cptr, sptr, mask, reason, expire, CurrentTime, 0,
625                    flags | ((action == GLINE_ACTIVATE) ? GLINE_ACTIVE : 0));
626 }
627
628 /*
629  * m_gline - user message handler
630  *
631  * parv[0] = Sender prefix
632  * parv[1] = [<server name>]
633  *
634  */
635 int
636 m_gline(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
637 {
638   if (parc < 2)
639     return send_reply(sptr, ERR_NOSUCHGLINE, "");
640
641   return gline_list(sptr, parv[1]);
642 }