]> git.baikalelectronics.ru Git - kernel.git/commit
io_uring: fix off-by-one in sync cancelation file check
authorJens Axboe <axboe@kernel.dk>
Tue, 23 Aug 2022 13:26:08 +0000 (07:26 -0600)
committerJens Axboe <axboe@kernel.dk>
Tue, 23 Aug 2022 13:26:08 +0000 (07:26 -0600)
commit9c0d61bba22f96bcadc352d231bd373f29106206
tree12da1cc86a67e9ae113af1f5942a5a72e8765fc5
parent9b3ef741dc052c478ec9ae3d2487614ae7a9e029
io_uring: fix off-by-one in sync cancelation file check

The passed in index should be validated against the number of registered
files we have, it needs to be smaller than the index value to avoid going
one beyond the end.

Fixes: bd1ef2d85006 ("io_uring: add sync cancelation API through io_uring_register()")
Reported-by: Luo Likang <luolikang@nsfocus.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/cancel.c