2019-05-26 09:47:57 +00:00
|
|
|
#include <sys/mount.h>
|
|
|
|
|
2020-03-09 08:50:30 +00:00
|
|
|
#include <magisk.hpp>
|
|
|
|
#include <utils.hpp>
|
|
|
|
#include <selinux.hpp>
|
|
|
|
#include <resetprop.hpp>
|
2019-05-26 09:47:57 +00:00
|
|
|
|
2020-03-09 08:50:30 +00:00
|
|
|
#include "magiskhide.hpp"
|
2019-05-26 09:47:57 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2020-05-17 22:01:20 +00:00
|
|
|
static void lazy_unmount(const char* mountpoint) {
|
2020-12-31 06:11:24 +00:00
|
|
|
if (umount2(mountpoint, MNT_DETACH) != -1)
|
2021-01-11 03:27:54 +00:00
|
|
|
LOGD("hide: Unmounted (%s)\n", mountpoint);
|
2019-05-26 09:47:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 11:55:17 +00:00
|
|
|
void hide_daemon(int pid, int client) {
|
2020-12-31 06:11:24 +00:00
|
|
|
if (fork_dont_care() == 0) {
|
|
|
|
hide_unmount(pid);
|
2021-08-19 11:55:17 +00:00
|
|
|
write_int(client, 0);
|
2020-12-31 06:11:24 +00:00
|
|
|
_exit(0);
|
|
|
|
}
|
2019-06-05 05:27:19 +00:00
|
|
|
}
|
2019-05-26 09:47:57 +00:00
|
|
|
|
2021-08-18 09:01:54 +00:00
|
|
|
#define TMPFS_MNT(dir) (mentry->mnt_type == "tmpfs"sv && str_starts(mentry->mnt_dir, "/" #dir))
|
2019-06-23 10:53:41 +00:00
|
|
|
|
2019-06-05 05:27:19 +00:00
|
|
|
void hide_unmount(int pid) {
|
2021-01-11 03:27:54 +00:00
|
|
|
if (pid > 0 && switch_mnt_ns(pid))
|
2020-12-31 06:11:24 +00:00
|
|
|
return;
|
|
|
|
|
2021-08-19 11:55:17 +00:00
|
|
|
LOGD("hide: handling PID=[%d]\n", pid > 0 ? pid : getpid());
|
2020-12-31 06:11:24 +00:00
|
|
|
|
|
|
|
vector<string> targets;
|
|
|
|
|
|
|
|
// Unmount dummy skeletons and /sbin links
|
|
|
|
targets.push_back(MAGISKTMP);
|
|
|
|
parse_mnt("/proc/self/mounts", [&](mntent *mentry) {
|
|
|
|
if (TMPFS_MNT(system) || TMPFS_MNT(vendor) || TMPFS_MNT(product) || TMPFS_MNT(system_ext))
|
|
|
|
targets.emplace_back(mentry->mnt_dir);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
for (auto &s : reversed(targets))
|
|
|
|
lazy_unmount(s.data());
|
|
|
|
targets.clear();
|
|
|
|
|
|
|
|
// Unmount all Magisk created mounts
|
|
|
|
parse_mnt("/proc/self/mounts", [&](mntent *mentry) {
|
2021-08-18 09:01:54 +00:00
|
|
|
if (str_contains(mentry->mnt_fsname, BLOCKDIR))
|
2020-12-31 06:11:24 +00:00
|
|
|
targets.emplace_back(mentry->mnt_dir);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
for (auto &s : reversed(targets))
|
|
|
|
lazy_unmount(s.data());
|
2019-05-26 09:47:57 +00:00
|
|
|
}
|