@@ -529,8 +529,10 @@ static void try_umount(const char *mnt, int flags)
529
529
int val = path_umount (& path , flags );
530
530
if (val )
531
531
pr_info ("umount %s failed: %d\n" , mnt , val );
532
+ #ifdef CONFIG_KSU_DEBUG
532
533
else
533
534
pr_info ("umount %s success: %d\n" , mnt , val );
535
+ #endif
534
536
}
535
537
536
538
int ksu_handle_setuid (struct cred * new , const struct cred * old )
@@ -611,13 +613,15 @@ int ksu_mount_monitor(const char *dev_name, const char *dirname, const char *typ
611
613
goto out ;
612
614
}
613
615
614
- // overlay, overlayfs, change pattern later
615
- if ( ( strncmp (device_name_copy , "KSU" , 3 ) == 0 ) && ( strstr (fstype_copy , "overlay" ) || ( strncmp (fstype_copy , "tmpfs" , 5 ) == 0 ) ) ) {
616
+ // KSU devname, overlay/fs and tmpfs
617
+ if ( ! strncmp (device_name_copy , "KSU" , 3 ) && ( strstr (fstype_copy , "overlay" ) || ! strncmp (fstype_copy , "tmpfs" , 5 ) ) ) {
616
618
new_entry = kmalloc (sizeof (* new_entry ), GFP_KERNEL );
617
619
if (new_entry ) {
618
620
new_entry -> umountable = kstrdup (dirname , GFP_KERNEL );
619
621
list_add (& new_entry -> list , & mount_list );
620
- pr_info ("security_sb_mount: devicename %s fstype: %s path: %s\n" , device_name_copy , fstype_copy , new_entry -> umountable );
622
+ #ifdef CONFIG_KSU_DEBUG
623
+ pr_info ("ksu_mount_monitor: devicename %s fstype: %s path: %s\n" , device_name_copy , fstype_copy , new_entry -> umountable );
624
+ #endif
621
625
}
622
626
}
623
627
out :
0 commit comments