Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753443AbYKLPMj (ORCPT ); Wed, 12 Nov 2008 10:12:39 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752597AbYKLPMa (ORCPT ); Wed, 12 Nov 2008 10:12:30 -0500 Received: from mx2.redhat.com ([66.187.237.31]:40821 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752550AbYKLPM3 (ORCPT ); Wed, 12 Nov 2008 10:12:29 -0500 Date: Wed, 12 Nov 2008 17:12:34 +0100 From: Oleg Nesterov To: sukadev@linux.vnet.ibm.com Cc: "Eric W. Biederman" , Pavel Emelyanov , daniel@hozac.com, Nadia Derbey , serue@us.ibm.com, clg@fr.ibm.com, Containers , sukadev@us.ibm.com, linux-kernel@vger.kernel.org Subject: Re: Signals to cinit Message-ID: <20081112161234.GC13269@redhat.com> References: <20081101180505.GA24268@us.ibm.com> <20081110173839.GA11121@redhat.com> <20081110193228.GA15519@redhat.com> <20081110232735.GA20891@us.ibm.com> <20081112145226.GA13269@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081112145226.GA13269@redhat.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1317 Lines: 37 On 11/12, Oleg Nesterov wrote: > > On 11/10, sukadev@linux.vnet.ibm.com wrote: > > > > Oleg Nesterov [oleg@redhat.com] wrote: > > | > Or something. yes, sys_rt_sigqueueinfo() is problematic... > > > > Yes, if user-space sets si_pid to 0. > > > > Can we change sys_rt_sigqueueinfo() to: > > > > if (!info->si_pid) > > info->si_pid = getpid(); > > I doubt very much we can do this. This can break the existing applications > which can overload ->si_pid. I think it is better to pass ->si_pid as is. > If user-space sends siginfo_t so sub-namespace, it must know what it does. > I don't think the kernel can help, it just can't know what ->si_pid actually > means. Unless this is documented somewhere, but I don't know. On the second thought, I think perhaps we should do the following. if sys_rt_sigqueueinfo() sends the signal to the sub-namespace, then clear always ->sid_pid. Otherwise do not touch it. This way we can't break the existing apps, and this simplifies send_signal() which should take "is_it_from_ancestor_ns" into account. What do you think? Oleg. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/