2019-03-05 09:22:20 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2017-07-02 18:57:20 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2017-04-20 16:45:56 +02:00
|
|
|
#include <unistd.h>
|
2018-07-13 16:14:32 +02:00
|
|
|
#include <fcntl.h>
|
2017-07-02 18:57:20 +02:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <string.h>
|
2017-04-20 16:45:56 +02:00
|
|
|
|
2020-03-09 09:50:30 +01:00
|
|
|
#include <magisk.hpp>
|
|
|
|
#include <utils.hpp>
|
|
|
|
#include <db.hpp>
|
2019-02-10 07:05:19 +01:00
|
|
|
|
2020-03-09 09:50:30 +01:00
|
|
|
#include "magiskhide.hpp"
|
2018-11-01 18:23:12 +01:00
|
|
|
|
2019-01-20 05:59:37 +01:00
|
|
|
using namespace std;
|
|
|
|
|
2019-03-09 05:53:53 +01:00
|
|
|
static pthread_t proc_monitor_thread;
|
2020-05-17 23:45:08 +02:00
|
|
|
static bool hide_state = false;
|
|
|
|
|
|
|
|
// This locks the 2 variables above
|
|
|
|
static pthread_mutex_t hide_state_lock = PTHREAD_MUTEX_INITIALIZER;
|
2017-07-02 18:57:20 +02:00
|
|
|
|
2019-02-14 02:16:26 +01:00
|
|
|
// Leave /proc fd opened as we're going to read from it repeatedly
|
|
|
|
static DIR *procfp;
|
2020-05-17 23:45:08 +02:00
|
|
|
void crawl_procfs(const function<bool(int)> &fn) {
|
2020-12-31 07:11:24 +01:00
|
|
|
rewinddir(procfp);
|
|
|
|
crawl_procfs(procfp, fn);
|
2019-03-12 21:48:01 +01:00
|
|
|
}
|
|
|
|
|
2020-05-17 23:45:08 +02:00
|
|
|
void crawl_procfs(DIR *dir, const function<bool(int)> &fn) {
|
2020-12-31 07:11:24 +01:00
|
|
|
struct dirent *dp;
|
|
|
|
int pid;
|
|
|
|
while ((dp = readdir(dir))) {
|
|
|
|
pid = parse_int(dp->d_name);
|
|
|
|
if (pid > 0 && !fn(pid))
|
|
|
|
break;
|
|
|
|
}
|
2018-10-13 03:46:09 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 08:31:30 +02:00
|
|
|
bool hide_enabled() {
|
2020-12-31 07:11:24 +01:00
|
|
|
mutex_guard g(hide_state_lock);
|
|
|
|
return hide_state;
|
2020-05-17 08:31:30 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 23:45:08 +02:00
|
|
|
void set_hide_state(bool state) {
|
2020-12-31 07:11:24 +01:00
|
|
|
mutex_guard g(hide_state_lock);
|
|
|
|
hide_state = state;
|
2020-05-17 23:45:08 +02:00
|
|
|
}
|
|
|
|
|
2020-12-31 00:55:53 +01:00
|
|
|
template <bool str_op(string_view, string_view)>
|
2019-04-22 22:36:23 +02:00
|
|
|
static bool proc_name_match(int pid, const char *name) {
|
2020-12-31 07:11:24 +01:00
|
|
|
char buf[4019];
|
|
|
|
sprintf(buf, "/proc/%d/cmdline", pid);
|
|
|
|
if (auto fp = open_file(buf, "re")) {
|
|
|
|
fgets(buf, sizeof(buf), fp.get());
|
|
|
|
if (str_op(buf, name)) {
|
|
|
|
LOGD("hide_utils: kill PID=[%d] (%s)\n", pid, buf);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2018-10-13 03:46:09 +02:00
|
|
|
}
|
|
|
|
|
2020-12-31 00:55:53 +01:00
|
|
|
static inline bool str_eql(string_view s, string_view ss) { return s == ss; }
|
|
|
|
|
|
|
|
static void kill_process(const char *name, bool multi = false,
|
2020-12-31 07:11:24 +01:00
|
|
|
bool (*filter)(int, const char *) = proc_name_match<&str_eql>) {
|
|
|
|
crawl_procfs([=](int pid) -> bool {
|
|
|
|
if (filter(pid, name)) {
|
|
|
|
kill(pid, SIGTERM);
|
|
|
|
return multi;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
2018-08-07 23:47:58 +02:00
|
|
|
}
|
|
|
|
|
2019-09-01 08:16:12 +02:00
|
|
|
static bool validate(const char *s) {
|
2020-12-31 07:11:24 +01:00
|
|
|
if (strcmp(s, ISOLATED_MAGIC) == 0)
|
|
|
|
return true;
|
|
|
|
bool dot = false;
|
|
|
|
for (char c; (c = *s); ++s) {
|
|
|
|
if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') ||
|
|
|
|
(c >= '0' && c <= '9') || c == '_' || c == ':') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c == '.') {
|
|
|
|
dot = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return dot;
|
2019-09-01 08:16:12 +02:00
|
|
|
}
|
|
|
|
|
2020-12-31 00:55:53 +01:00
|
|
|
static void add_hide_set(const char *pkg, const char *proc) {
|
2020-12-31 07:11:24 +01:00
|
|
|
LOGI("hide_list add: [%s/%s]\n", pkg, proc);
|
|
|
|
hide_set.emplace(pkg, proc);
|
|
|
|
if (strcmp(pkg, ISOLATED_MAGIC) == 0) {
|
|
|
|
// Kill all matching isolated processes
|
|
|
|
kill_process(proc, true, proc_name_match<&str_starts>);
|
|
|
|
} else {
|
|
|
|
kill_process(proc);
|
|
|
|
}
|
2020-12-31 00:55:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int add_list(const char *pkg, const char *proc) {
|
2020-12-31 07:11:24 +01:00
|
|
|
if (proc[0] == '\0')
|
|
|
|
proc = pkg;
|
|
|
|
|
|
|
|
if (!validate(pkg) || !validate(proc))
|
|
|
|
return HIDE_INVALID_PKG;
|
|
|
|
|
|
|
|
for (auto &hide : hide_set)
|
|
|
|
if (hide.first == pkg && hide.second == proc)
|
|
|
|
return HIDE_ITEM_EXIST;
|
|
|
|
|
|
|
|
// Add to database
|
|
|
|
char sql[4096];
|
|
|
|
snprintf(sql, sizeof(sql),
|
|
|
|
"INSERT INTO hidelist (package_name, process) VALUES('%s', '%s')", pkg, proc);
|
|
|
|
char *err = db_exec(sql);
|
|
|
|
db_err_cmd(err, return DAEMON_ERROR);
|
|
|
|
|
|
|
|
{
|
|
|
|
// Critical region
|
|
|
|
mutex_guard lock(monitor_lock);
|
|
|
|
add_hide_set(pkg, proc);
|
|
|
|
}
|
|
|
|
|
|
|
|
return DAEMON_SUCCESS;
|
2017-04-20 16:45:56 +02:00
|
|
|
}
|
|
|
|
|
2018-11-01 19:08:33 +01:00
|
|
|
int add_list(int client) {
|
2020-12-31 07:11:24 +01:00
|
|
|
char *pkg = read_string(client);
|
|
|
|
char *proc = read_string(client);
|
|
|
|
int ret = add_list(pkg, proc);
|
|
|
|
free(pkg);
|
|
|
|
free(proc);
|
|
|
|
if (ret == DAEMON_SUCCESS)
|
|
|
|
update_uid_map();
|
|
|
|
return ret;
|
2018-11-01 19:08:33 +01:00
|
|
|
}
|
2017-04-20 16:45:56 +02:00
|
|
|
|
2020-12-31 00:55:53 +01:00
|
|
|
static int rm_list(const char *pkg, const char *proc) {
|
2020-12-31 07:11:24 +01:00
|
|
|
bool remove = false;
|
|
|
|
{
|
|
|
|
// Critical region
|
|
|
|
mutex_guard lock(monitor_lock);
|
|
|
|
for (auto it = hide_set.begin(); it != hide_set.end();) {
|
|
|
|
if (it->first == pkg && (proc[0] == '\0' || it->second == proc)) {
|
|
|
|
remove = true;
|
|
|
|
LOGI("hide_list rm: [%s/%s]\n", it->first.data(), it->second.data());
|
|
|
|
it = hide_set.erase(it);
|
|
|
|
} else {
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!remove)
|
|
|
|
return HIDE_ITEM_NOT_EXIST;
|
|
|
|
|
|
|
|
char sql[4096];
|
|
|
|
if (proc[0] == '\0')
|
|
|
|
snprintf(sql, sizeof(sql), "DELETE FROM hidelist WHERE package_name='%s'", pkg);
|
|
|
|
else
|
|
|
|
snprintf(sql, sizeof(sql),
|
|
|
|
"DELETE FROM hidelist WHERE package_name='%s' AND process='%s'", pkg, proc);
|
|
|
|
char *err = db_exec(sql);
|
|
|
|
db_err(err);
|
|
|
|
return DAEMON_SUCCESS;
|
2017-04-20 16:45:56 +02:00
|
|
|
}
|
|
|
|
|
2018-11-01 19:08:33 +01:00
|
|
|
int rm_list(int client) {
|
2020-12-31 07:11:24 +01:00
|
|
|
char *pkg = read_string(client);
|
|
|
|
char *proc = read_string(client);
|
|
|
|
int ret = rm_list(pkg, proc);
|
|
|
|
free(pkg);
|
|
|
|
free(proc);
|
|
|
|
if (ret == DAEMON_SUCCESS)
|
|
|
|
update_uid_map();
|
|
|
|
return ret;
|
2018-11-01 19:08:33 +01:00
|
|
|
}
|
|
|
|
|
2020-12-31 00:55:53 +01:00
|
|
|
static bool str_ends_safe(string_view s, string_view ss) {
|
2020-12-31 07:11:24 +01:00
|
|
|
// Never kill webview zygote
|
|
|
|
if (s == "webview_zygote")
|
|
|
|
return false;
|
|
|
|
return str_ends(s, ss);
|
2018-11-16 09:20:30 +01:00
|
|
|
}
|
|
|
|
|
2020-04-19 08:46:56 +02:00
|
|
|
#define SNET_PROC "com.google.android.gms.unstable"
|
|
|
|
#define GMS_PKG "com.google.android.gms"
|
|
|
|
#define MICROG_PKG "org.microg.gms.droidguard"
|
2020-04-19 08:45:00 +02:00
|
|
|
|
2020-05-17 23:45:08 +02:00
|
|
|
static bool init_list() {
|
2020-12-31 07:11:24 +01:00
|
|
|
LOGD("hide_list: initialize\n");
|
|
|
|
|
|
|
|
char *err = db_exec("SELECT * FROM hidelist", [](db_row &row) -> bool {
|
|
|
|
add_hide_set(row["package_name"].data(), row["process"].data());
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
db_err_cmd(err, return false);
|
|
|
|
|
|
|
|
// If Android Q+, also kill blastula pool and all app zygotes
|
|
|
|
if (SDK_INT >= 29) {
|
|
|
|
kill_process("usap32", true);
|
|
|
|
kill_process("usap64", true);
|
|
|
|
kill_process("_zygote", true, proc_name_match<&str_ends_safe>);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add SafetyNet by default
|
|
|
|
add_hide_set(GMS_PKG, SNET_PROC);
|
|
|
|
add_hide_set(MICROG_PKG, SNET_PROC);
|
|
|
|
|
|
|
|
// We also need to hide the default GMS process if MAGISKTMP != /sbin
|
|
|
|
// The snet process communicates with the main process and get additional info
|
|
|
|
if (MAGISKTMP != "/sbin")
|
|
|
|
add_hide_set(GMS_PKG, GMS_PKG);
|
|
|
|
|
|
|
|
update_uid_map();
|
|
|
|
return true;
|
2017-04-20 16:45:56 +02:00
|
|
|
}
|
|
|
|
|
2018-11-01 19:08:33 +01:00
|
|
|
void ls_list(int client) {
|
2020-12-31 07:11:24 +01:00
|
|
|
FILE *out = fdopen(recv_fd(client), "a");
|
|
|
|
for (auto &hide : hide_set)
|
|
|
|
fprintf(out, "%s|%s\n", hide.first.data(), hide.second.data());
|
|
|
|
fclose(out);
|
|
|
|
write_int(client, DAEMON_SUCCESS);
|
|
|
|
close(client);
|
2017-09-05 20:25:40 +02:00
|
|
|
}
|
2018-11-16 07:15:34 +01:00
|
|
|
|
2020-05-17 23:45:08 +02:00
|
|
|
static void update_hide_config() {
|
2020-12-31 07:11:24 +01:00
|
|
|
char sql[64];
|
|
|
|
sprintf(sql, "REPLACE INTO settings (key,value) VALUES('%s',%d)",
|
|
|
|
DB_SETTING_KEYS[HIDE_CONFIG], hide_state);
|
|
|
|
char *err = db_exec(sql);
|
|
|
|
db_err(err);
|
2018-11-16 07:15:34 +01:00
|
|
|
}
|
|
|
|
|
2020-05-17 23:45:08 +02:00
|
|
|
int launch_magiskhide() {
|
2020-12-31 07:11:24 +01:00
|
|
|
mutex_guard g(hide_state_lock);
|
2020-05-17 08:31:30 +02:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
if (SDK_INT < 19)
|
|
|
|
return DAEMON_ERROR;
|
2019-01-20 23:52:19 +01:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
if (hide_state)
|
|
|
|
return HIDE_IS_ENABLED;
|
2018-11-16 07:15:34 +01:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
if (access("/proc/1/ns/mnt", F_OK) != 0)
|
|
|
|
return HIDE_NO_NS;
|
2020-05-17 23:45:08 +02:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
if (procfp == nullptr && (procfp = opendir("/proc")) == nullptr)
|
|
|
|
return DAEMON_ERROR;
|
2019-02-14 10:08:05 +01:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
LOGI("* Starting MagiskHide\n");
|
2018-11-16 07:15:34 +01:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
// Initialize the mutex lock
|
|
|
|
pthread_mutex_init(&monitor_lock, nullptr);
|
2020-06-28 15:30:38 +02:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
// Initialize the hide list
|
|
|
|
if (!init_list())
|
|
|
|
return DAEMON_ERROR;
|
2019-02-14 02:16:26 +01:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
hide_sensitive_props();
|
|
|
|
if (DAEMON_STATE >= STATE_BOOT_COMPLETE || DAEMON_STATE == STATE_NONE)
|
|
|
|
hide_late_sensitive_props();
|
2018-11-16 07:15:34 +01:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
// Start monitoring
|
|
|
|
void *(*start)(void*) = [](void*) -> void* { proc_monitor(); };
|
|
|
|
if (xpthread_create(&proc_monitor_thread, nullptr, start, nullptr))
|
|
|
|
return DAEMON_ERROR;
|
2018-11-16 07:15:34 +01:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
hide_state = true;
|
|
|
|
update_hide_config();
|
|
|
|
return DAEMON_SUCCESS;
|
2018-11-16 07:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int stop_magiskhide() {
|
2020-12-31 07:11:24 +01:00
|
|
|
mutex_guard g(hide_state_lock);
|
2020-05-17 23:45:08 +02:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
if (hide_state) {
|
|
|
|
LOGI("* Stopping MagiskHide\n");
|
|
|
|
pthread_kill(proc_monitor_thread, SIGTERMTHRD);
|
|
|
|
}
|
2018-11-16 07:15:34 +01:00
|
|
|
|
2020-12-31 07:11:24 +01:00
|
|
|
hide_state = false;
|
|
|
|
update_hide_config();
|
|
|
|
return DAEMON_SUCCESS;
|
2018-11-16 07:15:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void auto_start_magiskhide() {
|
2020-12-31 07:11:24 +01:00
|
|
|
if (hide_enabled()) {
|
|
|
|
pthread_kill(proc_monitor_thread, SIGALRM);
|
|
|
|
hide_late_sensitive_props();
|
|
|
|
} else if (SDK_INT >= 19) {
|
|
|
|
db_settings dbs;
|
|
|
|
get_db_settings(dbs, HIDE_CONFIG);
|
|
|
|
if (dbs[HIDE_CONFIG])
|
|
|
|
launch_magiskhide();
|
|
|
|
}
|
2018-11-16 07:15:34 +01:00
|
|
|
}
|
2019-05-26 01:08:53 +02:00
|
|
|
|
|
|
|
void test_proc_monitor() {
|
2020-12-31 07:11:24 +01:00
|
|
|
if (procfp == nullptr && (procfp = opendir("/proc")) == nullptr)
|
|
|
|
exit(1);
|
|
|
|
proc_monitor();
|
2019-05-26 01:08:53 +02:00
|
|
|
}
|