]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-channel.c
Limit list replies of LIST, WHO, WHOIS, and MAX_RPL_WHOWAS
[ngircd-alex.git] / src / ngircd / irc-channel.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
12 #include "portab.h"
13
14 /**
15  * @file
16  * IRC channel commands
17  */
18
19 #include "imp.h"
20 #include <assert.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <string.h>
24
25 #include "defines.h"
26 #include "conn.h"
27 #include "channel.h"
28 #include "conn-func.h"
29 #include "lists.h"
30 #include "log.h"
31 #include "match.h"
32 #include "messages.h"
33 #include "parse.h"
34 #include "irc.h"
35 #include "irc-info.h"
36 #include "irc-write.h"
37 #include "conf.h"
38
39 #include "exp.h"
40 #include "irc-channel.h"
41
42
43 /**
44  * Part from all channels.
45  *
46  * RFC 2812, (3.2.1 Join message Command):
47  *  Note that this message accepts a special argument ("0"), which is a
48  *  special request to leave all channels the user is currently a member of.
49  *  The server will process this message as if the user had sent a PART
50  *  command (See Section 3.2.2) for each channel he is a member of.
51  *
52  * @param client        Client that initiated the part request
53  * @param target        Client that should part all joined channels
54  * @returns             CONNECTED or DISCONNECTED
55  */
56 static bool
57 part_from_all_channels(CLIENT* client, CLIENT *target)
58 {
59         CL2CHAN *cl2chan;
60         CHANNEL *chan;
61
62         while ((cl2chan = Channel_FirstChannelOf(target))) {
63                 chan = Channel_GetChannel(cl2chan);
64                 assert( chan != NULL );
65                 Channel_Part(target, client, Channel_Name(chan), Client_ID(target));
66         }
67         return CONNECTED;
68 } /* part_from_all_channels */
69
70
71 /**
72  * Check weather a local client is allowed to join an already existing
73  * channel or not.
74  *
75  * @param Client        Client that sent the JOIN command
76  * @param chan          Channel to check
77  * @param channame      Name of the channel
78  * @param key           Provided channel key (or NULL)
79  * @returns             true if client is allowed to join, false otherwise
80  */
81 static bool
82 join_allowed(CLIENT *Client, CHANNEL *chan, const char *channame,
83              const char *key)
84 {
85         bool is_invited, is_banned;
86         const char *channel_modes;
87
88         /* Allow IRC operators to overwrite channel limits */
89         if (strchr(Client_Modes(Client), 'o'))
90                 return true;
91
92         is_banned = Lists_Check(Channel_GetListBans(chan), Client);
93         is_invited = Lists_Check(Channel_GetListInvites(chan), Client);
94
95         if (is_banned && !is_invited) {
96                 /* Client is banned from channel (and not on invite list) */
97                 IRC_WriteStrClient(Client, ERR_BANNEDFROMCHAN_MSG,
98                                    Client_ID(Client), channame);
99                 return false;
100         }
101
102         channel_modes = Channel_Modes(chan);
103         if (strchr(channel_modes, 'i') && !is_invited) {
104                 /* Channel is "invite-only" and client is not on invite list */
105                 IRC_WriteStrClient(Client, ERR_INVITEONLYCHAN_MSG,
106                                    Client_ID(Client), channame);
107                 return false;
108         }
109
110         if (!Channel_CheckKey(chan, Client, key ? key : "")) {
111                 /* Channel is protected by a channel key and the client
112                  * didn't specify the correct one */
113                 IRC_WriteStrClient(Client, ERR_BADCHANNELKEY_MSG,
114                                    Client_ID(Client), channame);
115                 return false;
116         }
117
118         if (strchr(channel_modes, 'l') &&
119             (Channel_MaxUsers(chan) <= Channel_MemberCount(chan))) {
120                 /* There are more clints joined to this channel than allowed */
121                 IRC_WriteStrClient(Client, ERR_CHANNELISFULL_MSG,
122                                    Client_ID(Client), channame);
123                 return false;
124         }
125
126         if (strchr(channel_modes, 'z') && !Conn_UsesSSL(Client_Conn(Client))) {
127                 /* Only "secure" clients are allowed, but clients doesn't
128                  * use SSL encryption */
129                 IRC_WriteStrClient(Client, ERR_SECURECHANNEL_MSG,
130                                    Client_ID(Client), channame);
131                 return false;
132         }
133
134         if (strchr(channel_modes, 'O') && !Client_OperByMe(Client)) {
135                 /* Only IRC operators are allowed! */
136                 IRC_WriteStrClient(Client, ERR_OPONLYCHANNEL_MSG,
137                                    Client_ID(Client), channame);
138                 return false;
139         }
140
141         if (strchr(channel_modes, 'R') && !strchr(Client_Modes(Client), 'R')) {
142                 /* Only registered users are allowed! */
143                 IRC_WriteStrClient(Client, ERR_REGONLYCHANNEL_MSG,
144                                    Client_ID(Client), channame);
145                 return false;
146         }
147
148         return true;
149 } /* join_allowed */
150
151
152 /**
153  * Set user channel modes.
154  *
155  * @param chan          Channel
156  * @param target        User to set modes for
157  * @param flags         Channel modes to add
158  */
159 static void
160 join_set_channelmodes(CHANNEL *chan, CLIENT *target, const char *flags)
161 {
162         if (flags) {
163                 while (*flags) {
164                         Channel_UserModeAdd(chan, target, *flags);
165                         flags++;
166                 }
167         }
168
169         /* If channel persistent and client is ircop: make client chanop */
170         if (strchr(Channel_Modes(chan), 'P') && strchr(Client_Modes(target), 'o'))
171                 Channel_UserModeAdd(chan, target, 'o');
172 } /* join_set_channelmodes */
173
174
175 /**
176  * Forward JOIN command to a specific server
177  *
178  * This function diffentiates between servers using RFC 2813 mode that
179  * support the JOIN command with appended ASCII 7 character and channel
180  * modes, and servers using RFC 1459 protocol which require separate JOIN
181  * and MODE commands.
182  *
183  * @param To            Forward JOIN (and MODE) command to this peer server
184  * @param Prefix        Client used to prefix the genrated commands
185  * @param Data          Parameters of JOIN command to forward, probably
186  *                      containing channel modes separated by ASCII 7.
187  */
188 static void
189 cb_join_forward(CLIENT *To, CLIENT *Prefix, void *Data)
190 {
191         CONN_ID conn;
192         char str[COMMAND_LEN], *ptr = NULL;
193
194         strlcpy(str, (char *)Data, sizeof(str));
195         conn = Client_Conn(To);
196
197         if (Conn_Options(conn) & CONN_RFC1459) {
198                 /* RFC 1459 compatibility mode, appended modes are NOT
199                  * supported, so strip them off! */
200                 ptr = strchr(str, 0x7);
201                 if (ptr)
202                         *ptr++ = '\0';
203         }
204
205         IRC_WriteStrClientPrefix(To, Prefix, "JOIN %s", str);
206         if (ptr && *ptr)
207                 IRC_WriteStrClientPrefix(To, Prefix, "MODE %s +%s %s", str, ptr,
208                                          Client_ID(Prefix));
209 } /* cb_join_forward */
210
211
212 /**
213  * Forward JOIN command to all servers
214  *
215  * This function calls cb_join_forward(), which differentiates between
216  * protocol implementations (e.g. RFC 2812, RFC 1459).
217  *
218  * @param Client        Client used to prefix the genrated commands
219  * @param target        Forward JOIN (and MODE) command to this peer server
220  * @param chan          Channel structure
221  * @param channame      Channel name
222  */
223 static void
224 join_forward(CLIENT *Client, CLIENT *target, CHANNEL *chan,
225                                         const char *channame)
226 {
227         char modes[CHANNEL_MODE_LEN], str[COMMAND_LEN];
228
229         /* RFC 2813, 4.2.1: channel modes are separated from the channel
230          * name with ASCII 7, if any, and not spaces: */
231         strlcpy(&modes[1], Channel_UserModes(chan, target), sizeof(modes) - 1);
232         if (modes[1])
233                 modes[0] = 0x7;
234         else
235                 modes[0] = '\0';
236
237         /* forward to other servers (if it is not a local channel) */
238         if (!Channel_IsLocal(chan)) {
239                 snprintf(str, sizeof(str), "%s%s", channame, modes);
240                 IRC_WriteStrServersPrefixFlag_CB(Client, target, '\0',
241                                                  cb_join_forward, str);
242         }
243
244         /* tell users in this channel about the new client */
245         IRC_WriteStrChannelPrefix(Client, chan, target, false,
246                                   "JOIN :%s",  channame);
247
248         /* synchronize channel modes */
249         if (modes[1]) {
250                 IRC_WriteStrChannelPrefix(Client, chan, target, false,
251                                           "MODE %s +%s %s", channame,
252                                           &modes[1], Client_ID(target));
253         }
254 } /* join_forward */
255
256
257 /**
258  * Aknowledge user JOIN request and send "channel info" numerics.
259  *
260  * @param Client        Client used to prefix the genrated commands
261  * @param target        Forward commands/numerics to this user
262  * @param chan          Channel structure
263  * @param channame      Channel name
264  */
265 static bool
266 join_send_topic(CLIENT *Client, CLIENT *target, CHANNEL *chan,
267                                         const char *channame)
268 {
269         const char *topic;
270
271         if (Client_Type(Client) != CLIENT_USER)
272                 return true;
273         /* acknowledge join */
274         if (!IRC_WriteStrClientPrefix(Client, target, "JOIN :%s", channame))
275                 return false;
276
277         /* Send topic to client, if any */
278         topic = Channel_Topic(chan);
279         assert(topic != NULL);
280         if (*topic) {
281                 if (!IRC_WriteStrClient(Client, RPL_TOPIC_MSG,
282                         Client_ID(Client), channame, topic))
283                                 return false;
284 #ifndef STRICT_RFC
285                 if (!IRC_WriteStrClient(Client, RPL_TOPICSETBY_MSG,
286                         Client_ID(Client), channame,
287                         Channel_TopicWho(chan),
288                         Channel_TopicTime(chan)))
289                                 return false;
290 #endif
291         }
292         /* send list of channel members to client */
293         if (!IRC_Send_NAMES(Client, chan))
294                 return false;
295         return IRC_WriteStrClient(Client, RPL_ENDOFNAMES_MSG, Client_ID(Client),
296                                   Channel_Name(chan));
297 } /* join_send_topic */
298
299
300 /**
301  * Handler for the IRC "JOIN" command.
302  *
303  * See RFC 2812, 3.2.1 "Join message"; RFC 2813, 4.2.1 "Join message".
304  *
305  * @param Client The client from which this command has been received
306  * @param Req Request structure with prefix and all parameters
307  * @returns CONNECTED or DISCONNECTED
308  */
309 GLOBAL bool
310 IRC_JOIN( CLIENT *Client, REQUEST *Req )
311 {
312         char *channame, *key = NULL, *flags, *lastkey = NULL, *lastchan = NULL;
313         CLIENT *target;
314         CHANNEL *chan;
315
316         assert (Client != NULL);
317         assert (Req != NULL);
318
319         /* Bad number of arguments? */
320         if (Req->argc < 1 || Req->argc > 2)
321                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
322                                           Client_ID(Client), Req->command);
323
324         /* Who is the sender? */
325         if (Client_Type(Client) == CLIENT_SERVER)
326                 target = Client_Search(Req->prefix);
327         else
328                 target = Client;
329
330         if (!target)
331                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
332                                           Client_ID(Client), Req->prefix);
333
334         /* Is argument "0"? */
335         if (Req->argc == 1 && !strncmp("0", Req->argv[0], 2))
336                 return part_from_all_channels(Client, target);
337
338         /* Are channel keys given? */
339         if (Req->argc > 1)
340                 key = strtok_r(Req->argv[1], ",", &lastkey);
341
342         channame = Req->argv[0];
343         channame = strtok_r(channame, ",", &lastchan);
344
345         /* Make sure that "channame" is not the empty string ("JOIN :") */
346         if (! channame)
347                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
348                                           Client_ID(Client), Req->command);
349
350         while (channame) {
351                 flags = NULL;
352
353                 /* Did the server include channel-user-modes? */
354                 if (Client_Type(Client) == CLIENT_SERVER) {
355                         flags = strchr(channame, 0x7);
356                         if (flags) {
357                                 *flags = '\0';
358                                 flags++;
359                         }
360                 }
361
362                 chan = Channel_Search(channame);
363                 if (!chan && Conf_PredefChannelsOnly) {
364                          /* channel must be created, but forbidden by config */
365                         IRC_WriteStrClient(Client, ERR_BANNEDFROMCHAN_MSG,
366                                            Client_ID(Client), channame);
367                         break;
368                 }
369
370                 /* Local client? */
371                 if (Client_Type(Client) == CLIENT_USER) {
372                         /* Test if the user has reached the channel limit */
373                         if ((Conf_MaxJoins > 0) &&
374                             (Channel_CountForUser(Client) >= Conf_MaxJoins))
375                                 return IRC_WriteStrClient(Client,
376                                                 ERR_TOOMANYCHANNELS_MSG,
377                                                 Client_ID(Client), channame);
378                         if (chan) {
379                                 /* Already existing channel: check if the
380                                  * client is allowed to join */
381                                 if (!join_allowed(Client, chan, channame, key))
382                                         break;
383                         } else {
384                                 /* New channel: first user will become channel
385                                  * operator unless this is a modeless channel */
386                                 if (*channame != '+')
387                                         flags = "o";
388                         }
389
390                         /* Local client: update idle time */
391                         Conn_UpdateIdle(Client_Conn(Client));
392                 } else {
393                         /* Remote server: we don't need to know whether the
394                          * client is invited or not, but we have to make sure
395                          * that the "one shot" entries (generated by INVITE
396                          * commands) in this list become deleted when a user
397                          * joins a channel this way. */
398                         if (chan)
399                                 (void)Lists_Check(Channel_GetListInvites(chan),
400                                                   target);
401                 }
402
403                 /* Join channel (and create channel if it doesn't exist) */
404                 if (!Channel_Join(target, channame))
405                         goto join_next;
406
407                 if (!chan) { /* channel is new; it has been created above */
408                         chan = Channel_Search(channame);
409                         assert(chan != NULL);
410                         if (Channel_IsModeless(chan)) {
411                                 Channel_ModeAdd(chan, 't'); /* /TOPIC not allowed */
412                                 Channel_ModeAdd(chan, 'n'); /* no external msgs */
413                         }
414                 }
415                 assert(chan != NULL);
416
417                 join_set_channelmodes(chan, target, flags);
418
419                 join_forward(Client, target, chan, channame);
420
421                 if (!join_send_topic(Client, target, chan, channame))
422                         break; /* write error */
423
424         join_next:
425                 /* next channel? */
426                 channame = strtok_r(NULL, ",", &lastchan);
427                 if (channame && key)
428                         key = strtok_r(NULL, ",", &lastkey);
429         }
430         return CONNECTED;
431 } /* IRC_JOIN */
432
433
434 /**
435  * Handler for the IRC "PART" command.
436  *
437  * See RFC 2812, 3.2.2: "Part message".
438  *
439  * @param Client        The client from which this command has been received
440  * @param Req           Request structure with prefix and all parameters
441  * @returns             CONNECTED or DISCONNECTED
442  */
443 GLOBAL bool
444 IRC_PART(CLIENT * Client, REQUEST * Req)
445 {
446         CLIENT *target;
447         char *chan;
448
449         assert(Client != NULL);
450         assert(Req != NULL);
451
452         if (Req->argc < 1 || Req->argc > 2)
453                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
454                                           Client_ID(Client), Req->command);
455
456         /* Get the sender */
457         if (Client_Type(Client) == CLIENT_SERVER)
458                 target = Client_Search(Req->prefix);
459         else
460                 target = Client;
461         if (!target)
462                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
463                                           Client_ID(Client), Req->prefix);
464
465         /* Loop over all the given channel names */
466         chan = strtok(Req->argv[0], ",");
467
468         /* Make sure that "chan" is not the empty string ("PART :") */
469         if (! chan)
470                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
471                                           Client_ID(Client), Req->command);
472
473         while (chan) {
474                 Channel_Part(target, Client, chan,
475                              Req->argc > 1 ? Req->argv[1] : Client_ID(target));
476                 chan = strtok(NULL, ",");
477         }
478
479         /* Update idle time, if local client */
480         if (Client_Conn(Client) > NONE)
481                 Conn_UpdateIdle(Client_Conn(Client));
482
483         return CONNECTED;
484 } /* IRC_PART */
485
486
487 /**
488  * Handler for the IRC "TOPIC" command.
489  *
490  * See RFC 2812, 3.2.4 "Topic message".
491  *
492  * @param Client        The client from which this command has been received
493  * @param Req           Request structure with prefix and all parameters
494  * @returns             CONNECTED or DISCONNECTED
495  */
496 GLOBAL bool
497 IRC_TOPIC( CLIENT *Client, REQUEST *Req )
498 {
499         CHANNEL *chan;
500         CLIENT *from;
501         char *topic;
502         bool onchannel, topicok, use_servermode, r;
503
504         assert( Client != NULL );
505         assert( Req != NULL );
506
507         if (Req->argc < 1 || Req->argc > 2)
508                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
509                                           Client_ID(Client), Req->command);
510
511         if (Client_Type(Client) == CLIENT_SERVER)
512                 from = Client_Search(Req->prefix);
513         else
514                 from = Client;
515
516         if (!from)
517                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
518                                           Client_ID(Client), Req->prefix);
519
520         chan = Channel_Search(Req->argv[0]);
521         if (!chan)
522                 return IRC_WriteStrClient(from, ERR_NOSUCHCHANNEL_MSG,
523                                           Client_ID(from), Req->argv[0]);
524
525         Channel_CheckAdminRights(chan, Client, from,
526                                  &onchannel, &topicok, &use_servermode);
527
528         if (!onchannel && !topicok)
529                 return IRC_WriteStrClient(from, ERR_NOTONCHANNEL_MSG,
530                                           Client_ID(from), Req->argv[0]);
531
532         if (Req->argc == 1) {
533                 /* Request actual topic */
534                 topic = Channel_Topic(chan);
535                 if (*topic) {
536                         r = IRC_WriteStrClient(from, RPL_TOPIC_MSG,
537                                                Client_ID(Client),
538                                                Channel_Name(chan), topic);
539 #ifndef STRICT_RFC
540                         if (!r)
541                                 return r;
542                         r = IRC_WriteStrClient(from, RPL_TOPICSETBY_MSG,
543                                                Client_ID(Client),
544                                                Channel_Name(chan),
545                                                Channel_TopicWho(chan),
546                                                Channel_TopicTime(chan));
547 #endif
548                         return r;
549                 }
550                 else
551                         return IRC_WriteStrClient(from, RPL_NOTOPIC_MSG,
552                                                   Client_ID(from),
553                                                   Channel_Name(chan));
554         }
555
556         if (strchr(Channel_Modes(chan), 't')) {
557                 /* Topic Lock. Is the user a channel or IRC operator? */
558                 if (!topicok)
559                         return IRC_WriteStrClient(from, ERR_CHANOPRIVSNEEDED_MSG,
560                                                   Client_ID(from),
561                                                   Channel_Name(chan));
562         }
563
564         /* Set new topic */
565         Channel_SetTopic(chan, from, Req->argv[1]);
566         LogDebug("%s \"%s\" set topic on \"%s\": %s",
567                  Client_TypeText(from), Client_Mask(from), Channel_Name(chan),
568                  Req->argv[1][0] ? Req->argv[1] : "<none>");
569
570         if (use_servermode)
571                 from = Client_ThisServer();
572
573         /* Update channel and forward new topic to other servers */
574         if (!Channel_IsLocal(chan))
575                 IRC_WriteStrServersPrefix(Client, from, "TOPIC %s :%s",
576                                           Req->argv[0], Req->argv[1]);
577         IRC_WriteStrChannelPrefix(Client, chan, from, false, "TOPIC %s :%s",
578                                   Req->argv[0], Req->argv[1]);
579
580         if (Client_Type(Client) == CLIENT_USER)
581                 return IRC_WriteStrClientPrefix(Client, Client, "TOPIC %s :%s",
582                                                 Req->argv[0], Req->argv[1]);
583         else
584                 return CONNECTED;
585 } /* IRC_TOPIC */
586
587
588 /**
589  * Handler for the IRC "LIST" command.
590  *
591  * See RFC 2812, 3.2.6 "List message".
592  *
593  * This implementation handles the local case as well as the forwarding of the
594  * LIST command to other servers in the IRC network.
595  *
596  * @param Client The client from which this command has been received.
597  * @param Req Request structure with prefix and all parameters.
598  * @return CONNECTED or DISCONNECTED.
599  */
600 GLOBAL bool
601 IRC_LIST( CLIENT *Client, REQUEST *Req )
602 {
603         char *pattern;
604         CHANNEL *chan;
605         CLIENT *from, *target;
606         int count = 0;
607
608         assert(Client != NULL);
609         assert(Req != NULL);
610
611         /* Bad number of prameters? */
612         if (Req->argc > 2)
613                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
614                                           Client_ID(Client), Req->command);
615
616         if (Req->argc > 0)
617                 pattern = strtok(Req->argv[0], ",");
618         else
619                 pattern = "*";
620
621         /* Get sender from prefix, if any */
622         if (Client_Type(Client) == CLIENT_SERVER)
623                 from = Client_Search(Req->prefix);
624         else
625                 from = Client;
626
627         if (!from)
628                 return IRC_WriteStrClient(Client, ERR_NOSUCHSERVER_MSG,
629                                           Client_ID(Client), Req->prefix);
630
631         if (Req->argc == 2) {
632                 /* Forward to other server? */
633                 target = Client_Search(Req->argv[1]);
634                 if (! target || Client_Type(target) != CLIENT_SERVER)
635                         return IRC_WriteStrClient(from, ERR_NOSUCHSERVER_MSG,
636                                                   Client_ID(Client),
637                                                   Req->argv[1]);
638
639                 if (target != Client_ThisServer()) {
640                         /* Target is indeed an other server, forward it! */
641                         return IRC_WriteStrClientPrefix(target, from,
642                                                         "LIST %s :%s",
643                                                         Client_ID(from),
644                                                         Req->argv[1]);
645                 }
646         }
647
648         while (pattern) {
649                 /* Loop through all the channels */
650                 if (Req->argc > 0)
651                         ngt_LowerStr(pattern);
652                 chan = Channel_First();
653                 while (chan) {
654                         /* Check search pattern */
655                         if (MatchCaseInsensitive(pattern, Channel_Name(chan))) {
656                                 /* Gotcha! */
657                                 if (!strchr(Channel_Modes(chan), 's')
658                                     || Channel_IsMemberOf(chan, from)) {
659                                         if (IRC_CheckListTooBig(from, count,
660                                                                  MAX_RPL_LIST,
661                                                                  "LIST"))
662                                                 break;
663                                         if (!IRC_WriteStrClient(from,
664                                              RPL_LIST_MSG, Client_ID(from),
665                                              Channel_Name(chan),
666                                              Channel_MemberCount(chan),
667                                              Channel_Topic( chan )))
668                                                 return DISCONNECTED;
669                                         count++;
670                                 }
671                         }
672                         chan = Channel_Next(chan);
673                 }
674
675                 /* Get next name ... */
676                 if(Req->argc > 0)
677                         pattern = strtok(NULL, ",");
678                 else
679                         pattern = NULL;
680         }
681
682         IRC_SetPenalty(from, 2);
683         return IRC_WriteStrClient(from, RPL_LISTEND_MSG, Client_ID(from));
684 } /* IRC_LIST */
685
686
687 /**
688  * Handler for the IRC+ command "CHANINFO".
689  *
690  * See doc/Protocol.txt, section II.3:
691  * "Exchange channel-modes, topics, and persistent channels".
692  *
693  * @param Client        The client from which this command has been received
694  * @param Req           Request structure with prefix and all parameters
695  * @returns             CONNECTED or DISCONNECTED
696  */
697 GLOBAL bool
698 IRC_CHANINFO( CLIENT *Client, REQUEST *Req )
699 {
700         char modes_add[COMMAND_LEN], l[16], *ptr;
701         CLIENT *from;
702         CHANNEL *chan;
703         int arg_topic;
704
705         assert( Client != NULL );
706         assert( Req != NULL );
707
708         /* Bad number of parameters? */
709         if (Req->argc < 2 || Req->argc == 4 || Req->argc > 5)
710                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
711                                           Client_ID(Client), Req->command);
712
713         /* Compatibility kludge */
714         if( Req->argc == 5 ) arg_topic = 4;
715         else if( Req->argc == 3 ) arg_topic = 2;
716         else arg_topic = -1;
717
718         /* Search origin */
719         from = Client_Search( Req->prefix );
720         if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->prefix );
721
722         /* Search or create channel */
723         chan = Channel_Search( Req->argv[0] );
724         if( ! chan ) chan = Channel_Create( Req->argv[0] );
725         if( ! chan ) return CONNECTED;
726
727         if( Req->argv[1][0] == '+' )
728         {
729                 ptr = Channel_Modes( chan );
730                 if( ! *ptr )
731                 {
732                         /* OK, this channel doesn't have modes jet, set the received ones: */
733                         Channel_SetModes( chan, &Req->argv[1][1] );
734
735                         if( Req->argc == 5 )
736                         {
737                                 if( strchr( Channel_Modes( chan ), 'k' )) Channel_SetKey( chan, Req->argv[2] );
738                                 if( strchr( Channel_Modes( chan ), 'l' )) Channel_SetMaxUsers( chan, atol( Req->argv[3] ));
739                         }
740                         else
741                         {
742                                 /* Delete modes which we never want to inherit */
743                                 Channel_ModeDel( chan, 'l' );
744                                 Channel_ModeDel( chan, 'k' );
745                         }
746
747                         strcpy( modes_add, "" );
748                         ptr = Channel_Modes( chan );
749                         while( *ptr )
750                         {
751                                 if( *ptr == 'l' )
752                                 {
753                                         snprintf( l, sizeof( l ), " %lu", Channel_MaxUsers( chan ));
754                                         strlcat( modes_add, l, sizeof( modes_add ));
755                                 }
756                                 if( *ptr == 'k' )
757                                 {
758                                         strlcat( modes_add, " ", sizeof( modes_add ));
759                                         strlcat( modes_add, Channel_Key( chan ), sizeof( modes_add ));
760                                 }
761                                 ptr++;
762                         }
763
764                         /* Inform members of this channel */
765                         IRC_WriteStrChannelPrefix( Client, chan, from, false, "MODE %s +%s%s", Req->argv[0], Channel_Modes( chan ), modes_add );
766                 }
767         }
768         else Log( LOG_WARNING, "CHANINFO: invalid MODE format ignored!" );
769
770         if( arg_topic > 0 )
771         {
772                 /* We got a topic */
773                 ptr = Channel_Topic( chan );
774                 if(( ! *ptr ) && ( Req->argv[arg_topic][0] ))
775                 {
776                         /* OK, there is no topic jet */
777                         Channel_SetTopic(chan, Client, Req->argv[arg_topic]);
778                         IRC_WriteStrChannelPrefix(Client, chan, from, false,
779                              "TOPIC %s :%s", Req->argv[0], Channel_Topic(chan));
780                 }
781         }
782
783         /* Forward CHANINFO to other serevrs */
784         if( Req->argc == 5 ) IRC_WriteStrServersPrefixFlag( Client, from, 'C', "CHANINFO %s %s %s %s :%s", Req->argv[0], Req->argv[1], Req->argv[2], Req->argv[3], Req->argv[4] );
785         else if( Req->argc == 3 ) IRC_WriteStrServersPrefixFlag( Client, from, 'C', "CHANINFO %s %s :%s", Req->argv[0], Req->argv[1], Req->argv[2] );
786         else IRC_WriteStrServersPrefixFlag( Client, from, 'C', "CHANINFO %s %s", Req->argv[0], Req->argv[1] );
787
788         return CONNECTED;
789 } /* IRC_CHANINFO */
790
791
792 /* -eof- */