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