10
10
#include <util.h>
11
11
#include <errno.h>
12
12
#include <syslog.h>
13
+ #include <mach-o/dyld.h>
14
+ #include "../_external/modules/litehook/src/litehook.h"
15
+
13
16
kern_return_t bootstrap_parent (mach_port_t bp , mach_port_t * parent_port );
14
17
void __fork (void );
15
18
@@ -160,6 +163,31 @@ int forkpty_reimpl(int *aprimary, char *name, struct termios *termp, struct wins
160
163
return (pid );
161
164
}
162
165
166
+ bool fork_rebind_filter (const mach_header * header )
167
+ {
168
+ Dl_info info ;
169
+ dladdr (header , & info );
170
+
171
+ const char * path = info .dli_fname ;
172
+ if (_dyld_shared_cache_contains_path (path )) {
173
+ // Ignore all dsc images that don't have fork or __fork pointers in their GOTs
174
+ // Just reading a GOT faults it in, which increases the resident memory
175
+ // By skipping these we save a fuck ton of memory and avoid issues with jetsam
176
+ // Unfortunately this is hardcoded since you cannot know them without reading their GOTs
177
+ // Since this code is only used on iOS 15, it should be fine
178
+ if (!strcmp (path , "/usr/lib/system/libsystem_c.dylib" ) ||
179
+ !strcmp (path , "/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration" ) ||
180
+ !strcmp (path , "/System/Library/Frameworks/FileProvider.framework/FileProvider" ) ||
181
+ !strcmp (path , "/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore" ) ||
182
+ !strcmp (path , "/System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport" )) {
183
+ return true;
184
+ }
185
+ return false;
186
+ }
187
+
188
+ return true;
189
+ }
190
+
163
191
bool fork_reimpl_init (void * fork_ptr )
164
192
{
165
193
if (!fork_ptr ) return false;
@@ -169,9 +197,9 @@ bool fork_reimpl_init(void *fork_ptr)
169
197
void * systemhookHandle = dlopen ("systemhook.dylib" , RTLD_NOLOAD );
170
198
if (!systemhookHandle ) return false;
171
199
172
- kern_return_t (* litehook_rebind_symbol_globally )( void * source , void * target ) = dlsym (systemhookHandle , "litehook_rebind_symbol_globally " );
200
+ kern_return_t (* litehook_rebind_symbol )( const mach_header * targetHeader , void * replacee , void * replacement , bool ( * exceptionFilter )( const mach_header * header )) = dlsym (systemhookHandle , "litehook_rebind_symbol " );
173
201
void * (* litehook_find_dsc_symbol )(const char * imagePath , const char * symbolName ) = dlsym (systemhookHandle , "litehook_find_dsc_symbol" );
174
- if (!litehook_rebind_symbol_globally || !litehook_find_dsc_symbol ) return false;
202
+ if (!litehook_rebind_symbol || !litehook_find_dsc_symbol ) return false;
175
203
176
204
// The v2 functions take one argument, but we can still store them in the same pointer since the argument will just be discarded if the non v2 implementation is used
177
205
// In practice, the v2 implementation should always exist, since we're not dealing with super old versions, so all of this doesn't matter too much
@@ -180,11 +208,11 @@ bool fork_reimpl_init(void *fork_ptr)
180
208
_libSystem_atfork_parent = litehook_find_dsc_symbol (libcpath , "__libSystem_atfork_parent_v2" ) ?: litehook_find_dsc_symbol (libcpath , "__libSystem_atfork_parent" );
181
209
_libSystem_atfork_child = litehook_find_dsc_symbol (libcpath , "__libSystem_atfork_child_v2" ) ?: litehook_find_dsc_symbol (libcpath , "__libSystem_atfork_child" );
182
210
183
- litehook_rebind_symbol_globally ( (void * )__fork , (void * )__fork_ptr );
184
- litehook_rebind_symbol_globally ( (void * )fork , (void * )fork_reimpl );
185
- litehook_rebind_symbol_globally ( (void * )vfork , (void * )vfork_reimpl );
186
- litehook_rebind_symbol_globally ( (void * )daemon , (void * )daemon_reimpl );
187
- litehook_rebind_symbol_globally ( (void * )forkpty , (void * )forkpty_reimpl );
211
+ litehook_rebind_symbol ( LITEHOOK_REBIND_GLOBAL , (void * )__fork , (void * )__fork_ptr , fork_rebind_filter );
212
+ litehook_rebind_symbol ( LITEHOOK_REBIND_GLOBAL , (void * )fork , (void * )fork_reimpl , fork_rebind_filter );
213
+ litehook_rebind_symbol ( LITEHOOK_REBIND_GLOBAL , (void * )vfork , (void * )vfork_reimpl , fork_rebind_filter );
214
+ litehook_rebind_symbol ( LITEHOOK_REBIND_GLOBAL , (void * )daemon , (void * )daemon_reimpl , fork_rebind_filter );
215
+ litehook_rebind_symbol ( LITEHOOK_REBIND_GLOBAL , (void * )forkpty , (void * )forkpty_reimpl , fork_rebind_filter );
188
216
189
217
return true;
190
218
}
0 commit comments