aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi
diff options
context:
space:
mode:
authorEugene Syromiatnikov <esyr@redhat.com>2020-01-15 17:35:38 +0100
committerJens Axboe <axboe@kernel.dk>2020-01-20 17:00:44 -0700
commit1292e972fff2b2d81e139e0c2fe5f50249e78c58 (patch)
tree2722e386ae97640e2584f6f58b8032bf5b54d0c8 /include/uapi
parentio_uring: only allow submit from owning task (diff)
downloadlinux-dev-1292e972fff2b2d81e139e0c2fe5f50249e78c58.tar.xz
linux-dev-1292e972fff2b2d81e139e0c2fe5f50249e78c58.zip
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: c3a31e605620c279 ("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>
Diffstat (limited to 'include/uapi')
-rw-r--r--include/uapi/linux/io_uring.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h
index a3300e1b9a01..55cfcb71606d 100644
--- a/include/uapi/linux/io_uring.h
+++ b/include/uapi/linux/io_uring.h
@@ -178,7 +178,8 @@ struct io_uring_params {
struct io_uring_files_update {
__u32 offset;
- __s32 *fds;
+ __u32 resv;
+ __aligned_u64 /* __s32 * */ fds;
};
#endif