From 7eb6952df0a7cfaa65ee320d862cfa560107388f Mon Sep 17 00:00:00 2001 From: PixieCore <41352111+IcePixelx@users.noreply.github.com> Date: Wed, 29 Jun 2022 16:32:40 +0200 Subject: [PATCH 1/6] Use const in memaddr.cpp where its supposed to be. --- r5dev/common/netmessages.cpp | 8 ++++---- r5dev/public/include/memaddr.h | 12 ++++++------ r5dev/public/memaddr.cpp | 20 ++++++++++---------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/r5dev/common/netmessages.cpp b/r5dev/common/netmessages.cpp index 614e4448..77c4a5da 100644 --- a/r5dev/common/netmessages.cpp +++ b/r5dev/common/netmessages.cpp @@ -43,13 +43,13 @@ void CNetMessages_Attach() { auto SVCPrint = &SVC_Print::Process; auto SVCUserMessage = &SVC_UserMessage::Process; - CMemory::HookVirtualMethod((uintptr_t)g_pSVC_Print_VTable, (LPVOID&)SVCPrint, (LPVOID*)&SVC_Print_Process, 3); - CMemory::HookVirtualMethod((uintptr_t)g_pSVC_UserMessage_VTable, (LPVOID&)SVCUserMessage, (LPVOID*)&SVC_UserMessage_Process, 3); + CMemory::HookVirtualMethod((uintptr_t)g_pSVC_Print_VTable, (LPVOID&)SVCPrint, 3, (LPVOID*)&SVC_Print_Process); + CMemory::HookVirtualMethod((uintptr_t)g_pSVC_UserMessage_VTable, (LPVOID&)SVCUserMessage, 3, (LPVOID*)&SVC_UserMessage_Process); } void CNetMessages_Detach() { void* hkRestore = nullptr; - CMemory::HookVirtualMethod((uintptr_t)g_pSVC_Print_VTable, (LPVOID)SVC_Print_Process, (LPVOID*)&hkRestore, 3); - CMemory::HookVirtualMethod((uintptr_t)g_pSVC_UserMessage_VTable, (LPVOID)SVC_UserMessage_Process, (LPVOID*)&hkRestore, 3); + CMemory::HookVirtualMethod((uintptr_t)g_pSVC_Print_VTable, (LPVOID)SVC_Print_Process, 3, (LPVOID*)&hkRestore); + CMemory::HookVirtualMethod((uintptr_t)g_pSVC_UserMessage_VTable, (LPVOID)SVC_UserMessage_Process, 3, (LPVOID*)&hkRestore); } \ No newline at end of file diff --git a/r5dev/public/include/memaddr.h b/r5dev/public/include/memaddr.h index 680db972..b145f6e8 100644 --- a/r5dev/public/include/memaddr.h +++ b/r5dev/public/include/memaddr.h @@ -116,15 +116,15 @@ public: } bool CheckOpCodes(const vector vOpcodeArray) const; - void Patch(vector vOpcodes) const; + void Patch(const vector vOpcodeArray) const; void PatchString(const string& svString) const; CMemory FindPattern(const string& svPattern, const Direction searchDirect = Direction::DOWN, const int opCodesToScan = 512, const ptrdiff_t occurence = 1) const; CMemory FindPatternSelf(const string& svPattern, const Direction searchDirect = Direction::DOWN, const int opCodesToScan = 512, const ptrdiff_t occurence = 1); - CMemory FollowNearCall(ptrdiff_t opcodeOffset = 0x1, ptrdiff_t nextInstructionOffset = 0x5) const; - CMemory FollowNearCallSelf(ptrdiff_t opcodeOffset = 0x1, ptrdiff_t nextInstructionOffset = 0x5); - CMemory ResolveRelativeAddress(ptrdiff_t registerOffset = 0x0, ptrdiff_t nextInstructionOffset = 0x4) const; - CMemory ResolveRelativeAddressSelf(ptrdiff_t registerOffset = 0x0, ptrdiff_t nextInstructionOffset = 0x4); - static void HookVirtualMethod(uintptr_t virtualTable, void* pHookMethod, void** ppOriginalMethod, ptrdiff_t methodIndex); + CMemory FollowNearCall(const ptrdiff_t opcodeOffset = 0x1, const ptrdiff_t nextInstructionOffset = 0x5) const; + CMemory FollowNearCallSelf(const ptrdiff_t opcodeOffset = 0x1, const ptrdiff_t nextInstructionOffset = 0x5); + CMemory ResolveRelativeAddress(const ptrdiff_t registerOffset = 0x0, const ptrdiff_t nextInstructionOffset = 0x4) const; + CMemory ResolveRelativeAddressSelf(const ptrdiff_t registerOffset = 0x0, const ptrdiff_t nextInstructionOffset = 0x4); + static void HookVirtualMethod(const uintptr_t virtualTable, const void* pHookMethod, const ptrdiff_t methodIndex, void** ppOriginalMethod); private: uintptr_t ptr = 0; diff --git a/r5dev/public/memaddr.cpp b/r5dev/public/memaddr.cpp index 9eca8f15..61994681 100644 --- a/r5dev/public/memaddr.cpp +++ b/r5dev/public/memaddr.cpp @@ -33,19 +33,19 @@ bool CMemory::CheckOpCodes(const vector vOpcodeArray) const // Purpose: patch array of opcodes starting from current address // Input : vOpcodeArray - //----------------------------------------------------------------------------- -void CMemory::Patch(vector vOpcodes) const +void CMemory::Patch(const vector vOpcodeArray) const { DWORD oldProt = NULL; - SIZE_T dwSize = vOpcodes.size(); + SIZE_T dwSize = vOpcodeArray.size(); VirtualProtect(reinterpret_cast(ptr), dwSize, PAGE_EXECUTE_READWRITE, &oldProt); // Patch page to be able to read and write to it. - for (int i = 0; i < vOpcodes.size(); i++) + for (int i = 0; i < vOpcodeArray.size(); i++) { - *reinterpret_cast(ptr + i) = vOpcodes[i]; // Write opcodes to Address. + *reinterpret_cast(ptr + i) = vOpcodeArray[i]; // Write opcodes to Address. } - dwSize = vOpcodes.size(); + dwSize = vOpcodeArray.size(); VirtualProtect(reinterpret_cast(ptr), dwSize, oldProt, &oldProt); // Restore protection. } @@ -173,7 +173,7 @@ CMemory CMemory::FindPatternSelf(const string& svPattern, const Direction search // nextInstructionOffset - // Output : CMemory //----------------------------------------------------------------------------- -CMemory CMemory::FollowNearCall(ptrdiff_t opcodeOffset, ptrdiff_t nextInstructionOffset) const +CMemory CMemory::FollowNearCall(const ptrdiff_t opcodeOffset, const ptrdiff_t nextInstructionOffset) const { return ResolveRelativeAddress(opcodeOffset, nextInstructionOffset); } @@ -184,7 +184,7 @@ CMemory CMemory::FollowNearCall(ptrdiff_t opcodeOffset, ptrdiff_t nextInstructio // nextInstructionOffset - // Output : CMemory //----------------------------------------------------------------------------- -CMemory CMemory::FollowNearCallSelf(ptrdiff_t opcodeOffset, ptrdiff_t nextInstructionOffset) +CMemory CMemory::FollowNearCallSelf(const ptrdiff_t opcodeOffset, const ptrdiff_t nextInstructionOffset) { return ResolveRelativeAddressSelf(opcodeOffset, nextInstructionOffset); } @@ -195,7 +195,7 @@ CMemory CMemory::FollowNearCallSelf(ptrdiff_t opcodeOffset, ptrdiff_t nextInstru // nextInstructionOffset - // Output : CMemory //----------------------------------------------------------------------------- -CMemory CMemory::ResolveRelativeAddress(ptrdiff_t registerOffset, ptrdiff_t nextInstructionOffset) const +CMemory CMemory::ResolveRelativeAddress(const ptrdiff_t registerOffset, const ptrdiff_t nextInstructionOffset) const { // Skip register. uintptr_t skipRegister = ptr + registerOffset; @@ -216,7 +216,7 @@ CMemory CMemory::ResolveRelativeAddress(ptrdiff_t registerOffset, ptrdiff_t next // nextInstructionOffset - // Output : CMemory //----------------------------------------------------------------------------- -CMemory CMemory::ResolveRelativeAddressSelf(ptrdiff_t registerOffset, ptrdiff_t nextInstructionOffset) +CMemory CMemory::ResolveRelativeAddressSelf(const ptrdiff_t registerOffset, const ptrdiff_t nextInstructionOffset) { // Skip register. uintptr_t skipRegister = ptr + registerOffset; @@ -240,7 +240,7 @@ CMemory CMemory::ResolveRelativeAddressSelf(ptrdiff_t registerOffset, ptrdiff_t // pOriginalMethod - // Output : void** via pOriginalMethod //----------------------------------------------------------------------------- -void CMemory::HookVirtualMethod(uintptr_t virtualTable, void* pHookMethod, void** ppOriginalMethod, ptrdiff_t methodIndex) +void CMemory::HookVirtualMethod(const uintptr_t virtualTable, const void* pHookMethod, const ptrdiff_t methodIndex, void** ppOriginalMethod) { DWORD oldProt = NULL; From f414c2753d2a548c849e4b02a86ded6bfd24269f Mon Sep 17 00:00:00 2001 From: PixieCore <41352111+IcePixelx@users.noreply.github.com> Date: Wed, 29 Jun 2022 16:52:31 +0200 Subject: [PATCH 2/6] Commented un-used hook --- r5dev/client/cdll_engine_int.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/client/cdll_engine_int.cpp b/r5dev/client/cdll_engine_int.cpp index e6120eea..efab29b8 100644 --- a/r5dev/client/cdll_engine_int.cpp +++ b/r5dev/client/cdll_engine_int.cpp @@ -37,10 +37,10 @@ ClientClass* CHLClient::GetAllClasses() /////////////////////////////////////////////////////////////////////////////// void CHLClient_Attach() { - DetourAttach((LPVOID*)&CHLClient_FrameStageNotify, &CHLClient::FrameStageNotify); + //DetourAttach((LPVOID*)&CHLClient_FrameStageNotify, &CHLClient::FrameStageNotify); } void CHLClient_Detach() { - DetourDetach((LPVOID*)&CHLClient_FrameStageNotify, &CHLClient::FrameStageNotify); + //DetourDetach((LPVOID*)&CHLClient_FrameStageNotify, &CHLClient::FrameStageNotify); } From c614d75a4fcec070c93ed281446a3af76d858986 Mon Sep 17 00:00:00 2001 From: PixieCore <41352111+IcePixelx@users.noreply.github.com> Date: Wed, 29 Jun 2022 17:07:06 +0200 Subject: [PATCH 3/6] Removed ConVar string deletion. * This will crash due to the string not being allocated with alloc. Even if the source engine would allocate it, it would use CStdMemAlloc and it would crash anyway. But it doesn't so we can just leave that out! --- r5dev/tier1/IConVar.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/r5dev/tier1/IConVar.cpp b/r5dev/tier1/IConVar.cpp index fca670b6..55b706b9 100644 --- a/r5dev/tier1/IConVar.cpp +++ b/r5dev/tier1/IConVar.cpp @@ -31,11 +31,6 @@ ConVar::ConVar(const char* pszName, const char* pszDefaultValue, int nFlags, con //----------------------------------------------------------------------------- ConVar::~ConVar(void) { - if (m_Value.m_pszString) - { - delete[] m_Value.m_pszString; - m_Value.m_pszString = NULL; - } } //----------------------------------------------------------------------------- From a2cb0b62c8ceeb2299ebeaa65e00a3f87ba05b11 Mon Sep 17 00:00:00 2001 From: PixieCore <41352111+IcePixelx@users.noreply.github.com> Date: Wed, 29 Jun 2022 18:25:44 +0200 Subject: [PATCH 4/6] Macro for ArraySizes and CFactory Methods are virtual now for later usage. --- r5dev/tier0/basetypes.h | 2 ++ r5dev/tier1/IConVar.cpp | 4 ++-- r5dev/tier1/cmd.cpp | 2 +- r5dev/vpc/interfaces.h | 10 +++++----- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/r5dev/tier0/basetypes.h b/r5dev/tier0/basetypes.h index ed044e58..04d4d4c6 100644 --- a/r5dev/tier0/basetypes.h +++ b/r5dev/tier0/basetypes.h @@ -134,6 +134,8 @@ #endif // Max BSP file name len. #define MAX_MAP_NAME 64 +#define SDK_ARRAYSIZE(arr) ((int)(sizeof(arr) / sizeof(*arr))) // Name due to IMGUI implementation and NT implementation that we shouldn't share across everywhere. + #define SDK_VERSION "beta 1.6"/*"VGameSDK001"*/ // Increment this with every /breaking/ SDK change (i.e. security/backend changes breaking compatibility). #ifndef DEDICATED diff --git a/r5dev/tier1/IConVar.cpp b/r5dev/tier1/IConVar.cpp index 55b706b9..5f6b209f 100644 --- a/r5dev/tier1/IConVar.cpp +++ b/r5dev/tier1/IConVar.cpp @@ -196,7 +196,7 @@ void ConVar::PurgeShipped(void) const "voice_enabled", }; - for (int i = 0; i < (&pszToPurge)[1] - pszToPurge; i++) + for (int i = 0; i < SDK_ARRAYSIZE(pszToPurge); i++) { ConVar* pCVar = g_pCVar->FindVar(pszToPurge[i]); @@ -233,7 +233,7 @@ void ConVar::PurgeHostNames(void) const "users_hostname" }; - for (int i = 0; i < (&pszHostNames)[1] - pszHostNames; i++) + for (int i = 0; i < SDK_ARRAYSIZE(pszHostNames); i++) { ConVar* pCVar = g_pCVar->FindVar(pszHostNames[i]); diff --git a/r5dev/tier1/cmd.cpp b/r5dev/tier1/cmd.cpp index 042aa096..bf729b1f 100644 --- a/r5dev/tier1/cmd.cpp +++ b/r5dev/tier1/cmd.cpp @@ -21,7 +21,7 @@ int CCommand::MaxCommandLength(void) //----------------------------------------------------------------------------- // Purpose: returns argument count //----------------------------------------------------------------------------- -std::int64_t CCommand::ArgC(void) const +int64_t CCommand::ArgC(void) const { return m_nArgc; } diff --git a/r5dev/vpc/interfaces.h b/r5dev/vpc/interfaces.h index 33aafbbf..db6f09e2 100644 --- a/r5dev/vpc/interfaces.h +++ b/r5dev/vpc/interfaces.h @@ -77,11 +77,11 @@ struct FactoryInfo class CFactory { public: - void AddFactory(const string& svFactoryName, void* pFactory); - void AddFactory(FactoryInfo factoryInfo); - size_t GetVersionIndex(const string& svInterfaceName) const; - void GetFactoriesFromRegister(void); - CMemory GetFactoryPtr(const string& factoryName, bool versionLess = true) const; + virtual void AddFactory(const string& svFactoryName, void* pFactory); + virtual void AddFactory(FactoryInfo factoryInfo); + virtual size_t GetVersionIndex(const string& svInterfaceName) const; + virtual void GetFactoriesFromRegister(void); + virtual CMemory GetFactoryPtr(const string& svFactoryName, bool versionLess = true) const; private: vector m_vFactories; From 69b385a21ad6bc84338b615c90d1cbb81e9c7480 Mon Sep 17 00:00:00 2001 From: Amos Date: Thu, 30 Jun 2022 11:29:36 +0200 Subject: [PATCH 5/6] Change type to int in for loop Tests against int, not size_t. --- r5dev/thirdparty/imgui/src/imgui_logger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/thirdparty/imgui/src/imgui_logger.cpp b/r5dev/thirdparty/imgui/src/imgui_logger.cpp index a0063f49..a484b9d1 100644 --- a/r5dev/thirdparty/imgui/src/imgui_logger.cpp +++ b/r5dev/thirdparty/imgui/src/imgui_logger.cpp @@ -58,7 +58,7 @@ std::string CTextLogger::GetText(const Coordinates & aStart, const Coordinates & int iend = GetCharacterIndex(aEnd); size_t s = 0; - for (size_t i = lstart; i < lend; i++) + for (int i = lstart; i < lend; i++) s += m_Lines[i].size(); result.reserve(s + s / 8); From 1186533652dd56337db84999405ab8af2c055ea6 Mon Sep 17 00:00:00 2001 From: Amos Date: Thu, 30 Jun 2022 11:30:11 +0200 Subject: [PATCH 6/6] Use Squirrel type alias --- r5dev/squirrel/sqapi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/squirrel/sqapi.cpp b/r5dev/squirrel/sqapi.cpp index c4a3bb52..3b19ab71 100644 --- a/r5dev/squirrel/sqapi.cpp +++ b/r5dev/squirrel/sqapi.cpp @@ -11,7 +11,7 @@ //--------------------------------------------------------------------------------- SQChar* sq_getstring(HSQUIRRELVM v, SQInteger i) { - return *reinterpret_cast(*reinterpret_cast(&v->_stackbase) + 0x10i64 * i + 0x8) + 0x40; + return *reinterpret_cast(*reinterpret_cast(&v->_stackbase) + 0x10i64 * i + 0x8) + 0x40; } //---------------------------------------------------------------------------------