]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
io_uring: protect mem region deregistration
authorPavel Begunkov <asml.silence@gmail.com>
Wed, 15 Oct 2025 12:07:23 +0000 (13:07 +0100)
committerJens Axboe <axboe@kernel.dk>
Wed, 15 Oct 2025 14:01:09 +0000 (08:01 -0600)
commitbe7cab44ed099566c605a8dac686c3254db01b35
treea620e7c2fbf7229affbfaec3f87eb7dc04122848
parent927069c4ac2cd1a37efa468596fb5b8f86db9df0
io_uring: protect mem region deregistration

io_create_region_mmap_safe() protects publishing of a region against
concurrent mmap calls, however we should also protect against it when
removing a region. There is a gap io_register_mem_region() where it
safely publishes a region, but then copy_to_user goes wrong and it
unsafely frees the region.

Cc: stable@vger.kernel.org
Fixes: 087f997870a94 ("io_uring/memmap: implement mmap for regions")
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/register.c