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