]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-channel.c
JOIN command: don't check channel limit if already member
[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                         if (chan) {
373                                 /* Already existing channel: already member? */
374                                 if (Channel_IsMemberOf(chan, Client))
375                                     goto join_next;
376                         }
377
378                         /* Test if the user has reached the channel limit */
379                         if ((Conf_MaxJoins > 0) &&
380                             (Channel_CountForUser(Client) >= Conf_MaxJoins))
381                                 return IRC_WriteStrClient(Client,
382                                                 ERR_TOOMANYCHANNELS_MSG,
383                                                 Client_ID(Client), channame);
384                         if (chan) {
385                                 /* Already existing channel: check if the
386                                  * client is allowed to join */
387                                 if (!join_allowed(Client, chan, channame, key))
388                                         break;
389                         } else {
390                                 /* New channel: first user will become channel
391                                  * operator unless this is a modeless channel */
392                                 if (*channame != '+')
393                                         flags = "o";
394                         }
395
396                         /* Local client: update idle time */
397                         Conn_UpdateIdle(Client_Conn(Client));
398                 } else {
399                         /* Remote server: we don't need to know whether the
400                          * client is invited or not, but we have to make sure
401                          * that the "one shot" entries (generated by INVITE
402                          * commands) in this list become deleted when a user
403                          * joins a channel this way. */
404                         if (chan)
405                                 (void)Lists_Check(Channel_GetListInvites(chan),
406                                                   target);
407                 }
408
409                 /* Join channel (and create channel if it doesn't exist) */
410                 if (!Channel_Join(target, channame))
411                         goto join_next;
412
413                 if (!chan) { /* channel is new; it has been created above */
414                         chan = Channel_Search(channame);
415                         assert(chan != NULL);
416                         if (Channel_IsModeless(chan)) {
417                                 Channel_ModeAdd(chan, 't'); /* /TOPIC not allowed */
418                                 Channel_ModeAdd(chan, 'n'); /* no external msgs */
419                         }
420                 }
421                 assert(chan != NULL);
422
423                 join_set_channelmodes(chan, target, flags);
424
425                 join_forward(Client, target, chan, channame);
426
427                 if (!join_send_topic(Client, target, chan, channame))
428                         break; /* write error */
429
430         join_next:
431                 /* next channel? */
432                 channame = strtok_r(NULL, ",", &lastchan);
433                 if (channame && key)
434                         key = strtok_r(NULL, ",", &lastkey);
435         }
436         return CONNECTED;
437 } /* IRC_JOIN */
438
439
440 /**
441  * Handler for the IRC "PART" command.
442  *
443  * See RFC 2812, 3.2.2: "Part message".
444  *
445  * @param Client        The client from which this command has been received
446  * @param Req           Request structure with prefix and all parameters
447  * @returns             CONNECTED or DISCONNECTED
448  */
449 GLOBAL bool
450 IRC_PART(CLIENT * Client, REQUEST * Req)
451 {
452         CLIENT *target;
453         char *chan;
454
455         assert(Client != NULL);
456         assert(Req != NULL);
457
458         if (Req->argc < 1 || Req->argc > 2)
459                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
460                                           Client_ID(Client), Req->command);
461
462         /* Get the sender */
463         if (Client_Type(Client) == CLIENT_SERVER)
464                 target = Client_Search(Req->prefix);
465         else
466                 target = Client;
467         if (!target)
468                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
469                                           Client_ID(Client), Req->prefix);
470
471         /* Loop over all the given channel names */
472         chan = strtok(Req->argv[0], ",");
473
474         /* Make sure that "chan" is not the empty string ("PART :") */
475         if (! chan)
476                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
477                                           Client_ID(Client), Req->command);
478
479         while (chan) {
480                 Channel_Part(target, Client, chan,
481                              Req->argc > 1 ? Req->argv[1] : Client_ID(target));
482                 chan = strtok(NULL, ",");
483         }
484
485         /* Update idle time, if local client */
486         if (Client_Conn(Client) > NONE)
487                 Conn_UpdateIdle(Client_Conn(Client));
488
489         return CONNECTED;
490 } /* IRC_PART */
491
492
493 /**
494  * Handler for the IRC "TOPIC" command.
495  *
496  * See RFC 2812, 3.2.4 "Topic message".
497  *
498  * @param Client        The client from which this command has been received
499  * @param Req           Request structure with prefix and all parameters
500  * @returns             CONNECTED or DISCONNECTED
501  */
502 GLOBAL bool
503 IRC_TOPIC( CLIENT *Client, REQUEST *Req )
504 {
505         CHANNEL *chan;
506         CLIENT *from;
507         char *topic;
508         bool onchannel, topicok, use_servermode, r;
509
510         assert( Client != NULL );
511         assert( Req != NULL );
512
513         if (Req->argc < 1 || Req->argc > 2)
514                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
515                                           Client_ID(Client), Req->command);
516
517         if (Client_Type(Client) == CLIENT_SERVER)
518                 from = Client_Search(Req->prefix);
519         else
520                 from = Client;
521
522         if (!from)
523                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
524                                           Client_ID(Client), Req->prefix);
525
526         chan = Channel_Search(Req->argv[0]);
527         if (!chan)
528                 return IRC_WriteStrClient(from, ERR_NOSUCHCHANNEL_MSG,
529                                           Client_ID(from), Req->argv[0]);
530
531         Channel_CheckAdminRights(chan, Client, from,
532                                  &onchannel, &topicok, &use_servermode);
533
534         if (!onchannel && !topicok)
535                 return IRC_WriteStrClient(from, ERR_NOTONCHANNEL_MSG,
536                                           Client_ID(from), Req->argv[0]);
537
538         if (Req->argc == 1) {
539                 /* Request actual topic */
540                 topic = Channel_Topic(chan);
541                 if (*topic) {
542                         r = IRC_WriteStrClient(from, RPL_TOPIC_MSG,
543                                                Client_ID(Client),
544                                                Channel_Name(chan), topic);
545 #ifndef STRICT_RFC
546                         if (!r)
547                                 return r;
548                         r = IRC_WriteStrClient(from, RPL_TOPICSETBY_MSG,
549                                                Client_ID(Client),
550                                                Channel_Name(chan),
551                                                Channel_TopicWho(chan),
552                                                Channel_TopicTime(chan));
553 #endif
554                         return r;
555                 }
556                 else
557                         return IRC_WriteStrClient(from, RPL_NOTOPIC_MSG,
558                                                   Client_ID(from),
559                                                   Channel_Name(chan));
560         }
561
562         if (strchr(Channel_Modes(chan), 't')) {
563                 /* Topic Lock. Is the user a channel or IRC operator? */
564                 if (!topicok)
565                         return IRC_WriteStrClient(from, ERR_CHANOPRIVSNEEDED_MSG,
566                                                   Client_ID(from),
567                                                   Channel_Name(chan));
568         }
569
570         /* Set new topic */
571         Channel_SetTopic(chan, from, Req->argv[1]);
572         LogDebug("%s \"%s\" set topic on \"%s\": %s",
573                  Client_TypeText(from), Client_Mask(from), Channel_Name(chan),
574                  Req->argv[1][0] ? Req->argv[1] : "<none>");
575
576         if (use_servermode)
577                 from = Client_ThisServer();
578
579         /* Update channel and forward new topic to other servers */
580         if (!Channel_IsLocal(chan))
581                 IRC_WriteStrServersPrefix(Client, from, "TOPIC %s :%s",
582                                           Req->argv[0], Req->argv[1]);
583         IRC_WriteStrChannelPrefix(Client, chan, from, false, "TOPIC %s :%s",
584                                   Req->argv[0], Req->argv[1]);
585
586         if (Client_Type(Client) == CLIENT_USER)
587                 return IRC_WriteStrClientPrefix(Client, Client, "TOPIC %s :%s",
588                                                 Req->argv[0], Req->argv[1]);
589         else
590                 return CONNECTED;
591 } /* IRC_TOPIC */
592
593
594 /**
595  * Handler for the IRC "LIST" command.
596  *
597  * See RFC 2812, 3.2.6 "List message".
598  *
599  * This implementation handles the local case as well as the forwarding of the
600  * LIST command to other servers in the IRC network.
601  *
602  * @param Client The client from which this command has been received.
603  * @param Req Request structure with prefix and all parameters.
604  * @return CONNECTED or DISCONNECTED.
605  */
606 GLOBAL bool
607 IRC_LIST( CLIENT *Client, REQUEST *Req )
608 {
609         char *pattern;
610         CHANNEL *chan;
611         CLIENT *from, *target;
612         int count = 0;
613
614         assert(Client != NULL);
615         assert(Req != NULL);
616
617         /* Bad number of prameters? */
618         if (Req->argc > 2)
619                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
620                                           Client_ID(Client), Req->command);
621
622         if (Req->argc > 0)
623                 pattern = strtok(Req->argv[0], ",");
624         else
625                 pattern = "*";
626
627         /* Get sender from prefix, if any */
628         if (Client_Type(Client) == CLIENT_SERVER)
629                 from = Client_Search(Req->prefix);
630         else
631                 from = Client;
632
633         if (!from)
634                 return IRC_WriteStrClient(Client, ERR_NOSUCHSERVER_MSG,
635                                           Client_ID(Client), Req->prefix);
636
637         if (Req->argc == 2) {
638                 /* Forward to other server? */
639                 target = Client_Search(Req->argv[1]);
640                 if (! target || Client_Type(target) != CLIENT_SERVER)
641                         return IRC_WriteStrClient(from, ERR_NOSUCHSERVER_MSG,
642                                                   Client_ID(Client),
643                                                   Req->argv[1]);
644
645                 if (target != Client_ThisServer()) {
646                         /* Target is indeed an other server, forward it! */
647                         return IRC_WriteStrClientPrefix(target, from,
648                                                         "LIST %s :%s",
649                                                         Client_ID(from),
650                                                         Req->argv[1]);
651                 }
652         }
653
654         while (pattern) {
655                 /* Loop through all the channels */
656                 if (Req->argc > 0)
657                         ngt_LowerStr(pattern);
658                 chan = Channel_First();
659                 while (chan) {
660                         /* Check search pattern */
661                         if (MatchCaseInsensitive(pattern, Channel_Name(chan))) {
662                                 /* Gotcha! */
663                                 if (!strchr(Channel_Modes(chan), 's')
664                                     || Channel_IsMemberOf(chan, from)) {
665                                         if (IRC_CheckListTooBig(from, count,
666                                                                  MAX_RPL_LIST,
667                                                                  "LIST"))
668                                                 break;
669                                         if (!IRC_WriteStrClient(from,
670                                              RPL_LIST_MSG, Client_ID(from),
671                                              Channel_Name(chan),
672                                              Channel_MemberCount(chan),
673                                              Channel_Topic( chan )))
674                                                 return DISCONNECTED;
675                                         count++;
676                                 }
677                         }
678                         chan = Channel_Next(chan);
679                 }
680
681                 /* Get next name ... */
682                 if(Req->argc > 0)
683                         pattern = strtok(NULL, ",");
684                 else
685                         pattern = NULL;
686         }
687
688         IRC_SetPenalty(from, 2);
689         return IRC_WriteStrClient(from, RPL_LISTEND_MSG, Client_ID(from));
690 } /* IRC_LIST */
691
692
693 /**
694  * Handler for the IRC+ command "CHANINFO".
695  *
696  * See doc/Protocol.txt, section II.3:
697  * "Exchange channel-modes, topics, and persistent channels".
698  *
699  * @param Client        The client from which this command has been received
700  * @param Req           Request structure with prefix and all parameters
701  * @returns             CONNECTED or DISCONNECTED
702  */
703 GLOBAL bool
704 IRC_CHANINFO( CLIENT *Client, REQUEST *Req )
705 {
706         char modes_add[COMMAND_LEN], l[16], *ptr;
707         CLIENT *from;
708         CHANNEL *chan;
709         int arg_topic;
710
711         assert( Client != NULL );
712         assert( Req != NULL );
713
714         /* Bad number of parameters? */
715         if (Req->argc < 2 || Req->argc == 4 || Req->argc > 5)
716                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
717                                           Client_ID(Client), Req->command);
718
719         /* Compatibility kludge */
720         if( Req->argc == 5 ) arg_topic = 4;
721         else if( Req->argc == 3 ) arg_topic = 2;
722         else arg_topic = -1;
723
724         /* Search origin */
725         from = Client_Search( Req->prefix );
726         if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->prefix );
727
728         /* Search or create channel */
729         chan = Channel_Search( Req->argv[0] );
730         if( ! chan ) chan = Channel_Create( Req->argv[0] );
731         if( ! chan ) return CONNECTED;
732
733         if( Req->argv[1][0] == '+' )
734         {
735                 ptr = Channel_Modes( chan );
736                 if( ! *ptr )
737                 {
738                         /* OK, this channel doesn't have modes jet, set the received ones: */
739                         Channel_SetModes( chan, &Req->argv[1][1] );
740
741                         if( Req->argc == 5 )
742                         {
743                                 if( strchr( Channel_Modes( chan ), 'k' )) Channel_SetKey( chan, Req->argv[2] );
744                                 if( strchr( Channel_Modes( chan ), 'l' )) Channel_SetMaxUsers( chan, atol( Req->argv[3] ));
745                         }
746                         else
747                         {
748                                 /* Delete modes which we never want to inherit */
749                                 Channel_ModeDel( chan, 'l' );
750                                 Channel_ModeDel( chan, 'k' );
751                         }
752
753                         strcpy( modes_add, "" );
754                         ptr = Channel_Modes( chan );
755                         while( *ptr )
756                         {
757                                 if( *ptr == 'l' )
758                                 {
759                                         snprintf( l, sizeof( l ), " %lu", Channel_MaxUsers( chan ));
760                                         strlcat( modes_add, l, sizeof( modes_add ));
761                                 }
762                                 if( *ptr == 'k' )
763                                 {
764                                         strlcat( modes_add, " ", sizeof( modes_add ));
765                                         strlcat( modes_add, Channel_Key( chan ), sizeof( modes_add ));
766                                 }
767                                 ptr++;
768                         }
769
770                         /* Inform members of this channel */
771                         IRC_WriteStrChannelPrefix( Client, chan, from, false, "MODE %s +%s%s", Req->argv[0], Channel_Modes( chan ), modes_add );
772                 }
773         }
774         else Log( LOG_WARNING, "CHANINFO: invalid MODE format ignored!" );
775
776         if( arg_topic > 0 )
777         {
778                 /* We got a topic */
779                 ptr = Channel_Topic( chan );
780                 if(( ! *ptr ) && ( Req->argv[arg_topic][0] ))
781                 {
782                         /* OK, there is no topic jet */
783                         Channel_SetTopic(chan, Client, Req->argv[arg_topic]);
784                         IRC_WriteStrChannelPrefix(Client, chan, from, false,
785                              "TOPIC %s :%s", Req->argv[0], Channel_Topic(chan));
786                 }
787         }
788
789         /* Forward CHANINFO to other serevrs */
790         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] );
791         else if( Req->argc == 3 ) IRC_WriteStrServersPrefixFlag( Client, from, 'C', "CHANINFO %s %s :%s", Req->argv[0], Req->argv[1], Req->argv[2] );
792         else IRC_WriteStrServersPrefixFlag( Client, from, 'C', "CHANINFO %s %s", Req->argv[0], Req->argv[1] );
793
794         return CONNECTED;
795 } /* IRC_CHANINFO */
796
797
798 /* -eof- */