]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chanprotect.cpp
f7c05572f3263dabfd8757ff1686d75608d9b4da
[user/henk/code/inspircd.git] / src / modules / m_chanprotect.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "users.h"
15 #include "channels.h"
16 #include "modules.h"
17 #include "inspircd.h"
18
19 /* $ModDesc: Provides channel modes +a and +q */
20 /* $ModDep: ../../include/u_listmode.h */
21
22 #define PROTECT_VALUE 40000
23 #define FOUNDER_VALUE 50000
24
25 const char* fakevalue = "on";
26
27 /* When this is set to true, no restrictions apply to setting or
28  * removal of +qa. This is used while unloading so that the server
29  * can freely clear all of its users of the modes.
30  */
31 bool unload_kludge = false;
32
33 /** Handles basic operation of +qa channel modes
34  */
35 class FounderProtectBase
36 {
37  private:
38         InspIRCd* MyInstance;
39         std::string extend;
40         std::string type;
41         int list;
42         int end;
43         char* dummyptr;
44  protected:
45         bool& remove_own_privs;
46  public:
47         FounderProtectBase(InspIRCd* Instance, const std::string &ext, const std::string &mtype, int l, int e, bool &remove_own) :
48                 MyInstance(Instance), extend(ext), type(mtype), list(l), end(e), remove_own_privs(remove_own)
49         {
50         }
51
52         ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter)
53         {
54                 userrec* x = MyInstance->FindNick(parameter);
55                 if (x)
56                 {
57                         if (!channel->HasUser(x))
58                         {
59                                 return std::make_pair(false, parameter);
60                         }
61                         else
62                         {
63                                 std::string item = extend+std::string(channel->name);
64                                 if (x->GetExt(item,dummyptr))
65                                 {
66                                         return std::make_pair(true, x->nick);
67                                 }
68                                 else
69                                 {
70                                         return std::make_pair(false, parameter);
71                                 }
72                         }
73                 }
74                 return std::make_pair(false, parameter);
75         }
76
77         void RemoveMode(chanrec* channel, char mc)
78         {
79                 unload_kludge = true;
80                 CUList* cl = channel->GetUsers();
81                 std::string item = extend + std::string(channel->name);
82                 const char* mode_junk[MAXMODES+1];
83                 userrec* n = new userrec(MyInstance);
84                 n->SetFd(FD_MAGIC_NUMBER);
85                 mode_junk[0] = channel->name;
86                 irc::modestacker modestack(false);
87                 std::deque<std::string> stackresult;                            
88                 for (CUList::iterator i = cl->begin(); i != cl->end(); i++)
89                 {
90                         if (i->second->GetExt(item, dummyptr))
91                         {
92                                 modestack.Push(mc, i->second->nick);
93                         }
94                 }
95
96                 while (modestack.GetStackedLine(stackresult))
97                 {
98                         for (size_t j = 0; j < stackresult.size(); j++)
99                         {
100                                 mode_junk[j+1] = stackresult[j].c_str();
101                         }
102                         MyInstance->SendMode(mode_junk, stackresult.size() + 1, n);
103                 }
104                 
105                 delete n;
106                 unload_kludge = false;
107         }
108
109         void DisplayList(userrec* user, chanrec* channel)
110         {
111                 CUList* cl = channel->GetUsers();
112                 std::string item = extend+std::string(channel->name);
113                 for (CUList::iterator i = cl->begin(); i != cl->end(); i++)
114                 {
115                         if (i->second->GetExt(item, dummyptr))
116                         {
117                                 user->WriteServ("%d %s %s %s", list, user->nick, channel->name,i->second->nick);
118                         }
119                 }
120                 user->WriteServ("%d %s %s :End of channel %s list", end, user->nick, channel->name, type.c_str());
121         }
122
123         userrec* FindAndVerify(std::string &parameter, chanrec* channel)
124         {
125                 userrec* theuser = MyInstance->FindNick(parameter);
126                 if ((!theuser) || (!channel->HasUser(theuser)))
127                 {
128                         parameter = "";
129                         return NULL;
130                 }
131                 return theuser;
132         }
133
134         ModeAction HandleChange(userrec* source, userrec* theuser, bool adding, chanrec* channel, std::string &parameter)
135         {
136                 std::string item = extend+std::string(channel->name);
137
138                 if (adding)
139                 {
140                         if (!theuser->GetExt(item, dummyptr))
141                         {
142                                 theuser->Extend(item, fakevalue);
143                                 parameter = theuser->nick;
144                                 return MODEACTION_ALLOW;
145                         }
146                 }
147                 else
148                 {
149                         if (theuser->GetExt(item, dummyptr))
150                         {
151                                 theuser->Shrink(item);
152                                 parameter = theuser->nick;
153                                 return MODEACTION_ALLOW;
154                         }
155                 }
156                 return MODEACTION_DENY;
157         }
158 };
159
160 /** Abstraction of FounderProtectBase for channel mode +q
161  */
162 class ChanFounder : public ModeHandler, public FounderProtectBase
163 {
164         char* dummyptr;
165  public:
166         ChanFounder(InspIRCd* Instance, bool using_prefixes, bool &depriv_self)
167                 : ModeHandler(Instance, 'q', 1, 1, true, MODETYPE_CHANNEL, false, using_prefixes ? '~' : 0),
168                   FounderProtectBase(Instance, "cm_founder_", "founder", 386, 387, depriv_self) { }
169
170         unsigned int GetPrefixRank()
171         {
172                 return FOUNDER_VALUE;
173         }
174
175         ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter)
176         {
177                 return FounderProtectBase::ModeSet(source, dest, channel, parameter);
178         }
179
180         void RemoveMode(chanrec* channel)
181         {
182                 FounderProtectBase::RemoveMode(channel, this->GetModeChar());
183         }
184
185         void RemoveMode(userrec* user)
186         {
187         }
188
189         ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
190         {
191                 userrec* theuser = FounderProtectBase::FindAndVerify(parameter, channel);
192
193                 if (!theuser)
194                 {
195                         return MODEACTION_DENY;
196                 }
197
198                  // source is a server, or ulined, we'll let them +-q the user.
199                 if ((unload_kludge) || ((source == theuser) && (!adding) && (FounderProtectBase::remove_own_privs)) || (ServerInstance->ULine(source->nick)) || (ServerInstance->ULine(source->server)) || (!*source->server) || (!IS_LOCAL(source)))
200                 {
201                         return FounderProtectBase::HandleChange(source, theuser, adding, channel, parameter);
202                 }
203                 else
204                 {
205                         // whoops, someones being naughty!
206                         source->WriteServ("468 %s %s :Only servers may set channel mode +q",source->nick, channel->name);
207                         parameter = "";
208                         return MODEACTION_DENY;
209                 }
210         }
211
212         void DisplayList(userrec* user, chanrec* channel)
213         {
214                 FounderProtectBase::DisplayList(user,channel);
215         }
216 };
217
218 /** Abstraction of FounderProtectBase for channel mode +a
219  */
220 class ChanProtect : public ModeHandler, public FounderProtectBase
221 {
222         char* dummyptr;
223  public:
224         ChanProtect(InspIRCd* Instance, bool using_prefixes, bool &depriv_self)
225                 : ModeHandler(Instance, 'a', 1, 1, true, MODETYPE_CHANNEL, false, using_prefixes ? '&' : 0),
226                   FounderProtectBase(Instance,"cm_protect_","protected user", 388, 389, depriv_self) { }
227
228         unsigned int GetPrefixRank()
229         {
230                 return PROTECT_VALUE;
231         }
232
233         ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string &parameter)
234         {
235                 return FounderProtectBase::ModeSet(source, dest, channel, parameter);
236         }
237
238         void RemoveMode(chanrec* channel)
239         {
240                 FounderProtectBase::RemoveMode(channel, this->GetModeChar());
241         }
242
243         void RemoveMode(userrec* user)
244         {
245         }
246
247         ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding)
248         {
249                 userrec* theuser = FounderProtectBase::FindAndVerify(parameter, channel);
250
251                 if (!theuser)
252                         return MODEACTION_DENY;
253
254                 std::string founder = "cm_founder_"+std::string(channel->name);
255
256                 // source has +q, is a server, or ulined, we'll let them +-a the user.
257                 if ((unload_kludge) || ((source == theuser) && (!adding) && (FounderProtectBase::remove_own_privs)) || (ServerInstance->ULine(source->nick)) || (ServerInstance->ULine(source->server)) || (!*source->server) || (source->GetExt(founder,dummyptr)) || (!IS_LOCAL(source)))
258                 {
259                         return FounderProtectBase::HandleChange(source, theuser, adding, channel, parameter);
260                 }
261                 else
262                 {
263                         // bzzzt, wrong answer!
264                         source->WriteServ("482 %s %s :You are not a channel founder",source->nick, channel->name);
265                         return MODEACTION_DENY;
266                 }
267         }
268
269         virtual void DisplayList(userrec* user, chanrec* channel)
270         {
271                 FounderProtectBase::DisplayList(user, channel);
272         }
273
274 };
275
276 class ModuleChanProtect : public Module
277 {
278         
279         bool FirstInGetsFounder;
280         bool QAPrefixes;
281         bool DeprivSelf;
282         bool booting;
283         ChanProtect* cp;
284         ChanFounder* cf;
285         char* dummyptr;
286         
287  public:
288  
289         ModuleChanProtect(InspIRCd* Me)
290                 : Module::Module(Me), FirstInGetsFounder(false), QAPrefixes(false), DeprivSelf(false), booting(true)
291         {       
292                 /* Load config stuff */
293                 OnRehash(NULL,"");
294                 booting = false;
295
296                 /* Initialise module variables */
297
298                 cp = new ChanProtect(ServerInstance,QAPrefixes,DeprivSelf);
299                 cf = new ChanFounder(ServerInstance,QAPrefixes,DeprivSelf);
300
301                 if (!ServerInstance->AddMode(cp, 'a') || !ServerInstance->AddMode(cf, 'q'))
302                         throw ModuleException("Could not add new modes!");
303         }
304
305         void Implements(char* List)
306         {
307                 List[I_OnUserKick] = List[I_OnUserPart] = List[I_OnRehash] = List[I_OnUserJoin] = List[I_OnAccessCheck] = List[I_OnSyncChannel] = 1;
308         }
309
310         virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason)
311         {
312                 // FIX: when someone gets kicked from a channel we must remove their Extensibles!
313                 user->Shrink("cm_founder_"+std::string(chan->name));
314                 user->Shrink("cm_protect_"+std::string(chan->name));
315         }
316
317         virtual void OnUserPart(userrec* user, chanrec* channel, const std::string &partreason)
318         {
319                 // FIX: when someone parts a channel we must remove their Extensibles!
320                 user->Shrink("cm_founder_"+std::string(channel->name));
321                 user->Shrink("cm_protect_"+std::string(channel->name));
322         }
323
324         virtual void OnRehash(userrec* user, const std::string &parameter)
325         {
326                 /* Create a configreader class and read our flag,
327                  * in old versions this was heap-allocated and the
328                  * object was kept between rehashes...now we just
329                  * stack-allocate it locally.
330                  */
331                 ConfigReader Conf(ServerInstance);
332
333                 bool old_qa = QAPrefixes;
334
335                 FirstInGetsFounder = Conf.ReadFlag("options","noservices",0);
336                 QAPrefixes = Conf.ReadFlag("options","qaprefixes",0);
337                 DeprivSelf = Conf.ReadFlag("options","deprotectself",0);
338
339                 /* Did the user change the QA prefixes on the fly?
340                  * If so, remove all instances of the mode, and reinit
341                  * the module with prefixes enabled.
342                  */
343                 if ((old_qa != QAPrefixes) && (!booting))
344                 {
345                         ServerInstance->Modes->DelMode(cp);
346                         ServerInstance->Modes->DelMode(cf);
347                         DELETE(cp);
348                         DELETE(cf);
349                         cp = new ChanProtect(ServerInstance,QAPrefixes,DeprivSelf);
350                         cf = new ChanFounder(ServerInstance,QAPrefixes,DeprivSelf);
351                         /* These wont fail, we already owned the mode characters before */
352                         ServerInstance->AddMode(cp, 'a');
353                         ServerInstance->AddMode(cf, 'q');
354                         ServerInstance->WriteOpers("*** WARNING: +qa prefixes were enabled or disabled via a REHASH. Clients will probably need to reconnect to pick up this change.");
355                 }
356         }
357         
358         virtual void OnUserJoin(userrec* user, chanrec* channel)
359         {
360                 // if the user is the first user into the channel, mark them as the founder, but only if
361                 // the config option for it is set
362                 if (FirstInGetsFounder)
363                 {
364                         if (channel->GetUserCounter() == 1)
365                         {
366                                 // we're using Extensible::Extend to add data into user objects.
367                                 // this way is best as it adds data thats accessible to other modules
368                                 // (so long as you document your code properly) without breaking anything
369                                 // because its encapsulated neatly in a map.
370
371                                 // Change requested by katsklaw... when the first in is set to get founder,
372                                 // to make it clearer that +q has been given, send that one user the +q notice
373                                 // so that their client's syncronization and their sanity are left intact.
374                                 user->WriteServ("MODE %s +q %s",channel->name,user->nick);
375                                 if (user->Extend("cm_founder_"+std::string(channel->name),fakevalue))
376                                 {
377                                         ServerInstance->Log(DEBUG,"Marked user "+std::string(user->nick)+" as founder for "+std::string(channel->name));
378                                 }
379                         }
380                 }
381         }
382         
383         virtual int OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type)
384         {
385                 // here we perform access checks, this is the important bit that actually stops kicking/deopping
386                 // etc of protected users. There are many types of access check, we're going to handle
387                 // a relatively small number of them relevent to our module using a switch statement.
388         
389                 ServerInstance->Log(DEBUG,"chanprotect OnAccessCheck %d",access_type);
390                 // don't allow action if:
391                 // (A) Theyre founder (no matter what)
392                 // (B) Theyre protected, and you're not
393                 // always allow the action if:
394                 // (A) The source is ulined
395                 
396                 
397                 // firstly, if a ulined nick, or a server, is setting the mode, then allow them to set the mode
398                 // without any access checks, we're not worthy :p
399                 if ((ServerInstance->ULine(source->nick)) || (ServerInstance->ULine(source->server)) || (!*source->server))
400                 {
401                         ServerInstance->Log(DEBUG,"chanprotect OnAccessCheck returns ALLOW");
402                         return ACR_ALLOW;
403                 }
404
405                 std::string founder = "cm_founder_"+std::string(channel->name);
406                 std::string protect = "cm_protect_"+std::string(channel->name);
407
408                 switch (access_type)
409                 {
410                         // a user has been deopped. Do we let them? hmmm...
411                         case AC_DEOP:
412                                 ServerInstance->Log(DEBUG,"OnAccessCheck AC_DEOP");
413                                 if (dest->GetExt(founder,dummyptr))
414                                 {
415                                         ServerInstance->Log(DEBUG,"Has %s",founder.c_str());
416                                         source->WriteServ("484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't deop "+std::string(dest->nick)+" as they're a channel founder");
417                                         return ACR_DENY;
418                                 }
419                                 else
420                                 {
421                                         ServerInstance->Log(DEBUG,"Doesnt have %s",founder.c_str());
422                                 }
423                                 if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr)))
424                                 {
425                                         source->WriteServ("484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't deop "+std::string(dest->nick)+" as they're protected (+a)");
426                                         return ACR_DENY;
427                                 }
428                         break;
429
430                         // a user is being kicked. do we chop off the end of the army boot?
431                         case AC_KICK:
432                                 ServerInstance->Log(DEBUG,"OnAccessCheck AC_KICK");
433                                 if (dest->GetExt(founder,dummyptr))
434                                 {
435                                         source->WriteServ("484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't kick "+std::string(dest->nick)+" as they're a channel founder");
436                                         return ACR_DENY;
437                                 }
438                                 if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr)))
439                                 {
440                                         source->WriteServ("484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't kick "+std::string(dest->nick)+" as they're protected (+a)");
441                                         return ACR_DENY;
442                                 }
443                         break;
444
445                         // a user is being dehalfopped. Yes, we do disallow -h of a +ha user
446                         case AC_DEHALFOP:
447                                 if (dest->GetExt(founder,dummyptr))
448                                 {
449                                         source->WriteServ("484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't de-halfop "+std::string(dest->nick)+" as they're a channel founder");
450                                         return ACR_DENY;
451                                 }
452                                 if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr)))
453                                 {
454                                         source->WriteServ("484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't de-halfop "+std::string(dest->nick)+" as they're protected (+a)");
455                                         return ACR_DENY;
456                                 }
457                         break;
458
459                         // same with devoice.
460                         case AC_DEVOICE:
461                                 if (dest->GetExt(founder,dummyptr))
462                                 {
463                                         source->WriteServ("484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't devoice "+std::string(dest->nick)+" as they're a channel founder");
464                                         return ACR_DENY;
465                                 }
466                                 if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr)))
467                                 {
468                                         source->WriteServ("484 "+std::string(source->nick)+" "+std::string(channel->name)+" :Can't devoice "+std::string(dest->nick)+" as they're protected (+a)");
469                                         return ACR_DENY;
470                                 }
471                         break;
472                 }
473                 
474                 // we dont know what this access check is, or dont care. just carry on, nothing to see here.
475                 ServerInstance->Log(DEBUG,"chanprotect OnAccessCheck returns DEFAULT");
476                 return ACR_DEFAULT;
477         }
478         
479         virtual ~ModuleChanProtect()
480         {
481                 ServerInstance->Modes->DelMode(cp);
482                 ServerInstance->Modes->DelMode(cf);
483                 DELETE(cp);
484                 DELETE(cf);
485         }
486         
487         virtual Version GetVersion()
488         {
489                 return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
490         }
491         
492         virtual void OnSyncChannel(chanrec* chan, Module* proto, void* opaque)
493         {
494                 /* NOTE: If +qa prefix is on, this is propogated by the channel join,
495                  * so we dont need to propogate it manually
496                  */
497                 if (!QAPrefixes)
498                 {
499                         // this is called when the server is linking into a net and wants to sync channel data.
500                         // we should send our mode changes for the channel here to ensure that other servers
501                         // know whos +q/+a on the channel.
502                         CUList* cl = chan->GetUsers();
503                         string_list commands;
504                         std::string founder = "cm_founder_"+std::string(chan->name);
505                         std::string protect = "cm_protect_"+std::string(chan->name);
506                         irc::modestacker modestack(true);
507                         std::deque<std::string> stackresult;
508                         for (CUList::iterator i = cl->begin(); i != cl->end(); i++)
509                         {
510                                 if (i->second->GetExt(founder,dummyptr))
511                                 {
512                                         modestack.Push('q',i->second->nick);
513                                 }
514                                 if (i->second->GetExt(protect,dummyptr))
515                                 {
516                                         modestack.Push('a',i->second->nick);
517                                 }
518                         }
519                         while (modestack.GetStackedLine(stackresult))
520                         {
521                                 irc::stringjoiner mode_join(" ", stackresult, 0, stackresult.size() - 1);
522                                 std::string line = mode_join.GetJoined();
523                                 proto->ProtoSendMode(opaque,TYPE_CHANNEL,chan, line);
524                         }
525                 }
526         }
527
528 };
529
530
531 class ModuleChanProtectFactory : public ModuleFactory
532 {
533  public:
534         ModuleChanProtectFactory()
535         {
536         }
537         
538         ~ModuleChanProtectFactory()
539         {
540         }
541         
542         virtual Module * CreateModule(InspIRCd* Me)
543         {
544                 return new ModuleChanProtect(Me);
545         }
546         
547 };
548
549
550 extern "C" void * init_module( void )
551 {
552         return new ModuleChanProtectFactory;
553 }