2011-08-11 19:13:42 -04:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-08-11 19:13:42 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2011-08-11 19:13:42 -04:00
|
|
|
(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
|
2012-06-05 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-08-11 19:13:42 -04:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-08-11 19:13:42 -04:00
|
|
|
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 <fstream>
|
2013-09-15 23:00:01 -04:00
|
|
|
#include "jthread/jmutexautolock.h"
|
2011-08-11 19:13:42 -04:00
|
|
|
#include <sstream>
|
2011-08-12 06:11:27 -04:00
|
|
|
#include <set>
|
2011-08-11 19:13:42 -04:00
|
|
|
#include "strfnd.h"
|
2013-08-10 22:09:45 -04:00
|
|
|
#include "util/string.h"
|
2012-03-10 08:49:38 -05:00
|
|
|
#include "log.h"
|
2013-08-13 13:15:06 -04:00
|
|
|
#include "filesys.h"
|
2011-08-11 19:13:42 -04:00
|
|
|
|
|
|
|
BanManager::BanManager(const std::string &banfilepath):
|
|
|
|
m_banfilepath(banfilepath),
|
|
|
|
m_modified(false)
|
|
|
|
{
|
|
|
|
try{
|
|
|
|
load();
|
|
|
|
}
|
|
|
|
catch(SerializationError &e)
|
|
|
|
{
|
2012-03-10 08:49:38 -05:00
|
|
|
infostream<<"WARNING: BanManager: creating "
|
2011-08-11 19:13:42 -04:00
|
|
|
<<m_banfilepath<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BanManager::~BanManager()
|
|
|
|
{
|
|
|
|
save();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BanManager::load()
|
|
|
|
{
|
|
|
|
JMutexAutoLock lock(m_mutex);
|
2012-03-10 08:49:38 -05:00
|
|
|
infostream<<"BanManager: loading from "<<m_banfilepath<<std::endl;
|
2011-08-11 19:13:42 -04:00
|
|
|
std::ifstream is(m_banfilepath.c_str(), std::ios::binary);
|
|
|
|
if(is.good() == false)
|
|
|
|
{
|
2012-03-10 08:49:38 -05:00
|
|
|
infostream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl;
|
2011-08-11 19:13:42 -04:00
|
|
|
throw SerializationError("BanManager::load(): Couldn't open file");
|
|
|
|
}
|
|
|
|
|
2014-03-29 03:40:33 -04:00
|
|
|
while(!is.eof() && is.good())
|
2011-08-11 19:13:42 -04:00
|
|
|
{
|
2011-08-12 06:11:27 -04:00
|
|
|
std::string line;
|
|
|
|
std::getline(is, line, '\n');
|
|
|
|
Strfnd f(line);
|
|
|
|
std::string ip = trim(f.next("|"));
|
|
|
|
std::string name = trim(f.next("|"));
|
2014-03-29 03:40:33 -04:00
|
|
|
if(!ip.empty()) {
|
|
|
|
m_ips[ip] = name;
|
|
|
|
}
|
2011-08-11 19:13:42 -04:00
|
|
|
}
|
|
|
|
m_modified = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BanManager::save()
|
|
|
|
{
|
|
|
|
JMutexAutoLock lock(m_mutex);
|
2012-03-10 08:49:38 -05:00
|
|
|
infostream<<"BanManager: saving to "<<m_banfilepath<<std::endl;
|
2013-08-13 13:15:06 -04:00
|
|
|
std::ostringstream ss(std::ios_base::binary);
|
2011-08-11 19:13:42 -04:00
|
|
|
|
2011-08-12 06:11:27 -04:00
|
|
|
for(std::map<std::string, std::string>::iterator
|
2011-08-11 19:13:42 -04:00
|
|
|
i = m_ips.begin();
|
|
|
|
i != m_ips.end(); i++)
|
|
|
|
{
|
2013-08-13 13:15:06 -04:00
|
|
|
ss << i->first << "|" << i->second << "\n";
|
2011-08-11 19:13:42 -04:00
|
|
|
}
|
2013-08-13 13:15:06 -04:00
|
|
|
|
|
|
|
if(!fs::safeWriteToFile(m_banfilepath, ss.str())) {
|
|
|
|
infostream<<"BanManager: failed saving to "<<m_banfilepath<<std::endl;
|
2013-08-13 18:50:03 -04:00
|
|
|
throw SerializationError("BanManager::save(): Couldn't write file");
|
2013-08-13 13:15:06 -04:00
|
|
|
}
|
|
|
|
|
2011-08-11 19:13:42 -04:00
|
|
|
m_modified = false;
|
|
|
|
}
|
|
|
|
|
2011-08-12 06:11:27 -04:00
|
|
|
bool BanManager::isIpBanned(const std::string &ip)
|
2011-08-11 19:13:42 -04:00
|
|
|
{
|
|
|
|
JMutexAutoLock lock(m_mutex);
|
|
|
|
return m_ips.find(ip) != m_ips.end();
|
|
|
|
}
|
|
|
|
|
2011-08-12 06:11:27 -04:00
|
|
|
std::string BanManager::getBanDescription(const std::string &ip_or_name)
|
|
|
|
{
|
|
|
|
JMutexAutoLock lock(m_mutex);
|
|
|
|
std::string s = "";
|
|
|
|
for(std::map<std::string, std::string>::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)
|
2011-08-11 19:13:42 -04:00
|
|
|
{
|
|
|
|
JMutexAutoLock lock(m_mutex);
|
2011-08-12 06:11:27 -04:00
|
|
|
std::map<std::string, std::string>::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;
|
2011-08-11 19:13:42 -04:00
|
|
|
m_modified = true;
|
|
|
|
}
|
|
|
|
|
2011-08-12 06:11:27 -04:00
|
|
|
void BanManager::remove(const std::string &ip_or_name)
|
2011-08-11 19:13:42 -04:00
|
|
|
{
|
|
|
|
JMutexAutoLock lock(m_mutex);
|
2011-08-12 06:11:27 -04:00
|
|
|
for(std::map<std::string, std::string>::iterator
|
|
|
|
i = m_ips.begin();
|
2014-03-29 03:40:33 -04:00
|
|
|
i != m_ips.end();)
|
2011-08-12 06:11:27 -04:00
|
|
|
{
|
2014-03-29 03:40:33 -04:00
|
|
|
if((i->first == ip_or_name) || (i->second == ip_or_name)) {
|
|
|
|
m_ips.erase(i++);
|
|
|
|
} else {
|
|
|
|
++i;
|
|
|
|
}
|
2011-08-12 06:11:27 -04:00
|
|
|
}
|
2011-08-11 19:13:42 -04:00
|
|
|
m_modified = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BanManager::isModified()
|
|
|
|
{
|
|
|
|
JMutexAutoLock lock(m_mutex);
|
|
|
|
return m_modified;
|
|
|
|
}
|
|
|
|
|