Magisk/native/jni/inject
topjohnwu da723b207a Allow 3rd party code to load pre-specializing
Magisk's policy is to never allow 3rd party code to be loaded in the
zygote daemon process so we have 100% control over injection and hiding.
However, this makes it impossible for 3rd party modules to run anything
before process specialization, which includes the ability to modify the
arguments being sent to these original nativeForkAndXXX methods.

The trick here is to fork before calling the original nativeForkAndXXX
methods, and hook `fork` in libandroid_runtime.so to skip the next
invocation; basically, we're moving the responsibility of process
forking to our own hands.
2021-01-10 01:25:30 -08:00
..
entry.cpp Add JNI hooks to critical methods 2021-01-08 05:25:44 -08:00
hook.cpp Allow 3rd party code to load pre-specializing 2021-01-10 01:25:30 -08:00
inject.hpp Update pre/post hooks implementation 2021-01-09 17:41:25 -08:00
jni_hooks.hpp Allow 3rd party code to load pre-specializing 2021-01-10 01:25:30 -08:00
ptrace.cpp Add preliminary zygote code injection support 2021-01-06 22:21:17 -08:00
ptrace.hpp Add preliminary zygote code injection support 2021-01-06 22:21:17 -08:00
utils.cpp Add preliminary zygote code injection support 2021-01-06 22:21:17 -08:00