]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/mode.cpp
e11103fee324e5417ca7d8d30ac79cb031087254
[user/henk/code/inspircd.git] / src / mode.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 "configreader.h"
22 #include <unistd.h>
23 #include "hash_map.h"
24 #include "connection.h"
25 #include "users.h"
26 #include "modules.h"
27 #include "message.h"
28 #include "inspstring.h"
29 #include "helperfuncs.h"
30 #include "commands.h"
31 #include "mode.h"
32
33 /* +s (secret) */
34 #include "modes/cmode_s.h"
35 /* +p (private) */
36 #include "modes/cmode_p.h"
37 /* +b (bans) */
38 #include "modes/cmode_b.h"
39 /* +m (moderated) */
40 #include "modes/cmode_m.h"
41 /* +t (only (half) ops can change topic) */
42 #include "modes/cmode_t.h"
43 /* +n (no external messages) */
44 #include "modes/cmode_n.h"
45 /* +i (invite only) */
46 #include "modes/cmode_i.h"
47 /* +k (keyed channel) */
48 #include "modes/cmode_k.h"
49 /* +l (channel user limit) */
50 #include "modes/cmode_l.h"
51
52 extern int MODCOUNT;
53 extern std::vector<Module*> modules;
54 extern std::vector<ircd_module*> factory;
55 extern InspIRCd* ServerInstance;
56 extern ServerConfig* Config;
57
58 extern time_t TIME;
59
60 ModeHandler::ModeHandler(char modeletter, int parameters_on, int parameters_off, bool listmode, ModeType type, bool operonly)
61         : mode(modeletter), n_params_on(parameters_on), n_params_off(parameters_off), list(listmode), m_type(type), oper(operonly)
62 {
63 }
64
65 ModeHandler::~ModeHandler()
66 {
67 }
68
69 bool ModeHandler::IsListMode()
70 {
71         return list;
72 }
73
74 ModeType ModeHandler::GetModeType()
75 {
76         return m_type;
77 }
78
79 bool ModeHandler::NeedsOper()
80 {
81         return oper;
82 }
83
84 int ModeHandler::GetNumParams(bool adding)
85 {
86         return adding ? n_params_on : n_params_off;
87 }
88
89 char ModeHandler::GetModeChar()
90 {
91         return mode;
92 }
93
94 ModeAction ModeHandler::OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
95 {
96         return MODEACTION_DENY;
97 }
98
99 void ModeHandler::DisplayList(userrec* user, chanrec* channel)
100 {
101 }
102
103 bool ModeHandler::CheckTimeStamp(time_t theirs, time_t ours, const std::string &their_param, const std::string &our_param, chanrec* channel)
104 {
105         return (ours < theirs);
106 }
107
108 ModeWatcher::ModeWatcher(char modeletter, ModeType type) : mode(modeletter), m_type(type)
109 {
110 }
111
112 ModeWatcher::~ModeWatcher()
113 {
114 }
115
116 char ModeWatcher::GetModeChar()
117 {
118         return mode;
119 }
120
121 ModeType ModeWatcher::GetModeType()
122 {
123         return m_type;
124 }
125
126 bool ModeWatcher::BeforeMode(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding, ModeType type)
127 {
128         return true;
129 }
130
131 void ModeWatcher::AfterMode(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter, bool adding, ModeType type)
132 {
133 }
134
135 userrec* ModeParser::SanityChecks(userrec *user,char *dest,chanrec *chan,int status)
136 {
137         userrec *d;
138         if ((!user) || (!dest) || (!chan) || (!*dest))
139         {
140                 return NULL;
141         }
142         d = Find(dest);
143         if (!d)
144         {
145                 WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, dest);
146                 return NULL;
147         }
148         return d;
149 }
150
151 char* ModeParser::Grant(userrec *d,chanrec *chan,int MASK)
152 {
153         if (!chan)
154                 return NULL;
155
156         for (std::vector<ucrec*>::const_iterator i = d->chans.begin(); i != d->chans.end(); i++)
157         {
158                 if (((ucrec*)(*i))->channel == chan)
159                 {
160                         if (((ucrec*)(*i))->uc_modes & MASK)
161                         {
162                                 return NULL;
163                         }
164                         ((ucrec*)(*i))->uc_modes = ((ucrec*)(*i))->uc_modes | MASK;
165                         switch (MASK)
166                         {
167                                 case UCMODE_OP:
168                                         ((ucrec*)(*i))->channel->AddOppedUser(d);
169                                 break;
170                                 case UCMODE_HOP:
171                                         ((ucrec*)(*i))->channel->AddHalfoppedUser(d);
172                                 break;
173                                 case UCMODE_VOICE:
174                                         ((ucrec*)(*i))->channel->AddVoicedUser(d);
175                                 break;
176                         }
177                         log(DEBUG,"grant: %s %s",((ucrec*)(*i))->channel->name,d->nick);
178                         return d->nick;
179                 }
180         }
181         return NULL;
182 }
183
184 char* ModeParser::Revoke(userrec *d,chanrec *chan,int MASK)
185 {
186         if (!chan)
187                 return NULL;
188
189         for (std::vector<ucrec*>::const_iterator i = d->chans.begin(); i != d->chans.end(); i++)
190         {
191                 if (((ucrec*)(*i))->channel == chan)
192                 {
193                         if ((((ucrec*)(*i))->uc_modes & MASK) == 0)
194                         {
195                                 return NULL;
196                         }
197                         ((ucrec*)(*i))->uc_modes ^= MASK;
198                         switch (MASK)
199                         {
200                                 case UCMODE_OP:
201                                         ((ucrec*)(*i))->channel->DelOppedUser(d);
202                                 break;
203                                 case UCMODE_HOP:
204                                         ((ucrec*)(*i))->channel->DelHalfoppedUser(d);
205                                 break;
206                                 case UCMODE_VOICE:
207                                         ((ucrec*)(*i))->channel->DelVoicedUser(d);
208                                 break;
209                         }
210                         log(DEBUG,"revoke: %s %s",((ucrec*)(*i))->channel->name,d->nick);
211                         return d->nick;
212                 }
213         }
214         return NULL;
215 }
216
217 char* ModeParser::GiveOps(userrec *user,char *dest,chanrec *chan,int status)
218 {
219         userrec *d = this->SanityChecks(user,dest,chan,status);
220         
221         if (d)
222         {
223                 if (IS_LOCAL(user))
224                 {
225                         int MOD_RESULT = 0;
226                         FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(user,d,chan,AC_OP));
227                         
228                         if (MOD_RESULT == ACR_DENY)
229                                 return NULL;
230                         if (MOD_RESULT == ACR_DEFAULT)
231                         {
232                                 if ((status < STATUS_OP) && (!is_uline(user->server)))
233                                 {
234                                         WriteServ(user->fd,"482 %s %s :You're not a channel operator",user->nick, chan->name);
235                                         return NULL;
236                                 }
237                         }
238                 }
239
240                 return this->Grant(d,chan,UCMODE_OP);
241         }
242         return NULL;
243 }
244
245 char* ModeParser::GiveHops(userrec *user,char *dest,chanrec *chan,int status)
246 {
247         userrec *d = this->SanityChecks(user,dest,chan,status);
248         
249         if (d)
250         {
251                 if (IS_LOCAL(user))
252                 {
253                         int MOD_RESULT = 0;
254                         FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(user,d,chan,AC_HALFOP));
255                 
256                         if (MOD_RESULT == ACR_DENY)
257                                 return NULL;
258                         if (MOD_RESULT == ACR_DEFAULT)
259                         {
260                                 if ((status < STATUS_OP) && (!is_uline(user->server)))
261                                 {
262                                         WriteServ(user->fd,"482 %s %s :You're not a channel operator",user->nick, chan->name);
263                                         return NULL;
264                                 }
265                         }
266                 }
267
268                 return this->Grant(d,chan,UCMODE_HOP);
269         }
270         return NULL;
271 }
272
273 char* ModeParser::GiveVoice(userrec *user,char *dest,chanrec *chan,int status)
274 {
275         userrec *d = this->SanityChecks(user,dest,chan,status);
276         
277         if (d)
278         {
279                 if (IS_LOCAL(user))
280                 {
281                         int MOD_RESULT = 0;
282                         FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(user,d,chan,AC_VOICE));
283                         
284                         if (MOD_RESULT == ACR_DENY)
285                                 return NULL;
286                         if (MOD_RESULT == ACR_DEFAULT)
287                         {
288                                 if ((status < STATUS_HOP) && (!is_uline(user->server)))
289                                 {
290                                         WriteServ(user->fd,"482 %s %s :You must be at least a half-operator to change modes on this channel",user->nick, chan->name);
291                                         return NULL;
292                                 }
293                         }
294                 }
295
296                 return this->Grant(d,chan,UCMODE_VOICE);
297         }
298         return NULL;
299 }
300
301 char* ModeParser::TakeOps(userrec *user,char *dest,chanrec *chan,int status)
302 {
303         userrec *d = this->SanityChecks(user,dest,chan,status);
304         
305         if (d)
306         {
307                 if (IS_LOCAL(user))
308                 {
309                         int MOD_RESULT = 0;
310                         FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(user,d,chan,AC_DEOP));
311                         
312                         if (MOD_RESULT == ACR_DENY)
313                                 return NULL;
314                         if (MOD_RESULT == ACR_DEFAULT)
315                         {
316                                 if ((status < STATUS_OP) && (!is_uline(user->server)) && (IS_LOCAL(user)))
317                                 {
318                                         WriteServ(user->fd,"482 %s %s :You are not a channel operator",user->nick, chan->name);
319                                         return NULL;
320                                 }
321                         }
322                 }
323
324                 return this->Revoke(d,chan,UCMODE_OP);
325         }
326         return NULL;
327 }
328
329 char* ModeParser::TakeHops(userrec *user,char *dest,chanrec *chan,int status)
330 {
331         userrec *d = this->SanityChecks(user,dest,chan,status);
332         
333         if (d)
334         {
335                 if (IS_LOCAL(user))
336                 {
337                         int MOD_RESULT = 0;
338                         FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(user,d,chan,AC_DEHALFOP));
339                         
340                         if (MOD_RESULT == ACR_DENY)
341                                 return NULL;
342                         if (MOD_RESULT == ACR_DEFAULT)
343                         {
344                                 /* Tweak by Brain suggested by w00t, allow a halfop to dehalfop themselves */
345                                 if ((user != d) && ((status < STATUS_OP) && (!is_uline(user->server))))
346                                 {
347                                         WriteServ(user->fd,"482 %s %s :You are not a channel operator",user->nick, chan->name);
348                                         return NULL;
349                                 }
350                         }
351                 }
352
353                 return this->Revoke(d,chan,UCMODE_HOP);
354         }
355         return NULL;
356 }
357
358 char* ModeParser::TakeVoice(userrec *user,char *dest,chanrec *chan,int status)
359 {
360         userrec *d = this->SanityChecks(user,dest,chan,status);
361
362         if (d)  
363         {
364                 if (IS_LOCAL(user))
365                 {
366                         int MOD_RESULT = 0;
367                         FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(user,d,chan,AC_DEVOICE));
368                         
369                         if (MOD_RESULT == ACR_DENY)
370                                 return NULL;
371                         if (MOD_RESULT == ACR_DEFAULT)
372                         {
373                                 if ((status < STATUS_HOP) && (!is_uline(user->server)))
374                                 {
375                                         WriteServ(user->fd,"482 %s %s :You must be at least a half-operator to change modes on this channel",user->nick, chan->name);
376                                         return NULL;
377                                 }
378                         }
379                 }
380
381                 return this->Revoke(d,chan,UCMODE_VOICE);
382         }
383         return NULL;
384 }
385
386 void ModeParser::Process(char **parameters, int pcnt, userrec *user, bool servermode)
387 {
388         std::string target = parameters[0];
389         ModeType type = MODETYPE_USER;
390         unsigned char mask = 0;
391         chanrec* targetchannel = FindChan(parameters[0]);
392         userrec* targetuser  = Find(parameters[0]);
393
394         log(DEBUG,"ModeParser::Process start");
395
396         if (pcnt > 1)
397         {
398                 if (targetchannel)
399                 {
400                         log(DEBUG,"Target type is CHANNEL");
401                         type = MODETYPE_CHANNEL;
402                         mask = MASK_CHANNEL;
403                 }
404                 else if (targetuser)
405                 {
406                         log(DEBUG,"Target type is USER");
407                         type = MODETYPE_USER;
408                         mask = MASK_USER;
409                 }
410                 else
411                 {
412                         /* No such nick/channel */
413                         log(DEBUG,"Target type is UNKNOWN, bailing");
414                         return;
415                 }
416                 std::string mode_sequence = parameters[1];
417                 std::string parameter = "";
418                 std::ostringstream parameter_list;
419                 std::string output_sequence = "";
420                 bool adding = true, state_change = false;
421                 int handler_id = 0;
422                 int parameter_counter = 2; /* Index of first parameter */
423
424                 for (std::string::const_iterator letter = mode_sequence.begin(); letter != mode_sequence.end(); letter++)
425                 {
426                         unsigned char modechar = *letter;
427
428                         switch (modechar)
429                         {
430
431                                 log(DEBUG,"Iterate mode letter %c",modechar);
432
433                                 /* NB:
434                                  * For + and - mode characters, we don't just stick the character into the output sequence.
435                                  * This is because the user may do something dumb, like: +-+ooo or +oo-+. To prevent this
436                                  * appearing in the output sequence, we store a flag which says there was a state change,
437                                  * which is set on any + or -, however, the + or - that we finish on is only appended to
438                                  * the output stream in the event it is followed by a non "+ or -" character, such as o or v.
439                                  */
440                                 case '+':
441                                         /* The following expression prevents: +o+o nick nick, compressing it to +oo nick nick,
442                                          * however, will allow the + if it is the first item in the sequence, regardless.
443                                          */
444                                         if ((!adding) || (!output_sequence.length()))
445                                                 state_change = true;
446                                         adding = true;
447                                         continue;
448                                 break;
449                                 case '-':
450                                         if ((adding) || (!output_sequence.length()))
451                                                 state_change = true;
452                                         adding = false;
453                                         continue;
454                                 break;
455                                 default:
456
457                                         /**
458                                          * Watch carefully for the sleight of hand trick.
459                                          * 65 is the ascii value of 'A'. We take this from
460                                          * the char we're looking at to get a number between
461                                          * 1 and 127. We then logic-or it to get the hashed
462                                          * position, dependent on wether its a channel or
463                                          * a user mode. This is a little stranger, but a lot
464                                          * faster, than using a map of pairs.
465                                          */
466                                         handler_id = (modechar - 65) | mask;
467
468                                         if (modehandlers[handler_id])
469                                         {
470                                                 bool abort = false;
471
472                                                 log(DEBUG,"Found a ModeHandler* for mode %c",modechar);
473
474                                                 for (ModeWatchIter watchers = modewatchers[handler_id].begin(); watchers != modewatchers[handler_id].end(); watchers++)
475                                                 {
476                                                         log(DEBUG,"Call a ModeWatcher*");
477                                                         if ((*watchers)->BeforeMode(user, targetuser, targetchannel, parameter, adding, type) == MODEACTION_DENY)
478                                                                 abort = true;
479                                                 }
480                                                 if ((modehandlers[handler_id]->GetModeType() == type) && (!abort))
481                                                 {
482                                                         log(DEBUG,"Modetype match, calling handler");
483
484                                                         if (modehandlers[handler_id]->GetNumParams(adding))
485                                                         {
486                                                                 log(DEBUG,"ModeHandler* for this mode says it has parameters. pcnt=%d parameter_counter=%d",pcnt,parameter_counter);
487
488                                                                 if (parameter_counter < pcnt)
489                                                                 {
490                                                                         parameter = parameters[parameter_counter++];
491                                                                 }
492                                                                 else
493                                                                 {
494                                                                         /* No parameter, continue to the next mode */
495                                                                         continue;
496                                                                 }
497                                                         }
498                                                         ModeAction ma = modehandlers[handler_id]->OnModeChange(user, targetuser, targetchannel, parameter, adding);
499
500                                                         if ((modehandlers[handler_id]->GetNumParams(adding)) && (parameter == ""))
501                                                         {
502                                                                 /* The handler nuked the parameter and they are supposed to have one.
503                                                                  * We CANT continue now, even if they actually returned MODEACTION_ALLOW,
504                                                                  * so we bail to the next mode character.
505                                                                  */
506                                                                 continue;
507                                                         }
508
509                                                         if (ma == MODEACTION_ALLOW)
510                                                         {
511                                                                 log(DEBUG,"ModeAction was allow");
512
513                                                                 /* We're about to output a valid mode letter - was there previously a pending state-change? */
514                                                                 if (state_change)
515                                                                 {
516                                                                         log(DEBUG,"Appending state change");
517                                                                         output_sequence.append(adding ? "+" : "-");
518                                                                 }
519                                                                 
520                                                                 /* Add the mode letter */
521                                                                 output_sequence.push_back(modechar);
522                                                                 log(DEBUG,"Added mode letter to output sequence, sequence now: '%s'",output_sequence.c_str());
523
524                                                                 /* Is there a valid parameter for this mode? If so add it to the parameter list */
525                                                                 if ((modehandlers[handler_id]->GetNumParams(adding)) && (parameter != ""))
526                                                                 {
527                                                                         log(DEBUG,"Added parameter to parameter_list, list now: '%s'",parameter_list.str().c_str());
528                                                                         parameter_list << " " << parameter;
529                                                                 }
530
531                                                                 /* Call all the AfterMode events in the mode watchers for this mode */
532                                                                 for (ModeWatchIter watchers = modewatchers[handler_id].begin(); watchers != modewatchers[handler_id].end(); watchers++)
533                                                                 {
534                                                                         log(DEBUG,"Called a ModeWatcher* after event");
535                                                                         (*watchers)->AfterMode(user, targetuser, targetchannel, parameter, adding, type);
536                                                                 }
537
538                                                                 /* Reset the state change flag */
539                                                                 state_change = false;
540                                                         }
541                                                 }
542                                         }
543                                 break;
544                         }
545                 }
546                 /* Was there at least one valid mode in the sequence? */
547                 if (output_sequence != "")
548                 {
549                         if (servermode)
550                         {
551                                 if (type == MODETYPE_CHANNEL)
552                                 {
553                                         WriteChannelWithServ(Config->ServerName,targetchannel,"MODE %s %s%s",targetchannel->name,output_sequence.c_str(),parameter_list.str().c_str());
554                                 }
555                         }
556                         else
557                         {
558                                 if (type == MODETYPE_CHANNEL)
559                                 {
560                                         log(DEBUG,"Write output sequence and parameters to channel: %s %s%s",targetchannel->name,output_sequence.c_str(),parameter_list.str().c_str());
561                                         WriteChannel(targetchannel,user,"MODE %s %s%s",targetchannel->name,output_sequence.c_str(),parameter_list.str().c_str());
562                                         FOREACH_MOD(I_OnMode,OnMode(user, targetchannel, TYPE_CHANNEL, output_sequence + parameter_list.str()));
563                                 }
564                         }
565                 }
566         }
567 }
568
569
570 void cmd_mode::Handle (char **parameters, int pcnt, userrec *user)
571 {
572         if (!user)
573                 return;
574
575         ServerInstance->ModeGrok->Process(parameters, pcnt, user, false);
576
577         return;
578 }
579
580 void ModeParser::CleanMask(std::string &mask)
581 {
582         std::string::size_type pos_of_pling = mask.find_first_of('!');
583         std::string::size_type pos_of_at = mask.find_first_of('@');
584         std::string::size_type pos_of_dot = mask.find_first_of('.');
585         std::string::size_type pos_of_colon = mask.find_first_of(':'); /* Because ipv6 addresses are colon delimited */
586
587         if ((pos_of_pling == std::string::npos) && (pos_of_at == std::string::npos))
588         {
589                 /* Just a nick, or just a host */
590                 if ((pos_of_dot == std::string::npos) && (pos_of_colon == std::string::npos))
591                 {
592                         /* It has no '.' in it, it must be a nick. */
593                         mask.append("!*@*");
594                 }
595                 else
596                 {
597                         /* Got a dot in it? Has to be a host */
598                         mask = "*!*@" + mask;
599                 }
600         }
601         else if ((pos_of_pling == std::string::npos) && (pos_of_at != std::string::npos))
602         {
603                 /* Has an @ but no !, its a user@host */
604                  mask = "*!" + mask;
605         }
606         else if ((pos_of_pling != std::string::npos) && (pos_of_at == std::string::npos))
607         {
608                 /* Has a ! but no @, it must be a nick!ident */
609                 mask.append("@*");
610         }
611 }
612
613 bool ModeParser::AddMode(ModeHandler* mh, unsigned const char modeletter)
614 {
615         unsigned char mask = 0;
616         unsigned char pos = 0;
617
618         /* Yes, i know, this might let people declare modes like '_' or '^'.
619          * If they do that, thats their problem, and if i ever EVER see an
620          * official InspIRCd developer do that, i'll beat them with a paddle!
621          */
622         if ((modeletter < 'A') || (modeletter > 'z'))
623                 return false;
624
625         mh->GetModeType() == MODETYPE_USER ? mask = MASK_USER : mask = MASK_CHANNEL;
626         pos = (modeletter-65) | mask;
627
628         if (modehandlers[pos])
629                 return false;
630
631         modehandlers[pos] = mh;
632         log(DEBUG,"ModeParser::AddMode: added mode %c",modeletter);
633         return true;
634 }
635
636 ModeParser::ModeParser()
637 {
638         /* Clear mode list */
639         memset(modehandlers, 0, sizeof(modehandlers));
640         memset(modewatchers, 0, sizeof(modewatchers));
641
642         /* Initialise the RFC mode letters */
643         this->AddMode(new ModeChannelSecret, 's');
644         this->AddMode(new ModeChannelPrivate, 'p');
645         this->AddMode(new ModeChannelBan, 'b');
646         this->AddMode(new ModeChannelModerated, 'm');
647         this->AddMode(new ModeChannelTopicOps, 't');
648         this->AddMode(new ModeChannelNoExternal, 'n');
649         this->AddMode(new ModeChannelInviteOnly, 'i');
650         this->AddMode(new ModeChannelKey, 'k');
651         this->AddMode(new ModeChannelLimit, 'l');
652         /* TODO: Modes +o, +v, +h */
653 }
654