]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_messageflood.cpp
Fix a ton of -Wsign-conversion warnings.
[user/henk/code/inspircd.git] / src / modules / m_messageflood.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
6  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2007 John Brooks <john.brooks@dereferenced.net>
8  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
9  *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
10  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27 #include "modules/exemption.h"
28
29 /** Holds flood settings and state for mode +f
30  */
31 class floodsettings
32 {
33  public:
34         bool ban;
35         unsigned int secs;
36         unsigned int lines;
37         time_t reset;
38         insp::flat_map<User*, unsigned int> counters;
39
40         floodsettings(bool a, unsigned int b, unsigned int c)
41                 : ban(a)
42                 , secs(b)
43                 , lines(c)
44         {
45                 reset = ServerInstance->Time() + secs;
46         }
47
48         bool addmessage(User* who)
49         {
50                 if (ServerInstance->Time() > reset)
51                 {
52                         counters.clear();
53                         reset = ServerInstance->Time() + secs;
54                 }
55
56                 return (++counters[who] >= this->lines);
57         }
58
59         void clear(User* who)
60         {
61                 counters.erase(who);
62         }
63 };
64
65 /** Handles channel mode +f
66  */
67 class MsgFlood : public ParamMode<MsgFlood, SimpleExtItem<floodsettings> >
68 {
69  public:
70         MsgFlood(Module* Creator)
71                 : ParamMode<MsgFlood, SimpleExtItem<floodsettings> >(Creator, "flood", 'f')
72         {
73         }
74
75         ModeAction OnSet(User* source, Channel* channel, std::string& parameter)
76         {
77                 std::string::size_type colon = parameter.find(':');
78                 if ((colon == std::string::npos) || (parameter.find('-') != std::string::npos))
79                 {
80                         source->WriteNumeric(608, channel->name, "Invalid flood parameter");
81                         return MODEACTION_DENY;
82                 }
83
84                 /* Set up the flood parameters for this channel */
85                 bool ban = (parameter[0] == '*');
86                 unsigned int nlines = ConvToInt(parameter.substr(ban ? 1 : 0, ban ? colon-1 : colon));
87                 unsigned int nsecs = ConvToInt(parameter.substr(colon+1));
88
89                 if ((nlines<2) || (nsecs<1))
90                 {
91                         source->WriteNumeric(608, channel->name, "Invalid flood parameter");
92                         return MODEACTION_DENY;
93                 }
94
95                 ext.set(channel, new floodsettings(ban, nsecs, nlines));
96                 return MODEACTION_ALLOW;
97         }
98
99         void SerializeParam(Channel* chan, const floodsettings* fs, std::string& out)
100         {
101                 if (fs->ban)
102                         out.push_back('*');
103                 out.append(ConvToStr(fs->lines)).push_back(':');
104                 out.append(ConvToStr(fs->secs));
105         }
106 };
107
108 class ModuleMsgFlood : public Module
109 {
110         CheckExemption::EventProvider exemptionprov;
111         MsgFlood mf;
112
113  public:
114
115         ModuleMsgFlood()
116                 : exemptionprov(this)
117                 , mf(this)
118         {
119         }
120
121         ModResult OnUserPreMessage(User* user, void* voiddest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE
122         {
123                 if (target_type != TYPE_CHANNEL)
124                         return MOD_RES_PASSTHRU;
125
126                 Channel* dest = static_cast<Channel*>(voiddest);
127                 if ((!IS_LOCAL(user)) || !dest->IsModeSet(mf))
128                         return MOD_RES_PASSTHRU;
129
130                 ModResult res = CheckExemption::Call(exemptionprov, user, dest, "flood");
131                 if (res == MOD_RES_ALLOW)
132                         return MOD_RES_PASSTHRU;
133
134                 floodsettings *f = mf.ext.get(dest);
135                 if (f)
136                 {
137                         if (f->addmessage(user))
138                         {
139                                 /* Youre outttta here! */
140                                 f->clear(user);
141                                 if (f->ban)
142                                 {
143                                         Modes::ChangeList changelist;
144                                         changelist.push_add(ServerInstance->Modes->FindMode('b', MODETYPE_CHANNEL), "*!*@" + user->GetDisplayedHost());
145                                         ServerInstance->Modes->Process(ServerInstance->FakeClient, dest, NULL, changelist);
146                                 }
147
148                                 const std::string kickMessage = "Channel flood triggered (trigger is " + ConvToStr(f->lines) +
149                                         " lines in " + ConvToStr(f->secs) + " secs)";
150
151                                 dest->KickUser(ServerInstance->FakeClient, user, kickMessage);
152
153                                 return MOD_RES_DENY;
154                         }
155                 }
156
157                 return MOD_RES_PASSTHRU;
158         }
159
160         void Prioritize() CXX11_OVERRIDE
161         {
162                 // we want to be after all modules that might deny the message (e.g. m_muteban, m_noctcp, m_blockcolor, etc.)
163                 ServerInstance->Modules->SetPriority(this, I_OnUserPreMessage, PRIORITY_LAST);
164         }
165
166         Version GetVersion() CXX11_OVERRIDE
167         {
168                 return Version("Provides channel mode +f (message flood protection)", VF_VENDOR);
169         }
170 };
171
172 MODULE_INIT(ModuleMsgFlood)