-
Notifications
You must be signed in to change notification settings - Fork 11
/
injectcode.cpp
183 lines (141 loc) · 6.22 KB
/
injectcode.cpp
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
//
// PTLsim: Cycle Accurate x86-64 Simulator
// Injected loader stub code
//
// Copyright 2000-2008 Matt T. Yourst <[email protected]>
//
#define INLINED_SYSCALLS
#include <globals.h>
#include <loader.h>
#include <elf.h>
#include <syscalls.h>
#ifdef PTLSIM_FORCE_32BIT_ONLY
// Building PTLsim32 only:
static inline void switch_stack_and_jump(void* code, void* stack, bool use64) {
asm volatile("mov %[code],%%eax\n"
"mov %[stack],%%esp\n"
"jmp *%%eax\n" : : [code] "r" (code), [stack] "m" (stack));
}
#else
struct FarJumpDescriptor {
W32 offset;
W16 seg;
};
static inline void switch_stack_and_jump(void* code, void* stack, bool use64) {
FarJumpDescriptor desc;
desc.offset = LO32((Waddr)code);
desc.seg = (use64) ? 0x33 : 0x23;
#ifdef __x86_64__
asm volatile("lea %[desc],%%rax\n"
"mov %[stack],%%rsp\n"
"ljmp *(%%rax)\n" : : [desc] "m" (desc), [stack] "m" (stack));
#else
asm volatile("lea %[desc],%%eax\n"
"mov %[stack],%%esp\n"
"ljmp *(%%eax)\n" : : [desc] "m" (desc), [stack] "m" (stack));
#endif
}
#endif // ! PTLSIM_FORCE_32BIT_ONLY
declare_syscall0(__NR_pause, void, syscall_pause);
declare_syscall2(__NR_munmap, int, syscall_munmap, void*, start, size_t, length);
declare_syscall2(__NR_fstat, int, syscall_fstat, int, fd, struct stat*, buf);
declare_syscall3(__NR_write, ssize_t, syscall_write, int, fd, const void*, buf, size_t, count);
declare_syscall3(__NR_lseek, unsigned long, syscall_lseek, int, fd, unsigned long, offset, int, whence);
declare_syscall3(__NR_open, int, syscall_open, const char*, filename, int, flags, int, mode);
declare_syscall3(__NR_mprotect, int, syscall_mprotect, const void*, addr, size_t, len, int, prot);
declare_syscall1(__NR_exit, void, syscall_exit, int, status);
declare_syscall1(__NR_close, void, syscall_close, int, status);
#ifdef __x86_64__
declare_syscall6(__NR_mmap, void*, syscall_mmap, void*, start, size_t, length, int, prot, int, flags, int, fd, unsigned long, offset);
#else // 32-bit
// We use mmap2() instead of the historical mmap() because mmap2() has a nice calling convention:
declare_syscall6(__NR_mmap2, void*, syscall_mmap2, void*, start, size_t, length, int, prot, int, flags, int, fd, unsigned long, pgoff);
void* syscall_mmap(void* start, size_t length, int prot, int flags, int fd, unsigned long offset) {
return syscall_mmap2(start, length, prot, flags, fd, offset >> log2(PAGE_SIZE));
}
#endif
#ifdef __x86_64__
#define ptlsim_loader_thunk_name ptlsim_loader_thunk_64bit
#define Elf_Ehdr Elf64_Ehdr
#define Elf_Phdr Elf64_Phdr
#else // 32-bit
#define ptlsim_loader_thunk_name ptlsim_loader_thunk_32bit
// NOTE: PTLsim is ALWAYS 64-bit image
#define Elf_Ehdr Elf64_Ehdr
#define Elf_Phdr Elf64_Phdr
//#define Elf_Ehdr Elf32_Ehdr
//#define Elf_Phdr Elf32_Phdr
#endif // 32-bit
extern "C" void ptlsim_loader_thunk_name(LoaderInfo* info);
#define PTLSIM_THUNK_PAGE 0x10000
#ifdef PTLSIM_FORCE_32BIT_ONLY
typedef Elf32_Ehdr PTLsim_Elf_Ehdr;
typedef Elf32_Phdr PTLsim_Elf_Phdr;
#else
typedef Elf64_Ehdr PTLsim_Elf_Ehdr;
typedef Elf64_Phdr PTLsim_Elf_Phdr;
#endif
void ptlsim_loader_thunk_name(LoaderInfo* info) {
if (info->initialize) {
byte* loader_temp_code = (byte*)PTLSIM_THUNK_PAGE;
info->initialize = 0;
byte* p = (byte*)syscall_mmap(loader_temp_code, PAGE_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0);
if (p != loader_temp_code) syscall_exit(240);
byte* loader_at_entry = (byte*)(Waddr)info->origrip;
foreach (i, LOADER_THUNK_SIZE) loader_temp_code[i] = loader_at_entry[i];
typedef void (*loader_func_t)(LoaderInfo* info);
loader_func_t func = (loader_func_t)loader_temp_code;
func(info);
}
byte* loader_at_entry = (byte*)(Waddr)info->origrip;
int rc = syscall_mprotect(floorptr(loader_at_entry, PAGE_SIZE), 2*PAGE_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC);
if (rc) syscall_exit(249);
foreach (i, LOADER_THUNK_SIZE) loader_at_entry[i] = info->saved_thunk[i];
int fd = syscall_open(info->ptlsim_filename, O_RDONLY, 0);
if (fd < 0) syscall_exit(250);
struct stat sd;
rc = syscall_fstat(fd, &sd);
if (rc < 0) syscall_exit(251);
void* temp = (void*)syscall_mmap(0, PAGE_SIZE, PROT_READ, MAP_PRIVATE, fd, 0);
PTLsim_Elf_Ehdr* ehdr = (PTLsim_Elf_Ehdr*)temp;
PTLsim_Elf_Phdr* phdr = (PTLsim_Elf_Phdr*)(((byte*)ehdr) + ehdr->e_phoff);
W64 phdr_vaddr, phdr_filesz, phdr_memsz, phdr_offset;
W64 image_base = floor(phdr->p_vaddr, PAGE_SIZE);
while (phdr->p_type == PT_LOAD) {
phdr_vaddr = floor(phdr->p_vaddr, PAGE_SIZE);
phdr_filesz = phdr->p_filesz + (phdr->p_vaddr % PAGE_SIZE);
phdr_offset = floor(phdr->p_offset, PAGE_SIZE);
phdr_memsz = phdr->p_memsz + (phdr->p_vaddr % PAGE_SIZE);
byte* baseaddr = (byte*)syscall_mmap((void*)(Waddr)phdr_vaddr, ceil(phdr_filesz, PAGE_SIZE), PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED, fd, phdr_offset);
if ((Waddr)baseaddr != phdr_vaddr) { syscall_exit(253); }
phdr++;
}
phdr--;
// Zero-fill remainder of page
byte* p = (byte*)(Waddr)(phdr_vaddr + phdr_filesz);
byte* bssp = (byte*)(Waddr)ceil(phdr_vaddr + phdr_filesz, PAGE_SIZE);
while (p < bssp) *p++ = 0;
byte* endp = (byte*)(Waddr)ceil(phdr_vaddr + phdr_memsz, PAGE_SIZE);
// Map zero pages for remainder of segment
byte* bssaddr = (byte*)syscall_mmap(bssp, endp - bssp, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0);
if (bssaddr != bssp) syscall_exit(254);
// ELF header can now be accessed at base of PTLsim image:
ehdr = (PTLsim_Elf_Ehdr*)(Waddr)image_base;
void* func = (void*)(Waddr)ehdr->e_entry;
// Patch PTLsim ELF header's e_entry field with original rip so we can get at it later
ehdr->e_entry = info->origrip;
// Patch PTLsim ELF header's e_machine field so we know what ISA (IA32 or x86-64) the
// target address space originally used before we switched to PTLsim mode.
#ifdef __x86_64__
ehdr->e_machine = EM_X86_64;
#else
ehdr->e_machine = EM_386;
#endif
// Tell PTLsim it's running inside of target process address space now:
ehdr->e_type = ET_PTLSIM;
// Update the PTLsim version
ehdr->e_version = sd.st_mtime;
syscall_munmap(temp, PAGE_SIZE);
syscall_close(fd);
switch_stack_and_jump(func, (void*)(Waddr)info->origrsp, true);
}