Magisk/native/jni/Android.mk

164 lines
3.1 KiB
Makefile
Raw Normal View History

2016-12-29 23:06:19 +01:00
LOCAL_PATH := $(call my-dir)
2017-07-31 17:47:50 +02:00
########################
# Binaries
########################
2018-05-12 21:04:40 +02:00
ifdef B_MAGISK
2017-04-04 21:44:13 +02:00
include $(CLEAR_VARS)
LOCAL_MODULE := magisk
LOCAL_STATIC_LIBRARIES := libnanopb libsystemproperties libutils
2020-04-07 07:45:08 +02:00
LOCAL_C_INCLUDES := jni/include
2017-04-04 21:44:13 +02:00
LOCAL_SRC_FILES := \
2019-01-30 09:35:07 +01:00
core/applets.cpp \
core/magisk.cpp \
core/daemon.cpp \
core/bootstages.cpp \
core/socket.cpp \
core/db.cpp \
2019-02-16 02:45:05 +01:00
core/scripting.cpp \
core/restorecon.cpp \
core/module.cpp \
2018-11-01 18:23:12 +01:00
magiskhide/magiskhide.cpp \
magiskhide/proc_monitor.cpp \
magiskhide/hide_utils.cpp \
2019-05-26 11:47:57 +02:00
magiskhide/hide_policy.cpp \
2018-11-03 04:56:15 +01:00
resetprop/persist_properties.cpp \
resetprop/resetprop.cpp \
2018-11-04 09:38:06 +01:00
su/su.cpp \
su/connect.cpp \
su/pts.cpp \
su/su_daemon.cpp
2017-04-04 21:44:13 +02:00
LOCAL_LDLIBS := -llog
include $(BUILD_EXECUTABLE)
2017-12-04 08:16:41 +01:00
endif
include $(CLEAR_VARS)
ifdef B_INIT
LOCAL_MODULE := magiskinit
BB_INIT := 1
else ifdef B_INIT64
LOCAL_MODULE := magiskinit64
LOCAL_CPPFLAGS += -DUSE_64BIT
BB_INIT := 1
endif
ifdef BB_INIT
LOCAL_STATIC_LIBRARIES := libsepol libxz libutils
2017-11-09 17:54:54 +01:00
LOCAL_C_INCLUDES := \
jni/include \
2018-06-13 18:59:08 +02:00
out \
2020-04-07 07:45:08 +02:00
out/$(TARGET_ARCH_ABI)
2017-11-09 17:54:54 +01:00
LOCAL_SRC_FILES := \
2019-05-27 09:29:43 +02:00
init/init.cpp \
2019-12-06 18:02:34 +01:00
init/mount.cpp \
init/rootdir.cpp \
2019-05-27 09:29:43 +02:00
init/getinfo.cpp \
Introduce new boot flow to handle SAR 2SI The existing method for handling legacy SAR is: 1. Mount /sbin tmpfs overlay 2. Dump all patched/new files into /sbin 3. Magic mount root dir and re-exec patched stock init With Android 11 removing the /sbin folder, it is quite obvious that things completely break down right in step 1. To overcome this issue, we have to find a way to swap out the init binary AFTER we re-exec stock init. This is where 2SI comes to rescue! 2SI normal boot procedure is: 1st stage -> Load sepolicy -> 2nd stage -> boot continue... 2SI Magisk boot procedure is: MagiskInit 1st stage -> Stock 1st stage -> MagiskInit 2nd Stage -> -> Stock init load sepolicy -> Stock 2nd stage -> boot continue... As you can see, the trick is to make stock 1st stage init re-exec back into MagiskInit so we can do our setup. This is possible by manipulating some ramdisk files on initramfs based 2SI devices (old ass non SAR devices AND super modern devices like Pixel 3/4), but not possible on device that are stuck using legacy SAR (device that are not that modern but not too old, like Pixel 1/2. Fucking Google logic!!) This commit introduces a new way to intercept stock init re-exec flow: ptrace init with forked tracer, monitor PTRACE_EVENT_EXEC, then swap out the init file with bind mounts right before execv returns! Going through this flow however will lose some necessary backup files, so some bookkeeping has to be done by making the tracer hold these files in memory and act as a daemon. 2nd stage MagiskInit will ack the daemon to release these files at the correct time. It just works™ ¯\_(ツ)_/¯
2020-04-01 13:39:28 +02:00
init/twostage.cpp \
2020-04-12 14:34:56 +02:00
core/socket.cpp \
2020-05-23 09:18:25 +02:00
magiskpolicy/sepolicy.cpp \
2018-11-08 10:20:16 +01:00
magiskpolicy/magiskpolicy.cpp \
magiskpolicy/rules.cpp \
magiskpolicy/policydb.cpp \
2019-12-09 10:14:30 +01:00
magiskpolicy/statement.cpp \
magiskboot/pattern.cpp
LOCAL_LDFLAGS := -static
include $(BUILD_EXECUTABLE)
2018-05-12 21:04:40 +02:00
endif
ifdef B_BOOT
2017-07-31 17:47:50 +02:00
include $(CLEAR_VARS)
LOCAL_MODULE := magiskboot
LOCAL_STATIC_LIBRARIES := libmincrypt liblzma liblz4 libbz2 libfdt libutils
2020-04-07 07:45:08 +02:00
LOCAL_C_INCLUDES := jni/include
2017-04-04 21:44:13 +02:00
2017-07-31 17:47:50 +02:00
LOCAL_SRC_FILES := \
2018-10-25 03:08:06 +02:00
magiskboot/main.cpp \
magiskboot/bootimg.cpp \
2018-10-25 03:08:06 +02:00
magiskboot/hexpatch.cpp \
magiskboot/compress.cpp \
magiskboot/format.cpp \
magiskboot/dtb.cpp \
magiskboot/ramdisk.cpp \
magiskboot/pattern.cpp
2017-07-30 14:14:12 +02:00
LOCAL_LDLIBS := -lz
2019-02-23 23:01:44 +01:00
LOCAL_LDFLAGS := -static
2017-09-11 11:34:05 +02:00
include $(BUILD_EXECUTABLE)
2018-05-12 21:04:40 +02:00
endif
2020-01-20 17:48:52 +01:00
ifdef B_POLICY
include $(CLEAR_VARS)
LOCAL_MODULE := magiskpolicy
LOCAL_STATIC_LIBRARIES := libsepol libutils
2020-04-07 07:45:08 +02:00
LOCAL_C_INCLUDES := jni/include
2020-01-20 17:48:52 +01:00
LOCAL_SRC_FILES := \
core/applet_stub.cpp \
2020-05-23 09:18:25 +02:00
magiskpolicy/sepolicy.cpp \
2020-01-20 17:48:52 +01:00
magiskpolicy/magiskpolicy.cpp \
magiskpolicy/rules.cpp \
magiskpolicy/policydb.cpp \
2020-05-23 09:18:25 +02:00
magiskpolicy/statement.cpp
2020-01-20 17:48:52 +01:00
LOCAL_CFLAGS := -DAPPLET_STUB_MAIN=magiskpolicy_main
LOCAL_LDFLAGS := -static
include $(BUILD_EXECUTABLE)
endif
ifdef B_PROP
include $(CLEAR_VARS)
LOCAL_MODULE := resetprop
LOCAL_STATIC_LIBRARIES := libnanopb libsystemproperties libutils
2020-04-07 07:45:08 +02:00
LOCAL_C_INCLUDES := jni/include
2020-01-20 17:48:52 +01:00
LOCAL_SRC_FILES := \
core/applet_stub.cpp \
resetprop/persist_properties.cpp \
resetprop/resetprop.cpp \
LOCAL_CFLAGS := -DAPPLET_STUB_MAIN=resetprop_main
LOCAL_LDFLAGS := -static
include $(BUILD_EXECUTABLE)
endif
ifdef B_TEST
include $(CLEAR_VARS)
LOCAL_MODULE := test
LOCAL_STATIC_LIBRARIES := libutils
2020-04-07 07:45:08 +02:00
LOCAL_C_INCLUDES := jni/include
LOCAL_SRC_FILES := test.cpp
2019-07-08 02:38:22 +02:00
LOCAL_LDFLAGS := -static
include $(BUILD_EXECUTABLE)
endif
2018-05-12 21:04:40 +02:00
ifdef B_BB
2017-09-13 19:44:36 +02:00
include jni/external/busybox/Android.mk
2017-07-31 17:47:50 +02:00
endif
2017-07-31 17:47:50 +02:00
########################
2018-09-27 09:11:10 +02:00
# Libraries
2017-07-31 17:47:50 +02:00
########################
include jni/utils/Android.mk
include jni/systemproperties/Android.mk
2017-07-31 17:47:50 +02:00
include jni/external/Android.mk