]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_servprotect.cpp
Include untranslated user/channel metadata in CHECK output
[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(InspIRCd* Instance) : ModeHandler(Instance, 'k', 0, 0, false, MODETYPE_USER, true) { }
24
25         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding, bool)
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         bool NeedsOper() { return true; }
39 };
40
41 class ModuleServProtectMode : public Module
42 {
43
44         ServProtectMode bm;
45  public:
46         ModuleServProtectMode(InspIRCd* Me)
47                 : Module(Me), bm(Me)
48         {
49                 if (!ServerInstance->Modes->AddMode(&bm))
50                         throw ModuleException("Could not add new modes!");
51                 Implementation eventlist[] = { I_OnWhois, I_OnKill, I_OnWhoisLine, I_OnRawMode, I_OnUserPreKick };
52                 ServerInstance->Modules->Attach(eventlist, this, 5);
53         }
54
55
56         virtual ~ModuleServProtectMode()
57         {
58                 ServerInstance->Modes->DelMode(&bm);
59         }
60
61         virtual Version GetVersion()
62         {
63                 return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
64         }
65
66         virtual void OnWhois(User* src, User* dst)
67         {
68                 if (dst->IsModeSet('k'))
69                 {
70                         ServerInstance->SendWhoisLine(src, dst, 310, std::string(src->nick)+" "+std::string(dst->nick)+" :is an "+ServerInstance->Config->Network+" Service");
71                 }
72         }
73
74         virtual int OnRawMode(User* user, Channel* chan, const char mode, const std::string &param, bool adding, int pcnt, bool servermode)
75         {
76                 /* Check that the mode is not a server mode, it is being removed, the user making the change is local, there is a parameter,
77                  * and the user making the change is not a uline
78                  */
79                 if (!servermode && !adding && chan && IS_LOCAL(user) && !param.empty() && !ServerInstance->ULine(user->server))
80                 {
81                         /* Check if the parameter is a valid nick/uuid
82                          */
83                         User *u = ServerInstance->FindNick(param);
84                         if (u)
85                         {
86                                 /* The target user has +k set on themselves, and you are trying to remove a privilege mode the user has set on themselves.
87                                  * This includes any prefix permission mode, even those registered in other modules, e.g. +qaohv. Using ::ModeString()
88                                  * here means that the number of modes is restricted to only modes the user has, limiting it to as short a loop as possible.
89                                  */
90                                 if (u->IsModeSet('k') && ServerInstance->Modes->ModeString(u, chan, false).find(mode) != std::string::npos)
91                                 {
92                                         /* BZZZT, Denied! */
93                                         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);
94                                         return ACR_DENY;
95                                 }
96                         }
97                 }
98                 /* Mode allowed */
99                 return 0;
100         }
101
102         virtual int OnKill(User* src, User* dst, const std::string &reason)
103         {
104                 if (src == NULL)
105                         return 0;
106
107                 if (dst->IsModeSet('k'))
108                 {
109                         src->WriteNumeric(485, "%s :You are not permitted to kill %s services!", src->nick.c_str(), ServerInstance->Config->Network);
110                         ServerInstance->SNO->WriteGlobalSno('a', std::string(src->nick)+" tried to kill service "+dst->nick+" ("+reason+")");
111                         return 1;
112                 }
113                 return 0;
114         }
115
116         virtual int OnUserPreKick(User *src, User *dst, Channel *c, const std::string &reason)
117         {
118                 if (dst->IsModeSet('k'))
119                 {
120                         src->WriteNumeric(484, "%s %s :You are not permitted to kick services", src->nick.c_str(), c->name.c_str());
121                         return 1;
122                 }
123
124                 return 0;
125         }
126
127         virtual int OnWhoisLine(User* src, User* dst, int &numeric, std::string &text)
128         {
129                 return ((src != dst) && (numeric == 319) && dst->IsModeSet('k'));
130         }
131 };
132
133
134 MODULE_INIT(ModuleServProtectMode)