From: casey.schaufler@intel.com (Casey Schaufler)
To: linux-security-module@vger.kernel.org
Subject: [PATCH v4 0/5] LSM: Add and use a hook for side-channel safety checks
Date: Fri, 24 Aug 2018 15:41:12 -0700 [thread overview]
Message-ID: <20180824224117.3356-1-casey.schaufler@intel.com> (raw)
v4: select namespace checks if user namespaces are enabled
and credential checks are request.
v3: get_task_cred wasn't a good choice due to refcounts.
Use lower level protection instead
v2: SELinux access policy corrected.
Use real_cred instead of cred.
This patchset provide a mechanism by which a security module
can advise the system about potential side-channel vulnerabilities.
If security_safe_sidechannel() returns 0 the security modules do
not know of any data that would be subject to a side-channel
attack. If the security module maintains data that it believes
may be susceptible to a side-channel attack it will return -EACCES.
Simple hooks are provided for SELinux and Smack. A new security
module is provided to make determinations regarding traditional
task attributes, including user IDs, capability sets and namespaces.
Signed-off-by: Casey Schaufler <casey.schaufler@intel.com>
---
MAINTAINERS | 6 ++
arch/x86/mm/tlb.c | 12 ++-
include/linux/lsm_hooks.h | 12 +++
include/linux/security.h | 1 +
security/Kconfig | 1 +
security/Makefile | 2 +
security/security.c | 6 ++
security/selinux/hooks.c | 9 ++
security/sidechannel/Kconfig | 65 +++++++++++++
security/sidechannel/Makefile | 1 +
security/sidechannel/sidechannel.c | 184 +++++++++++++++++++++++++++++++++++++
security/smack/smack_lsm.c | 18 ++++
12 files changed, 313 insertions(+), 4 deletions(-)
next reply other threads:[~2018-08-24 22:41 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-24 22:41 Casey Schaufler [this message]
2018-08-24 22:41 ` [PATCH v4 1/5] LSM: Introduce a hook for side-channel danger Casey Schaufler
2018-08-24 22:41 ` [PATCH v4 2/5] X86: Support LSM determination of side-channel Casey Schaufler
2018-08-24 22:41 ` [PATCH v4 3/5] LSM: Security module checking for side-channel dangers Casey Schaufler
2018-08-24 23:17 ` Jann Horn
2018-08-24 22:41 ` [PATCH v4 4/5] Smack: Support determination of side-channel Casey Schaufler
2018-08-24 22:41 ` [PATCH v4 5/5] SELinux: Support SELinux " Casey Schaufler
2018-09-27 19:17 ` [PATCH 6/5] capability: Repair sidechannel test in ptrace Casey Schaufler
2018-09-27 19:49 ` Jann Horn
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180824224117.3356-1-casey.schaufler@intel.com \
--to=casey.schaufler@intel.com \
--cc=linux-security-module@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).