You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: BaseBin/systemhook/src/main.c
+12-13
Original file line number
Diff line number
Diff line change
@@ -75,8 +75,7 @@ int dyld_hook_routine(void **dyld, int idx, void *hook, void **orig, uint16_t pa
75
75
76
76
// All dlopen/dlsym calls use __builtin_return_address(0) to determine what library called it
77
77
// 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
80
79
// This is done via __attribute__((musttail)), this way __builtin_return_address(0) will point to the original calling library instead of systemhook
// 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)
0 commit comments