@@ -50,6 +50,7 @@ static bool ksu_module_mounted = false;
50
50
extern int handle_sepolicy (unsigned long arg3 , void __user * arg4 );
51
51
52
52
static bool ksu_su_compat_enabled = true;
53
+ static bool ksu_mount_monitor_enabled = true;
53
54
extern void ksu_sucompat_init ();
54
55
extern void ksu_sucompat_exit ();
55
56
@@ -332,6 +333,9 @@ int ksu_handle_prctl(int option, unsigned long arg2, unsigned long arg3,
332
333
if (!boot_complete_lock ) {
333
334
boot_complete_lock = true;
334
335
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;
335
339
}
336
340
break ;
337
341
}
@@ -597,7 +601,10 @@ int ksu_handle_setuid(struct cred *new, const struct cred *old)
597
601
598
602
int ksu_mount_monitor (const char * dev_name , const char * dirname , const char * type )
599
603
{
600
-
604
+ if (!ksu_mount_monitor_enabled ) {
605
+ return 0 ;
606
+ }
607
+
601
608
char * device_name_copy = kstrdup (dev_name , GFP_KERNEL );
602
609
char * fstype_copy = kstrdup (type , GFP_KERNEL );
603
610
struct mount_entry * new_entry ;
@@ -709,6 +716,10 @@ static int ksu_task_fix_setuid(struct cred *new, const struct cred *old,
709
716
static int ksu_sb_mount (const char * dev_name , const struct path * path ,
710
717
const char * type , unsigned long flags , void * data )
711
718
{
719
+ if (!ksu_mount_monitor_enabled ) {
720
+ return 0 ;
721
+ }
722
+
712
723
char buf [256 ];
713
724
char * dir_name = d_path (path , buf , sizeof (buf ));
714
725
0 commit comments