Executive Order 14042 : Implement IPRange Ban

This commit is contained in:
Salanto 2021-09-13 10:32:05 +02:00 committed by Salanto
parent 30b769b282
commit d68fb66759
4 changed files with 54 additions and 0 deletions

View File

@ -30,6 +30,7 @@
#include <QUrl> #include <QUrl>
#include <QMetaEnum> #include <QMetaEnum>
#include <QElapsedTimer> #include <QElapsedTimer>
#include <QHostAddress>
//JSON loading requirements //JSON loading requirements
#include <QJsonDocument> #include <QJsonDocument>
@ -112,6 +113,13 @@ class ConfigManager {
*/ */
static QStringList rawAreaNames(); static QStringList rawAreaNames();
/**
* @brief Returns a list of the IPrange bans.
*
* @return See short description.
*/
static QStringList iprangeBans();
/** /**
* @brief Returns true if the server should advertise to the master server. * @brief Returns true if the server should advertise to the master server.
* *

View File

@ -195,6 +195,11 @@ class Server : public QObject {
*/ */
QStringList m_backgrounds; QStringList m_backgrounds;
/**
* @brief Collection of all IPs that are banned.
*/
QStringList m_ipban_list;
/** /**
* @brief The database manager on the server, used to store users' bans and authorisation details. * @brief The database manager on the server, used to store users' bans and authorisation details.
*/ */
@ -297,6 +302,11 @@ class Server : public QObject {
**/ **/
void hookupLogger(AOClient* client); void hookupLogger(AOClient* client);
/**
* @brief Checks if an IP is in a subnet of the IPBanlist.
**/
bool isIPBanned(QHostAddress f_remote_IP);
/** /**
* @brief The proxy used for WebSocket connections. * @brief The proxy used for WebSocket connections.
* *

View File

@ -235,6 +235,18 @@ QStringList ConfigManager::rawAreaNames()
return m_areas->childGroups(); return m_areas->childGroups();
} }
QStringList ConfigManager::iprangeBans()
{
QStringList l_iprange_bans;
QFile l_file("config/iprange_bans.txt");
l_file.open(QIODevice::ReadOnly | QIODevice::Text);
while (!(l_file.atEnd())) {
l_iprange_bans.append(l_file.readLine().trimmed());
}
l_file.close();
return l_iprange_bans;
}
void ConfigManager::reloadSettings() void ConfigManager::reloadSettings()
{ {
m_settings->sync(); m_settings->sync();

View File

@ -99,6 +99,9 @@ void Server::start()
//Loads the command help information. This is not stored inside the server. //Loads the command help information. This is not stored inside the server.
ConfigManager::loadCommandHelp(); ConfigManager::loadCommandHelp();
//Get IP bans
m_ipban_list = ConfigManager::iprangeBans();
//Rate-Limiter for IC-Chat //Rate-Limiter for IC-Chat
connect(&next_message_timer, SIGNAL(timeout()), this, SLOT(allowMessage())); connect(&next_message_timer, SIGNAL(timeout()), this, SLOT(allowMessage()));
@ -145,6 +148,15 @@ void Server::clientConnected()
return; return;
} }
if (isIPBanned(client->m_remote_ip)){
QString l_reason = "Your IP has been banned by a moderator.";
AOPacket l_ban_reason("BD", {l_reason});
socket->write(l_ban_reason.toUtf8());
client->deleteLater();
socket->close();
return;
}
m_clients.append(client); m_clients.append(client);
connect(socket, &QTcpSocket::disconnected, client, connect(socket, &QTcpSocket::disconnected, client,
&AOClient::clientDisconnected); &AOClient::clientDisconnected);
@ -319,6 +331,18 @@ void Server::hookupLogger(AOClient* client)
logger, &ULogger::logModcall); logger, &ULogger::logModcall);
} }
bool Server::isIPBanned(QHostAddress f_remote_IP)
{
bool l_match_found = false;
for(const QString &l_ipban : qAsConst(m_ipban_list)) {
if (f_remote_IP.isInSubnet(QHostAddress::parseSubnet(l_ipban))) {
l_match_found = true;
break;
}
}
return l_match_found;
}
Server::~Server() Server::~Server()
{ {
for (AOClient* client : qAsConst(m_clients)) { for (AOClient* client : qAsConst(m_clients)) {