[PATCH v2] io_uring: fix page leak in io_sqe_buffer_register()

Penglei Jiang posted 1 patch 3 months, 3 weeks ago
io_uring/rsrc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
[PATCH v2] io_uring: fix page leak in io_sqe_buffer_register()
Posted by Penglei Jiang 3 months, 3 weeks ago
Move unpin_user_pages() to unified error handling to fix the
page leak issue.

Fixes: d8c2237d0aa9 ("io_uring: add io_pin_pages() helper")
Signed-off-by: Penglei Jiang <superman.xpt@gmail.com>
---
V1 -> V2: Optimized the error handling

 io_uring/rsrc.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/io_uring/rsrc.c b/io_uring/rsrc.c
index c592ceace97d..0cc21c1f7146 100644
--- a/io_uring/rsrc.c
+++ b/io_uring/rsrc.c
@@ -809,10 +809,8 @@ static struct io_rsrc_node *io_sqe_buffer_register(struct io_ring_ctx *ctx,
 
 	imu->nr_bvecs = nr_pages;
 	ret = io_buffer_account_pin(ctx, pages, nr_pages, imu, last_hpage);
-	if (ret) {
-		unpin_user_pages(pages, nr_pages);
+	if (ret)
 		goto done;
-	}
 
 	size = iov->iov_len;
 	/* store original address for later verification */
@@ -842,6 +840,8 @@ static struct io_rsrc_node *io_sqe_buffer_register(struct io_ring_ctx *ctx,
 	if (ret) {
 		if (imu)
 			io_free_imu(ctx, imu);
+		if (pages)
+			unpin_user_pages(pages, nr_pages);
 		io_cache_free(&ctx->node_cache, node);
 		node = ERR_PTR(ret);
 	}
-- 
2.17.1
Re: [PATCH v2] io_uring: fix page leak in io_sqe_buffer_register()
Posted by Jens Axboe 3 months, 3 weeks ago
On Tue, 17 Jun 2025 09:56:44 -0700, Penglei Jiang wrote:
> Move unpin_user_pages() to unified error handling to fix the
> page leak issue.
> 
> 

Applied, thanks!

[1/1] io_uring: fix page leak in io_sqe_buffer_register()
      commit: e1c75831f682eef0f68b35723437146ed86070b1

Best regards,
-- 
Jens Axboe