From: "Serge E. Hallyn" <serge@hallyn.com>
To: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Davide Libenzi <davidel@xmailserver.org>,
"Eric W. Biederman" <ebiederm@xmission.com>,
Jan Engelhardt <jengelh@linux01.gwdg.de>,
Ingo Molnar <mingo@elte.hu>,
Linus Torvalds <torvalds@linux-foundation.org>,
Robin Holt <holt@sgi.com>, Roland McGrath <roland@redhat.com>,
"Serge E. Hallyn" <serge@hallyn.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/3] make kernel threads invisible to /sbin/init
Date: Tue, 10 Apr 2007 18:16:04 -0500 [thread overview]
Message-ID: <20070410231604.GA19852@vino.hallyn.com> (raw)
In-Reply-To: <20070410185133.GA104@tv-sign.ru>
Quoting Oleg Nesterov (oleg@tv-sign.ru):
> 1. rename reparent_to_init() to reparent_kthread() and export it
>
> 2. use init_pid_ns.child_reaper instead of child_reaper(current)
Each of these patches looks good to me, but this part in particular
is a must-have bugfix.
Just started some tests, if any failures come back I'll report them
tonight.
thanks Oleg,
-serge
> 3. set ->exit_signal = -1, so init can't see us and we don't use
> it to reap the task.
>
> 4. add reparent_kthread() to kthread() and stopmachine()
>
> See also
>
> http://marc.info/?t=117580282200003&r=1
> http://marc.info/?t=95299284800003&r=1
>
> Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
>
> include/linux/sched.h | 1 +
> kernel/exit.c | 16 ++++++++--------
> kernel/kthread.c | 1 +
> kernel/stop_machine.c | 1 +
> 4 files changed, 11 insertions(+), 8 deletions(-)
>
> --- 2.6.21-rc5/include/linux/sched.h~2_DETACH 2007-04-05 12:18:28.000000000 +0400
> +++ 2.6.21-rc5/include/linux/sched.h 2007-04-10 21:52:27.000000000 +0400
> @@ -1401,6 +1401,7 @@ extern void exit_itimers(struct signal_s
>
> extern NORET_TYPE void do_group_exit(int);
>
> +extern void reparent_kthread(void);
> extern void daemonize(const char *, ...);
> extern int allow_signal(int);
> extern int disallow_signal(int);
> --- 2.6.21-rc5/kernel/exit.c~2_DETACH 2007-04-10 21:32:44.000000000 +0400
> +++ 2.6.21-rc5/kernel/exit.c 2007-04-10 21:59:41.000000000 +0400
> @@ -255,7 +255,7 @@ static int has_stopped_jobs(struct pid *
> }
>
> /**
> - * reparent_to_init - Reparent the calling kernel thread to the init task of the pid space that the thread belongs to.
> + * reparent_kthread - Reparent the calling kernel thread to the init task of the pid space that the thread belongs to.
> *
> * If a kernel thread is launched as a result of a system call, or if
> * it ever exits, it should generally reparent itself to init so that
> @@ -264,20 +264,20 @@ static int has_stopped_jobs(struct pid *
> * The various task state such as scheduling policy and priority may have
> * been inherited from a user process, so we reset them to sane values here.
> *
> - * NOTE that reparent_to_init() gives the caller full capabilities.
> + * NOTE that reparent_kthread() gives the caller full capabilities.
> */
> -static void reparent_to_init(void)
> +void reparent_kthread(void)
> {
> write_lock_irq(&tasklist_lock);
>
> ptrace_unlink(current);
> remove_parent(current);
> - current->parent = child_reaper(current);
> - current->real_parent = child_reaper(current);
> + current->parent = init_pid_ns.child_reaper;
> + current->real_parent = current->parent;
> add_parent(current);
>
> - /* Set the exit signal to SIGCHLD so we signal init on exit */
> - current->exit_signal = SIGCHLD;
> + /* make the task auto-reap */
> + current->exit_signal = -1;
>
> security_task_reparent_to_init(current);
> write_unlock_irq(&tasklist_lock);
> @@ -391,7 +391,7 @@ void daemonize(const char *name, ...)
> current->files = init_task.files;
> atomic_inc(¤t->files->count);
>
> - reparent_to_init();
> + reparent_kthread();
>
> if (!has_rt_policy(current) && (task_nice(current) < 0))
> set_user_nice(current, 0);
> --- 2.6.21-rc5/kernel/kthread.c~2_DETACH 2007-04-05 12:18:28.000000000 +0400
> +++ 2.6.21-rc5/kernel/kthread.c 2007-04-10 22:02:31.000000000 +0400
> @@ -82,6 +82,7 @@ static int kthread(void *_create)
> sigset_t blocked;
> int ret = -EINTR;
>
> + reparent_kthread();
> kthread_exit_files();
>
> /* Copy data: it's on keventd's stack */
> --- 2.6.21-rc5/kernel/stop_machine.c~2_DETACH 2006-10-22 18:24:03.000000000 +0400
> +++ 2.6.21-rc5/kernel/stop_machine.c 2007-04-10 22:04:23.000000000 +0400
> @@ -33,6 +33,7 @@ static int stopmachine(void *cpu)
> int irqs_disabled = 0;
> int prepared = 0;
>
> + reparent_kthread();
> set_cpus_allowed(current, cpumask_of_cpu((int)(long)cpu));
>
> /* Ack: we are alive */
next prev parent reply other threads:[~2007-04-10 23:16 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-10 18:51 [PATCH 2/3] make kernel threads invisible to /sbin/init Oleg Nesterov
2007-04-10 23:16 ` Serge E. Hallyn [this message]
2007-04-11 3:29 ` Eric W. Biederman
2007-04-11 3:56 ` Eric W. Biederman
2007-04-11 11:42 ` Oleg Nesterov
2007-04-11 5:44 ` [PATCH] kthread: Don't depend on work queues Eric W. Biederman
2007-04-11 7:03 ` Andrew Morton
2007-04-11 10:13 ` Rafael J. Wysocki
2007-04-11 11:21 ` Gautham R Shenoy
2007-04-11 11:48 ` Oleg Nesterov
2007-04-11 13:31 ` Gautham R Shenoy
2007-04-11 14:36 ` Oleg Nesterov
2007-04-11 19:37 ` Rafael J. Wysocki
2007-04-11 14:44 ` Rafael J. Wysocki
2007-04-11 18:22 ` Eric W. Biederman
2007-04-11 18:27 ` [PATCH] kthread: Don't depend on work queues (take 2) Eric W. Biederman
2007-04-11 18:49 ` [PATCH] Change reparent_to_init to reparent_to_kthreadd Eric W. Biederman
2007-04-11 19:21 ` [PATCH] kthread: Don't depend on work queues (take 2) Andrew Morton
2007-04-11 19:28 ` Oleg Nesterov
2007-04-11 19:40 ` Eric W. Biederman
2007-04-11 19:49 ` Oleg Nesterov
2007-04-11 20:02 ` Eric W. Biederman
2007-04-11 12:04 ` [PATCH] kthread: Don't depend on work queues Oleg Nesterov
2007-04-11 16:25 ` Eric W. Biederman
2007-04-11 13:15 ` Oleg Nesterov
2007-04-11 16:22 ` Eric W. Biederman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070410231604.GA19852@vino.hallyn.com \
--to=serge@hallyn.com \
--cc=akpm@linux-foundation.org \
--cc=davidel@xmailserver.org \
--cc=ebiederm@xmission.com \
--cc=holt@sgi.com \
--cc=jengelh@linux01.gwdg.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=oleg@tv-sign.ru \
--cc=roland@redhat.com \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox