Magisk/native/jni/magiskhide/hide_utils.cpp

294 lines
6.5 KiB
C++
Raw Normal View History

#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>
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;
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
// Leave /proc fd opened as we're going to read from it repeatedly
static DIR *procfp;
void crawl_procfs(const function<bool(int)> &fn) {
rewinddir(procfp);
crawl_procfs(procfp, fn);
}
void crawl_procfs(DIR *dir, const function<bool(int)> &fn) {
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() {
mutex_guard g(hide_state_lock);
return hide_state;
}
void set_hide_state(bool state) {
mutex_guard g(hide_state_lock);
hide_state = state;
}
static bool proc_name_match(int pid, const char *name) {
char buf[4019];
2018-10-13 03:46:09 +02:00
sprintf(buf, "/proc/%d/cmdline", pid);
if (FILE *f = fopen(buf, "re")) {
fgets(buf, sizeof(buf), f);
fclose(f);
if (strcmp(buf, name) == 0)
return true;
}
return false;
2018-10-13 03:46:09 +02:00
}
static void kill_process(const char *name, bool multi = false) {
crawl_procfs([=](int pid) -> bool {
if (proc_name_match(pid, name)) {
if (kill(pid, SIGTERM) == 0)
LOGD("hide_utils: killed PID=[%d] (%s)\n", pid, name);
return multi;
}
return true;
});
}
2019-09-01 08:16:12 +02:00
static bool validate(const char *s) {
bool dot = false;
for (char c; (c = *s); ++s) {
if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') ||
(c >= '0' && c <= '9') || c == '_' || c == ':') {
2019-09-01 08:16:12 +02:00
continue;
}
if (c == '.') {
dot = true;
continue;
}
return false;
}
2020-05-23 05:25:18 +02:00
return dot;
2019-09-01 08:16:12 +02:00
}
static int add_list(const char *pkg, const char *proc = "") {
if (proc[0] == '\0')
proc = pkg;
2019-09-01 08:16:12 +02:00
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;
2017-04-20 16:45:56 +02:00
// 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);
LOGI("hide_list add: [%s/%s]\n", pkg, proc);
2017-04-20 16:45:56 +02:00
// Critical region
{
2019-09-26 05:55:39 +02:00
mutex_guard lock(monitor_lock);
hide_set.emplace(pkg, proc);
}
2018-11-01 18:23:12 +01:00
kill_process(proc);
2017-05-05 10:13:26 +02:00
return DAEMON_SUCCESS;
2017-04-20 16:45:56 +02:00
}
int add_list(int client) {
char *pkg = read_string(client);
char *proc = read_string(client);
int ret = add_list(pkg, proc);
free(pkg);
free(proc);
update_uid_map();
2018-11-07 08:10:38 +01:00
return ret;
}
2017-04-20 16:45:56 +02:00
static int rm_list(const char *pkg, const char *proc = "") {
{
// Critical region
2019-09-26 05:55:39 +02:00
mutex_guard lock(monitor_lock);
bool remove = false;
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]\n", it->second.data());
it = hide_set.erase(it);
} else {
++it;
}
2017-04-20 16:45:56 +02:00
}
if (!remove)
return HIDE_ITEM_NOT_EXIST;
2017-04-20 16:45:56 +02:00
}
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
}
int rm_list(int client) {
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();
2018-11-07 08:10:38 +01:00
return ret;
}
static void init_list(const char *pkg, const char *proc) {
LOGI("hide_list init: [%s/%s]\n", pkg, proc);
hide_set.emplace(pkg, proc);
kill_process(proc);
}
#define SNET_PROC "com.google.android.gms.unstable"
#define GMS_PKG "com.google.android.gms"
#define MICROG_PKG "org.microg.gms.droidguard"
static bool init_list() {
2018-11-01 18:23:12 +01:00
LOGD("hide_list: initialize\n");
2017-04-20 16:45:56 +02:00
2019-03-06 14:16:12 +01:00
char *err = db_exec("SELECT * FROM hidelist", [](db_row &row) -> bool {
init_list(row["package_name"].data(), row["process"].data());
return true;
});
db_err_cmd(err, return false);
2018-11-01 18:23:12 +01:00
// If Android Q+, also kill blastula pool
if (SDK_INT >= 29) {
kill_process("usap32", true);
kill_process("usap64", true);
}
// Add SafetyNet by default
init_list(GMS_PKG, SNET_PROC);
init_list(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")
init_list(GMS_PKG, GMS_PKG);
update_uid_map();
2018-11-07 08:10:38 +01:00
return true;
2017-04-20 16:45:56 +02:00
}
void ls_list(int client) {
2018-11-16 07:49:15 +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());
2018-11-16 07:49:15 +01:00
fclose(out);
write_int(client, DAEMON_SUCCESS);
close(client);
}
2018-11-16 07:15:34 +01:00
static void update_hide_config() {
2018-11-16 07:15:34 +01:00
char sql[64];
sprintf(sql, "REPLACE INTO settings (key,value) VALUES('%s',%d)",
2020-05-17 08:31:30 +02:00
DB_SETTING_KEYS[HIDE_CONFIG], hide_state);
char *err = db_exec(sql);
db_err(err);
2018-11-16 07:15:34 +01:00
}
int launch_magiskhide() {
mutex_guard g(hide_state_lock);
2020-05-17 08:31:30 +02:00
2019-01-20 23:52:19 +01:00
if (SDK_INT < 19)
return DAEMON_ERROR;
2019-01-20 23:52:19 +01:00
2020-05-17 08:31:30 +02:00
if (hide_state)
return HIDE_IS_ENABLED;
2018-11-16 07:15:34 +01:00
if (access("/proc/1/ns/mnt", F_OK) != 0)
return HIDE_NO_NS;
if (procfp == nullptr && (procfp = opendir("/proc")) == nullptr)
return DAEMON_ERROR;
2018-11-16 07:15:34 +01:00
LOGI("* Starting MagiskHide\n");
// Initialize the mutex lock
pthread_mutex_init(&monitor_lock, nullptr);
// Initialize the hide list
if (!init_list())
return DAEMON_ERROR;
2018-11-16 07:15:34 +01:00
hide_sensitive_props();
if (DAEMON_STATE >= STATE_BOOT_COMPLETE)
hide_late_sensitive_props();
2018-11-16 07:15:34 +01:00
// Start monitoring
void *(*start)(void*) = [](void*) -> void* { proc_monitor(); return nullptr; };
if (xpthread_create(&proc_monitor_thread, nullptr, start, nullptr))
return DAEMON_ERROR;
2018-11-16 07:15:34 +01:00
hide_state = true;
update_hide_config();
return DAEMON_SUCCESS;
2018-11-16 07:15:34 +01:00
}
int stop_magiskhide() {
2020-05-17 08:31:30 +02:00
mutex_guard g(hide_state_lock);
if (hide_state) {
LOGI("* Stopping MagiskHide\n");
pthread_kill(proc_monitor_thread, SIGTERMTHRD);
}
2018-11-16 07:15:34 +01:00
hide_state = false;
update_hide_config();
2018-11-16 07:15:34 +01:00
return DAEMON_SUCCESS;
}
void auto_start_magiskhide() {
2020-05-17 08:31:30 +02:00
if (hide_enabled()) {
pthread_kill(proc_monitor_thread, SIGZYGOTE);
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
}
}
void test_proc_monitor() {
if (procfp == nullptr && (procfp = opendir("/proc")) == nullptr)
exit(1);
proc_monitor();
exit(0);
}