Magisk/jni/magiskhide/proc_monitor.c

82 lines
1.9 KiB
C
Raw Normal View History

2016-12-30 19:44:24 +01:00
#include "magiskhide.h"
void monitor_proc() {
2017-01-01 11:54:13 +01:00
int pid, badns, zygote_num = 0;
char init_ns[32], zygote_ns[2][32];
// Get the mount namespace of init
read_namespace(1, init_ns, 32);
2017-01-01 13:31:08 +01:00
printf("%s\n", init_ns);
2017-01-01 11:54:13 +01:00
// Get the mount namespace of zygote
FILE *p = popen("/data/busybox/ps | grep zygote | grep -v grep", "r");
while(fgets(buffer, sizeof(buffer), p)) {
if (zygote_num == 2) break;
sscanf(buffer, "%d", &pid);
do {
usleep(500);
read_namespace(pid, zygote_ns[zygote_num], 32);
} while (strcmp(zygote_ns[zygote_num], init_ns) == 0);
++zygote_num;
}
pclose(p);
for (i = 0; i < zygote_num; ++i)
fprintf(logfile, "Zygote(%d) ns=%s ", i, zygote_ns[i]);
fprintf(logfile, "\n");
// Monitor am_proc_start
p = popen("while true; do logcat -b events -c; logcat -b events -v raw -s am_proc_start; sleep 1; done", "r");
2016-12-30 19:44:24 +01:00
while(!feof(p)) {
//Format of am_proc_start is (as of Android 5.1 and 6.0)
//UserID, pid, unix uid, processName, hostingType, hostingName
fgets(buffer, sizeof(buffer), p);
char *pos = buffer;
while(1) {
pos = strchr(pos, ',');
if(pos == NULL)
break;
pos[0] = ' ';
}
char processName[256];
int ret = sscanf(buffer, "[%*d %d %*d %256s", &pid, processName);
if(ret != 2)
continue;
2017-01-01 11:54:13 +01:00
pthread_mutex_lock(&mutex);
2016-12-30 19:44:24 +01:00
for (i = 0; i < list_size; ++i) {
if(strcmp(processName, hide_list[i]) == 0) {
2017-01-01 11:54:13 +01:00
while(1) {
badns = 0;
read_namespace(pid, buffer, 32);
for (i = 0; i < zygote_num; ++i) {
if (strcmp(buffer, zygote_ns[i]) == 0) {
usleep(500);
badns = 1;
break;
}
}
if (!badns) break;
}
// Send pause signal ASAP
if (kill(pid, SIGSTOP) == -1) continue;
fprintf(logfile, "MagiskHide: %s(PID=%d ns=%s)\n", processName, pid, buffer);
// Unmount start
2016-12-30 19:44:24 +01:00
write(pipefd[1], &pid, sizeof(pid));
2017-01-01 11:54:13 +01:00
break;
2016-12-30 19:44:24 +01:00
}
}
2017-01-01 11:54:13 +01:00
pthread_mutex_unlock(&mutex);
2016-12-30 19:44:24 +01:00
}
// Close the logcat monitor
pclose(p);
}