1 //===-- interception_linux.cc -----------------------------------*- C++ -*-===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===----------------------------------------------------------------------===//
8 // This file is a part of AddressSanitizer, an address sanity checker.
10 // Windows-specific interception methods.
11 //===----------------------------------------------------------------------===//
15 #include "interception.h"
18 namespace __interception
{
20 bool GetRealFunctionAddress(const char *func_name
, uptr
*func_addr
) {
21 const char *DLLS
[] = {
28 for (size_t i
= 0; *func_addr
== 0 && DLLS
[i
]; ++i
) {
29 *func_addr
= (uptr
)GetProcAddress(GetModuleHandleA(DLLS
[i
]), func_name
);
31 return (*func_addr
!= 0);
34 // FIXME: internal_str* and internal_mem* functions should be moved from the
35 // ASan sources into interception/.
37 static void _memset(void *p
, int value
, size_t sz
) {
38 for (size_t i
= 0; i
< sz
; ++i
)
39 ((char*)p
)[i
] = (char)value
;
42 static void _memcpy(void *dst
, void *src
, size_t sz
) {
43 char *dst_c
= (char*)dst
,
45 for (size_t i
= 0; i
< sz
; ++i
)
49 static void WriteJumpInstruction(char *jmp_from
, char *to
) {
50 // jmp XXYYZZWW = E9 WW ZZ YY XX, where XXYYZZWW is an offset fromt jmp_from
51 // to the next instruction to the destination.
52 ptrdiff_t offset
= to
- jmp_from
- 5;
54 *(ptrdiff_t*)(jmp_from
+ 1) = offset
;
57 bool OverrideFunction(uptr old_func
, uptr new_func
, uptr
*orig_old_func
) {
59 # error OverrideFunction was not tested on x64
62 // We write 5 bytes (jmp-to-new_func) at the beginning of the 'old_func'
63 // to override it. We want to be able to execute the original 'old_func' from
64 // the wrapper, so we need to keep the leading 5+ bytes ('head') of the
65 // original instructions somewhere with a "jmp old_func+head".
66 // We call these 'head'+5 bytes of instructions a "trampoline".
68 // Trampolines are allocated from a common pool.
69 const int POOL_SIZE
= 1024;
70 static char *pool
= NULL
;
71 static size_t pool_used
= 0;
73 pool
= (char*)VirtualAlloc(NULL
, POOL_SIZE
,
74 MEM_RESERVE
| MEM_COMMIT
,
75 PAGE_EXECUTE_READWRITE
);
76 // FIXME: set PAGE_EXECUTE_READ access after setting all interceptors?
79 _memset(pool
, 0xCC /* int 3 */, POOL_SIZE
);
82 char* old_bytes
= (char*)old_func
;
83 char* trampoline
= pool
+ pool_used
;
85 // Find out the number of bytes of the instructions we need to copy to the
86 // island and store it in 'head'.
89 switch (old_bytes
[head
]) {
90 case '\x55': // push ebp
91 case '\x56': // push esi
92 case '\x57': // push edi
96 switch (*(unsigned short*)(old_bytes
+ head
)) { // NOLINT
97 case 0xFF8B: // 8B FF = mov edi, edi
98 case 0xEC8B: // 8B EC = mov ebp, esp
99 case 0xC033: // 33 C0 = xor eax, eax
102 case 0xEC83: // 83 EC XX = sub esp, XX
105 case 0xC1F7: // F7 C1 XX YY ZZ WW = test ecx, WWZZYYXX
109 switch (0x00FFFFFF & *(unsigned int*)(old_bytes
+ head
)) {
110 case 0x24448A: // 8A 44 24 XX = mov eal, dword ptr [esp+XXh]
111 case 0x244C8B: // 8B 4C 24 XX = mov ecx, dword ptr [esp+XXh]
112 case 0x24548B: // 8B 54 24 XX = mov edx, dword ptr [esp+XXh]
113 case 0x247C8B: // 8B 7C 24 XX = mov edi, dword ptr [esp+XXh]
118 // Unknown instruction!
122 if (pool_used
+ head
+ 5 > POOL_SIZE
)
125 // Now put the "jump to trampoline" instruction into the original code.
126 DWORD old_prot
, unused_prot
;
127 if (!VirtualProtect((void*)old_func
, head
, PAGE_EXECUTE_READWRITE
,
131 // Put the needed instructions into the trampoline bytes.
132 _memcpy(trampoline
, old_bytes
, head
);
133 WriteJumpInstruction(trampoline
+ head
, old_bytes
+ head
);
134 *orig_old_func
= (uptr
)trampoline
;
135 pool_used
+= head
+ 5;
137 // Intercept the 'old_func'.
138 WriteJumpInstruction(old_bytes
, (char*)new_func
);
139 _memset(old_bytes
+ 5, 0xCC /* int 3 */, head
- 5);
141 if (!VirtualProtect((void*)old_func
, head
, old_prot
, &unused_prot
))
142 return false; // not clear if this failure bothers us.
147 } // namespace __interception