]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/bancache.cpp
Merge branch 'insp20' into master.
[user/henk/code/inspircd.git] / src / bancache.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
5  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
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 #include "inspircd.h"
22
23 BanCacheHit::BanCacheHit(const std::string& type, const std::string& reason, time_t seconds)
24         : Type(type)
25         , Reason(reason)
26         , Expiry(ServerInstance->Time() + seconds)
27 {
28 }
29
30 BanCacheHit *BanCacheManager::AddHit(const std::string &ip, const std::string &type, const std::string &reason, time_t seconds)
31 {
32         BanCacheHit*& b = BanHash[ip];
33         if (b != NULL) // can't have two cache entries on the same IP, sorry..
34                 return NULL;
35
36         b = new BanCacheHit(type, reason, (seconds ? seconds : 86400));
37         return b;
38 }
39
40 BanCacheHit *BanCacheManager::GetHit(const std::string &ip)
41 {
42         BanCacheHash::iterator i = this->BanHash.find(ip);
43
44         if (i == this->BanHash.end())
45                 return NULL; // free and safe
46
47         if (RemoveIfExpired(i))
48                 return NULL; // expired
49
50         return i->second; // hit.
51 }
52
53 bool BanCacheManager::RemoveIfExpired(BanCacheHash::iterator& it)
54 {
55         if (ServerInstance->Time() < it->second->Expiry)
56                 return false;
57
58         ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "Hit on " + it->first + " is out of date, removing!");
59         delete it->second;
60         it = BanHash.erase(it);
61         return true;
62 }
63
64 void BanCacheManager::RemoveEntries(const std::string& type, bool positive)
65 {
66         if (positive)
67                 ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "BanCacheManager::RemoveEntries(): Removing positive hits for " + type);
68         else
69                 ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "BanCacheManager::RemoveEntries(): Removing all negative hits");
70
71         for (BanCacheHash::iterator i = BanHash.begin(); i != BanHash.end(); )
72         {
73                 if (RemoveIfExpired(i))
74                         continue; // updates the iterator if expired
75
76                 BanCacheHit* b = i->second;
77                 bool remove = false;
78
79                 if (positive)
80                 {
81                         // when removing positive hits, remove only if the type matches
82                         remove = b->IsPositive() && (b->Type == type);
83                 }
84                 else
85                 {
86                         // when removing negative hits, remove all of them
87                         remove = !b->IsPositive();
88                 }
89
90                 if (remove)
91                 {
92                         /* we need to remove this one. */
93                         ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "BanCacheManager::RemoveEntries(): Removing a hit on " + i->first);
94                         delete b;
95                         i = BanHash.erase(i);
96                 }
97                 else
98                         ++i;
99         }
100 }
101
102 BanCacheManager::~BanCacheManager()
103 {
104         for (BanCacheHash::iterator n = BanHash.begin(); n != BanHash.end(); ++n)
105                 delete n->second;
106 }