]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_servprotect.cpp
Textual improvements and fixes such as typos, casing, etc. (#1612)
[user/henk/code/inspircd.git] / src / modules / m_servprotect.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23 #include "modules/whois.h"
24
25 enum
26 {
27         // From AustHex.
28         RPL_WHOISSERVICE = 310,
29
30         // From UnrealIRCd.
31         ERR_KILLDENY = 485
32 };
33
34 /** Handles user mode +k
35  */
36 class ServProtectMode : public ModeHandler
37 {
38  public:
39         ServProtectMode(Module* Creator) : ModeHandler(Creator, "servprotect", 'k', PARAM_NONE, MODETYPE_USER) { oper = true; }
40
41         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string& parameter, bool adding) CXX11_OVERRIDE
42         {
43                 /* Because this returns MODEACTION_DENY all the time, there is only ONE
44                  * way to add this mode and that is at client introduction in the UID command,
45                  * as this calls OnModeChange for each mode but disregards the return values.
46                  * The mode cannot be manually added or removed, not even by a server or by a remote
47                  * user or uline, which prevents its (ab)use as a kiddie 'god mode' on such networks.
48                  * I'm sure if someone really wants to do that they can make a copy of this module
49                  * that does the job. It won't be me though!
50                  */
51                 return MODEACTION_DENY;
52         }
53 };
54
55 class ModuleServProtectMode : public Module, public Whois::EventListener, public Whois::LineEventListener
56 {
57         ServProtectMode bm;
58  public:
59         ModuleServProtectMode()
60                 : Whois::EventListener(this)
61                 , Whois::LineEventListener(this)
62                 , bm(this)
63         {
64         }
65
66         Version GetVersion() CXX11_OVERRIDE
67         {
68                 return Version("Provides user mode +k to protect services from kicks, kills, and mode changes", VF_VENDOR);
69         }
70
71         void OnWhois(Whois::Context& whois) CXX11_OVERRIDE
72         {
73                 if (whois.GetTarget()->IsModeSet(bm))
74                 {
75                         whois.SendLine(RPL_WHOISSERVICE, "is a Network Service on " + ServerInstance->Config->Network);
76                 }
77         }
78
79         ModResult OnRawMode(User* user, Channel* chan, ModeHandler* mh, const std::string& param, bool adding) CXX11_OVERRIDE
80         {
81                 /* Check that the mode is not a server mode, it is being removed, the user making the change is local, there is a parameter,
82                  * and the user making the change is not a uline
83                  */
84                 if (!adding && chan && IS_LOCAL(user) && !param.empty())
85                 {
86                         const PrefixMode* const pm = mh->IsPrefixMode();
87                         if (!pm)
88                                 return MOD_RES_PASSTHRU;
89
90                         /* Check if the parameter is a valid nick/uuid
91                          */
92                         User *u = ServerInstance->FindNick(param);
93                         if (u)
94                         {
95                                 Membership* memb = chan->GetUser(u);
96                                 /* The target user has +k set on themselves, and you are trying to remove a privilege mode the user has set on themselves.
97                                  * This includes any prefix permission mode, even those registered in other modules, e.g. +qaohv. Using ::ModeString()
98                                  * here means that the number of modes is restricted to only modes the user has, limiting it to as short a loop as possible.
99                                  */
100                                 if ((u->IsModeSet(bm)) && (memb) && (memb->HasMode(pm)))
101                                 {
102                                         /* BZZZT, Denied! */
103                                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, chan->name, InspIRCd::Format("You are not permitted to remove privileges from %s services", ServerInstance->Config->Network.c_str()));
104                                         return MOD_RES_DENY;
105                                 }
106                         }
107                 }
108                 /* Mode allowed */
109                 return MOD_RES_PASSTHRU;
110         }
111
112         ModResult OnKill(User* src, User* dst, const std::string &reason) CXX11_OVERRIDE
113         {
114                 if (src == NULL)
115                         return MOD_RES_PASSTHRU;
116
117                 if (dst->IsModeSet(bm))
118                 {
119                         src->WriteNumeric(ERR_KILLDENY, InspIRCd::Format("You are not permitted to kill %s services!", ServerInstance->Config->Network.c_str()));
120                         ServerInstance->SNO->WriteGlobalSno('a', src->nick+" tried to kill service "+dst->nick+" ("+reason+")");
121                         return MOD_RES_DENY;
122                 }
123                 return MOD_RES_PASSTHRU;
124         }
125
126         ModResult OnUserPreKick(User *src, Membership* memb, const std::string &reason) CXX11_OVERRIDE
127         {
128                 if (memb->user->IsModeSet(bm))
129                 {
130                         src->WriteNumeric(ERR_RESTRICTED, memb->chan->name, "You are not permitted to kick services");
131                         return MOD_RES_DENY;
132                 }
133
134                 return MOD_RES_PASSTHRU;
135         }
136
137         ModResult OnWhoisLine(Whois::Context& whois, Numeric::Numeric& numeric) CXX11_OVERRIDE
138         {
139                 return ((numeric.GetNumeric() == 319) && whois.GetTarget()->IsModeSet(bm)) ? MOD_RES_DENY : MOD_RES_PASSTHRU;
140         }
141 };
142
143 MODULE_INIT(ModuleServProtectMode)