]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-channel.c
Use strtok_r instead of strchr in IRC_JOIN.
[ngircd-alex.git] / src / ngircd / irc-channel.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001,2002 by 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 channel commands
12  */
13
14
15 #include "portab.h"
16
17 static char UNUSED id[] = "$Id: irc-channel.c,v 1.45 2008/02/24 18:57:38 fw Exp $";
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 "client.h"
28 #include "channel.h"
29 #include "conn-func.h"
30 #include "lists.h"
31 #include "log.h"
32 #include "match.h"
33 #include "messages.h"
34 #include "parse.h"
35 #include "irc-info.h"
36 #include "irc-write.h"
37 #include "resolve.h"
38 #include "conf.h"
39
40 #include "exp.h"
41 #include "irc-channel.h"
42
43
44 /*
45  * RFC 2812, (3.2.1 Join message Command):
46  *  Note that this message
47  *  accepts a special argument ("0"), which is a special request to leave all
48  *  channels the user is currently a member of. The server will process this
49  *  message as if the user had sent a PART command (See Section 3.2.2) for
50  *  each channel he is a member of.
51  */
52 static bool
53 part_from_all_channels(CLIENT* client, CLIENT *target)
54 {
55         CL2CHAN *cl2chan;
56         CHANNEL *chan;
57
58         while ((cl2chan = Channel_FirstChannelOf(target))) {
59                 chan = Channel_GetChannel(cl2chan);
60                 assert( chan != NULL );
61                 Channel_Part(target, client, Channel_Name(chan), Client_ID(target));
62         }
63         return CONNECTED;
64 }
65
66
67 static bool
68 join_allowed(CLIENT *Client, CLIENT *target, CHANNEL *chan,
69                         const char *channame, const char *key)
70 {
71         bool is_invited, is_banned;
72         const char *channel_modes;
73
74         /* Allow IRC operators to overwrite channel limits */
75         if (strchr(Client_Modes(Client), 'o'))
76                 return true;
77
78         is_banned = Lists_Check(Channel_GetListBans(chan), target);
79         is_invited = Lists_Check(Channel_GetListInvites(chan), target);
80
81         if (is_banned && !is_invited) {
82                 IRC_WriteStrClient(Client, ERR_BANNEDFROMCHAN_MSG, Client_ID(Client), channame);
83                 return false;
84         }
85
86         channel_modes = Channel_Modes(chan);
87         if ((strchr(channel_modes, 'i')) && !is_invited) {
88                 /* Channel is "invite-only" (and Client wasn't invited) */
89                 IRC_WriteStrClient(Client, ERR_INVITEONLYCHAN_MSG, Client_ID(Client), channame);
90                 return false;
91         }
92
93         /* Is the channel protected by a key? */
94         if (strchr(channel_modes, 'k') &&
95                 strcmp(Channel_Key(chan), key ? key : ""))
96         {
97                 IRC_WriteStrClient(Client, ERR_BADCHANNELKEY_MSG, Client_ID(Client), channame);
98                 return false;
99         }
100         /* Are there already too many members? */
101         if ((strchr(channel_modes, 'l')) && (Channel_MaxUsers(chan) <= Channel_MemberCount(chan))) {
102                 IRC_WriteStrClient(Client, ERR_CHANNELISFULL_MSG, Client_ID(Client), channame);
103                 return false;
104         }
105         return true;
106 }
107
108
109 static void
110 join_set_channelmodes(CHANNEL *chan, CLIENT *target, const char *flags)
111 {
112         if (flags) {
113                 while (*flags) {
114                         Channel_UserModeAdd(chan, target, *flags);
115                         flags++;
116                 }
117         }
118
119         /* If channel persistent and client is ircop: make client chanop */
120         if (strchr(Channel_Modes(chan), 'P') && strchr(Client_Modes(target), 'o'))
121                 Channel_UserModeAdd(chan, target, 'o');
122 }
123
124
125 static void
126 join_forward(CLIENT *Client, CLIENT *target, CHANNEL *chan,
127                                         const char *channame)
128 {
129         char modes[8];
130
131         strlcpy(&modes[1], Channel_UserModes(chan, target), sizeof(modes) - 1);
132
133         if (modes[1])
134                 modes[0] = 0x7;
135         else
136                 modes[0] = '\0';
137         /* forward to other servers */
138         IRC_WriteStrServersPrefix(Client, target, "JOIN :%s%s", channame, modes);
139
140         /* tell users in this channel about the new client */
141         IRC_WriteStrChannelPrefix(Client, chan, target, false, "JOIN :%s", channame);
142         if (modes[1])
143                 IRC_WriteStrChannelPrefix(Client, chan, target, false, "MODE %s +%s %s",
144                                                 channame, &modes[1], Client_ID(target));
145 }
146
147
148 static bool
149 join_send_topic(CLIENT *Client, CLIENT *target, CHANNEL *chan,
150                                         const char *channame)
151 {
152         const char *topic;
153
154         if (Client_Type(Client) != CLIENT_USER)
155                 return true;
156         /* acknowledge join */
157         if (!IRC_WriteStrClientPrefix(Client, target, "JOIN :%s", channame))
158                 return false;
159
160         /* Send topic to client, if any */
161         topic = Channel_Topic(chan);
162         assert(topic != NULL);
163         if (*topic) {
164                 if (!IRC_WriteStrClient(Client, RPL_TOPIC_MSG,
165                         Client_ID(Client), channame, topic))
166                                 return false;
167 #ifndef STRICT_RFC
168                 if (!IRC_WriteStrClient(Client, RPL_TOPICSETBY_MSG,
169                         Client_ID(Client), channame,
170                         Channel_TopicWho(chan),
171                         Channel_TopicTime(chan)))
172                                 return false;
173 #endif
174         }
175         /* send list of channel members to client */
176         if (!IRC_Send_NAMES(Client, chan))
177                 return false;
178         return IRC_WriteStrClient(Client, RPL_ENDOFNAMES_MSG, Client_ID(Client), Channel_Name(chan));
179 }
180
181
182 GLOBAL bool
183 IRC_JOIN( CLIENT *Client, REQUEST *Req )
184 {
185         char *channame, *key = NULL, *flags, *lastkey, *lastchan;
186         CLIENT *target;
187         CHANNEL *chan;
188
189         assert( Client != NULL );
190         assert( Req != NULL );
191
192         /* Bad number of arguments? */
193         if (Req->argc < 1 || Req->argc > 2)
194                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
195                                           Client_ID(Client), Req->command);
196
197         /* Who is the sender? */
198         if (Client_Type(Client) == CLIENT_SERVER)
199                 target = Client_Search(Req->prefix);
200         else
201                 target = Client;
202
203         if (!target)
204                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG, Client_ID(Client), Req->prefix);
205
206         /* Is argument "0"? */
207         if (Req->argc == 1 && !strncmp("0", Req->argv[0], 2))
208                 return part_from_all_channels(Client, target);
209
210         /* Are channel keys given? */
211         if (Req->argc > 1)
212                 key = strtok_r(Req->argv[1], ",", &lastkey);
213
214         channame = Req->argv[0];
215         channame = strtok_r(channame, ",", &lastchan);
216
217         while (channame) {
218                 flags = NULL;
219
220                 /* Did the server include channel-user-modes? */
221                 if (Client_Type(Client) == CLIENT_SERVER) {
222                         flags = strchr(channame, 0x7);
223                         if (flags) {
224                                 *flags = '\0';
225                                 flags++;
226                         }
227                 }
228
229                 chan = Channel_Search(channame);
230                 if (!chan && Conf_PredefChannelsOnly) {
231                          /* channel must be created, but server does not allow this */
232                         IRC_WriteStrClient(Client, ERR_BANNEDFROMCHAN_MSG, Client_ID(Client), channame);
233                         break;
234                 }
235
236                 /* Local client? */
237                 if (Client_Type(Client) == CLIENT_USER) {
238                         /* Test if the user has reached his maximum channel count */
239                         if ((Conf_MaxJoins > 0) && (Channel_CountForUser(Client) >= Conf_MaxJoins))
240                                 return IRC_WriteStrClient(Client, ERR_TOOMANYCHANNELS_MSG,
241                                                         Client_ID(Client), channame);
242                         if (!chan) {
243                                 /*
244                                  * New Channel: first user will be channel operator
245                                  * unless this is a modeless channel.
246                                  */
247                                 if (*channame != '+')
248                                         flags = "o";
249                         } else
250                                 if (!join_allowed(Client, target, chan, channame, key))
251                                         break;
252
253                         /* Local client: update idle time */
254                         Conn_UpdateIdle(Client_Conn(Client));
255                 } else {
256                         /* Remote server: we don't need to know whether the
257                          * client is invited or not, but we have to make sure
258                          * that the "one shot" entries (generated by INVITE
259                          * commands) in this list become deleted when a user
260                          * joins a channel this way. */
261                         if (chan) (void)Lists_Check(Channel_GetListInvites(chan), target);
262                 }
263
264                 /* Join channel (and create channel if it doesn't exist) */
265                 if (!Channel_Join(target, channame))
266                         break;
267
268                 if (!chan) { /* channel is new; it has been created above */
269                         chan = Channel_Search(channame);
270                         assert(chan != NULL);
271                         if (*channame == '+') { /* modeless channel... */
272                                 Channel_ModeAdd(chan, 't'); /* /TOPIC not allowed */
273                                 Channel_ModeAdd(chan, 'n'); /* no external msgs */
274                         }
275                 }
276                 assert(chan != NULL);
277
278                 join_set_channelmodes(chan, target, flags);
279
280                 join_forward(Client, target, chan, channame);
281
282                 if (!join_send_topic(Client, target, chan, channame))
283                         break; /* write error */
284
285                 /* next channel? */
286                 channame = strtok_r(NULL, ",", &lastchan);
287                 if (channame && key)
288                         key = strtok_r(NULL, ",", &lastkey);
289         }
290         return CONNECTED;
291 } /* IRC_JOIN */
292
293
294 /**
295  * Handler for the IRC "PART" command.
296  */
297 GLOBAL bool
298 IRC_PART(CLIENT * Client, REQUEST * Req)
299 {
300         CLIENT *target;
301         char *chan;
302
303         assert(Client != NULL);
304         assert(Req != NULL);
305
306         if (Req->argc < 1 || Req->argc > 2)
307                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
308                                           Client_ID(Client), Req->command);
309
310         /* Get the sender */
311         if (Client_Type(Client) == CLIENT_SERVER)
312                 target = Client_Search(Req->prefix);
313         else
314                 target = Client;
315         if (!target)
316                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
317                                           Client_ID(Client), Req->prefix);
318
319         /* Loop over all the given channel names */
320         chan = strtok(Req->argv[0], ",");
321         while (chan) {
322                 Channel_Part(target, Client, chan,
323                              Req->argc > 1 ? Req->argv[1] : Client_ID(target));
324                 chan = strtok(NULL, ",");
325         }
326
327         /* Update idle time, if local client */
328         if (Client_Conn(Client) > NONE)
329                 Conn_UpdateIdle(Client_Conn(Client));
330
331         return CONNECTED;
332 } /* IRC_PART */
333
334
335 GLOBAL bool
336 IRC_TOPIC( CLIENT *Client, REQUEST *Req )
337 {
338         CHANNEL *chan;
339         CLIENT *from;
340         char *topic;
341         bool r;
342
343         assert( Client != NULL );
344         assert( Req != NULL );
345
346         if ((Req->argc < 1) || (Req->argc > 2))
347                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG, Client_ID(Client), Req->command);
348
349         if( Client_Type( Client ) == CLIENT_SERVER ) from = Client_Search( Req->prefix );
350         else from = Client;
351         if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->prefix );
352
353         /* Welcher Channel? */
354         chan = Channel_Search( Req->argv[0] );
355         if( ! chan ) return IRC_WriteStrClient( from, ERR_NOSUCHCHANNEL_MSG, Client_ID( from ), Req->argv[0] );
356
357         /* Ist der User Mitglied in dem Channel? */
358         if( ! Channel_IsMemberOf( chan, from )) return IRC_WriteStrClient( from, ERR_NOTONCHANNEL_MSG, Client_ID( from ), Req->argv[0] );
359
360         if( Req->argc == 1 )
361         {
362                 /* Request actual topic */
363                 topic = Channel_Topic(chan);
364                 if (*topic) {
365                         r = IRC_WriteStrClient(from, RPL_TOPIC_MSG,
366                                 Client_ID(Client), Channel_Name(chan), topic);
367 #ifndef STRICT_RFC
368                         r = IRC_WriteStrClient(from, RPL_TOPICSETBY_MSG,
369                                 Client_ID(Client), Channel_Name(chan),
370                                 Channel_TopicWho(chan),
371                                 Channel_TopicTime(chan));
372 #endif
373                         return r;
374                 }
375                 else
376                          return IRC_WriteStrClient(from, RPL_NOTOPIC_MSG,
377                                         Client_ID(from), Channel_Name(chan));
378         }
379
380         if( strchr( Channel_Modes( chan ), 't' ))
381         {
382                 /* Topic Lock. Ist der User ein Channel Operator? */
383                 if( ! strchr( Channel_UserModes( chan, from ), 'o' )) return IRC_WriteStrClient( from, ERR_CHANOPRIVSNEEDED_MSG, Client_ID( from ), Channel_Name( chan ));
384         }
385
386         /* Set new topic */
387         Channel_SetTopic(chan, from, Req->argv[1]);
388         Log(LOG_DEBUG, "User \"%s\" set topic on \"%s\": %s",
389                 Client_Mask(from), Channel_Name(chan),
390                 Req->argv[1][0] ? Req->argv[1] : "<none>");
391
392         /* im Channel bekannt machen und an Server weiterleiten */
393         IRC_WriteStrServersPrefix( Client, from, "TOPIC %s :%s", Req->argv[0], Req->argv[1] );
394         IRC_WriteStrChannelPrefix( Client, chan, from, false, "TOPIC %s :%s", Req->argv[0], Req->argv[1] );
395
396         if( Client_Type( Client ) == CLIENT_USER ) return IRC_WriteStrClientPrefix( Client, Client, "TOPIC %s :%s", Req->argv[0], Req->argv[1] );
397         else return CONNECTED;
398 } /* IRC_TOPIC */
399
400
401 /**
402  * Handler for the IRC "LIST" command.
403  * This implementation handles the local case as well as the forwarding of the
404  * LIST command to other servers in the IRC network.
405  */
406 GLOBAL bool
407 IRC_LIST( CLIENT *Client, REQUEST *Req )
408 {
409         char *pattern;
410         CHANNEL *chan;
411         CLIENT *from, *target;
412
413         assert( Client != NULL );
414         assert( Req != NULL );
415
416         /* Bad number of prameters? */
417         if( Req->argc > 2 )
418                 return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG,
419                         Client_ID( Client ), Req->command );
420
421         if( Req->argc > 0 )
422                 pattern = strtok( Req->argv[0], "," );
423         else
424                 pattern = "*";
425
426         /* Get sender from prefix, if any */
427         if( Client_Type( Client ) == CLIENT_SERVER )
428                 from = Client_Search( Req->prefix );
429         else
430                 from = Client;
431
432         if( ! from )
433                 return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG,
434                                 Client_ID( Client ), Req->prefix );
435
436         if( Req->argc == 2 )
437         {
438                 /* Forward to other server? */
439                 target = Client_Search( Req->argv[1] );
440                 if(( ! target ) || ( Client_Type( target ) != CLIENT_SERVER ))
441                         return IRC_WriteStrClient( from, ERR_NOSUCHSERVER_MSG,
442                                         Client_ID( Client ), Req->argv[1] );
443
444                 if( target != Client_ThisServer( ))
445                 {
446                         /* Target is indeed an other server, forward it! */
447                         return IRC_WriteStrClientPrefix( target, from,
448                                         "LIST %s :%s", Client_ID( from ),
449                                         Req->argv[1] );
450                 }
451         }
452         
453         while( pattern )
454         {
455                 /* Loop through all the channels */
456                 chan = Channel_First( );
457                 while( chan )
458                 {
459                         /* Check search pattern */
460                         if( Match( pattern, Channel_Name( chan )))
461                         {
462                                 /* Gotcha! */
463                                 if( ! strchr( Channel_Modes( chan ), 's' ) ||
464                                     Channel_IsMemberOf( chan, from ))
465                                 {
466                                         if( ! IRC_WriteStrClient( from,
467                                             RPL_LIST_MSG, Client_ID( from ),
468                                             Channel_Name( chan ),
469                                             Channel_MemberCount( chan ),
470                                             Channel_Topic( chan )))
471                                                 return DISCONNECTED;
472                                 }
473                         }
474                         chan = Channel_Next( chan );
475                 }
476                 
477                 /* Get next name ... */
478                 if( Req->argc > 0 )
479                         pattern = strtok( NULL, "," );
480                 else
481                         pattern = NULL;
482         }
483         
484         return IRC_WriteStrClient( from, RPL_LISTEND_MSG, Client_ID( from ));
485 } /* IRC_LIST */
486
487
488 GLOBAL bool
489 IRC_CHANINFO( CLIENT *Client, REQUEST *Req )
490 {
491         char modes_add[COMMAND_LEN], l[16], *ptr;
492         CLIENT *from;
493         CHANNEL *chan;
494         int arg_topic;
495
496         assert( Client != NULL );
497         assert( Req != NULL );
498
499         /* Bad number of parameters? */
500         if(( Req->argc < 2 ) || ( Req->argc == 4 ) || ( Req->argc > 5 )) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
501
502         /* Compatibility kludge */
503         if( Req->argc == 5 ) arg_topic = 4;
504         else if( Req->argc == 3 ) arg_topic = 2;
505         else arg_topic = -1;
506
507         /* Search origin */
508         from = Client_Search( Req->prefix );
509         if( ! from ) return IRC_WriteStrClient( Client, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->prefix );
510
511         /* Search or create channel */
512         chan = Channel_Search( Req->argv[0] );
513         if( ! chan ) chan = Channel_Create( Req->argv[0] );
514         if( ! chan ) return CONNECTED;
515
516         if( Req->argv[1][0] == '+' )
517         {
518                 ptr = Channel_Modes( chan );
519                 if( ! *ptr )
520                 {
521                         /* OK, this channel doesn't have modes jet, set the received ones: */
522                         Channel_SetModes( chan, &Req->argv[1][1] );
523
524                         if( Req->argc == 5 )
525                         {
526                                 if( strchr( Channel_Modes( chan ), 'k' )) Channel_SetKey( chan, Req->argv[2] );
527                                 if( strchr( Channel_Modes( chan ), 'l' )) Channel_SetMaxUsers( chan, atol( Req->argv[3] ));
528                         }
529                         else
530                         {
531                                 /* Delete modes which we never want to inherit */
532                                 Channel_ModeDel( chan, 'l' );
533                                 Channel_ModeDel( chan, 'k' );
534                         }
535
536                         strcpy( modes_add, "" );
537                         ptr = Channel_Modes( chan );
538                         while( *ptr )
539                         {
540                                 if( *ptr == 'l' )
541                                 {
542                                         snprintf( l, sizeof( l ), " %lu", Channel_MaxUsers( chan ));
543                                         strlcat( modes_add, l, sizeof( modes_add ));
544                                 }
545                                 if( *ptr == 'k' )
546                                 {
547                                         strlcat( modes_add, " ", sizeof( modes_add ));
548                                         strlcat( modes_add, Channel_Key( chan ), sizeof( modes_add ));
549                                 }
550                                 ptr++;
551                         }
552                         
553                         /* Inform members of this channel */
554                         IRC_WriteStrChannelPrefix( Client, chan, from, false, "MODE %s +%s%s", Req->argv[0], Channel_Modes( chan ), modes_add );
555                 }
556         }
557         else Log( LOG_WARNING, "CHANINFO: invalid MODE format ignored!" );
558
559         if( arg_topic > 0 )
560         {
561                 /* We got a topic */
562                 ptr = Channel_Topic( chan );
563                 if(( ! *ptr ) && ( Req->argv[arg_topic][0] ))
564                 {
565                         /* OK, there is no topic jet */
566                         Channel_SetTopic(chan, Client, Req->argv[arg_topic]);
567                         IRC_WriteStrChannelPrefix(Client, chan, from, false,
568                              "TOPIC %s :%s", Req->argv[0], Channel_Topic(chan));
569                 }
570         }
571
572         /* Forward CHANINFO to other serevrs */
573         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] );
574         else if( Req->argc == 3 ) IRC_WriteStrServersPrefixFlag( Client, from, 'C', "CHANINFO %s %s :%s", Req->argv[0], Req->argv[1], Req->argv[2] );
575         else IRC_WriteStrServersPrefixFlag( Client, from, 'C', "CHANINFO %s %s", Req->argv[0], Req->argv[1] );
576
577         return CONNECTED;
578 } /* IRC_CHANINFO */
579
580
581 /* -eof- */