]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/bancache.h
Sync helpop chmodes s and p with docs
[user/henk/code/inspircd.git] / include / bancache.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2019 Matt Schatz <genius3000@g3k.solutions>
5  *   Copyright (C) 2013 Sadie Powell <sadie@witchery.services>
6  *   Copyright (C) 2012-2014 Attila Molnar <attilamolnar@hush.com>
7  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
10  *   Copyright (C) 2007-2008 Craig Edwards <brain@inspircd.org>
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 #pragma once
27
28 /** Stores a cached ban entry.
29  * Each ban has one of these hashed in a hash_map to make for faster removal
30  * of already-banned users in the case that they try to reconnect. As no wildcard
31  * matching is done on these IPs, the speed of the system is improved. These cache
32  * entries expire every few hours, which is a reasonable expiry for any reasonable
33  * sized network.
34  */
35 class CoreExport BanCacheHit
36 {
37  public:
38         /** Type of cached ban
39          */
40         std::string Type;
41         /** Reason, shown as quit message
42          */
43         std::string Reason;
44         /** Time that the ban expires at
45          */
46         time_t Expiry;
47
48         BanCacheHit(const std::string& type, const std::string& reason, time_t seconds);
49
50         bool IsPositive() const { return (!Reason.empty()); }
51 };
52
53 /** A manager for ban cache, which allocates and deallocates and checks cached bans.
54  */
55 class CoreExport BanCacheManager
56 {
57         /** A container of ban cache items.
58          */
59         typedef TR1NS::unordered_map<std::string, BanCacheHit*, TR1NS::hash<std::string> > BanCacheHash;
60
61         BanCacheHash BanHash;
62         bool RemoveIfExpired(BanCacheHash::iterator& it);
63
64  public:
65
66         /** Creates and adds a Ban Cache item.
67          * @param ip The IP the item is for.
68          * @param type The type of ban cache item. std::string. .empty() means it's a negative match (user is allowed freely).
69          * @param reason The reason for the ban. Left .empty() if it's a negative match.
70          * @param seconds Number of seconds before nuking the bancache entry, the default is a day. This might seem long, but entries will be removed as G-lines/etc expire.
71          */
72         BanCacheHit *AddHit(const std::string &ip, const std::string &type, const std::string &reason, time_t seconds = 0);
73         BanCacheHit *GetHit(const std::string &ip);
74
75         /** Removes all entries of a given type, either positive or negative. Returns the number of hits removed.
76          * @param type The type of bancache entries to remove (e.g. 'G')
77          * @param positive Remove either positive (true) or negative (false) hits.
78          */
79         void RemoveEntries(const std::string& type, bool positive);
80
81         ~BanCacheManager();
82 };