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