diff options
author | Matthew Garrett <matthewgarrett@google.com> | 2019-08-19 17:18:03 -0700 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2019-08-19 21:54:17 -0700 |
commit | ccbd54ff54e8b1880456b81c4aea352ebe208843 (patch) | |
tree | 86b2e1acc2014eea41ceb006e17459b0878bd764 /security | |
parent | 5496197f9b084f086cb410dd566648b0896fcc74 (diff) | |
download | linux-stable-ccbd54ff54e8b1880456b81c4aea352ebe208843.tar.gz linux-stable-ccbd54ff54e8b1880456b81c4aea352ebe208843.tar.bz2 linux-stable-ccbd54ff54e8b1880456b81c4aea352ebe208843.zip |
tracefs: Restrict tracefs when the kernel is locked down
Tracefs may release more information about the kernel than desirable, so
restrict it when the kernel is locked down in confidentiality mode by
preventing open().
(Fixed by Ben Hutchings to avoid a null dereference in
default_file_open())
Signed-off-by: Matthew Garrett <mjg59@google.com>
Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Cc: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/lockdown/lockdown.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/lockdown/lockdown.c b/security/lockdown/lockdown.c index edd1fff0147d..84df03b1f5a7 100644 --- a/security/lockdown/lockdown.c +++ b/security/lockdown/lockdown.c @@ -36,6 +36,7 @@ static char *lockdown_reasons[LOCKDOWN_CONFIDENTIALITY_MAX+1] = { [LOCKDOWN_KPROBES] = "use of kprobes", [LOCKDOWN_BPF_READ] = "use of bpf to read kernel RAM", [LOCKDOWN_PERF] = "unsafe use of perf", + [LOCKDOWN_TRACEFS] = "use of tracefs", [LOCKDOWN_CONFIDENTIALITY_MAX] = "confidentiality", }; |