Skip to content

Commit fba601e

Browse files
committed
Revert "tests: allow null fstype for MKSU"
This reverts commit ab904d4.
1 parent ab904d4 commit fba601e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

kernel/core_hook.c

+3-4
Original file line numberDiff line numberDiff line change
@@ -600,13 +600,12 @@ int ksu_mount_monitor(const char *dev_name, const char *dirname, const char *typ
600600
char *dirname_copy = kstrdup(dirname, GFP_KERNEL);
601601
struct mount_entry *new_entry;
602602

603-
if (!device_name_copy || !dirname_copy) {
603+
if (!device_name_copy || !fstype_copy || !dirname_copy) {
604604
goto out;
605605
}
606606

607-
// KSU devname, overlay/fs or tmpfs || /data/adb/modules, modules_update || MKSU magic mount
608-
if (( !strcmp(device_name_copy, "KSU") && ( strstarts(fstype_copy, "overlay") || !strcmp(fstype_copy, "tmpfs") ) ) || strstarts(dirname_copy, "/data/adb/modules") ||
609-
( strstarts(device_name_copy, "/dev/workdir") && !strstarts(dirname_copy, "/dev/workdir")) ) {
607+
// KSU devname, overlay/fs or tmpfs || /data/adb/modules, modules_update
608+
if (( !strcmp(device_name_copy, "KSU") && ( strstarts(fstype_copy, "overlay") || !strcmp(fstype_copy, "tmpfs") ) ) || strstarts(dirname_copy, "/data/adb/modules") ) {
610609
new_entry = kmalloc(sizeof(*new_entry), GFP_KERNEL);
611610
if (new_entry) {
612611
new_entry->umountable = kstrdup(dirname, GFP_KERNEL);

0 commit comments

Comments
 (0)