Merge pull request #93 from AttorneyOnline/multiclient-limit

Multiclient limit
This commit is contained in:
Marisa P 2021-04-19 02:16:08 -05:00 committed by GitHub
commit c9e97b34d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 1 deletions

View File

@ -17,6 +17,7 @@ modpass=changeme
logbuffer=500 logbuffer=500
logging=modcall logging=modcall
maximum_statements=10 maximum_statements=10
multiclient_limit=15
[Dice] [Dice]
max_value=100 max_value=100

View File

@ -281,6 +281,11 @@ class Server : public QObject {
*/ */
QStringList gimp_list; QStringList gimp_list;
/**
* @brief Integer representing the maximum number of clients allowed to connect from the same IP
*/
int multiclient_limit;
public slots: public slots:
/** /**
* @brief Handles a new connection. * @brief Handles a new connection.

View File

@ -301,6 +301,17 @@ void AOClient::pktWebSocketIp(AreaData* area, int argc, QStringList argv, AOPack
#endif #endif
remote_ip = QHostAddress(argv[0]); remote_ip = QHostAddress(argv[0]);
calculateIpid(); calculateIpid();
int multiclient_count = 0;
for (AOClient* joined_client : server->clients) {
if (remote_ip.isEqual(joined_client->remote_ip))
multiclient_count++;
}
if (multiclient_count > server->multiclient_limit) {
socket->close();
return;
}
} }
} }

View File

@ -114,14 +114,29 @@ void Server::clientConnected()
break; break;
} }
AOClient* client = new AOClient(this, socket, this, user_id); AOClient* client = new AOClient(this, socket, this, user_id);
if (db_manager->isIPBanned(socket->peerAddress())) {
int multiclient_count = 1;
bool is_at_multiclient_limit = false;
bool is_banned = db_manager->isIPBanned(socket->peerAddress());
for (AOClient* joined_client : clients) {
if (client->remote_ip.isEqual(joined_client->remote_ip))
multiclient_count++;
}
if (multiclient_count > multiclient_limit && !client->remote_ip.isLoopback()) // TODO: make this configurable
is_at_multiclient_limit = true;
if (is_banned) {
AOPacket ban_reason("BD", {db_manager->getBanReason(socket->peerAddress())}); AOPacket ban_reason("BD", {db_manager->getBanReason(socket->peerAddress())});
socket->write(ban_reason.toUtf8()); socket->write(ban_reason.toUtf8());
}
if (is_banned || is_at_multiclient_limit) {
socket->flush(); socket->flush();
client->deleteLater(); client->deleteLater();
socket->close(); socket->close();
return; return;
} }
clients.append(client); clients.append(client);
connect(socket, &QTcpSocket::disconnected, client, connect(socket, &QTcpSocket::disconnected, client,
&AOClient::clientDisconnected); &AOClient::clientDisconnected);
@ -264,6 +279,10 @@ void Server::loadServerConfig()
afk_timeout = config.value("afk_timeout", "300").toInt(&afk_timeout_conversion_success); afk_timeout = config.value("afk_timeout", "300").toInt(&afk_timeout_conversion_success);
if (!afk_timeout_conversion_success) if (!afk_timeout_conversion_success)
afk_timeout = 300; afk_timeout = 300;
bool multiclient_limit_conversion_success;
multiclient_limit = config.value("multiclient_limit", "15").toInt(&multiclient_limit_conversion_success);
if (!multiclient_limit_conversion_success)
multiclient_limit = 15;
config.endGroup(); config.endGroup();
//Load dice values //Load dice values