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

42 lines
1.1 KiB
C++
Raw Normal View History

2019-05-26 02:47:57 -07:00
#include <sys/mount.h>
2020-03-09 01:50:30 -07:00
#include <magisk.hpp>
2022-05-12 02:03:42 -07:00
#include <base.hpp>
2019-05-26 02:47:57 -07:00
2021-09-12 12:40:34 -07:00
#include "deny.hpp"
2019-05-26 02:47:57 -07:00
using namespace std;
2020-05-17 15:01:20 -07:00
static void lazy_unmount(const char* mountpoint) {
if (umount2(mountpoint, MNT_DETACH) != -1)
2021-09-12 12:40:34 -07:00
LOGD("denylist: Unmounted (%s)\n", mountpoint);
2019-05-26 02:47:57 -07:00
}
#define TMPFS_MNT(dir) (mentry->mnt_type == "tmpfs"sv && str_starts(mentry->mnt_dir, "/" #dir))
2019-06-23 03:53:41 -07:00
2021-10-27 03:54:48 -07:00
void revert_unmount() {
vector<string> targets;
2021-08-26 03:09:56 -07: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 02:47:57 -07:00
}