diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2006-03-28 19:10:58 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 21:36:40 -0500 |
commit | fef23e7fbb11a0a78cd61935f7056bc2b237995a (patch) | |
tree | a6ff460b3a5d11d01c0532de561eb81183e056c2 /fs | |
parent | ca9ba4471c1203bb6e759b76e83167fec54fe590 (diff) |
[PATCH] exec: allow init to exec from any thread.
After looking at the problem of init calling exec some more I figured out
an easy way to make the code work.
The actual symptom without out this patch is that all threads will die
except pid == 1, and the thread calling exec. The thread calling exec will
wait forever for pid == 1 to die.
Since pid == 1 does not install a handler for SIGKILL it will never die.
This modifies the tests for init from current->pid == 1 to the equivalent
current == child_reaper. And then it causes exec in the ugly case to
modify child_reaper.
The only weird symptom is that you wind up with an init process that
doesn't have the oldest start time on the box.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/exec.c | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -660,12 +660,23 @@ static int de_thread(struct task_struct *tsk) | |||
660 | struct dentry *proc_dentry1, *proc_dentry2; | 660 | struct dentry *proc_dentry1, *proc_dentry2; |
661 | unsigned long ptrace; | 661 | unsigned long ptrace; |
662 | 662 | ||
663 | leader = current->group_leader; | ||
664 | /* | ||
665 | * If our leader is the child_reaper become | ||
666 | * the child_reaper and resend SIGKILL signal. | ||
667 | */ | ||
668 | if (unlikely(leader == child_reaper)) { | ||
669 | write_lock(&tasklist_lock); | ||
670 | child_reaper = current; | ||
671 | zap_other_threads(current); | ||
672 | write_unlock(&tasklist_lock); | ||
673 | } | ||
674 | |||
663 | /* | 675 | /* |
664 | * Wait for the thread group leader to be a zombie. | 676 | * Wait for the thread group leader to be a zombie. |
665 | * It should already be zombie at this point, most | 677 | * It should already be zombie at this point, most |
666 | * of the time. | 678 | * of the time. |
667 | */ | 679 | */ |
668 | leader = current->group_leader; | ||
669 | while (leader->exit_state != EXIT_ZOMBIE) | 680 | while (leader->exit_state != EXIT_ZOMBIE) |
670 | yield(); | 681 | yield(); |
671 | 682 | ||