Skip to content

Commit 094a7ff

Browse files
committed
Revert "optional: turn off mount monitor at boot complete"
This reverts commit 4e18678. Update core_hook.c
1 parent 4e18678 commit 094a7ff

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

kernel/core_hook.c

+1-8
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ static bool ksu_module_mounted = false;
5050
extern int handle_sepolicy(unsigned long arg3, void __user *arg4);
5151

5252
static bool ksu_su_compat_enabled = true;
53-
static bool ksu_mount_monitor_enabled = true;
5453
extern void ksu_sucompat_init();
5554
extern void ksu_sucompat_exit();
5655

@@ -333,9 +332,6 @@ int ksu_handle_prctl(int option, unsigned long arg2, unsigned long arg3,
333332
if (!boot_complete_lock) {
334333
boot_complete_lock = true;
335334
pr_info("boot_complete triggered\n");
336-
// turn off mount monitor
337-
pr_info("turning off ksu_mount_monitor\n");
338-
ksu_mount_monitor_enabled = false;
339335
}
340336
break;
341337
}
@@ -596,10 +592,7 @@ int ksu_handle_setuid(struct cred *new, const struct cred *old)
596592

597593
int ksu_mount_monitor(const char *dev_name, const char *dirname, const char *type)
598594
{
599-
if (!ksu_mount_monitor_enabled) {
600-
return 0;
601-
}
602-
595+
603596
char *device_name_copy = kstrdup(dev_name, GFP_KERNEL);
604597
char *fstype_copy = kstrdup(type, GFP_KERNEL);
605598
char *dirname_copy = kstrdup(dirname, GFP_KERNEL);

0 commit comments

Comments
 (0)