mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 10:35:26 +00:00
134 lines
3.0 KiB
C
134 lines
3.0 KiB
C
/* proc_monitor.c - Monitor am_proc_start events
|
|
*
|
|
* We monitor the logcat am_proc_start events, pause it,
|
|
* and send the target PID to hide daemon ASAP
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <pthread.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "magisk.h"
|
|
#include "utils.h"
|
|
#include "magiskhide.h"
|
|
|
|
/* WTF... the macro in the NDK pthread.h is broken.... */
|
|
#define pthread_cleanup_push_fix(routine, arg) \
|
|
pthread_cleanup_push(routine, arg) } while(0);
|
|
|
|
static void read_namespace(const int pid, char* target, const size_t size) {
|
|
char path[32];
|
|
snprintf(path, sizeof(path), "/proc/%d/ns/mnt", pid);
|
|
ssize_t len = readlink(path, target, size);
|
|
target[len] = '\0';
|
|
}
|
|
|
|
// Workaround for the lack of pthread_cancel
|
|
static void quit_pthread(int sig) {
|
|
pthread_exit(NULL);
|
|
}
|
|
|
|
static void cleanup_handler(void *arg) {
|
|
vec_deep_destroy(hide_list);
|
|
vec_deep_destroy(new_list);
|
|
free(hide_list);
|
|
free(new_list);
|
|
hide_list = new_list = NULL;
|
|
}
|
|
|
|
void *proc_monitor(void *args) {
|
|
// Register the cancel signal
|
|
signal(SIGUSR1, quit_pthread);
|
|
pthread_cleanup_push_fix(cleanup_handler, NULL);
|
|
|
|
int pid, zygote_num = 0;
|
|
char init_ns[32], zygote_ns[2][32], buffer[512];
|
|
FILE *p;
|
|
|
|
// Get the mount namespace of init
|
|
read_namespace(1, init_ns, 32);
|
|
LOGI("proc_monitor: init ns=%s\n", init_ns);
|
|
|
|
// Get the mount namespace of zygote
|
|
// TODO: Crawl through /proc to get process names
|
|
|
|
switch(zygote_num) {
|
|
case 1:
|
|
LOGI("proc_monitor: zygote ns=%s\n", zygote_ns[0]);
|
|
break;
|
|
case 2:
|
|
LOGI("proc_monitor: zygote (1) ns=%s (2) ns=%s\n", zygote_ns[0], zygote_ns[1]);
|
|
break;
|
|
}
|
|
|
|
// Monitor am_proc_start (the command shall never end)
|
|
p = popen("while true; do logcat -b events -c; logcat -b events -v raw -s am_proc_start; sleep 1; done", "r");
|
|
|
|
while(fgets(buffer, sizeof(buffer), p)) {
|
|
int ret, comma = 0;
|
|
char *pos = buffer, *line, processName[256];
|
|
struct vector *temp = NULL;
|
|
|
|
while(1) {
|
|
pos = strchr(pos, ',');
|
|
if(pos == NULL)
|
|
break;
|
|
pos[0] = ' ';
|
|
++comma;
|
|
}
|
|
|
|
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;
|
|
|
|
// Should be thread safe
|
|
if (hide_list != new_list) {
|
|
temp = hide_list;
|
|
hide_list = new_list;
|
|
}
|
|
|
|
vec_for_each(hide_list, line) {
|
|
if (strcmp(processName, line) == 0) {
|
|
read_namespace(pid, buffer, 32);
|
|
while(1) {
|
|
ret = 1;
|
|
for (int i = 0; i < zygote_num; ++i) {
|
|
if (strcmp(buffer, zygote_ns[i]) == 0) {
|
|
usleep(500);
|
|
ret = 0;
|
|
break;
|
|
}
|
|
}
|
|
if (ret) break;
|
|
}
|
|
|
|
// Send pause signal ASAP
|
|
if (kill(pid, SIGSTOP) == -1) continue;
|
|
|
|
LOGI("proc_monitor: %s(PID=%d ns=%s)\n", processName, pid, buffer);
|
|
|
|
// Unmount start
|
|
xwrite(pipefd[1], &pid, sizeof(pid));
|
|
break;
|
|
}
|
|
}
|
|
if (temp) {
|
|
vec_deep_destroy(temp);
|
|
free(temp);
|
|
}
|
|
}
|
|
|
|
// Should never be here
|
|
pclose(p);
|
|
quit_pthread(SIGUSR1);
|
|
return NULL;
|
|
}
|