OSDN Git Service

LSM: Record LSM name in struct lsm_info
authorKees Cook <keescook@chromium.org>
Thu, 11 Oct 2018 00:18:24 +0000 (17:18 -0700)
committerJames Morris <james.morris@microsoft.com>
Thu, 11 Oct 2018 03:40:22 +0000 (20:40 -0700)
In preparation for making LSM selections outside of the LSMs, include
the name of LSMs in struct lsm_info.

Signed-off-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Casey Schaufler <casey@schaufler-ca.com>
Signed-off-by: James Morris <james.morris@microsoft.com>
include/linux/lsm_hooks.h
security/apparmor/lsm.c
security/integrity/iint.c
security/selinux/hooks.c
security/smack/smack_lsm.c
security/tomoyo/tomoyo.c

index 9c6b419..ae159b0 100644 (file)
@@ -2040,6 +2040,7 @@ extern void security_add_hooks(struct security_hook_list *hooks, int count,
                                char *lsm);
 
 struct lsm_info {
+       const char *name;       /* Required. */
        int (*init)(void);      /* Required. */
 };
 
index c486395..dca4b7d 100644 (file)
@@ -1607,5 +1607,6 @@ alloc_out:
 }
 
 DEFINE_LSM(apparmor) = {
+       .name = "apparmor",
        .init = apparmor_init,
 };
index 94e8e18..1ea05da 100644 (file)
@@ -176,6 +176,7 @@ static int __init integrity_iintcache_init(void)
        return 0;
 }
 DEFINE_LSM(integrity) = {
+       .name = "integrity",
        .init = integrity_iintcache_init,
 };
 
index 6ca2e89..9651bcc 100644 (file)
@@ -7203,6 +7203,7 @@ void selinux_complete_init(void)
 /* SELinux requires early initialization in order to label
    all processes and objects when they are created. */
 DEFINE_LSM(selinux) = {
+       .name = "selinux",
        .init = selinux_init,
 };
 
index c62e269..2fb56bc 100644 (file)
@@ -4883,5 +4883,6 @@ static __init int smack_init(void)
  * all processes and objects when they are created.
  */
 DEFINE_LSM(smack) = {
+       .name = "smack",
        .init = smack_init,
 };
index b2d8339..1b5b509 100644 (file)
@@ -551,5 +551,6 @@ static int __init tomoyo_init(void)
 }
 
 DEFINE_LSM(tomoyo) = {
+       .name = "tomoyo",
        .init = tomoyo_init,
 };