diff options
author | Stephen Smalley <sds@tycho.nsa.gov> | 2019-12-13 23:28:38 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2019-12-19 05:26:06 +0300 |
commit | 5c108d4e18f80be01965792726c81b105fbd677a (patch) | |
tree | 5232e3ccd8383887072b4f8f3f7587e8ff237c99 /security/selinux/include/security.h | |
parent | 6c5a682e6497cb1f7a67303ce098462a36bed362 (diff) | |
download | linux-5c108d4e18f80be01965792726c81b105fbd677a.tar.xz |
selinux: randomize layout of key structures
Randomize the layout of key selinux data structures.
Initially this is applied to the selinux_state, selinux_ss,
policydb, and task_security_struct data structures.
NB To test/use this mechanism, one must install the
necessary build-time dependencies, e.g. gcc-plugin-devel on Fedora,
and enable CONFIG_GCC_PLUGIN_RANDSTRUCT in the kernel configuration.
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
Reviewed-by: Kees Cook <keescook@chromium.org>
[PM: double semi-colon fixed]
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/include/security.h')
-rw-r--r-- | security/selinux/include/security.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/include/security.h b/security/selinux/include/security.h index af623f03922c..ecdd610e6449 100644 --- a/security/selinux/include/security.h +++ b/security/selinux/include/security.h @@ -110,7 +110,7 @@ struct selinux_state { bool policycap[__POLICYDB_CAPABILITY_MAX]; struct selinux_avc *avc; struct selinux_ss *ss; -}; +} __randomize_layout; void selinux_ss_init(struct selinux_ss **ss); void selinux_avc_init(struct selinux_avc **avc); |