]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/channels.cpp
Remove an extern, partly because it's unused, partly because it then gets shadowed...
[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::SetCustomMode(char mode,bool mode_on)
61 {
62         modes[mode-65] = mode_on;
63         if (!mode_on)
64                 this->SetCustomModeParam(mode,"",false);
65 }
66
67
68 void chanrec::SetCustomModeParam(char mode,char* parameter,bool mode_on)
69 {
70         log(DEBUG,"SetCustomModeParam 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                                         if (!MOD_RESULT)
352                                         {
353                                                 for (BanList::iterator i = Ptr->bans.begin(); i != Ptr->bans.end(); i++)
354                                                 {
355                                                         if ((match(user->GetFullHost(),i->data)) || (match(user->GetFullRealHost(),i->data)) || (match((char*)inet_ntoa(user->ip4),i->data)))
356                                                         {
357                                                                 WriteServ(user->fd,"474 %s %s :Cannot join channel (You're banned)",user->nick, Ptr->name);
358                                                                 return NULL;
359                                                         }
360                                                 }
361                                         }
362                                 }
363                         }
364                 }
365                 else
366                 {
367                         log(DEBUG,"Overridden checks");
368                 }
369                 created = 1;
370         }
371
372         log(DEBUG,"Passed channel checks");
373
374         for (UserChanList::const_iterator index = user->chans.begin(); index != user->chans.end(); index++)
375         {
376                 if ((*index)->channel == NULL)
377                 {
378                         return ForceChan(Ptr, *index, user, created);
379                 }
380         }
381
382         /*
383          * XXX: If the user is an oper here, we can just extend their user->chans vector by one
384          * and put the channel in here. Same for remote users which are not bound by
385          * the channel limits. Otherwise, nope, youre boned.
386          */
387         if (!IS_LOCAL(user)) /* was a check on fd < 0 */
388         {
389                 ucrec* a = new ucrec();
390                 chanrec* c = ForceChan(Ptr,a,user,created);
391                 user->chans.push_back(a);
392                 return c;
393         }
394         else if (*user->oper)
395         {
396                 /* Oper allows extension up to the OPERMAXCHANS value */
397                 if (user->chans.size() < OPERMAXCHANS)
398                 {
399                         ucrec* a = new ucrec();
400                         chanrec* c = ForceChan(Ptr,a,user,created);
401                         user->chans.push_back(a);
402                         return c;
403                 }
404         }
405
406         log(DEBUG,"add_channel: user channel max exceeded: %s %s",user->nick,cname);
407         WriteServ(user->fd,"405 %s %s :You are on too many channels",user->nick, cname);
408
409         if (created == 2)
410         {
411                 log(DEBUG,"BLAMMO, Whacking channel.");
412                 /* Things went seriously pear shaped, so take this away. bwahaha. */
413                 chan_hash::iterator n = chanlist.find(cname);
414                 if (n != chanlist.end())
415                 {
416                         Ptr->DelUser(user);
417                         delete Ptr;
418                         chanlist.erase(n);
419                         for (unsigned int index =0; index < user->chans.size(); index++)
420                         {
421                                 if (user->chans[index]->channel == Ptr)
422                                 {
423                                         user->chans[index]->channel = NULL;
424                                         user->chans[index]->uc_modes = 0;       
425                                 }
426                         }
427                 }
428         }
429         return NULL;
430 }
431
432 chanrec* ForceChan(chanrec* Ptr,ucrec *a,userrec* user, int created)
433 {
434         if (created == 2)
435         {
436                 /* first user in is given ops */
437                 a->uc_modes = UCMODE_OP;
438                 Ptr->AddOppedUser(user);
439         }
440         else
441         {
442                 a->uc_modes = 0;
443         }
444
445         a->channel = Ptr;
446         Ptr->AddUser(user);
447         WriteChannel(Ptr,user,"JOIN :%s",Ptr->name);
448
449         /* Major improvement by Brain - we dont need to be calculating all this pointlessly for remote users */
450         if (IS_LOCAL(user))
451         {
452                 log(DEBUG,"Sent JOIN to client");
453                 if (Ptr->topicset)
454                 {
455                         WriteServ(user->fd,"332 %s %s :%s", user->nick, Ptr->name, Ptr->topic);
456                         WriteServ(user->fd,"333 %s %s %s %lu", user->nick, Ptr->name, Ptr->setby, (unsigned long)Ptr->topicset);
457                 }
458                 userlist(user,Ptr);
459                 WriteServ(user->fd,"366 %s %s :End of /NAMES list.", user->nick, Ptr->name);
460         }
461         FOREACH_MOD(I_OnUserJoin,OnUserJoin(user,Ptr));
462         return Ptr;
463 }
464
465 /*
466  *remove a channel from a users record, and remove the record from memory
467  * if the channel has become empty
468  */
469
470 chanrec* del_channel(userrec *user, const char* cname, const char* reason, bool local)
471 {
472         if ((!user) || (!cname))
473         {
474                 log(DEFAULT,"*** BUG *** del_channel was given an invalid parameter");
475                 return NULL;
476         }
477
478         chanrec* Ptr = FindChan(cname);
479
480         if (!Ptr)
481                 return NULL;
482
483         log(DEBUG,"del_channel: removing: %s %s",user->nick,Ptr->name);
484
485         for (unsigned int i =0; i < user->chans.size(); i++)
486         {
487                 /* zap it from the channel list of the user */
488                 if (user->chans[i]->channel == Ptr)
489                 {
490                         if (reason)
491                         {
492                                 FOREACH_MOD(I_OnUserPart,OnUserPart(user,Ptr,reason));
493                                 WriteChannel(Ptr,user,"PART %s :%s",Ptr->name, reason);
494                         }
495                         else
496                         {
497                                 FOREACH_MOD(I_OnUserPart,OnUserPart(user,Ptr,""));
498                                 WriteChannel(Ptr,user,"PART :%s",Ptr->name);
499                         }
500                         user->chans[i]->uc_modes = 0;
501                         user->chans[i]->channel = NULL;
502                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
503                         break;
504                 }
505         }
506
507         Ptr->DelUser(user);
508
509         /* if there are no users left on the channel */
510         if (!usercount(Ptr))
511         {
512                 chan_hash::iterator iter = chanlist.find(Ptr->name);
513
514                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
515
516                 /* kill the record */
517                 if (iter != chanlist.end())
518                 {
519                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
520                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(Ptr));
521                         delete Ptr;
522                         chanlist.erase(iter);
523                 }
524         }
525
526         return NULL;
527 }
528
529 void server_kick_channel(userrec* user, chanrec* Ptr, char* reason, bool triggerevents)
530 {
531         if ((!user) || (!Ptr) || (!reason))
532         {
533                 return;
534         }
535
536         if (IS_LOCAL(user))
537         {
538                 if (!Ptr->HasUser(user))
539                 {
540                         /* Not on channel */
541                         return;
542                 }
543         }
544         
545         if (triggerevents)
546         {
547                 FOREACH_MOD(I_OnUserKick,OnUserKick(NULL,user,Ptr,reason));
548         }
549
550         for (unsigned int i =0; i < user->chans.size(); i++)
551         {
552                 if ((user->chans[i]->channel) && (user->chans[i]->channel == Ptr))
553                 {
554                         WriteChannelWithServ(Config->ServerName,Ptr,"KICK %s %s :%s",Ptr->name, user->nick, reason);
555                         user->chans[i]->uc_modes = 0;
556                         user->chans[i]->channel = NULL;
557                         break;
558                 }
559         }
560
561         Ptr->DelUser(user);
562
563         if (!usercount(Ptr))
564         {
565                 chan_hash::iterator iter = chanlist.find(Ptr->name);
566                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
567                 /* kill the record */
568                 if (iter != chanlist.end())
569                 {
570                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
571                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(Ptr));
572                         delete Ptr;
573                         chanlist.erase(iter);
574                 }
575         }
576 }
577
578 void kick_channel(userrec *src,userrec *user, chanrec *Ptr, char* reason)
579 {
580         if ((!src) || (!user) || (!Ptr) || (!reason))
581         {
582                 log(DEFAULT,"*** BUG *** kick_channel was given an invalid parameter");
583                 return;
584         }
585
586         log(DEBUG,"kick_channel: removing: %s %s %s",user->nick,Ptr->name,src->nick);
587
588         if (IS_LOCAL(src))
589         {
590                 if (!Ptr->HasUser(user))
591                 {
592                         WriteServ(src->fd,"441 %s %s %s :They are not on that channel",src->nick, user->nick, Ptr->name);
593                         return;
594                 }
595                 int MOD_RESULT = 0;
596
597                 if (!is_uline(src->server))
598                 {
599                         MOD_RESULT = 0;
600                         FOREACH_RESULT(I_OnUserPreKick,OnUserPreKick(src,user,Ptr,reason));
601                         if (MOD_RESULT == 1)
602                                 return;
603                 }
604                 /* Set to -1 by OnUserPreKick if explicit allow was set */
605                 if (MOD_RESULT != -1)
606                 {
607                         FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(src,user,Ptr,AC_KICK));
608                         if ((MOD_RESULT == ACR_DENY) && (!is_uline(src->server)))
609                                 return;
610         
611                         if ((MOD_RESULT == ACR_DEFAULT) || (!is_uline(src->server)))
612                         {
613                                 if ((cstatus(src,Ptr) < STATUS_HOP) || (cstatus(src,Ptr) < cstatus(user,Ptr)))
614                                 {
615                                         if (cstatus(src,Ptr) == STATUS_HOP)
616                                         {
617                                                 WriteServ(src->fd,"482 %s %s :You must be a channel operator",src->nick, Ptr->name);
618                                         }
619                                         else
620                                         {
621                                                 WriteServ(src->fd,"482 %s %s :You must be at least a half-operator",src->nick, Ptr->name);
622                                         }
623                 
624                                         return;
625                                 }
626                         }
627                 }
628         }
629
630         FOREACH_MOD(I_OnUserKick,OnUserKick(src,user,Ptr,reason));
631                         
632         for (UserChanList::const_iterator i = user->chans.begin(); i != user->chans.end(); i++)
633         {
634                 /* zap it from the channel list of the user */
635                 if ((*i)->channel && ((*i)->channel == Ptr))
636                 {
637                         WriteChannel(Ptr,src,"KICK %s %s :%s",Ptr->name, user->nick, reason);
638                         (*i)->uc_modes = 0;
639                         (*i)->channel = NULL;
640                         log(DEBUG,"del_channel: unlinked: %s %s",user->nick,Ptr->name);
641                         break;
642                 }
643         }
644
645         if (!Ptr->DelUser(user))
646         /* if there are no users left on the channel */
647         {
648                 chan_hash::iterator iter = chanlist.find(Ptr->name);
649
650                 log(DEBUG,"del_channel: destroying channel: %s",Ptr->name);
651
652                 /* kill the record */
653                 if (iter != chanlist.end())
654                 {
655                         log(DEBUG,"del_channel: destroyed: %s",Ptr->name);
656                         FOREACH_MOD(I_OnChannelDelete,OnChannelDelete(Ptr));
657                         delete Ptr;
658                         chanlist.erase(iter);
659                 }
660         }
661 }