2016-05-08 22:12:08 +02:00
|
|
|
/**
|
|
|
|
* vim: set ts=4 :
|
|
|
|
* =============================================================================
|
|
|
|
* SourceMod Sample Extension
|
|
|
|
* Copyright (C) 2004-2008 AlliedModders LLC. All rights reserved.
|
|
|
|
* =============================================================================
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU General Public License, version 3.0, as published by the
|
|
|
|
* Free Software Foundation.
|
2019-07-27 20:56:27 +02:00
|
|
|
*
|
2016-05-08 22:12:08 +02:00
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* As a special exception, AlliedModders LLC gives you permission to link the
|
|
|
|
* code of this program (as well as its derivative works) to "Half-Life 2," the
|
|
|
|
* "Source Engine," the "SourcePawn JIT," and any Game MODs that run on software
|
|
|
|
* by the Valve Corporation. You must obey the GNU General Public License in
|
|
|
|
* all respects for all other code used. Additionally, AlliedModders LLC grants
|
|
|
|
* this exception to all derivative works. AlliedModders LLC defines further
|
|
|
|
* exceptions, found in LICENSE.txt (as of this writing, version JULY-31-2007),
|
|
|
|
* or <http://www.sourcemod.net/license.php>.
|
|
|
|
*
|
|
|
|
* Version: $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "extension.h"
|
|
|
|
#include "CDetour/detours.h"
|
2017-02-03 15:36:13 +01:00
|
|
|
#include "steam/steam_gameserver.h"
|
|
|
|
#include "sm_namehashset.h"
|
2018-09-06 12:57:57 +02:00
|
|
|
#include <iclient.h>
|
2021-06-03 18:25:28 +02:00
|
|
|
#include <netadr.h>
|
2019-07-27 20:56:27 +02:00
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file extension.cpp
|
|
|
|
* @brief Implement extension code here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
Connect g_Connect; /**< Global singleton for extension's main interface */
|
|
|
|
|
|
|
|
SMEXT_LINK(&g_Connect);
|
|
|
|
|
|
|
|
ConVar g_ConnectVersion("connect_version", SMEXT_CONF_VERSION, FCVAR_REPLICATED|FCVAR_NOTIFY, SMEXT_CONF_DESCRIPTION " Version");
|
2017-02-12 20:11:59 +01:00
|
|
|
ConVar g_SvNoSteam("sv_nosteam", "0", FCVAR_NOTIFY, "Disable steam validation and force steam authentication.");
|
|
|
|
ConVar g_SvForceSteam("sv_forcesteam", "0", FCVAR_NOTIFY, "Force steam authentication.");
|
2021-06-03 18:25:28 +02:00
|
|
|
ConVar g_SvLogging("sv_connect_logging", "0", FCVAR_NOTIFY, "Log connection checks.");
|
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
|
|
|
|
IGameConfig *g_pGameConf = NULL;
|
|
|
|
IForward *g_pConnectForward = NULL;
|
2018-09-06 19:03:52 +02:00
|
|
|
IGameEventManager2 *g_pGameEvents = NULL;
|
2019-07-27 20:56:27 +02:00
|
|
|
|
|
|
|
class CBaseClient;
|
2016-05-08 22:12:08 +02:00
|
|
|
class CBaseServer;
|
|
|
|
|
|
|
|
typedef enum EAuthProtocol
|
|
|
|
{
|
|
|
|
k_EAuthProtocolWONCertificate = 1,
|
|
|
|
k_EAuthProtocolHashedCDKey = 2,
|
|
|
|
k_EAuthProtocolSteam = 3,
|
|
|
|
} EAuthProtocol;
|
|
|
|
|
|
|
|
const char *CSteamID::Render() const
|
|
|
|
{
|
|
|
|
static char szSteamID[64];
|
2017-02-03 15:36:13 +01:00
|
|
|
V_snprintf(szSteamID, sizeof(szSteamID), "STEAM_0:%u:%u", (m_steamid.m_comp.m_unAccountID % 2) ? 1 : 0, (int32)m_steamid.m_comp.m_unAccountID/2);
|
2016-05-08 22:12:08 +02:00
|
|
|
return szSteamID;
|
|
|
|
}
|
|
|
|
|
|
|
|
class CSteam3Server
|
|
|
|
{
|
|
|
|
public:
|
2021-07-03 16:08:59 +02:00
|
|
|
void *m_pSteamClient;
|
2017-02-03 15:36:13 +01:00
|
|
|
ISteamGameServer *m_pSteamGameServer;
|
2016-05-08 22:12:08 +02:00
|
|
|
void *m_pSteamGameServerUtils;
|
|
|
|
void *m_pSteamGameServerNetworking;
|
|
|
|
void *m_pSteamGameServerStats;
|
|
|
|
void *m_pSteamHTTP;
|
2021-07-03 16:08:59 +02:00
|
|
|
void *m_pSteamInventory;
|
|
|
|
void *m_pSteamUGC;
|
|
|
|
void *m_pSteamApps;
|
2016-05-08 22:12:08 +02:00
|
|
|
} *g_pSteam3Server;
|
|
|
|
|
|
|
|
CBaseServer *g_pBaseServer = NULL;
|
|
|
|
|
|
|
|
typedef CSteam3Server *(*Steam3ServerFunc)();
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
typedef void (*RejectConnectionFunc)(CBaseServer *, const netadr_t &address, int iClientChallenge, const char *pchReason);
|
|
|
|
#else
|
|
|
|
typedef void (__fastcall *RejectConnectionFunc)(CBaseServer *, void *, const netadr_t &address, int iClientChallenge, const char *pchReason);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
typedef void (*SetSteamIDFunc)(CBaseClient *, const CSteamID &steamID);
|
|
|
|
#else
|
|
|
|
typedef void (__fastcall *SetSteamIDFunc)(CBaseClient *, void *, const CSteamID &steamID);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
Steam3ServerFunc g_pSteam3ServerFunc = NULL;
|
|
|
|
RejectConnectionFunc g_pRejectConnectionFunc = NULL;
|
|
|
|
SetSteamIDFunc g_pSetSteamIDFunc = NULL;
|
|
|
|
|
|
|
|
CSteam3Server *Steam3Server()
|
|
|
|
{
|
|
|
|
if(!g_pSteam3ServerFunc)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return g_pSteam3ServerFunc();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RejectConnection(const netadr_t &address, int iClientChallenge, const char *pchReason)
|
|
|
|
{
|
|
|
|
if(!g_pRejectConnectionFunc || !g_pBaseServer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
g_pRejectConnectionFunc(g_pBaseServer, address, iClientChallenge, pchReason);
|
|
|
|
#else
|
|
|
|
g_pRejectConnectionFunc(g_pBaseServer, NULL, address, iClientChallenge, pchReason);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetSteamID(CBaseClient *pClient, const CSteamID &steamID)
|
|
|
|
{
|
|
|
|
if(!pClient || !g_pSetSteamIDFunc)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
g_pSetSteamIDFunc(pClient, steamID);
|
|
|
|
#else
|
|
|
|
g_pSetSteamIDFunc(pClient, NULL, steamID);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
EBeginAuthSessionResult BeginAuthSession(const void *pAuthTicket, int cbAuthTicket, CSteamID steamID)
|
|
|
|
{
|
2017-02-03 15:36:13 +01:00
|
|
|
if(!g_pSteam3Server || !g_pSteam3Server->m_pSteamGameServer)
|
2016-05-08 22:12:08 +02:00
|
|
|
return k_EBeginAuthSessionResultOK;
|
|
|
|
|
2017-02-03 15:36:13 +01:00
|
|
|
return g_pSteam3Server->m_pSteamGameServer->BeginAuthSession(pAuthTicket, cbAuthTicket, steamID);
|
2016-05-08 22:12:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void EndAuthSession(CSteamID steamID)
|
|
|
|
{
|
2017-02-03 15:36:13 +01:00
|
|
|
if(!g_pSteam3Server || !g_pSteam3Server->m_pSteamGameServer)
|
2016-05-08 22:12:08 +02:00
|
|
|
return;
|
|
|
|
|
2017-02-03 15:36:13 +01:00
|
|
|
g_pSteam3Server->m_pSteamGameServer->EndAuthSession(steamID);
|
|
|
|
}
|
2016-05-08 22:12:08 +02:00
|
|
|
|
2017-02-03 15:36:13 +01:00
|
|
|
bool BLoggedOn()
|
|
|
|
{
|
|
|
|
if(!g_pSteam3Server || !g_pSteam3Server->m_pSteamGameServer)
|
|
|
|
return false;
|
2016-05-08 22:12:08 +02:00
|
|
|
|
2017-02-03 15:36:13 +01:00
|
|
|
return g_pSteam3Server->m_pSteamGameServer->BLoggedOn();
|
2016-05-08 22:12:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CDetour *g_Detour_CBaseServer__ConnectClient = NULL;
|
|
|
|
CDetour *g_Detour_CBaseServer__RejectConnection = NULL;
|
|
|
|
CDetour *g_Detour_CBaseServer__CheckChallengeType = NULL;
|
|
|
|
CDetour *g_Detour_CSteam3Server__OnValidateAuthTicketResponse = NULL;
|
|
|
|
|
|
|
|
class ConnectClientStorage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void* pThis;
|
|
|
|
|
|
|
|
netadr_t address;
|
|
|
|
int nProtocol;
|
|
|
|
int iChallenge;
|
|
|
|
int iClientChallenge;
|
|
|
|
int nAuthProtocol;
|
2018-02-11 18:52:05 +01:00
|
|
|
char pchName[256];
|
|
|
|
char pchPassword[256];
|
|
|
|
char pCookie[256];
|
2016-05-08 22:12:08 +02:00
|
|
|
int cbCookie;
|
2018-09-06 12:57:57 +02:00
|
|
|
IClient *pClient;
|
2016-05-08 22:12:08 +02:00
|
|
|
|
|
|
|
uint64 ullSteamID;
|
2017-02-12 20:11:59 +01:00
|
|
|
ValidateAuthTicketResponse_t ValidateAuthTicketResponse;
|
|
|
|
bool GotValidateAuthTicketResponse;
|
2018-03-22 19:37:12 +01:00
|
|
|
bool SteamLegal;
|
|
|
|
bool SteamAuthFailed;
|
2016-05-08 22:12:08 +02:00
|
|
|
|
|
|
|
ConnectClientStorage() { }
|
|
|
|
ConnectClientStorage(netadr_t address, int nProtocol, int iChallenge, int iClientChallenge, int nAuthProtocol, const char *pchName, const char *pchPassword, const char *pCookie, int cbCookie)
|
|
|
|
{
|
|
|
|
this->address = address;
|
|
|
|
this->nProtocol = nProtocol;
|
|
|
|
this->iChallenge = iChallenge;
|
|
|
|
this->iClientChallenge = iClientChallenge;
|
|
|
|
this->nAuthProtocol = nAuthProtocol;
|
2021-06-03 18:25:28 +02:00
|
|
|
strncpy(this->pchName, pchName, sizeof(this->pchName));
|
|
|
|
strncpy(this->pchPassword, pchPassword, sizeof(this->pchPassword));
|
|
|
|
strncpy(this->pCookie, pCookie, sizeof(this->pCookie));
|
2016-05-08 22:12:08 +02:00
|
|
|
this->cbCookie = cbCookie;
|
2018-09-06 12:57:57 +02:00
|
|
|
this->pClient = NULL;
|
2017-02-12 20:11:59 +01:00
|
|
|
this->GotValidateAuthTicketResponse = false;
|
2018-03-22 19:37:12 +01:00
|
|
|
this->SteamLegal = false;
|
|
|
|
this->SteamAuthFailed = false;
|
2016-05-08 22:12:08 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
StringHashMap<ConnectClientStorage> g_ConnectClientStorage;
|
|
|
|
|
|
|
|
bool g_bEndAuthSessionOnRejectConnection = false;
|
|
|
|
CSteamID g_lastClientSteamID;
|
|
|
|
bool g_bSuppressCheckChallengeType = false;
|
|
|
|
|
2017-02-12 20:11:59 +01:00
|
|
|
DETOUR_DECL_MEMBER1(CSteam3Server__OnValidateAuthTicketResponse, int, ValidateAuthTicketResponse_t *, pResponse)
|
2017-02-03 15:36:13 +01:00
|
|
|
{
|
|
|
|
char aSteamID[32];
|
2021-06-03 18:25:28 +02:00
|
|
|
strncpy(aSteamID, pResponse->m_SteamID.Render(), sizeof(aSteamID) - 1);
|
|
|
|
|
|
|
|
ConnectClientStorage Storage;
|
|
|
|
bool StorageValid = g_ConnectClientStorage.retrieve(aSteamID, &Storage);
|
2017-02-03 15:36:13 +01:00
|
|
|
|
2018-03-22 19:37:12 +01:00
|
|
|
bool SteamLegal = pResponse->m_eAuthSessionResponse == k_EAuthSessionResponseOK;
|
|
|
|
bool force = g_SvNoSteam.GetInt() || g_SvForceSteam.GetInt() || !BLoggedOn();
|
2018-08-17 23:29:43 +02:00
|
|
|
|
2018-03-22 19:37:12 +01:00
|
|
|
if(!SteamLegal && force)
|
|
|
|
pResponse->m_eAuthSessionResponse = k_EAuthSessionResponseOK;
|
|
|
|
|
2021-06-03 18:25:28 +02:00
|
|
|
if (g_SvLogging.GetInt())
|
|
|
|
g_pSM->LogMessage(myself, "%s SteamLegal: %d (%d)", aSteamID, SteamLegal, pResponse->m_eAuthSessionResponse);
|
|
|
|
|
|
|
|
if(StorageValid && !Storage.GotValidateAuthTicketResponse)
|
2017-02-03 15:36:13 +01:00
|
|
|
{
|
2021-06-03 18:25:28 +02:00
|
|
|
Storage.GotValidateAuthTicketResponse = true;
|
|
|
|
Storage.ValidateAuthTicketResponse = *pResponse;
|
|
|
|
Storage.SteamLegal = SteamLegal;
|
|
|
|
g_ConnectClientStorage.replace(aSteamID, Storage);
|
2017-02-03 15:36:13 +01:00
|
|
|
}
|
|
|
|
|
2017-02-12 20:11:59 +01:00
|
|
|
return DETOUR_MEMBER_CALL(CSteam3Server__OnValidateAuthTicketResponse)(pResponse);
|
2017-02-03 15:36:13 +01:00
|
|
|
}
|
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
DETOUR_DECL_MEMBER9(CBaseServer__ConnectClient, IClient *, netadr_t &, address, int, nProtocol, int, iChallenge, int, iClientChallenge, int, nAuthProtocol, const char *, pchName, const char *, pchPassword, const char *, pCookie, int, cbCookie)
|
|
|
|
{
|
|
|
|
if(nAuthProtocol != k_EAuthProtocolSteam)
|
|
|
|
{
|
|
|
|
// This is likely a SourceTV client, we don't want to interfere here.
|
|
|
|
return DETOUR_MEMBER_CALL(CBaseServer__ConnectClient)(address, nProtocol, iChallenge, iClientChallenge, nAuthProtocol, pchName, pchPassword, pCookie, cbCookie);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_pBaseServer = (CBaseServer *)this;
|
|
|
|
|
|
|
|
if(pCookie == NULL || (size_t)cbCookie < sizeof(uint64))
|
|
|
|
{
|
|
|
|
RejectConnection(address, iClientChallenge, "#GameUI_ServerRejectInvalidSteamCertLen");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char ipString[32];
|
|
|
|
V_snprintf(ipString, sizeof(ipString), "%u.%u.%u.%u", address.ip[0], address.ip[1], address.ip[2], address.ip[3]);
|
|
|
|
|
|
|
|
char passwordBuffer[255];
|
2021-06-03 18:25:28 +02:00
|
|
|
strncpy(passwordBuffer, pchPassword, sizeof(passwordBuffer));
|
2016-05-08 22:12:08 +02:00
|
|
|
uint64 ullSteamID = *(uint64 *)pCookie;
|
|
|
|
|
|
|
|
void *pvTicket = (void *)((intptr_t)pCookie + sizeof(uint64));
|
|
|
|
int cbTicket = cbCookie - sizeof(uint64);
|
|
|
|
|
|
|
|
g_bEndAuthSessionOnRejectConnection = true;
|
|
|
|
g_lastClientSteamID = CSteamID(ullSteamID);
|
|
|
|
|
|
|
|
char aSteamID[32];
|
2021-06-03 18:25:28 +02:00
|
|
|
strncpy(aSteamID, g_lastClientSteamID.Render(), sizeof(aSteamID));
|
2016-05-08 22:12:08 +02:00
|
|
|
|
2018-09-08 22:07:59 +02:00
|
|
|
// If client is in async state remove the old object and fake an async retVal
|
|
|
|
// This can happen if the async ClientPreConnectEx takes too long to be called
|
|
|
|
// and the client auto-retries.
|
|
|
|
bool AsyncWaiting = false;
|
|
|
|
bool ExistingSteamid = false;
|
|
|
|
ConnectClientStorage Storage(address, nProtocol, iChallenge, iClientChallenge, nAuthProtocol, pchName, pchPassword, pCookie, cbCookie);
|
|
|
|
if(g_ConnectClientStorage.retrieve(aSteamID, &Storage))
|
|
|
|
{
|
|
|
|
ExistingSteamid = true;
|
|
|
|
g_ConnectClientStorage.remove(aSteamID);
|
|
|
|
EndAuthSession(g_lastClientSteamID);
|
|
|
|
|
|
|
|
// Only wait for async on auto-retry, manual retries should go through the full chain
|
|
|
|
// Don't want to leave the client waiting forever if something breaks in the async forward
|
|
|
|
if(Storage.iClientChallenge == iClientChallenge)
|
|
|
|
AsyncWaiting = true;
|
|
|
|
}
|
|
|
|
|
2018-09-06 12:57:57 +02:00
|
|
|
bool NoSteam = g_SvNoSteam.GetInt() || !BLoggedOn();
|
|
|
|
bool SteamAuthFailed = false;
|
|
|
|
EBeginAuthSessionResult result = BeginAuthSession(pvTicket, cbTicket, g_lastClientSteamID);
|
|
|
|
if(result != k_EBeginAuthSessionResultOK)
|
|
|
|
{
|
|
|
|
if(!NoSteam)
|
|
|
|
{
|
|
|
|
RejectConnection(address, iClientChallenge, "#GameUI_ServerRejectSteam");
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-09-08 22:07:59 +02:00
|
|
|
Storage.SteamAuthFailed = SteamAuthFailed = true;
|
2018-09-06 12:57:57 +02:00
|
|
|
}
|
|
|
|
|
2018-09-08 22:07:59 +02:00
|
|
|
if(ExistingSteamid && !AsyncWaiting)
|
2016-05-08 22:12:08 +02:00
|
|
|
{
|
2018-09-06 12:57:57 +02:00
|
|
|
// Another player trying to spoof a Steam ID or game crashed?
|
|
|
|
if(memcmp(address.ip, Storage.address.ip, sizeof(address.ip)) != 0)
|
|
|
|
{
|
|
|
|
// Reject NoSteam players
|
|
|
|
if(SteamAuthFailed)
|
|
|
|
{
|
|
|
|
RejectConnection(address, iClientChallenge, "Steam ID already in use.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Kick existing player
|
|
|
|
if(Storage.pClient)
|
|
|
|
{
|
|
|
|
Storage.pClient->Disconnect("Same Steam ID connected.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RejectConnection(address, iClientChallenge, "Please try again later.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2016-05-08 22:12:08 +02:00
|
|
|
}
|
|
|
|
|
2018-09-08 22:07:59 +02:00
|
|
|
char rejectReason[255];
|
|
|
|
cell_t retVal = 1;
|
2016-05-08 22:12:08 +02:00
|
|
|
|
|
|
|
if(AsyncWaiting)
|
|
|
|
retVal = -1; // Fake async return code when waiting for async call
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_pConnectForward->PushString(pchName);
|
|
|
|
g_pConnectForward->PushStringEx(passwordBuffer, sizeof(passwordBuffer), SM_PARAM_STRING_UTF8 | SM_PARAM_STRING_COPY, SM_PARAM_COPYBACK);
|
|
|
|
g_pConnectForward->PushString(ipString);
|
|
|
|
g_pConnectForward->PushString(aSteamID);
|
|
|
|
g_pConnectForward->PushStringEx(rejectReason, sizeof(rejectReason), SM_PARAM_STRING_UTF8 | SM_PARAM_STRING_COPY, SM_PARAM_COPYBACK);
|
|
|
|
g_pConnectForward->Execute(&retVal);
|
|
|
|
pchPassword = passwordBuffer;
|
|
|
|
}
|
|
|
|
|
2019-11-17 14:28:18 +01:00
|
|
|
if (g_SvLogging.GetInt())
|
|
|
|
g_pSM->LogMessage(myself, "%s SteamAuthFailed: %d (%d) | retVal = %d", aSteamID, SteamAuthFailed, result, retVal);
|
2018-03-22 19:37:12 +01:00
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
// k_OnClientPreConnectEx_Reject
|
|
|
|
if(retVal == 0)
|
|
|
|
{
|
2018-03-22 19:37:12 +01:00
|
|
|
g_ConnectClientStorage.remove(aSteamID);
|
2016-05-08 22:12:08 +02:00
|
|
|
RejectConnection(address, iClientChallenge, rejectReason);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-03-22 19:37:12 +01:00
|
|
|
Storage.pThis = this;
|
|
|
|
Storage.ullSteamID = ullSteamID;
|
|
|
|
Storage.SteamAuthFailed = SteamAuthFailed;
|
|
|
|
|
|
|
|
if(!g_ConnectClientStorage.replace(aSteamID, Storage))
|
|
|
|
{
|
|
|
|
RejectConnection(address, iClientChallenge, "Internal error.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
// k_OnClientPreConnectEx_Async
|
|
|
|
if(retVal == -1)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// k_OnClientPreConnectEx_Accept
|
|
|
|
g_bSuppressCheckChallengeType = true;
|
2017-02-03 15:36:13 +01:00
|
|
|
IClient *pClient = DETOUR_MEMBER_CALL(CBaseServer__ConnectClient)(address, nProtocol, iChallenge, iClientChallenge, nAuthProtocol, pchName, pchPassword, pCookie, cbCookie);
|
|
|
|
|
2018-09-06 12:57:57 +02:00
|
|
|
Storage.pClient = pClient;
|
|
|
|
g_ConnectClientStorage.replace(aSteamID, Storage);
|
|
|
|
|
2018-03-22 19:37:12 +01:00
|
|
|
if(pClient && SteamAuthFailed)
|
2017-02-12 20:11:59 +01:00
|
|
|
{
|
|
|
|
ValidateAuthTicketResponse_t Response;
|
|
|
|
Response.m_SteamID = g_lastClientSteamID;
|
2018-03-22 19:37:12 +01:00
|
|
|
Response.m_eAuthSessionResponse = k_EAuthSessionResponseAuthTicketInvalid;
|
2017-02-12 20:11:59 +01:00
|
|
|
Response.m_OwnerSteamID = Response.m_SteamID;
|
|
|
|
DETOUR_MEMBER_MCALL_CALLBACK(CSteam3Server__OnValidateAuthTicketResponse, g_pSteam3Server)(&Response);
|
|
|
|
}
|
2017-02-03 15:36:13 +01:00
|
|
|
|
|
|
|
return pClient;
|
2016-05-08 22:12:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DETOUR_DECL_MEMBER3(CBaseServer__RejectConnection, void, netadr_t &, address, int, iClientChallenge, const char *, pchReason)
|
|
|
|
{
|
|
|
|
if(g_bEndAuthSessionOnRejectConnection)
|
|
|
|
{
|
|
|
|
EndAuthSession(g_lastClientSteamID);
|
|
|
|
g_bEndAuthSessionOnRejectConnection = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DETOUR_MEMBER_CALL(CBaseServer__RejectConnection)(address, iClientChallenge, pchReason);
|
|
|
|
}
|
|
|
|
|
|
|
|
DETOUR_DECL_MEMBER7(CBaseServer__CheckChallengeType, bool, CBaseClient *, pClient, int, nUserID, netadr_t &, address, int, nAuthProtocol, const char *, pCookie, int, cbCookie, int, iClientChallenge)
|
|
|
|
{
|
|
|
|
if(g_bSuppressCheckChallengeType)
|
|
|
|
{
|
|
|
|
g_bEndAuthSessionOnRejectConnection = false;
|
|
|
|
|
|
|
|
SetSteamID(pClient, g_lastClientSteamID);
|
|
|
|
|
|
|
|
g_bSuppressCheckChallengeType = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DETOUR_MEMBER_CALL(CBaseServer__CheckChallengeType)(pClient, nUserID, address, nAuthProtocol, pCookie, cbCookie, iClientChallenge);
|
|
|
|
}
|
|
|
|
|
2019-07-27 20:56:27 +02:00
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
bool Connect::SDK_OnLoad(char *error, size_t maxlen, bool late)
|
|
|
|
{
|
|
|
|
char conf_error[255] = "";
|
|
|
|
if(!gameconfs->LoadGameConfigFile("connect2.games", &g_pGameConf, conf_error, sizeof(conf_error)))
|
|
|
|
{
|
|
|
|
if(conf_error[0])
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Could not read connect2.games.txt: %s\n", conf_error);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!g_pGameConf->GetMemSig("CBaseServer__RejectConnection", (void **)(&g_pRejectConnectionFunc)) || !g_pRejectConnectionFunc)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Failed to find CBaseServer__RejectConnection function.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!g_pGameConf->GetMemSig("CBaseClient__SetSteamID", (void **)(&g_pSetSteamIDFunc)) || !g_pSetSteamIDFunc)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Failed to find CBaseClient__SetSteamID function.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef WIN32
|
|
|
|
if(!g_pGameConf->GetMemSig("Steam3Server", (void **)(&g_pSteam3ServerFunc)) || !g_pSteam3ServerFunc)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Failed to find Steam3Server function.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
void *address;
|
|
|
|
if(!g_pGameConf->GetMemSig("CBaseServer__CheckMasterServerRequestRestart", &address) || !address)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Failed to find CBaseServer__CheckMasterServerRequestRestart function.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//META_CONPRINTF("CheckMasterServerRequestRestart: %p\n", address);
|
|
|
|
address = (void *)((intptr_t)address + 1); // Skip CALL opcode
|
|
|
|
intptr_t offset = (intptr_t)(*(void **)address); // Get offset
|
|
|
|
|
|
|
|
g_pSteam3ServerFunc = (Steam3ServerFunc)((intptr_t)address + offset + sizeof(intptr_t));
|
|
|
|
//META_CONPRINTF("Steam3Server: %p\n", g_pSteam3ServerFunc);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
g_pSteam3Server = Steam3Server();
|
|
|
|
if(!g_pSteam3Server)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Unable to get Steam3Server singleton.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
META_CONPRINTF("ISteamGameServer: %p\n", g_pSteam3Server->m_pSteamGameServer);
|
|
|
|
META_CONPRINTF("ISteamUtils: %p\n", g_pSteam3Server->m_pSteamGameServerUtils);
|
|
|
|
META_CONPRINTF("ISteamMasterServerUpdater: %p\n", g_pSteam3Server->m_pSteamMasterServerUpdater);
|
|
|
|
META_CONPRINTF("ISteamNetworking: %p\n", g_pSteam3Server->m_pSteamGameServerNetworking);
|
|
|
|
META_CONPRINTF("ISteamGameServerStats: %p\n", g_pSteam3Server->m_pSteamGameServerStats);
|
|
|
|
*/
|
|
|
|
|
|
|
|
CDetourManager::Init(g_pSM->GetScriptingEngine(), g_pGameConf);
|
|
|
|
|
|
|
|
g_Detour_CBaseServer__ConnectClient = DETOUR_CREATE_MEMBER(CBaseServer__ConnectClient, "CBaseServer__ConnectClient");
|
|
|
|
if(!g_Detour_CBaseServer__ConnectClient)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Failed to detour CBaseServer__ConnectClient.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
g_Detour_CBaseServer__ConnectClient->EnableDetour();
|
|
|
|
|
|
|
|
g_Detour_CBaseServer__RejectConnection = DETOUR_CREATE_MEMBER(CBaseServer__RejectConnection, "CBaseServer__RejectConnection");
|
|
|
|
if(!g_Detour_CBaseServer__RejectConnection)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Failed to detour CBaseServer__RejectConnection.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
g_Detour_CBaseServer__RejectConnection->EnableDetour();
|
|
|
|
|
|
|
|
g_Detour_CBaseServer__CheckChallengeType = DETOUR_CREATE_MEMBER(CBaseServer__CheckChallengeType, "CBaseServer__CheckChallengeType");
|
|
|
|
if(!g_Detour_CBaseServer__CheckChallengeType)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Failed to detour CBaseServer__CheckChallengeType.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
g_Detour_CBaseServer__CheckChallengeType->EnableDetour();
|
|
|
|
|
|
|
|
g_Detour_CSteam3Server__OnValidateAuthTicketResponse = DETOUR_CREATE_MEMBER(CSteam3Server__OnValidateAuthTicketResponse, "CSteam3Server__OnValidateAuthTicketResponse");
|
|
|
|
if(!g_Detour_CSteam3Server__OnValidateAuthTicketResponse)
|
|
|
|
{
|
|
|
|
snprintf(error, maxlen, "Failed to detour CSteam3Server__OnValidateAuthTicketResponse.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
g_Detour_CSteam3Server__OnValidateAuthTicketResponse->EnableDetour();
|
|
|
|
|
|
|
|
g_pConnectForward = g_pForwards->CreateForward("OnClientPreConnectEx", ET_LowEvent, 5, NULL, Param_String, Param_String, Param_String, Param_String, Param_String);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Connect::SDK_OnMetamodLoad(ISmmAPI *ismm, char *error, size_t maxlen, bool late)
|
|
|
|
{
|
2019-07-27 20:56:27 +02:00
|
|
|
GET_V_IFACE_CURRENT(GetEngineFactory, engine, IVEngineServer, INTERFACEVERSION_VENGINESERVER);
|
|
|
|
GET_V_IFACE_ANY(GetServerFactory, gamedll, IServerGameDLL, INTERFACEVERSION_SERVERGAMEDLL);
|
2018-09-06 19:03:52 +02:00
|
|
|
GET_V_IFACE_CURRENT(GetEngineFactory, g_pGameEvents, IGameEventManager2, INTERFACEVERSION_GAMEEVENTSMANAGER2);
|
2016-05-08 22:12:08 +02:00
|
|
|
GET_V_IFACE_CURRENT(GetEngineFactory, g_pCVar, ICvar, CVAR_INTERFACE_VERSION);
|
2019-07-27 20:56:27 +02:00
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
ConVar_Register(0, this);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Connect::SDK_OnUnload()
|
|
|
|
{
|
|
|
|
if(g_pConnectForward)
|
|
|
|
g_pForwards->ReleaseForward(g_pConnectForward);
|
|
|
|
|
|
|
|
if(g_Detour_CBaseServer__ConnectClient)
|
|
|
|
{
|
|
|
|
g_Detour_CBaseServer__ConnectClient->Destroy();
|
|
|
|
g_Detour_CBaseServer__ConnectClient = NULL;
|
|
|
|
}
|
|
|
|
if(g_Detour_CBaseServer__RejectConnection)
|
|
|
|
{
|
|
|
|
g_Detour_CBaseServer__RejectConnection->Destroy();
|
|
|
|
g_Detour_CBaseServer__RejectConnection = NULL;
|
|
|
|
}
|
|
|
|
if(g_Detour_CBaseServer__CheckChallengeType)
|
|
|
|
{
|
|
|
|
g_Detour_CBaseServer__CheckChallengeType->Destroy();
|
|
|
|
g_Detour_CBaseServer__CheckChallengeType = NULL;
|
|
|
|
}
|
|
|
|
if(g_Detour_CSteam3Server__OnValidateAuthTicketResponse)
|
|
|
|
{
|
|
|
|
g_Detour_CSteam3Server__OnValidateAuthTicketResponse->Destroy();
|
|
|
|
g_Detour_CSteam3Server__OnValidateAuthTicketResponse = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gameconfs->CloseGameConfigFile(g_pGameConf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Connect::RegisterConCommandBase(ConCommandBase *pVar)
|
|
|
|
{
|
|
|
|
/* Always call META_REGCVAR instead of going through the engine. */
|
|
|
|
return META_REGCVAR(pVar);
|
|
|
|
}
|
|
|
|
|
|
|
|
cell_t ClientPreConnectEx(IPluginContext *pContext, const cell_t *params)
|
|
|
|
{
|
|
|
|
char *pSteamID;
|
|
|
|
pContext->LocalToString(params[1], &pSteamID);
|
|
|
|
|
|
|
|
int retVal = params[2];
|
|
|
|
|
|
|
|
char *rejectReason;
|
|
|
|
pContext->LocalToString(params[3], &rejectReason);
|
|
|
|
|
|
|
|
ConnectClientStorage Storage;
|
|
|
|
if(!g_ConnectClientStorage.retrieve(pSteamID, &Storage))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if(retVal == 0)
|
|
|
|
{
|
|
|
|
RejectConnection(Storage.address, Storage.iClientChallenge, rejectReason);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_bSuppressCheckChallengeType = true;
|
2017-02-12 20:11:59 +01:00
|
|
|
IClient *pClient = DETOUR_MEMBER_MCALL_ORIGINAL(CBaseServer__ConnectClient, Storage.pThis)(Storage.address, Storage.nProtocol, Storage.iChallenge, Storage.iClientChallenge,
|
2016-05-08 22:12:08 +02:00
|
|
|
Storage.nAuthProtocol, Storage.pchName, Storage.pchPassword, Storage.pCookie, Storage.cbCookie);
|
|
|
|
|
2017-02-12 20:11:59 +01:00
|
|
|
if(!pClient)
|
|
|
|
return 1;
|
|
|
|
|
2018-03-22 19:37:12 +01:00
|
|
|
bool force = g_SvNoSteam.GetInt() || g_SvForceSteam.GetInt() || !BLoggedOn();
|
2019-11-17 14:28:18 +01:00
|
|
|
|
2018-03-22 19:37:12 +01:00
|
|
|
if(Storage.SteamAuthFailed && force && !Storage.GotValidateAuthTicketResponse)
|
2017-02-12 20:11:59 +01:00
|
|
|
{
|
2019-11-17 14:28:18 +01:00
|
|
|
if (g_SvLogging.GetInt())
|
|
|
|
g_pSM->LogMessage(myself, "%s Force ValidateAuthTicketResponse", pSteamID);
|
|
|
|
|
2017-02-12 20:11:59 +01:00
|
|
|
Storage.ValidateAuthTicketResponse.m_SteamID = CSteamID(Storage.ullSteamID);
|
|
|
|
Storage.ValidateAuthTicketResponse.m_eAuthSessionResponse = k_EAuthSessionResponseOK;
|
|
|
|
Storage.ValidateAuthTicketResponse.m_OwnerSteamID = Storage.ValidateAuthTicketResponse.m_SteamID;
|
|
|
|
Storage.GotValidateAuthTicketResponse = true;
|
|
|
|
}
|
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
// Make sure this is always called in order to verify the client on the server
|
2017-02-12 20:11:59 +01:00
|
|
|
if(Storage.GotValidateAuthTicketResponse)
|
2018-03-22 19:37:12 +01:00
|
|
|
{
|
2019-11-17 14:28:18 +01:00
|
|
|
if (g_SvLogging.GetInt())
|
|
|
|
g_pSM->LogMessage(myself, "%s Replay ValidateAuthTicketResponse", pSteamID);
|
|
|
|
|
2017-02-12 20:11:59 +01:00
|
|
|
DETOUR_MEMBER_MCALL_ORIGINAL(CSteam3Server__OnValidateAuthTicketResponse, g_pSteam3Server)(&Storage.ValidateAuthTicketResponse);
|
2018-03-22 19:37:12 +01:00
|
|
|
}
|
2016-05-08 22:12:08 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-22 19:37:12 +01:00
|
|
|
cell_t SteamClientAuthenticated(IPluginContext *pContext, const cell_t *params)
|
|
|
|
{
|
|
|
|
char *pSteamID;
|
|
|
|
pContext->LocalToString(params[1], &pSteamID);
|
|
|
|
|
|
|
|
ConnectClientStorage Storage;
|
|
|
|
if(g_ConnectClientStorage.retrieve(pSteamID, &Storage))
|
|
|
|
{
|
2019-11-17 14:28:18 +01:00
|
|
|
if (g_SvLogging.GetInt())
|
|
|
|
g_pSM->LogMessage(myself, "%s SteamClientAuthenticated: %d", pSteamID, Storage.SteamLegal);
|
|
|
|
|
2018-03-22 19:37:12 +01:00
|
|
|
return Storage.SteamLegal;
|
|
|
|
}
|
2019-11-17 14:28:18 +01:00
|
|
|
if (g_SvLogging.GetInt())
|
|
|
|
g_pSM->LogMessage(myself, "%s SteamClientAuthenticated: FALSE!", pSteamID);
|
2018-03-22 19:37:12 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-08 22:12:08 +02:00
|
|
|
const sp_nativeinfo_t MyNatives[] =
|
|
|
|
{
|
|
|
|
{ "ClientPreConnectEx", ClientPreConnectEx },
|
2018-03-22 19:37:12 +01:00
|
|
|
{ "SteamClientAuthenticated", SteamClientAuthenticated },
|
2016-05-08 22:12:08 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
void Connect::SDK_OnAllLoaded()
|
|
|
|
{
|
|
|
|
sharesys->AddNatives(myself, MyNatives);
|
2019-07-27 20:56:27 +02:00
|
|
|
}
|