]> git.saurik.com Git - cycript.git/blob - Mach/Inject.cpp
a2c5f045c3abee148259ec3d255c43596f1c38cb
[cycript.git] / Mach / Inject.cpp
1 #include <dlfcn.h>
2 #include <mach/mach.h>
3
4 extern "C" {
5 #include <mach-o/nlist.h>
6 }
7
8 #include <cstdio>
9 #include <pthread.h>
10 #include <unistd.h>
11
12 #include "Baton.hpp"
13 #include "Exception.hpp"
14 #include "Pooling.hpp"
15 #include "Trampoline.t.hpp"
16
17 extern "C" void _pthread_set_self(pthread_t);
18
19 template <typename Type_>
20 static void nlset(Type_ &function, struct nlist *nl, size_t index) {
21 struct nlist &name(nl[index]);
22 uintptr_t value(name.n_value);
23 if ((name.n_desc & N_ARM_THUMB_DEF) != 0)
24 value |= 0x00000001;
25 function = reinterpret_cast<Type_>(value);
26 }
27
28 void InjectLibrary(pid_t pid) {
29 // XXX: break this into the build environment
30 const char *library("/usr/lib/libcycript.dylib");
31
32 static const size_t Stack_(8 * 1024);
33 size_t length(strlen(library) + 1), depth(sizeof(Baton) + length);
34 depth = (depth + sizeof(uintptr_t) + 1) / sizeof(uintptr_t) * sizeof(uintptr_t);
35
36 CYPool pool;
37 uint8_t *local(reinterpret_cast<uint8_t *>(apr_palloc(pool, depth)));
38 Baton *baton(reinterpret_cast<Baton *>(local));
39
40 struct nlist nl[2];
41 memset(nl, 0, sizeof(nl));
42 nl[0].n_un.n_name = (char *) "__pthread_set_self";
43 nlist("/usr/lib/libSystem.B.dylib", nl);
44 nlset(baton->_pthread_set_self, nl, 0);
45
46 baton->pthread_create = &pthread_create;
47 baton->pthread_join = &pthread_join;
48
49 baton->dlopen = &dlopen;
50 baton->dlsym = &dlsym;
51
52 baton->mach_thread_self = &mach_thread_self;
53 baton->thread_terminate = &thread_terminate;
54
55 baton->pid = getpid();
56 memcpy(baton->library, library, length);
57
58 vm_size_t size(depth + Stack_);
59
60 mach_port_t self(mach_task_self()), task;
61 _krncall(task_for_pid(self, pid, &task));
62
63 vm_address_t data;
64 _krncall(vm_allocate(task, &data, size, true));
65 vm_address_t stack(data + depth);
66 vm_write(task, data, reinterpret_cast<vm_address_t>(baton), depth);
67
68 vm_address_t code;
69 _krncall(vm_allocate(task, &code, sizeof(Trampoline_), true));
70 vm_write(task, code, reinterpret_cast<vm_address_t>(Trampoline_), sizeof(Trampoline_));
71 _krncall(vm_protect(task, code, sizeof(Trampoline_), false, VM_PROT_READ | VM_PROT_EXECUTE));
72
73 thread_act_t thread;
74 _krncall(thread_create(task, &thread));
75
76 thread_state_flavor_t flavor;
77 mach_msg_type_number_t count;
78
79 #if defined(__arm__)
80 arm_thread_state_t state;
81 flavor = ARM_THREAD_STATE;
82 count = ARM_THREAD_STATE_COUNT;
83 #else
84 #error XXX: implement
85 #endif
86
87 memset(&state, 0, sizeof(state));
88
89 mach_msg_type_number_t read(count);
90 _krncall(thread_get_state(thread, flavor, reinterpret_cast<thread_state_t>(&state), &read));
91 _assert(count == count);
92
93 #if defined(__arm__)
94 state.r[0] = data;
95 state.r[1] = RTLD_LAZY | RTLD_GLOBAL;
96 state.sp = stack + Stack_;
97 state.pc = code;
98
99 if ((state.pc & 0x1) != 0) {
100 state.pc &= ~0x1;
101 state.cpsr |= 0x20;
102 }
103 #else
104 #error XXX: implement
105 #endif
106
107 _krncall(thread_set_state(thread, flavor, reinterpret_cast<thread_state_t>(&state), count));
108 _krncall(thread_resume(thread));
109
110 _krncall(mach_port_deallocate(self, task));
111 }