Magisk/jni/magiskhide/hide_daemon.c

145 lines
3.3 KiB
C
Raw Normal View History

2017-04-06 00:12:29 +02:00
/* hide_daemon.c - MagiskHide daemon
*
* A dedicated process to join the target namespace,
* and hide all traces in that particular namespace
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
2017-04-07 01:50:02 +02:00
#include <signal.h>
2017-04-06 00:12:29 +02:00
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mount.h>
#include "magisk.h"
#include "utils.h"
#include "magiskhide.h"
2017-04-17 10:36:49 +02:00
static int pid;
2017-04-06 00:12:29 +02:00
static void lazy_unmount(const char* mountpoint) {
if (umount2(mountpoint, MNT_DETACH) != -1)
LOGI("hide_daemon: Unmounted (%s)\n", mountpoint);
else
LOGI("hide_daemon: Unmount Failed (%s)\n", mountpoint);
}
static void hide_daemon_err() {
LOGD("hide_daemon: error occured, stopping magiskhide services\n");
// Resume process if possible
kill(pid, SIGCONT);
int err = 1;
write(sv[1], &err, sizeof(err));
_exit(-1);
}
int hide_daemon() {
2017-04-06 00:12:29 +02:00
// Fork to a new process
hide_pid = fork();
switch(hide_pid) {
2017-04-06 00:12:29 +02:00
case -1:
PLOGE("fork");
return 1;
2017-04-06 00:12:29 +02:00
case 0:
break;
default:
return 0;
2017-04-06 00:12:29 +02:00
}
close(sv[0]);
2017-04-08 01:37:43 +02:00
// Set the process name
2017-04-06 00:12:29 +02:00
strcpy(argv0, "magiskhide_daemon");
// When an error occurs, report its failure to main process
err_handler = hide_daemon_err;
2017-04-06 00:12:29 +02:00
2017-04-14 21:23:09 +02:00
char buffer[4096], cache_block[256], *line;
2017-04-06 00:12:29 +02:00
struct vector mount_list;
cache_block[0] = '\0';
while(1) {
xxread(sv[1], &pid, sizeof(pid));
2017-04-06 00:12:29 +02:00
// Termination called
if(pid == -1) {
LOGD("hide_daemon: received termination request\n");
_exit(0);
}
2017-04-06 00:12:29 +02:00
2017-04-17 10:36:49 +02:00
manage_selinux();
relink_sbin();
2017-06-08 16:56:21 +02:00
if (switch_mnt_ns(pid))
continue;
2017-04-06 00:12:29 +02:00
2017-04-14 21:23:09 +02:00
snprintf(buffer, sizeof(buffer), "/proc/%d/mounts", pid);
2017-04-06 00:12:29 +02:00
vec_init(&mount_list);
2017-04-20 16:45:56 +02:00
file_to_vector(buffer, &mount_list);
2017-04-06 00:12:29 +02:00
// Find the cache block name if not found yet
if (strlen(cache_block) == 0) {
vec_for_each(&mount_list, line) {
if (strstr(line, " /cache ")) {
sscanf(line, "%256s", cache_block);
break;
}
}
}
2017-07-02 17:34:28 +02:00
// First unmount dummy skeletons, /sbin links, cache mounts, and mirrors
2017-04-06 00:12:29 +02:00
vec_for_each_r(&mount_list, line) {
if (strstr(line, "tmpfs /system") || strstr(line, "tmpfs /vendor") || strstr(line, "tmpfs /sbin")
2017-07-02 17:34:28 +02:00
|| (strstr(line, cache_block) && (strstr(line, " /system") || strstr(line, " /vendor")))
|| strstr(line, MIRRDIR)) {
2017-04-14 21:23:09 +02:00
sscanf(line, "%*s %512s", buffer);
lazy_unmount(buffer);
2017-04-06 00:12:29 +02:00
}
free(line);
}
vec_destroy(&mount_list);
// Re-read mount infos
2017-04-20 16:45:56 +02:00
snprintf(buffer, sizeof(buffer), "/proc/%d/mounts", pid);
2017-04-06 00:12:29 +02:00
vec_init(&mount_list);
2017-04-20 16:45:56 +02:00
file_to_vector(buffer, &mount_list);
2017-04-06 00:12:29 +02:00
2017-07-02 17:34:28 +02:00
// Unmount loop mounts on /system, /vendor, /magisk
2017-04-06 00:12:29 +02:00
vec_for_each_r(&mount_list, line) {
2017-07-02 17:34:28 +02:00
if (strstr(line, "/dev/block/loop")
&& (strstr(line, " /system") || strstr(line, " /vendor") || strstr(line, " /magisk"))) {
sscanf(line, "%*s %512s", buffer);
lazy_unmount(buffer);
}
free(line);
}
vec_destroy(&mount_list);
// Re-read mount infos
snprintf(buffer, sizeof(buffer), "/proc/%d/mounts", pid);
vec_init(&mount_list);
file_to_vector(buffer, &mount_list);
// Unmount remaining mounts on dummy skeletons
vec_for_each_r(&mount_list, line) {
if (strstr(line, DUMMDIR)) {
2017-04-14 21:23:09 +02:00
sscanf(line, "%*s %512s", buffer);
lazy_unmount(buffer);
2017-04-06 00:12:29 +02:00
}
free(line);
}
vec_destroy(&mount_list);
// All done, send resume signal
kill(pid, SIGCONT);
// Tell main process all is well
pid = 0;
xwrite(sv[1], &pid, sizeof(pid));
2017-04-06 00:12:29 +02:00
}
// Should never go here
}