]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_servprotect.cpp
f77bdbc6acbda57287a5a628b6e19d96a175e4da
[user/henk/code/inspircd.git] / src / modules / m_servprotect.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 #include <stdio.h>
16 #include <string>
17 #include "users.h"
18 #include "channels.h"
19 #include "modules.h"
20 #include "configreader.h"
21
22 /* $ModDesc: Provides support for Austhex style +k / UnrealIRCD +S services mode */
23
24 /** Handles user mode +k
25  */
26 class ServProtectMode : public ModeHandler
27 {
28  public:
29         ServProtectMode(InspIRCd* Instance) : ModeHandler(Instance, 'k', 0, 0, false, MODETYPE_USER, true) { }
30
31         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding, bool)
32         {
33                 /* Because this returns MODEACTION_DENY all the time, there is only ONE 
34                  * way to add this mode and that is at client introduction in the UID command,
35                  * as this calls OnModeChange for each mode but disregards the return values.
36                  * The mode cannot be manually added or removed, not even by a server or by a remote
37                  * user, which prevents its (ab)use as a kiddie 'god mode' on such networks.
38                  * I'm sure if someone really wants to do that they can make a copy of this module
39                  * that does the job. It won't be me though!
40                  */
41                 return MODEACTION_DENY;
42         }
43
44         bool NeedsOper() { return true; }
45 };
46
47 class ModuleServProtectMode : public Module
48 {
49
50         ServProtectMode* bm;
51  public:
52         ModuleServProtectMode(InspIRCd* Me)
53                 : Module(Me)
54         {
55
56                 bm = new ServProtectMode(ServerInstance);
57                 if (!ServerInstance->Modes->AddMode(bm))
58                         throw ModuleException("Could not add new modes!");
59                 Implementation eventlist[] = { I_OnWhois, I_OnKill, I_OnWhoisLine, I_OnRawMode, I_OnUserPreKick };
60                 ServerInstance->Modules->Attach(eventlist, this, 5);
61         }
62
63
64         virtual ~ModuleServProtectMode()
65         {
66                 ServerInstance->Modes->DelMode(bm);
67                 delete bm;
68         }
69
70         virtual Version GetVersion()
71         {
72                 return Version("$Id$",VF_COMMON,API_VERSION);
73         }
74
75         virtual void OnWhois(User* src, User* dst)
76         {
77                 if (dst->IsModeSet('k'))
78                 {
79                         ServerInstance->SendWhoisLine(src, dst, 310, std::string(src->nick)+" "+std::string(dst->nick)+" :is an "+ServerInstance->Config->Network+" Service");
80                 }
81         }
82
83         virtual int OnRawMode(User* user, Channel* chan, const char mode, const std::string &param, bool adding, int pcnt, bool servermode)
84         {
85                 /* Check that the mode is not a server mode, it is being removed, the user making the change is local, there is a parameter,
86                  * and the user making the change is not a uline
87                  */
88                 if (!servermode && !adding && chan && IS_LOCAL(user) && !param.empty() && !ServerInstance->ULine(user->server))
89                 {
90                         /* Check if the parameter is a valid nick/uuid
91                          */
92                         User *u = ServerInstance->FindNick(param);
93                         if (u)
94                         {
95                                 /* The target user has +k set on themselves, and you are trying to remove a privilege mode the user has set on themselves.
96                                  * This includes any prefix permission mode, even those registered in other modules, e.g. +qaohv. Using ::ModeString()
97                                  * here means that the number of modes is restricted to only modes the user has, limiting it to as short a loop as possible.
98                                  */
99                                 if (u->IsModeSet('k') && ServerInstance->Modes->ModeString(u, chan, false).find(mode) != std::string::npos)
100                                 {
101                                         /* BZZZT, Denied! */
102                                         user->WriteNumeric(482, "%s %s :You are not permitted to remove privileges from %s services", user->nick.c_str(), chan->name.c_str(), ServerInstance->Config->Network);
103                                         return ACR_DENY;
104                                 }
105                         }
106                 }
107                 /* Mode allowed */
108                 return 0;
109         }
110
111         virtual int OnKill(User* src, User* dst, const std::string &reason)
112         {
113                 if (src == NULL)
114                         return 0;
115
116                 if (dst->IsModeSet('k'))
117                 {
118                         src->WriteNumeric(485, "%s :You are not permitted to kill %s services!", src->nick.c_str(), ServerInstance->Config->Network);
119                         ServerInstance->SNO->WriteToSnoMask('A', std::string(src->nick)+" tried to kill service "+dst->nick+" ("+reason+")");
120                         return 1;
121                 }
122                 return 0;
123         }
124
125         virtual int OnUserPreKick(User *src, User *dst, Channel *c, const std::string &reason)
126         {
127                 if (dst->IsModeSet('k'))
128                 {
129                         src->WriteNumeric(484, "%s %s :You are not permitted to kick services", src->nick.c_str(), c->name.c_str());
130                         return 1;
131                 }
132
133                 return 0;
134         }
135
136         virtual int OnWhoisLine(User* src, User* dst, int &numeric, std::string &text)
137         {
138                 return ((src != dst) && (numeric == 319) && dst->IsModeSet('k'));
139         }
140 };
141
142
143 MODULE_INIT(ModuleServProtectMode)