* [PATCH] io_uring/kbuf: fix UAF in buffer selection when access_ok fails on expanded iovec
@ 2026-07-21 9:57 Aayush7352
2026-07-21 14:54 ` Jens Axboe
0 siblings, 1 reply; 3+ messages in thread
From: Aayush7352 @ 2026-07-21 9:57 UTC (permalink / raw)
To: io-uring; +Cc: Jens Axboe, linux-kernel, Aayush Dixit
From: Aayush Dixit <aayushdixit924@gmail.com>
In io_ring_buffers_peek(), when the buffer ring is expanded
(KBUF_MODE_EXPAND), arg->iovs is set to a newly kmalloced array.
If access_ok() then fails on a buffer entry, the error path kfrees
the new array but does not restore arg->iovs to the original value
(org_iovs). arg->iovs is left dangling and will be reused on retry,
causing a use-after-free when the caller retries the buffer selection.
Fix by restoring arg->iovs = org_iovs after the kfree on the error
path, so the caller's state remains coherent on retry.
Fixes: b3e0216c97e3 ("io_uring: add buffer ring support")
Cc: io-uring@vger.kernel.org
Signed-off-by: Aayush7352 <aayushdixit924@gmail.com>
---
io_uring/kbuf.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/io_uring/kbuf.c b/io_uring/kbuf.c
index de0129bce..eab4de8a7 100644
--- a/io_uring/kbuf.c
+++ b/io_uring/kbuf.c
@@ -314,8 +314,10 @@ static int io_ring_buffers_peek(struct io_kiocb *req, struct buf_sel_arg *arg,
iov->iov_base = u64_to_user_ptr(READ_ONCE(buf->addr));
iov->iov_len = len;
if (unlikely(!access_ok(iov->iov_base, len))) {
- if (arg->iovs != org_iovs)
+ if (arg->iovs != org_iovs) {
kfree(arg->iovs);
+ arg->iovs = org_iovs;
+ }
return -EFAULT;
}
iov++;
--
2.55.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] io_uring/kbuf: fix UAF in buffer selection when access_ok fails on expanded iovec
2026-07-21 9:57 [PATCH] io_uring/kbuf: fix UAF in buffer selection when access_ok fails on expanded iovec Aayush7352
@ 2026-07-21 14:54 ` Jens Axboe
0 siblings, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2026-07-21 14:54 UTC (permalink / raw)
To: Aayush7352, io-uring; +Cc: linux-kernel
On 7/21/26 3:57 AM, Aayush7352 wrote:
> From: Aayush Dixit <aayushdixit924@gmail.com>
>
> In io_ring_buffers_peek(), when the buffer ring is expanded
> (KBUF_MODE_EXPAND), arg->iovs is set to a newly kmalloced array.
> If access_ok() then fails on a buffer entry, the error path kfrees
> the new array but does not restore arg->iovs to the original value
> (org_iovs). arg->iovs is left dangling and will be reused on retry,
> causing a use-after-free when the caller retries the buffer selection.
>
> Fix by restoring arg->iovs = org_iovs after the kfree on the error
> path, so the caller's state remains coherent on retry.
You sent this twice, replying once for both: this is bogus. If your
LLM thinks it found something, have it write a reproducer. Then YOU
reproduce, and then you can report it. Don't waste our time with
garbage like this.
> Fixes: b3e0216c97e3 ("io_uring: add buffer ring support")
This is also bogus, this sha doesn't exist.
--
Jens Axboe
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] io_uring/kbuf: fix UAF in buffer selection when access_ok fails on expanded iovec
@ 2026-07-21 8:47 Aayush7352
0 siblings, 0 replies; 3+ messages in thread
From: Aayush7352 @ 2026-07-21 8:47 UTC (permalink / raw)
To: io-uring; +Cc: Jens Axboe, linux-kernel, Aayush7352
In io_ring_buffers_peek(), when the buffer ring is expanded
(KBUF_MODE_EXPAND), arg->iovs is set to a newly kmalloced array.
If access_ok() then fails on a buffer entry, the error path kfrees
the new array but does not restore arg->iovs to the original value
(org_iovs). arg->iovs is left dangling and will be reused on retry,
causing a use-after-free when the caller retries the buffer selection.
Fix by restoring arg->iovs = org_iovs after the kfree on the error
path, so the caller's state remains coherent on retry.
Fixes: b3e0216c97e3 ("io_uring: add buffer ring support")
Cc: io-uring@vger.kernel.org
Signed-off-by: Aayush7352 <aayushdixit924@gmail.com>
---
io_uring/kbuf.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/io_uring/kbuf.c b/io_uring/kbuf.c
index de0129bce..eab4de8a7 100644
--- a/io_uring/kbuf.c
+++ b/io_uring/kbuf.c
@@ -314,8 +314,10 @@ static int io_ring_buffers_peek(struct io_kiocb *req, struct buf_sel_arg *arg,
iov->iov_base = u64_to_user_ptr(READ_ONCE(buf->addr));
iov->iov_len = len;
if (unlikely(!access_ok(iov->iov_base, len))) {
- if (arg->iovs != org_iovs)
+ if (arg->iovs != org_iovs) {
kfree(arg->iovs);
+ arg->iovs = org_iovs;
+ }
return -EFAULT;
}
iov++;
--
2.55.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-21 14:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-21 9:57 [PATCH] io_uring/kbuf: fix UAF in buffer selection when access_ok fails on expanded iovec Aayush7352
2026-07-21 14:54 ` Jens Axboe
-- strict thread matches above, loose matches on Subject: below --
2026-07-21 8:47 Aayush7352
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox