From 2a9eb18c5ed09c549d55544bf0ef026f70aa116b Mon Sep 17 00:00:00 2001 From: in1tiate Date: Tue, 9 Mar 2021 14:24:03 -0600 Subject: [PATCH 1/3] add net auth + desk mod validation update --- include/aoclient.h | 4 ++++ src/commands.cpp | 8 ++++++-- src/packets.cpp | 26 ++++++++++++-------------- 3 files changed, 22 insertions(+), 16 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index 2a549d5..b912eee 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -68,6 +68,10 @@ class AOClient : public QObject { {"SUPER", ~0ULL} }; + bool is_shaken; + bool is_disemvoweled; + bool is_gimped; + public slots: void clientDisconnected(); void clientData(); diff --git a/src/commands.cpp b/src/commands.cpp index 6abee2f..50fa0cb 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -40,10 +40,12 @@ void AOClient::cmdLogin(int argc, QStringList argv) // TODO: tell the user if no modpass is set if (auth_type == "simple") { if(argv[0] == modpass) { - sendServerMessage("Logged in as a moderator."); // This string has to be exactly this, because it is hardcoded in the client + //sendServerMessage("Logged in as a moderator."); // This string has to be exactly this, because it is hardcoded in the client + sendPacket("AUTH", {"1"}); authenticated = true; } else { sendServerMessage("Incorrect password."); + sendPacket("AUTH", {"0"}); } server->areas.value(current_area)->logger->logLogin(this, authenticated, "moderator"); } @@ -57,11 +59,12 @@ void AOClient::cmdLogin(int argc, QStringList argv) if (server->db_manager->authenticate(username, password)) { moderator_name = username; authenticated = true; - sendServerMessage("Logged in as a moderator."); + sendPacket("AUTH", {"1"}); sendServerMessage("Welcome, " + username); } else { sendServerMessage("Incorrect password."); + sendPacket("AUTH", {"0"}); } server->areas.value(current_area)->logger->logLogin(this, authenticated, username); } @@ -359,6 +362,7 @@ void AOClient::cmdLogout(int argc, QStringList argv) authenticated = false; moderator_name = ""; sendServerMessage("You have been logged out."); + sendPacket("AUTH", {"-1"}); } void AOClient::cmdPos(int argc, QStringList argv) diff --git a/src/packets.cpp b/src/packets.cpp index 619849d..feaa203 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -46,12 +46,12 @@ void AOClient::pktSoftwareId(AreaData* area, int argc, QStringList argv, AOPacke // The only ones that are critical to ensuring the server works are // "noencryption" and "fastloading" QStringList feature_list = { - "noencryption", "yellowtext", "prezoom", - "flipping", "customobjections", "fastloading", - "deskmod", "evidence", "cccc_ic_support", - "arup", "casing_alerts", "modcall_reason", - "looping_sfx", "additive", "effects", - "y_offset" + "noencryption", "yellowtext", "prezoom", + "flipping", "customobjections", "fastloading", + "deskmod", "evidence", "cccc_ic_support", + "arup", "casing_alerts", "modcall_reason", + "looping_sfx", "additive", "effects", + "y_offset", "expanded_desk_mods", "auth_packet" }; sendPacket("PN", {QString::number(server->player_count), max_players}); @@ -345,15 +345,13 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) incoming_args.append(QVariant(arg)); } - // message type - if (incoming_args[0].toInt() == 1) - args.append("1"); - else if (incoming_args[0].toInt() == 0) { - if (incoming_args[0].toString() == "chat") - args.append("chat"); - else - args.append("0"); + // desk modifier + QStringList allowed_desk_mods = ["chat", "0", "1", "2", "3", "4", "5"]; + if (allowed_desk_mods.contains(incoming_args[0])) { + args.append(incoming_args[0]); } + else + return invalid; // preanim args.append(incoming_args[1].toString()); From d2890e6e86ce2494e36662f9d76c7799e0a2007e Mon Sep 17 00:00:00 2001 From: in1tiate Date: Tue, 9 Mar 2021 14:35:23 -0600 Subject: [PATCH 2/3] some fiddling --- src/commands.cpp | 14 +++++++------- src/packets.cpp | 7 ++++--- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index 50fa0cb..1d9727a 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -40,12 +40,12 @@ void AOClient::cmdLogin(int argc, QStringList argv) // TODO: tell the user if no modpass is set if (auth_type == "simple") { if(argv[0] == modpass) { - //sendServerMessage("Logged in as a moderator."); // This string has to be exactly this, because it is hardcoded in the client - sendPacket("AUTH", {"1"}); + sendPacket("AUTH", {"1"}); // Client: "You were granted the Disable Modcalls button." + sendServerMessage("Logged in as a moderator."); // for old clients, this is hardcoded to display the mod UI authenticated = true; } else { + sendPacket("AUTH", {"0"}); // Client: "Login unsuccessful." sendServerMessage("Incorrect password."); - sendPacket("AUTH", {"0"}); } server->areas.value(current_area)->logger->logLogin(this, authenticated, "moderator"); } @@ -59,12 +59,13 @@ void AOClient::cmdLogin(int argc, QStringList argv) if (server->db_manager->authenticate(username, password)) { moderator_name = username; authenticated = true; - sendPacket("AUTH", {"1"}); + sendPacket("AUTH", {"1"}); // Client: "You were granted the Disable Modcalls button." + sendServerMessage("Logged in as a moderator."); // for old clients, this is hardcoded to display the mod UI sendServerMessage("Welcome, " + username); } else { + sendPacket("AUTH", {"0"}); // Client: "Login unsuccessful." sendServerMessage("Incorrect password."); - sendPacket("AUTH", {"0"}); } server->areas.value(current_area)->logger->logLogin(this, authenticated, username); } @@ -361,8 +362,7 @@ void AOClient::cmdLogout(int argc, QStringList argv) } authenticated = false; moderator_name = ""; - sendServerMessage("You have been logged out."); - sendPacket("AUTH", {"-1"}); + sendPacket("AUTH", {"-1"}); // Client: "You were logged out." } void AOClient::cmdPos(int argc, QStringList argv) diff --git a/src/packets.cpp b/src/packets.cpp index feaa203..9766578 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -346,9 +346,10 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) } // desk modifier - QStringList allowed_desk_mods = ["chat", "0", "1", "2", "3", "4", "5"]; - if (allowed_desk_mods.contains(incoming_args[0])) { - args.append(incoming_args[0]); + QStringList allowed_desk_mods; + allowed_desk_mods << "chat" << "0" << "1" << "2" << "3" << "4" << "5"; + if (allowed_desk_mods.contains(incoming_args[0].toString())) { + args.append(incoming_args[0].toString()); } else return invalid; From d6b41d00d528013189f74bb8edc335a6ade4f04e Mon Sep 17 00:00:00 2001 From: in1tiate Date: Mon, 15 Mar 2021 18:20:08 -0500 Subject: [PATCH 3/3] send hardcoded string only when client version is below 2.9.1 --- src/commands.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index 5e778ee..1a4aa09 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -43,7 +43,7 @@ void AOClient::cmdLogin(int argc, QStringList argv) } else if(argv[0] == modpass) { sendPacket("AUTH", {"1"}); // Client: "You were granted the Disable Modcalls button." - sendServerMessage("Logged in as a moderator."); // for old clients, this is hardcoded to display the mod UI + sendServerMessage("Logged in as a moderator."); // pre-2.9.1 clients are hardcoded to display the mod UI when this string is sent in OOC authenticated = true; } else { @@ -63,7 +63,8 @@ void AOClient::cmdLogin(int argc, QStringList argv) moderator_name = username; authenticated = true; sendPacket("AUTH", {"1"}); // Client: "You were granted the Disable Modcalls button." - sendServerMessage("Logged in as a moderator."); // for old clients, this is hardcoded to display the mod UI + if (version.release <= 2 && version.major <= 9 && version.minor <= 0) + sendServerMessage("Logged in as a moderator."); // pre-2.9.1 clients are hardcoded to display the mod UI when this string is sent in OOC sendServerMessage("Welcome, " + username); } else {