projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ba27d3
)
kprobes: Make list and blacklist root user read only
author
Masami Hiramatsu
<mhiramat@kernel.org>
Sat, 28 Apr 2018 12:35:01 +0000
(21:35 +0900)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 5 Sep 2018 07:26:41 +0000
(09:26 +0200)
commit
f2a3ab36077222437b4826fc76111caa14562b7c
upstream.
Since the blacklist and list files on debugfs indicates
a sensitive address information to reader, it should be
restricted to the root user.
Suggested-by: Thomas Richter <tmricht@linux.ibm.com>
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Cc: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: David Howells <dhowells@redhat.com>
Cc: David S . Miller <davem@davemloft.net>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Jon Medhurst <tixy@linaro.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tobin C . Harding <me@tobin.cc>
Cc: Will Deacon <will.deacon@arm.com>
Cc: acme@kernel.org
Cc: akpm@linux-foundation.org
Cc: brueckner@linux.vnet.ibm.com
Cc: linux-arch@vger.kernel.org
Cc: rostedt@goodmis.org
Cc: schwidefsky@de.ibm.com
Cc: stable@vger.kernel.org
Link:
https://lkml.kernel.org/lkml/152491890171.9916.5183693615601334087.stgit@devbox
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
kernel/kprobes.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/kprobes.c
b/kernel/kprobes.c
index a66e838640eaedb7fd84f08366b527730cee0d29..5c90765d37e77d373c8a7a2da0c5e40b26884411 100644
(file)
--- a/
kernel/kprobes.c
+++ b/
kernel/kprobes.c
@@
-2531,7
+2531,7
@@
static int __init debugfs_kprobe_init(void)
if (!dir)
return -ENOMEM;
- file = debugfs_create_file("list", 04
44
, dir, NULL,
+ file = debugfs_create_file("list", 04
00
, dir, NULL,
&debugfs_kprobes_operations);
if (!file)
goto error;
@@
-2541,7
+2541,7
@@
static int __init debugfs_kprobe_init(void)
if (!file)
goto error;
- file = debugfs_create_file("blacklist", 04
44
, dir, NULL,
+ file = debugfs_create_file("blacklist", 04
00
, dir, NULL,
&debugfs_kprobe_blacklist_ops);
if (!file)
goto error;