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
|
|
|
*
|
2019-02-12 15:12:03 +01:00
|
|
|
* We monitor the listed APK files from /data/app until they get opened
|
|
|
|
* via inotify to detect a new app launch.
|
|
|
|
*
|
|
|
|
* If it's a target 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>
|
2019-02-12 15:12:03 +01:00
|
|
|
#include <sys/inotify.h>
|
2017-04-06 00:12:29 +02:00
|
|
|
#include <sys/types.h>
|
2017-04-09 01:25:10 +02:00
|
|
|
#include <sys/wait.h>
|
2017-07-10 17:39:33 +02:00
|
|
|
#include <sys/mount.h>
|
2019-01-20 05:59:37 +01:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2019-02-14 02:16:26 +01:00
|
|
|
#include <map>
|
2019-02-18 09:05:13 +01:00
|
|
|
#include <algorithm>
|
2017-04-06 00:12:29 +02:00
|
|
|
|
2019-02-10 07:05:19 +01:00
|
|
|
#include <magisk.h>
|
|
|
|
#include <utils.h>
|
|
|
|
|
2016-12-30 19:44:24 +01:00
|
|
|
#include "magiskhide.h"
|
|
|
|
|
2019-01-20 05:59:37 +01:00
|
|
|
using namespace std;
|
|
|
|
|
2019-02-12 08:14:57 +01:00
|
|
|
extern char *system_block, *vendor_block, *data_block;
|
2017-04-07 01:50:02 +02:00
|
|
|
|
2019-02-13 12:16:26 +01:00
|
|
|
static int inotify_fd = -1;
|
2019-02-18 09:05:13 +01:00
|
|
|
static set<int> hide_uid;
|
2019-02-13 12:16:26 +01: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) {
|
2017-04-09 01:25:10 +02:00
|
|
|
LOGD("proc_monitor: running cleanup\n");
|
2019-01-20 05:59:37 +01:00
|
|
|
hide_list.clear();
|
2019-02-13 12:16:26 +01:00
|
|
|
hide_uid.clear();
|
2018-11-16 06:37:41 +01:00
|
|
|
hide_enabled = false;
|
2018-11-01 18:23:12 +01:00
|
|
|
pthread_mutex_destroy(&list_lock);
|
2019-02-13 12:16:26 +01:00
|
|
|
close(inotify_fd);
|
|
|
|
inotify_fd = -1;
|
2018-11-01 18:23:12 +01:00
|
|
|
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
|
|
|
|
2019-02-12 15:12:03 +01:00
|
|
|
static inline int read_ns(const int pid, struct stat *st) {
|
2017-07-02 19:02:11 +02:00
|
|
|
char path[32];
|
2018-06-19 19:20:49 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-02-12 15:12:03 +01:00
|
|
|
static inline int parse_ppid(const int pid) {
|
2018-11-23 20:32:33 +01:00
|
|
|
char path[32];
|
|
|
|
int ppid;
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2018-06-19 19:20:49 +02:00
|
|
|
sprintf(path, "/proc/%d/stat", pid);
|
2018-11-24 21:53:15 +01:00
|
|
|
FILE *stat = fopen(path, "re");
|
2018-11-23 20:32:33 +01:00
|
|
|
if (stat == nullptr)
|
2018-11-13 08:11:02 +01:00
|
|
|
return -1;
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2018-06-19 19:20:49 +02:00
|
|
|
/* PID COMM STATE PPID ..... */
|
2018-11-23 20:32:33 +01:00
|
|
|
fscanf(stat, "%*d %*s %*c %d", &ppid);
|
2018-11-24 03:15:44 +01:00
|
|
|
fclose(stat);
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2018-06-19 19:20:49 +02:00
|
|
|
return ppid;
|
|
|
|
}
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-18 09:25:21 +01:00
|
|
|
static bool is_snet(const int pid) {
|
2019-02-13 01:04:27 +01:00
|
|
|
char path[32];
|
|
|
|
char buf[64];
|
|
|
|
int fd;
|
|
|
|
ssize_t len;
|
|
|
|
|
|
|
|
sprintf(path, "/proc/%d/cmdline", pid);
|
2019-02-18 09:25:21 +01:00
|
|
|
fd = open(path, O_RDONLY | O_CLOEXEC);
|
2019-02-13 01:04:27 +01:00
|
|
|
if (fd == -1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
len = read(fd, buf, sizeof(buf));
|
|
|
|
close(fd);
|
|
|
|
if (len == -1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return !strcmp(buf, SAFETYNET_PROCESS);
|
|
|
|
}
|
|
|
|
|
2018-04-29 09:10:35 +02:00
|
|
|
static void hide_daemon(int pid) {
|
2018-11-23 20:32:33 +01:00
|
|
|
char buffer[4096];
|
2017-07-10 17:39:33 +02:00
|
|
|
if (switch_mnt_ns(pid))
|
2017-10-08 23:05:52 +02:00
|
|
|
goto exit;
|
2017-07-10 17:39:33 +02:00
|
|
|
|
2019-02-18 04:30:23 +01:00
|
|
|
LOGD("hide_daemon: handling PID=[%d]\n", pid);
|
|
|
|
manage_selinux();
|
|
|
|
clean_magisk_props();
|
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-06-16 23:16:52 +02:00
|
|
|
// Unmount dummy skeletons and /sbin links
|
2019-02-18 04:30:23 +01:00
|
|
|
file_readline("mounts", [&](string_view &s) -> bool {
|
2019-01-20 05:59:37 +01:00
|
|
|
if (str_contains(s, "tmpfs /system/") || str_contains(s, "tmpfs /vendor/") ||
|
|
|
|
str_contains(s, "tmpfs /sbin")) {
|
2019-02-18 04:30:23 +01:00
|
|
|
sscanf(s.data(), "%*s %4096s", buffer);
|
2017-07-10 17:39:33 +02:00
|
|
|
lazy_unmount(buffer);
|
|
|
|
}
|
2019-02-18 04:30:23 +01:00
|
|
|
return true;
|
|
|
|
});
|
2017-07-10 17:39:33 +02:00
|
|
|
|
2019-02-12 08:14:57 +01:00
|
|
|
// Unmount everything under /system, /vendor, and data mounts
|
2019-02-18 04:30:23 +01:00
|
|
|
file_readline("mounts", [&](string_view &s) -> bool {
|
2019-01-20 05:59:37 +01:00
|
|
|
if ((str_contains(s, " /system/") || str_contains(s, " /vendor/")) &&
|
2019-02-18 04:30:23 +01:00
|
|
|
(str_contains(s, system_block) || str_contains(s, vendor_block) ||
|
|
|
|
str_contains(s, data_block))) {
|
|
|
|
sscanf(s.data(), "%*s %4096s", buffer);
|
2017-07-10 17:39:33 +02:00
|
|
|
lazy_unmount(buffer);
|
|
|
|
}
|
2019-02-18 04:30:23 +01:00
|
|
|
return true;
|
|
|
|
});
|
2017-07-10 17:39:33 +02:00
|
|
|
|
2017-10-08 23:05:52 +02:00
|
|
|
exit:
|
|
|
|
// Send resume signal
|
|
|
|
kill(pid, SIGCONT);
|
|
|
|
_exit(0);
|
2017-07-10 17:39:33 +02:00
|
|
|
}
|
|
|
|
|
2019-02-14 02:16:26 +01:00
|
|
|
// A mapping from pid to namespace inode to avoid time-consuming GC
|
|
|
|
static map<int, uint64_t> pid_ns_map;
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-14 02:16:26 +01:00
|
|
|
static bool process_pid(int pid) {
|
|
|
|
// We're only interested in PIDs > 1000
|
|
|
|
if (pid <= 1000)
|
|
|
|
return true;
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-16 18:34:37 +01:00
|
|
|
struct stat ns, pns;
|
2019-02-18 09:44:38 +01:00
|
|
|
int ppid;
|
2019-02-14 02:16:26 +01:00
|
|
|
int uid = get_uid(pid);
|
|
|
|
if (hide_uid.count(uid)) {
|
|
|
|
// Make sure we can read mount namespace
|
2019-02-18 09:44:38 +01:00
|
|
|
if ((ppid = parse_ppid(pid)) < 0 || read_ns(pid, &ns) || read_ns(ppid, &pns))
|
2019-02-16 18:34:37 +01:00
|
|
|
return true;
|
|
|
|
// mount namespace is not separated, we only unmount once
|
|
|
|
if (ns.st_dev == pns.st_dev && ns.st_ino == pns.st_ino)
|
2019-02-14 02:16:26 +01:00
|
|
|
return true;
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-14 02:16:26 +01:00
|
|
|
// Check if it's a process we haven't already hijacked
|
|
|
|
auto pos = pid_ns_map.find(pid);
|
|
|
|
if (pos != pid_ns_map.end() && pos->second == ns.st_ino)
|
|
|
|
return true;
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-14 02:16:26 +01:00
|
|
|
if (uid == gms_uid) {
|
|
|
|
// Check /proc/uid/cmdline to see if it's SAFETYNET_PROCESS
|
2019-02-18 09:25:21 +01:00
|
|
|
if (!is_snet(pid))
|
2019-02-14 02:16:26 +01:00
|
|
|
return true;
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-14 02:16:26 +01:00
|
|
|
LOGD("proc_monitor: " SAFETYNET_PROCESS "\n");
|
|
|
|
}
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-14 02:16:26 +01:00
|
|
|
// Send pause signal ASAP
|
|
|
|
if (kill(pid, SIGSTOP) == -1)
|
|
|
|
return true;
|
2019-02-13 01:04:27 +01:00
|
|
|
|
2019-02-14 02:16:26 +01:00
|
|
|
pid_ns_map[pid] = ns.st_ino;
|
|
|
|
LOGI("proc_monitor: UID=[%d] PID=[%d] ns=[%llu]\n", uid, pid, ns.st_ino);
|
2019-02-13 01:04:27 +01:00
|
|
|
|
2019-02-14 02:16:26 +01: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);
|
2019-02-12 15:12:03 +01:00
|
|
|
}
|
2019-02-14 02:16:26 +01:00
|
|
|
return true;
|
2019-02-12 15:12:03 +01:00
|
|
|
}
|
|
|
|
|
2019-02-14 06:52:59 +01:00
|
|
|
static int xinotify_add_watch(int fd, const char* path, uint32_t mask) {
|
|
|
|
int ret = inotify_add_watch(fd, path, mask);
|
|
|
|
if (ret >= 0) {
|
2019-02-16 08:30:48 +01:00
|
|
|
LOGD("proc_monitor: Monitoring %s\n", path);
|
2019-02-14 06:52:59 +01:00
|
|
|
} else {
|
|
|
|
PLOGE("proc_monitor: Monitor %s", path);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-02-14 10:08:05 +01:00
|
|
|
static int new_inotify;
|
2019-02-18 09:05:13 +01:00
|
|
|
static const string_view APK_EXT(".apk");
|
2019-02-18 09:18:11 +01:00
|
|
|
static vector<string> hide_apks;
|
2019-02-18 09:05:13 +01:00
|
|
|
|
|
|
|
static bool parse_packages_xml(string_view &s) {
|
|
|
|
if (!str_starts(s, "<package "))
|
|
|
|
return true;
|
|
|
|
/* <package key1="value1" key2="value2"....> */
|
|
|
|
char *start = (char *) s.data();
|
|
|
|
start[s.length() - 2] = '\0'; /* Remove trailing '>' */
|
|
|
|
char key[32], value[1024];
|
|
|
|
char *tok;
|
|
|
|
start += 9; /* Skip '<package ' */
|
|
|
|
while ((tok = strtok_r(nullptr, " ", &start))) {
|
|
|
|
sscanf(tok, "%[^=]=\"%[^\"]", key, value);
|
|
|
|
string_view value_view(value);
|
|
|
|
if (strcmp(key, "name") == 0) {
|
|
|
|
if (std::count(hide_list.begin(), hide_list.end(), value_view) == 0)
|
|
|
|
return true;
|
|
|
|
} else if (strcmp(key, "codePath") == 0) {
|
|
|
|
if (ends_with(value_view, APK_EXT)) {
|
|
|
|
// Directly add to inotify list
|
2019-02-18 09:18:11 +01:00
|
|
|
hide_apks.emplace_back(value);
|
2019-02-18 09:05:13 +01:00
|
|
|
} else {
|
|
|
|
DIR *dir = opendir(value);
|
|
|
|
if (dir == nullptr)
|
|
|
|
return true;
|
|
|
|
struct dirent *entry;
|
|
|
|
while ((entry = xreaddir(dir))) {
|
|
|
|
if (ends_with(entry->d_name, APK_EXT)) {
|
|
|
|
strcpy(value + value_view.length(), "/");
|
|
|
|
strcpy(value + value_view.length() + 1, entry->d_name);
|
2019-02-18 09:18:11 +01:00
|
|
|
hide_apks.emplace_back(value);
|
2019-02-18 09:05:13 +01:00
|
|
|
break;
|
|
|
|
}
|
2019-02-12 15:12:03 +01:00
|
|
|
}
|
2019-02-18 09:05:13 +01:00
|
|
|
closedir(dir);
|
2019-02-12 15:12:03 +01:00
|
|
|
}
|
2019-02-18 09:05:13 +01:00
|
|
|
} else if (strcmp(key, "userId") == 0 || strcmp(key, "sharedUserId") == 0) {
|
|
|
|
hide_uid.insert(parse_int(value));
|
2019-02-12 15:12:03 +01:00
|
|
|
}
|
|
|
|
}
|
2019-02-18 09:05:13 +01:00
|
|
|
return true;
|
2019-02-12 15:12:03 +01:00
|
|
|
}
|
|
|
|
|
2019-02-18 09:05:13 +01:00
|
|
|
void update_inotify_mask() {
|
2019-02-14 10:08:05 +01:00
|
|
|
new_inotify = inotify_init();
|
|
|
|
if (new_inotify < 0) {
|
2019-02-12 15:12:03 +01:00
|
|
|
LOGE("proc_monitor: Cannot initialize inotify: %s\n", strerror(errno));
|
|
|
|
term_thread(TERM_THREAD);
|
|
|
|
}
|
2019-02-18 09:05:13 +01:00
|
|
|
fcntl(new_inotify, F_SETFD, FD_CLOEXEC);
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-16 08:30:48 +01:00
|
|
|
LOGD("proc_monitor: Updating inotify list\n");
|
2019-02-18 09:18:11 +01:00
|
|
|
hide_apks.clear();
|
2019-02-16 08:24:35 +01:00
|
|
|
{
|
|
|
|
MutexGuard lock(list_lock);
|
2019-02-18 09:05:13 +01:00
|
|
|
hide_uid.clear();
|
|
|
|
file_readline("/data/system/packages.xml", parse_packages_xml, true);
|
2019-02-16 08:24:35 +01:00
|
|
|
}
|
2019-02-12 15:12:03 +01:00
|
|
|
|
2019-02-18 09:18:11 +01:00
|
|
|
// Swap out and close old inotify_fd
|
2019-02-14 10:24:30 +01:00
|
|
|
int tmp = inotify_fd;
|
|
|
|
inotify_fd = new_inotify;
|
|
|
|
if (tmp >= 0)
|
2019-02-14 10:08:05 +01:00
|
|
|
close(tmp);
|
2019-02-18 09:18:11 +01:00
|
|
|
|
|
|
|
for (auto apk : hide_apks)
|
|
|
|
xinotify_add_watch(inotify_fd, apk.data(), IN_OPEN);
|
|
|
|
xinotify_add_watch(inotify_fd, "/data/system", IN_CLOSE_WRITE);
|
2019-02-12 15:12:03 +01:00
|
|
|
}
|
|
|
|
|
2017-04-21 18:54:08 +02:00
|
|
|
void proc_monitor() {
|
2017-11-14 22:15:58 +01:00
|
|
|
// Unblock user signals
|
|
|
|
sigset_t block_set;
|
|
|
|
sigemptyset(&block_set);
|
|
|
|
sigaddset(&block_set, TERM_THREAD);
|
2019-01-20 05:59:37 +01:00
|
|
|
pthread_sigmask(SIG_UNBLOCK, &block_set, nullptr);
|
2017-11-14 22:15:58 +01:00
|
|
|
|
2017-04-06 00:12:29 +02:00
|
|
|
// Register the cancel signal
|
2019-01-20 05:59:37 +01:00
|
|
|
struct sigaction act{};
|
2017-11-08 20:05:01 +01:00
|
|
|
act.sa_handler = term_thread;
|
2019-01-20 05:59:37 +01:00
|
|
|
sigaction(TERM_THREAD, &act, nullptr);
|
2017-05-07 21:11:14 +02:00
|
|
|
|
2019-02-12 15:12:03 +01:00
|
|
|
// Read inotify events
|
|
|
|
ssize_t len;
|
2019-02-18 09:05:13 +01:00
|
|
|
char buf[512];
|
2019-02-16 08:49:36 +01:00
|
|
|
auto event = reinterpret_cast<inotify_event *>(buf);
|
2019-02-14 10:08:05 +01:00
|
|
|
while ((len = read(inotify_fd, buf, sizeof(buf))) >= 0) {
|
2019-02-16 08:49:36 +01:00
|
|
|
if (len < sizeof(*event))
|
|
|
|
continue;
|
|
|
|
if (event->mask & IN_OPEN) {
|
|
|
|
// Since we're just watching files,
|
|
|
|
// extracting file name is not possible from querying event
|
|
|
|
MutexGuard lock(list_lock);
|
|
|
|
crawl_procfs(process_pid);
|
2019-02-18 09:05:13 +01:00
|
|
|
} else if ((event->mask & IN_CLOSE_WRITE) && strcmp(event->name, "packages.xml") == 0) {
|
|
|
|
LOGD("proc_monitor: /data/system/packages.xml updated\n");
|
|
|
|
update_inotify_mask();
|
2019-02-12 15:12:03 +01:00
|
|
|
}
|
2017-06-02 22:31:01 +02:00
|
|
|
}
|
2019-02-14 10:08:05 +01:00
|
|
|
PLOGE("proc_monitor: read inotify");
|
2017-03-24 20:45:12 +01:00
|
|
|
}
|