]> git.saurik.com Git - cycript.git/commitdiff
Correct all blocking 32/64-bit incompatibilities.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 23 Jun 2013 00:24:30 +0000 (17:24 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 23 Jun 2013 01:14:50 +0000 (18:14 -0700)
Baton.hpp
Console.cpp
Handler.mm
Mach/Inject.cpp

index 86078939468f627718f3b6453cfcbda44bf1fc99..48d103d6afa54d0d5bf34215cce695eff3aa48c0 100644 (file)
--- a/Baton.hpp
+++ b/Baton.hpp
@@ -19,6 +19,8 @@
 **/
 /* }}} */
 
+#include "Standard.hpp"
+
 #include <dlfcn.h>
 #include <mach/mach.h>
 #include <sys/types.h>
@@ -27,4 +29,4 @@ struct Baton {
     mach_vm_address_t dyld;
     pid_t pid;
     char library[];
-};
+} _packed;
index c2a87610698f34a2dfd0fde79623cc7fd99df59b..e955311e9ed622059e29e4ca6e52b770e2d9ed49 100644 (file)
@@ -116,7 +116,7 @@ void Setup(CYOutput &out, CYDriver &driver, CYOptions &options) {
 
 static CYUTF8String Run(CYPool &pool, int client, CYUTF8String code) {
     const char *json;
-    size_t size;
+    uint32_t size;
 
     if (client == -1) {
         mode_ = Running;
@@ -137,7 +137,7 @@ static CYUTF8String Run(CYPool &pool, int client, CYUTF8String code) {
         CYSendAll(client, code.data, code.size);
         mode_ = Waiting;
         CYRecvAll(client, &size, sizeof(size));
-        if (size == _not(size_t))
+        if (size == _not(uint32_t))
             json = NULL;
         else {
             char *temp(new(pool) char[size + 1]);
index c1e9693d30a27dab23bde9609d8317ded567969a..39624e3a08204609003955916cfe93c3db45375d 100644 (file)
@@ -89,7 +89,7 @@ struct CYClient :
             dispatch = false;
 
         for (;;) {
-            size_t size;
+            uint32_t size;
             if (!CYRecvAll(socket_, &size, sizeof(size)))
                 return;
 
@@ -107,7 +107,7 @@ struct CYClient :
             const char *json;
             if (parser.parse() != 0 || !driver.errors_.empty()) {
                 json = NULL;
-                size = _not(size_t);
+                size = _not(uint32_t);
             } else {
                 NSAutoreleasePool *ar = [[NSAutoreleasePool alloc] init];
 
@@ -125,7 +125,7 @@ struct CYClient :
                 else
                     [client execute:value];
                 json = execute.data_;
-                size = json == NULL ? _not(size_t) : strlen(json);
+                size = json == NULL ? _not(uint32_t) : strlen(json);
 
                 [ar release];
             }
index a6dcf9f912e885441a18607bf498fca0e8e25092..c629939610469954275a80094e52b64bbc226fe6 100644 (file)
@@ -20,7 +20,9 @@
 /* }}} */
 
 #include <dlfcn.h>
+
 #include <mach/mach.h>
+#include <mach/mach_vm.h>
 
 #include <mach/machine/thread_status.h>
 
 void InjectLibrary(pid_t pid) {
     const char *library(CY_LIBRARY);
 
-    static const size_t Stack_(8 * 1024);
-    size_t length(strlen(library) + 1), depth(sizeof(Baton) + length);
-    depth = (depth + sizeof(uintptr_t) + 1) / sizeof(uintptr_t) * sizeof(uintptr_t);
-
-    CYPool pool;
-    uint8_t *local(pool.malloc<uint8_t>(depth));
-    Baton *baton(reinterpret_cast<Baton *>(local));
-
-    baton->pid = getpid();
-    memcpy(baton->library, library, length);
-
     mach_port_t self(mach_task_self()), task;
     _krncall(task_for_pid(self, pid, &task));
 
@@ -57,14 +48,6 @@ void InjectLibrary(pid_t pid) {
     _krncall(task_info(task, TASK_DYLD_INFO, reinterpret_cast<task_info_t>(&info), &count));
     _assert(count == TASK_DYLD_INFO_COUNT);
     _assert(info.all_image_info_addr != 0);
-    baton->dyld = info.all_image_info_addr;
-
-    vm_size_t size(depth + Stack_);
-    vm_address_t stack;
-    _krncall(vm_allocate(task, &stack, size, true));
-
-    vm_address_t data(stack + Stack_);
-    _krncall(vm_write(task, data, reinterpret_cast<vm_address_t>(baton), depth));
 
     thread_act_t thread;
     _krncall(thread_create(task, &thread));
@@ -88,16 +71,19 @@ void InjectLibrary(pid_t pid) {
     _assert(read == count);
 
     Trampoline *trampoline;
+    size_t align;
     size_t push;
 
 #if defined(__i386__) || defined(__x86_64__)
     switch (state.tsh.flavor) {
         case i386_THREAD_STATE:
             trampoline = &Trampoline_i386_;
+            align = 4;
             push = 5;
             break;
         case x86_THREAD_STATE64:
             trampoline = &Trampoline_x86_64_;
+            align = 8;
             push = 2;
             break;
         default:
@@ -105,15 +91,35 @@ void InjectLibrary(pid_t pid) {
     }
 #elif defined(__arm__)
     trampoline = &Trampoline_armv6_;
+    align = 4;
     push = 0;
 #else
     #error XXX: implement
 #endif
 
-    vm_address_t code;
-    _krncall(vm_allocate(task, &code, trampoline->size_, true));
-    _krncall(vm_write(task, code, reinterpret_cast<vm_address_t>(trampoline->data_), trampoline->size_));
-    _krncall(vm_protect(task, code, trampoline->size_, false, VM_PROT_READ | VM_PROT_EXECUTE));
+    static const size_t Stack_(8 * 1024);
+    size_t length(strlen(library) + 1), depth(sizeof(Baton) + length);
+    depth = (depth + align + 1) / align * align;
+
+    CYPool pool;
+    uint8_t *local(pool.malloc<uint8_t>(depth));
+    Baton *baton(reinterpret_cast<Baton *>(local));
+
+    baton->dyld = info.all_image_info_addr;
+    baton->pid = getpid();
+    memcpy(baton->library, library, length);
+
+    mach_vm_size_t size(depth + Stack_);
+    mach_vm_address_t stack;
+    _krncall(mach_vm_allocate(task, &stack, size, true));
+
+    mach_vm_address_t data(stack + Stack_);
+    _krncall(mach_vm_write(task, data, reinterpret_cast<mach_vm_address_t>(baton), depth));
+
+    mach_vm_address_t code;
+    _krncall(mach_vm_allocate(task, &code, trampoline->size_, true));
+    _krncall(mach_vm_write(task, code, reinterpret_cast<mach_vm_address_t>(trampoline->data_), trampoline->size_));
+    _krncall(mach_vm_protect(task, code, trampoline->size_, false, VM_PROT_READ | VM_PROT_EXECUTE));
 
     uint32_t frame[push];
     if (sizeof(frame) != 0)
@@ -148,7 +154,7 @@ void InjectLibrary(pid_t pid) {
 #endif
 
     if (sizeof(frame) != 0)
-        _krncall(vm_write(task, stack + Stack_ - sizeof(frame), reinterpret_cast<vm_address_t>(frame), sizeof(frame)));
+        _krncall(mach_vm_write(task, stack + Stack_ - sizeof(frame), reinterpret_cast<mach_vm_address_t>(frame), sizeof(frame)));
 
     _krncall(thread_set_state(thread, flavor, reinterpret_cast<thread_state_t>(&state), count));
     _krncall(thread_resume(thread));