* [PATCH] nsproxy: Fix ->nsproxy counting problem in copy_namespace.
@ 2013-03-07 9:42 Rakib Mullick
2013-03-07 10:14 ` Eric W. Biederman
0 siblings, 1 reply; 2+ messages in thread
From: Rakib Mullick @ 2013-03-07 9:42 UTC (permalink / raw)
To: linux-kernel; +Cc: Eric W. Biederman, Serge Hallyn, Andrew Morton
>From cd41495e25cf2641ffe9e01a40d3d221a46b08be Mon Sep 17 00:00:00 2001
From: Rakib Mullick <rakib.mullick@gmail.com>
Date: Thu, 7 Mar 2013 14:52:20 +0600
Subject: [PATCH] nsproxy: Fix ->nsproxy counting problem in copy_namespace.
In copy_namespace(), get_nsproxy() (which increments nsproxy->count) is called before checking namespace related flags.
Therefore, task's nsproxy->count could have improper value, which could lead to calling free_nsproxy unnecessarily. Also,
incrementing nsproxy->count is an atomic operation (which is expensive than normal increment operation), so before
doing it - it's better we make sure namespace related flags are set.
Signed-off-by: Rakib Mullick <rakib.mullick@gmail.com>
---
kernel/nsproxy.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
index afc0456..de36209 100644
--- a/kernel/nsproxy.c
+++ b/kernel/nsproxy.c
@@ -130,12 +130,12 @@ int copy_namespaces(unsigned long flags, struct task_struct *tsk)
if (!old_ns)
return 0;
- get_nsproxy(old_ns);
-
if (!(flags & (CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC |
CLONE_NEWPID | CLONE_NEWNET)))
return 0;
+ get_nsproxy(old_ns);
+
if (!ns_capable(user_ns, CAP_SYS_ADMIN)) {
err = -EPERM;
goto out;
--
1.7.11.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] nsproxy: Fix ->nsproxy counting problem in copy_namespace.
2013-03-07 9:42 [PATCH] nsproxy: Fix ->nsproxy counting problem in copy_namespace Rakib Mullick
@ 2013-03-07 10:14 ` Eric W. Biederman
0 siblings, 0 replies; 2+ messages in thread
From: Eric W. Biederman @ 2013-03-07 10:14 UTC (permalink / raw)
To: Rakib Mullick; +Cc: linux-kernel, Serge Hallyn, Andrew Morton
Thanks applied.
This is an unpleasant accidental memory leak.
Eric
Rakib Mullick <rakib.mullick@gmail.com> writes:
> From cd41495e25cf2641ffe9e01a40d3d221a46b08be Mon Sep 17 00:00:00 2001
> From: Rakib Mullick <rakib.mullick@gmail.com>
> Date: Thu, 7 Mar 2013 14:52:20 +0600
> Subject: [PATCH] nsproxy: Fix ->nsproxy counting problem in copy_namespace.
>
> In copy_namespace(), get_nsproxy() (which increments nsproxy->count) is called before checking namespace related flags.
> Therefore, task's nsproxy->count could have improper value, which could lead to calling free_nsproxy unnecessarily. Also,
> incrementing nsproxy->count is an atomic operation (which is expensive than normal increment operation), so before
> doing it - it's better we make sure namespace related flags are set.
>
> Signed-off-by: Rakib Mullick <rakib.mullick@gmail.com>
> ---
> kernel/nsproxy.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
> index afc0456..de36209 100644
> --- a/kernel/nsproxy.c
> +++ b/kernel/nsproxy.c
> @@ -130,12 +130,12 @@ int copy_namespaces(unsigned long flags, struct task_struct *tsk)
> if (!old_ns)
> return 0;
>
> - get_nsproxy(old_ns);
> -
> if (!(flags & (CLONE_NEWNS | CLONE_NEWUTS | CLONE_NEWIPC |
> CLONE_NEWPID | CLONE_NEWNET)))
> return 0;
>
> + get_nsproxy(old_ns);
> +
> if (!ns_capable(user_ns, CAP_SYS_ADMIN)) {
> err = -EPERM;
> goto out;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-03-07 10:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-07 9:42 [PATCH] nsproxy: Fix ->nsproxy counting problem in copy_namespace Rakib Mullick
2013-03-07 10:14 ` Eric W. Biederman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox