summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2017-02-25 01:56:48 -0800
committerTejun Heo <tj@kernel.org>2017-03-06 15:16:03 -0500
commitb6a6759daf55dade2b65089957832759d502acfb (patch)
treea9b626dbfbc8ee6ec731b42101855a5ae554a88f /kernel
parent1d18c2747f937f1b5ec65ce6bf4ccb9ca1aea9e8 (diff)
downloadlinux-0-day-b6a6759daf55dade2b65089957832759d502acfb.tar.gz
linux-0-day-b6a6759daf55dade2b65089957832759d502acfb.tar.xz
cgroups: censor kernel pointer in debug files
As found in grsecurity, this avoids exposing a kernel pointer through the cgroup debug entries. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/cgroup/cgroup-v1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cgroup/cgroup-v1.c b/kernel/cgroup/cgroup-v1.c
index 56eba9caa632a..1dc22f6b49f5e 100644
--- a/kernel/cgroup/cgroup-v1.c
+++ b/kernel/cgroup/cgroup-v1.c
@@ -1329,7 +1329,7 @@ static int cgroup_css_links_read(struct seq_file *seq, void *v)
struct task_struct *task;
int count = 0;
- seq_printf(seq, "css_set %p\n", cset);
+ seq_printf(seq, "css_set %pK\n", cset);
list_for_each_entry(task, &cset->tasks, cg_list) {
if (count++ > MAX_TASKS_SHOWN_PER_CSS)