diff options
author | Oleg Nesterov <oleg@redhat.com> | 2014-12-10 18:55:25 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-10 20:41:18 -0500 |
commit | 24c037ebf5723d4d9ab0996433cee4f96c292a4d (patch) | |
tree | 9317b4c2d079b02610b3578d2b8e5f3b365fb93d /kernel/pid.c | |
parent | 6c66e7dba3d4419c8b973505679635efcd6b311c (diff) |
exit: pidns: alloc_pid() leaks pid_namespace if child_reaper is exiting
alloc_pid() does get_pid_ns() beforehand but forgets to put_pid_ns() if it
fails because disable_pid_allocation() was called by the exiting
child_reaper.
We could simply move get_pid_ns() down to successful return, but this fix
tries to be as trivial as possible.
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Reviewed-by: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Aaron Tomlin <atomlin@redhat.com>
Cc: Pavel Emelyanov <xemul@parallels.com>
Cc: Serge Hallyn <serge.hallyn@ubuntu.com>
Cc: Sterling Alexander <stalexan@redhat.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/pid.c')
-rw-r--r-- | kernel/pid.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/pid.c b/kernel/pid.c index 9b9a26698144..82430c858d69 100644 --- a/kernel/pid.c +++ b/kernel/pid.c | |||
@@ -341,6 +341,8 @@ out: | |||
341 | 341 | ||
342 | out_unlock: | 342 | out_unlock: |
343 | spin_unlock_irq(&pidmap_lock); | 343 | spin_unlock_irq(&pidmap_lock); |
344 | put_pid_ns(ns); | ||
345 | |||
344 | out_free: | 346 | out_free: |
345 | while (++i <= ns->level) | 347 | while (++i <= ns->level) |
346 | free_pidmap(pid->numbers + i); | 348 | free_pidmap(pid->numbers + i); |