Commit 3d6e5f6d authored by Kees Cook's avatar Kees Cook Committed by James Morris

LSM: Convert security_initcall() into DEFINE_LSM()

Instead of using argument-based initializers, switch to defining the
contents of struct lsm_info on a per-LSM basis. This also drops
the final use of the now inaccurate "initcall" naming.
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Reviewed-by: default avatarCasey Schaufler <casey@schaufler-ca.com>
Reviewed-by: default avatarJames Morris <james.morris@microsoft.com>
Signed-off-by: default avatarJames Morris <james.morris@microsoft.com>
parent 3ac946d1
...@@ -2045,11 +2045,10 @@ struct lsm_info { ...@@ -2045,11 +2045,10 @@ struct lsm_info {
extern struct lsm_info __start_lsm_info[], __end_lsm_info[]; extern struct lsm_info __start_lsm_info[], __end_lsm_info[];
#define security_initcall(lsm) \ #define DEFINE_LSM(lsm) \
static struct lsm_info __lsm_##lsm \ static struct lsm_info __lsm_##lsm \
__used __section(.lsm_info.init) \ __used __section(.lsm_info.init) \
__aligned(sizeof(unsigned long)) \ __aligned(sizeof(unsigned long))
= { .init = lsm, }
#ifdef CONFIG_SECURITY_SELINUX_DISABLE #ifdef CONFIG_SECURITY_SELINUX_DISABLE
/* /*
......
...@@ -1606,4 +1606,6 @@ static int __init apparmor_init(void) ...@@ -1606,4 +1606,6 @@ static int __init apparmor_init(void)
return error; return error;
} }
security_initcall(apparmor_init); DEFINE_LSM(apparmor) = {
.init = apparmor_init,
};
...@@ -175,7 +175,9 @@ static int __init integrity_iintcache_init(void) ...@@ -175,7 +175,9 @@ static int __init integrity_iintcache_init(void)
0, SLAB_PANIC, init_once); 0, SLAB_PANIC, init_once);
return 0; return 0;
} }
security_initcall(integrity_iintcache_init); DEFINE_LSM(integrity) = {
.init = integrity_iintcache_init,
};
/* /*
......
...@@ -7202,7 +7202,9 @@ void selinux_complete_init(void) ...@@ -7202,7 +7202,9 @@ void selinux_complete_init(void)
/* SELinux requires early initialization in order to label /* SELinux requires early initialization in order to label
all processes and objects when they are created. */ all processes and objects when they are created. */
security_initcall(selinux_init); DEFINE_LSM(selinux) = {
.init = selinux_init,
};
#if defined(CONFIG_NETFILTER) #if defined(CONFIG_NETFILTER)
......
...@@ -4882,4 +4882,6 @@ static __init int smack_init(void) ...@@ -4882,4 +4882,6 @@ static __init int smack_init(void)
* Smack requires early initialization in order to label * Smack requires early initialization in order to label
* all processes and objects when they are created. * all processes and objects when they are created.
*/ */
security_initcall(smack_init); DEFINE_LSM(smack) = {
.init = smack_init,
};
...@@ -550,4 +550,6 @@ static int __init tomoyo_init(void) ...@@ -550,4 +550,6 @@ static int __init tomoyo_init(void)
return 0; return 0;
} }
security_initcall(tomoyo_init); DEFINE_LSM(tomoyo) = {
.init = tomoyo_init,
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment