Skip to content

Commit 5e36ba8

Browse files
committed
Update litehook, add forkfix filter to prevent memory usage increase
1 parent cfb4448 commit 5e36ba8

File tree

2 files changed

+36
-8
lines changed

2 files changed

+36
-8
lines changed

BaseBin/forkfix/src/reimpl.c

+35-7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
#include <util.h>
1111
#include <errno.h>
1212
#include <syslog.h>
13+
#include <mach-o/dyld.h>
14+
#include "../_external/modules/litehook/src/litehook.h"
15+
1316
kern_return_t bootstrap_parent(mach_port_t bp, mach_port_t *parent_port);
1417
void __fork(void);
1518

@@ -160,6 +163,31 @@ int forkpty_reimpl(int *aprimary, char *name, struct termios *termp, struct wins
160163
return (pid);
161164
}
162165

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+
163191
bool fork_reimpl_init(void *fork_ptr)
164192
{
165193
if (!fork_ptr) return false;
@@ -169,9 +197,9 @@ bool fork_reimpl_init(void *fork_ptr)
169197
void *systemhookHandle = dlopen("systemhook.dylib", RTLD_NOLOAD);
170198
if (!systemhookHandle) return false;
171199

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");
173201
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;
175203

176204
// 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
177205
// 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)
180208
_libSystem_atfork_parent = litehook_find_dsc_symbol(libcpath, "__libSystem_atfork_parent_v2") ?: litehook_find_dsc_symbol(libcpath, "__libSystem_atfork_parent");
181209
_libSystem_atfork_child = litehook_find_dsc_symbol(libcpath, "__libSystem_atfork_child_v2") ?: litehook_find_dsc_symbol(libcpath, "__libSystem_atfork_child");
182210

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);
188216

189217
return true;
190218
}

0 commit comments

Comments
 (0)