From: Daniel Lezcano <daniel.lezcano@free.fr>
To: Matt Helsley <matthltc@us.ibm.com>
Cc: akpm@linux-foundation.org, containers@lists.linux-foundation.org,
bonbons@linux-vserver.org, oleg@tv-sign.ru,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] Notify container-init parent a 'reboot' occured
Date: Sat, 13 Aug 2011 16:41:00 +0200 [thread overview]
Message-ID: <4E468CFC.8050901@free.fr> (raw)
In-Reply-To: <20110813001959.GB5777@count0.beaverton.ibm.com>
On 08/13/2011 02:19 AM, Matt Helsley wrote:
> On Thu, Aug 11, 2011 at 10:24:01PM +0200, Daniel Lezcano wrote:
>> When the reboot syscall is called and the pid namespace where the calling
>> process belongs to is not from the init pidns, we send a SIGCHLD with CLD_REBOOTED
>> to the parent of this pid namespace.
> Shouldn't we honor the exit_signal set via clone() here rather than
> hardcode SIGCHLD? More below...
Hmm, I don't think so, that does not really make sense.
[ ... ]
>> +void do_notify_parent_cldreboot(struct task_struct *tsk, int why, char *buffer)
>> +{
>> + struct siginfo info = { };
>> + struct task_struct *parent;
>> + struct sighand_struct *sighand;
>> + unsigned long flags;
>> +
>> + if (tsk->ptrace)
>> + parent = tsk->parent;
>> + else {
>> + tsk = tsk->group_leader;
>> + parent = tsk->real_parent;
>> + }
>> +
>> + info.si_signo = SIGCHLD;
> should this be:
>
> info.si_signo = tsk->exit_signal == -1 ? SIGCHLD : tsk->exit_signal;
No, because this code is always called for SIGHLD.
The userspace will receive this signal with CLD_REBOOT if it sets the
SA_CLDREBOOT flag option which is not set by default.
>> + info.si_errno = 0;
>> + info.si_status = why;
>> +
>> + rcu_read_lock();
>> + info.si_pid = task_pid_nr_ns(tsk, parent->nsproxy->pid_ns);
>> + info.si_uid = __task_cred(tsk)->uid;
>> + rcu_read_unlock();
>> +
>> + info.si_utime = cputime_to_clock_t(tsk->utime);
>> + info.si_stime = cputime_to_clock_t(tsk->stime);
>> +
>> + info.si_code = CLD_REBOOTED;
>> +
>> + sighand = parent->sighand;
>> + spin_lock_irqsave(&sighand->siglock, flags);
>> + if (sighand->action[SIGCHLD-1].sa.sa_handler != SIG_IGN &&
>> + sighand->action[SIGCHLD-1].sa.sa_flags & SA_CLDREBOOT)
>> + __group_send_sig_info(SIGCHLD, &info, parent);
> (with corresponding changes above...)
>
>> + /*
>> + * Even if SIGCHLD is not generated, we must wake up wait4 calls.
>> + */
next prev parent reply other threads:[~2011-08-13 14:41 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-11 20:23 [PATCH 0/2] Send a SIGCHLD to the init's pid namespace parent when reboot Daniel Lezcano
2011-08-11 20:24 ` [PATCH 1/2] add SA_CLDREBOOT flag Daniel Lezcano
2011-08-14 16:15 ` Oleg Nesterov
2011-08-14 16:36 ` Bruno Prémont
2011-08-14 17:10 ` Oleg Nesterov
[not found] ` <20110814183611.05937c96-hY15tx4IgV39zxVx7UNMDg@public.gmane.org>
2011-08-14 17:10 ` Oleg Nesterov
[not found] ` <20110814161532.GA30846-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2011-08-14 16:36 ` Bruno Prémont
[not found] ` <1313094241-3674-2-git-send-email-daniel.lezcano-GANU6spQydw@public.gmane.org>
2011-08-14 16:15 ` Oleg Nesterov
[not found] ` <1313094241-3674-1-git-send-email-daniel.lezcano-GANU6spQydw@public.gmane.org>
2011-08-11 20:24 ` Daniel Lezcano
2011-08-11 20:24 ` [PATCH 2/2] Notify container-init parent a 'reboot' occured Daniel Lezcano
2011-08-14 16:17 ` [PATCH 0/2] Send a SIGCHLD to the init's pid namespace parent when reboot Oleg Nesterov
2011-08-11 20:24 ` [PATCH 2/2] Notify container-init parent a 'reboot' occured Daniel Lezcano
2011-08-11 21:09 ` Serge Hallyn
2011-08-11 21:30 ` Daniel Lezcano
2011-08-11 21:50 ` Serge Hallyn
[not found] ` <4E444A04.3070403-GANU6spQydw@public.gmane.org>
2011-08-11 21:50 ` Serge Hallyn
2011-08-12 16:29 ` Serge Hallyn
2011-08-12 16:29 ` Serge Hallyn
2011-08-12 20:42 ` Daniel Lezcano
2011-08-12 20:42 ` Daniel Lezcano
[not found] ` <4E45904F.60904-GANU6spQydw@public.gmane.org>
2011-08-12 21:13 ` Serge Hallyn
2011-08-12 21:13 ` Serge Hallyn
2011-08-11 21:30 ` Daniel Lezcano
2011-08-13 0:19 ` Matt Helsley
[not found] ` <20110813001959.GB5777-52DBMbEzqgQ/wnmkkaCWp/UQ3DHhIser@public.gmane.org>
2011-08-13 14:41 ` Daniel Lezcano
2011-08-13 14:41 ` Daniel Lezcano [this message]
2011-08-14 16:01 ` Oleg Nesterov
[not found] ` <1313094241-3674-3-git-send-email-daniel.lezcano-GANU6spQydw@public.gmane.org>
2011-08-11 21:09 ` Serge Hallyn
2011-08-13 0:19 ` Matt Helsley
2011-08-14 16:01 ` Oleg Nesterov
2011-08-14 16:17 ` [PATCH 0/2] Send a SIGCHLD to the init's pid namespace parent when reboot Oleg Nesterov
2011-08-14 21:36 ` Serge E. Hallyn
2011-08-15 14:47 ` Oleg Nesterov
2011-08-15 17:39 ` Serge E. Hallyn
2011-08-15 17:50 ` Daniel Lezcano
[not found] ` <20110815173940.GA19620-A9i7LUbDfNHQT0dZR+AlfA@public.gmane.org>
2011-08-15 17:50 ` Daniel Lezcano
[not found] ` <20110815144744.GA9660-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2011-08-15 17:39 ` Serge E. Hallyn
2011-08-18 23:46 ` Daniel Lezcano
2011-08-18 23:46 ` Daniel Lezcano
[not found] ` <4E4DA461.8030006-GANU6spQydw@public.gmane.org>
2011-08-19 15:24 ` Oleg Nesterov
2011-08-19 15:24 ` Oleg Nesterov
[not found] ` <20110819152416.GA17034-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2011-08-22 12:28 ` Daniel Lezcano
2011-08-22 12:28 ` Daniel Lezcano
[not found] ` <4E524B73.3050704-GANU6spQydw@public.gmane.org>
2011-08-22 15:44 ` Oleg Nesterov
2011-08-22 15:44 ` Oleg Nesterov
2011-08-22 16:31 ` Bruno Prémont
2011-08-22 17:39 ` Oleg Nesterov
2011-08-22 19:17 ` Bruno Prémont
[not found] ` <20110822211716.7c141d5c-hY15tx4IgV39zxVx7UNMDg@public.gmane.org>
2011-08-23 13:33 ` Oleg Nesterov
2011-08-23 13:33 ` Oleg Nesterov
2011-08-23 14:09 ` Greg Kurz
[not found] ` <1314108566.3465.29.camel-GiB8zCg7hOfDOqzlkpFKJg@public.gmane.org>
2011-08-23 14:29 ` Oleg Nesterov
2011-08-23 14:29 ` Oleg Nesterov
[not found] ` <20110823142914.GA22593-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2011-08-24 19:44 ` Bruno Prémont
2011-08-24 19:44 ` Bruno Prémont
2011-08-25 15:37 ` Oleg Nesterov
[not found] ` <20110824214418.474b24c6-hY15tx4IgV39zxVx7UNMDg@public.gmane.org>
2011-08-25 15:37 ` Oleg Nesterov
[not found] ` <20110823133302.GA19582-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2011-08-23 14:09 ` Greg Kurz
[not found] ` <20110822173949.GA13242-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2011-08-22 19:17 ` Bruno Prémont
[not found] ` <20110822183134.10390b46-hY15tx4IgV39zxVx7UNMDg@public.gmane.org>
2011-08-22 17:39 ` Oleg Nesterov
[not found] ` <20110822154448.GA8527-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2011-08-22 16:31 ` Bruno Prémont
[not found] ` <20110814213642.GB13799-A9i7LUbDfNHQT0dZR+AlfA@public.gmane.org>
2011-08-15 14:47 ` Oleg Nesterov
[not found] ` <20110814161707.GB30846-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2011-08-14 21:36 ` Serge E. Hallyn
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=4E468CFC.8050901@free.fr \
--to=daniel.lezcano@free.fr \
--cc=akpm@linux-foundation.org \
--cc=bonbons@linux-vserver.org \
--cc=containers@lists.linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=matthltc@us.ibm.com \
--cc=oleg@tv-sign.ru \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.