lockdown: Allow unprivileged users to see lockdown status
authorJeremy Cline <jcline@redhat.com>
Thu, 14 May 2020 14:05:46 +0000 (10:05 -0400)
committerJames Morris <jmorris@namei.org>
Thu, 14 May 2020 17:23:05 +0000 (10:23 -0700)
A number of userspace tools, such as systemtap, need a way to see the
current lockdown state so they can gracefully deal with the kernel being
locked down. The state is already exposed in
/sys/kernel/security/lockdown, but is only readable by root. Adjust the
permissions so unprivileged users can read the state.

Fixes: 000d388ed3bb ("security: Add a static lockdown policy LSM")
Cc: Frank Ch. Eigler <fche@redhat.com>
Signed-off-by: Jeremy Cline <jcline@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
security/lockdown/lockdown.c

index 40b7905..ae594c0 100644 (file)
@@ -175,7 +175,7 @@ static int __init lockdown_secfs_init(void)
 {
        struct dentry *dentry;
 
-       dentry = securityfs_create_file("lockdown", 0600, NULL, NULL,
+       dentry = securityfs_create_file("lockdown", 0644, NULL, NULL,
                                        &lockdown_ops);
        return PTR_ERR_OR_ZERO(dentry);
 }