cd930a9da2047a8fe80f1f51aa360b5bf64bb1fd
[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   return gline_add(cptr, sptr, mask, reason, expire, lastmod, lifetime,
351                    flags | ((action == GLINE_ACTIVATE) ? GLINE_ACTIVE : 0));
352 }
353
354 /*
355  * mo_gline - oper message handler
356  *
357  * parv[0] = Sender prefix
358  * parv[1] = [[+|-]<G-line mask>]
359  *
360  * For other parameters, see doc/readme.gline.
361  */
362 int
363 mo_gline(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
364 {
365   struct Client *acptr = 0;
366   struct Gline *agline = 0;
367   unsigned int flags = 0;
368   enum GlineAction action = GLINE_MODIFY;
369   time_t expire = 0;
370   char *mask = parv[1], *target = 0, *reason = 0;
371
372   if (parc < 2)
373     return gline_list(sptr, 0);
374
375   if (*mask == '!') {
376     mask++;
377
378     if (HasPriv(sptr, PRIV_WIDE_GLINE))
379       flags |= GLINE_OPERFORCE;
380   }
381
382   switch (*mask) { /* handle +, -, <, and > */
383   case '+': /* activate the G-line */
384     action = GLINE_ACTIVATE;
385     mask++;
386     break;
387
388   case '-': /* deactivate the G-line */
389     action = GLINE_DEACTIVATE;
390     mask++;
391     break;
392
393   case '>': /* locally activate the G-line */
394     action = GLINE_LOCAL_ACTIVATE;
395     mask++;
396     break;
397
398   case '<': /* locally deactivate the G-line */
399     action = GLINE_LOCAL_DEACTIVATE;
400     mask++;
401     break;
402   }
403
404   /* OK, let's figure out the parameters... */
405   switch (action) {
406   case GLINE_MODIFY: /* no specific action on the G-line... */
407     if (parc == 2) /* user wants a listing of a specific G-line */
408       return gline_list(sptr, mask);
409     else if (parc < 4) /* must have target and expire, minimum */
410       return need_more_params(sptr, "GLINE");
411
412     target = parv[2]; /* get the target... */
413     expire = atoi(parv[3]) + CurrentTime; /* and the expiration */
414
415     flags |= GLINE_EXPIRE; /* remember that we got an expire time */
416
417     if (parc > 4) { /* also got a reason... */
418       reason = parv[parc - 1];
419       flags |= GLINE_REASON;
420     }
421
422     /* target is not global, interpolate action and require reason */
423     if (target[0] != '*' || target[1] != '\0') {
424       if (!reason) /* have to have a reason for this */
425         return need_more_params(sptr, "GLINE");
426
427       action = GLINE_ACTIVATE;
428     }
429     break;
430
431   case GLINE_LOCAL_ACTIVATE: /* locally activate a G-line */
432   case GLINE_LOCAL_DEACTIVATE: /* locally deactivate a G-line */
433     if (parc > 2) /* if target is available, pick it */
434       target = parv[2];
435     break;
436
437   case GLINE_ACTIVATE: /* activating/adding a G-line */
438   case GLINE_DEACTIVATE: /* deactivating/removing a G-line */
439     if (parc < 3)
440       return need_more_params(sptr, "GLINE");
441
442     if (parc > 3) {
443       /* get expiration and target */
444       expire = atoi(parv[parc - 2]) + CurrentTime;
445       reason = parv[parc - 1];
446
447       flags |= GLINE_EXPIRE | GLINE_REASON; /* remember that we got 'em */
448
449       if (parc > 4) /* also have a target! */
450         target = parv[2];
451     } else {
452       target = parv[2]; /* target has to be present, and has to be '*' */
453
454       if (target[0] != '*' || target[1] != '\0')
455         return need_more_params(sptr, "GLINE");
456     }
457     break;
458   }
459
460   /* Now let's figure out which is the target server */
461   if (!target) /* no target, has to be me... */
462     acptr = &me;
463   /* if it's not '*', look up the server */
464   else if ((target[0] != '*' || target[1] != '\0') &&
465            !(acptr = find_match_server(target)))
466     return send_reply(sptr, ERR_NOSUCHSERVER, target);
467
468   /* Now, is the G-line local or global? */
469   if (action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE ||
470       !acptr)
471     flags |= GLINE_GLOBAL;
472   else /* it's some form of local G-line */
473     flags |= GLINE_LOCAL;
474
475   /* If it's a local activate/deactivate and server isn't me, propagate it */
476   if ((action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE) &&
477       !IsMe(acptr)) {
478     /* check for permissions... */
479     if (!feature_bool(FEAT_CONFIG_OPERCMDS))
480       return send_reply(sptr, ERR_DISABLED, "GLINE");
481     else if (!HasPriv(sptr, PRIV_GLINE))
482       return send_reply(sptr, ERR_NOPRIVILEGES);
483
484     Debug((DEBUG_DEBUG, "I am forwarding a local change to a global gline "
485            "to a remote server; target %s, mask %s, operforce %s, action %c",
486            cli_name(acptr), mask, flags & GLINE_OPERFORCE ? "YES" : "NO",
487            action == GLINE_LOCAL_ACTIVATE ? '>' : '<'));
488
489     sendcmdto_one(sptr, CMD_GLINE, acptr, "%C %s%c%s", acptr,
490                   flags & GLINE_OPERFORCE ? "!" : "",
491                   action == GLINE_LOCAL_ACTIVATE ? '>' : '<', mask);
492
493     return 0; /* all done */
494   }
495
496   /* Next, try to find the G-line... */
497   if ((flags & GLINE_GLOBAL) || IsMe(acptr)) /* don't bother if it's not me! */
498     agline = gline_find(mask, flags | GLINE_ANY | GLINE_EXACT);
499
500   /* We now have all the pieces to tell us what we've got; let's put
501    * it all together and convert the rest of the arguments.
502    */
503
504   /* Handle the local G-lines first... */
505   if (flags & GLINE_LOCAL) {
506     assert(acptr);
507
508     /* normalize the action, first */
509     if (action == GLINE_LOCAL_ACTIVATE || action == GLINE_MODIFY)
510       action = GLINE_ACTIVATE;
511     else if (action == GLINE_LOCAL_DEACTIVATE)
512       action = GLINE_DEACTIVATE;
513
514     /* If it's not for us, forward */
515     /* UPDATE NOTE: Once all servers are updated to u2.10.12.11, the
516      * format string in this sendcmdto_one() may be updated to omit
517      * <lastmod> for GLINE_ACTIVATE and to omit <expire>, <lastmod>,
518      * and <reason> for GLINE_DEACTIVATE.
519      */
520
521     if (!IsMe(acptr)) {
522       /* check for permissions... */
523       if (!feature_bool(FEAT_CONFIG_OPERCMDS))
524         return send_reply(sptr, ERR_DISABLED, "GLINE");
525       else if (!HasPriv(sptr, PRIV_GLINE))
526         return send_reply(sptr, ERR_NOPRIVILEGES);
527
528       Debug((DEBUG_DEBUG, "I am forwarding a local G-line to a remote "
529              "server; target %s, mask %s, operforce %s, action %c, "
530              "expire %Tu, reason %s", target, mask,
531              flags & GLINE_OPERFORCE ? "YES" : "NO",
532              action == GLINE_ACTIVATE ? '+' : '-', expire, reason));
533
534       sendcmdto_one(sptr, CMD_GLINE, acptr, "%C %s%c%s %Tu %Tu :%s",
535                     acptr, flags & GLINE_OPERFORCE ? "!" : "",
536                     action == GLINE_ACTIVATE ? '+' : '-', mask,
537                     expire - CurrentTime, CurrentTime, reason);
538
539       return 0; /* all done */
540     }
541
542     /* check local G-line permissions... */
543     if (!HasPriv(sptr, PRIV_LOCAL_GLINE))
544       return send_reply(sptr, ERR_NOPRIVILEGES);
545
546     /* let's handle activation... */
547     if (action == GLINE_ACTIVATE) {
548       if (agline) /* G-line already exists, so let's ignore it... */
549         return 0;
550
551       /* OK, create the local G-line */
552       Debug((DEBUG_DEBUG, "I am creating a local G-line here; target %s, "
553              "mask %s, operforce %s, action  %s, expire %Tu, reason: %s",
554              target, mask, flags & GLINE_OPERFORCE ? "YES" : "NO",
555              action == GLINE_ACTIVATE ? "+" : "-", expire, reason));
556
557       return gline_add(cptr, sptr, mask, reason, expire, 0, 0,
558                        flags | GLINE_ACTIVE);
559     } else { /* OK, it's a deactivation/destruction */
560       if (!agline) /* G-line doesn't exist, so let's complain... */
561         return send_reply(sptr, ERR_NOSUCHGLINE, mask);
562
563       /* Let's now destroy the G-line */
564       Debug((DEBUG_DEBUG, "I am destroying a local G-line here; target %s, "
565              "mask %s, operforce %s, action %s", target, mask,
566              flags & GLINE_OPERFORCE ? "YES" : "NO",
567              action == GLINE_ACTIVATE ? "+" : "-"));
568
569       return gline_destroy(cptr, sptr, agline);
570     }
571   }
572
573   /* can't modify a G-line that doesn't exist... */
574   if (!agline &&
575       (action == GLINE_MODIFY || action == GLINE_LOCAL_ACTIVATE ||
576        action == GLINE_LOCAL_DEACTIVATE))
577     return send_reply(sptr, ERR_NOSUCHGLINE, mask);
578
579   /* check for G-line permissions... */
580   if (action == GLINE_LOCAL_ACTIVATE || action == GLINE_LOCAL_DEACTIVATE) {
581     /* only need local privileges for locally-limited status changes */
582     if (!HasPriv(sptr, PRIV_LOCAL_GLINE))
583       return send_reply(sptr, ERR_NOPRIVILEGES);
584   } else { /* global privileges required */
585     if (!feature_bool(FEAT_CONFIG_OPERCMDS))
586       return send_reply(sptr, ERR_DISABLED, "GLINE");
587     else if (!HasPriv(sptr, PRIV_GLINE))
588       return send_reply(sptr, ERR_NOPRIVILEGES);
589   }
590
591   Debug((DEBUG_DEBUG, "I have a global G-line I am acting upon now; "
592          "target %s, mask %s, operforce %s, action %s, expire %Tu, "
593          "reason: %s; gline %s!  (fields present: %s %s)", target, 
594          mask, flags & GLINE_OPERFORCE ? "YES" : "NO",
595          action == GLINE_ACTIVATE ? "+" :
596          (action == GLINE_DEACTIVATE ? "-" :
597           (action == GLINE_LOCAL_ACTIVATE ? ">" :
598            (action == GLINE_LOCAL_DEACTIVATE ? "<" : "(MODIFY)"))),
599          expire, reason, agline ? "EXISTS" : "does not exist",
600          flags & GLINE_EXPIRE ? "expire" : "",
601          flags & GLINE_REASON ? "reason" : ""));
602
603   if (agline) /* modifying an existing G-line */
604     return gline_modify(cptr, sptr, agline, action, reason, expire,
605                         CurrentTime, 0, flags);
606
607   assert(action != GLINE_LOCAL_ACTIVATE);
608   assert(action != GLINE_LOCAL_DEACTIVATE);
609   assert(action != GLINE_MODIFY);
610
611   /* create a new G-line */
612   return gline_add(cptr, sptr, mask, reason, expire, CurrentTime, 0,
613                    flags | ((action == GLINE_ACTIVATE) ? GLINE_ACTIVE : 0));
614 }
615
616 /*
617  * m_gline - user message handler
618  *
619  * parv[0] = Sender prefix
620  * parv[1] = [<server name>]
621  *
622  */
623 int
624 m_gline(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
625 {
626   if (parc < 2)
627     return send_reply(sptr, ERR_NOSUCHGLINE, "");
628
629   return gline_list(sptr, parv[1]);
630 }