* [PATCH v2] From b1014148d31468e2dcd8f237740ca1643571e875 Mon Sep 17 00:00:00 2001 From: Hao-Yu Yang <naup96721@gmail.com> Date: Sun, 5 Jul 2026 11:43:02 +0800 Subject: [PATCH v1] io_uring: fix dangling iovec after provided-buffer bundle grow failure
@ 2026-07-06 18:25 Hao-Yu Yang
2026-07-06 18:37 ` Hao-Yu Yang
0 siblings, 1 reply; 2+ messages in thread
From: Hao-Yu Yang @ 2026-07-06 18:25 UTC (permalink / raw)
To: linux-kernel; +Cc: axboe, io-uring, Hao-Yu Yang
When growing a provided-buffer bundle, the old cached iovec is freed
before the new buffers have all been validated. If validation fails, the
request still points at the freed iovec, which can be freed again during
completion cleanup.
BUG: KASAN: double-free in io_vec_free+0x2c/0x90
Freed by task 73:
kfree+0x104/0x3b0
io_vec_free+0x2c/0x90
__io_submit_flush_completions+0xc03/0x1e40
io_submit_sqes+0xdb5/0x2310
Allocated by task 73:
io_ring_buffers_peek+0x559/0xc60
io_buffers_select+0x1c1/0x460
io_send+0x770/0x1050
Fix this by deferring the free of the old cached iovec until validation
has succeeded. On failure, free the newly allocated iovec and leave the
request pointing at the original one.
change log:
v2: slimming v1 patch
Fixes: 46800585ae04 ("io_uring/kbuf: validate ring provided buffer addresses with access_ok()")
Signed-off-by: Hao-Yu Yang <naup96721@gmail.com>
---
io_uring/kbuf.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/io_uring/kbuf.c b/io_uring/kbuf.c
index 3cd29477fff2..b6b969b55e12 100644
--- a/io_uring/kbuf.c
+++ b/io_uring/kbuf.c
@@ -287,8 +287,6 @@ static int io_ring_buffers_peek(struct io_kiocb *req, struct buf_sel_arg *arg,
iov = kmalloc_objs(struct iovec, nr_avail);
if (unlikely(!iov))
return -ENOMEM;
- if (arg->mode & KBUF_MODE_FREE)
- kfree(arg->iovs);
arg->iovs = iov;
nr_iovs = nr_avail;
} else if (nr_avail < nr_iovs) {
@@ -330,6 +328,9 @@ static int io_ring_buffers_peek(struct io_kiocb *req, struct buf_sel_arg *arg,
buf = io_ring_head_to_buf(br, ++head, bl->mask);
} while (--nr_iovs);
+ if (arg->mode & KBUF_MODE_FREE)
+ kfree(arg->iovs);
+
if (head == tail)
req->flags |= REQ_F_BL_EMPTY;
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v2] From b1014148d31468e2dcd8f237740ca1643571e875 Mon Sep 17 00:00:00 2001 From: Hao-Yu Yang <naup96721@gmail.com> Date: Sun, 5 Jul 2026 11:43:02 +0800 Subject: [PATCH v1] io_uring: fix dangling iovec after provided-buffer bundle grow failure
2026-07-06 18:25 [PATCH v2] From b1014148d31468e2dcd8f237740ca1643571e875 Mon Sep 17 00:00:00 2001 From: Hao-Yu Yang <naup96721@gmail.com> Date: Sun, 5 Jul 2026 11:43:02 +0800 Subject: [PATCH v1] io_uring: fix dangling iovec after provided-buffer bundle grow failure Hao-Yu Yang
@ 2026-07-06 18:37 ` Hao-Yu Yang
0 siblings, 0 replies; 2+ messages in thread
From: Hao-Yu Yang @ 2026-07-06 18:37 UTC (permalink / raw)
To: linux-kernel; +Cc: axboe, io-uring
On Tue, Jul 07, 2026 at 02:25:34AM +0800, Hao-Yu Yang wrote:
> When growing a provided-buffer bundle, the old cached iovec is freed
> before the new buffers have all been validated. If validation fails, the
> request still points at the freed iovec, which can be freed again during
> completion cleanup.
>
> BUG: KASAN: double-free in io_vec_free+0x2c/0x90
> Freed by task 73:
> kfree+0x104/0x3b0
> io_vec_free+0x2c/0x90
> __io_submit_flush_completions+0xc03/0x1e40
> io_submit_sqes+0xdb5/0x2310
>
> Allocated by task 73:
> io_ring_buffers_peek+0x559/0xc60
> io_buffers_select+0x1c1/0x460
> io_send+0x770/0x1050
>
> Fix this by deferring the free of the old cached iovec until validation
> has succeeded. On failure, free the newly allocated iovec and leave the
> request pointing at the original one.
>
> change log:
> v2: slimming v1 patch
>
> Fixes: 46800585ae04 ("io_uring/kbuf: validate ring provided buffer addresses with access_ok()")
> Signed-off-by: Hao-Yu Yang <naup96721@gmail.com>
> ---
> io_uring/kbuf.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/io_uring/kbuf.c b/io_uring/kbuf.c
> index 3cd29477fff2..b6b969b55e12 100644
> --- a/io_uring/kbuf.c
> +++ b/io_uring/kbuf.c
> @@ -287,8 +287,6 @@ static int io_ring_buffers_peek(struct io_kiocb *req, struct buf_sel_arg *arg,
> iov = kmalloc_objs(struct iovec, nr_avail);
> if (unlikely(!iov))
> return -ENOMEM;
> - if (arg->mode & KBUF_MODE_FREE)
> - kfree(arg->iovs);
> arg->iovs = iov;
> nr_iovs = nr_avail;
> } else if (nr_avail < nr_iovs) {
> @@ -330,6 +328,9 @@ static int io_ring_buffers_peek(struct io_kiocb *req, struct buf_sel_arg *arg,
> buf = io_ring_head_to_buf(br, ++head, bl->mask);
> } while (--nr_iovs);
>
> + if (arg->mode & KBUF_MODE_FREE)
> + kfree(arg->iovs);
> +
> if (head == tail)
> req->flags |= REQ_F_BL_EMPTY;
>
> --
> 2.34.1
>
sorry, this patch have some problem. I have been sent v2 patch again
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-06 18:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-06 18:25 [PATCH v2] From b1014148d31468e2dcd8f237740ca1643571e875 Mon Sep 17 00:00:00 2001 From: Hao-Yu Yang <naup96721@gmail.com> Date: Sun, 5 Jul 2026 11:43:02 +0800 Subject: [PATCH v1] io_uring: fix dangling iovec after provided-buffer bundle grow failure Hao-Yu Yang
2026-07-06 18:37 ` Hao-Yu Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox