From: Oleg Nesterov <oleg@redhat.com>
To: Ivan Delalande <colona@arista.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>,
Andrew Morton <akpm@linux-foundation.org>,
Al Viro <viro@zeniv.linux.org.uk>,
Dmitry Safonov <0x7f454c46@gmail.com>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
Andy Lutomirski <luto@kernel.org>
Subject: Re: [PATCH v2] exec: don't force_sigsegv processes with a pending fatal signal
Date: Mon, 11 Feb 2019 17:02:56 +0100 [thread overview]
Message-ID: <20190211160255.GC21430@redhat.com> (raw)
In-Reply-To: <20190209001638.GA14025@visor>
On 02/08, Ivan Delalande wrote:
>
> A difference I've noticed with your tree (unrelated to my issue here but
> that you may want to look at) is when I run my reproducer under
> strace -f, I'm now getting quite a lot of "Exit of unknown pid 12345
> ignored" warnings from strace, which I've never seen with mainline.
> My reproducer simply fork-exec tail processes in a loop, and tries to
> sigkill them in the parent with a variable delay.
Hmm... may be because of PTRACE_EVENT_EXIT problem I mentioned in reply
to this change...
>
> Thank you,
>
> > diff --git a/kernel/signal.c b/kernel/signal.c
> > index 9ca8e5278c8e..5424cb0006bc 100644
> > --- a/kernel/signal.c
> > +++ b/kernel/signal.c
> > @@ -2393,6 +2393,11 @@ bool get_signal(struct ksignal *ksig)
> > goto relock;
> > }
> >
> > + /* Has this task already been marked for death? */
> > + ksig->info.si_signo = signr = SIGKILL;
> > + if (signal_group_exit(signal))
> > + goto fatal;
> > +
> > for (;;) {
> > struct k_sigaction *ka;
> >
> > @@ -2488,6 +2493,7 @@ bool get_signal(struct ksignal *ksig)
> > continue;
> > }
> >
> > + fatal:
> > spin_unlock_irq(&sighand->siglock);
> >
> >
>
> --
> Ivan Delalande
> Arista Networks
next prev parent reply other threads:[~2019-02-11 16:03 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-05 2:53 [PATCH v2] exec: don't force_sigsegv processes with a pending fatal signal Ivan Delalande
2019-02-05 21:11 ` Andrew Morton
2019-02-06 3:10 ` Ivan Delalande
2019-02-08 5:13 ` Eric W. Biederman
2019-02-09 0:16 ` Ivan Delalande
2019-02-10 17:05 ` Eric W. Biederman
2019-02-11 23:25 ` Ivan Delalande
2019-02-11 16:02 ` Oleg Nesterov [this message]
2019-02-11 17:12 ` Oleg Nesterov
2019-02-11 23:20 ` Ivan Delalande
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=20190211160255.GC21430@redhat.com \
--to=oleg@redhat.com \
--cc=0x7f454c46@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=colona@arista.com \
--cc=ebiederm@xmission.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@kernel.org \
--cc=viro@zeniv.linux.org.uk \
/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.