• P
    pid namespaces: move exit_task_namespaces() · 2e4a7072
    Pavel Emelyanov 提交于
    Make task release its namespaces after it has reparented all his children to
    child_reaper, but before it notifies its parent about its death.
    
    The reason to release namespaces after reparenting is that when task exits it
    may send a signal to its parent (SIGCHLD), but if the parent has already
    exited its namespaces there will be no way to decide what pid to dever to him
    - parent can be from different namespace.
    
    The reason to release namespace before notifying the parent it that when task
    sends a SIGCHLD to parent it can call wait() on this taks and release it.  But
    releasing the mnt namespace implies dropping of all the mounts in the mnt
    namespace and NFS expects the task to have valid sighand pointer.
    
    Thanks to Oleg for pointing out some races that can apear and helping with
    patches and fixes.
    Signed-off-by: NPavel Emelyanov <xemul@openvz.org>
    Cc: Oleg Nesterov <oleg@tv-sign.ru>
    Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com>
    Cc: Paul Menage <menage@google.com>
    Cc: "Eric W. Biederman" <ebiederm@xmission.com>
    Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
    Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
    2e4a7072
exit.c 43.3 KB