2019-05-27 07:29:43 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <libgen.h>
|
2019-07-02 05:58:19 +00:00
|
|
|
#include <vector>
|
2019-05-27 07:29:43 +00:00
|
|
|
|
|
|
|
#include <xz.h>
|
2021-09-08 02:35:28 +00:00
|
|
|
|
2020-03-09 08:50:30 +00:00
|
|
|
#include <utils.hpp>
|
2021-09-08 02:35:28 +00:00
|
|
|
#include <binaries.h>
|
2019-05-27 07:29:43 +00:00
|
|
|
|
2022-04-08 09:13:31 +00:00
|
|
|
#if defined(__arm__)
|
|
|
|
#include <armeabi-v7a_binaries.h>
|
|
|
|
#elif defined(__aarch64__)
|
|
|
|
#include <arm64-v8a_binaries.h>
|
|
|
|
#elif defined(__i386__)
|
|
|
|
#include <x86_binaries.h>
|
|
|
|
#elif defined(__x86_64__)
|
|
|
|
#include <x86_64_binaries.h>
|
|
|
|
#else
|
|
|
|
#error Unsupported ABI
|
|
|
|
#endif
|
|
|
|
|
2020-03-09 08:50:30 +00:00
|
|
|
#include "init.hpp"
|
2019-05-27 07:29:43 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2021-01-18 12:25:26 +00:00
|
|
|
bool unxz(int fd, const uint8_t *buf, size_t size) {
|
2020-12-31 06:11:24 +00:00
|
|
|
uint8_t out[8192];
|
|
|
|
xz_crc32_init();
|
|
|
|
struct xz_dec *dec = xz_dec_init(XZ_DYNALLOC, 1 << 26);
|
|
|
|
struct xz_buf b = {
|
|
|
|
.in = buf,
|
|
|
|
.in_pos = 0,
|
|
|
|
.in_size = size,
|
|
|
|
.out = out,
|
|
|
|
.out_pos = 0,
|
|
|
|
.out_size = sizeof(out)
|
|
|
|
};
|
|
|
|
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;
|
2019-05-27 07:29:43 +00:00
|
|
|
}
|
|
|
|
|
2022-04-08 09:13:31 +00:00
|
|
|
static int dump_bin(const uint8_t *buf, size_t sz, const char *path, mode_t mode) {
|
2020-12-31 06:11:24 +00:00
|
|
|
int fd = xopen(path, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, mode);
|
|
|
|
if (fd < 0)
|
|
|
|
return 1;
|
2022-04-08 09:13:31 +00:00
|
|
|
if (!unxz(fd, buf, sz))
|
2020-12-31 06:11:24 +00:00
|
|
|
return 1;
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
2019-05-27 07:29:43 +00:00
|
|
|
}
|
|
|
|
|
2022-04-08 09:13:31 +00:00
|
|
|
int dump_manager(const char *path, mode_t mode) {
|
|
|
|
return dump_bin(manager_xz, sizeof(manager_xz), path, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
int dump_preload(const char *path, mode_t mode) {
|
|
|
|
return dump_bin(preload_xz, sizeof(preload_xz), path, mode);
|
|
|
|
}
|
|
|
|
|
2019-06-16 19:45:32 +00:00
|
|
|
class RecoveryInit : public BaseInit {
|
|
|
|
public:
|
2022-03-14 11:22:09 +00:00
|
|
|
using BaseInit::BaseInit;
|
2020-12-31 06:11:24 +00:00
|
|
|
void start() override {
|
|
|
|
LOGD("Ramdisk is recovery, abort\n");
|
2021-10-31 01:59:20 +00:00
|
|
|
rename(backup_init(), "/init");
|
2020-12-31 06:11:24 +00:00
|
|
|
rm_rf("/.backup");
|
|
|
|
exec_init();
|
|
|
|
}
|
2019-06-16 19:45:32 +00:00
|
|
|
};
|
|
|
|
|
2019-05-27 07:29:43 +00:00
|
|
|
int main(int argc, char *argv[]) {
|
2020-12-31 06:11:24 +00:00
|
|
|
umask(0);
|
2019-05-27 07:29:43 +00:00
|
|
|
|
2020-12-31 06:11:24 +00:00
|
|
|
auto name = basename(argv[0]);
|
|
|
|
if (name == "magisk"sv)
|
|
|
|
return magisk_proxy_main(argc, argv);
|
2019-12-06 17:02:34 +00:00
|
|
|
|
2020-12-31 06:11:24 +00:00
|
|
|
if (argc > 1 && argv[1] == "-x"sv) {
|
2021-01-18 12:25:26 +00:00
|
|
|
if (argc > 2 && argv[2] == "manager"sv)
|
2020-12-31 06:11:24 +00:00
|
|
|
return dump_manager(argv[3], 0644);
|
2021-01-18 12:25:26 +00:00
|
|
|
return 1;
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (getpid() != 1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
BaseInit *init;
|
2021-10-26 07:35:55 +00:00
|
|
|
BootConfig config{};
|
2020-12-31 06:11:24 +00:00
|
|
|
|
|
|
|
if (argc > 1 && argv[1] == "selinux_setup"sv) {
|
|
|
|
init = new SecondStageInit(argv);
|
|
|
|
} else {
|
|
|
|
// This will also mount /sys and /proc
|
2021-10-26 07:35:55 +00:00
|
|
|
load_kernel_info(&config);
|
2020-12-31 06:11:24 +00:00
|
|
|
|
2021-10-26 07:35:55 +00:00
|
|
|
if (config.skip_initramfs)
|
2022-03-14 11:22:09 +00:00
|
|
|
init = new LegacySARInit(argv, &config);
|
2021-10-26 07:35:55 +00:00
|
|
|
else if (config.force_normal_boot)
|
|
|
|
init = new FirstStageInit(argv, &config);
|
2021-01-18 12:25:26 +00:00
|
|
|
else if (access("/sbin/recovery", F_OK) == 0 || access("/system/bin/recovery", F_OK) == 0)
|
2021-10-26 07:35:55 +00:00
|
|
|
init = new RecoveryInit(argv, &config);
|
2021-01-18 12:25:26 +00:00
|
|
|
else if (check_two_stage())
|
2021-10-26 07:35:55 +00:00
|
|
|
init = new FirstStageInit(argv, &config);
|
2021-01-18 12:25:26 +00:00
|
|
|
else
|
2021-10-26 07:35:55 +00:00
|
|
|
init = new RootFSInit(argv, &config);
|
2020-12-31 06:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the main routine
|
|
|
|
init->start();
|
|
|
|
exit(1);
|
2019-05-27 07:29:43 +00:00
|
|
|
}
|