]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chanprotect.cpp
Configurable prefixes for chanmodes +qa: prefixes can be turned on or off individuall...
[user/henk/code/inspircd.git] / src / modules / m_chanprotect.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 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 "inspircd.h"
15
16 /* $ModDesc: Provides channel modes +a and +q */
17
18 #define PROTECT_VALUE 40000
19 #define FOUNDER_VALUE 50000
20
21 const char* fakevalue = "on";
22
23 /* When this is set to true, no restrictions apply to setting or
24  * removal of +qa. This is used while unloading so that the server
25  * can freely clear all of its users of the modes.
26  */
27 bool unload_kludge = false;
28
29 /** Handles basic operation of +qa channel modes
30  */
31 class FounderProtectBase
32 {
33  private:
34         InspIRCd* MyInstance;
35         std::string extend;
36         std::string type;
37         int list;
38         int end;
39         char* dummyptr;
40  protected:
41         bool& remove_own_privs;
42         bool& remove_other_privs;
43  public:
44         FounderProtectBase(InspIRCd* Instance, const std::string &ext, const std::string &mtype, int l, int e, bool &remove_own, bool &remove_others) :
45                 MyInstance(Instance), extend(ext), type(mtype), list(l), end(e), remove_own_privs(remove_own), remove_other_privs(remove_others)
46         {
47         }
48
49         ModePair ModeSet(User* source, User* dest, Channel* channel, const std::string &parameter)
50         {
51                 User* x = MyInstance->FindNick(parameter);
52                 if (x)
53                 {
54                         if (!channel->HasUser(x))
55                         {
56                                 return std::make_pair(false, parameter);
57                         }
58                         else
59                         {
60                                 std::string item = extend+std::string(channel->name);
61                                 if (x->GetExt(item,dummyptr))
62                                 {
63                                         return std::make_pair(true, x->nick);
64                                 }
65                                 else
66                                 {
67                                         return std::make_pair(false, parameter);
68                                 }
69                         }
70                 }
71                 return std::make_pair(false, parameter);
72         }
73
74         void RemoveMode(Channel* channel, char mc)
75         {
76                 unload_kludge = true;
77                 CUList* cl = channel->GetUsers();
78                 std::string item = extend + std::string(channel->name);
79                 const char* mode_junk[MAXMODES+2];
80                 mode_junk[0] = channel->name;
81                 irc::modestacker modestack(false);
82                 std::deque<std::string> stackresult;                            
83
84                 for (CUList::iterator i = cl->begin(); i != cl->end(); i++)
85                 {
86                         if (i->first->GetExt(item, dummyptr))
87                         {
88                                 modestack.Push(mc, i->first->nick);
89                         }
90                 }
91
92                 while (modestack.GetStackedLine(stackresult))
93                 {
94                         for (size_t j = 0; j < stackresult.size(); j++)
95                         {
96                                 mode_junk[j+1] = stackresult[j].c_str();
97                         }
98                         MyInstance->SendMode(mode_junk, stackresult.size() + 1, MyInstance->FakeClient);
99                 }
100                 
101                 unload_kludge = false;
102         }
103
104         void DisplayList(User* user, Channel* channel)
105         {
106                 CUList* cl = channel->GetUsers();
107                 std::string item = extend+std::string(channel->name);
108                 for (CUList::reverse_iterator i = cl->rbegin(); i != cl->rend(); ++i)
109                 {
110                         if (i->first->GetExt(item, dummyptr))
111                         {
112                                 user->WriteServ("%d %s %s %s", list, user->nick, channel->name,i->first->nick);
113                         }
114                 }
115                 user->WriteServ("%d %s %s :End of channel %s list", end, user->nick, channel->name, type.c_str());
116         }
117
118         User* FindAndVerify(std::string &parameter, Channel* channel)
119         {
120                 User* theuser = MyInstance->FindNick(parameter);
121                 if ((!theuser) || (!channel->HasUser(theuser)))
122                 {
123                         parameter.clear();
124                         return NULL;
125                 }
126                 return theuser;
127         }
128
129         bool CanRemoveOthers(User* u1, User* u2, Channel* c)
130         {
131                 std::string item = extend+std::string(c->name);
132                 return (u1->GetExt(item, dummyptr) && u2->GetExt(item, dummyptr));
133         }
134
135         ModeAction HandleChange(User* source, User* theuser, bool adding, Channel* channel, std::string &parameter)
136         {
137                 std::string item = extend+std::string(channel->name);
138
139                 if (adding)
140                 {
141                         if (!theuser->GetExt(item, dummyptr))
142                         {
143                                 theuser->Extend(item, fakevalue);
144                                 parameter = theuser->nick;
145                                 return MODEACTION_ALLOW;
146                         }
147                 }
148                 else
149                 {
150                         if (theuser->GetExt(item, dummyptr))
151                         {
152                                 theuser->Shrink(item);
153                                 parameter = theuser->nick;
154                                 return MODEACTION_ALLOW;
155                         }
156                 }
157                 return MODEACTION_DENY;
158         }
159 };
160
161 /** Abstraction of FounderProtectBase for channel mode +q
162  */
163 class ChanFounder : public ModeHandler, public FounderProtectBase
164 {
165         char* dummyptr;
166  public:
167         ChanFounder(InspIRCd* Instance, char my_prefix, bool &depriv_self, bool &depriv_others)
168                 : ModeHandler(Instance, 'q', 1, 1, true, MODETYPE_CHANNEL, false, my_prefix, 0),
169                   FounderProtectBase(Instance, "cm_founder_", "founder", 386, 387, depriv_self, depriv_others) { }
170
171         unsigned int GetPrefixRank()
172         {
173                 return FOUNDER_VALUE;
174         }
175
176         ModePair ModeSet(User* source, User* dest, Channel* channel, const std::string &parameter)
177         {
178                 return FounderProtectBase::ModeSet(source, dest, channel, parameter);
179         }
180
181         void RemoveMode(Channel* channel)
182         {
183                 FounderProtectBase::RemoveMode(channel, this->GetModeChar());
184         }
185
186         void RemoveMode(User* user)
187         {
188         }
189
190         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding, bool)
191         {
192                 User* theuser = FounderProtectBase::FindAndVerify(parameter, channel);
193
194                 if (!theuser)
195                 {
196                         return MODEACTION_DENY;
197                 }
198
199                 if ((!adding) && FounderProtectBase::CanRemoveOthers(source, theuser, channel))
200                 {
201                         return FounderProtectBase::HandleChange(source, theuser, adding, channel, parameter);
202                 }
203                  // source is a server, or ulined, we'll let them +-q the user.
204                 if ((unload_kludge) || ((source == theuser) && (!adding) && (FounderProtectBase::remove_own_privs)) || (ServerInstance->ULine(source->nick)) || (ServerInstance->ULine(source->server)) || (!*source->server) || (!IS_LOCAL(source)))
205                 {
206                         return FounderProtectBase::HandleChange(source, theuser, adding, channel, parameter);
207                 }
208                 else
209                 {
210                         // whoops, someones being naughty!
211                         source->WriteNumeric(468, "%s %s :Only servers may set channel mode +q",source->nick, channel->name);
212                         parameter.clear();
213                         return MODEACTION_DENY;
214                 }
215         }
216
217         void DisplayList(User* user, Channel* channel)
218         {
219                 FounderProtectBase::DisplayList(user,channel);
220         }
221 };
222
223 /** Abstraction of FounderProtectBase for channel mode +a
224  */
225 class ChanProtect : public ModeHandler, public FounderProtectBase
226 {
227         char* dummyptr;
228  public:
229         ChanProtect(InspIRCd* Instance, char my_prefix, bool &depriv_self, bool &depriv_others)
230                 : ModeHandler(Instance, 'a', 1, 1, true, MODETYPE_CHANNEL, false, my_prefix, 0),
231                   FounderProtectBase(Instance,"cm_protect_","protected user", 388, 389, depriv_self, depriv_others) { }
232
233         unsigned int GetPrefixRank()
234         {
235                 return PROTECT_VALUE;
236         }
237
238         ModePair ModeSet(User* source, User* dest, Channel* channel, const std::string &parameter)
239         {
240                 return FounderProtectBase::ModeSet(source, dest, channel, parameter);
241         }
242
243         void RemoveMode(Channel* channel)
244         {
245                 FounderProtectBase::RemoveMode(channel, this->GetModeChar());
246         }
247
248         void RemoveMode(User* user)
249         {
250         }
251
252         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding, bool)
253         {
254                 User* theuser = FounderProtectBase::FindAndVerify(parameter, channel);
255
256                 if (!theuser)
257                         return MODEACTION_DENY;
258
259                 std::string founder = "cm_founder_"+std::string(channel->name);
260
261                 if ((!adding) && FounderProtectBase::CanRemoveOthers(source, theuser, channel))
262                 {
263                         return FounderProtectBase::HandleChange(source, theuser, adding, channel, parameter);
264                 }
265                 // source has +q, is a server, or ulined, we'll let them +-a the user.
266                 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)))
267                 {
268                         return FounderProtectBase::HandleChange(source, theuser, adding, channel, parameter);
269                 }
270                 else
271                 {
272                         // bzzzt, wrong answer!
273                         source->WriteNumeric(482, "%s %s :You are not a channel founder",source->nick, channel->name);
274                         return MODEACTION_DENY;
275                 }
276         }
277
278         virtual void DisplayList(User* user, Channel* channel)
279         {
280                 FounderProtectBase::DisplayList(user, channel);
281         }
282
283 };
284
285 class ModuleChanProtect : public Module
286 {
287         
288         bool FirstInGetsFounder;
289         char QPrefix;
290         char APrefix;
291         bool DeprivSelf;
292         bool DeprivOthers;
293         bool booting;
294         ChanProtect* cp;
295         ChanFounder* cf;
296         char* dummyptr;
297         
298  public:
299  
300         ModuleChanProtect(InspIRCd* Me)
301                 : Module(Me), FirstInGetsFounder(false), QPrefix(0), APrefix(0), DeprivSelf(false), DeprivOthers(false), booting(true)
302         {       
303                 /* Load config stuff */
304                 OnRehash(NULL,"");
305                 booting = false;
306
307                 /* Initialise module variables */
308
309                 cp = new ChanProtect(ServerInstance, APrefix, DeprivSelf, DeprivOthers);
310                 cf = new ChanFounder(ServerInstance, QPrefix, DeprivSelf, DeprivOthers);
311
312                 if (!ServerInstance->Modes->AddMode(cp) || !ServerInstance->Modes->AddMode(cf))
313                 {
314                         delete cp;
315                         delete cf;
316                         throw ModuleException("Could not add new modes!");
317                 }
318
319                 Implementation eventlist[] = { I_OnUserKick, I_OnUserPart, I_OnRehash, I_OnUserPreJoin, I_OnPostJoin, I_OnAccessCheck };
320                 ServerInstance->Modules->Attach(eventlist, this, 6);
321         }
322
323         virtual void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent)
324         {
325                 // FIX: when someone gets kicked from a channel we must remove their Extensibles!
326                 user->Shrink("cm_founder_"+std::string(chan->name));
327                 user->Shrink("cm_protect_"+std::string(chan->name));
328         }
329
330         virtual void OnUserPart(User* user, Channel* channel, const std::string &partreason, bool &silent)
331         {
332                 // FIX: when someone parts a channel we must remove their Extensibles!
333                 user->Shrink("cm_founder_"+std::string(channel->name));
334                 user->Shrink("cm_protect_"+std::string(channel->name));
335         }
336
337         virtual void OnRehash(User* user, const std::string &parameter)
338         {
339                 /* Create a configreader class and read our flag,
340                  * in old versions this was heap-allocated and the
341                  * object was kept between rehashes...now we just
342                  * stack-allocate it locally.
343                  */
344                 ConfigReader Conf(ServerInstance);
345
346                 char old_q = QPrefix;
347                 char old_a = APrefix;
348
349                 FirstInGetsFounder = Conf.ReadFlag("options", "noservices", 0);
350
351                 std::string qpre = Conf.ReadValue("options", "qprefix", 0);
352                 QPrefix = qpre.empty() ? 0 : qpre[0];
353
354                 std::string apre = Conf.ReadValue("options", "aprefix", 0);
355                 APrefix = apre.empty() ? 0 : apre[0];
356
357                 DeprivSelf = Conf.ReadFlag("options","deprotectself",0);
358                 DeprivOthers = Conf.ReadFlag("options","deprotectothers",0);
359
360                 ServerInstance->Logs->Log("chanprotect", DEBUG, "qprefix is %c and aprefix is %c", QPrefix, APrefix);
361
362                 /* Did the user change the QA prefixes on the fly?
363                  * If so, remove all instances of the mode, and reinit
364                  * the module with prefixes enabled.
365                  */
366                 if ((old_q != QPrefix) && (!booting))
367                 {
368                         ServerInstance->Modes->DelMode(cf);
369                         delete cf;
370                         cf = new ChanFounder(ServerInstance, QPrefix, DeprivSelf, DeprivOthers);
371                         /* These wont fail, we already owned the mode characters before */
372                         ServerInstance->Modes->AddMode(cf);
373                         ServerInstance->SNO->WriteToSnoMask('A', "WARNING: +qa prefixes were enabled or disabled via a REHASH. Clients will probably need to reconnect to pick up this change.");
374                 }
375
376                 if ((old_a != APrefix) && (!booting))
377                 {
378                         ServerInstance->Modes->DelMode(cp);
379                         delete cp;
380                         cp = new ChanProtect(ServerInstance, APrefix, DeprivSelf, DeprivOthers);
381                         ServerInstance->Modes->AddMode(cp);
382                         ServerInstance->SNO->WriteToSnoMask('A', "WARNING: +qa prefixes were enabled or disabled via a REHASH. Clients will probably need to reconnect to pick up this change.");
383                 }
384         }
385         
386         virtual int OnUserPreJoin(User *user, Channel *chan, const char *cname, std::string &privs)
387         {
388                 // if the user is the first user into the channel, mark them as the founder, but only if
389                 // the config option for it is set
390
391                 if (FirstInGetsFounder && !chan)
392                         privs = QPrefix + "@";
393                 
394                 return 0;
395         }
396         
397         virtual void OnPostJoin(User *user, Channel *channel)
398         {
399                 // This *must* be in PostJoin, not UserJoin - the former will make it appear to happen
400                 // before the client is in the channel
401                 
402                 // This notice was here originally because it was all done prior to the creation of
403                 // privs in OnUserPreJoin. I've left it because it might still be wanted, but i'm
404                 // not sure it really should be here - ops don't get shown, obviously, and the prefix
405                 // will appear in the names list for the user.. remove if desired -Special
406
407                 if (FirstInGetsFounder && channel->GetUserCounter() == 1)
408                         user->WriteServ("MODE %s +q %s", channel->name, user->nick);
409         }
410         
411         virtual int OnAccessCheck(User* source,User* dest,Channel* channel,int access_type)
412         {
413                 // here we perform access checks, this is the important bit that actually stops kicking/deopping
414                 // etc of protected users. There are many types of access check, we're going to handle
415                 // a relatively small number of them relevent to our module using a switch statement.
416                 // don't allow action if:
417                 // (A) Theyre founder (no matter what)
418                 // (B) Theyre protected, and you're not
419                 // always allow the action if:
420                 // (A) The source is ulined
421                 
422                 
423                 // firstly, if a ulined nick, or a server, is setting the mode, then allow them to set the mode
424                 // without any access checks, we're not worthy :p
425                 if ((ServerInstance->ULine(source->nick)) || (ServerInstance->ULine(source->server)) || (!*source->server))
426                         return ACR_ALLOW;
427
428                 std::string founder = "cm_founder_"+std::string(channel->name);
429                 std::string protect = "cm_protect_"+std::string(channel->name);
430
431                 switch (access_type)
432                 {
433                         // a user has been deopped. Do we let them? hmmm...
434                         case AC_DEOP:
435                                 if (dest->GetExt(founder,dummyptr))
436                                 {
437                                         source->WriteNumeric(484, ""+std::string(source->nick)+" "+std::string(channel->name)+" :Can't deop "+std::string(dest->nick)+" as they're a channel founder");
438                                         return ACR_DENY;
439                                 }
440                                 if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr)))
441                                 {
442                                         source->WriteNumeric(484, ""+std::string(source->nick)+" "+std::string(channel->name)+" :Can't deop "+std::string(dest->nick)+" as they're protected (+a)");
443                                         return ACR_DENY;
444                                 }
445                         break;
446
447                         // a user is being kicked. do we chop off the end of the army boot?
448                         case AC_KICK:
449                                 if (dest->GetExt(founder,dummyptr))
450                                 {
451                                         source->WriteNumeric(484, ""+std::string(source->nick)+" "+std::string(channel->name)+" :Can't kick "+std::string(dest->nick)+" as they're a channel founder");
452                                         return ACR_DENY;
453                                 }
454                                 if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr)))
455                                 {
456                                         source->WriteNumeric(484, ""+std::string(source->nick)+" "+std::string(channel->name)+" :Can't kick "+std::string(dest->nick)+" as they're protected (+a)");
457                                         return ACR_DENY;
458                                 }
459                         break;
460
461                         // a user is being dehalfopped. Yes, we do disallow -h of a +ha user
462                         case AC_DEHALFOP:
463                                 if (dest->GetExt(founder,dummyptr))
464                                 {
465                                         source->WriteNumeric(484, ""+std::string(source->nick)+" "+std::string(channel->name)+" :Can't de-halfop "+std::string(dest->nick)+" as they're a channel founder");
466                                         return ACR_DENY;
467                                 }
468                                 if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr)))
469                                 {
470                                         source->WriteNumeric(484, ""+std::string(source->nick)+" "+std::string(channel->name)+" :Can't de-halfop "+std::string(dest->nick)+" as they're protected (+a)");
471                                         return ACR_DENY;
472                                 }
473                         break;
474
475                         // same with devoice.
476                         case AC_DEVOICE:
477                                 if (dest->GetExt(founder,dummyptr))
478                                 {
479                                         source->WriteNumeric(484, ""+std::string(source->nick)+" "+std::string(channel->name)+" :Can't devoice "+std::string(dest->nick)+" as they're a channel founder");
480                                         return ACR_DENY;
481                                 }
482                                 if ((dest->GetExt(protect,dummyptr)) && (!source->GetExt(protect,dummyptr)))
483                                 {
484                                         source->WriteNumeric(484, ""+std::string(source->nick)+" "+std::string(channel->name)+" :Can't devoice "+std::string(dest->nick)+" as they're protected (+a)");
485                                         return ACR_DENY;
486                                 }
487                         break;
488                 }
489                 
490                 // we dont know what this access check is, or dont care. just carry on, nothing to see here.
491                 return ACR_DEFAULT;
492         }
493         
494         virtual ~ModuleChanProtect()
495         {
496                 ServerInstance->Modes->DelMode(cp);
497                 ServerInstance->Modes->DelMode(cf);
498                 delete cp;
499                 delete cf;
500         }
501         
502         virtual Version GetVersion()
503         {
504                 return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
505         }
506 };
507
508 MODULE_INIT(ModuleChanProtect)