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