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