aboutsummaryrefslogtreecommitdiff
path: root/subhook_x86.c
blob: a4504b8726749601b307bcf13ed6dd9856abbdb1 (plain)
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
/* Copyright (c) 2012-2015 Zeex
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <errno.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>

#include "subhook.h"
#include "subhook_private.h"

#ifdef SUBHOOK_WINDOWS
	typedef unsigned __int8 uint8_t;
	typedef __int32 int32_t;
	typedef unsigned __int32 uint32_t;
	typedef __int64 int64_t;
	typedef unsigned __int64 uint64_t;
	#if SUBHOOK_BITS == 64
		typedef __int64 intptr_t;
	#elif SUBHOOK_BITS == 32
		typedef __int32 intptr_t;
	#endif
#else
	#include <stdint.h>
#endif

#define JMP_INSN_LEN sizeof(struct subhook_jmp)

#define MAX_INSN_LEN 15
#define MAX_TRAMPOLINE_LEN (JMP_INSN_LEN + MAX_INSN_LEN - 1)

#pragma pack(push, 1)

#if SUBHOOK_BITS == 32
	#define JMP_INSN_OPCODE 0xE9
	struct subhook_jmp {
		uint8_t opcode;
		int32_t offset;
	};
#elif SUBHOOK_BITS == 64
	// Since AMD64 doesn't support 64-bit direct jumps,
	// we'll push the address onto the stack, then call RET

	// opcodes
	#define PSH_INSN_OPCODE 0x68
	#define MOV_INSN_OPCODE 0xC7
	#define RET_INSN_OPCODE 0xC3

	// mov configuration
	#define MOV_MODRM_BYTE 0x44 // write to address + 1 byte displacement
	#define MOV_SIB_BYTE 0x24 // Write to [rsp]
	#define MOV_OFFSET 0x04

	struct subhook_jmp {
		uint8_t psh_opcode;
		uint32_t psh_addr; // lower 32-bits of the address to jump to
		uint8_t mov_opcode;
		uint8_t mov_modrm;
		uint8_t mov_sib;
		uint8_t mov_offset;
		uint32_t mov_addr; // upper 32-bits of the address to jump to
		uint8_t ret_opcode;
	};
#endif

#pragma pack(pop)

static int subhook_disasm(uint8_t *code, int *reloc) {
	enum flags {
		MODRM      = 1,
		PLUS_R     = 1 << 1,
		REG_OPCODE = 1 << 2,
		IMM8       = 1 << 3,
		IMM16      = 1 << 4,
		IMM32      = 1 << 5,
		RELOC      = 1 << 6
	};

	static int prefixes[] = {
		0xF0, 0xF2, 0xF3,
		0x2E, 0x36, 0x3E, 0x26, 0x64, 0x65,
		0x66, /* operand size override */
		0x67  /* address size override */
	};

	struct opcode_info {
		int opcode;
		int reg_opcode;
		int flags;
	};

	/*
	 * Refer to the Intel Developer Manual volumes 2a and 2b for more information
	 * about instruction formats and encoding:
	 *
	 * https://www-ssl.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html
	 */
	static struct opcode_info opcodes[] = {
		/* CALL rel32        */ {0xE8, 0, IMM32 | RELOC},
		/* CALL r/m32        */ {0xFF, 2, MODRM | REG_OPCODE},
		/* JMP rel32         */ {0xE9, 0, IMM32 | RELOC},
		/* JMP r/m32         */ {0xFF, 4, MODRM | REG_OPCODE},
		/* LEA r16,m         */ {0x8D, 0, MODRM},
		/* MOV r/m8,r8       */ {0x88, 0, MODRM},
		/* MOV r/m32,r32     */ {0x89, 0, MODRM},
		/* MOV r8,r/m8       */ {0x8A, 0, MODRM},
		/* MOV r32,r/m32     */ {0x8B, 0, MODRM},
		/* MOV r/m16,Sreg    */ {0x8C, 0, MODRM},
		/* MOV Sreg,r/m16    */ {0x8E, 0, MODRM},
		/* MOV AL,moffs8     */ {0xA0, 0, IMM8},
		/* MOV EAX,moffs32   */ {0xA1, 0, IMM32},
		/* MOV moffs8,AL     */ {0xA2, 0, IMM8},
		/* MOV moffs32,EAX   */ {0xA3, 0, IMM32},
		/* MOV r8, imm8      */ {0xB0, 0, PLUS_R | IMM8},
		/* MOV r32, imm32    */ {0xB8, 0, PLUS_R | IMM32},
		/* MOV r/m8, imm8    */ {0xC6, 0, MODRM | REG_OPCODE | IMM8},
		/* MOV r/m32, imm32  */ {0xC7, 0, MODRM | REG_OPCODE | IMM32},
		/* POP r/m32         */ {0x8F, 0, MODRM | REG_OPCODE},
		/* POP r32           */ {0x58, 0, PLUS_R},
		/* PUSH r/m32        */ {0xFF, 6, MODRM | REG_OPCODE},
		/* PUSH r32          */ {0x50, 0, PLUS_R},
		/* PUSH imm8         */ {0x6A, 0, IMM8},
		/* PUSH imm32        */ {0x68, 0, IMM32},
		/* RET               */ {0xC3, 0, 0},
		/* RET imm16         */ {0xC2, 0, IMM16},
		/* SUB AL, imm8      */ {0x2C, 0, IMM8},
		/* SUB EAX, imm32    */ {0x2D, 0, IMM32},
		/* SUB r/m8, imm8    */ {0x80, 5, MODRM | REG_OPCODE | IMM8},
		/* SUB r/m32, imm32  */ {0x81, 5, MODRM | REG_OPCODE | IMM8},
		/* SUB r/m32, imm8   */ {0x83, 5, MODRM | REG_OPCODE | IMM8},
		/* SUB r/m32, r32    */ {0x29, 0, MODRM},
		/* SUB r32, r/m32    */ {0x2B, 0, MODRM},
		/* TEST AL, imm8     */ {0xA8, 0, IMM8},
		/* TEST EAX, imm32   */ {0xA9, 0, IMM32},
		/* TEST r/m8, imm8   */ {0xF6, 0, MODRM | REG_OPCODE | IMM8},
		/* TEST r/m32, imm32 */ {0xF7, 0, MODRM | REG_OPCODE | IMM32},
		/* TEST r/m8, r8     */ {0x84, 0, MODRM},
		/* TEST r/m32, r32   */ {0x85, 0, MODRM}
	};

	int i;
	int len = 0;
	int operand_size = 4;
	int address_size = 4;
	int opcode = 0;

	for (i = 0; i < sizeof(prefixes) / sizeof(*prefixes); i++) {
		if (code[len] == prefixes[i]) {
			len++;
			if (prefixes[i] == 0x66)
				operand_size = 2;
			if (prefixes[i] == 0x67)
				address_size = SUBHOOK_BITS / 8 / 2;
		}
	}

	for (i = 0; i < sizeof(opcodes) / sizeof(*opcodes); i++) {
		int found = 0;

		if (code[len] == opcodes[i].opcode)
			found = !(opcodes[i].flags & REG_OPCODE)
				|| ((code[len + 1] >> 3) & 7) == opcodes[i].reg_opcode;

		if ((opcodes[i].flags & PLUS_R)
			&& (code[len] & 0xF8) == opcodes[i].opcode)
			found = 1;

		if (found) {
			opcode = code[len++];
			break;
		}
	}

	if (opcode == 0)
		return 0;

	if (reloc != NULL && opcodes[i].flags & RELOC)
		*reloc = len; /* relative call or jump */

	if (opcodes[i].flags & MODRM) {
		int modrm = code[len++];
		int mod = modrm >> 6;
		int rm = modrm & 7;

		if (mod != 3 && rm == 4)
			len++; /* for SIB */

#ifdef SUBHOOK_X86_64
		if (reloc != NULL && rm == 5)
			*reloc = len; /* RIP-relative addressing */
#endif

		if (mod == 1)
			len += 1; /* for disp8 */
		if (mod == 2 || (mod == 0 && rm == 5))
			len += 4; /* for disp32 */
	}

	if (opcodes[i].flags & IMM8)
		len += 1;
	if (opcodes[i].flags & IMM16)
		len += 2;
	if (opcodes[i].flags & IMM32)
		len += operand_size;

	return len;
}

