]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/bancache.h
Merge pull request #109 from Justasic/insp20
[user/henk/code/inspircd.git] / include / bancache.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #ifndef BANCACHE_H
22 #define BANCACHE_H
23
24 /** Stores a cached ban entry.
25  * Each ban has one of these hashed in a hash_map to make for faster removal
26  * of already-banned users in the case that they try to reconnect. As no wildcard
27  * matching is done on these IPs, the speed of the system is improved. These cache
28  * entries expire every few hours, which is a reasonable expiry for any reasonable
29  * sized network.
30  */
31 class CoreExport BanCacheHit
32 {
33  public:
34         /** Type of cached ban
35          */
36         std::string Type;
37         /** Reason, shown as quit message
38          */
39         std::string Reason;
40         /** IP to match against, no wildcards here (of course)
41          */
42         std::string IP;
43         /** Time that the ban expires at
44          */
45         time_t Expiry;
46
47         BanCacheHit(const std::string &ip, const std::string &type, const std::string &reason)
48         {
49                 this->Type = type;
50                 this->Reason = reason;
51                 this->IP = ip;
52                 this->Expiry = ServerInstance->Time() + 86400; // a day. this might seem long, but entries will be removed as glines/etc expire.
53         }
54
55         // overridden to allow custom time
56         BanCacheHit(const std::string &ip, const std::string &type, const std::string &reason, time_t seconds)
57         {
58                 this->Type = type;
59                 this->Reason = reason;
60                 this->IP = ip;
61                 this->Expiry = ServerInstance->Time() + seconds;
62         }
63 };
64
65 /* A container of ban cache items.
66  * must be defined after class BanCacheHit.
67  */
68 #if defined(WINDOWS) && !defined(HASHMAP_DEPRECATED)
69 typedef nspace::hash_map<std::string, BanCacheHit*, nspace::hash_compare<std::string, std::less<std::string> > > BanCacheHash;
70 #else
71 typedef nspace::hash_map<std::string, BanCacheHit*, nspace::hash<std::string> > BanCacheHash;
72 #endif
73
74 /** A manager for ban cache, which allocates and deallocates and checks cached bans.
75  */
76 class CoreExport BanCacheManager
77 {
78  private:
79         BanCacheHash* BanHash;
80  public:
81
82         /** Creates and adds a Ban Cache item.
83          * @param ip The IP the item is for.
84          * @param type The type of ban cache item. std::string. .empty() means it's a negative match (user is allowed freely).
85          * @param reason The reason for the ban. Left .empty() if it's a negative match.
86          */
87         BanCacheHit *AddHit(const std::string &ip, const std::string &type, const std::string &reason);
88
89         // Overridden to allow an optional number of seconds before expiry
90         BanCacheHit *AddHit(const std::string &ip, const std::string &type, const std::string &reason, time_t seconds);
91         BanCacheHit *GetHit(const std::string &ip);
92         bool RemoveHit(BanCacheHit *b);
93
94         /** Removes all entries of a given type, either positive or negative. Returns the number of hits removed.
95          * @param type The type of bancache entries to remove (e.g. 'G')
96          * @param positive Remove either positive (true) or negative (false) hits.
97          */
98         unsigned int RemoveEntries(const std::string &type, bool positive);
99
100         BanCacheManager()
101         {
102                 this->BanHash = new BanCacheHash();
103         }
104         ~BanCacheManager();
105         void RehashCache();
106 };
107
108 #endif