]> git.karo-electronics.de Git - linux-beck.git/commitdiff
pidns: Don't have unshare(CLONE_NEWPID) imply CLONE_THREAD
authorEric W. Biederman <ebiederm@xmission.com>
Tue, 5 Mar 2013 21:59:48 +0000 (13:59 -0800)
committerEric W. Biederman <ebiederm@xmission.com>
Sat, 31 Aug 2013 06:44:00 +0000 (23:44 -0700)
I goofed when I made unshare(CLONE_NEWPID) only work in a
single-threaded process.  There is no need for that requirement and in
fact I analyzied things right for setns.  The hard requirement
is for tasks that share a VM to all be in the pid namespace and
we properly prevent that in do_fork.

Just to be certain I took a look through do_wait and
forget_original_parent and there are no cases that make it any harder
for children to be in the multiple pid namespaces than it is for
children to be in the same pid namespace.  I also performed a check to
see if there were in uses of task->nsproxy_pid_ns I was not familiar
with, but it is only used when allocating a new pid for a new task,
and in checks to prevent craziness from happening.

Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
kernel/fork.c

index 66635c80a813e876d3a3529ed13ce410ab987c4e..eb45f1d72703a542f2b5bc53b62068661820599a 100644 (file)
@@ -1817,11 +1817,6 @@ SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
         */
        if (unshare_flags & CLONE_NEWUSER)
                unshare_flags |= CLONE_THREAD | CLONE_FS;
-       /*
-        * If unsharing a pid namespace must also unshare the thread.
-        */
-       if (unshare_flags & CLONE_NEWPID)
-               unshare_flags |= CLONE_THREAD;
        /*
         * If unsharing a thread from a thread group, must also unshare vm.
         */