33
33
#include " extension.h"
34
34
#include " asm/asm.h"
35
35
#include " CDetour/detourhelpers.h"
36
+ #include " codepatch/patch_utils.hpp"
36
37
37
38
#define OP_MOV 0xA1
38
39
#define OP_MOV_SIZE 5
39
40
40
41
// TODO: Create CUT/PASTE masks functions for wrap instructions inside my patch
41
42
42
- unsigned char UpdateMarkersReached_orig[] = { 0xE8 , 0x2A , 0x2A , 0x2A , 0x2A , 0xF3 , 0x0F , 0x2A , 0x2A , 0x2A , 0xC1 , 0xF8 , 0x02 };
43
- unsigned char UpdateMarkersReached_patch[] = { 0x8B , 0x80 , 0xE8 , 0x0D , 0x00 , 0x00 , 0x31 , 0xD2 , 0xBB , TEAM_SIZE, 0x00 , 0x00 , 0x00 , 0xF7 , 0xF3 };
43
+ unsigned char UpdateMarkersReached_orig[] = { 0x89 , 0x04 , 0x24 , 0xE8 , 0x07 , 0x9E , 0xC6 , 0xFF , 0xF3 , 0x0F , 0x2A , 0x45 , 0xE4 , 0xC1 , 0xF8 , 0x02 };
44
+ unsigned char UpdateMarkersReached_patch[] = { 0x8B , 0x80 , 0xFC , 0x0D , 0x00 , 0x00 , 0x31 , 0xD2 , 0xBB , TEAM_SIZE, 0x00 , 0x00 , 0x00 , 0xF7 , 0xF3 , 0xF3 , 0x0F , 0x2A , 0x45 , 0xE4 };
44
45
45
- unsigned char AddSurvivorStats_orig[] = { 0xE8 , 0x2A , 0x2A , 0x2A , 0x2A , 0xC1 , 0xF8 , 0x02 };
46
- unsigned char AddSurvivorStats_patch[] = { 0x8B , 0x80 , 0xE8 , 0x0D , 0x00 , 0x00 , 0x31 , 0xD2 , 0xB9 , TEAM_SIZE, 0x00 , 0x00 , 0x00 , 0xF7 , 0xF1 };
46
+ unsigned char AddSurvivorStats_orig[] = { 0x89 , 0x04 , 0x24 , 0xE8 , 0x89 , 0xCB , 0xC4 , 0xFF , 0xC1 , 0xF8 , 0x02 , 0xF3 , 0x0F , 0x2A , 0xC0 , 0x0F , 0x2F , 0x05 , 0x90 , 0x95 , 0xBA , 0x00 , 0xF3 , 0x0F , 0x11 , 0x45 , 0xAC };
47
+ unsigned char AddSurvivorStats_patch[] = { 0x8B , 0x80 , 0xFC , 0x0D , 0x00 , 0x00 , 0x31 , 0xD2 , 0xB9 , TEAM_SIZE, 0x00 , 0x00 , 0x00 , 0xF7 , 0xF1 , 0x85 , 0xC0 , 0x89 , 0x45 , 0xAC , 0x90 , 0x90 , 0x90 , 0x90 , 0x90 , 0x90 , 0x90 };
47
48
48
- unsigned char GetVersusCompletion_orig[] = { 0x8B , 0x55 , 0x2A , 0xA1 , 0x2A , 0x2A , 0x2A , 0x2A , 0x8B , 0xBA , 0xE8 , 0x0D , 0x00 , 0x00 , 0x89 , 0x2A , 0x2A , 0xC1 , 0xFF , 0x02 };
49
- unsigned char GetVersusCompletion_patch[] = { 0x8B , 0x45 , 0x08 , 0x8B , 0x80 , 0xE8 , 0x0D , 0x00 , 0x00 , 0x31 , 0xD2 , 0xBF , TEAM_SIZE, 0x00 , 0x00 , 0x00 , 0xF7 , 0xF7 , 0x89 , 0xC7 };
49
+ unsigned char GetVersusCompletion_orig[] = { 0xB8 , 0x00 , 0x00 , 0x00 , 0x00 , 0xC1 , 0xFB , 0x02 , 0x85 , 0xDB , 0x0F , 0x48 , 0xD8 };
50
+ unsigned char GetVersusCompletion_patch[] = { 0x89 , 0xD8 , 0x31 , 0xD2 , 0xBB , TEAM_SIZE, 0x00 , 0x00 , 0x00 , 0xF7 , 0xF3 , 0x89 , 0xC3 };
50
51
51
52
52
53
void ScoreCode::Patch () {
@@ -65,40 +66,24 @@ void ScoreCode::Patch() {
65
66
// prepare the trampoline
66
67
m_injectMarker = (unsigned char *)sengine->AllocatePageMemory (sizeof (UpdateMarkersReached_patch) + OP_JMP_SIZE);
67
68
copy_bytes (UpdateMarkersReached_patch, m_injectMarker, sizeof (UpdateMarkersReached_patch));
68
- inject_jmp (m_injectMarker + sizeof (UpdateMarkersReached_patch), m_pMarkers + OP_JMP_SIZE);
69
+ inject_jmp (m_injectMarker + sizeof (UpdateMarkersReached_patch), m_pMarkers + OP_JMP_SIZE); // inject jump to position afterward JMP which brought us here
70
+
69
71
// copy original code to our buffer
70
72
SetMemPatchable (m_pMarkers, sizeof (UpdateMarkersReached_orig));
71
73
copy_bytes (m_pMarkers, UpdateMarkersReached_orig, sizeof (UpdateMarkersReached_orig));
72
74
// inject jmp to trampoline and nop some bytes after target instruction
73
75
inject_jmp (m_pMarkers, m_injectMarker);
74
- fill_nop (m_pMarkers + sizeof (UpdateMarkersReached_orig) - 3 , 3 );
76
+ fill_nop (m_pMarkers + OP_JMP_SIZE, sizeof (UpdateMarkersReached_orig) - OP_JMP_SIZE );
75
77
76
- // prepare the trampoline
77
- m_injectStats = (unsigned char *)sengine->AllocatePageMemory (sizeof (AddSurvivorStats_patch) + OP_JMP_SIZE);
78
- copy_bytes (AddSurvivorStats_patch, m_injectStats, sizeof (AddSurvivorStats_patch));
79
- inject_jmp (m_injectStats + sizeof (AddSurvivorStats_patch), m_pL4DStats + sizeof (AddSurvivorStats_orig));
80
- // copy original code to our buffer
78
+ // // before patch copy original code to our buffer
81
79
SetMemPatchable (m_pL4DStats, sizeof (AddSurvivorStats_orig));
82
80
copy_bytes (m_pL4DStats, AddSurvivorStats_orig, sizeof (AddSurvivorStats_orig));
83
- // inject jmp to trampoline
84
- inject_jmp (m_pL4DStats, m_injectStats);
85
- fill_nop (m_pL4DStats + OP_JMP_SIZE, sizeof (AddSurvivorStats_orig) - OP_JMP_SIZE);
81
+ copy_bytes (AddSurvivorStats_patch, m_pL4DStats, sizeof (AddSurvivorStats_patch));
86
82
87
- // prepare the trampoline
88
- // patch size: (division code size) + (original MOV (A1) to EAX) + (original short MOV (89)) + (JMP back)
89
- size_t compl_patch_size = sizeof (GetVersusCompletion_patch) + OP_MOV_SIZE + 3 + OP_JMP_SIZE;
90
- m_injectCompl = (unsigned char *)sengine->AllocatePageMemory (compl_patch_size);
91
- unsigned char *pInjectEnd = m_injectCompl;
92
- copy_bytes (GetVersusCompletion_patch, m_injectCompl, sizeof (GetVersusCompletion_patch)); pInjectEnd += sizeof (GetVersusCompletion_patch);
93
- copy_bytes (m_pCompletion + 3 , pInjectEnd, OP_MOV_SIZE); pInjectEnd += OP_MOV_SIZE;
94
- copy_bytes (m_pCompletion + sizeof (GetVersusCompletion_orig) - 6 , pInjectEnd, 3 ); pInjectEnd += 3 ;
95
- inject_jmp (pInjectEnd, m_pCompletion + sizeof (GetVersusCompletion_orig));
96
- // copy original code to our buffer
83
+ // // before patch copy original code to our buffer
97
84
SetMemPatchable (m_pCompletion, sizeof (GetVersusCompletion_orig));
98
85
copy_bytes (m_pCompletion, GetVersusCompletion_orig, sizeof (GetVersusCompletion_orig));
99
- // inject jmp to trampoline
100
- inject_jmp (m_pCompletion, m_injectCompl);
101
- fill_nop (m_pCompletion + OP_JMP_SIZE, sizeof (GetVersusCompletion_orig) - OP_JMP_SIZE);
86
+ copy_bytes (GetVersusCompletion_patch, m_pCompletion, sizeof (GetVersusCompletion_patch));
102
87
103
88
m_isPatched = true ;
104
89
}
@@ -108,8 +93,8 @@ void ScoreCode::Unpatch() {
108
93
109
94
ISourcePawnEngine *sengine = g_pSM->GetScriptingEngine ();
110
95
if (m_injectMarker) { copy_bytes (m_pMarkers, UpdateMarkersReached_orig, sizeof (UpdateMarkersReached_orig)); sengine->FreePageMemory (m_injectMarker); }
111
- if (m_injectStats) { copy_bytes (m_pL4DStats, AddSurvivorStats_orig, sizeof (AddSurvivorStats_orig)); sengine-> FreePageMemory (m_injectStats); }
112
- if (m_injectCompl) { copy_bytes (m_pCompletion, GetVersusCompletion_orig, sizeof (GetVersusCompletion_orig)); sengine-> FreePageMemory (m_injectCompl); }
96
+ copy_bytes (m_pL4DStats, AddSurvivorStats_orig, sizeof (AddSurvivorStats_orig));
97
+ copy_bytes (m_pCompletion, GetVersusCompletion_orig, sizeof (GetVersusCompletion_orig));
113
98
114
99
m_isPatched = false ;
115
100
}
0 commit comments