* [PATCH] kernel/nsproxy.c: Fix memory leak of create_new_namespaces().
@ 2011-10-18 4:20 wzt
0 siblings, 0 replies; 3+ messages in thread
From: wzt @ 2011-10-18 4:20 UTC (permalink / raw)
To: linux-kernel; +Cc: serue, xemul, ebiederm
copy_pid_ns() has allocted some memory via create_pid_namespace(), if copy_net_ns()
failed via create_new_namespaces(), it will cause memory leak. The copy_utsname()
have the same problem.
Signed-off-by: Zhitong Wang <zhitong.wangzt@alibaba-inc.com>
---
kernel/nsproxy.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
index 9aeab4b..e2d18c9 100644
--- a/kernel/nsproxy.c
+++ b/kernel/nsproxy.c
@@ -99,14 +99,18 @@ static struct nsproxy *create_new_namespaces(unsigned long flags,
return new_nsp;
out_net:
- if (new_nsp->pid_ns)
+ if (new_nsp->pid_ns) {
put_pid_ns(new_nsp->pid_ns);
+ free_pid_ns(&new_nsp->pid_ns->kfre);
+ }
out_pid:
if (new_nsp->ipc_ns)
put_ipc_ns(new_nsp->ipc_ns);
out_ipc:
- if (new_nsp->uts_ns)
+ if (new_nsp->uts_ns) {
put_uts_ns(new_nsp->uts_ns);
+ free_uts_ns(&new_nsp->pid_ns->kfref);
+ }
out_uts:
if (new_nsp->mnt_ns)
put_mnt_ns(new_nsp->mnt_ns);
--
1.7.4.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] kernel/nsproxy.c: Fix memory leak of create_new_namespaces().
@ 2011-10-18 6:07 wzt
[not found] ` <CAJn8CcFded9JCh+G=dQJtjkWGrg-qXbJu2U66TX=r4PVpjQNSA@mail.gmail.com>
0 siblings, 1 reply; 3+ messages in thread
From: wzt @ 2011-10-18 6:07 UTC (permalink / raw)
To: linux-kernel; +Cc: serue, xemul, ebiederm
copy_pid_ns() has allocted some memory via create_pid_namespace(), if copy_net_ns()
failed via create_new_namespaces(), it will cause memory leak. The copy_utsname()
have the same problem.
Signed-off-by: Zhitong Wang <zhitong.wangzt@alibaba-inc.com>
---
kernel/nsproxy.c | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
index 9aeab4b..fdcec31 100644
--- a/kernel/nsproxy.c
+++ b/kernel/nsproxy.c
@@ -99,14 +99,18 @@ static struct nsproxy *create_new_namespaces(unsigned long flags,
return new_nsp;
out_net:
- if (new_nsp->pid_ns)
+ if (new_nsp->pid_ns) {
put_pid_ns(new_nsp->pid_ns);
+ free_pid_ns(&new_nsp->pid_ns->kref);
+ }
out_pid:
if (new_nsp->ipc_ns)
put_ipc_ns(new_nsp->ipc_ns);
out_ipc:
- if (new_nsp->uts_ns)
+ if (new_nsp->uts_ns) {
put_uts_ns(new_nsp->uts_ns);
+ free_uts_ns(&new_nsp->pid_ns->kref);
+ }
out_uts:
if (new_nsp->mnt_ns)
put_mnt_ns(new_nsp->mnt_ns);
--
1.7.4.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] kernel/nsproxy.c: Fix memory leak of create_new_namespaces().
[not found] ` <CAJn8CcFded9JCh+G=dQJtjkWGrg-qXbJu2U66TX=r4PVpjQNSA@mail.gmail.com>
@ 2011-10-18 7:19 ` wzt wzt
0 siblings, 0 replies; 3+ messages in thread
From: wzt wzt @ 2011-10-18 7:19 UTC (permalink / raw)
To: Xiaotian Feng; +Cc: linux-kernel, serue, xemul, ebiederm
Sorry for the wrong patch, thanks Feng to point it out.
On Tue, Oct 18, 2011 at 2:26 PM, Xiaotian Feng <xtfeng@gmail.com> wrote:
>
>
> On Tue, Oct 18, 2011 at 2:07 PM, wzt <wzt.wzt@gmail.com> wrote:
>>
>> copy_pid_ns() has allocted some memory via create_pid_namespace(), if
>> copy_net_ns()
>> failed via create_new_namespaces(), it will cause memory leak. The
>> copy_utsname()
>> have the same problem.
>>
>> Signed-off-by: Zhitong Wang <zhitong.wangzt@alibaba-inc.com>
>>
>> ---
>> kernel/nsproxy.c | 8 ++++++--
>> 1 files changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
>> index 9aeab4b..fdcec31 100644
>> --- a/kernel/nsproxy.c
>> +++ b/kernel/nsproxy.c
>> @@ -99,14 +99,18 @@ static struct nsproxy *create_new_namespaces(unsigned
>> long flags,
>> return new_nsp;
>>
>> out_net:
>> - if (new_nsp->pid_ns)
>> + if (new_nsp->pid_ns) {
>> put_pid_ns(new_nsp->pid_ns);
>> + free_pid_ns(&new_nsp->pid_ns->kref);
>
> It is freed in put_pid_ns() if the last user is gone. Please check the
> implementation of put_pid_ns().
>
>>
>> + }
>> out_pid:
>> if (new_nsp->ipc_ns)
>> put_ipc_ns(new_nsp->ipc_ns);
>> out_ipc:
>> - if (new_nsp->uts_ns)
>> + if (new_nsp->uts_ns) {
>> put_uts_ns(new_nsp->uts_ns);
>> + free_uts_ns(&new_nsp->pid_ns->kref);
>
> same
>>
>> + }
>> out_uts:
>> if (new_nsp->mnt_ns)
>> put_mnt_ns(new_nsp->mnt_ns);
>> --
>> 1.7.4.1
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>> Please read the FAQ at http://www.tux.org/lkml/
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-10-18 7:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-18 6:07 [PATCH] kernel/nsproxy.c: Fix memory leak of create_new_namespaces() wzt
[not found] ` <CAJn8CcFded9JCh+G=dQJtjkWGrg-qXbJu2U66TX=r4PVpjQNSA@mail.gmail.com>
2011-10-18 7:19 ` wzt wzt
-- strict thread matches above, loose matches on Subject: below --
2011-10-18 4:20 wzt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox