2 * InspIRCd -- Internet Relay Chat Daemon
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>
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.
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
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/>.
28 /* $ModDesc: Provides channel mode +f (message flood protection) */
30 /** Holds flood settings and state for mode +f
39 std::map<User*, unsigned int> counters;
41 floodsettings(bool a, int b, int c) : ban(a), secs(b), lines(c)
43 reset = ServerInstance->Time() + secs;
46 bool addmessage(User* who)
48 if (ServerInstance->Time() > reset)
51 reset = ServerInstance->Time() + secs;
54 return (++counters[who] >= this->lines);
59 std::map<User*, unsigned int>::iterator iter = counters.find(who);
60 if (iter != counters.end())
67 /** Handles channel mode +f
69 class MsgFlood : public ModeHandler
72 SimpleExtItem<floodsettings> ext;
73 MsgFlood(Module* Creator) : ModeHandler(Creator, "flood", 'f', PARAM_SETONLY, MODETYPE_CHANNEL),
74 ext("messageflood", Creator) { }
76 ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding)
80 std::string::size_type colon = parameter.find(':');
81 if ((colon == std::string::npos) || (parameter.find('-') != std::string::npos))
83 source->WriteNumeric(608, "%s %s :Invalid flood parameter",source->nick.c_str(),channel->name.c_str());
84 return MODEACTION_DENY;
87 /* Set up the flood parameters for this channel */
88 bool ban = (parameter[0] == '*');
89 unsigned int nlines = ConvToInt(parameter.substr(ban ? 1 : 0, ban ? colon-1 : colon));
90 unsigned int nsecs = ConvToInt(parameter.substr(colon+1));
92 if ((nlines<2) || (nsecs<1))
94 source->WriteNumeric(608, "%s %s :Invalid flood parameter",source->nick.c_str(),channel->name.c_str());
95 return MODEACTION_DENY;
98 floodsettings* f = ext.get(channel);
99 if ((f) && (nlines == f->lines) && (nsecs == f->secs) && (ban == f->ban))
101 return MODEACTION_DENY;
103 ext.set(channel, new floodsettings(ban, nsecs, nlines));
104 parameter = std::string(ban ? "*" : "") + ConvToStr(nlines) + ":" + ConvToStr(nsecs);
105 channel->SetModeParam('f', parameter);
106 return MODEACTION_ALLOW;
110 if (!channel->IsModeSet('f'))
111 return MODEACTION_DENY;
114 channel->SetModeParam('f', "");
115 return MODEACTION_ALLOW;
120 class ModuleMsgFlood : public Module
133 ServerInstance->Modules->AddService(mf);
134 ServerInstance->Modules->AddService(mf.ext);
135 Implementation eventlist[] = { I_OnUserPreNotice, I_OnUserPreMessage };
136 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
139 ModResult ProcessMessages(User* user,Channel* dest, const std::string &text)
141 if ((!IS_LOCAL(user)) || !dest->IsModeSet('f'))
142 return MOD_RES_PASSTHRU;
144 if (ServerInstance->OnCheckExemption(user,dest,"flood") == MOD_RES_ALLOW)
145 return MOD_RES_PASSTHRU;
147 floodsettings *f = mf.ext.get(dest);
150 if (f->addmessage(user))
152 /* Youre outttta here! */
156 std::vector<std::string> parameters;
157 parameters.push_back(dest->name);
158 parameters.push_back("+b");
159 parameters.push_back(user->MakeWildHost());
160 ServerInstance->SendGlobalMode(parameters, ServerInstance->FakeClient);
163 char kickmessage[MAXBUF];
164 snprintf(kickmessage, MAXBUF, "Channel flood triggered (limit is %u lines in %u secs)", f->lines, f->secs);
166 dest->KickUser(ServerInstance->FakeClient, user, kickmessage);
172 return MOD_RES_PASSTHRU;
175 ModResult OnUserPreMessage(User *user, void *dest, int target_type, std::string &text, char status, CUList &exempt_list)
177 if (target_type == TYPE_CHANNEL)
178 return ProcessMessages(user,(Channel*)dest,text);
180 return MOD_RES_PASSTHRU;
183 ModResult OnUserPreNotice(User *user, void *dest, int target_type, std::string &text, char status, CUList &exempt_list)
185 if (target_type == TYPE_CHANNEL)
186 return ProcessMessages(user,(Channel*)dest,text);
188 return MOD_RES_PASSTHRU;
193 // we want to be after all modules that might deny the message (e.g. m_muteban, m_noctcp, m_blockcolor, etc.)
194 ServerInstance->Modules->SetPriority(this, I_OnUserPreMessage, PRIORITY_LAST);
195 ServerInstance->Modules->SetPriority(this, I_OnUserPreNotice, PRIORITY_LAST);
200 return Version("Provides channel mode +f (message flood protection)", VF_VENDOR);
204 MODULE_INIT(ModuleMsgFlood)