Skip to content

Commit 1e611aa

Browse files
committed
decrease verbosity
1 parent 7e34953 commit 1e611aa

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

kernel/core_hook.c

+7-3
Original file line numberDiff line numberDiff line change
@@ -529,8 +529,10 @@ static void try_umount(const char *mnt, int flags)
529529
int val = path_umount(&path, flags);
530530
if (val)
531531
pr_info("umount %s failed: %d\n", mnt, val);
532+
#ifdef CONFIG_KSU_DEBUG
532533
else
533534
pr_info("umount %s success: %d\n", mnt, val);
535+
#endif
534536
}
535537

536538
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
611613
goto out;
612614
}
613615

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) ) ) {
616618
new_entry = kmalloc(sizeof(*new_entry), GFP_KERNEL);
617619
if (new_entry) {
618620
new_entry->umountable = kstrdup(dirname, GFP_KERNEL);
619621
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
621625
}
622626
}
623627
out:

0 commit comments

Comments
 (0)