All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xprtrdma: Fix regbuf data not freed in rpcrdma_req_create()
@ 2022-11-19  4:34 Zhang Xiaoxu
  2022-11-19 16:13 ` Chuck Lever III
  0 siblings, 1 reply; 3+ messages in thread
From: Zhang Xiaoxu @ 2022-11-19  4:34 UTC (permalink / raw)
  To: linux-nfs, trond.myklebust, anna, chuck.lever, jlayton, zhangxiaoxu5

If rdma receive buffer allocate failed, should call rpcrdma_regbuf_free()
to free the send buffer, otherwise, the buffer data will be leaked.

Fixes: 8cec3dba76a4 ("xprtrdma: rpcrdma_regbuf alignment")
Signed-off-by: Zhang Xiaoxu <zhangxiaoxu5@huawei.com>
---
 net/sunrpc/xprtrdma/verbs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c
index 44b87e4274b4..b098fde373ab 100644
--- a/net/sunrpc/xprtrdma/verbs.c
+++ b/net/sunrpc/xprtrdma/verbs.c
@@ -831,7 +831,7 @@ struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt,
 	return req;
 
 out3:
-	kfree(req->rl_sendbuf);
+	rpcrdma_regbuf_free(req->rl_sendbuf);
 out2:
 	kfree(req);
 out1:
-- 
2.31.1


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

* Re: [PATCH] xprtrdma: Fix regbuf data not freed in rpcrdma_req_create()
  2022-11-19  4:34 [PATCH] xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() Zhang Xiaoxu
@ 2022-11-19 16:13 ` Chuck Lever III
  2022-11-20  6:26   ` zhangxiaoxu (A)
  0 siblings, 1 reply; 3+ messages in thread
From: Chuck Lever III @ 2022-11-19 16:13 UTC (permalink / raw)
  To: Zhang Xiaoxu, Anna Schumaker
  Cc: Linux NFS Mailing List, Trond Myklebust, Jeff Layton



> On Nov 18, 2022, at 11:34 PM, Zhang Xiaoxu <zhangxiaoxu5@huawei.com> wrote:
> 
> If rdma receive buffer allocate failed, should call rpcrdma_regbuf_free()
> to free the send buffer, otherwise, the buffer data will be leaked.
> 
> Fixes: 8cec3dba76a4 ("xprtrdma: rpcrdma_regbuf alignment")

Actually Fixes: bb93a1ae2bf4 ("xprtrdma: Allocate req's regbufs
at xprt create time") might be better. bb93a1ae2bf4 is the commit
that incorrectly added the kfree() to rpcrdma_req_create().
Even though 8cec3dba76a4 is what split the regbufs into two
allocations, your fix isn't applicable to the rpcrdma_req_create()
that's in 8cec3dba76a4.


> Signed-off-by: Zhang Xiaoxu <zhangxiaoxu5@huawei.com>

I'm guessing the error path is getting exercised more once
f20f18c95630 ("xprtrdma: Prevent memory allocations from driving
a reclaim") has been applied. Good catch!

Reviewed-by: Chuck Lever <chuck.lever@oracle.com>


> ---
> net/sunrpc/xprtrdma/verbs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c
> index 44b87e4274b4..b098fde373ab 100644
> --- a/net/sunrpc/xprtrdma/verbs.c
> +++ b/net/sunrpc/xprtrdma/verbs.c
> @@ -831,7 +831,7 @@ struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt,
> 	return req;
> 
> out3:
> -	kfree(req->rl_sendbuf);
> +	rpcrdma_regbuf_free(req->rl_sendbuf);
> out2:
> 	kfree(req);
> out1:
> -- 
> 2.31.1
> 

--
Chuck Lever




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

* Re: [PATCH] xprtrdma: Fix regbuf data not freed in rpcrdma_req_create()
  2022-11-19 16:13 ` Chuck Lever III
@ 2022-11-20  6:26   ` zhangxiaoxu (A)
  0 siblings, 0 replies; 3+ messages in thread
From: zhangxiaoxu (A) @ 2022-11-20  6:26 UTC (permalink / raw)
  To: Chuck Lever III, Anna Schumaker
  Cc: Linux NFS Mailing List, Trond Myklebust, Jeff Layton



On 2022/11/20 0:13, Chuck Lever III wrote:
> 
> 
>> On Nov 18, 2022, at 11:34 PM, Zhang Xiaoxu <zhangxiaoxu5@huawei.com> wrote:
>>
>> If rdma receive buffer allocate failed, should call rpcrdma_regbuf_free()
>> to free the send buffer, otherwise, the buffer data will be leaked.
>>
>> Fixes: 8cec3dba76a4 ("xprtrdma: rpcrdma_regbuf alignment")
> 
> Actually Fixes: bb93a1ae2bf4 ("xprtrdma: Allocate req's regbufs
> at xprt create time") might be better. bb93a1ae2bf4 is the commit
> that incorrectly added the kfree() to rpcrdma_req_create().
> Even though 8cec3dba76a4 is what split the regbufs into two
> allocations, your fix isn't applicable to the rpcrdma_req_create()
> that's in 8cec3dba76a4.
>Thanks, I will change the fix tag and add your reviewed-by in v2.
> 
>> Signed-off-by: Zhang Xiaoxu <zhangxiaoxu5@huawei.com>
> 
> I'm guessing the error path is getting exercised more once
> f20f18c95630 ("xprtrdma: Prevent memory allocations from driving
> a reclaim") has been applied. Good catch!
> 
> Reviewed-by: Chuck Lever <chuck.lever@oracle.com>
> 
> 
>> ---
>> net/sunrpc/xprtrdma/verbs.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c
>> index 44b87e4274b4..b098fde373ab 100644
>> --- a/net/sunrpc/xprtrdma/verbs.c
>> +++ b/net/sunrpc/xprtrdma/verbs.c
>> @@ -831,7 +831,7 @@ struct rpcrdma_req *rpcrdma_req_create(struct rpcrdma_xprt *r_xprt,
>> 	return req;
>>
>> out3:
>> -	kfree(req->rl_sendbuf);
>> +	rpcrdma_regbuf_free(req->rl_sendbuf);
>> out2:
>> 	kfree(req);
>> out1:
>> -- 
>> 2.31.1
>>
> 
> --
> Chuck Lever
> 
> 
> 
> 

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

end of thread, other threads:[~2022-11-20  6:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-19  4:34 [PATCH] xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() Zhang Xiaoxu
2022-11-19 16:13 ` Chuck Lever III
2022-11-20  6:26   ` zhangxiaoxu (A)

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.