Skip to content

Commit bbadac5

Browse files
committed
Minor code layout / comments improvements
1 parent 797d7bb commit bbadac5

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

BaseBin/systemhook/src/main.c

+12-13
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ int dyld_hook_routine(void **dyld, int idx, void *hook, void **orig, uint16_t pa
7575

7676
// All dlopen/dlsym calls use __builtin_return_address(0) to determine what library called it
7777
// Since we hook them, if we just call the original function on our own, the return address will always point to systemhook
78-
// Therefore we must ensure the call to the original function is a tail call,
79-
// which ensures that the stack and lr are restored and the compiler turns the call into a direct branch
78+
// Therefore we must ensure the call to the original function is a tail call, which ensures that the stack and lr are restored and the compiler turns the call into a direct branch
8079
// This is done via __attribute__((musttail)), this way __builtin_return_address(0) will point to the original calling library instead of systemhook
8180

8281
void* (*dyld_dlopen_orig)(void *dyld, const char* path, int mode);
@@ -296,18 +295,18 @@ __attribute__((constructor)) static void initializer(void)
296295
// Apply posix_spawn / execve hooks
297296
if (__builtin_available(iOS 16.0, *)) {
298297
litehook_hook_function(__posix_spawn, __posix_spawn_hook);
299-
litehook_hook_function(__execve, __execve_hook);
298+
litehook_hook_function(__execve, __execve_hook);
300299
}
301300
else {
302301
// On iOS 15 there is a way to hook posix_spawn and execve without doing instruction replacements
303-
// This is fairly convinient due to instruction replacements being presumed to be the primary trigger for spinlock panics on iOS 15 arm64e
302+
// This is fairly convenient due to instruction replacements being presumed to be the primary trigger for spinlock panics on iOS 15 arm64e
304303
// Unfortunately Apple decided to remove these in iOS 16 :( Doesn't matter too much though because spinlock panics are fixed there
305304

306305
void **posix_spawn_with_filter = litehook_find_dsc_symbol("/usr/lib/system/libsystem_kernel.dylib", "_posix_spawn_with_filter");
307-
*posix_spawn_with_filter = __posix_spawn_hook_with_filter;
306+
void **execve_with_filter = litehook_find_dsc_symbol("/usr/lib/system/libsystem_kernel.dylib", "_execve_with_filter");
308307

309-
void **execve_with_filter = litehook_find_dsc_symbol("/usr/lib/system/libsystem_kernel.dylib", "_execve_with_filter");
310-
*execve_with_filter = __execve_hook;
308+
*posix_spawn_with_filter = __posix_spawn_hook_with_filter;
309+
*execve_with_filter = __execve_hook;
311310
}
312311

313312
// Initialize stuff neccessary for sandbox_apply hook
@@ -317,11 +316,11 @@ __attribute__((constructor)) static void initializer(void)
317316
// Apply dyld hooks
318317
void ***gDyldPtr = litehook_find_dsc_symbol("/usr/lib/system/libdyld.dylib", "__ZN5dyld45gDyldE");
319318
if (gDyldPtr) {
320-
dyld_hook_routine(*gDyldPtr, 14, (void *)&dyld_dlopen_hook, (void **)&dyld_dlopen_orig, 0xBF31);
321-
dyld_hook_routine(*gDyldPtr, 17, (void *)&dyld_dlsym_hook, (void **)&dyld_dlsym_orig, 0x839D);
319+
dyld_hook_routine(*gDyldPtr, 14, (void *)&dyld_dlopen_hook, (void **)&dyld_dlopen_orig, 0xBF31);
320+
dyld_hook_routine(*gDyldPtr, 17, (void *)&dyld_dlsym_hook, (void **)&dyld_dlsym_orig, 0x839D);
322321
dyld_hook_routine(*gDyldPtr, 18, (void *)&dyld_dlopen_preflight_hook, (void **)&dyld_dlopen_preflight_orig, 0xB1B6);
323-
dyld_hook_routine(*gDyldPtr, 97, (void *)&dyld_dlopen_from_hook, (void **)&dyld_dlopen_from_orig, 0xD48C);
324-
dyld_hook_routine(*gDyldPtr, 98, (void *)&dyld_dlopen_audited_hook, (void **)&dyld_dlopen_audited_orig, 0xD2A5);
322+
dyld_hook_routine(*gDyldPtr, 97, (void *)&dyld_dlopen_from_hook, (void **)&dyld_dlopen_from_orig, 0xD48C);
323+
dyld_hook_routine(*gDyldPtr, 98, (void *)&dyld_dlopen_audited_hook, (void **)&dyld_dlopen_audited_orig, 0xD2A5);
325324
}
326325

327326
#ifdef __arm64e__
@@ -333,7 +332,7 @@ __attribute__((constructor)) static void initializer(void)
333332
#endif
334333

335334
if (load_executable_path() == 0) {
336-
// Load rootlesshooks and watchdoghook if neccessary
335+
// Load rootlesshooks / watchdoghook when neccessary
337336
if (!strcmp(gExecutablePath, "/usr/sbin/cfprefsd") ||
338337
!strcmp(gExecutablePath, "/System/Library/CoreServices/SpringBoard.app/SpringBoard") ||
339338
!strcmp(gExecutablePath, "/usr/libexec/lsd")) {
@@ -354,7 +353,7 @@ __attribute__((constructor)) static void initializer(void)
354353

355354
#ifndef __arm64e__
356355
// On arm64, writing to executable pages removes CS_VALID from the csflags of the process
357-
// These hooks are neccessary to get the system to behave with this
356+
// These hooks are neccessary to get the system to behave with this (since multiple system APIs check for CS_VALID and produce failures if it's not set)
358357
// They are ugly but needed
359358
litehook_hook_function(csops, csops_hook);
360359
litehook_hook_function(csops_audittoken, csops_audittoken_hook);

0 commit comments

Comments
 (0)