summaryrefslogtreecommitdiffstats
path: root/fs/exec.c
diff options
context:
space:
mode:
authorOleg Nesterov2012-10-05 02:15:27 +0200
committerLinus Torvalds2012-10-05 20:05:16 +0200
commit0f4cfb2e4e7a7e4e97a3e90e2ba1062f07fb2cb1 (patch)
tree25fa36bc342f624c46b39fa41bb4815397413338 /fs/exec.c
parentcoredump: add support for %d=__get_dumpable() in core name (diff)
downloadkernel-qcow2-linux-0f4cfb2e4e7a7e4e97a3e90e2ba1062f07fb2cb1.tar.gz
kernel-qcow2-linux-0f4cfb2e4e7a7e4e97a3e90e2ba1062f07fb2cb1.tar.xz
kernel-qcow2-linux-0f4cfb2e4e7a7e4e97a3e90e2ba1062f07fb2cb1.zip
coredump: use SUID_DUMPABLE_ENABLED rather than hardcoded 1
Cosmetic. Change setup_new_exec() and task_dumpable() to use SUID_DUMPABLE_ENABLED for /bin/grep. [akpm@linux-foundation.org: checkpatch fixes] Signed-off-by: Oleg Nesterov <oleg@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/exec.c')
-rw-r--r--fs/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exec.c b/fs/exec.c
index bd941a1cdbfc..9824473a7ec1 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -1097,7 +1097,7 @@ void setup_new_exec(struct linux_binprm * bprm)
current->sas_ss_sp = current->sas_ss_size = 0;
if (uid_eq(current_euid(), current_uid()) && gid_eq(current_egid(), current_gid()))
- set_dumpable(current->mm, 1);
+ set_dumpable(current->mm, SUID_DUMPABLE_ENABLED);
else
set_dumpable(current->mm, suid_dumpable);