]>
Commit | Line | Data |
---|---|---|
b3378a02 | 1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
8d7447c1 | 2 | * Copyright (C) 2009-2012 Jay Freeman (saurik) |
e91fbe93 JF |
3 | */ |
4 | ||
b3378a02 | 5 | /* GNU Lesser General Public License, Version 3 {{{ */ |
e91fbe93 | 6 | /* |
b3378a02 JF |
7 | * Cycript is free software: you can redistribute it and/or modify it under |
8 | * the terms of the GNU Lesser General Public License as published by the | |
9 | * Free Software Foundation, either version 3 of the License, or (at your | |
10 | * option) any later version. | |
e91fbe93 | 11 | * |
b3378a02 JF |
12 | * Cycript is distributed in the hope that it will be useful, but WITHOUT |
13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public | |
15 | * License for more details. | |
e91fbe93 | 16 | * |
b3378a02 JF |
17 | * You should have received a copy of the GNU Lesser General Public License |
18 | * along with Cycript. If not, see <http://www.gnu.org/licenses/>. | |
19 | **/ | |
e91fbe93 JF |
20 | /* }}} */ |
21 | ||
b6961e53 JF |
22 | #include <dlfcn.h> |
23 | #include <mach/mach.h> | |
24 | ||
8ad1528b | 25 | #include <mach/machine/thread_status.h> |
b6961e53 JF |
26 | |
27 | #include <cstdio> | |
28 | #include <pthread.h> | |
b166b11b | 29 | #include <unistd.h> |
b6961e53 JF |
30 | |
31 | #include "Baton.hpp" | |
32 | #include "Exception.hpp" | |
33 | #include "Pooling.hpp" | |
34 | #include "Trampoline.t.hpp" | |
35 | ||
49e976ae | 36 | extern "C" void __pthread_set_self(pthread_t); |
b6961e53 | 37 | |
b6961e53 | 38 | void InjectLibrary(pid_t pid) { |
794e88e7 | 39 | const char *library(CY_LIBRARY); |
b6961e53 JF |
40 | |
41 | static const size_t Stack_(8 * 1024); | |
42 | size_t length(strlen(library) + 1), depth(sizeof(Baton) + length); | |
43 | depth = (depth + sizeof(uintptr_t) + 1) / sizeof(uintptr_t) * sizeof(uintptr_t); | |
44 | ||
45 | CYPool pool; | |
46 | uint8_t *local(reinterpret_cast<uint8_t *>(apr_palloc(pool, depth))); | |
b6961e53 | 47 | Baton *baton(reinterpret_cast<Baton *>(local)); |
b6961e53 | 48 | |
49e976ae | 49 | baton->__pthread_set_self = &__pthread_set_self; |
c98ea90d | 50 | baton->pthread_create = &pthread_create; |
c98ea90d JF |
51 | |
52 | baton->mach_thread_self = &mach_thread_self; | |
53 | baton->thread_terminate = &thread_terminate; | |
54 | ||
95a2c7e5 | 55 | baton->dlerror = &dlerror; |
b166b11b JF |
56 | baton->dlsym = &dlsym; |
57 | ||
b166b11b JF |
58 | baton->pid = getpid(); |
59 | memcpy(baton->library, library, length); | |
60 | ||
b6961e53 JF |
61 | vm_size_t size(depth + Stack_); |
62 | ||
63 | mach_port_t self(mach_task_self()), task; | |
64 | _krncall(task_for_pid(self, pid, &task)); | |
65 | ||
7c6c5b0a JF |
66 | vm_address_t stack; |
67 | _krncall(vm_allocate(task, &stack, size, true)); | |
68 | vm_address_t data(stack + Stack_); | |
69 | ||
b6961e53 JF |
70 | vm_write(task, data, reinterpret_cast<vm_address_t>(baton), depth); |
71 | ||
b6961e53 JF |
72 | thread_act_t thread; |
73 | _krncall(thread_create(task, &thread)); | |
74 | ||
75 | thread_state_flavor_t flavor; | |
76 | mach_msg_type_number_t count; | |
7c6c5b0a | 77 | size_t push; |
b6961e53 | 78 | |
eed4f174 JF |
79 | Trampoline *trampoline; |
80 | ||
b6961e53 | 81 | #if defined(__arm__) |
8ad1528b | 82 | trampoline = &Trampoline_armv6_; |
b6961e53 | 83 | arm_thread_state_t state; |
b6961e53 JF |
84 | flavor = ARM_THREAD_STATE; |
85 | count = ARM_THREAD_STATE_COUNT; | |
7c6c5b0a | 86 | push = 0; |
eed4f174 JF |
87 | #elif defined(__i386__) |
88 | trampoline = &Trampoline_i386_; | |
7c6c5b0a JF |
89 | i386_thread_state_t state; |
90 | flavor = i386_THREAD_STATE; | |
91 | count = i386_THREAD_STATE_COUNT; | |
92 | push = 5; | |
eed4f174 JF |
93 | #elif defined(__x86_64__) |
94 | trampoline = &Trampoline_x86_64_; | |
95 | x86_thread_state64_t state; | |
96 | flavor = x86_THREAD_STATE64; | |
97 | count = x86_THREAD_STATE64_COUNT; | |
98 | push = 2; | |
b166b11b JF |
99 | #else |
100 | #error XXX: implement | |
101 | #endif | |
b6961e53 | 102 | |
eed4f174 JF |
103 | vm_address_t code; |
104 | _krncall(vm_allocate(task, &code, trampoline->size_, true)); | |
105 | vm_write(task, code, reinterpret_cast<vm_address_t>(trampoline->data_), trampoline->size_); | |
106 | _krncall(vm_protect(task, code, trampoline->size_, false, VM_PROT_READ | VM_PROT_EXECUTE)); | |
107 | ||
80ba2053 | 108 | /* |
49e976ae | 109 | printf("_ptss:%p\n", baton->__pthread_set_self); |
eed4f174 JF |
110 | printf("dlsym:%p\n", baton->dlsym); |
111 | printf("code:%zx\n", (size_t) code); | |
80ba2053 | 112 | */ |
eed4f174 JF |
113 | |
114 | uint32_t frame[push]; | |
7c6c5b0a JF |
115 | if (sizeof(frame) != 0) |
116 | memset(frame, 0, sizeof(frame)); | |
b166b11b | 117 | memset(&state, 0, sizeof(state)); |
b6961e53 | 118 | |
b166b11b JF |
119 | mach_msg_type_number_t read(count); |
120 | _krncall(thread_get_state(thread, flavor, reinterpret_cast<thread_state_t>(&state), &read)); | |
25517bc3 | 121 | _assert(read == count); |
b166b11b JF |
122 | |
123 | #if defined(__arm__) | |
8ad1528b JF |
124 | state.__r[0] = data; |
125 | state.__sp = stack + Stack_; | |
126 | state.__pc = code + trampoline->entry_; | |
b6961e53 | 127 | |
8ad1528b JF |
128 | if ((state.__pc & 0x1) != 0) { |
129 | state.__pc &= ~0x1; | |
130 | state.__cpsr |= 0x20; | |
b6961e53 | 131 | } |
eed4f174 | 132 | #elif defined(__i386__) |
7c6c5b0a JF |
133 | frame[1] = data; |
134 | ||
eed4f174 | 135 | state.__eip = code + trampoline->entry_; |
7c6c5b0a | 136 | state.__esp = stack + Stack_ - sizeof(frame); |
eed4f174 JF |
137 | #elif defined(__x86_64__) |
138 | frame[0] = 0xdeadbeef; | |
139 | state.__rdi = data; | |
140 | state.__rip = code + trampoline->entry_; | |
141 | state.__rsp = stack + Stack_ - sizeof(frame); | |
b6961e53 JF |
142 | #else |
143 | #error XXX: implement | |
144 | #endif | |
145 | ||
7c6c5b0a JF |
146 | if (sizeof(frame) != 0) |
147 | vm_write(task, stack + Stack_ - sizeof(frame), reinterpret_cast<vm_address_t>(frame), sizeof(frame)); | |
148 | ||
b166b11b | 149 | _krncall(thread_set_state(thread, flavor, reinterpret_cast<thread_state_t>(&state), count)); |
b6961e53 JF |
150 | _krncall(thread_resume(thread)); |
151 | ||
b166b11b | 152 | _krncall(mach_port_deallocate(self, task)); |
b6961e53 | 153 | } |