Magisk/native/jni/zygisk/deny/revert.cpp

42 lines
1.1 KiB
C++
Raw Normal View History

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>
2019-05-26 09:47:57 +00:00
2021-09-12 19:40:34 +00:00
#include "deny.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) {
if (umount2(mountpoint, MNT_DETACH) != -1)
2021-09-12 19:40:34 +00:00
LOGD("denylist: Unmounted (%s)\n", mountpoint);
2019-05-26 09:47:57 +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
2021-10-27 10:54:48 +00:00
void revert_unmount() {
vector<string> targets;
2021-08-26 10:09:56 +00:00
// Unmount dummy skeletons and MAGISKTMP
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) {
if (str_contains(mentry->mnt_fsname, BLOCKDIR))
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
}