* [PATCH] nfsd: fix memory leak of async_copy
@ 2018-07-16 12:09 Colin King
2018-07-17 9:30 ` Dan Carpenter
0 siblings, 1 reply; 4+ messages in thread
From: Colin King @ 2018-07-16 12:09 UTC (permalink / raw)
To: J . Bruce Fields, Jeff Layton, linux-nfs; +Cc: kernel-janitors, linux-kernel
From: Colin Ian King <colin.king@canonical.com>
In the case where async_copy is successfully allocated but
the call to nfs4_init_cp_state fails, async_copy is not
currently freed and the memory is leaked. Fix this by kfree'ing
it before returning.
Detected by CoverityScan, CID#1471823 ("Resource leak")
Fixes: beb1814d5a8a ("NFSD create new stateid for async copy")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
fs/nfsd/nfs4proc.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c
index 8f3368353aaf..3fb96a2708b9 100644
--- a/fs/nfsd/nfs4proc.c
+++ b/fs/nfsd/nfs4proc.c
@@ -1295,8 +1295,10 @@ nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
if (!async_copy)
goto out;
- if (!nfs4_init_cp_state(nn, copy))
+ if (!nfs4_init_cp_state(nn, copy)) {
+ kfree(async_copy);
goto out;
+ }
refcount_set(&async_copy->refcount, 1);
memcpy(©->cp_res.cb_stateid, ©->cp_stateid,
sizeof(copy->cp_stateid));
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] nfsd: fix memory leak of async_copy
2018-07-16 12:09 [PATCH] nfsd: fix memory leak of async_copy Colin King
@ 2018-07-17 9:30 ` Dan Carpenter
2018-07-17 9:33 ` Colin Ian King
0 siblings, 1 reply; 4+ messages in thread
From: Dan Carpenter @ 2018-07-17 9:30 UTC (permalink / raw)
To: Colin King
Cc: J . Bruce Fields, Jeff Layton, linux-nfs, kernel-janitors,
linux-kernel
On Mon, Jul 16, 2018 at 01:09:54PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> In the case where async_copy is successfully allocated but
> the call to nfs4_init_cp_state fails, async_copy is not
> currently freed and the memory is leaked. Fix this by kfree'ing
> it before returning.
>
> Detected by CoverityScan, CID#1471823 ("Resource leak")
>
> Fixes: beb1814d5a8a ("NFSD create new stateid for async copy")
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> fs/nfsd/nfs4proc.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c
> index 8f3368353aaf..3fb96a2708b9 100644
> --- a/fs/nfsd/nfs4proc.c
> +++ b/fs/nfsd/nfs4proc.c
> @@ -1295,8 +1295,10 @@ nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
> async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
> if (!async_copy)
> goto out;
> - if (!nfs4_init_cp_state(nn, copy))
> + if (!nfs4_init_cp_state(nn, copy)) {
> + kfree(async_copy);
> goto out;
It really feels like both this and the kzalloc() failure should be doing
an of fput() of copy->file_src and copy->file_dst. The goto out_err
does an list_del(©->copies); but it happens before the
"list_add(&async_copy->copies ..." so that's likely wrong as well.
regards,
dan carpenter
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] nfsd: fix memory leak of async_copy
2018-07-17 9:30 ` Dan Carpenter
@ 2018-07-17 9:33 ` Colin Ian King
2018-07-17 10:13 ` J . Bruce Fields
0 siblings, 1 reply; 4+ messages in thread
From: Colin Ian King @ 2018-07-17 9:33 UTC (permalink / raw)
To: Dan Carpenter
Cc: J . Bruce Fields, Jeff Layton, linux-nfs, kernel-janitors,
linux-kernel
On 17/07/18 10:30, Dan Carpenter wrote:
> On Mon, Jul 16, 2018 at 01:09:54PM +0100, Colin King wrote:
>> From: Colin Ian King <colin.king@canonical.com>
>>
>> In the case where async_copy is successfully allocated but
>> the call to nfs4_init_cp_state fails, async_copy is not
>> currently freed and the memory is leaked. Fix this by kfree'ing
>> it before returning.
>>
>> Detected by CoverityScan, CID#1471823 ("Resource leak")
>>
>> Fixes: beb1814d5a8a ("NFSD create new stateid for async copy")
>> Signed-off-by: Colin Ian King <colin.king@canonical.com>
>> ---
>> fs/nfsd/nfs4proc.c | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c
>> index 8f3368353aaf..3fb96a2708b9 100644
>> --- a/fs/nfsd/nfs4proc.c
>> +++ b/fs/nfsd/nfs4proc.c
>> @@ -1295,8 +1295,10 @@ nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
>> async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
>> if (!async_copy)
>> goto out;
>> - if (!nfs4_init_cp_state(nn, copy))
>> + if (!nfs4_init_cp_state(nn, copy)) {
>> + kfree(async_copy);
>> goto out;
>
> It really feels like both this and the kzalloc() failure should be doing
> an of fput() of copy->file_src and copy->file_dst. The goto out_err
> does an list_del(©->copies); but it happens before the
> "list_add(&async_copy->copies ..." so that's likely wrong as well.
Good observation, thanks for spotting that. I suspect I'm a bit out of
my depth figuring out the exact error handling reaping steps here.
Perhaps this is one for the maintainers to figure out a safe cleanup on
these error paths.
>
> regards,
> dan carpenter
>
> --
> To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] nfsd: fix memory leak of async_copy
2018-07-17 9:33 ` Colin Ian King
@ 2018-07-17 10:13 ` J . Bruce Fields
0 siblings, 0 replies; 4+ messages in thread
From: J . Bruce Fields @ 2018-07-17 10:13 UTC (permalink / raw)
To: Colin Ian King
Cc: Dan Carpenter, Jeff Layton, linux-nfs, kernel-janitors,
linux-kernel, Olga Kornievskaia
Cc'ing Olga.--b.
On Tue, Jul 17, 2018 at 10:33:59AM +0100, Colin Ian King wrote:
> On 17/07/18 10:30, Dan Carpenter wrote:
> > On Mon, Jul 16, 2018 at 01:09:54PM +0100, Colin King wrote:
> >> From: Colin Ian King <colin.king@canonical.com>
> >>
> >> In the case where async_copy is successfully allocated but
> >> the call to nfs4_init_cp_state fails, async_copy is not
> >> currently freed and the memory is leaked. Fix this by kfree'ing
> >> it before returning.
> >>
> >> Detected by CoverityScan, CID#1471823 ("Resource leak")
> >>
> >> Fixes: beb1814d5a8a ("NFSD create new stateid for async copy")
> >> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> >> ---
> >> fs/nfsd/nfs4proc.c | 4 +++-
> >> 1 file changed, 3 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c
> >> index 8f3368353aaf..3fb96a2708b9 100644
> >> --- a/fs/nfsd/nfs4proc.c
> >> +++ b/fs/nfsd/nfs4proc.c
> >> @@ -1295,8 +1295,10 @@ nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
> >> async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL);
> >> if (!async_copy)
> >> goto out;
> >> - if (!nfs4_init_cp_state(nn, copy))
> >> + if (!nfs4_init_cp_state(nn, copy)) {
> >> + kfree(async_copy);
> >> goto out;
> >
> > It really feels like both this and the kzalloc() failure should be doing
> > an of fput() of copy->file_src and copy->file_dst. The goto out_err
> > does an list_del(©->copies); but it happens before the
> > "list_add(&async_copy->copies ..." so that's likely wrong as well.
>
> Good observation, thanks for spotting that. I suspect I'm a bit out of
> my depth figuring out the exact error handling reaping steps here.
> Perhaps this is one for the maintainers to figure out a safe cleanup on
> these error paths.
>
> >
> > regards,
> > dan carpenter
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-07-17 10:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-16 12:09 [PATCH] nfsd: fix memory leak of async_copy Colin King
2018-07-17 9:30 ` Dan Carpenter
2018-07-17 9:33 ` Colin Ian King
2018-07-17 10:13 ` J . Bruce Fields
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).