mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 16:46:23 +08:00
[PATCH] setpgid: should not accept ptraced childs
sys_setpgid() allows to change ->pgrp of ptraced childs. 'man setpgid' does not tell anything about that, so I consider this behaviour is a bug. Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru> Cc: Oren Laadan <orenl@cs.columbia.edu> Cc: Roland McGrath <roland@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
e19f247a3d
commit
f7dd795e91
@ -1114,7 +1114,7 @@ asmlinkage long sys_setpgid(pid_t pid, pid_t pgid)
|
|||||||
if (!thread_group_leader(p))
|
if (!thread_group_leader(p))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (p->parent == current || p->real_parent == group_leader) {
|
if (p->real_parent == group_leader) {
|
||||||
err = -EPERM;
|
err = -EPERM;
|
||||||
if (p->signal->session != group_leader->signal->session)
|
if (p->signal->session != group_leader->signal->session)
|
||||||
goto out;
|
goto out;
|
||||||
|
Loading…
Reference in New Issue
Block a user