Magisk/native/jni/init/init.cpp

187 lines
3.9 KiB
C++
Raw Normal View History

2019-05-27 09:29:43 +02:00
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/sysmacros.h>
#include <fcntl.h>
#include <libgen.h>
2019-07-02 07:58:19 +02:00
#include <vector>
2019-05-27 09:29:43 +02:00
#include <xz.h>
2020-03-09 09:50:30 +01:00
#include <magisk.hpp>
#include <utils.hpp>
2019-05-27 09:29:43 +02:00
#include "binaries.h"
#ifdef USE_64BIT
#include "binaries_arch64.h"
#else
#include "binaries_arch.h"
#endif
2020-03-09 09:50:30 +01:00
#include "init.hpp"
2019-05-27 09:29:43 +02:00
using namespace std;
2020-10-27 04:46:15 +01:00
// Debug toggle
#define ENABLE_TEST 0
2019-06-22 12:14:33 +02:00
constexpr int (*init_applet_main[])(int, char *[]) =
2020-04-18 14:15:59 +02:00
{ magiskpolicy_main, magiskpolicy_main, nullptr };
2019-06-22 12:14:33 +02:00
2019-05-27 09:29:43 +02:00
static bool unxz(int fd, const uint8_t *buf, size_t size) {
uint8_t out[8192];
xz_crc32_init();
struct xz_dec *dec = xz_dec_init(XZ_DYNALLOC, 1 << 26);
struct xz_buf b = {
2019-12-06 18:02:34 +01:00
.in = buf,
.in_pos = 0,
.in_size = size,
.out = out,
.out_pos = 0,
.out_size = sizeof(out)
2019-05-27 09:29:43 +02:00
};
enum xz_ret ret;
do {
ret = xz_dec_run(dec, &b);
if (ret != XZ_OK && ret != XZ_STREAM_END)
return false;
write(fd, out, b.out_pos);
b.out_pos = 0;
} while (b.in_pos != size);
return true;
}
int dump_magisk(const char *path, mode_t mode) {
2020-04-03 11:58:39 +02:00
int fd = xopen(path, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, mode);
2019-05-27 09:29:43 +02:00
if (fd < 0)
return 1;
if (!unxz(fd, magisk_xz, sizeof(magisk_xz)))
return 1;
close(fd);
return 0;
}
static int dump_manager(const char *path, mode_t mode) {
2020-04-03 11:58:39 +02:00
int fd = xopen(path, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, mode);
2019-05-27 09:29:43 +02:00
if (fd < 0)
return 1;
if (!unxz(fd, manager_xz, sizeof(manager_xz)))
return 1;
close(fd);
return 0;
}
2019-06-16 21:45:32 +02:00
class RecoveryInit : public BaseInit {
public:
2020-10-27 04:46:15 +01:00
RecoveryInit(char *argv[], cmdline *cmd) : BaseInit(argv, cmd) {}
2019-06-16 21:45:32 +02:00
void start() override {
LOGD("Ramdisk is recovery, abort\n");
rename("/.backup/init", "/init");
rm_rf("/.backup");
2019-06-30 20:39:13 +02:00
exec_init();
2019-06-16 21:45:32 +02:00
}
};
2020-10-27 04:46:15 +01:00
#if ENABLE_TEST
2019-11-18 23:18:56 +01:00
class TestInit : public BaseInit {
2019-06-16 21:45:32 +02:00
public:
2019-11-18 23:18:56 +01:00
TestInit(char *argv[], cmdline *cmd) : BaseInit(argv, cmd) {};
2019-06-16 21:45:32 +02:00
void start() override {
2019-12-06 18:02:34 +01:00
// Place init tests here
2019-06-16 21:45:32 +02:00
}
};
2019-05-27 09:29:43 +02:00
2020-10-27 04:46:15 +01:00
static int test_main(int argc, char *argv[]) {
2019-06-25 12:34:54 +02:00
// Log to console
cmdline_logging();
log_cb.ex = nop_ex;
// Switch to isolate namespace
xunshare(CLONE_NEWNS);
xmount(nullptr, "/", nullptr, MS_PRIVATE | MS_REC, nullptr);
// Unmount everything in reverse
vector<string> mounts;
parse_mnt("/proc/mounts", [&](mntent *me) {
if (me->mnt_dir != "/"sv)
mounts.emplace_back(me->mnt_dir);
return true;
});
2019-12-06 18:02:34 +01:00
for (auto &m : reversed(mounts))
xumount(m.data());
2019-06-25 12:34:54 +02:00
// chroot jail
2019-12-06 18:02:34 +01:00
chdir(dirname(argv[0]));
2019-06-25 12:34:54 +02:00
chroot(".");
chdir("/");
2019-12-06 18:02:34 +01:00
cmdline cmd{};
load_kernel_info(&cmd);
auto init = make_unique<TestInit>(argv, &cmd);
init->start();
return 1;
2019-06-25 12:34:54 +02:00
}
2020-10-27 04:46:15 +01:00
#endif // ENABLE_TEST
static int magisk_proxy_main(int argc, char *argv[]) {
setup_klog();
auto init = make_unique<MagiskProxy>(argv);
init->start();
return 1;
}
2019-06-25 12:34:54 +02:00
2019-05-27 09:29:43 +02:00
int main(int argc, char *argv[]) {
umask(0);
2020-04-18 14:15:59 +02:00
auto name = basename(argv[0]);
if (name == "magisk"sv)
return magisk_proxy_main(argc, argv);
2019-05-27 09:29:43 +02:00
for (int i = 0; init_applet[i]; ++i) {
2020-04-18 14:15:59 +02:00
if (strcmp(name, init_applet[i]) == 0)
2019-05-27 09:29:43 +02:00
return (*init_applet_main[i])(argc, argv);
}
2020-10-27 04:46:15 +01:00
#if ENABLE_TEST
2019-12-06 18:02:34 +01:00
if (getenv("INIT_TEST") != nullptr)
return test_main(argc, argv);
#endif
2019-12-13 06:37:06 +01:00
if (argc > 1 && argv[1] == "-x"sv) {
if (argv[2] == "magisk"sv)
2019-05-27 09:29:43 +02:00
return dump_magisk(argv[3], 0755);
2019-12-13 06:37:06 +01:00
else if (argv[2] == "manager"sv)
2019-05-27 09:29:43 +02:00
return dump_manager(argv[3], 0644);
}
2019-12-06 18:02:34 +01:00
if (getpid() != 1)
return 1;
2020-04-19 13:56:56 +02:00
BaseInit *init;
2019-06-16 07:25:09 +02:00
cmdline cmd{};
2019-12-13 06:37:06 +01:00
if (argc > 1 && argv[1] == "selinux_setup"sv) {
setup_klog();
2020-04-19 13:56:56 +02:00
init = new SecondStageInit(argv);
2019-06-16 21:45:32 +02:00
} else {
2019-12-13 06:37:06 +01:00
// This will also mount /sys and /proc
load_kernel_info(&cmd);
2020-04-19 13:56:56 +02:00
if (cmd.skip_initramfs) {
init = new SARInit(argv, &cmd);
2019-12-13 06:37:06 +01:00
} else {
2020-04-19 13:56:56 +02:00
if (cmd.force_normal_boot)
init = new FirstStageInit(argv, &cmd);
else if (access("/sbin/recovery", F_OK) == 0 || access("/system/bin/recovery", F_OK) == 0)
init = new RecoveryInit(argv, &cmd);
else if (check_two_stage())
2020-04-19 13:56:56 +02:00
init = new FirstStageInit(argv, &cmd);
2019-12-13 06:37:06 +01:00
else
2020-04-19 13:56:56 +02:00
init = new RootFSInit(argv, &cmd);
2019-12-13 06:37:06 +01:00
}
2019-06-16 21:45:32 +02:00
}
2019-05-27 09:29:43 +02:00
// Run the main routine
2019-06-16 21:45:32 +02:00
init->start();
Logical Resizable Android Partitions support The way how logical partition, or "Logical Resizable Android Partitions" as they say in AOSP source code, is setup makes it impossible to early mount the partitions from the shared super partition with just a few lines of code; in fact, AOSP has a whole "fs_mgr" folder which consist of multiple complex libraries, with 15K lines of code just to deal with the device mapper shenanigans. In order to keep the already overly complicated MagiskInit more managable, I chose NOT to go the route of including fs_mgr directly into MagiskInit. Luckily, starting from Android Q, Google decided to split init startup into 3 stages, with the first stage doing _only_ early mount. This is great news, because we can simply let the stock init do its own thing for us, and we intercept the bootup sequence. So the workflow can be visualized roughly below: Magisk First Stage --> First Stage Mount --> Magisk Second Stage --+ (MagiskInit) (Original Init) (MagiskInit) + + + ...Rest of the boot... <-- Second Stage <-- Selinux Setup <--+ (__________________ Original Init ____________________) The catch here is that after doing all the first stage mounting, /init will pivot /system as root directory (/), leaving us impossible to regain control after we hand it over. So the solution here is to patch fstab in /first_stage_ramdisk on-the-fly to redirect /system to /system_root, making the original init do all the hard work for us and mount required early mount partitions, but skips the step of switching root directory. It will also conveniently hand over execution back to MagiskInit, which we will reuse the routine for patching root directory in normal system-as-root situations.
2019-06-29 09:47:29 +02:00
exit(1);
2019-05-27 09:29:43 +02:00
}