* [RFC][PATCH] Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination
@ 2009-07-01 7:40 Sukadev Bhattiprolu
[not found] ` <20090701074045.GA14595-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
[not found] ` <20090702115740.GB3552@redhat.com>
0 siblings, 2 replies; 4+ messages in thread
From: Sukadev Bhattiprolu @ 2009-07-01 7:40 UTC (permalink / raw)
To: oleg-H+wXaHxf7aLQT0dZR+AlfA, roland-H+wXaHxf7aLQT0dZR+AlfA,
Eric W. Biederman, Oren Laadan
Cc: Containers, Alexey Dobriyan, linux-kernel-u79uwXL29TY76Z2rM5mHXA
Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination.
CLONE_PARENT was used to implement an older threading model. For consistency
with the CLONE_THREAD check in copy_pid_ns(), disable CLONE_PARENT and
CLONE_SIGHAND with CLONE_NEWPID, at least until the required semantics of
the pid namespaces are clear.
Changelog[v2]:
[Eric Biederman] Disable CLONE_SIGHAND also ???
Signed-off-by: Sukadev Bhattiprolu <sukadev-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Acked-by: Roland McGrath <roland-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
kernel/pid_namespace.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: linux-mmotm/kernel/pid_namespace.c
===================================================================
--- linux-mmotm.orig/kernel/pid_namespace.c 2009-06-30 23:01:09.000000000 -0700
+++ linux-mmotm/kernel/pid_namespace.c 2009-06-30 23:49:06.000000000 -0700
@@ -118,7 +118,7 @@ struct pid_namespace *copy_pid_ns(unsign
{
if (!(flags & CLONE_NEWPID))
return get_pid_ns(old_ns);
- if (flags & CLONE_THREAD)
+ if (flags & (CLONE_THREAD|CLONE_PARENT|CLONE_SIGHAND))
return ERR_PTR(-EINVAL);
return create_pid_namespace(old_ns);
}
^ permalink raw reply [flat|nested] 4+ messages in thread[parent not found: <20090701074045.GA14595-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>]
* Re: [RFC][PATCH] Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination [not found] ` <20090701074045.GA14595-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> @ 2009-07-02 1:31 ` Serge E. Hallyn 2009-07-02 11:57 ` Oleg Nesterov 1 sibling, 0 replies; 4+ messages in thread From: Serge E. Hallyn @ 2009-07-02 1:31 UTC (permalink / raw) To: Sukadev Bhattiprolu Cc: Containers, oleg-H+wXaHxf7aLQT0dZR+AlfA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Eric W. Biederman, Alexey Dobriyan, roland-H+wXaHxf7aLQT0dZR+AlfA Quoting Sukadev Bhattiprolu (sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org): > > Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination. > > CLONE_PARENT was used to implement an older threading model. For consistency > with the CLONE_THREAD check in copy_pid_ns(), disable CLONE_PARENT and > CLONE_SIGHAND with CLONE_NEWPID, at least until the required semantics of > the pid namespaces are clear. > > Changelog[v2]: > [Eric Biederman] Disable CLONE_SIGHAND also ??? > > Signed-off-by: Sukadev Bhattiprolu <sukadev-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> > Acked-by: Roland McGrath <roland-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> Acked-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> > --- > kernel/pid_namespace.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: linux-mmotm/kernel/pid_namespace.c > =================================================================== > --- linux-mmotm.orig/kernel/pid_namespace.c 2009-06-30 23:01:09.000000000 -0700 > +++ linux-mmotm/kernel/pid_namespace.c 2009-06-30 23:49:06.000000000 -0700 > @@ -118,7 +118,7 @@ struct pid_namespace *copy_pid_ns(unsign > { > if (!(flags & CLONE_NEWPID)) > return get_pid_ns(old_ns); > - if (flags & CLONE_THREAD) > + if (flags & (CLONE_THREAD|CLONE_PARENT|CLONE_SIGHAND)) > return ERR_PTR(-EINVAL); > return create_pid_namespace(old_ns); > } ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFC][PATCH] Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination [not found] ` <20090701074045.GA14595-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> 2009-07-02 1:31 ` Serge E. Hallyn @ 2009-07-02 11:57 ` Oleg Nesterov 1 sibling, 0 replies; 4+ messages in thread From: Oleg Nesterov @ 2009-07-02 11:57 UTC (permalink / raw) To: Sukadev Bhattiprolu Cc: Containers, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Eric W. Biederman, Alexey Dobriyan, roland-H+wXaHxf7aLQT0dZR+AlfA On 07/01, Sukadev Bhattiprolu wrote: > > Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination. > > CLONE_PARENT was used to implement an older threading model. For consistency > with the CLONE_THREAD check in copy_pid_ns(), disable CLONE_PARENT and > CLONE_SIGHAND with CLONE_NEWPID, at least until the required semantics of > the pid namespaces are clear. > > Changelog[v2]: > [Eric Biederman] Disable CLONE_SIGHAND also ??? > > Signed-off-by: Sukadev Bhattiprolu <sukadev-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> > Acked-by: Roland McGrath <roland-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > --- > kernel/pid_namespace.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: linux-mmotm/kernel/pid_namespace.c > =================================================================== > --- linux-mmotm.orig/kernel/pid_namespace.c 2009-06-30 23:01:09.000000000 -0700 > +++ linux-mmotm/kernel/pid_namespace.c 2009-06-30 23:49:06.000000000 -0700 > @@ -118,7 +118,7 @@ struct pid_namespace *copy_pid_ns(unsign > { > if (!(flags & CLONE_NEWPID)) > return get_pid_ns(old_ns); > - if (flags & CLONE_THREAD) > + if (flags & (CLONE_THREAD|CLONE_PARENT|CLONE_SIGHAND)) > return ERR_PTR(-EINVAL); Still can't understand why CLONE_SIGHAND is forbidden... CLONE_SIGHAND doesn't mean we share the signal queue, so what is the reason? Oleg. ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <20090702115740.GB3552@redhat.com>]
[parent not found: <20090702115740.GB3552-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>]
* Re: [RFC][PATCH] Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination [not found] ` <20090702115740.GB3552-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> @ 2009-07-11 19:39 ` Sukadev Bhattiprolu 0 siblings, 0 replies; 4+ messages in thread From: Sukadev Bhattiprolu @ 2009-07-11 19:39 UTC (permalink / raw) To: Oleg Nesterov Cc: Containers, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Eric W. Biederman, Alexey Dobriyan, roland-H+wXaHxf7aLQT0dZR+AlfA Oleg Nesterov [oleg-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org] wrote: | On 07/01, Sukadev Bhattiprolu wrote: | > | > Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination. | > | > CLONE_PARENT was used to implement an older threading model. For consistency | > with the CLONE_THREAD check in copy_pid_ns(), disable CLONE_PARENT and | > CLONE_SIGHAND with CLONE_NEWPID, at least until the required semantics of | > the pid namespaces are clear. | > | > Changelog[v2]: | > [Eric Biederman] Disable CLONE_SIGHAND also ??? | > | > Signed-off-by: Sukadev Bhattiprolu <sukadev-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org> | > Acked-by: Roland McGrath <roland-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> | > --- | > kernel/pid_namespace.c | 2 +- | > 1 file changed, 1 insertion(+), 1 deletion(-) | > | > Index: linux-mmotm/kernel/pid_namespace.c | > =================================================================== | > --- linux-mmotm.orig/kernel/pid_namespace.c 2009-06-30 23:01:09.000000000 -0700 | > +++ linux-mmotm/kernel/pid_namespace.c 2009-06-30 23:49:06.000000000 -0700 | > @@ -118,7 +118,7 @@ struct pid_namespace *copy_pid_ns(unsign | > { | > if (!(flags & CLONE_NEWPID)) | > return get_pid_ns(old_ns); | > - if (flags & CLONE_THREAD) | > + if (flags & (CLONE_THREAD|CLONE_PARENT|CLONE_SIGHAND)) | > return ERR_PTR(-EINVAL); | | Still can't understand why CLONE_SIGHAND is forbidden... | | CLONE_SIGHAND doesn't mean we share the signal queue, so what is | the reason? I don't have a convincing reason. We could disable just the CLONE_NEWPID|CLONE_PARENT combination till we have a need for it. We talked about removing CLONE_PARENT but backed-off since some application may be using it. Disabling specific combinations like this (CLONE_NEWPID is relatively a new flag) could make it a little easier to remove CLONE_PARENT in the future. Sukadev ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-07-11 19:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-01 7:40 [RFC][PATCH] Deny CLONE_PARENT|CLONE_NEWPID|CLONE_SIGHAND combination Sukadev Bhattiprolu
[not found] ` <20090701074045.GA14595-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-07-02 1:31 ` Serge E. Hallyn
2009-07-02 11:57 ` Oleg Nesterov
[not found] ` <20090702115740.GB3552@redhat.com>
[not found] ` <20090702115740.GB3552-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2009-07-11 19:39 ` Sukadev Bhattiprolu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox