From 232d2014cde46cc0cf13be987403575e87aefea5 Mon Sep 17 00:00:00 2001 From: Al Viro Date: Thu, 21 Jul 2011 14:13:45 +0100 Subject: [PATCH] auxv: require the target to be tracable (or yourself), CVE-2011-1020 same as for environ, except that we didn't do any checks to prevent access after suid execve Signed-off-by: Al Viro (cherry picked from commit 2fadaef41283aad7100fa73f01998cddaca25833) CVE-2011-1020 BugLink: http://bugs.launchpad.net/bugs/813026 Signed-off-by: Andy Whitcroft Acked-by: Stefan Bader Signed-off-by: Tim Gardner --- fs/proc/base.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/proc/base.c b/fs/proc/base.c index 3803523..bf64fd7 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c @@ -281,9 +281,9 @@ out: static int proc_pid_auxv(struct task_struct *task, char *buffer) { - int res = 0; - struct mm_struct *mm = get_task_mm(task); - if (mm) { + struct mm_struct *mm = mm_for_maps(task); + int res = PTR_ERR(mm); + if (mm && !IS_ERR(mm)) { unsigned int nwords = 0; do { nwords += 2; -- 1.7.10.4