stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Fwd: [PATCH] fs/io_uring.c: Fix uninitialized variable is referenced in io_submit_sqe
       [not found] <20200813065644.GA91891@ubuntu>
@ 2020-08-13 15:11 ` Jens Axboe
  2020-08-14 16:42   ` Sasha Levin
  0 siblings, 1 reply; 2+ messages in thread
From: Jens Axboe @ 2020-08-13 15:11 UTC (permalink / raw)
  To: stable

Hi,

Can you queue this up for 5.4 as well? Thanks!


-------- Forwarded Message --------
Subject: [PATCH] fs/io_uring.c: Fix uninitialized variable is referenced in io_submit_sqe
Date: Wed, 12 Aug 2020 23:56:44 -0700
From: Liu Yong <pkfxxxing@gmail.com>
To: Jens Axboe <axboe@kernel.dk>
CC: linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org

the commit <a4d61e66ee4a> ("<io_uring: prevent re-read of sqe->opcode>") 
caused another vulnerability. After io_get_req(), the sqe_submit struct 
in req is not initialized, but the following code defaults that 
req->submit.opcode is available.

Signed-off-by: Liu Yong <pkfxxxing@gmail.com>
---
 fs/io_uring.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/io_uring.c b/fs/io_uring.c
index be3d595a607f..c1aaee061dae 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -2559,6 +2559,7 @@ static void io_submit_sqe(struct io_ring_ctx *ctx, struct sqe_submit *s,
 		goto err;
 	}
 
+	memcpy(&req->submit, s, sizeof(*s));
 	ret = io_req_set_file(ctx, s, state, req);
 	if (unlikely(ret)) {
 err_req:
-- 
2.17.1


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

* Re: Fwd: [PATCH] fs/io_uring.c: Fix uninitialized variable is referenced in io_submit_sqe
  2020-08-13 15:11 ` Fwd: [PATCH] fs/io_uring.c: Fix uninitialized variable is referenced in io_submit_sqe Jens Axboe
@ 2020-08-14 16:42   ` Sasha Levin
  0 siblings, 0 replies; 2+ messages in thread
From: Sasha Levin @ 2020-08-14 16:42 UTC (permalink / raw)
  To: Jens Axboe; +Cc: stable

On Thu, Aug 13, 2020 at 09:11:37AM -0600, Jens Axboe wrote:
>Hi,
>
>Can you queue this up for 5.4 as well? Thanks!

Queued up, thanks!

-- 
Thanks,
Sasha

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

end of thread, other threads:[~2020-08-14 16:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20200813065644.GA91891@ubuntu>
2020-08-13 15:11 ` Fwd: [PATCH] fs/io_uring.c: Fix uninitialized variable is referenced in io_submit_sqe Jens Axboe
2020-08-14 16:42   ` Sasha Levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).