]>
Commit | Line | Data |
---|---|---|
b3378a02 JF |
1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
2 | * Copyright (C) 2009-2010 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 | #define _PTHREAD_ATTR_T |
23 | #include <pthread_internals.h> | |
24 | ||
eed4f174 | 25 | #include "Standard.hpp" |
b6961e53 JF |
26 | #include "Baton.hpp" |
27 | ||
eed4f174 JF |
28 | template <typename Type_> |
29 | static _finline void dlset(Baton *baton, Type_ &function, const char *name, void *handle = RTLD_DEFAULT) { | |
30 | function = reinterpret_cast<Type_>(baton->dlsym(handle, name)); | |
95a2c7e5 JF |
31 | if (function == NULL) |
32 | baton->dlerror(); | |
eed4f174 JF |
33 | } |
34 | ||
7cdfdc9f JF |
35 | #define Framework(framework) \ |
36 | "/System/Library/Frameworks/" #framework ".framework/" #framework | |
37 | ||
49e976ae | 38 | void *Routine(void *arg) { |
eed4f174 JF |
39 | Baton *baton(reinterpret_cast<Baton *>(arg)); |
40 | ||
40b1517d JF |
41 | int (*pthread_detach)(pthread_t); |
42 | dlset(baton, pthread_detach, "pthread_detach"); | |
43 | ||
44 | pthread_t (*pthread_self)(); | |
45 | dlset(baton, pthread_self, "pthread_self"); | |
46 | ||
47 | pthread_detach(pthread_self()); | |
48 | ||
eed4f174 JF |
49 | void *(*dlopen)(const char *, int); |
50 | dlset(baton, dlopen, "dlopen"); | |
51 | ||
5d7cc6d5 | 52 | if (baton->dlsym(RTLD_DEFAULT, "JSEvaluateScript") == NULL) |
7cdfdc9f | 53 | dlopen(Framework(JavaScriptCore), RTLD_GLOBAL | RTLD_LAZY); |
5d7cc6d5 JF |
54 | |
55 | void *(*objc_getClass)(const char *); | |
56 | dlset(baton, objc_getClass, "objc_getClass"); | |
57 | ||
58 | if (objc_getClass("WebUndefined") == NULL) | |
7cdfdc9f | 59 | dlopen(Framework(WebKit), RTLD_GLOBAL | RTLD_LAZY); |
5d7cc6d5 | 60 | |
eed4f174 | 61 | void *handle(dlopen(baton->library, RTLD_LAZY | RTLD_LOCAL)); |
95a2c7e5 JF |
62 | if (handle == NULL) { |
63 | baton->dlerror(); | |
64 | return NULL; | |
65 | } | |
eed4f174 JF |
66 | |
67 | void (*CYHandleServer)(pid_t); | |
68 | dlset(baton, CYHandleServer, "CYHandleServer", handle); | |
6e51aaf8 JF |
69 | if (CYHandleServer == NULL) { |
70 | baton->dlerror(); | |
71 | return NULL; | |
72 | } | |
eed4f174 | 73 | |
6e51aaf8 | 74 | CYHandleServer(baton->pid); |
95a2c7e5 | 75 | return NULL; |
eed4f174 JF |
76 | } |
77 | ||
49e976ae JF |
78 | static void $bzero(void *data, size_t size) { |
79 | char *bytes(reinterpret_cast<char *>(data)); | |
80 | for (size_t i(0); i != size; ++i) | |
81 | bytes[i] = 0; | |
82 | } | |
83 | ||
84 | extern "C" void Start(Baton *baton) { | |
85 | struct _pthread self; | |
86 | $bzero(&self, sizeof(self)); | |
87 | ||
88 | // this code comes from _pthread_set_self | |
89 | self.tsd[0] = &self; | |
90 | baton->__pthread_set_self(&self); | |
eed4f174 | 91 | |
c98ea90d JF |
92 | //int (*pthread_create)(pthread_t *, const pthread_attr_t *, void *(*)(void *), void *); |
93 | //dlset(baton, pthread_create, "pthread_create"); | |
b6961e53 JF |
94 | |
95 | pthread_t thread; | |
c98ea90d | 96 | baton->pthread_create(&thread, NULL, &Routine, baton); |
b6961e53 | 97 | |
c98ea90d JF |
98 | //mach_port_t (*mach_thread_self)(); |
99 | //dlset(baton, mach_thread_self, "mach_thread_self"); | |
eed4f174 | 100 | |
c98ea90d JF |
101 | //kern_return_t (*thread_terminate)(thread_act_t); |
102 | //dlset(baton, thread_terminate, "thread_terminate"); | |
49e976ae | 103 | |
c98ea90d | 104 | baton->thread_terminate(baton->mach_thread_self()); |
b6961e53 | 105 | } |