2011-08-11 16:13:42 -07:00
|
|
|
/*
|
2013-02-24 09:40:43 -08:00
|
|
|
Minetest
|
2013-02-24 10:38:45 -08:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2018-01-01 09:48:52 -08:00
|
|
|
Copyright (C) 2018 nerzhul, Loic BLOT <loic.blot@unix-experience.fr>
|
2011-08-11 16:13:42 -07:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 07:56:56 -07: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 16:13:42 -07: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 07:56:56 -07:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-08-11 16:13:42 -07:00
|
|
|
|
2012-06-05 07:56:56 -07:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-08-11 16:13:42 -07: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>
|
2015-04-07 03:13:12 -07:00
|
|
|
#include "threading/mutex_auto_lock.h"
|
2011-08-11 16:13:42 -07:00
|
|
|
#include <sstream>
|
2011-08-12 03:11:27 -07:00
|
|
|
#include <set>
|
2016-03-19 09:08:24 -07:00
|
|
|
#include "util/strfnd.h"
|
2013-08-10 19:09:45 -07:00
|
|
|
#include "util/string.h"
|
2012-03-10 05:49:38 -08:00
|
|
|
#include "log.h"
|
2013-08-13 10:15:06 -07:00
|
|
|
#include "filesys.h"
|
2011-08-11 16:13:42 -07:00
|
|
|
|
|
|
|
BanManager::BanManager(const std::string &banfilepath):
|
2017-06-16 02:25:52 -07:00
|
|
|
m_banfilepath(banfilepath)
|
2011-08-11 16:13:42 -07:00
|
|
|
{
|
2017-06-16 02:25:52 -07:00
|
|
|
try {
|
2011-08-11 16:13:42 -07:00
|
|
|
load();
|
2017-06-16 02:25:52 -07:00
|
|
|
} catch(SerializationError &e) {
|
2017-08-18 23:06:22 -07:00
|
|
|
infostream << "BanManager: creating "
|
|
|
|
<< m_banfilepath << std::endl;
|
2011-08-11 16:13:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BanManager::~BanManager()
|
|
|
|
{
|
|
|
|
save();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BanManager::load()
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2012-03-10 05:49:38 -08:00
|
|
|
infostream<<"BanManager: loading from "<<m_banfilepath<<std::endl;
|
2011-08-11 16:13:42 -07:00
|
|
|
std::ifstream is(m_banfilepath.c_str(), std::ios::binary);
|
2017-08-15 00:39:58 -07:00
|
|
|
if (!is.good()) {
|
2012-03-10 05:49:38 -08:00
|
|
|
infostream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl;
|
2011-08-11 16:13:42 -07:00
|
|
|
throw SerializationError("BanManager::load(): Couldn't open file");
|
|
|
|
}
|
2015-05-18 23:24:14 -07:00
|
|
|
|
2017-08-15 00:39:58 -07:00
|
|
|
while (!is.eof() && is.good()) {
|
2011-08-12 03:11:27 -07: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 00:40:33 -07:00
|
|
|
if(!ip.empty()) {
|
|
|
|
m_ips[ip] = name;
|
|
|
|
}
|
2011-08-11 16:13:42 -07:00
|
|
|
}
|
|
|
|
m_modified = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BanManager::save()
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-05-18 23:24:14 -07:00
|
|
|
infostream << "BanManager: saving to " << m_banfilepath << std::endl;
|
2013-08-13 10:15:06 -07:00
|
|
|
std::ostringstream ss(std::ios_base::binary);
|
2011-08-11 16:13:42 -07:00
|
|
|
|
2017-08-15 00:39:58 -07:00
|
|
|
for (const auto &ip : m_ips)
|
|
|
|
ss << ip.first << "|" << ip.second << "\n";
|
2013-08-13 10:15:06 -07:00
|
|
|
|
2015-05-18 23:24:14 -07:00
|
|
|
if (!fs::safeWriteToFile(m_banfilepath, ss.str())) {
|
|
|
|
infostream << "BanManager: failed saving to " << m_banfilepath << std::endl;
|
2013-08-13 15:50:03 -07:00
|
|
|
throw SerializationError("BanManager::save(): Couldn't write file");
|
2013-08-13 10:15:06 -07:00
|
|
|
}
|
|
|
|
|
2011-08-11 16:13:42 -07:00
|
|
|
m_modified = false;
|
|
|
|
}
|
|
|
|
|
2011-08-12 03:11:27 -07:00
|
|
|
bool BanManager::isIpBanned(const std::string &ip)
|
2011-08-11 16:13:42 -07:00
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2011-08-11 16:13:42 -07:00
|
|
|
return m_ips.find(ip) != m_ips.end();
|
|
|
|
}
|
|
|
|
|
2011-08-12 03:11:27 -07:00
|
|
|
std::string BanManager::getBanDescription(const std::string &ip_or_name)
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2017-08-15 00:39:58 -07:00
|
|
|
std::string s;
|
|
|
|
for (const auto &ip : m_ips) {
|
|
|
|
if (ip.first == ip_or_name || ip.second == ip_or_name
|
|
|
|
|| ip_or_name.empty()) {
|
|
|
|
s += ip.first + "|" + ip.second + ", ";
|
2015-05-18 23:24:14 -07:00
|
|
|
}
|
2011-08-12 03:11:27 -07:00
|
|
|
}
|
2015-05-18 23:24:14 -07:00
|
|
|
s = s.substr(0, s.size() - 2);
|
2011-08-12 03:11:27 -07:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string BanManager::getBanName(const std::string &ip)
|
2011-08-11 16:13:42 -07:00
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-05-18 23:24:14 -07:00
|
|
|
StringMap::iterator it = m_ips.find(ip);
|
|
|
|
if (it == m_ips.end())
|
2011-08-12 03:11:27 -07:00
|
|
|
return "";
|
2015-05-18 23:24:14 -07:00
|
|
|
return it->second;
|
2011-08-12 03:11:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void BanManager::add(const std::string &ip, const std::string &name)
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2011-08-12 03:11:27 -07:00
|
|
|
m_ips[ip] = name;
|
2011-08-11 16:13:42 -07:00
|
|
|
m_modified = true;
|
|
|
|
}
|
|
|
|
|
2011-08-12 03:11:27 -07:00
|
|
|
void BanManager::remove(const std::string &ip_or_name)
|
2011-08-11 16:13:42 -07:00
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2015-05-18 23:24:14 -07:00
|
|
|
for (StringMap::iterator it = m_ips.begin(); it != m_ips.end();) {
|
|
|
|
if ((it->first == ip_or_name) || (it->second == ip_or_name)) {
|
|
|
|
m_ips.erase(it++);
|
2018-01-01 09:48:52 -08:00
|
|
|
m_modified = true;
|
2014-03-29 00:40:33 -07:00
|
|
|
} else {
|
2015-05-18 23:24:14 -07:00
|
|
|
++it;
|
2014-03-29 00:40:33 -07:00
|
|
|
}
|
2011-08-12 03:11:27 -07:00
|
|
|
}
|
2011-08-11 16:13:42 -07:00
|
|
|
}
|
2015-05-18 23:24:14 -07:00
|
|
|
|
2011-08-11 16:13:42 -07:00
|
|
|
|
|
|
|
bool BanManager::isModified()
|
|
|
|
{
|
2015-04-07 03:13:12 -07:00
|
|
|
MutexAutoLock lock(m_mutex);
|
2011-08-11 16:13:42 -07:00
|
|
|
return m_modified;
|
|
|
|
}
|
|
|
|
|