Skip to content

Commit 1e988c3

Browse files
isilenceaxboe
authored andcommitted
io_uring: prevent opcode speculation
sqe->opcode is used for different tables, make sure we santitise it against speculations. Cc: stable@vger.kernel.org Fixes: d365634 ("io_uring: add lookup table for various opcode needs") Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Reviewed-by: Li Zetao <lizetao1@huawei.com> Link: https://lore.kernel.org/r/7eddbf31c8ca0a3947f8ed98271acc2b4349c016.1739568408.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
1 parent 1391831 commit 1e988c3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

io_uring/io_uring.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2045,6 +2045,8 @@ static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
20452045
req->opcode = 0;
20462046
return io_init_fail_req(req, -EINVAL);
20472047
}
2048+
opcode = array_index_nospec(opcode, IORING_OP_LAST);
2049+
20482050
def = &io_issue_defs[opcode];
20492051
if (unlikely(sqe_flags & ~SQE_COMMON_FLAGS)) {
20502052
/* enforce forwards compatibility on users */

0 commit comments

Comments
 (0)