]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_servprotect.cpp
dcb0cd7d5074dfa4e2c30a5a4ab940d128489e2b
[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                                 Membership* memb = chan->GetUser(u);
83                                 /* The target user has +k set on themselves, and you are trying to remove a privilege mode the user has set on themselves.
84                                  * This includes any prefix permission mode, even those registered in other modules, e.g. +qaohv. Using ::ModeString()
85                                  * here means that the number of modes is restricted to only modes the user has, limiting it to as short a loop as possible.
86                                  */
87                                 if (u->IsModeSet('k') && memb && memb->modes.find(mode) != std::string::npos)
88                                 {
89                                         /* BZZZT, Denied! */
90                                         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());
91                                         return MOD_RES_DENY;
92                                 }
93                         }
94                 }
95                 /* Mode allowed */
96                 return MOD_RES_PASSTHRU;
97         }
98
99         ModResult OnKill(User* src, User* dst, const std::string &reason)
100         {
101                 if (src == NULL)
102                         return MOD_RES_PASSTHRU;
103
104                 if (dst->IsModeSet('k'))
105                 {
106                         src->WriteNumeric(485, "%s :You are not permitted to kill %s services!", src->nick.c_str(), ServerInstance->Config->Network.c_str());
107                         ServerInstance->SNO->WriteGlobalSno('a', std::string(src->nick)+" tried to kill service "+dst->nick+" ("+reason+")");
108                         return MOD_RES_DENY;
109                 }
110                 return MOD_RES_PASSTHRU;
111         }
112
113         ModResult OnUserPreKick(User *src, Membership* memb, const std::string &reason)
114         {
115                 if (memb->user->IsModeSet('k'))
116                 {
117                         src->WriteNumeric(484, "%s %s :You are not permitted to kick services",
118                                 src->nick.c_str(), memb->chan->name.c_str());
119                         return MOD_RES_DENY;
120                 }
121
122                 return MOD_RES_PASSTHRU;
123         }
124
125         ModResult OnWhoisLine(User* src, User* dst, int &numeric, std::string &text)
126         {
127                 return ((src != dst) && (numeric == 319) && dst->IsModeSet('k')) ? MOD_RES_DENY : MOD_RES_PASSTHRU;
128         }
129 };
130
131
132 MODULE_INIT(ModuleServProtectMode)