2019-02-16 02:45:05 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-03-09 09:50:30 +01:00
|
|
|
#include <magisk.hpp>
|
|
|
|
#include <utils.hpp>
|
|
|
|
#include <selinux.hpp>
|
2019-02-16 02:45:05 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2020-11-07 23:36:13 +01:00
|
|
|
#define BBEXEC_CMD bbpath(), "sh"
|
2020-05-08 13:09:58 +02:00
|
|
|
|
2020-11-07 23:36:13 +01:00
|
|
|
static const char *bbpath() {
|
|
|
|
static string path;
|
|
|
|
if (path.empty())
|
|
|
|
path = MAGISKTMP + "/" BBPATH "/busybox";
|
|
|
|
return path.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_script_env() {
|
2020-05-08 13:09:58 +02:00
|
|
|
setenv("ASH_STANDALONE", "1", 1);
|
2020-11-07 23:36:13 +01:00
|
|
|
char new_path[4096];
|
|
|
|
sprintf(new_path, "%s:%s", getenv("PATH"), MAGISKTMP.data());
|
|
|
|
setenv("PATH", new_path, 1);
|
2020-05-08 13:09:58 +02:00
|
|
|
};
|
2019-02-16 02:45:05 +01:00
|
|
|
|
2019-03-23 08:50:55 +01:00
|
|
|
void exec_script(const char *script) {
|
|
|
|
exec_t exec {
|
2020-11-07 23:36:13 +01:00
|
|
|
.pre_exec = set_script_env,
|
2019-03-23 08:50:55 +01:00
|
|
|
.fork = fork_no_zombie
|
|
|
|
};
|
2020-03-11 08:11:15 +01:00
|
|
|
exec_command_sync(exec, BBEXEC_CMD, script);
|
2019-03-23 08:50:55 +01:00
|
|
|
}
|
|
|
|
|
2020-05-18 14:36:02 +02:00
|
|
|
void exec_common_scripts(const char *stage) {
|
|
|
|
LOGI("* Running %s.d scripts\n", stage);
|
2019-02-16 02:45:05 +01:00
|
|
|
char path[4096];
|
2019-12-21 11:29:38 +01:00
|
|
|
char *name = path + sprintf(path, SECURE_DIR "/%s.d", stage);
|
2019-12-13 06:37:06 +01:00
|
|
|
auto dir = xopen_dir(path);
|
|
|
|
if (!dir)
|
2019-02-16 02:45:05 +01:00
|
|
|
return;
|
|
|
|
|
2019-12-21 11:29:38 +01:00
|
|
|
int dfd = dirfd(dir.get());
|
2019-12-13 06:37:06 +01:00
|
|
|
bool pfs = stage == "post-fs-data"sv;
|
2019-12-21 11:29:38 +01:00
|
|
|
*(name++) = '/';
|
|
|
|
|
2019-12-13 06:37:06 +01:00
|
|
|
for (dirent *entry; (entry = xreaddir(dir.get()));) {
|
2019-02-16 02:45:05 +01:00
|
|
|
if (entry->d_type == DT_REG) {
|
2019-12-21 11:29:38 +01:00
|
|
|
if (faccessat(dfd, entry->d_name, X_OK, 0) != 0)
|
2019-02-16 02:45:05 +01:00
|
|
|
continue;
|
|
|
|
LOGI("%s.d: exec [%s]\n", stage, entry->d_name);
|
2019-12-21 11:29:38 +01:00
|
|
|
strcpy(name, entry->d_name);
|
2019-02-16 02:45:05 +01:00
|
|
|
exec_t exec {
|
2020-11-07 23:36:13 +01:00
|
|
|
.pre_exec = set_script_env,
|
2019-03-23 08:36:35 +01:00
|
|
|
.fork = pfs ? fork_no_zombie : fork_dont_care
|
2019-02-16 02:45:05 +01:00
|
|
|
};
|
|
|
|
if (pfs)
|
2020-03-11 08:11:15 +01:00
|
|
|
exec_command_sync(exec, BBEXEC_CMD, path);
|
2019-02-16 02:45:05 +01:00
|
|
|
else
|
2020-03-11 08:11:15 +01:00
|
|
|
exec_command(exec, BBEXEC_CMD, path);
|
2019-02-16 02:45:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-18 14:36:02 +02:00
|
|
|
void exec_module_scripts(const char *stage, const vector<string> &module_list) {
|
|
|
|
LOGI("* Running module %s scripts\n", stage);
|
2019-02-16 02:45:05 +01:00
|
|
|
char path[4096];
|
2019-12-13 06:37:06 +01:00
|
|
|
bool pfs = stage == "post-fs-data"sv;
|
2019-02-16 02:45:05 +01:00
|
|
|
for (auto &m : module_list) {
|
2020-11-07 23:36:13 +01:00
|
|
|
const char* module = m.data();
|
2019-02-16 02:45:05 +01:00
|
|
|
sprintf(path, MODULEROOT "/%s/%s.sh", module, stage);
|
|
|
|
if (access(path, F_OK) == -1)
|
|
|
|
continue;
|
|
|
|
LOGI("%s: exec [%s.sh]\n", module, stage);
|
|
|
|
exec_t exec {
|
2020-11-07 23:36:13 +01:00
|
|
|
.pre_exec = set_script_env,
|
2019-03-23 08:36:35 +01:00
|
|
|
.fork = pfs ? fork_no_zombie : fork_dont_care
|
2019-02-16 02:45:05 +01:00
|
|
|
};
|
|
|
|
if (pfs)
|
2020-03-11 08:11:15 +01:00
|
|
|
exec_command_sync(exec, BBEXEC_CMD, path);
|
2019-02-16 02:45:05 +01:00
|
|
|
else
|
2020-03-11 08:11:15 +01:00
|
|
|
exec_command(exec, BBEXEC_CMD, path);
|
2019-02-16 02:45:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-09 23:38:45 +02:00
|
|
|
constexpr char install_script[] = R"EOF(
|
|
|
|
APK=%s
|
|
|
|
log -t Magisk "apk_install: $APK"
|
2020-11-07 23:36:13 +01:00
|
|
|
log -t Magisk "apk_install: $(pm install -r $APK 2>&1)"
|
2019-10-09 23:38:45 +02:00
|
|
|
rm -f $APK
|
|
|
|
)EOF";
|
2019-02-16 02:45:05 +01:00
|
|
|
|
|
|
|
void install_apk(const char *apk) {
|
2020-06-04 08:29:42 +02:00
|
|
|
setfilecon(apk, "u:object_r:" SEPOL_FILE_TYPE ":s0");
|
2019-04-05 13:00:30 +02:00
|
|
|
exec_t exec {
|
|
|
|
.fork = fork_no_zombie
|
|
|
|
};
|
2019-02-16 02:45:05 +01:00
|
|
|
char cmds[sizeof(install_script) + 4096];
|
2019-02-16 08:24:35 +01:00
|
|
|
sprintf(cmds, install_script, apk);
|
2020-11-07 23:36:13 +01:00
|
|
|
exec_command_sync(exec, "/system/bin/sh", "-c", cmds);
|
2019-02-16 08:24:35 +01:00
|
|
|
}
|
2020-09-27 01:50:41 +02:00
|
|
|
|
2020-11-07 23:36:13 +01:00
|
|
|
[[noreturn]] __printflike(1, 2)
|
|
|
|
static void abort(const char *fmt, ...) {
|
|
|
|
va_list valist;
|
|
|
|
va_start(valist, fmt);
|
|
|
|
vfprintf(stderr, fmt, valist);
|
|
|
|
fprintf(stderr, "\n\n");
|
|
|
|
va_end(valist);
|
2020-09-27 01:50:41 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr char install_module_script[] = R"EOF(
|
2020-11-07 23:36:13 +01:00
|
|
|
exec $(magisk --path)/.magisk/busybox/busybox sh -c '
|
2020-09-27 01:50:41 +02:00
|
|
|
. /data/adb/magisk/util_functions.sh
|
|
|
|
install_module
|
2020-11-07 23:36:13 +01:00
|
|
|
exit 0'
|
2020-09-27 01:50:41 +02:00
|
|
|
)EOF";
|
|
|
|
|
|
|
|
void install_module(const char *file) {
|
|
|
|
if (getuid() != 0)
|
|
|
|
abort("Run this command with root");
|
|
|
|
if (access(DATABIN, F_OK) ||
|
|
|
|
access(DATABIN "/busybox", X_OK) ||
|
|
|
|
access(DATABIN "/util_functions.sh", F_OK))
|
|
|
|
abort("Incomplete Magisk install");
|
|
|
|
if (access(file, F_OK)) {
|
2020-11-07 23:36:13 +01:00
|
|
|
abort("'%s' does not exist", file);
|
2020-09-27 01:50:41 +02:00
|
|
|
}
|
|
|
|
|
2020-11-07 23:36:13 +01:00
|
|
|
setenv("OUTFD", "1", 1);
|
|
|
|
setenv("ZIPFILE", file, 1);
|
2020-09-27 01:50:41 +02:00
|
|
|
setenv("ASH_STANDALONE", "1", 1);
|
|
|
|
|
|
|
|
int fd = xopen("/dev/null", O_RDONLY);
|
|
|
|
xdup2(fd, STDERR_FILENO);
|
|
|
|
close(fd);
|
|
|
|
|
2020-11-07 23:36:13 +01:00
|
|
|
const char *argv[] = { "/system/bin/sh", "-c", install_module_script };
|
2020-09-27 01:50:41 +02:00
|
|
|
execve(argv[0], (char **) argv, environ);
|
|
|
|
abort("Failed to execute BusyBox shell");
|
|
|
|
}
|