-
Notifications
You must be signed in to change notification settings - Fork 65
/
hk.c
219 lines (190 loc) · 4.79 KB
/
hk.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#include "hk.h"
//
// jmp QWORD PTR [rip+0x0]
//
static const UCHAR HkpDetour[] = {
0xff, 0x25, 0x00, 0x00, 0x00, 0x00
};
#define FULL_DETOUR_SIZE (sizeof(HkpDetour) + sizeof(PVOID))
#define INTERLOCKED_EXCHANGE_SIZE (16ul)
#define HK_POOL_TAG (' kh')
_IRQL_requires_max_(APC_LEVEL)
static NTSTATUS HkpReplaceCode16Bytes(
_In_ PVOID Address,
_In_ PUCHAR Replacement
)
{
//
// Check for proper alignment. cmpxchg16b works only with 16-byte aligned addresses.
//
if ((ULONG64)Address != ((ULONG64)Address & ~0xf))
{
return STATUS_DATATYPE_MISALIGNMENT;
}
//
// Create memory descriptor list to map read-only (or RX) memory as read-write.
//
PMDL Mdl = IoAllocateMdl(Address, INTERLOCKED_EXCHANGE_SIZE, FALSE, FALSE, NULL);
if (Mdl == NULL)
{
return STATUS_INSUFFICIENT_RESOURCES;
}
//
// Make memory pages resident in RAM and make sure they won't get paged out.
//
__try
{
MmProbeAndLockPages(Mdl, KernelMode, IoReadAccess);
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
IoFreeMdl(Mdl);
return STATUS_INVALID_ADDRESS;
}
//
// Create new mapping for read-only memory.
//
PLONG64 RwMapping = MmMapLockedPagesSpecifyCache(
Mdl,
KernelMode,
MmNonCached,
NULL,
FALSE,
NormalPagePriority
);
if (RwMapping == NULL)
{
MmUnlockPages(Mdl);
IoFreeMdl(Mdl);
return STATUS_INTERNAL_ERROR;
}
//
// Set new mapping page protection to read-write in order to modify it.
//
NTSTATUS Status = MmProtectMdlSystemAddress(Mdl, PAGE_READWRITE);
if (!NT_SUCCESS(Status))
{
MmUnmapLockedPages(RwMapping, Mdl);
MmUnlockPages(Mdl);
IoFreeMdl(Mdl);
return Status;
}
LONG64 PreviousContent[2];
PreviousContent[0] = RwMapping[0];
PreviousContent[1] = RwMapping[1];
//
// Replace 16 bytes of code using created read-write mapping.
// Interlocked compare and exchange (cmpxchg16b) is used to avoid concurrency issues.
//
InterlockedCompareExchange128(
RwMapping,
((PLONG64)Replacement)[1],
((PLONG64)Replacement)[0],
PreviousContent
);
//
// Unlock and unmap pages, free MDL.
//
MmUnmapLockedPages(RwMapping, Mdl);
MmUnlockPages(Mdl);
IoFreeMdl(Mdl);
return STATUS_SUCCESS;
}
_IRQL_requires_max_(APC_LEVEL)
static VOID HkpPlaceDetour(
_In_ PVOID Address,
_In_ PVOID Destination
)
{
//
// Save jump instruction and detour destination.
// This will create code as shown:
// +0 jmp QWORD PTR [rip+0x0]
// +6 0x................
//
RtlCopyMemory((PUCHAR)Address, HkpDetour, sizeof(HkpDetour));
RtlCopyMemory((PUCHAR)Address + sizeof(HkpDetour), &Destination, sizeof(PVOID));
}
_IRQL_requires_max_(APC_LEVEL)
NTSTATUS HkRestoreFunction(
_In_ PVOID HookedFunction,
_In_ PVOID OriginalTrampoline
)
{
PUCHAR OriginalBytes = (PUCHAR)OriginalTrampoline - INTERLOCKED_EXCHANGE_SIZE;
//
// If that will fail we are probably going to bugcheck anyway...
//
NTSTATUS Status = HkpReplaceCode16Bytes(HookedFunction, OriginalBytes);
//
// Wait 10 ms to make sure no code will jump to trampoline after freeing.
//
LARGE_INTEGER DelayInterval;
DelayInterval.QuadPart = -100000;
KeDelayExecutionThread(KernelMode, FALSE, &DelayInterval);
//
// Free resources.
//
ExFreePoolWithTag(OriginalBytes, HK_POOL_TAG);
return Status;
}
_IRQL_requires_max_(APC_LEVEL)
NTSTATUS HkDetourFunction(
_In_ PVOID TargetFunction,
_In_ PVOID Hook,
_In_ SIZE_T CodeLength,
_Out_ PVOID* OriginalTrampoline
)
{
//
// Check if CodeLength is big enough to hold detour.
//
if (CodeLength < FULL_DETOUR_SIZE)
{
return STATUS_INVALID_PARAMETER_3;
}
//
// NonPagedPool is used to be compatibile with functions that run at high IRQL (>= DISPATCH_LEVEL).
//
PUCHAR Trampoline = ExAllocatePoolWithTag(
NonPagedPool,
INTERLOCKED_EXCHANGE_SIZE + FULL_DETOUR_SIZE + CodeLength,
HK_POOL_TAG
);
if (Trampoline == NULL)
{
return STATUS_INSUFFICIENT_RESOURCES;
}
//
// Save 16 original bytes to restore function later (needed for HkRestoreFunction).
//
RtlCopyMemory(Trampoline, TargetFunction, INTERLOCKED_EXCHANGE_SIZE);
//
// Create trampoline to original function containing original bytes and jump to function + CodeLength.
//
RtlCopyMemory(Trampoline + INTERLOCKED_EXCHANGE_SIZE, TargetFunction, CodeLength);
HkpPlaceDetour(Trampoline + INTERLOCKED_EXCHANGE_SIZE + CodeLength, (PVOID)((ULONG_PTR)TargetFunction + CodeLength));
//
// Generate detour bytes.
//
UCHAR DetourBytes[INTERLOCKED_EXCHANGE_SIZE];
HkpPlaceDetour(DetourBytes, Hook);
RtlCopyMemory(
(PUCHAR)DetourBytes + FULL_DETOUR_SIZE,
(PUCHAR)TargetFunction + FULL_DETOUR_SIZE,
INTERLOCKED_EXCHANGE_SIZE - FULL_DETOUR_SIZE
);
//
// Apply detour to target function.
//
NTSTATUS Status = HkpReplaceCode16Bytes(TargetFunction, DetourBytes);
if (!NT_SUCCESS(Status))
{
ExFreePoolWithTag(Trampoline, HK_POOL_TAG);
}
else
{
*OriginalTrampoline = Trampoline + INTERLOCKED_EXCHANGE_SIZE;
}
return Status;
}