]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_servprotect.cpp
Move OnWhois* events to core_whois, add Whois::Context
[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
24 /** Handles user mode +k
25  */
26 class ServProtectMode : public ModeHandler
27 {
28  public:
29         ServProtectMode(Module* Creator) : ModeHandler(Creator, "servprotect", 'k', PARAM_NONE, MODETYPE_USER) { oper = true; }
30
31         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
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 or uline, 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
45 class ModuleServProtectMode : public Module, public Whois::EventListener
46 {
47         ServProtectMode bm;
48  public:
49         ModuleServProtectMode()
50                 : Whois::EventListener(this)
51                 , bm(this)
52         {
53         }
54
55         Version GetVersion() CXX11_OVERRIDE
56         {
57                 return Version("Provides usermode +k to protect services from kicks, kills, and mode changes.", VF_VENDOR);
58         }
59
60         void OnWhois(Whois::Context& whois) CXX11_OVERRIDE
61         {
62                 if (whois.GetTarget()->IsModeSet(bm))
63                 {
64                         whois.SendLine(310, ":is a Network Service on " + ServerInstance->Config->Network);
65                 }
66         }
67
68         ModResult OnRawMode(User* user, Channel* chan, ModeHandler* mh, const std::string& param, bool adding) CXX11_OVERRIDE
69         {
70                 /* Check that the mode is not a server mode, it is being removed, the user making the change is local, there is a parameter,
71                  * and the user making the change is not a uline
72                  */
73                 if (!adding && chan && IS_LOCAL(user) && !param.empty())
74                 {
75                         /* Check if the parameter is a valid nick/uuid
76                          */
77                         User *u = ServerInstance->FindNick(param);
78                         if (u)
79                         {
80                                 Membership* memb = chan->GetUser(u);
81                                 /* The target user has +k set on themselves, and you are trying to remove a privilege mode the user has set on themselves.
82                                  * This includes any prefix permission mode, even those registered in other modules, e.g. +qaohv. Using ::ModeString()
83                                  * here means that the number of modes is restricted to only modes the user has, limiting it to as short a loop as possible.
84                                  */
85                                 if (u->IsModeSet(bm) && memb && memb->hasMode(mh->GetModeChar()))
86                                 {
87                                         /* BZZZT, Denied! */
88                                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s :You are not permitted to remove privileges from %s services", chan->name.c_str(), ServerInstance->Config->Network.c_str());
89                                         return MOD_RES_DENY;
90                                 }
91                         }
92                 }
93                 /* Mode allowed */
94                 return MOD_RES_PASSTHRU;
95         }
96
97         ModResult OnKill(User* src, User* dst, const std::string &reason) CXX11_OVERRIDE
98         {
99                 if (src == NULL)
100                         return MOD_RES_PASSTHRU;
101
102                 if (dst->IsModeSet(bm))
103                 {
104                         src->WriteNumeric(485, ":You are not permitted to kill %s services!", ServerInstance->Config->Network.c_str());
105                         ServerInstance->SNO->WriteGlobalSno('a', src->nick+" tried to kill service "+dst->nick+" ("+reason+")");
106                         return MOD_RES_DENY;
107                 }
108                 return MOD_RES_PASSTHRU;
109         }
110
111         ModResult OnUserPreKick(User *src, Membership* memb, const std::string &reason) CXX11_OVERRIDE
112         {
113                 if (memb->user->IsModeSet(bm))
114                 {
115                         src->WriteNumeric(ERR_RESTRICTED, "%s :You are not permitted to kick services",
116                                 memb->chan->name.c_str());
117                         return MOD_RES_DENY;
118                 }
119
120                 return MOD_RES_PASSTHRU;
121         }
122
123         ModResult OnWhoisLine(User* src, User* dst, int &numeric, std::string &text) CXX11_OVERRIDE
124         {
125                 return ((numeric == 319) && dst->IsModeSet(bm)) ? MOD_RES_DENY : MOD_RES_PASSTHRU;
126         }
127 };
128
129 MODULE_INIT(ModuleServProtectMode)