Magisk/native/jni/magiskhide/proc_monitor.cpp

194 lines
4.5 KiB
C++
Raw Normal View History

2018-11-01 18:23:12 +01:00
/* proc_monitor.cpp - 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>
2018-07-13 16:14:32 +02:00
#include <fcntl.h>
2017-04-06 00:12:29 +02:00
#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"
2018-07-02 16:11:28 +02:00
#include "daemon.h"
2018-11-03 08:06:01 +01:00
#include "utils.h"
2016-12-30 19:44:24 +01:00
#include "magiskhide.h"
2018-09-27 09:56:56 +02:00
#include "flags.h"
2016-12-30 19:44:24 +01:00
2018-07-02 16:11:28 +02:00
static int sockfd = -1;
extern char *system_block, *vendor_block, *magiskloop;
2017-04-07 01:50:02 +02:00
2017-04-06 00:12:29 +02:00
// Workaround for the lack of pthread_cancel
2018-11-01 18:23:12 +01:00
static void term_thread(int) {
LOGD("proc_monitor: running cleanup\n");
2018-11-07 08:10:38 +01:00
hide_list.clear(true);
2018-11-16 06:37:41 +01:00
hide_enabled = false;
2018-07-02 16:11:28 +02:00
close(sockfd);
sockfd = -1;
2018-11-01 18:23:12 +01:00
pthread_mutex_destroy(&list_lock);
LOGD("proc_monitor: terminating\n");
2018-11-07 08:10:38 +01:00
pthread_exit(nullptr);
2017-04-06 00:12:29 +02:00
}
2017-01-01 11:54:13 +01:00
2018-07-11 17:41:38 +02:00
static int read_ns(const int pid, struct stat *st) {
2017-07-02 19:02:11 +02:00
char path[32];
sprintf(path, "/proc/%d/ns/mnt", pid);
2018-07-11 17:41:38 +02:00
return stat(path, st);
2017-07-02 19:02:11 +02:00
}
2018-11-23 20:32:33 +01:00
static inline void lazy_unmount(const char* mountpoint) {
2018-01-11 17:23:38 +01:00
if (umount2(mountpoint, MNT_DETACH) != -1)
2017-07-10 17:39:33 +02:00
LOGD("hide_daemon: Unmounted (%s)\n", mountpoint);
}
static int parse_ppid(int pid) {
2018-11-23 20:32:33 +01:00
char path[32];
int ppid;
sprintf(path, "/proc/%d/stat", pid);
2018-11-23 20:32:33 +01:00
FILE *stat = fopen(path, "r");
if (stat == nullptr)
return -1;
/* PID COMM STATE PPID ..... */
2018-11-23 20:32:33 +01:00
fscanf(stat, "%*d %*s %*c %d", &ppid);
return ppid;
}
static void hide_daemon(int pid) {
2017-07-10 17:39:33 +02:00
LOGD("hide_daemon: start unmount for pid=[%d]\n", pid);
2018-11-23 20:32:33 +01:00
char buffer[4096];
Vector<CharArray> mounts;
2017-07-10 17:39:33 +02:00
manage_selinux();
2017-07-18 06:26:23 +02:00
clean_magisk_props();
2017-07-10 17:39:33 +02:00
if (switch_mnt_ns(pid))
goto exit;
2017-07-10 17:39:33 +02:00
2018-11-13 08:07:02 +01:00
snprintf(buffer, sizeof(buffer), "/proc/%d", pid);
chdir(buffer);
2017-07-10 17:39:33 +02:00
2018-11-13 08:07:02 +01:00
file_to_vector("mounts", mounts);
2018-06-16 23:16:52 +02:00
// Unmount dummy skeletons and /sbin links
2018-11-01 18:23:12 +01:00
for (auto &s : mounts) {
2018-11-07 08:10:38 +01:00
if (s.contains("tmpfs /system/") || s.contains("tmpfs /vendor/") || s.contains("tmpfs /sbin")) {
2018-11-01 18:23:12 +01:00
sscanf(s, "%*s %4096s", buffer);
2017-07-10 17:39:33 +02:00
lazy_unmount(buffer);
}
}
2018-11-01 18:23:12 +01:00
mounts.clear();
2017-07-10 17:39:33 +02:00
// Re-read mount infos
2018-11-13 08:07:02 +01:00
file_to_vector("mounts", mounts);
2017-07-10 17:39:33 +02:00
2018-06-16 23:16:52 +02:00
// Unmount everything under /system, /vendor, and loop mounts
2018-11-01 18:23:12 +01:00
for (auto &s : mounts) {
if ((s.contains(" /system/") || s.contains(" /vendor/")) &&
(s.contains(system_block) || s.contains(vendor_block) || s.contains(magiskloop))) {
2018-11-01 18:23:12 +01:00
sscanf(s, "%*s %4096s", buffer);
2017-07-10 17:39:33 +02:00
lazy_unmount(buffer);
}
}
exit:
// Send resume signal
kill(pid, SIGCONT);
_exit(0);
2017-07-10 17:39:33 +02:00
}
2017-04-21 18:54:08 +02:00
void proc_monitor() {
// Unblock user signals
sigset_t block_set;
sigemptyset(&block_set);
sigaddset(&block_set, TERM_THREAD);
pthread_sigmask(SIG_UNBLOCK, &block_set, NULL);
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 = term_thread;
sigaction(TERM_THREAD, &act, NULL);
2017-05-07 21:11:14 +02:00
if (access("/proc/1/ns/mnt", F_OK) != 0) {
2017-07-10 17:39:33 +02:00
LOGE("proc_monitor: Your kernel doesn't support mount namespace :(\n");
term_thread(TERM_THREAD);
2017-07-10 17:39:33 +02:00
}
2018-10-12 06:50:47 +02:00
// Connect to the log daemon
sockfd = connect_log_daemon();
if (sockfd < 0)
2018-11-23 20:32:33 +01:00
pthread_exit(nullptr);
2018-10-12 06:50:47 +02:00
write_int(sockfd, HIDE_CONNECT);
FILE *log_in = fdopen(sockfd, "r");
char buf[4096];
while (fgets(buf, sizeof(buf), log_in)) {
2018-11-23 20:32:33 +01:00
char *ss = strchr(buf, '[') + 1;
2018-10-12 06:50:47 +02:00
int pid, ppid, num = 0;
char *pos = ss, proc[256];
struct stat ns, pns;
2018-11-23 20:32:33 +01:00
while((pos = strchr(pos, ','))) {
*pos = ' ';
2018-10-12 06:50:47 +02:00
++num;
}
2018-11-23 20:32:33 +01:00
if(sscanf(ss, num == 6 ? "%*d %d %*d %*d %256s" : "%*d %d %*d %256s", &pid, proc) != 2)
2018-10-12 06:50:47 +02:00
continue;
// Make sure our target is alive
2018-11-23 20:32:33 +01:00
if ((ppid = parse_ppid(pid)) < 0 || read_ns(ppid, &pns))
2018-10-12 06:50:47 +02:00
continue;
// Allow hiding sub-services of applications
char *colon = strchr(proc, ':');
if (colon)
*colon = '\0';
2018-11-01 18:23:12 +01:00
bool hide = false;
pthread_mutex_lock(&list_lock);
for (auto &s : hide_list) {
2018-11-07 08:10:38 +01:00
if (s == proc) {
2018-11-01 18:23:12 +01:00
hide = true;
2018-10-12 06:50:47 +02:00
break;
}
2018-10-12 06:50:47 +02:00
}
2018-11-01 18:23:12 +01:00
pthread_mutex_unlock(&list_lock);
2018-11-23 20:32:33 +01:00
if (!hide)
2018-10-12 06:50:47 +02:00
continue;
2018-11-23 20:32:33 +01:00
while (read_ns(pid, &ns) == 0 && ns.st_dev == pns.st_dev && ns.st_ino == pns.st_ino)
usleep(500);
2018-10-12 06:50:47 +02:00
// Send pause signal ASAP
if (kill(pid, SIGSTOP) == -1)
continue;
// Restore the colon so we can log the actual process name
if (colon)
*colon = ':';
#ifdef MAGISK_DEBUG
2018-10-12 06:50:47 +02:00
LOGI("proc_monitor: %s (PID=[%d] ns=%llu)(PPID=[%d] ns=%llu)\n",
proc, pid, ns.st_ino, ppid, pns.st_ino);
#else
2018-10-12 06:50:47 +02:00
LOGI("proc_monitor: %s\n", proc);
#endif
2017-07-10 17:39:33 +02:00
2018-10-12 06:50:47 +02:00
/*
* The setns system call do not support multithread processes
* We have to fork a new process, setns, then do the unmounts
*/
if (fork_dont_care() == 0)
hide_daemon(pid);
2017-06-02 22:31:01 +02:00
}
pthread_exit(nullptr);
}