]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/channels.cpp
kick_channel -> chanrec::KickUser(), server_kick_channel -> chanrec::ServerKickUser()
[user/henk/code/inspircd.git] / src / channels.cpp
1 /*   +------------------------------------+
2  *   | Inspire Internet Relay Chat Daemon |
3  *   +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *   E-mail:
7  *        <brain@chatspike.net>
8  *        <Craig@chatspike.net>
9  * 
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *      the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include <string>
20 #include <map>
21 #include <sstream>
22 #include <vector>
23 #include <deque>
24 #include "configreader.h"
25 #include "inspircd.h"
26 #include "hash_map.h"
27 #include "users.h"
28 #include "ctables.h"
29 #include "globals.h"
30 #include "modules.h"
31 #include "dynamic.h"
32 #include "commands.h"
33 #include "wildcard.h"
34 #include "message.h"
35 #include "mode.h"
36 #include "xline.h"
37 #include "inspstring.h"
38 #include "helperfuncs.h"
39 #include "typedefs.h"
40
41 extern ServerConfig* Config;
42
43 extern int MODCOUNT;
44 extern std::vector<Module*> modules;
45 extern std::vector<ircd_module*> factory;
46 extern time_t TIME;
47 extern chan_hash chanlist;
48
49
50 chanrec* ForceChan(chanrec* Ptr,ucrec *a,userrec* user, int created);
51
52 chanrec::chanrec()
53 {
54         *name = *topic = *setby = *key = 0;
55         created = topicset = limit = 0;
56         internal_userlist.clear();
57         memset(&modes,0,64);
58 }
59
60 void chanrec::SetMode(char mode,bool mode_on)
61 {
62         modes[mode-65] = mode_on;
63         if (!mode_on)
64                 this->SetModeParam(mode,"",false);
65 }
66
67
68 void chanrec::SetModeParam(char mode,const char* parameter,bool mode_on)
69 {
70         log(DEBUG,"SetModeParam called");
71         
72         CustomModeList::iterator n = custom_mode_params.find(mode);     
73
74         if (mode_on)
75         {
76                 if (n == custom_mode_params.end())
77                 {
78                         custom_mode_params[mode] = strdup(parameter);
79                         log(DEBUG,"Custom mode parameter %c %s added",mode,parameter);
80                 }
81                 else
82                 {
83                         log(DEBUG, "Tried to set custom mode parameter for %c '%s' when it was already '%s'", mode, parameter, n->second);
84                 }
85         }
86         else
87         {
88                 if (n != custom_mode_params.end())
89                 {
90                         free(n->second);
91                         custom_mode_params.erase(n);
92                 }
93         }
94 }
95
96 bool chanrec::IsModeSet(char mode)
97 {
98         return modes[mode-65];
99 }
100
101 std::string chanrec::GetModeParameter(char mode)
102 {
103         if (mode == 'k')
104         {
105                 return this->key;
106         }
107         else if (mode == 'l')
108         {
109                 return ConvToStr(this->limit);
110         }
111         else
112         {
113                 CustomModeList::iterator n = custom_mode_params.find(mode);
114                 if (n != custom_mode_params.end())
115                 {
116                         return n->second;
117                 }
118                 return "";
119         }
120 }
121
122 long chanrec::GetUserCounter()
123 {
124         return (this->internal_userlist.size());
125 }
126
127 void chanrec::AddUser(userrec* user)
128 {
129         internal_userlist[user] = user;
130 }
131
132 unsigned long chanrec::DelUser(userrec* user)
133 {
134         CUListIter a = internal_userlist.find(user);
135         
136         if (a != internal_userlist.end())
137         {
138                 internal_userlist.erase(a);
139                 /* And tidy any others... */
140                 DelOppedUser(user);
141                 DelHalfoppedUser(user);
142                 DelVoicedUser(user);
143         }
144         
145         return internal_userlist.size();
146 }
147
148 bool chanrec::HasUser(userrec* user)
149 {
150         return (internal_userlist.find(user) != internal_userlist.end());
151 }
152
153 void chanrec::AddOppedUser(userrec* user)
154 {
155         internal_op_userlist[user] = user;
156 }
157
158 void chanrec::DelOppedUser(userrec* user)
159 {
160         CUListIter a = internal_op_userlist.find(user);
161         if (a != internal_op_userlist.end())
162         {
163                 internal_op_userlist.erase(a);
164                 return;
165         }
166 }
167
168 void chanrec::AddHalfoppedUser(userrec* user)
169 {
170         internal_halfop_userlist[user] = user;
171 }
172
173 void chanrec::DelHalfoppedUser(userrec* user)
174 {
175         CUListIter a = internal_halfop_userlist.find(user);
176
177         if (a != internal_halfop_userlist.end())
178         {   
179                 internal_halfop_userlist.erase(a);
180         }
181 }
182
183 void chanrec::AddVoicedUser(userrec* user)
184 {
185         internal_voice_userlist[user] = user;
186 }
187
188 void chanrec::DelVoicedUser(userrec* user)
189 {
190         CUListIter a = internal_voice_userlist.find(user);
191         
192         if (a != internal_voice_userlist.end())
193         {
194                 internal_voice_userlist.erase(a);
195         }
196 }
197
198 CUList* chanrec::GetUsers()
199 {
200         return &internal_userlist;
201 }
202
203 CUList* chanrec::GetOppedUsers()
204 {
205         return &internal_op_userlist;
206 }
207
208 CUList* chanrec::GetHalfoppedUsers()
209 {
210         return &internal_halfop_userlist;
211 }
212
213 CUList* chanrec::GetVoicedUsers()
214 {
215         return &internal_voice_userlist;
216 }
217
218 /* 
219  * add a channel to a user, creating the record for it if needed and linking
220  * it to the user record 
221  */
222
223 chanrec* add_channel(userrec *user, const char* cn, const char* key, bool override)
224 {
225         if ((!user) || (!cn))
226         {
227                 log(DEFAULT,"*** BUG *** add_channel was given an invalid parameter");
228                 return 0;
229         }
230
231         int created = 0;
232         char cname[MAXBUF];
233         int MOD_RESULT = 0;
234         strlcpy(cname,cn,CHANMAX);
235         log(DEBUG,"cname='%s' cn='%s'",cname,cn);
236
237         log(DEBUG,"add_channel: %s %s",user->nick,cname);
238
239         chanrec* Ptr = FindChan(cname);
240
241         if (!Ptr)
242         {
243                 if (user->fd > -1)
244                 {
245                         MOD_RESULT = 0;
246                         FOREACH_RESULT(I_OnUserPreJoin,OnUserPreJoin(user,NULL,cname));
247                         if (MOD_RESULT == 1)
248                                 return NULL;
249                 }
250
251                 /* create a new one */
252                 chanlist[cname] = new chanrec();
253                 strlcpy(chanlist[cname]->name, cname,CHANMAX);
254                 chanlist[cname]->modes[CM_TOPICLOCK] = chanlist[cname]->modes[CM_NOEXTERNAL] = 1;
255                 //chanlist[cname]->binarymodes = CM_TOPICLOCK | CM_NOEXTERNAL;
256                 chanlist[cname]->created = TIME;
257                 *chanlist[cname]->topic = 0;
258                 strlcpy(chanlist[cname]->setby, user->nick,NICKMAX-1);
259                 chanlist[cname]->topicset = 0;
260                 Ptr = chanlist[cname];
261                 log(DEBUG,"add_channel: created: %s",cname);
262                 /*
263                  * set created to 2 to indicate user
264                  * is the first in the channel
265                  * and should be given ops
266                  */
267                 created = 2;
268         }
269         else
270         {
271                 /* Already on the channel */
272                 if (Ptr->HasUser(user))
273                         return NULL;
274
275                 /*
276                  * remote users are allowed us to bypass channel modes
277                  * and bans (used by servers)
278                  */
279                 if (IS_LOCAL(user)) /* was a check on fd > -1 */
280                 {
281                         MOD_RESULT = 0;
282                         FOREACH_RESULT(I_OnUserPreJoin,OnUserPreJoin(user,Ptr,cname));
283                         if (MOD_RESULT == 1)
284                         {
285                                 return NULL;
286                         }
287                         else if (MOD_RESULT == 0)
288                         {
289                                 if (*Ptr->key)
290                                 {
291                                         MOD_RESULT = 0;
292                                         FOREACH_RESULT(I_OnCheckKey,OnCheckKey(user, Ptr, key ? key : ""));
293                                         if (!MOD_RESULT)
294                                         {
295                                                 if (!key)
296                                                 {
297                                                         log(DEBUG,"add_channel: no key given in JOIN");
298                                                         WriteServ(user->fd,"475 %s %s :Cannot join channel (Requires key)",user->nick, Ptr->name);
299                                                         return NULL;
300                                                 }
301                                                 else
302                                                 {
303                                                         if (strcmp(key,Ptr->key))
304                                                         {
305                                                                 log(DEBUG,"add_channel: bad key given in JOIN");
306                                                                 WriteServ(user->fd,"475 %s %s :Cannot join channel (Incorrect key)",user->nick, Ptr->name);
307                                                                 return NULL;
308                                                         }
309                                                 }
310                                         }
311                                 }
312                                 if (Ptr->modes[CM_INVITEONLY])
313                                 {
314                                         MOD_RESULT = 0;
315                                         irc::string xname(Ptr->name);
316                                         FOREACH_RESULT(I_OnCheckInvite,OnCheckInvite(user, Ptr));
317                                         if (!MOD_RESULT)
318                                         {
319                                                 log(DEBUG,"add_channel: channel is +i");
320                                                 if (user->IsInvited(xname))
321                                                 {
322                                                         /* user was invited to channel */
323                                                         /* there may be an optional channel NOTICE here */
324                                                 }
325                                                 else
326                                                 {
327                                                         WriteServ(user->fd,"473 %s %s :Cannot join channel (Invite only)",user->nick, Ptr->name);
328                                                         return NULL;
329                                                 }
330                                         }
331                                         user->RemoveInvite(xname);
332                                 }
333                                 if (Ptr->limit)
334                                 {
335                                         MOD_RESULT = 0;
336                                         FOREACH_RESULT(I_OnCheckLimit,OnCheckLimit(user, Ptr));
337                                         if (!MOD_RESULT)
338                                         {
339                                                 if (usercount(Ptr) >= Ptr->limit)
340                                                 {
341                                                         WriteServ(user->fd,"471 %s %s :Cannot join channel (Channel is full)",user->nick, Ptr->name);
342                                                         return NULL;
343                                                 }
344                                         }
345                                 }
346                                 if (Ptr->bans.size())
347                                 {
348                                         log(DEBUG,"add_channel: about to walk banlist");
349                                         MOD_RESULT = 0;
350                                         FOREACH_RESULT(I_OnCheckBan,OnCheckBan(user, Ptr));
351                                         char mask[MAXBUF];
352                                         sprintf(mask,"%s!%s@%s",user->nick, user->ident, user->GetIPString());
353                                         if (!MOD_RESULT)
354                                         {
355                                                 for (BanList::iterator i = Ptr->bans.begin(); i != Ptr->bans.end(); i++)
356                                                 {
357                                                         /* This allows CIDR ban matching
358                                                          * 
359                                                          *          Full masked host                        Full unmasked host                     IP with/without CIDR
360                                                          */
361                                                         if ((match(user->GetFullHost(),i->data)) || (match(user->GetFullRealHost(),i->data)) || (match(mask, i->data, true)))
362                                                         {
363                                                                 WriteServ(user->fd,"474 %s %s :Cannot join channel (You're banned)",user->nick, Ptr->name);
364                                                                 return NULL;
365                                                         }
366                                                 }
367                                         }
368                                 }
369                         }
370                 }
371                 else
372                 {
373                         log(DEBUG,"Overridden checks");
374                 }
375                 created = 1;
376         }
377
378         log(DEBUG,"Passed channel checks");
379
380         for (UserChanList::const_iterator index = user->chans.begin(); index != user->chans.end(); index++)
381         {
382                 if ((*index)->channel == NULL)
383                 {
384                         return ForceChan(Ptr, *index, user, created);
385                 }
386         }
387
388         /*
389          * XXX: If the user is an oper here, we can just extend their user->chans vector by one
390          * and put the channel in here. Same for remote users which are not bound by
391          * the channel limits. Otherwise, nope, youre boned.
392          */
393         if (!IS_LOCAL(user)) /* was a check on fd < 0 */
394         {
395                 ucrec* a = new ucrec();
396                 chanrec* c = ForceChan(Ptr,a,user,created);
397                 user->chans.push_back(a);
398                 return c;
399         }
400         else if (*user->oper)
401         {
402                 /* Oper allows extension up to the OPERMAXCHANS value */
403                 if (user->chans.size() < OPERMAXCHANS)
404                 {
405                         ucrec* a = new ucrec();
406                         chanrec* c = ForceChan(Ptr,a,user,created);
407                         user->chans.push_back(a);
408                         return c;
409                 }
410         }
411
412         log(DEBUG,"add_channel: user channel max exceeded: %s %s",user->nick,cname);
413         WriteServ(user->fd,"405 %s %s :You are on too many channels",user->nick, cname);
414
415         if (created == 2)
416         {
417                 log(DEBUG,"BLAMMO, Whacking channel.");
418                 /* Things went seriously pear shaped, so take this away. bwahaha. */
419                 chan_hash::iterator n = chanlist.find(cname);
420                 if (n != chanlist.end())
421                 {
422                         Ptr->DelUser(user);
423                         DELETE(Ptr);
424                         chanlist.erase(n);
425                         for (unsigned int index =0; index < user->chans.size(); index++)
426                         {
427                                 if (user->chans[index]->channel == Ptr)
428                                 {
429                                         user->chans[index]->channel = NULL;
430                                         user->chans[index]->uc_modes = 0;       
431                                 }
432                         }
433                 }
434         }
435         else
436         {
437                 for (unsigned int index =0; index < user->chans.size(); index++)
438                 {
439                         if (user->chans[index]->channel == Ptr)
440                         {
441                                 user->chans[index]->channel = NULL;
442                                 user->chans[index]->uc_modes = 0;
443                         }
444                 }
445         }
446         return NULL;
447 }
448
449 chanrec* ForceChan(chanrec* Ptr,ucrec *a,userrec* user, int created)
450 {
451         if (created == 2)
452         {
453                 /* first user in is given ops */
454                 a->uc_modes = UCMODE_OP;
455                 Ptr->AddOppedUser(user);
456         }
457         else
458         {
459                 a->uc_modes = 0;
460         }
461
462         a->channel = Ptr;
463         Ptr->AddUser(user);
464         WriteChannel(Ptr,user,"JOIN :%s",Ptr->name);
465
466         /* Major improvement by Brain - we dont need to be calculating all this pointlessly for remote users */
467         if (IS_LOCAL(user))
468         {
469                 log(DEBUG,"Sent JOIN to client");
470                 if (Ptr->topicset)
471                 {
472                         WriteServ(user->fd,"332 %s %s :%s", user->nick, Ptr->name, Ptr->topic);
473                         WriteServ(user->fd,"333 %s %s %s %lu", user->nick, Ptr->name, Ptr->setby, (unsigned long)Ptr->topicset);
474                 }
475                 userlist(user,Ptr);
476                 WriteServ(user->fd,"366 %s %s :End of /NAMES list.", user->nick, Ptr->name);
477         }
478         FOREACH_MOD(I_OnUserJoin,OnUserJoin(user,Ptr));
479         return Ptr;
480 }
481
482 /*
483  *remove a channel from a users record, and remove the record from memory
484  * if the channel has become empty
485  */
486
487 chanrec* del_channel(userrec *user, const char* cname, const char* reason, bool local)
488 {
489         if ((!user) || (!cname))
490         {
491                 log(DEFAULT,"*** BUG *** del_channel was given an invalid parameter");
492                 return NULL;
493         }
494
495         chanrec* Ptr = FindChan(cname);
496
497         if (!Ptr)
498                 return NULL;
499
500         log(DEBUG,"del_channel: removing: %s %s",user->nick,Ptr->name);
501
502         for (unsigned int i =0; i < user->chans.size(); i++)
503         {
504                 /* zap it from the channel list of the user */
505                 if (user->chans[i]->channel == Ptr)
506                 {
507                         if (reason)
508                         {
509                                 FOREACH_MOD(I_OnUserPart,OnUserPart(user,Ptr,reason));
510                                 WriteChannel(Ptr,user,"PART %s :%s",Ptr->name, reason);
511                         }
512                         else
513                         {
514                                 FOREACH_MOD(I_OnUserPart,OnUserPart(user,Ptr,""));
515                                 WriteChannel(Ptr,user,"PART :%s",Ptr->name);
516                         }
517                         user->chans[i]->uc_modes = 0;
518                         user->chans[i]->channel = NULL;
519                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
520                         break;
521                 }
522         }
523
524         Ptr->DelUser(user);
525
526         /* if there are no users left on the channel */
527         if (!usercount(Ptr))
528         {
529                 chan_hash::iterator iter = chanlist.find(Ptr->name);
530
531                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
532
533                 /* kill the record */
534                 if (iter != chanlist.end())
535                 {
536                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
537                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(Ptr));
538                         DELETE(Ptr);
539                         chanlist.erase(iter);
540                 }
541         }
542
543         return NULL;
544 }
545
546 long chanrec::ServerKickUser(userrec* user, const char* reason, bool triggerevents)
547 {
548         if (!user || !reason)
549                 return this->GetUserCounter();
550
551         if (IS_LOCAL(user))
552         {
553                 if (!this->HasUser(user))
554                 {
555                         /* Not on channel */
556                         return this->GetUserCounter();
557                 }
558         }
559
560         if (triggerevents)
561         {
562                 FOREACH_MOD(I_OnUserKick,OnUserKick(NULL,user,this,reason));
563         }
564
565         for (unsigned int i =0; i < user->chans.size(); i++)
566         {
567                 if (user->chans[i]->channel == this)
568                 {
569                         WriteChannelWithServ(Config->ServerName,this,"KICK %s %s :%s",this->name, user->nick, reason);
570                         user->chans[i]->uc_modes = 0;
571                         user->chans[i]->channel = NULL;
572                         break;
573                 }
574         }
575
576         if (!this->DelUser(user))
577         {
578                 chan_hash::iterator iter = chanlist.find(this->name);
579                 /* kill the record */
580                 if (iter != chanlist.end())
581                 {
582                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(this));
583                         chanlist.erase(iter);
584                 }
585                 return 0;
586         }
587
588         return this->GetUserCounter();
589 }
590
591 long chanrec::KickUser(userrec *src, userrec *user, const char* reason)
592 {
593         if (!src || !user || !reason)
594                 return this->GetUserCounter();
595
596         if (IS_LOCAL(src))
597         {
598                 if (!this->HasUser(user))
599                 {
600                         WriteServ(src->fd,"441 %s %s %s :They are not on that channel",src->nick, user->nick, this->name);
601                         return this->GetUserCounter();
602                 }
603                 if ((is_uline(user->server)) && (!is_uline(src->server)))
604                 {
605                         WriteServ(src->fd,"482 %s %s :Only a u-line may kick a u-line from a channel.",src->nick, this->name);
606                         return this->GetUserCounter();
607                 }
608                 int MOD_RESULT = 0;
609
610                 if (!is_uline(src->server))
611                 {
612                         MOD_RESULT = 0;
613                         FOREACH_RESULT(I_OnUserPreKick,OnUserPreKick(src,user,this,reason));
614                         if (MOD_RESULT == 1)
615                                 return this->GetUserCounter();
616                 }
617                 /* Set to -1 by OnUserPreKick if explicit allow was set */
618                 if (MOD_RESULT != -1)
619                 {
620                         FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(src,user,this,AC_KICK));
621                         if ((MOD_RESULT == ACR_DENY) && (!is_uline(src->server)))
622                                 return this->GetUserCounter();
623         
624                         if ((MOD_RESULT == ACR_DEFAULT) || (!is_uline(src->server)))
625                         {
626                                 int them = cstatus(src, this);
627                                 int us = cstatus(user, this);
628                                 if ((them < STATUS_HOP) || (them < us))
629                                 {
630                                         if (them == STATUS_HOP)
631                                         {
632                                                 WriteServ(src->fd,"482 %s %s :You must be a channel operator",src->nick, this->name);
633                                         }
634                                         else
635                                         {
636                                                 WriteServ(src->fd,"482 %s %s :You must be at least a half-operator",src->nick, this->name);
637                                         }
638                                         return this->GetUserCounter();
639                                 }
640                         }
641                 }
642         }
643
644         FOREACH_MOD(I_OnUserKick,OnUserKick(src,user,this,reason));
645                         
646         for (UserChanList::const_iterator i = user->chans.begin(); i != user->chans.end(); i++)
647         {
648                 /* zap it from the channel list of the user */
649                 if ((*i)->channel == this)
650                 {
651                         WriteChannel(this,src,"KICK %s %s :%s",this->name, user->nick, reason);
652                         (*i)->uc_modes = 0;
653                         (*i)->channel = NULL;
654                         break;
655                 }
656         }
657
658         if (!this->DelUser(user))
659         /* if there are no users left on the channel */
660         {
661                 chan_hash::iterator iter = chanlist.find(this->name);
662
663                 /* kill the record */
664                 if (iter != chanlist.end())
665                 {
666                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(this));
667                         chanlist.erase(iter);
668                 }
669                 return 0;
670         }
671
672         return this->GetUserCounter();
673 }