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