]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_connflood.cpp
2ab906e27c42d1e2f34b583dfaf0898e8b4f3314
[user/henk/code/inspircd.git] / src / modules / m_connflood.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #include "inspircd.h"
23
24 class ModuleConnFlood : public Module
25 {
26         int seconds, timeout, boot_wait;
27         unsigned int conns;
28         unsigned int maxconns;
29         bool throttled;
30         time_t first;
31         std::string quitmsg;
32
33 public:
34         ModuleConnFlood()
35                 : conns(0), throttled(false)
36         {
37         }
38
39         Version GetVersion() CXX11_OVERRIDE
40         {
41                 return Version("Connection throttle", VF_VENDOR);
42         }
43
44         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
45         {
46                 /* read configuration variables */
47                 ConfigTag* tag = ServerInstance->Config->ConfValue("connflood");
48                 /* throttle configuration */
49                 seconds = tag->getInt("seconds");
50                 maxconns = tag->getInt("maxconns");
51                 timeout = tag->getInt("timeout");
52                 quitmsg = tag->getString("quitmsg");
53
54                 /* seconds to wait when the server just booted */
55                 boot_wait = tag->getInt("bootwait");
56
57                 first = ServerInstance->Time();
58         }
59
60         ModResult OnUserRegister(LocalUser* user) CXX11_OVERRIDE
61         {
62                 if (user->exempt)
63                         return MOD_RES_PASSTHRU;
64
65                 time_t next = ServerInstance->Time();
66
67                 if ((ServerInstance->startup_time + boot_wait) > next)
68                         return MOD_RES_PASSTHRU;
69
70                 /* time difference between first and latest connection */
71                 time_t tdiff = next - first;
72
73                 /* increase connection count */
74                 conns++;
75
76                 if (throttled)
77                 {
78                         if (tdiff > seconds + timeout)
79                         {
80                                 /* expire throttle */
81                                 throttled = false;
82                                 ServerInstance->SNO->WriteGlobalSno('a', "Connection throttle deactivated");
83                                 return MOD_RES_PASSTHRU;
84                         }
85
86                         ServerInstance->Users->QuitUser(user, quitmsg);
87                         return MOD_RES_DENY;
88                 }
89
90                 if (tdiff <= seconds)
91                 {
92                         if (conns >= maxconns)
93                         {
94                                 throttled = true;
95                                 ServerInstance->SNO->WriteGlobalSno('a', "Connection throttle activated");
96                                 ServerInstance->Users->QuitUser(user, quitmsg);
97                                 return MOD_RES_DENY;
98                         }
99                 }
100                 else
101                 {
102                         conns = 1;
103                         first = next;
104                 }
105                 return MOD_RES_PASSTHRU;
106         }
107 };
108
109 MODULE_INIT(ModuleConnFlood)