]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-mode.c
New numeric 329: get channel creation time on "MODE #chan" commands
[ngircd-alex.git] / src / ngircd / irc-mode.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
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  * IRC commands for mode changes (MODE, AWAY, ...)
12  */
13
14
15 #include "portab.h"
16
17 #include "imp.h"
18 #include <assert.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22
23 #include "defines.h"
24 #include "conn.h"
25 #include "channel.h"
26 #include "irc-write.h"
27 #include "lists.h"
28 #include "log.h"
29 #include "parse.h"
30 #include "messages.h"
31 #include "conf.h"
32
33 #include "exp.h"
34 #include "irc-mode.h"
35
36
37 static bool Client_Mode PARAMS(( CLIENT *Client, REQUEST *Req, CLIENT *Origin,
38         CLIENT *Target ));
39 static bool Channel_Mode PARAMS(( CLIENT *Client, REQUEST *Req, CLIENT *Origin,
40         CHANNEL *Channel ));
41
42 static bool Add_Ban_Invite PARAMS((int what, CLIENT *Prefix, CLIENT *Client,
43         CHANNEL *Channel, const char *Pattern));
44 static bool Del_Ban_Invite PARAMS((int what, CLIENT *Prefix, CLIENT *Client,
45         CHANNEL *Channel, const char *Pattern));
46
47 static bool Send_ListChange PARAMS((const char *Mode, CLIENT *Prefix,
48         CLIENT *Client, CHANNEL *Channel, const char *Mask));
49
50
51 GLOBAL bool
52 IRC_MODE( CLIENT *Client, REQUEST *Req )
53 {
54         CLIENT *cl, *origin;
55         CHANNEL *chan;
56
57         assert( Client != NULL );
58         assert( Req != NULL );
59
60         /* No parameters? */
61         if( Req->argc < 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
62
63         /* Origin for answers */
64         if( Client_Type( Client ) == CLIENT_SERVER )
65         {
66                 origin = Client_Search( Req->prefix );
67                 if( ! origin ) return IRC_WriteStrClient( Client, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->prefix );
68         }
69         else origin = Client;
70
71         /* Channel or user mode? */
72         cl = NULL; chan = NULL;
73         if (Client_IsValidNick(Req->argv[0]))
74                 cl = Client_Search(Req->argv[0]);
75         if (Channel_IsValidName(Req->argv[0]))
76                 chan = Channel_Search(Req->argv[0]);
77
78         if (cl)
79                 return Client_Mode(Client, Req, origin, cl);
80         if (chan)
81                 return Channel_Mode(Client, Req, origin, chan);
82
83         /* No target found! */
84         return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
85                         Client_ID(Client), Req->argv[0]);
86 } /* IRC_MODE */
87
88
89 static bool
90 Client_Mode( CLIENT *Client, REQUEST *Req, CLIENT *Origin, CLIENT *Target )
91 {
92         /* Handle client mode requests */
93
94         char the_modes[COMMAND_LEN], x[2], *mode_ptr;
95         bool ok, set;
96         int mode_arg;
97         size_t len;
98
99         /* Is the client allowed to request or change the modes? */
100         if( Client_Type( Client ) == CLIENT_USER )
101         {
102                 /* Users are only allowed to manipulate their own modes! */
103                 if( Target != Client ) return IRC_WriteStrClient( Client, ERR_USERSDONTMATCH_MSG, Client_ID( Client ));
104         }
105
106         /* Mode request: let's answer it :-) */
107         if( Req->argc == 1 ) return IRC_WriteStrClient( Origin, RPL_UMODEIS_MSG, Client_ID( Origin ), Client_Modes( Target ));
108
109         mode_arg = 1;
110         mode_ptr = Req->argv[mode_arg];
111
112         /* Initial state: set or unset modes? */
113         if( *mode_ptr == '+' ) set = true;
114         else if( *mode_ptr == '-' ) set = false;
115         else return IRC_WriteStrClient( Origin, ERR_UMODEUNKNOWNFLAG_MSG, Client_ID( Origin ));
116
117         /* Prepare reply string */
118         if( set ) strcpy( the_modes, "+" );
119         else strcpy( the_modes, "-" );
120
121         x[1] = '\0';
122         ok = CONNECTED;
123         while( mode_ptr )
124         {
125                 mode_ptr++;
126                 if( ! *mode_ptr )
127                 {
128                         /* Try next argument if there's any */
129                         mode_arg++;
130                         if( mode_arg < Req->argc ) mode_ptr = Req->argv[mode_arg];
131                         else break;
132                 }
133                 
134                 switch( *mode_ptr )
135                 {
136                         case '+':
137                         case '-':
138                                 if((( *mode_ptr == '+' ) && ( ! set )) || (( *mode_ptr == '-' ) && ( set )))
139                                 {
140                                         /* Action modifier ("+"/"-") must be changed ... */
141                                         len = strlen( the_modes ) - 1;
142                                         if(( the_modes[len] == '+' ) || ( the_modes[len] == '-' ))
143                                         {
144                                                 /* Adjust last action modifier in result */
145                                                 the_modes[len] = *mode_ptr;
146                                         }
147                                         else
148                                         {
149                                                 /* Append modifier character to result string */
150                                                 x[0] = *mode_ptr;
151                                                 strlcat( the_modes, x, sizeof( the_modes ));
152                                         }
153                                         if( *mode_ptr == '+' ) set = true;
154                                         else set = false;
155                                 }
156                                 continue;
157                 }
158                 
159                 /* Validate modes */
160                 x[0] = '\0';
161                 switch( *mode_ptr )
162                 {
163                         case 'i': /* Invisible */
164                         case 's': /* Server messages */
165                         case 'w': /* Wallops messages */
166                                 x[0] = *mode_ptr;
167                                 break;
168
169                         case 'a': /* Away */
170                                 if( Client_Type( Client ) == CLIENT_SERVER )
171                                 {
172                                         x[0] = 'a';
173                                         Client_SetAway( Origin, DEFAULT_AWAY_MSG );
174                                 }
175                                 else ok = IRC_WriteStrClient( Origin, ERR_NOPRIVILEGES_MSG, Client_ID( Origin ));
176                                 break;
177
178                         case 'c': /* Receive connect notices
179                                    * (only settable by IRC operators!) */
180                                 if(!set || Client_OperByMe(Origin)
181                                    || Client_Type(Client) == CLIENT_SERVER)
182                                         x[0] = 'c';
183                                 else
184                                         ok = IRC_WriteStrClient(Origin,
185                                                         ERR_NOPRIVILEGES_MSG,
186                                                         Client_ID(Origin));
187                                 break;
188
189                         case 'o': /* IRC operator (only unsettable!) */
190                                 if(( ! set ) || ( Client_Type( Client ) == CLIENT_SERVER ))
191                                 {
192                                         Client_SetOperByMe( Target, false );
193                                         x[0] = 'o';
194                                 }
195                                 else ok = IRC_WriteStrClient( Origin, ERR_NOPRIVILEGES_MSG, Client_ID( Origin ));
196                                 break;
197
198                         case 'r': /* Restricted (only settable) */
199                                 if(( set ) || ( Client_Type( Client ) == CLIENT_SERVER )) x[0] = 'r';
200                                 else ok = IRC_WriteStrClient( Origin, ERR_RESTRICTED_MSG, Client_ID( Origin ));
201                                 break;
202
203                         case 'x': /* Cloak hostname */
204                                 if (Client_HasMode(Client, 'r'))
205                                         IRC_WriteStrClient(Origin,
206                                                            ERR_RESTRICTED_MSG,
207                                                            Client_ID(Origin));
208                                 else
209                                         x[0] = 'x';
210                                 break;
211
212                         default:
213                                 Log( LOG_DEBUG, "Unknown mode \"%c%c\" from \"%s\"!?", set ? '+' : '-', *mode_ptr, Client_ID( Origin ));
214                                 if( Client_Type( Client ) != CLIENT_SERVER ) ok = IRC_WriteStrClient( Origin, ERR_UMODEUNKNOWNFLAG2_MSG, Client_ID( Origin ), set ? '+' : '-', *mode_ptr );
215                                 x[0] = '\0';
216                                 goto client_exit;
217                 }
218                 if( ! ok ) break;
219
220                 /* Is there a valid mode change? */
221                 if( ! x[0] ) continue;
222
223                 if( set )
224                 {
225                         /* Set mode */
226                         if( Client_ModeAdd( Target, x[0] )) strlcat( the_modes, x, sizeof( the_modes ));
227
228                 }
229                 else
230                 {
231                         /* Unset mode */
232                         if( Client_ModeDel( Target, x[0] )) strlcat( the_modes, x, sizeof( the_modes ));
233                 }               
234         }
235 client_exit:
236         
237         /* Are there changed modes? */
238         if( the_modes[1] )
239         {
240                 /* Remoce needless action modifier characters */
241                 len = strlen( the_modes ) - 1;
242                 if(( the_modes[len] == '+' ) || ( the_modes[len] == '-' )) the_modes[len] = '\0';
243
244                 if( Client_Type( Client ) == CLIENT_SERVER )
245                 {
246                         /* Forward modes to other servers */
247                         IRC_WriteStrServersPrefix( Client, Origin, "MODE %s :%s", Client_ID( Target ), the_modes );
248                 }
249                 else
250                 {
251                         /* Send reply to client and inform other servers */
252                         ok = IRC_WriteStrClientPrefix( Client, Origin, "MODE %s :%s", Client_ID( Target ), the_modes );
253                         IRC_WriteStrServersPrefix( Client, Origin, "MODE %s :%s", Client_ID( Target ), the_modes );
254                 }
255                 LogDebug("%s \"%s\": Mode change, now \"%s\".",
256                          Client_TypeText(Target), Client_Mask(Target),
257                          Client_Modes(Target));
258         }
259         
260         IRC_SetPenalty( Client, 1 );    
261         return ok;
262 } /* Client_Mode */
263
264
265 static bool
266 Channel_Mode_Answer_Request(CLIENT *Origin, CHANNEL *Channel)
267 {
268         char the_modes[COMMAND_LEN], the_args[COMMAND_LEN], argadd[CLIENT_PASS_LEN];
269         const char *mode_ptr;
270
271         /* Member or not? -- That's the question! */
272         if (!Channel_IsMemberOf(Channel, Origin))
273                 return IRC_WriteStrClient(Origin, RPL_CHANNELMODEIS_MSG,
274                         Client_ID(Origin), Channel_Name(Channel), Channel_Modes(Channel));
275
276         /* The sender is a member: generate extended reply */
277         strlcpy(the_modes, Channel_Modes(Channel), sizeof(the_modes));
278         mode_ptr = the_modes;
279         the_args[0] = '\0';
280
281         while(*mode_ptr) {
282                 switch(*mode_ptr) {
283                 case 'l':
284                         snprintf(argadd, sizeof(argadd), " %lu", Channel_MaxUsers(Channel));
285                         strlcat(the_args, argadd, sizeof(the_args));
286                         break;
287                 case 'k':
288                         strlcat(the_args, " ", sizeof(the_args));
289                         strlcat(the_args, Channel_Key(Channel), sizeof(the_args));
290                         break;
291                 }
292                 mode_ptr++;
293         }
294         if (the_args[0])
295                 strlcat(the_modes, the_args, sizeof(the_modes));
296
297         if (!IRC_WriteStrClient(Origin, RPL_CHANNELMODEIS_MSG,
298                                 Client_ID(Origin), Channel_Name(Channel),
299                                 the_modes))
300                 return DISCONNECTED;
301 #ifndef STRICT_RFC
302         if (!IRC_WriteStrClient(Origin, RPL_CREATIONTIME_MSG,
303                                   Client_ID(Origin), Channel_Name(Channel),
304                                   Channel_CreationTime(Channel)))
305                 return DISCONNECTED;
306 #endif
307         return CONNECTED;
308 }
309
310
311 /**
312  * Handle channel mode and channel-user mode changes
313  */
314 static bool
315 Channel_Mode(CLIENT *Client, REQUEST *Req, CLIENT *Origin, CHANNEL *Channel)
316 {
317         char the_modes[COMMAND_LEN], the_args[COMMAND_LEN], x[2],
318             argadd[CLIENT_PASS_LEN], *mode_ptr;
319         bool connected, set, skiponce, retval, onchannel;
320         bool modeok = true, use_servermode = false;
321         int mode_arg, arg_arg;
322         CLIENT *client;
323         long l;
324         size_t len;
325
326         if (Channel_IsModeless(Channel))
327                 return IRC_WriteStrClient(Client, ERR_NOCHANMODES_MSG,
328                                 Client_ID(Client), Channel_Name(Channel));
329
330         /* Mode request: let's answer it :-) */
331         if (Req->argc <= 1)
332                 return Channel_Mode_Answer_Request(Origin, Channel);
333
334         /* Is the user allowed to change modes? */
335         if (Client_Type(Client) == CLIENT_USER) {
336                 /* Is the originating user on that channel? */
337                 onchannel = Channel_IsMemberOf(Channel, Origin);
338                 modeok = false;
339                 /* channel operator? */
340                 if (onchannel &&
341                     strchr(Channel_UserModes(Channel, Origin), 'o')) {
342                         modeok = true;
343                 } else if (Conf_OperCanMode) {
344                         /* IRC-Operators can use MODE as well */
345                         if (Client_OperByMe(Origin)) {
346                                 modeok = true;
347                                 if (Conf_OperServerMode)
348                                         use_servermode = true; /* Change Origin to Server */
349                         }
350                 }
351
352                 if (!onchannel && !modeok)
353                         return IRC_WriteStrClient(Origin, ERR_NOTONCHANNEL_MSG,
354                                 Client_ID(Origin), Channel_Name(Channel));
355         }
356
357         mode_arg = 1;
358         mode_ptr = Req->argv[mode_arg];
359         if (Req->argc > mode_arg + 1)
360                 arg_arg = mode_arg + 1;
361         else
362                 arg_arg = -1;
363
364         /* Initial state: set or unset modes? */
365         skiponce = false;
366         switch (*mode_ptr) {
367         case '-':
368                 set = false;
369                 break;
370         case '+':
371                 set = true;
372                 break;
373         default:
374                 set = true;
375                 skiponce = true;
376         }
377
378         /* Prepare reply string */
379         strcpy(the_modes, set ? "+" : "-");
380         the_args[0] = '\0';
381
382         x[1] = '\0';
383         connected = CONNECTED;
384         while (mode_ptr) {
385                 if (!skiponce)
386                         mode_ptr++;
387                 if (!*mode_ptr) {
388                         /* Try next argument if there's any */
389                         if (arg_arg > mode_arg)
390                                 mode_arg = arg_arg;
391                         else
392                                 mode_arg++;
393
394                         if (mode_arg >= Req->argc)
395                                 break;
396                         mode_ptr = Req->argv[mode_arg];
397
398                         if (Req->argc > mode_arg + 1)
399                                 arg_arg = mode_arg + 1;
400                         else
401                                 arg_arg = -1;
402                 }
403                 skiponce = false;
404
405                 switch (*mode_ptr) {
406                 case '+':
407                 case '-':
408                         if (((*mode_ptr == '+') && !set)
409                             || ((*mode_ptr == '-') && set)) {
410                                 /* Action modifier ("+"/"-") must be changed ... */
411                                 len = strlen(the_modes) - 1;
412                                 if (the_modes[len] == '+' || the_modes[len] == '-') {
413                                         /* Adjust last action modifier in result */
414                                         the_modes[len] = *mode_ptr;
415                                 } else {
416                                         /* Append modifier character to result string */
417                                         x[0] = *mode_ptr;
418                                         strlcat(the_modes, x, sizeof(the_modes));
419                                 }
420                                 set = *mode_ptr == '+';
421                         }
422                         continue;
423                 }
424
425                 /* Are there arguments left? */
426                 if (arg_arg >= Req->argc)
427                         arg_arg = -1;
428
429                 /* Validate modes */
430                 x[0] = '\0';
431                 argadd[0] = '\0';
432                 client = NULL;
433                 switch (*mode_ptr) {
434                 /* --- Channel modes --- */
435                 case 'i': /* Invite only */
436                 case 'm': /* Moderated */
437                 case 'n': /* Only members can write */
438                 case 's': /* Secret channel */
439                 case 't': /* Topic locked */
440                 case 'z': /* Secure connections only */
441                         if (modeok)
442                                 x[0] = *mode_ptr;
443                         else
444                                 connected = IRC_WriteStrClient(Origin,
445                                         ERR_CHANOPRIVSNEEDED_MSG,
446                                         Client_ID(Origin), Channel_Name(Channel));
447                         break;
448                 case 'k': /* Channel key */
449                         if (!set) {
450                                 if (modeok)
451                                         x[0] = *mode_ptr;
452                                 else
453                                         connected = IRC_WriteStrClient(Origin,
454                                                 ERR_CHANOPRIVSNEEDED_MSG,
455                                                 Client_ID(Origin),
456                                                 Channel_Name(Channel));
457                                 break;
458                         }
459                         if (arg_arg > mode_arg) {
460                                 if (modeok) {
461                                         Channel_ModeDel(Channel, 'k');
462                                         Channel_SetKey(Channel,
463                                                        Req->argv[arg_arg]);
464                                         strlcpy(argadd, Channel_Key(Channel),
465                                                 sizeof(argadd));
466                                         x[0] = *mode_ptr;
467                                 } else {
468                                         connected = IRC_WriteStrClient(Origin,
469                                                 ERR_CHANOPRIVSNEEDED_MSG,
470                                                 Client_ID(Origin),
471                                                 Channel_Name(Channel));
472                                 }
473                                 Req->argv[arg_arg][0] = '\0';
474                                 arg_arg++;
475                         } else {
476                                 connected = IRC_WriteStrClient(Origin,
477                                         ERR_NEEDMOREPARAMS_MSG,
478                                         Client_ID(Origin), Req->command);
479                                 goto chan_exit;
480                         }
481                         break;
482                 case 'l': /* Member limit */
483                         if (!set) {
484                                 if (modeok)
485                                         x[0] = *mode_ptr;
486                                 else
487                                         connected = IRC_WriteStrClient(Origin,
488                                                 ERR_CHANOPRIVSNEEDED_MSG,
489                                                 Client_ID(Origin),
490                                                 Channel_Name(Channel));
491                                 break;
492                         }
493                         if (arg_arg > mode_arg) {
494                                 if (modeok) {
495                                         l = atol(Req->argv[arg_arg]);
496                                         if (l > 0 && l < 0xFFFF) {
497                                                 Channel_ModeDel(Channel, 'l');
498                                                 Channel_SetMaxUsers(Channel, l);
499                                                 snprintf(argadd, sizeof(argadd),
500                                                          "%ld", l);
501                                                 x[0] = *mode_ptr;
502                                         }
503                                 } else {
504                                         connected = IRC_WriteStrClient(Origin,
505                                                 ERR_CHANOPRIVSNEEDED_MSG,
506                                                 Client_ID(Origin),
507                                                 Channel_Name(Channel));
508                                 }
509                                 Req->argv[arg_arg][0] = '\0';
510                                 arg_arg++;
511                         } else {
512                                 connected = IRC_WriteStrClient(Origin,
513                                         ERR_NEEDMOREPARAMS_MSG,
514                                         Client_ID(Origin), Req->command);
515                                 goto chan_exit;
516                         }
517                         break;
518                 case 'P': /* Persistent channel */
519                         if (modeok) {
520                                 /* Only IRC operators are allowed to
521                                  * set the 'P' channel mode! */
522                                 if (set && !(Client_OperByMe(Client)
523                                     || Client_Type(Client) == CLIENT_SERVER))
524                                         connected = IRC_WriteStrClient(Origin,
525                                                 ERR_NOPRIVILEGES_MSG,
526                                                 Client_ID(Origin));
527                                 else
528                                         x[0] = 'P';
529                         } else
530                                 connected = IRC_WriteStrClient(Origin,
531                                         ERR_CHANOPRIVSNEEDED_MSG,
532                                         Client_ID(Origin),
533                                         Channel_Name(Channel));
534                         break;
535                 /* --- Channel user modes --- */
536                 case 'o': /* Channel operator */
537                 case 'v': /* Voice */
538                         if (arg_arg > mode_arg) {
539                                 if (modeok) {
540                                         client = Client_Search(Req->argv[arg_arg]);
541                                         if (client)
542                                                 x[0] = *mode_ptr;
543                                         else
544                                                 connected = IRC_WriteStrClient(Client,
545                                                         ERR_NOSUCHNICK_MSG,
546                                                         Client_ID(Client),
547                                                         Req->argv[arg_arg]);
548                                 } else {
549                                         connected = IRC_WriteStrClient(Origin,
550                                                 ERR_CHANOPRIVSNEEDED_MSG,
551                                                 Client_ID(Origin),
552                                                 Channel_Name(Channel));
553                                 }
554                                 Req->argv[arg_arg][0] = '\0';
555                                 arg_arg++;
556                         } else {
557                                 connected = IRC_WriteStrClient(Origin,
558                                         ERR_NEEDMOREPARAMS_MSG,
559                                         Client_ID(Origin), Req->command);
560                                 goto chan_exit;
561                         }
562                         break;
563                 /* --- Channel lists --- */
564                 case 'I': /* Invite lists */
565                 case 'b': /* Ban lists */
566                         if (arg_arg > mode_arg) {
567                                 /* modify list */
568                                 if (modeok) {
569                                         connected = set
570                                            ? Add_Ban_Invite(*mode_ptr, Origin,
571                                                 Client, Channel,
572                                                 Req->argv[arg_arg])
573                                            : Del_Ban_Invite(*mode_ptr, Origin,
574                                                 Client, Channel,
575                                                 Req->argv[arg_arg]);
576                                 } else {
577                                         connected = IRC_WriteStrClient(Origin,
578                                                 ERR_CHANOPRIVSNEEDED_MSG,
579                                                 Client_ID(Origin),
580                                                 Channel_Name(Channel));
581                                 }
582                                 Req->argv[arg_arg][0] = '\0';
583                                 arg_arg++;
584                         } else {
585                                 if (*mode_ptr == 'I')
586                                         Channel_ShowInvites(Origin, Channel);
587                                 else
588                                         Channel_ShowBans(Origin, Channel);
589                         }
590                         break;
591                 default:
592                         Log(LOG_DEBUG,
593                             "Unknown mode \"%c%c\" from \"%s\" on %s!?",
594                             set ? '+' : '-', *mode_ptr, Client_ID(Origin),
595                             Channel_Name(Channel));
596                         if (Client_Type(Client) != CLIENT_SERVER)
597                                 connected = IRC_WriteStrClient(Origin,
598                                         ERR_UMODEUNKNOWNFLAG2_MSG,
599                                         Client_ID(Origin),
600                                         set ? '+' : '-', *mode_ptr);
601                         x[0] = '\0';
602                         goto chan_exit;
603                 }       /* switch() */
604
605                 if (!connected)
606                         break;
607
608                 /* Is there a valid mode change? */
609                 if (!x[0])
610                         continue;
611
612                 /* Validate target client */
613                 if (client && (!Channel_IsMemberOf(Channel, client))) {
614                         if (!IRC_WriteStrClient
615                             (Origin, ERR_USERNOTINCHANNEL_MSG,
616                              Client_ID(Origin), Client_ID(client),
617                              Channel_Name(Channel)))
618                                 break;
619
620                         continue;
621                 }
622
623                 if (client) {
624                         /* Channel-User-Mode */
625                         retval = set
626                                ? Channel_UserModeAdd(Channel, client, x[0])
627                                : Channel_UserModeDel(Channel, client, x[0]);
628                         if (retval) {
629                                 strlcat(the_args, " ", sizeof(the_args));
630                                 strlcat(the_args, Client_ID(client),
631                                         sizeof(the_args));
632                                 strlcat(the_modes, x, sizeof(the_modes));
633                                 LogDebug
634                                     ("User \"%s\": Mode change on %s, now \"%s\"",
635                                      Client_Mask(client), Channel_Name(Channel),
636                                      Channel_UserModes(Channel, client));
637                         }
638                 } else {
639                         /* Channel-Mode */
640                         retval = set
641                                ? Channel_ModeAdd(Channel, x[0])
642                                : Channel_ModeDel(Channel, x[0]);
643                         if (retval) {
644                                 strlcat(the_modes, x, sizeof(the_modes));
645                                 LogDebug("Channel %s: Mode change, now \"%s\".",
646                                          Channel_Name(Channel),
647                                          Channel_Modes(Channel));
648                         }
649                 }
650
651                 /* Are there additional arguments to add? */
652                 if (argadd[0]) {
653                         strlcat(the_args, " ", sizeof(the_args));
654                         strlcat(the_args, argadd, sizeof(the_args));
655                 }
656         }
657
658       chan_exit:
659         /* Are there changed modes? */
660         if (the_modes[1]) {
661                 /* Clean up mode string */
662                 len = strlen(the_modes) - 1;
663                 if ((the_modes[len] == '+') || (the_modes[len] == '-'))
664                         the_modes[len] = '\0';
665
666                 if (Client_Type(Client) == CLIENT_SERVER) {
667                         /* MODE requests for local channels from other servers
668                          * are definitely invalid! */
669                         if (Channel_IsLocal(Channel)) {
670                                 Log(LOG_ALERT, "Got remote MODE command for local channel!? Ignored.");
671                                 return CONNECTED;
672                         }
673
674                         /* Forward mode changes to channel users and all the
675                          * other remote servers: */
676                         IRC_WriteStrServersPrefix(Client, Origin,
677                                 "MODE %s %s%s", Channel_Name(Channel),
678                                 the_modes, the_args);
679                         IRC_WriteStrChannelPrefix(Client, Channel, Origin,
680                                 false, "MODE %s %s%s", Channel_Name(Channel),
681                                 the_modes, the_args);
682                 } else {
683                         if (use_servermode)
684                                 Origin = Client_ThisServer();
685                         /* Send reply to client and inform other servers and channel users */
686                         connected = IRC_WriteStrClientPrefix(Client, Origin,
687                                         "MODE %s %s%s", Channel_Name(Channel),
688                                         the_modes, the_args);
689                         /* Only forward requests for non-local channels */
690                         if (!Channel_IsLocal(Channel))
691                                 IRC_WriteStrServersPrefix(Client, Origin,
692                                         "MODE %s %s%s", Channel_Name(Channel),
693                                         the_modes, the_args);
694                         IRC_WriteStrChannelPrefix(Client, Channel, Origin,
695                                 false, "MODE %s %s%s", Channel_Name(Channel),
696                                 the_modes, the_args);
697                 }
698         }
699
700         IRC_SetPenalty(Client, 1);
701         return connected;
702 } /* Channel_Mode */
703
704
705 GLOBAL bool
706 IRC_AWAY( CLIENT *Client, REQUEST *Req )
707 {
708         assert( Client != NULL );
709         assert( Req != NULL );
710
711         if( Req->argc > 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
712
713         if(( Req->argc == 1 ) && (Req->argv[0][0] ))
714         {
715                 Client_SetAway( Client, Req->argv[0] );
716                 Client_ModeAdd( Client, 'a' );
717                 IRC_WriteStrServersPrefix( Client, Client, "MODE %s :+a", Client_ID( Client ));
718                 return IRC_WriteStrClient( Client, RPL_NOWAWAY_MSG, Client_ID( Client ));
719         }
720         else
721         {
722                 Client_ModeDel( Client, 'a' );
723                 IRC_WriteStrServersPrefix( Client, Client, "MODE %s :-a", Client_ID( Client ));
724                 return IRC_WriteStrClient( Client, RPL_UNAWAY_MSG, Client_ID( Client ));
725         }
726 } /* IRC_AWAY */
727
728
729 static bool
730 Add_Ban_Invite(int what, CLIENT *Prefix, CLIENT *Client, CHANNEL *Channel, const char *Pattern)
731 {
732         const char *mask;
733         bool already;
734         bool ret;
735
736         assert( Client != NULL );
737         assert( Channel != NULL );
738         assert( Pattern != NULL );
739         assert(what == 'I' || what == 'b');
740
741         mask = Lists_MakeMask(Pattern);
742
743         already = Lists_CheckDupeMask(Channel_GetListInvites(Channel), mask);
744         if (!already) {
745                 if (what == 'I')
746                         ret = Channel_AddInvite(Channel, mask, false);
747                 else
748                         ret = Channel_AddBan(Channel, mask);
749                 if (!ret)
750                         return CONNECTED;
751         }
752         if (already && (Client_Type(Prefix) == CLIENT_SERVER))
753                 return CONNECTED;
754
755         if (what == 'I')
756                 return Send_ListChange("+I", Prefix, Client, Channel, mask);
757         return Send_ListChange("+b", Prefix, Client, Channel, mask);
758 }
759
760
761 static bool
762 Del_Ban_Invite(int what, CLIENT *Prefix, CLIENT *Client, CHANNEL *Channel, const char *Pattern)
763 {
764         const char *mask;
765         struct list_head *list;
766
767         assert( Client != NULL );
768         assert( Channel != NULL );
769         assert( Pattern != NULL );
770         assert(what == 'I' || what == 'b');
771
772         mask = Lists_MakeMask( Pattern );
773
774         if (what == 'I')
775                 list = Channel_GetListInvites(Channel);
776         else
777                 list = Channel_GetListBans(Channel);
778
779         Lists_Del(list, mask);
780         if (what == 'I')
781                 return Send_ListChange( "-I", Prefix, Client, Channel, mask );
782         return Send_ListChange( "-b", Prefix, Client, Channel, mask );
783 }
784
785
786 static bool
787 Send_ListChange(const char *Mode, CLIENT *Prefix, CLIENT *Client,
788                 CHANNEL *Channel, const char *Mask)
789 {
790         bool ok;
791
792         if( Client_Type( Client ) == CLIENT_USER )
793         {
794                 /* send confirmation to client */
795                 ok = IRC_WriteStrClientPrefix( Client, Prefix, "MODE %s %s %s", Channel_Name( Channel ), Mode, Mask );
796         }
797         else ok = true;
798
799         /* to other servers */
800         IRC_WriteStrServersPrefix( Client, Prefix, "MODE %s %s %s", Channel_Name( Channel ), Mode, Mask );
801
802         /* and local users in channel */
803         IRC_WriteStrChannelPrefix( Client, Channel, Prefix, false, "MODE %s %s %s", Channel_Name( Channel ), Mode, Mask );
804         
805         return ok;
806 } /* Send_ListChange */
807
808
809 /* -eof- */