]> git.baikalelectronics.ru Git - kernel.git/commit
io_uring: fix compat for IORING_REGISTER_FILES_UPDATE
authorEugene Syromiatnikov <esyr@redhat.com>
Wed, 15 Jan 2020 16:35:38 +0000 (17:35 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 21 Jan 2020 00:00:44 +0000 (17:00 -0700)
commit1c1c29b3ba535f37d30041f3db1f541a2e51eabe
tree2722e386ae97640e2584f6f58b8032bf5b54d0c8
parent5b1a5d216fa414167b1163ce8124d1995c7ef2f9
io_uring: fix compat for IORING_REGISTER_FILES_UPDATE

fds field of struct io_uring_files_update is problematic with regards
to compat user space, as pointer size is different in 32-bit, 32-on-64-bit,
and 64-bit user space.  In order to avoid custom handling of compat in
the syscall implementation, make fds __u64 and use u64_to_user_ptr in
order to retrieve it.  Also, align the field naturally and check that
no garbage is passed there.

Fixes: 9c9f2a4231568d8b ("io_uring: add support for IORING_REGISTER_FILES_UPDATE")
Signed-off-by: Eugene Syromiatnikov <esyr@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c
include/uapi/linux/io_uring.h