diff options
author | Sadie Powell <sadie@witchery.services> | 2020-10-12 18:35:07 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-10-12 18:35:07 +0100 |
commit | 2a3b6ba9e24067d5c085c555a1acb2c4dc9bc5f2 (patch) | |
tree | 35bc3b745fdf7e2f7e6cc6f9443e019628297d8a | |
parent | 219f8e62623ff0c3002be764c1dbf7201d0293db (diff) |
Add an option to allow disengaging joinflood after a netsplit.
-rw-r--r-- | docs/conf/modules.conf.example | 11 | ||||
-rw-r--r-- | src/modules/m_joinflood.cpp | 24 |
2 files changed, 30 insertions, 5 deletions
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example index 2f74634d7..a1bd05670 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -1268,8 +1268,15 @@ # Closes the channel for N seconds if X users join in Y seconds. #<module name="joinflood"> # -# The number of seconds to close the channel for: -#<joinflood duration="1m"> +# duration: The number of seconds to close a channel for when it is +# being flooded with joins. +# +# splitwait: The number of seconds to disengage joinflood for after +# a server splits. This allows users to reconnect without +# being throttled by joinflood. +# +#<joinflood duration="1m" +# splitwait="30s"> #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-# # Anti auto rejoin: Adds support for prevention of auto-rejoin (+J). diff --git a/src/modules/m_joinflood.cpp b/src/modules/m_joinflood.cpp index c4b9336fb..e5af2a4c6 100644 --- a/src/modules/m_joinflood.cpp +++ b/src/modules/m_joinflood.cpp @@ -24,6 +24,7 @@ #include "inspircd.h" +#include "modules/server.h" enum { @@ -131,13 +132,23 @@ class JoinFlood : public ParamMode<JoinFlood, SimpleExtItem<joinfloodsettings> > } }; -class ModuleJoinFlood : public Module +class ModuleJoinFlood + : public Module + , public ServerProtocol::LinkEventListener { + private: JoinFlood jf; + time_t ignoreuntil; + unsigned long splitwait; public: + // Stop GCC warnings about the deprecated OnServerSplit event. + using ServerProtocol::LinkEventListener::OnServerSplit; + ModuleJoinFlood() - : jf(this) + : ServerProtocol::LinkEventListener(this) + , jf(this) + , ignoreuntil(0) { } @@ -145,6 +156,13 @@ class ModuleJoinFlood : public Module { ConfigTag* tag = ServerInstance->Config->ConfValue("joinflood"); duration = tag->getDuration("duration", 60, 10, 600); + splitwait = tag->getDuration("splitwait", 30); + } + + void OnServerSplit(const Server* server, bool error) CXX11_OVERRIDE + { + if (splitwait) + ignoreuntil = ServerInstance->Time() + splitwait; } ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE @@ -164,7 +182,7 @@ class ModuleJoinFlood : public Module void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts) CXX11_OVERRIDE { /* We arent interested in JOIN events caused by a network burst */ - if (sync) + if (sync || ignoreuntil > ServerInstance->Time()) return; joinfloodsettings *f = jf.ext.get(memb->chan); |