/* Minetest-c55 Copyright (C) 2011 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "ban.h" #include #include #include #include #include "strfnd.h" #include "debug.h" #include "db.h" BanManager::BanManager(Database* database, const std::string& file): m_banfilepath(file), m_modified(false), m_database(database), m_bantable(NULL) { m_mutex.Init(); if(m_database!=NULL) init(); } BanManager::~BanManager() { save(); } void BanManager::init(Database* database, const std::string& file) { //JMutexAutoLock lock(m_mutex); if(database!=NULL)m_database = database; if(file!="")m_banfilepath = file; assert(m_database != NULL); m_bantable = &m_database->getTable("ipban"); try{ load(); } catch(SerializationError &e) { dstream<<"WARNING: BanManager: load error "< iplist; if(!m_bantable->getKeys(iplist)) throw SerializationError("BanManager::load(): Couldn't read keys from ban DB"); if(iplist.size()>0){ for(core::list::ConstIterator it=iplist.begin(); it!=iplist.end(); it++) { const std::string& ip = *it; std::string name; if(!m_bantable->getNoEx(ip,name))continue; if(ip.empty()) continue; m_ips[ip] = name; } } else { //database is empty, try to load old way from file dstream<<"BanManager: loading from "<::iterator i = m_ips.begin(); i != m_ips.end(); i++) { m_bantable->put(i->first,i->second); } m_modified = false; } bool BanManager::isIpBanned(const std::string &ip) { JMutexAutoLock lock(m_mutex); return m_ips.find(ip) != m_ips.end(); } std::string BanManager::getBanDescription(const std::string &ip_or_name) { JMutexAutoLock lock(m_mutex); std::string s = ""; for(std::map::iterator i = m_ips.begin(); i != m_ips.end(); i++) { if(i->first == ip_or_name || i->second == ip_or_name || ip_or_name == "") s += i->first + "|" + i->second + ", "; } s = s.substr(0, s.size()-2); return s; } std::string BanManager::getBanName(const std::string &ip) { JMutexAutoLock lock(m_mutex); std::map::iterator i = m_ips.find(ip); if(i == m_ips.end()) return ""; return i->second; } void BanManager::add(const std::string &ip, const std::string &name) { JMutexAutoLock lock(m_mutex); m_ips[ip] = name; m_modified = true; } void BanManager::remove(const std::string &ip_or_name) { JMutexAutoLock lock(m_mutex); //m_ips.erase(m_ips.find(ip)); // Find out all ip-name pairs that match the ip or name std::set ips_to_delete; for(std::map::iterator i = m_ips.begin(); i != m_ips.end(); i++) { if(i->first == ip_or_name || i->second == ip_or_name) ips_to_delete.insert(i->first); } // Erase them for(std::set::iterator i = ips_to_delete.begin(); i != ips_to_delete.end(); i++) { m_ips.erase(*i); } m_modified = true; } bool BanManager::isModified() { JMutexAutoLock lock(m_mutex); return m_modified; }