mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 17:15:09 -07:00
Some checks are pending
Build Desktop / Configure (push) Waiting to run
Build Desktop / Debian 13 (push) Blocked by required conditions
Build Desktop / Debian 12 (push) Blocked by required conditions
Build Desktop / Fedora 44 (push) Blocked by required conditions
Build Desktop / Fedora 43 (push) Blocked by required conditions
Build Desktop / Servatrice_Debian 12 (push) Blocked by required conditions
Build Desktop / Ubuntu 26.04 (push) Blocked by required conditions
Build Desktop / Ubuntu 24.04 (push) Blocked by required conditions
Build Desktop / Arch (push) Blocked by required conditions
Build Desktop / macOS 15 (push) Blocked by required conditions
Build Desktop / macOS 13 Intel (push) Blocked by required conditions
Build Desktop / macOS 14 (push) Blocked by required conditions
Build Desktop / macOS 15 Debug (push) Blocked by required conditions
Build Desktop / Windows 10 (push) Blocked by required conditions
Build Docker Image / amd64 & arm64 (push) Waiting to run
* [Server/Client/Protocol] Reporting users + moderation queue functionality Took 6 minutes Took 3 minutes Took 8 seconds Took 11 minutes Took 12 minutes Took 7 minutes Took 15 seconds Took 2 minutes Took 1 minute Took 30 seconds Took 16 seconds * CI Fix Took 6 minutes * CI Fix Took 6 minutes * [Protocol] Add moderation investigation commands Adds the protocol layer for the moderation investigation suite: - Command_GetUserSessions/GetUserAlts/GetModeratorLastLogins/ResetUserPassword/RemoveUserAvatar (1013-1017) - Response extensions 1215-1219 with ServerInfo messages for sessions, alts, and staff logins - last_login on Response_ReportUserInfo and warning_il on Response_WarnList Took 2 minutes * [Utility] Add warning categories parser with infraction levels Parses the server's 'officialwarnings' setting (comma-separated, optional '|IL' suffix) into WarningCategory structs so the client can display the infraction level of each warning category. Includes GTest coverage. * [Server] Add moderation investigation tools Implements the server side of the moderation suite: - getUserSessions/getUserAlts/getModeratorLastLogins/removeUserAvatar DB methods - Handlers for all five new commands with audit records (PASSWORD_RESET, REMOVE_USER_AVATAR); password resets return a generated temporary password - cmdGetWarnList now reports per-category infraction levels from the officialwarnings setting; cmdReportUserInfo reports last_login - Update servatrice.ini.example with the warning taxonomy - Password/avatar mutations report RespNameNotFound when the user does not exist * [Client] Add moderation tab with investigate, password reset, and avatar removal - New Moderation tab: search a user to show account info, alternate accounts, login sessions, and staff last logins; actions to reset the user's password (shows the generated temporary password) and remove the user's avatar - 'Investigate user' entry in the user context menu opens the tab pre-loaded for that user - Warning dialog shows the infraction level of each warning category - Tab wired into TabSupervisor with a moderator-gated menu action, shortcut, and tabs.ini persistence (default closed) * [Server/Client/Protocol] Address PR #7091 review: security, bug, and perf fixes Security: - Promote RESET_USER_PASSWORD to admin-only dispatch (was moderator-accessible) - Reject password reset on users with equal/higher privilege than caller - Notify affected user via Event_NotifyUser::CUSTOM when password is reset - Add server-side category whitelist for reports - Drop reporter name fallback in comment/details authorization (ID-only) - Force password change: new DB column + login enforcement + client disconnect Bugs: - XSS via QTextEdit::append() → insertPlainText() in report tab and utils - allNotified initialized to true even with empty recipients list - Warning combo box: use currentData() instead of baked-in display text - Report resolution now records who resolved (resolved_by column + audit) Performance: - IP-correlation subquery: add 6-month window + LIMIT 200 - getUserSessions: clamp limit to 500 Non-blocking: - Palette-aware colors in report_utils.cpp (dark/light mode) - Report list pagination: offset/limit fields + total_count in response - SessionCommand enum gap comment for reserved values 1201-1203 Schema: 36→37 (force_password_change), 37→38 (resolved_by) Took 12 minutes Took 16 seconds * Fix macOs pedantry Took 5 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
302 lines
10 KiB
C++
302 lines
10 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2008 by Max-Wilhelm Bruker *
|
|
* brukie@laptop *
|
|
* *
|
|
* 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., *
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
#ifndef SERVATRICE_H
|
|
#define SERVATRICE_H
|
|
|
|
#include <QDateTime>
|
|
#include <QHostAddress>
|
|
#include <QMetaType>
|
|
#include <QMutex>
|
|
#include <QReadWriteLock>
|
|
#include <QSqlDatabase>
|
|
#include <QSslCertificate>
|
|
#include <QSslKey>
|
|
#include <QTcpServer>
|
|
#include <QWebSocketServer>
|
|
#include <libcockatrice/protocol/pb/response_report_stats.pb.h>
|
|
#include <memory>
|
|
#include <server.h>
|
|
#include <utility>
|
|
|
|
Q_DECLARE_METATYPE(QSqlDatabase)
|
|
|
|
class QSqlQuery;
|
|
class QTimer;
|
|
|
|
class GameReplay;
|
|
class Servatrice;
|
|
class Servatrice_ConnectionPool;
|
|
class Servatrice_DatabaseInterface;
|
|
class AbstractServerSocketInterface;
|
|
class IslInterface;
|
|
class FeatureSet;
|
|
|
|
class Servatrice_GameServer : public QTcpServer
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
Servatrice *server;
|
|
QList<Servatrice_ConnectionPool *> connectionPools;
|
|
|
|
public:
|
|
Servatrice_GameServer(Servatrice *_server,
|
|
int _numberPools,
|
|
const QSqlDatabase &_sqlDatabase,
|
|
QObject *parent = nullptr);
|
|
~Servatrice_GameServer() override;
|
|
|
|
protected:
|
|
void incomingConnection(qintptr socketDescriptor) override;
|
|
Servatrice_ConnectionPool *findLeastUsedConnectionPool();
|
|
};
|
|
|
|
class Servatrice_WebsocketGameServer : public QWebSocketServer
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
Servatrice *server;
|
|
QList<Servatrice_ConnectionPool *> connectionPools;
|
|
|
|
public:
|
|
Servatrice_WebsocketGameServer(Servatrice *_server,
|
|
int _numberPools,
|
|
const QSqlDatabase &_sqlDatabase,
|
|
QObject *parent = nullptr);
|
|
~Servatrice_WebsocketGameServer() override;
|
|
|
|
protected:
|
|
Servatrice_ConnectionPool *findLeastUsedConnectionPool();
|
|
protected slots:
|
|
void onNewConnection();
|
|
};
|
|
|
|
class Servatrice_IslServer : public QTcpServer
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
Servatrice *server;
|
|
QSslCertificate cert;
|
|
QSslKey privateKey;
|
|
|
|
public:
|
|
Servatrice_IslServer(Servatrice *_server,
|
|
const QSslCertificate &_cert,
|
|
QSslKey _privateKey,
|
|
QObject *parent = nullptr)
|
|
: QTcpServer(parent), server(_server), cert(_cert), privateKey(std::move(_privateKey))
|
|
{
|
|
}
|
|
|
|
protected:
|
|
void incomingConnection(qintptr socketDescriptor) override;
|
|
};
|
|
|
|
class ServerProperties
|
|
{
|
|
public:
|
|
int id;
|
|
QSslCertificate cert;
|
|
QString hostname;
|
|
QHostAddress address;
|
|
int gamePort;
|
|
int controlPort;
|
|
|
|
ServerProperties(int _id,
|
|
const QSslCertificate &_cert,
|
|
QString _hostname,
|
|
const QHostAddress &_address,
|
|
int _gamePort,
|
|
int _controlPort)
|
|
: id(_id), cert(_cert), hostname(std::move(_hostname)), address(_address), gamePort(_gamePort),
|
|
controlPort(_controlPort)
|
|
{
|
|
}
|
|
};
|
|
|
|
class Servatrice : public Server
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum AuthenticationMethod
|
|
{
|
|
AuthenticationNone,
|
|
AuthenticationSql,
|
|
AuthenticationPassword
|
|
};
|
|
private slots:
|
|
void statusUpdate();
|
|
void shutdownTimeout();
|
|
|
|
protected:
|
|
void doSendIslMessage(const IslMessage &msg, int _serverId) override;
|
|
|
|
private:
|
|
enum DatabaseType
|
|
{
|
|
DatabaseNone,
|
|
DatabaseMySql
|
|
};
|
|
AuthenticationMethod authenticationMethod;
|
|
DatabaseType databaseType;
|
|
QTimer *pingClock, *statusUpdateClock;
|
|
Servatrice_GameServer *gameServer;
|
|
Servatrice_WebsocketGameServer *websocketGameServer;
|
|
Servatrice_IslServer *islServer;
|
|
mutable QMutex loginMessageMutex;
|
|
QString loginMessage;
|
|
mutable QMutex shutdownStateMutex;
|
|
QString dbPrefix;
|
|
QMap<QString, bool> serverRequiredFeatureList;
|
|
QString officialWarnings;
|
|
Servatrice_DatabaseInterface *servatriceDatabaseInterface;
|
|
int serverId;
|
|
int uptime;
|
|
QMutex txBytesMutex, rxBytesMutex;
|
|
quint64 txBytes, rxBytes;
|
|
|
|
QString shutdownReason;
|
|
int shutdownMinutes;
|
|
int nextShutdownMessageMinutes;
|
|
QTimer *shutdownTimer;
|
|
|
|
mutable QMutex reportStatsMutex;
|
|
QDateTime reportStatsTimestamp;
|
|
std::shared_ptr<const Response_ReportStats> reportStatsCache;
|
|
static constexpr int reportStatsCacheTtlSeconds = 60;
|
|
|
|
mutable QMutex serverListMutex;
|
|
QList<ServerProperties> serverList;
|
|
void updateServerList();
|
|
|
|
QMap<int, IslInterface *> islInterfaces;
|
|
|
|
QString getDBPrefixString() const;
|
|
QString getDBHostNameString() const;
|
|
QString getDBDatabaseNameString() const;
|
|
QString getDBUserNameString() const;
|
|
QString getDBPasswordString() const;
|
|
QString getRoomsMethodString() const;
|
|
QString getISLNetworkSSLCertFile() const;
|
|
QString getISLNetworkSSLKeyFile() const;
|
|
int getServerStatusUpdateTime() const;
|
|
int getNumberOfTCPPools() const;
|
|
int getServerTCPPort() const;
|
|
int getNumberOfWebSocketPools() const;
|
|
int getServerWebSocketPort() const;
|
|
int getISLNetworkPort() const;
|
|
bool getISLNetworkEnabled() const;
|
|
bool getEnableInternalSMTPClient() const;
|
|
QHostAddress getServerTCPHost() const;
|
|
QHostAddress getServerWebSocketHost() const;
|
|
|
|
public slots:
|
|
void scheduleShutdown(const QString &reason, int minutes);
|
|
void updateLoginMessage();
|
|
void setRequiredFeatures(const QString &featureList);
|
|
|
|
public:
|
|
explicit Servatrice(QObject *parent = nullptr);
|
|
~Servatrice() override;
|
|
bool initServer();
|
|
QMap<QString, bool> getServerRequiredFeatureList() const override
|
|
{
|
|
return serverRequiredFeatureList;
|
|
}
|
|
QString getServerName() const;
|
|
QString getLoginMessage() const override
|
|
{
|
|
QMutexLocker locker(&loginMessageMutex);
|
|
return loginMessage;
|
|
}
|
|
SessionEvent *getLoginSessionEvent() const override;
|
|
SessionEvent *makeShutdownEvent() const;
|
|
QString getRequiredFeatures() const override;
|
|
QString getAuthenticationMethodString() const;
|
|
QString getDBTypeString() const;
|
|
QString getDbPrefix() const
|
|
{
|
|
return dbPrefix;
|
|
}
|
|
QString getEmailBlackList() const;
|
|
QString getEmailWhiteList() const;
|
|
AuthenticationMethod getAuthenticationMethod() const
|
|
{
|
|
return authenticationMethod;
|
|
}
|
|
bool permitUnregisteredUsers() const override
|
|
{
|
|
return authenticationMethod != AuthenticationNone;
|
|
}
|
|
bool getGameShouldPing() const override
|
|
{
|
|
return true;
|
|
}
|
|
bool getClientIDRequiredEnabled() const override;
|
|
bool getRegOnlyServerEnabled() const override;
|
|
bool getMaxUserLimitEnabled() const override;
|
|
bool getStoreReplaysEnabled() const override;
|
|
bool getRegistrationEnabled() const;
|
|
bool getRequireEmailForRegistrationEnabled() const;
|
|
bool getRequireEmailActivationEnabled() const;
|
|
bool getEnableLogQuery() const override;
|
|
bool getEnableForgotPassword() const;
|
|
bool getEnableForgotPasswordChallenge() const;
|
|
bool getEnableAudit() const;
|
|
bool getEnableRegistrationAudit() const;
|
|
bool getEnableForgotPasswordAudit() const;
|
|
int getMinPasswordLength() const;
|
|
int getIdleClientTimeout() const override;
|
|
int getServerID() const override;
|
|
int getMaxGameInactivityTime() const override;
|
|
int getMaxPlayerInactivityTime() const override;
|
|
int getClientKeepAlive() const override;
|
|
int getMaxUsersPerAddress() const;
|
|
int getMessageCountingInterval() const override;
|
|
int getMaxMessageCountPerInterval() const override;
|
|
int getMaxMessageSizePerInterval() const override;
|
|
int getMaxGamesPerUser() const override;
|
|
int getCommandCountingInterval() const override;
|
|
int getMaxCommandCountPerInterval() const override;
|
|
int getMaxUserTotal() const override;
|
|
bool permitCreateGameAsJudge() const override;
|
|
int getMaxTcpUserLimit() const;
|
|
int getMaxWebSocketUserLimit() const;
|
|
int getUsersWithAddress(const QHostAddress &address) const;
|
|
int getMaxAccountsPerEmail() const;
|
|
int getForgotPasswordTokenLife() const;
|
|
QList<AbstractServerSocketInterface *> getUsersWithAddressAsList(const QHostAddress &address) const;
|
|
void incTxBytes(quint64 num);
|
|
void incRxBytes(quint64 num);
|
|
void addDatabaseInterface(QThread *thread, Servatrice_DatabaseInterface *databaseInterface);
|
|
|
|
bool islConnectionExists(int _serverId) const;
|
|
void addIslInterface(int _serverId, IslInterface *interface);
|
|
void removeIslInterface(int _serverId);
|
|
QReadWriteLock islLock;
|
|
|
|
// The moderation queue statistics are shared between all connected moderators and
|
|
// cached briefly to avoid re-running several full-table queries on every refresh.
|
|
std::shared_ptr<const Response_ReportStats> getCachedReportStats() const;
|
|
void cacheReportStats(const Response_ReportStats &stats);
|
|
|
|
QList<ServerProperties> getServerList() const;
|
|
};
|
|
|
|
#endif
|