static size_t subhook_make_jmp(uint8_t *src, uint8_t *dst, int32_t offset) {
	struct subhook_jmp *jmp = (struct subhook_jmp *)(src + offset);

#if SUBHOOK_BITS == 32
	jmp->opcode = JMP_INSN_OPCODE;
	jmp->offset = (int32_t)(dst - (src + JMP_INSN_LEN));
#elif SUBHOOK_BITS == 64
	// Push
	jmp->psh_opcode = PSH_INSN_OPCODE;
	jmp->psh_addr = (uint32_t)dst; // Truncate

	// Move
	jmp->mov_opcode = MOV_INSN_OPCODE;
	jmp->mov_modrm = MOV_MODRM_BYTE;
	jmp->mov_sib = MOV_SIB_BYTE;
	jmp->mov_offset = MOV_OFFSET;
	jmp->mov_addr = (uint32_t)(((intptr_t)dst) >> 32);

	// Return
	jmp->ret_opcode = RET_INSN_OPCODE;
#endif

	return sizeof(jmp);
}

static size_t subhook_make_trampoline(uint8_t *trampoline, uint8_t *src) {
	int orig_size = 0;
	int insn_len;

	while (orig_size < JMP_INSN_LEN) {
		int reloc = 0;

		insn_len = subhook_disasm(src + orig_size, &reloc);

		if (insn_len == 0)
			return 0;

		memcpy(trampoline + orig_size, src + orig_size, insn_len);

		if (reloc > 0) {
			int32_t *addr_ptr = (int32_t *)(trampoline + orig_size + reloc);
			*addr_ptr -= (int32_t)(trampoline - src);
		}

		orig_size += insn_len;
	}

	return orig_size + subhook_make_jmp(trampoline, src, orig_size);
}

