[PATCH] exec: allow init to exec from any thread.
authorEric W. Biederman <ebiederm@xmission.com>
Wed, 29 Mar 2006 00:10:58 +0000 (16:10 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Wed, 29 Mar 2006 02:36:40 +0000 (18:36 -0800)
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>
fs/exec.c
kernel/exit.c
kernel/signal.c

index c7397c46ad6d174b7af1b04725bd59d904a4cf81..d0ecea0781f7d0f275e173694a94912d65fa223f 100644 (file)
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -660,12 +660,23 @@ static int de_thread(struct task_struct *tsk)
                struct dentry *proc_dentry1, *proc_dentry2;
                unsigned long ptrace;
 
+               leader = current->group_leader;
+               /*
+                * If our leader is the child_reaper become
+                * the child_reaper and resend SIGKILL signal.
+                */
+               if (unlikely(leader == child_reaper)) {
+                       write_lock(&tasklist_lock);
+                       child_reaper = current;
+                       zap_other_threads(current);
+                       write_unlock(&tasklist_lock);
+               }
+
                /*
                 * Wait for the thread group leader to be a zombie.
                 * It should already be zombie at this point, most
                 * of the time.
                 */
-               leader = current->group_leader;
                while (leader->exit_state != EXIT_ZOMBIE)
                        yield();
 
index a8c7efc7a681a99220711517b200de81e02eba41..223a8802b665e8f04b8f3174c1634a48923b3403 100644 (file)
@@ -807,7 +807,7 @@ fastcall NORET_TYPE void do_exit(long code)
                panic("Aiee, killing interrupt handler!");
        if (unlikely(!tsk->pid))
                panic("Attempted to kill the idle task!");
-       if (unlikely(tsk->pid == 1))
+       if (unlikely(tsk == child_reaper))
                panic("Attempted to kill init!");
 
        if (unlikely(current->ptrace & PT_TRACE_EXIT)) {
index 75f7341b0c397275ccd35b8ff29798a5a3d8af4b..dc8f91bf9f8970d00eeb73d9a4c49082fe7b8d91 100644 (file)
@@ -1990,7 +1990,7 @@ relock:
                        continue;
 
                /* Init gets no signals it doesn't want.  */
-               if (current->pid == 1)
+               if (current == child_reaper)
                        continue;
 
                if (sig_kernel_stop(signr)) {