io_uring/openclose: add support for IORING_OP_FIXED_FD_INSTALL
authorJens Axboe <axboe@kernel.dk>
Fri, 8 Dec 2023 03:06:02 +0000 (20:06 -0700)
committerJens Axboe <axboe@kernel.dk>
Tue, 12 Dec 2023 14:42:57 +0000 (07:42 -0700)
commitdc18b89ab113e9c6c7a529316ddf7029fb55132d
tree682c2a5f7e58b4af465e4e59fba5bf417420e2cf
parent055c15626a45b1ebc9f2f34981e705e1af171236
io_uring/openclose: add support for IORING_OP_FIXED_FD_INSTALL

io_uring can currently open/close regular files or fixed/direct
descriptors. Or you can instantiate a fixed descriptor from a regular
one, and then close the regular descriptor. But you currently can't turn
a purely fixed/direct descriptor into a regular file descriptor.

IORING_OP_FIXED_FD_INSTALL adds support for installing a direct
descriptor into the normal file table, just like receiving a file
descriptor or opening a new file would do. This is all nicely abstracted
into receive_fd(), and hence adding support for this is truly trivial.

Since direct descriptors are only usable within io_uring itself, it can
be useful to turn them into real file descriptors if they ever need to
be accessed via normal syscalls. This can either be a transitory thing,
or just a permanent transition for a given direct descriptor.

By default, new fds are installed with O_CLOEXEC set. The application
can disable O_CLOEXEC by setting IORING_FIXED_FD_NO_CLOEXEC in the
sqe->install_fd_flags member.

Suggested-by: Christian Brauner <brauner@kernel.org>
Reviewed-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
include/uapi/linux/io_uring.h
io_uring/opdef.c
io_uring/openclose.c
io_uring/openclose.h