SUBHOOK_EXPORT subhook_t SUBHOOK_API subhook_new(void *src, void *dst) {
	subhook_t hook;

	if ((hook = malloc(sizeof(*hook))) == NULL)
		return NULL;

	hook->installed = 0;
	hook->src = src;
	hook->dst = dst;

	if ((hook->code = malloc(JMP_INSN_LEN)) == NULL) {
		free(hook);
		return NULL;
	}

	memcpy(hook->code, hook->src, JMP_INSN_LEN);

	if ((hook->trampoline = calloc(1, MAX_TRAMPOLINE_LEN)) == NULL) {
		free(hook->code);
		free(hook);
		return NULL;
	}

	if (subhook_unprotect(hook->src, JMP_INSN_LEN) == NULL
		|| subhook_unprotect(hook->trampoline, MAX_TRAMPOLINE_LEN) == NULL)
	{
		free(hook->trampoline);
		free(hook->code);
		free(hook);
		return NULL;
	}

	if (subhook_make_trampoline(hook->trampoline, hook->src) == 0) {
		free(hook->trampoline);
		hook->trampoline = NULL;
	}

	return hook;
}

SUBHOOK_EXPORT void SUBHOOK_API subhook_free(subhook_t hook) {
	free(hook->trampoline);
	free(hook->code);
	free(hook);
}

SUBHOOK_EXPORT int SUBHOOK_API subhook_install(subhook_t hook) {
	if (hook->installed)
		return -EINVAL;

	subhook_make_jmp(hook->src, hook->dst, 0);
	hook->installed = 1;

	return 0;
}

SUBHOOK_EXPORT int SUBHOOK_API subhook_remove(subhook_t hook) {
	if (!hook->installed)
		return -EINVAL;

	memcpy(hook->src, hook->code, JMP_INSN_LEN);
	hook->installed = 0;

	return 0;
}

SUBHOOK_EXPORT void *SUBHOOK_API subhook_read_dst(void *src) {
	struct subhook_jmp *maybe_jmp = (struct subhook_jmp *)src;

#if SUBHOOK_BITS == 32
	if (maybe_jmp->opcode != JMP_INSN_OPCODE)
		return NULL;

	return (void *)(maybe_jmp->offset + (uint8_t *)src + JMP_INSN_LEN);
#elif SUBHOOK_BITS == 64
	if (maybe_jmp->psh_opcode != PSH_INSN_OPCODE)
		return NULL;

	return (void *)( ((uint64_t)maybe_jmp->psh_addr) & (((uint64_t)maybe_jmp->mov_addr << 32)) );
#endif
}