]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-mode.c
Rework cloaked hostname handling, implement "METADATA cloakhost"
[ngircd-alex.git] / src / ngircd / irc-mode.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12 #include "portab.h"
13
14 /**
15  * @file
16  * IRC commands for mode changes (like MODE, AWAY, etc.)
17  */
18
19 #include "imp.h"
20 #include <assert.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include "defines.h"
26 #include "conn.h"
27 #include "channel.h"
28 #include "irc-write.h"
29 #include "lists.h"
30 #include "log.h"
31 #include "parse.h"
32 #include "messages.h"
33 #include "conf.h"
34
35 #include "exp.h"
36 #include "irc-mode.h"
37
38
39 static bool Client_Mode PARAMS((CLIENT *Client, REQUEST *Req, CLIENT *Origin,
40                                 CLIENT *Target));
41 static bool Channel_Mode PARAMS((CLIENT *Client, REQUEST *Req, CLIENT *Origin,
42                                  CHANNEL *Channel));
43
44 static bool Add_To_List PARAMS((char what, CLIENT *Prefix, CLIENT *Client,
45                                 CHANNEL *Channel, const char *Pattern));
46 static bool Del_From_List PARAMS((char what, CLIENT *Prefix, CLIENT *Client,
47                                   CHANNEL *Channel, const char *Pattern));
48
49 static bool Send_ListChange PARAMS((const bool IsAdd, const char ModeChar,
50                                     CLIENT *Prefix, CLIENT *Client,
51                                     CHANNEL *Channel, const char *Mask));
52
53
54 /**
55  * Handler for the IRC "MODE" command.
56  *
57  * See RFC 2812 section 3.1.5 ("user mode message") and section 3.2.3
58  * ("channel mode message"), and RFC 2811 section 4 ("channel modes").
59  *
60  * @param Client        The client from which this command has been received.
61  * @param Req           Request structure with prefix and all parameters.
62  * @returns             CONNECTED or DISCONNECTED.
63  */
64 GLOBAL bool
65 IRC_MODE( CLIENT *Client, REQUEST *Req )
66 {
67         CLIENT *cl, *origin;
68         CHANNEL *chan;
69
70         assert(Client != NULL);
71         assert(Req != NULL);
72
73         /* No parameters? */
74         if (Req->argc < 1)
75                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
76                                           Client_ID(Client), Req->command);
77
78         /* Origin for answers */
79         if (Client_Type(Client) == CLIENT_SERVER) {
80                 origin = Client_Search(Req->prefix);
81                 if (!origin)
82                         return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
83                                                   Client_ID(Client),
84                                                   Req->prefix);
85         } else
86                 origin = Client;
87
88         /* Channel or user mode? */
89         cl = NULL; chan = NULL;
90         if (Client_IsValidNick(Req->argv[0]))
91                 cl = Client_Search(Req->argv[0]);
92         if (Channel_IsValidName(Req->argv[0]))
93                 chan = Channel_Search(Req->argv[0]);
94
95         if (cl)
96                 return Client_Mode(Client, Req, origin, cl);
97         if (chan)
98                 return Channel_Mode(Client, Req, origin, chan);
99
100         /* No target found! */
101         return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
102                         Client_ID(Client), Req->argv[0]);
103 } /* IRC_MODE */
104
105
106 /**
107  * Check if the "mode limit" for a client has been reached.
108  *
109  * This limit doesn't apply for servers or services!
110  *
111  * @param Client The client to check.
112  * @param Count The number of modes already handled.
113  * @return true if the limit has been reached.
114  */
115 static bool
116 Mode_Limit_Reached(CLIENT *Client, int Count)
117 {
118         if (Client_Type(Client) == CLIENT_SERVER
119             || Client_Type(Client) == CLIENT_SERVICE)
120                 return false;
121         if (Count < MAX_HNDL_MODES_ARG)
122                 return false;
123         return true;
124 }
125
126
127 /**
128  * Handle client mode requests
129  *
130  * @param Client        The client from which this command has been received.
131  * @param Req           Request structure with prefix and all parameters.
132  * @param Origin        The originator of the MODE command (prefix).
133  * @param Target        The target (client) of this MODE command.
134  * @returns             CONNECTED or DISCONNECTED.
135  */
136 static bool
137 Client_Mode( CLIENT *Client, REQUEST *Req, CLIENT *Origin, CLIENT *Target )
138 {
139         char the_modes[COMMAND_LEN], x[2], *mode_ptr;
140         bool ok, set;
141         bool send_RPL_HOSTHIDDEN_MSG = false;
142         int mode_arg;
143         size_t len;
144
145         /* Is the client allowed to request or change the modes? */
146         if (Client_Type(Client) == CLIENT_USER) {
147                 /* Users are only allowed to manipulate their own modes! */
148                 if (Target != Client)
149                         return IRC_WriteStrClient(Client,
150                                                   ERR_USERSDONTMATCH_MSG,
151                                                   Client_ID(Client));
152         }
153
154         /* Mode request: let's answer it :-) */
155         if (Req->argc == 1)
156                 return IRC_WriteStrClient(Origin, RPL_UMODEIS_MSG,
157                                           Client_ID(Target),
158                                           Client_Modes(Target));
159
160         mode_arg = 1;
161         mode_ptr = Req->argv[mode_arg];
162
163         /* Initial state: set or unset modes? */
164         if (*mode_ptr == '+') {
165                 set = true;
166                 strcpy(the_modes, "+");
167         } else if (*mode_ptr == '-') {
168                 set = false;
169                 strcpy(the_modes, "-");
170         } else
171                 return IRC_WriteStrClient(Origin, ERR_UMODEUNKNOWNFLAG_MSG,
172                                           Client_ID(Origin));
173
174         x[1] = '\0';
175         ok = CONNECTED;
176         while (mode_ptr) {
177                 mode_ptr++;
178                 if (!*mode_ptr) {
179                         /* Try next argument if there's any */
180                         mode_arg++;
181                         if (mode_arg < Req->argc)
182                                 mode_ptr = Req->argv[mode_arg];
183                         else
184                                 break;
185                 }
186
187                 switch(*mode_ptr) {
188                   case '+':
189                   case '-':
190                         if ((*mode_ptr == '+' && !set)
191                             || (*mode_ptr == '-' && set)) {
192                                 /* Action modifier ("+"/"-") must be changed */
193                                 len = strlen(the_modes) - 1;
194                                 if (the_modes[len] == '+'
195                                     || the_modes[len] == '-') {
196                                         /* Last character in the "result
197                                          * string" was an "action", so just
198                                          * overwrite it with the new action */
199                                         the_modes[len] = *mode_ptr;
200                                 } else {
201                                         /* Append new modifier character to
202                                          * the resulting mode string */
203                                         x[0] = *mode_ptr;
204                                         strlcat(the_modes, x,
205                                                 sizeof(the_modes));
206                                 }
207                                 if (*mode_ptr == '+')
208                                         set = true;
209                                 else
210                                         set = false;
211                         }
212                         continue;
213                 }
214
215                 /* Validate modes */
216                 x[0] = '\0';
217                 switch (*mode_ptr) {
218                 case 'b': /* Block private msgs */
219                 case 'C': /* Only messages from clients sharing a channel */
220                 case 'i': /* Invisible */
221                 case 's': /* Server messages */
222                 case 'w': /* Wallops messages */
223                         x[0] = *mode_ptr;
224                         break;
225                 case 'a': /* Away */
226                         if (Client_Type(Client) == CLIENT_SERVER) {
227                                 x[0] = 'a';
228                                 Client_SetAway(Origin, DEFAULT_AWAY_MSG);
229                         } else
230                                 ok = IRC_WriteStrClient(Origin,
231                                                         ERR_NOPRIVILEGES_MSG,
232                                                         Client_ID(Origin));
233                         break;
234                 case 'B': /* Bot */
235                         if (Client_HasMode(Client, 'r'))
236                                 ok = IRC_WriteStrClient(Origin,
237                                                         ERR_RESTRICTED_MSG,
238                                                         Client_ID(Origin));
239                         else
240                                 x[0] = 'B';
241                         break;
242                 case 'c': /* Receive connect notices
243                            * (only settable by IRC operators!) */
244                         if (!set || Client_Type(Client) == CLIENT_SERVER
245                             || Client_OperByMe(Origin))
246                                 x[0] = 'c';
247                         else
248                                 ok = IRC_WriteStrClient(Origin,
249                                                         ERR_NOPRIVILEGES_MSG,
250                                                         Client_ID(Origin));
251                         break;
252                 case 'o': /* IRC operator (only unsettable!) */
253                         if (!set || Client_Type(Client) == CLIENT_SERVER) {
254                                 Client_SetOperByMe(Target, false);
255                                 x[0] = 'o';
256                         } else
257                                 ok = IRC_WriteStrClient(Origin,
258                                                         ERR_NOPRIVILEGES_MSG,
259                                                         Client_ID(Origin));
260                         break;
261                 case 'q': /* KICK-protected user */
262                         if (!set || Client_Type(Client) == CLIENT_SERVER
263                             || Client_OperByMe(Origin))
264                                 x[0] = 'q';
265                         else
266                                 ok = IRC_WriteStrClient(Origin,
267                                                         ERR_NOPRIVILEGES_MSG,
268                                                         Client_ID(Origin));
269                         break;
270                 case 'r': /* Restricted (only settable) */
271                         if (set || Client_Type(Client) == CLIENT_SERVER)
272                                 x[0] = 'r';
273                         else
274                                 ok = IRC_WriteStrClient(Origin,
275                                                         ERR_RESTRICTED_MSG,
276                                                         Client_ID(Origin));
277                         break;
278                 case 'R': /* Registered (not [un]settable by clients) */
279                         if (Client_Type(Client) == CLIENT_SERVER)
280                                 x[0] = 'R';
281                         else
282                                 ok = IRC_WriteStrClient(Origin,
283                                                         ERR_NICKREGISTER_MSG,
284                                                         Client_ID(Origin));
285                         break;
286                 case 'x': /* Cloak hostname */
287                         if (Client_HasMode(Client, 'r'))
288                                 ok = IRC_WriteStrClient(Origin,
289                                                         ERR_RESTRICTED_MSG,
290                                                         Client_ID(Origin));
291                         else if (!set || Conf_CloakHostModeX[0]
292                                  || Client_Type(Client) == CLIENT_SERVER
293                                  || Client_OperByMe(Client)) {
294                                 x[0] = 'x';
295                                 send_RPL_HOSTHIDDEN_MSG = true;
296                         } else
297                                 ok = IRC_WriteStrClient(Origin,
298                                                         ERR_NOPRIVILEGES_MSG,
299                                                         Client_ID(Origin));
300                         break;
301                 default:
302                         if (Client_Type(Client) != CLIENT_SERVER) {
303                                 Log(LOG_DEBUG,
304                                     "Unknown mode \"%c%c\" from \"%s\"!?",
305                                     set ? '+' : '-', *mode_ptr,
306                                     Client_ID(Origin));
307                                 ok = IRC_WriteStrClient(Origin,
308                                                         ERR_UMODEUNKNOWNFLAG2_MSG,
309                                                         Client_ID(Origin),
310                                                         set ? '+' : '-',
311                                                         *mode_ptr);
312                                 x[0] = '\0';
313                         } else {
314                                 Log(LOG_DEBUG,
315                                     "Handling unknown mode \"%c%c\" from \"%s\" for \"%s\" ...",
316                                     set ? '+' : '-', *mode_ptr,
317                                     Client_ID(Origin), Client_ID(Target));
318                                 x[0] = *mode_ptr;
319                         }
320                 }
321
322                 if (!ok)
323                         break;
324
325                 /* Is there a valid mode change? */
326                 if (!x[0])
327                         continue;
328
329                 if (set) {
330                         if (Client_ModeAdd(Target, x[0]))
331                                 strlcat(the_modes, x, sizeof(the_modes));
332                 } else {
333                         if (Client_ModeDel(Target, x[0]))
334                                 strlcat(the_modes, x, sizeof(the_modes));
335                 }
336         }
337
338         /* Are there changed modes? */
339         if (the_modes[1]) {
340                 /* Remove needless action modifier characters */
341                 len = strlen(the_modes) - 1;
342                 if (the_modes[len] == '+' || the_modes[len] == '-')
343                         the_modes[len] = '\0';
344
345                 if (Client_Type(Client) == CLIENT_SERVER) {
346                         /* Forward modes to other servers */
347                         if (Client_Conn(Target) != NONE) {
348                                 /* Remote server (service?) changed modes
349                                  * for one of our clients. Inform it! */
350                                 IRC_WriteStrClientPrefix(Target, Origin,
351                                                          "MODE %s :%s",
352                                                          Client_ID(Target),
353                                                          the_modes);
354                         }
355                         IRC_WriteStrServersPrefix(Client, Origin,
356                                                   "MODE %s :%s",
357                                                   Client_ID(Target),
358                                                   the_modes);
359                 } else {
360                         /* Send reply to client and inform other servers */
361                         ok = IRC_WriteStrClientPrefix(Client, Origin,
362                                                       "MODE %s :%s",
363                                                       Client_ID(Target),
364                                                       the_modes);
365                         IRC_WriteStrServersPrefix(Client, Origin,
366                                                   "MODE %s :%s",
367                                                   Client_ID(Target),
368                                                   the_modes);
369                 }
370
371                 if (send_RPL_HOSTHIDDEN_MSG && Client_Conn(Target) > NONE) {
372                         /* A new (cloaked) hostname must be annoucned */
373                         IRC_WriteStrClientPrefix(Target, Origin,
374                                                  RPL_HOSTHIDDEN_MSG,
375                                                  Client_ID(Target),
376                                                  Client_HostnameDisplayed(Target));
377
378                 }
379
380                 LogDebug("%s \"%s\": Mode change, now \"%s\".",
381                          Client_TypeText(Target), Client_Mask(Target),
382                          Client_Modes(Target));
383         }
384
385         IRC_SetPenalty(Client, 1);
386         return ok;
387 } /* Client_Mode */
388
389
390 static bool
391 Channel_Mode_Answer_Request(CLIENT *Origin, CHANNEL *Channel)
392 {
393         char the_modes[COMMAND_LEN], the_args[COMMAND_LEN], argadd[CLIENT_PASS_LEN];
394         const char *mode_ptr;
395
396         /* Member or not? -- That's the question! */
397         if (!Channel_IsMemberOf(Channel, Origin))
398                 return IRC_WriteStrClient(Origin, RPL_CHANNELMODEIS_MSG,
399                         Client_ID(Origin), Channel_Name(Channel), Channel_Modes(Channel));
400
401         /* The sender is a member: generate extended reply */
402         strlcpy(the_modes, Channel_Modes(Channel), sizeof(the_modes));
403         mode_ptr = the_modes;
404         the_args[0] = '\0';
405
406         while(*mode_ptr) {
407                 switch(*mode_ptr) {
408                 case 'l':
409                         snprintf(argadd, sizeof(argadd), " %lu", Channel_MaxUsers(Channel));
410                         strlcat(the_args, argadd, sizeof(the_args));
411                         break;
412                 case 'k':
413                         strlcat(the_args, " ", sizeof(the_args));
414                         strlcat(the_args, Channel_Key(Channel), sizeof(the_args));
415                         break;
416                 }
417                 mode_ptr++;
418         }
419         if (the_args[0])
420                 strlcat(the_modes, the_args, sizeof(the_modes));
421
422         if (!IRC_WriteStrClient(Origin, RPL_CHANNELMODEIS_MSG,
423                                 Client_ID(Origin), Channel_Name(Channel),
424                                 the_modes))
425                 return DISCONNECTED;
426 #ifndef STRICT_RFC
427         if (!IRC_WriteStrClient(Origin, RPL_CREATIONTIME_MSG,
428                                   Client_ID(Origin), Channel_Name(Channel),
429                                   Channel_CreationTime(Channel)))
430                 return DISCONNECTED;
431 #endif
432         return CONNECTED;
433 }
434
435
436 /**
437  * Handle channel mode and channel-user mode changes
438  */
439 static bool
440 Channel_Mode(CLIENT *Client, REQUEST *Req, CLIENT *Origin, CHANNEL *Channel)
441 {
442         char the_modes[COMMAND_LEN], the_args[COMMAND_LEN], x[2],
443             argadd[CLIENT_PASS_LEN], *mode_ptr, *o_mode_ptr;
444         bool connected, set, skiponce, retval, use_servermode,
445              is_halfop, is_op, is_admin, is_owner, is_machine, is_oper;
446         int mode_arg, arg_arg, mode_arg_count = 0;
447         CLIENT *client;
448         long l;
449         size_t len;
450
451         is_halfop = is_op = is_admin = is_owner = is_machine = is_oper = false;
452
453         if (Channel_IsModeless(Channel))
454                 return IRC_WriteStrClient(Client, ERR_NOCHANMODES_MSG,
455                                 Client_ID(Client), Channel_Name(Channel));
456
457         /* Mode request: let's answer it :-) */
458         if (Req->argc <= 1)
459                 return Channel_Mode_Answer_Request(Origin, Channel);
460
461         /* Check if origin is oper and opers can use mode */
462         use_servermode = Conf_OperServerMode;
463         if(Client_OperByMe(Client) && Conf_OperCanMode) {
464                 is_oper = true;
465         }
466
467         /* Check if client is a server/service */
468         if(Client_Type(Client) == CLIENT_SERVER ||
469            Client_Type(Client) == CLIENT_SERVICE) {
470                 is_machine = true;
471         }
472
473         /* Check if client is member of channel or an oper or an server/service */
474         if(!Channel_IsMemberOf(Channel, Client) && !is_oper && !is_machine)
475                 return IRC_WriteStrClient(Origin, ERR_NOTONCHANNEL_MSG,
476                                           Client_ID(Origin),
477                                           Channel_Name(Channel));
478
479         mode_arg = 1;
480         mode_ptr = Req->argv[mode_arg];
481         if (Req->argc > mode_arg + 1)
482                 arg_arg = mode_arg + 1;
483         else
484                 arg_arg = -1;
485
486         /* Initial state: set or unset modes? */
487         skiponce = false;
488         switch (*mode_ptr) {
489         case '-':
490                 set = false;
491                 break;
492         case '+':
493                 set = true;
494                 break;
495         default:
496                 set = true;
497                 skiponce = true;
498         }
499
500         /* Prepare reply string */
501         strcpy(the_modes, set ? "+" : "-");
502         the_args[0] = '\0';
503
504         x[1] = '\0';
505         connected = CONNECTED;
506         while (mode_ptr) {
507                 if (!skiponce)
508                         mode_ptr++;
509                 if (!*mode_ptr) {
510                         /* Try next argument if there's any */
511                         if (arg_arg < 0)
512                                 break;
513                         if (arg_arg > mode_arg)
514                                 mode_arg = arg_arg;
515                         else
516                                 mode_arg++;
517
518                         if (mode_arg >= Req->argc)
519                                 break;
520                         mode_ptr = Req->argv[mode_arg];
521
522                         if (Req->argc > mode_arg + 1)
523                                 arg_arg = mode_arg + 1;
524                         else
525                                 arg_arg = -1;
526                 }
527                 skiponce = false;
528
529                 switch (*mode_ptr) {
530                 case '+':
531                 case '-':
532                         if (((*mode_ptr == '+') && !set)
533                             || ((*mode_ptr == '-') && set)) {
534                                 /* Action modifier ("+"/"-") must be changed ... */
535                                 len = strlen(the_modes) - 1;
536                                 if (the_modes[len] == '+' || the_modes[len] == '-') {
537                                         /* Adjust last action modifier in result */
538                                         the_modes[len] = *mode_ptr;
539                                 } else {
540                                         /* Append modifier character to result string */
541                                         x[0] = *mode_ptr;
542                                         strlcat(the_modes, x, sizeof(the_modes));
543                                 }
544                                 set = *mode_ptr == '+';
545                         }
546                         continue;
547                 }
548
549                 /* Are there arguments left? */
550                 if (arg_arg >= Req->argc)
551                         arg_arg = -1;
552
553                 if(!is_machine) {
554                         o_mode_ptr = Channel_UserModes(Channel, Client);
555                         while( *o_mode_ptr ) {
556                                 if ( *o_mode_ptr == 'q')
557                                         is_owner = true;
558                                 if ( *o_mode_ptr == 'a')
559                                         is_admin = true;
560                                 if ( *o_mode_ptr == 'o')
561                                         is_op = true;
562                                 if ( *o_mode_ptr == 'h')
563                                         is_halfop = true;
564                                 o_mode_ptr++;
565                         }
566                 }
567
568                 /* Validate modes */
569                 x[0] = '\0';
570                 argadd[0] = '\0';
571                 client = NULL;
572                 switch (*mode_ptr) {
573                 /* --- Channel modes --- */
574                 case 'R': /* Registered users only */
575                 case 's': /* Secret channel */
576                 case 'z': /* Secure connections only */
577                         if(!is_oper && !is_machine && !is_owner &&
578                            !is_admin && !is_op) {
579                                 connected = IRC_WriteStrClient(Origin,
580                                         ERR_CHANOPRIVSNEEDED_MSG,
581                                         Client_ID(Origin), Channel_Name(Channel));
582                                 goto chan_exit;
583                         }
584                 case 'i': /* Invite only */
585                 case 'V': /* Invite disallow */
586                 case 'M': /* Only identified nicks can write */
587                 case 'm': /* Moderated */
588                 case 'n': /* Only members can write */
589                 case 'Q': /* No kicks */
590                 case 't': /* Topic locked */
591                         if(is_oper || is_machine || is_owner ||
592                            is_admin || is_op || is_halfop)
593                                 x[0] = *mode_ptr;
594                         else
595                                 connected = IRC_WriteStrClient(Origin,
596                                         ERR_CHANOPRIVSNEEDED_MSG,
597                                         Client_ID(Origin), Channel_Name(Channel));
598                         break;
599                 case 'k': /* Channel key */
600                         if (Mode_Limit_Reached(Client, mode_arg_count++))
601                                 goto chan_exit;
602                         if (!set) {
603                                 if (is_oper || is_machine || is_owner ||
604                                     is_admin || is_op || is_halfop)
605                                         x[0] = *mode_ptr;
606                                 else
607                                         connected = IRC_WriteStrClient(Origin,
608                                                 ERR_CHANOPRIVSNEEDED_MSG,
609                                                 Client_ID(Origin),
610                                                 Channel_Name(Channel));
611                                 break;
612                         }
613                         if (arg_arg > mode_arg) {
614                                 if (is_oper || is_machine || is_owner ||
615                                     is_admin || is_op || is_halfop) {
616                                         Channel_ModeDel(Channel, 'k');
617                                         Channel_SetKey(Channel,
618                                                        Req->argv[arg_arg]);
619                                         strlcpy(argadd, Channel_Key(Channel),
620                                                 sizeof(argadd));
621                                         x[0] = *mode_ptr;
622                                 } else {
623                                         connected = IRC_WriteStrClient(Origin,
624                                                 ERR_CHANOPRIVSNEEDED_MSG,
625                                                 Client_ID(Origin),
626                                                 Channel_Name(Channel));
627                                 }
628                                 Req->argv[arg_arg][0] = '\0';
629                                 arg_arg++;
630                         } else {
631                                 connected = IRC_WriteStrClient(Origin,
632                                         ERR_NEEDMOREPARAMS_MSG,
633                                         Client_ID(Origin), Req->command);
634                                 goto chan_exit;
635                         }
636                         break;
637                 case 'l': /* Member limit */
638                         if (Mode_Limit_Reached(Client, mode_arg_count++))
639                                 goto chan_exit;
640                         if (!set) {
641                                 if (is_oper || is_machine || is_owner ||
642                                     is_admin || is_op || is_halfop)
643                                         x[0] = *mode_ptr;
644                                 else
645                                         connected = IRC_WriteStrClient(Origin,
646                                                 ERR_CHANOPRIVSNEEDED_MSG,
647                                                 Client_ID(Origin),
648                                                 Channel_Name(Channel));
649                                 break;
650                         }
651                         if (arg_arg > mode_arg) {
652                                 if (is_oper || is_machine || is_owner ||
653                                     is_admin || is_op || is_halfop) {
654                                         l = atol(Req->argv[arg_arg]);
655                                         if (l > 0 && l < 0xFFFF) {
656                                                 Channel_ModeDel(Channel, 'l');
657                                                 Channel_SetMaxUsers(Channel, l);
658                                                 snprintf(argadd, sizeof(argadd),
659                                                          "%ld", l);
660                                                 x[0] = *mode_ptr;
661                                         }
662                                 } else {
663                                         connected = IRC_WriteStrClient(Origin,
664                                                 ERR_CHANOPRIVSNEEDED_MSG,
665                                                 Client_ID(Origin),
666                                                 Channel_Name(Channel));
667                                 }
668                                 Req->argv[arg_arg][0] = '\0';
669                                 arg_arg++;
670                         } else {
671                                 connected = IRC_WriteStrClient(Origin,
672                                         ERR_NEEDMOREPARAMS_MSG,
673                                         Client_ID(Origin), Req->command);
674                                 goto chan_exit;
675                         }
676                         break;
677                 case 'O': /* IRC operators only */
678                         if (set) {
679                                 /* Only IRC operators are allowed to
680                                  * set the 'O' channel mode! */
681                                 if(is_oper || is_machine)
682                                         x[0] = 'O';
683                                 else
684                                         connected = IRC_WriteStrClient(Origin,
685                                                 ERR_NOPRIVILEGES_MSG,
686                                                 Client_ID(Origin));
687                         } else if(is_oper || is_machine || is_owner ||
688                                   is_admin || is_op)
689                                 x[0] = 'O';
690                         else
691                                 connected = IRC_WriteStrClient(Origin,
692                                         ERR_CHANOPRIVSNEEDED_MSG,
693                                         Client_ID(Origin),
694                                         Channel_Name(Channel));
695                         break;
696                 case 'P': /* Persistent channel */
697                         if (set) {
698                                 /* Only IRC operators are allowed to
699                                  * set the 'P' channel mode! */
700                                 if(is_oper || is_machine)
701                                         x[0] = 'P';
702                                 else
703                                         connected = IRC_WriteStrClient(Origin,
704                                                 ERR_NOPRIVILEGES_MSG,
705                                                 Client_ID(Origin));
706                         } else if(is_oper || is_machine || is_owner ||
707                                   is_admin || is_op)
708                                 x[0] = 'P';
709                         else
710                                 connected = IRC_WriteStrClient(Origin,
711                                         ERR_CHANOPRIVSNEEDED_MSG,
712                                         Client_ID(Origin),
713                                         Channel_Name(Channel));
714                         break;
715                 /* --- Channel user modes --- */
716                 case 'q': /* Owner */
717                 case 'a': /* Channel admin */
718                         if(!is_oper && !is_machine && !is_owner && !is_admin) {
719                                 connected = IRC_WriteStrClient(Origin,
720                                         ERR_CHANOPPRIVTOOLOW_MSG,
721                                         Client_ID(Origin),
722                                         Channel_Name(Channel));
723                                 goto chan_exit;
724                         }
725                 case 'o': /* Channel operator */
726                         if(!is_oper && !is_machine && !is_owner &&
727                            !is_admin && !is_op) {
728                                 connected = IRC_WriteStrClient(Origin,
729                                         ERR_CHANOPRIVSNEEDED_MSG,
730                                         Client_ID(Origin),
731                                         Channel_Name(Channel));
732                                 goto chan_exit;
733                         }
734                 case 'h': /* Half Op */
735                         if(!is_oper && !is_machine && !is_owner &&
736                            !is_admin && !is_op) {
737                                 connected = IRC_WriteStrClient(Origin,
738                                         ERR_CHANOPRIVSNEEDED_MSG,
739                                         Client_ID(Origin),
740                                         Channel_Name(Channel));
741                                 goto chan_exit;
742                         }
743                 case 'v': /* Voice */
744                         if (arg_arg > mode_arg) {
745                                 if (is_oper || is_machine || is_owner ||
746                                     is_admin || is_op || is_halfop) {
747                                         client = Client_Search(Req->argv[arg_arg]);
748                                         if (client)
749                                                 x[0] = *mode_ptr;
750                                         else
751                                                 connected = IRC_WriteStrClient(Origin,
752                                                         ERR_NOSUCHNICK_MSG,
753                                                         Client_ID(Origin),
754                                                         Req->argv[arg_arg]);
755                                 } else {
756                                         connected = IRC_WriteStrClient(Origin,
757                                                 ERR_CHANOPRIVSNEEDED_MSG,
758                                                 Client_ID(Origin),
759                                                 Channel_Name(Channel));
760                                 }
761                                 Req->argv[arg_arg][0] = '\0';
762                                 arg_arg++;
763                         } else {
764                                 connected = IRC_WriteStrClient(Origin,
765                                         ERR_NEEDMOREPARAMS_MSG,
766                                         Client_ID(Origin), Req->command);
767                                 goto chan_exit;
768                         }
769                         break;
770                 /* --- Channel lists --- */
771                 case 'I': /* Invite lists */
772                 case 'b': /* Ban lists */
773                 case 'e': /* Channel exception lists */
774                         if (Mode_Limit_Reached(Client, mode_arg_count++))
775                                 goto chan_exit;
776                         if (arg_arg > mode_arg) {
777                                 /* modify list */
778                                 if (is_oper || is_machine || is_owner ||
779                                     is_admin || is_op || is_halfop) {
780                                         connected = set
781                                            ? Add_To_List(*mode_ptr, Origin,
782                                                 Client, Channel,
783                                                 Req->argv[arg_arg])
784                                            : Del_From_List(*mode_ptr, Origin,
785                                                 Client, Channel,
786                                                 Req->argv[arg_arg]);
787                                 } else {
788                                         connected = IRC_WriteStrClient(Origin,
789                                                 ERR_CHANOPRIVSNEEDED_MSG,
790                                                 Client_ID(Origin),
791                                                 Channel_Name(Channel));
792                                 }
793                                 Req->argv[arg_arg][0] = '\0';
794                                 arg_arg++;
795                         } else {
796                                 switch (*mode_ptr) {
797                                 case 'I':
798                                         Channel_ShowInvites(Origin, Channel);
799                                         break;
800                                 case 'b':
801                                         Channel_ShowBans(Origin, Channel);
802                                         break;
803                                 case 'e':
804                                         Channel_ShowExcepts(Origin, Channel);
805                                         break;
806                                 }
807                         }
808                         break;
809                 default:
810                         if (Client_Type(Client) != CLIENT_SERVER) {
811                                 Log(LOG_DEBUG,
812                                     "Unknown mode \"%c%c\" from \"%s\" on %s!?",
813                                     set ? '+' : '-', *mode_ptr,
814                                     Client_ID(Origin), Channel_Name(Channel));
815                                 connected = IRC_WriteStrClient(Origin,
816                                         ERR_UNKNOWNMODE_MSG,
817                                         Client_ID(Origin), *mode_ptr,
818                                         Channel_Name(Channel));
819                                 x[0] = '\0';
820                         } else {
821                                 Log(LOG_DEBUG,
822                                     "Handling unknown mode \"%c%c\" from \"%s\" on %s ...",
823                                     set ? '+' : '-', *mode_ptr,
824                                     Client_ID(Origin), Channel_Name(Channel));
825                                 x[0] = *mode_ptr;
826                         }
827                 }
828
829                 if (!connected)
830                         break;
831
832                 /* Is there a valid mode change? */
833                 if (!x[0])
834                         continue;
835
836                 /* Validate target client */
837                 if (client && (!Channel_IsMemberOf(Channel, client))) {
838                         if (!IRC_WriteStrClient
839                             (Origin, ERR_USERNOTINCHANNEL_MSG,
840                              Client_ID(Origin), Client_ID(client),
841                              Channel_Name(Channel)))
842                                 break;
843
844                         continue;
845                 }
846
847                 if (client) {
848                         /* Channel-User-Mode */
849                         retval = set
850                                ? Channel_UserModeAdd(Channel, client, x[0])
851                                : Channel_UserModeDel(Channel, client, x[0]);
852                         if (retval) {
853                                 strlcat(the_args, " ", sizeof(the_args));
854                                 strlcat(the_args, Client_ID(client),
855                                         sizeof(the_args));
856                                 strlcat(the_modes, x, sizeof(the_modes));
857                                 LogDebug
858                                     ("User \"%s\": Mode change on %s, now \"%s\"",
859                                      Client_Mask(client), Channel_Name(Channel),
860                                      Channel_UserModes(Channel, client));
861                         }
862                 } else {
863                         /* Channel-Mode */
864                         retval = set
865                                ? Channel_ModeAdd(Channel, x[0])
866                                : Channel_ModeDel(Channel, x[0]);
867                         if (retval) {
868                                 strlcat(the_modes, x, sizeof(the_modes));
869                                 LogDebug("Channel %s: Mode change, now \"%s\".",
870                                          Channel_Name(Channel),
871                                          Channel_Modes(Channel));
872                         }
873                 }
874
875                 /* Are there additional arguments to add? */
876                 if (argadd[0]) {
877                         strlcat(the_args, " ", sizeof(the_args));
878                         strlcat(the_args, argadd, sizeof(the_args));
879                 }
880         }
881
882       chan_exit:
883         /* Are there changed modes? */
884         if (the_modes[1]) {
885                 /* Clean up mode string */
886                 len = strlen(the_modes) - 1;
887                 if ((the_modes[len] == '+') || (the_modes[len] == '-'))
888                         the_modes[len] = '\0';
889
890                 if (Client_Type(Client) == CLIENT_SERVER) {
891                         /* MODE requests for local channels from other servers
892                          * are definitely invalid! */
893                         if (Channel_IsLocal(Channel)) {
894                                 Log(LOG_ALERT, "Got remote MODE command for local channel!? Ignored.");
895                                 return CONNECTED;
896                         }
897
898                         /* Forward mode changes to channel users and all the
899                          * other remote servers: */
900                         IRC_WriteStrServersPrefix(Client, Origin,
901                                 "MODE %s %s%s", Channel_Name(Channel),
902                                 the_modes, the_args);
903                         IRC_WriteStrChannelPrefix(Client, Channel, Origin,
904                                 false, "MODE %s %s%s", Channel_Name(Channel),
905                                 the_modes, the_args);
906                 } else {
907                         if (use_servermode)
908                                 Origin = Client_ThisServer();
909                         /* Send reply to client and inform other servers and channel users */
910                         connected = IRC_WriteStrClientPrefix(Client, Origin,
911                                         "MODE %s %s%s", Channel_Name(Channel),
912                                         the_modes, the_args);
913                         /* Only forward requests for non-local channels */
914                         if (!Channel_IsLocal(Channel))
915                                 IRC_WriteStrServersPrefix(Client, Origin,
916                                         "MODE %s %s%s", Channel_Name(Channel),
917                                         the_modes, the_args);
918                         IRC_WriteStrChannelPrefix(Client, Channel, Origin,
919                                 false, "MODE %s %s%s", Channel_Name(Channel),
920                                 the_modes, the_args);
921                 }
922         }
923
924         IRC_SetPenalty(Client, 1);
925         return connected;
926 } /* Channel_Mode */
927
928
929 GLOBAL bool
930 IRC_AWAY( CLIENT *Client, REQUEST *Req )
931 {
932         assert( Client != NULL );
933         assert( Req != NULL );
934
935         if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
936
937         if(( Req->argc == 1 ) && (Req->argv[0][0] ))
938         {
939                 Client_SetAway( Client, Req->argv[0] );
940                 Client_ModeAdd( Client, 'a' );
941                 IRC_WriteStrServersPrefix( Client, Client, "MODE %s :+a", Client_ID( Client ));
942                 return IRC_WriteStrClient( Client, RPL_NOWAWAY_MSG, Client_ID( Client ));
943         }
944         else
945         {
946                 Client_ModeDel( Client, 'a' );
947                 IRC_WriteStrServersPrefix( Client, Client, "MODE %s :-a", Client_ID( Client ));
948                 return IRC_WriteStrClient( Client, RPL_UNAWAY_MSG, Client_ID( Client ));
949         }
950 } /* IRC_AWAY */
951
952
953 /**
954  * Add entries to channel invite, ban and exception lists.
955  *
956  * @param what Can be 'I' for invite, 'b' for ban, and 'e' for exception list.
957  * @param Prefix The originator of the command.
958  * @param Client The sender of the command.
959  * @param Channel The channel of which the list should be modified.
960  * @param Pattern The pattern to add to the list.
961  * @return CONNECTED or DISCONNECTED.
962  */
963 static bool
964 Add_To_List(char what, CLIENT *Prefix, CLIENT *Client, CHANNEL *Channel,
965             const char *Pattern)
966 {
967         const char *mask;
968         struct list_head *list = NULL;
969         long int current_count;
970
971         assert(Client != NULL);
972         assert(Channel != NULL);
973         assert(Pattern != NULL);
974         assert(what == 'I' || what == 'b' || what == 'e');
975
976         mask = Lists_MakeMask(Pattern);
977         current_count = Lists_Count(Channel_GetListInvites(Channel))
978                         + Lists_Count(Channel_GetListExcepts(Channel))
979                         + Lists_Count(Channel_GetListBans(Channel));
980
981         switch(what) {
982                 case 'I':
983                         list = Channel_GetListInvites(Channel);
984                         break;
985                 case 'b':
986                         list = Channel_GetListBans(Channel);
987                         break;
988                 case 'e':
989                         list = Channel_GetListExcepts(Channel);
990                         break;
991         }
992
993         if (Lists_CheckDupeMask(list, mask))
994                 return CONNECTED;
995         if (Client_Type(Client) == CLIENT_USER &&
996             current_count >= MAX_HNDL_CHANNEL_LISTS)
997                 return IRC_WriteStrClient(Client, ERR_LISTFULL_MSG,
998                                           Client_ID(Client),
999                                           Channel_Name(Channel), mask,
1000                                           MAX_HNDL_CHANNEL_LISTS);
1001
1002         switch (what) {
1003                 case 'I':
1004                         if (!Channel_AddInvite(Channel, mask, false))
1005                                 return CONNECTED;
1006                         break;
1007                 case 'b':
1008                         if (!Channel_AddBan(Channel, mask))
1009                                 return CONNECTED;
1010                         break;
1011                 case 'e':
1012                         if (!Channel_AddExcept(Channel, mask))
1013                                 return CONNECTED;
1014                         break;
1015         }
1016         return Send_ListChange(true, what, Prefix, Client, Channel, mask);
1017 }
1018
1019
1020 /**
1021  * Delete entries from channel invite, ban and exeption lists.
1022  *
1023  * @param what Can be 'I' for invite, 'b' for ban, and 'e' for exception list.
1024  * @param Prefix The originator of the command.
1025  * @param Client The sender of the command.
1026  * @param Channel The channel of which the list should be modified.
1027  * @param Pattern The pattern to add to the list.
1028  * @return CONNECTED or DISCONNECTED.
1029  */
1030 static bool
1031 Del_From_List(char what, CLIENT *Prefix, CLIENT *Client, CHANNEL *Channel,
1032               const char *Pattern)
1033 {
1034         const char *mask;
1035         struct list_head *list = NULL;
1036
1037         assert(Client != NULL);
1038         assert(Channel != NULL);
1039         assert(Pattern != NULL);
1040         assert(what == 'I' || what == 'b' || what == 'e');
1041
1042         mask = Lists_MakeMask(Pattern);
1043
1044         switch (what) {
1045                 case 'I':
1046                         list = Channel_GetListInvites(Channel);
1047                         break;
1048                 case 'b':
1049                         list = Channel_GetListBans(Channel);
1050                         break;
1051                 case 'e':
1052                         list = Channel_GetListExcepts(Channel);
1053                         break;
1054         }
1055
1056         if (!Lists_CheckDupeMask(list, mask))
1057                 return CONNECTED;
1058         Lists_Del(list, mask);
1059
1060         return Send_ListChange(false, what, Prefix, Client, Channel, mask);
1061 }
1062
1063
1064 /**
1065  * Send information about changed channel invite/ban/exception lists to clients.
1066  *
1067  * @param IsAdd true if the list item has been added, false otherwise.
1068  * @param ModeChar The mode to use (e. g. 'b' or 'I')
1069  * @param Prefix The originator of the mode list change.
1070  * @param Client The sender of the command.
1071  * @param Channel The channel of which the list has been modified.
1072  * @param Mask The mask which has been added or removed.
1073  * @return CONNECTED or DISCONNECTED.
1074  */
1075 static bool
1076 Send_ListChange(const bool IsAdd, const char ModeChar, CLIENT *Prefix,
1077                 CLIENT *Client, CHANNEL *Channel, const char *Mask)
1078 {
1079         bool ok = true;
1080
1081         /* Send confirmation to the client */
1082         if (Client_Type(Client) == CLIENT_USER)
1083                 ok = IRC_WriteStrClientPrefix(Client, Prefix, "MODE %s %c%c %s",
1084                                               Channel_Name(Channel),
1085                                               IsAdd ? '+' : '-',
1086                                               ModeChar, Mask);
1087
1088         /* to other servers */
1089         IRC_WriteStrServersPrefix(Client, Prefix, "MODE %s %c%c %s",
1090                                   Channel_Name(Channel), IsAdd ? '+' : '-',
1091                                   ModeChar, Mask);
1092
1093         /* and local users in channel */
1094         IRC_WriteStrChannelPrefix(Client, Channel, Prefix, false,
1095                                   "MODE %s %c%c %s", Channel_Name(Channel),
1096                                   IsAdd ? '+' : '-', ModeChar, Mask );
1097
1098         return ok;
1099 } /* Send_ListChange */
1100
1101
1102 /* -eof- */