Magisk/jni/magiskhide/proc_monitor.c

284 lines
6.8 KiB
C
Raw Normal View History

2017-07-10 17:39:33 +02:00
/* proc_monitor.c - Monitor am_proc_start events and unmount
2017-08-01 09:34:16 +02:00
*
2017-07-10 17:39:33 +02:00
* We monitor the logcat am_proc_start events. When a target starts up,
* we pause it ASAP, and fork a new process to join its mount namespace
* and do all the unmounting/mocking
2017-04-06 00:12:29 +02:00
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include <pthread.h>
#include <sys/types.h>
#include <sys/wait.h>
2017-07-10 17:39:33 +02:00
#include <sys/mount.h>
2017-04-06 00:12:29 +02:00
#include "magisk.h"
#include "utils.h"
2016-12-30 19:44:24 +01:00
#include "magiskhide.h"
2017-07-02 17:04:57 +02:00
static int zygote_num;
2017-07-10 17:39:33 +02:00
static char init_ns[32], zygote_ns[2][32], cache_block[256];
2017-09-13 09:45:07 +02:00
static int log_pid, log_fd, target_pid, has_cache = 1;
2017-05-07 21:11:14 +02:00
static char *buffer;
2017-04-07 01:50:02 +02:00
2017-04-06 00:12:29 +02:00
// Workaround for the lack of pthread_cancel
static void quit_pthread(int sig) {
2017-05-12 09:28:15 +02:00
err_handler = do_nothing;
LOGD("proc_monitor: running cleanup\n");
2017-04-20 16:45:56 +02:00
destroy_list();
2017-05-07 21:11:14 +02:00
free(buffer);
2017-04-20 16:45:56 +02:00
hideEnabled = 0;
2017-05-07 21:11:14 +02:00
// Kill the logging if needed
2017-07-10 17:39:33 +02:00
if (log_pid > 0) {
2017-04-18 13:32:50 +02:00
kill(log_pid, SIGTERM);
waitpid(log_pid, NULL, 0);
close(log_fd);
}
2017-07-10 17:39:33 +02:00
// Resume process if possible
if (target_pid > 0)
kill(target_pid, SIGCONT);
2017-04-21 18:54:08 +02:00
pthread_mutex_destroy(&hide_lock);
2017-05-07 21:11:14 +02:00
pthread_mutex_destroy(&file_lock);
LOGD("proc_monitor: terminating...\n");
pthread_exit(NULL);
2017-04-06 00:12:29 +02:00
}
2017-01-01 11:54:13 +01:00
2017-07-02 19:02:11 +02:00
static void proc_monitor_err() {
LOGD("proc_monitor: error occured, stopping magiskhide services\n");
quit_pthread(SIGUSR1);
}
2017-07-10 17:39:33 +02:00
static int read_namespace(const int pid, char* target, const size_t size) {
2017-07-02 19:02:11 +02:00
char path[32];
snprintf(path, sizeof(path), "/proc/%d/ns/mnt", pid);
2017-07-10 17:39:33 +02:00
if (access(path, R_OK) == -1)
return 1;
2017-07-02 19:02:11 +02:00
xreadlink(path, target, size);
2017-07-10 17:39:33 +02:00
return 0;
2017-07-02 19:02:11 +02:00
}
2017-04-07 01:50:02 +02:00
static void store_zygote_ns(int pid) {
2017-04-18 13:32:50 +02:00
if (zygote_num == 2) return;
2017-04-07 01:50:02 +02:00
do {
usleep(500);
read_namespace(pid, zygote_ns[zygote_num], 32);
} while (strcmp(zygote_ns[zygote_num], init_ns) == 0);
++zygote_num;
}
2017-07-10 17:39:33 +02:00
static void lazy_unmount(const char* mountpoint) {
if (umount2(mountpoint, MNT_DETACH) != -1)
LOGD("hide_daemon: Unmounted (%s)\n", mountpoint);
else
LOGD("hide_daemon: Unmount Failed (%s)\n", mountpoint);
}
static void hide_daemon_err() {
LOGD("hide_daemon: error occured, stopping magiskhide services\n");
_exit(-1);
}
static void hide_daemon(int pid) {
LOGD("hide_daemon: start unmount for pid=[%d]\n", pid);
// When an error occurs, report its failure to main process
err_handler = hide_daemon_err;
char *line;
struct vector mount_list;
manage_selinux();
relink_sbin();
2017-07-18 06:26:23 +02:00
clean_magisk_props();
2017-07-10 17:39:33 +02:00
if (switch_mnt_ns(pid))
return;
snprintf(buffer, PATH_MAX, "/proc/%d/mounts", pid);
vec_init(&mount_list);
file_to_vector(buffer, &mount_list);
// Find the cache block name if not found yet
2017-09-13 09:45:07 +02:00
if (has_cache && cache_block[0] == '\0') {
2017-07-10 17:39:33 +02:00
vec_for_each(&mount_list, line) {
if (strstr(line, " /cache ")) {
sscanf(line, "%256s", cache_block);
break;
}
}
2017-09-13 09:45:07 +02:00
if (strlen(cache_block) == 0)
has_cache = 0;
2017-07-10 17:39:33 +02:00
}
2017-09-13 09:45:07 +02:00
// Unmout cache mounts
if (has_cache) {
vec_for_each(&mount_list, line) {
if (strstr(line, cache_block) && (strstr(line, " /system/") || strstr(line, " /vendor/"))) {
sscanf(line, "%*s %4096s", buffer);
lazy_unmount(buffer);
}
}
}
// Unmount dummy skeletons, /sbin links, and mirrors
2017-07-10 17:39:33 +02:00
vec_for_each(&mount_list, line) {
2017-09-13 09:45:07 +02:00
if (strstr(line, "tmpfs /system") || strstr(line, "tmpfs /vendor") || strstr(line, "tmpfs /sbin") || strstr(line, MIRRDIR)) {
2017-07-10 17:39:33 +02:00
sscanf(line, "%*s %4096s", buffer);
lazy_unmount(buffer);
}
free(line);
}
vec_destroy(&mount_list);
// Re-read mount infos
snprintf(buffer, PATH_MAX, "/proc/%d/mounts", pid);
vec_init(&mount_list);
file_to_vector(buffer, &mount_list);
// Unmount any loop mounts and dummy mounts
vec_for_each(&mount_list, line) {
if (strstr(line, "/dev/block/loop") || strstr(line, DUMMDIR)) {
sscanf(line, "%*s %4096s", buffer);
lazy_unmount(buffer);
}
free(line);
}
// Free uo memory
vec_destroy(&mount_list);
}
2017-04-21 18:54:08 +02:00
void proc_monitor() {
2017-04-06 00:12:29 +02:00
// Register the cancel signal
2017-05-07 21:11:14 +02:00
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_handler = quit_pthread;
2017-05-12 09:28:15 +02:00
sigaction(SIGUSR1, &act, NULL);
2017-05-07 21:11:14 +02:00
2017-04-24 15:43:30 +02:00
// The error handler should stop magiskhide services
err_handler = proc_monitor_err;
2017-07-10 17:39:33 +02:00
log_pid = target_pid = -1;
2017-05-07 21:11:14 +02:00
buffer = xmalloc(PATH_MAX);
2017-07-10 17:39:33 +02:00
cache_block[0] = '\0';
2017-04-06 00:12:29 +02:00
// Get the mount namespace of init
2017-07-10 17:39:33 +02:00
if (read_namespace(1, init_ns, 32)) {
LOGE("proc_monitor: Your kernel doesn't support mount namespace :(\n");
proc_monitor_err();
}
2017-04-06 00:12:29 +02:00
LOGI("proc_monitor: init ns=%s\n", init_ns);
// Get the mount namespace of zygote
2017-07-02 17:04:57 +02:00
zygote_num = 0;
2017-04-17 10:36:49 +02:00
while(!zygote_num) {
// Check zygote every 2 secs
sleep(2);
ps_filter_proc_name("zygote", store_zygote_ns);
}
2017-05-03 20:58:37 +02:00
ps_filter_proc_name("zygote64", store_zygote_ns);
2017-04-06 00:12:29 +02:00
switch(zygote_num) {
case 1:
LOGI("proc_monitor: zygote ns=%s\n", zygote_ns[0]);
break;
case 2:
LOGI("proc_monitor: zygote ns=%s zygote64 ns=%s\n", zygote_ns[0], zygote_ns[1]);
2017-04-06 00:12:29 +02:00
break;
}
2017-06-02 22:31:01 +02:00
while (1) {
2017-07-10 17:39:33 +02:00
// Clear previous logcat buffer
2017-08-20 15:36:32 +02:00
exec_command_sync("logcat", "-b", "events", "-c", NULL);
2017-06-02 22:31:01 +02:00
// Monitor am_proc_start
2017-07-10 16:29:53 +02:00
log_fd = -1;
2017-08-20 15:36:32 +02:00
log_pid = exec_command(0, &log_fd, NULL, "logcat", "-b", "events", "-v", "raw", "-s", "am_proc_start", NULL);
2017-06-02 22:31:01 +02:00
2017-07-02 17:04:57 +02:00
if (log_pid < 0) continue;
if (kill(log_pid, 0)) continue;
2017-06-02 22:31:01 +02:00
while(fdgets(buffer, PATH_MAX, log_fd)) {
2017-07-10 17:39:33 +02:00
int pid, ret, comma = 0;
2017-06-02 22:31:01 +02:00
char *pos = buffer, *line, processName[256];
while(1) {
pos = strchr(pos, ',');
if(pos == NULL)
break;
pos[0] = ' ';
++comma;
}
2016-12-30 19:44:24 +01:00
2017-06-02 22:31:01 +02:00
if (comma == 6)
ret = sscanf(buffer, "[%*d %d %*d %*d %256s", &pid, processName);
else
ret = sscanf(buffer, "[%*d %d %*d %256s", &pid, processName);
if(ret != 2)
continue;
ret = 0;
// Critical region
pthread_mutex_lock(&hide_lock);
vec_for_each(hide_list, line) {
if (strcmp(processName, line) == 0) {
2017-07-10 17:39:33 +02:00
target_pid = pid;
2017-06-02 22:31:01 +02:00
while(1) {
ret = 1;
for (int i = 0; i < zygote_num; ++i) {
2017-07-10 17:39:33 +02:00
read_namespace(target_pid, buffer, 32);
2017-06-02 22:31:01 +02:00
if (strcmp(buffer, zygote_ns[i]) == 0) {
usleep(50);
ret = 0;
break;
}
2017-01-01 11:54:13 +01:00
}
2017-06-02 22:31:01 +02:00
if (ret) break;
2017-01-01 11:54:13 +01:00
}
2017-06-02 22:31:01 +02:00
// Send pause signal ASAP
2017-07-10 17:39:33 +02:00
if (kill(target_pid, SIGSTOP) == -1) continue;
LOGI("proc_monitor: %s (PID=%d ns=%s)\n", processName, target_pid, buffer);
/*
* The setns system call do not support multithread processes
* We have to fork a new process, setns, then do the unmounts
*/
int hide_pid = fork();
switch(hide_pid) {
case -1:
PLOGE("fork");
return;
case 0:
hide_daemon(target_pid);
_exit(0);
default:
break;
}
2017-01-01 11:54:13 +01:00
2017-07-10 17:39:33 +02:00
// Wait till the unmount process is done
waitpid(hide_pid, &ret, 0);
if (WEXITSTATUS(ret))
quit_pthread(SIGUSR1);
2017-07-10 17:39:33 +02:00
// All done, send resume signal
kill(target_pid, SIGCONT);
target_pid = -1;
2017-06-02 22:31:01 +02:00
break;
}
2016-12-30 19:44:24 +01:00
}
2017-06-02 22:31:01 +02:00
pthread_mutex_unlock(&hide_lock);
}
2016-12-30 19:44:24 +01:00
2017-06-02 22:31:01 +02:00
// For some reason it went here, restart logging
kill(log_pid, SIGTERM);
waitpid(log_pid, NULL, 0);
close(log_fd);
}
}