Magisk/native/jni/utils
topjohnwu 49f259065d Introduce new sepolicy injection mechanism
In the current implementation, Magisk will either have to recreate
all early mount implementation (for legacy SAR and rootfs devices) or
delegate early mount to first stage init (for 2SI devices) to access
required partitions for loading sepolicy. It then has to recreate the
split sepolicy loading implementation in-house, apply patches, then
dump the compiled + patched policies into monolithic format somewhere.
Finally, it patches the original init to force it to load the sepolicy
file we just created.

With the increasing complexity involved in early mount and split
sepolicy (there is even APEX module involved in the future!),
it is about time to rethink Magisk's sepolicy strategy as rebuilding
init's functionality is not scalable and easy to maintain.

In this commit, instead of building sepolicy ourselves, we mock
selinuxfs with FIFO files connected to a pre-init daemon, waiting
for the actual init process to directly write the sepolicy file into
MagiskInit. We then patch the file and load it into the kernel. Some
FIFO tricks has to be used to hijack the original init process's
control flow and prevent race conditions, details are directly in the
comments in code.

At the moment, only system-as-root (read-only root) support is added.
Support for legacy rootfs devices will come with a follow up commit.
2022-03-16 00:31:55 -07:00
..
compat Introduce new sepolicy injection mechanism 2022-03-16 00:31:55 -07:00
include Optimize stream for full-file writes 2021-11-23 18:08:14 -08:00
Android.mk Separate libc.a hacks into its own component 2022-01-31 02:09:08 -08:00
files.cpp Introduce new sepolicy injection mechanism 2022-03-16 00:31:55 -07:00
files.hpp Introduce new sepolicy injection mechanism 2022-03-16 00:31:55 -07:00
logging.cpp Proper incremental builds 2021-09-07 19:35:28 -07:00
logging.hpp Revise logging code 2021-08-12 03:26:54 -07:00
misc.cpp Revert "Directly use getrandom system call if possible" 2022-03-02 19:50:47 -08:00
misc.hpp Mount with original option 2022-03-01 20:09:59 -08:00
missing.hpp Refactor Zygisk loading 2022-02-06 00:27:31 -08:00
new.cpp Bump to C++17 2019-01-20 00:07:58 -05:00
selinux.cpp Build on API 21 headers 2021-10-20 03:17:42 -07:00
stream.cpp Update error messages 2022-02-11 00:01:51 -08:00
xwrap.cpp Make xmmap() returns nullptr when fails 2022-02-08 00:49:47 -08:00
xwrap.hpp Rewrite UID tracking 2022-02-07 02:46:47 -08:00