All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: 9p: fix possible memory leak in p9_check_errors()
@ 2023-10-26  9:23 Hangyu Hua
  2023-10-26 11:53 ` asmadeus
  0 siblings, 1 reply; 4+ messages in thread
From: Hangyu Hua @ 2023-10-26  9:23 UTC (permalink / raw)
  To: ericvh, lucho, asmadeus, linux_oss, davem, edumazet, kuba, pabeni, jvrao
  Cc: v9fs, netdev, linux-kernel, Hangyu Hua

When p9pdu_readf is called with "s?d" attribute, it allocates a pointer
that will store a string. But when p9pdu_readf() fails while handling "d"
then this pointer will not be freed in p9_check_errors.

Fixes: ca41bb3e21d7 ("[net/9p] Handle Zero Copy TREAD/RERROR case in !dotl case.")
Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
---
 net/9p/client.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/net/9p/client.c b/net/9p/client.c
index 86bbc7147fc1..6c7cd765b714 100644
--- a/net/9p/client.c
+++ b/net/9p/client.c
@@ -540,12 +540,15 @@ static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
 		return 0;
 
 	if (!p9_is_proto_dotl(c)) {
-		char *ename;
+		char *ename = NULL;
 
 		err = p9pdu_readf(&req->rc, c->proto_version, "s?d",
 				  &ename, &ecode);
-		if (err)
+		if (err) {
+			if (ename != NULL)
+				kfree(ename);
 			goto out_err;
+		}
 
 		if (p9_is_proto_dotu(c) && ecode < 512)
 			err = -ecode;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: 9p: fix possible memory leak in p9_check_errors()
  2023-10-26  9:23 [PATCH] net: 9p: fix possible memory leak in p9_check_errors() Hangyu Hua
@ 2023-10-26 11:53 ` asmadeus
  2023-10-26 13:18   ` Christian Schoenebeck
  2023-10-27  2:41   ` Hangyu Hua
  0 siblings, 2 replies; 4+ messages in thread
From: asmadeus @ 2023-10-26 11:53 UTC (permalink / raw)
  To: Hangyu Hua
  Cc: ericvh, lucho, linux_oss, davem, edumazet, kuba, pabeni, jvrao,
	v9fs, netdev, linux-kernel


Hangyu Hua wrote on Thu, Oct 26, 2023 at 05:23:51PM +0800:
> When p9pdu_readf is called with "s?d" attribute, it allocates a pointer
> that will store a string. But when p9pdu_readf() fails while handling "d"
> then this pointer will not be freed in p9_check_errors.

Right, that sounds correct to me.

Out of curiosity how did you notice this? The leak shouldn't happen with
any valid server.

This cannot break anything so I'll push this to -next tomorrow and
submit to Linus next week

> Fixes: ca41bb3e21d7 ("[net/9p] Handle Zero Copy TREAD/RERROR case in !dotl case.")

This commit moves this code a bit, but the p9pdu_readf call predates
it -- in this case the Fixes tag is probably not useful; this affects
all maintained kernels.

> Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
> ---
>  net/9p/client.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/net/9p/client.c b/net/9p/client.c
> index 86bbc7147fc1..6c7cd765b714 100644
> --- a/net/9p/client.c
> +++ b/net/9p/client.c
> @@ -540,12 +540,15 @@ static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
>  		return 0;
>  
>  	if (!p9_is_proto_dotl(c)) {
> -		char *ename;
> +		char *ename = NULL;
>  
>  		err = p9pdu_readf(&req->rc, c->proto_version, "s?d",
>  				  &ename, &ecode);
> -		if (err)
> +		if (err) {
> +			if (ename != NULL)
> +				kfree(ename);

Don't check for NULL before kfree - kfree does it.
If that's the only remark you get I can fix it when applying the commit
on my side.


>  			goto out_err;
> +		}
>  
>  		if (p9_is_proto_dotu(c) && ecode < 512)
>  			err = -ecode;

-- 
Dominique Martinet | Asmadeus

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: 9p: fix possible memory leak in p9_check_errors()
  2023-10-26 11:53 ` asmadeus
@ 2023-10-26 13:18   ` Christian Schoenebeck
  2023-10-27  2:41   ` Hangyu Hua
  1 sibling, 0 replies; 4+ messages in thread
From: Christian Schoenebeck @ 2023-10-26 13:18 UTC (permalink / raw)
  To: Hangyu Hua, asmadeus
  Cc: ericvh, lucho, davem, edumazet, kuba, pabeni, jvrao, v9fs,
	netdev, linux-kernel

On Thursday, October 26, 2023 1:53:55 PM CEST asmadeus@codewreck.org wrote:
> 
> Hangyu Hua wrote on Thu, Oct 26, 2023 at 05:23:51PM +0800:
> > When p9pdu_readf is called with "s?d" attribute, it allocates a pointer
> > that will store a string. But when p9pdu_readf() fails while handling "d"
> > then this pointer will not be freed in p9_check_errors.
> 
> Right, that sounds correct to me.
> 
> Out of curiosity how did you notice this? The leak shouldn't happen with
> any valid server.
> 
> This cannot break anything so I'll push this to -next tomorrow and
> submit to Linus next week
> 
> > Fixes: ca41bb3e21d7 ("[net/9p] Handle Zero Copy TREAD/RERROR case in !dotl case.")
> 
> This commit moves this code a bit, but the p9pdu_readf call predates
> it -- in this case the Fixes tag is probably not useful; this affects
> all maintained kernels.

Looks like it exists since introduction of p9_check_errors(), therefore:

Fixes: 51a87c552dfd ("9p: rework client code to use new protocol support functions")

> > Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
> > ---
> >  net/9p/client.c | 7 +++++--
> >  1 file changed, 5 insertions(+), 2 deletions(-)
> > 
> > diff --git a/net/9p/client.c b/net/9p/client.c
> > index 86bbc7147fc1..6c7cd765b714 100644
> > --- a/net/9p/client.c
> > +++ b/net/9p/client.c
> > @@ -540,12 +540,15 @@ static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
> >  		return 0;
> >  
> >  	if (!p9_is_proto_dotl(c)) {
> > -		char *ename;
> > +		char *ename = NULL;
> >  
> >  		err = p9pdu_readf(&req->rc, c->proto_version, "s?d",
> >  				  &ename, &ecode);
> > -		if (err)
> > +		if (err) {
> > +			if (ename != NULL)
> > +				kfree(ename);
> 
> Don't check for NULL before kfree - kfree does it.
> If that's the only remark you get I can fix it when applying the commit
> on my side.

With those two remarks addressed:

Reviewed-by: Christian Schoenebeck <linux_oss@crudebyte.com>

> 
> 
> >  			goto out_err;
> > +		}
> >  
> >  		if (p9_is_proto_dotu(c) && ecode < 512)
> >  			err = -ecode;
> 
> 



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: 9p: fix possible memory leak in p9_check_errors()
  2023-10-26 11:53 ` asmadeus
  2023-10-26 13:18   ` Christian Schoenebeck
@ 2023-10-27  2:41   ` Hangyu Hua
  1 sibling, 0 replies; 4+ messages in thread
From: Hangyu Hua @ 2023-10-27  2:41 UTC (permalink / raw)
  To: asmadeus
  Cc: ericvh, lucho, linux_oss, davem, edumazet, kuba, pabeni, jvrao,
	v9fs, netdev, linux-kernel

On 26/10/2023 19:53, asmadeus@codewreck.org wrote:
> 
> Hangyu Hua wrote on Thu, Oct 26, 2023 at 05:23:51PM +0800:
>> When p9pdu_readf is called with "s?d" attribute, it allocates a pointer
>> that will store a string. But when p9pdu_readf() fails while handling "d"
>> then this pointer will not be freed in p9_check_errors.
> 
> Right, that sounds correct to me.
> 
> Out of curiosity how did you notice this? The leak shouldn't happen with
> any valid server.

I just found that any attributes that require memory allocation are 
prone to errors when mixed with ordinary attributes.

> 
> This cannot break anything so I'll push this to -next tomorrow and
> submit to Linus next week

Agreed.

> 
>> Fixes: ca41bb3e21d7 ("[net/9p] Handle Zero Copy TREAD/RERROR case in !dotl case.")
> 
> This commit moves this code a bit, but the p9pdu_readf call predates
> it -- in this case the Fixes tag is probably not useful; this affects
> all maintained kernels.
> 
>> Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
>> ---
>>   net/9p/client.c | 7 +++++--
>>   1 file changed, 5 insertions(+), 2 deletions(-)
>>
>> diff --git a/net/9p/client.c b/net/9p/client.c
>> index 86bbc7147fc1..6c7cd765b714 100644
>> --- a/net/9p/client.c
>> +++ b/net/9p/client.c
>> @@ -540,12 +540,15 @@ static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
>>   		return 0;
>>   
>>   	if (!p9_is_proto_dotl(c)) {
>> -		char *ename;
>> +		char *ename = NULL;
>>   
>>   		err = p9pdu_readf(&req->rc, c->proto_version, "s?d",
>>   				  &ename, &ecode);
>> -		if (err)
>> +		if (err) {
>> +			if (ename != NULL)
>> +				kfree(ename);
> 
> Don't check for NULL before kfree - kfree does it.
> If that's the only remark you get I can fix it when applying the commit
> on my side.

I get it. I will revise it based on your and Christian's comments and 
send a v2.

Thanks,
Hangyu

> 
> 
>>   			goto out_err;
>> +		}
>>   
>>   		if (p9_is_proto_dotu(c) && ecode < 512)
>>   			err = -ecode;
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-10-27  2:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-26  9:23 [PATCH] net: 9p: fix possible memory leak in p9_check_errors() Hangyu Hua
2023-10-26 11:53 ` asmadeus
2023-10-26 13:18   ` Christian Schoenebeck
2023-10-27  2:41   ` Hangyu Hua

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.