From: Xiaoguang Wang <[email protected]>
To: [email protected]
Cc: [email protected], [email protected]
Subject: [RFC 1/1] io_uring: improve register file feature's usability
Date: Tue, 12 Oct 2021 16:48:11 +0800 [thread overview]
Message-ID: <[email protected]> (raw)
In-Reply-To: <[email protected]>
The idea behind register file feature is good and straightforward, but
there is a very big issue that it's hard to use for user apps. User apps
need to bind slot info to file descriptor. For example, user app wants
to register a file, then it first needs to find a free slot in register
file infrastructure, that means user app needs to maintain slot info in
userspace, which is a obvious burden for userspace developers.
Actually, file descriptor can be a good candidate slot info. If app wants
to register a file, it can use this file's fd as valid slot, there'll
definitely be no conflicts and very easy for user apps.
To support to pass fd as slot info, we'll need to automatically resize
io_file_table if passed fd is greater than current io_file_table size,
just like how fd table extends.
Signed-off-by: Xiaoguang Wang <[email protected]>
---
fs/io_uring.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++--------
1 file changed, 53 insertions(+), 8 deletions(-)
diff --git a/fs/io_uring.c b/fs/io_uring.c
index 73135c5c6168..be7abd89c0b0 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -7768,6 +7768,21 @@ static bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files)
return !!table->files;
}
+static int io_resize_file_tables(struct io_ring_ctx *ctx, unsigned old_files,
+ unsigned new_files)
+{
+ size_t oldsize = sizeof(ctx->file_table.files[0]) * old_files;
+ size_t newsize = sizeof(ctx->file_table.files[0]) * new_files;
+
+ ctx->file_table.files = kvrealloc(ctx->file_table.files, oldsize, newsize,
+ GFP_KERNEL_ACCOUNT);
+ if (!ctx->file_table.files)
+ return -ENOMEM;
+
+ ctx->nr_user_files = new_files;
+ return 0;
+}
+
static void io_free_file_tables(struct io_file_table *table)
{
kvfree(table->files);
@@ -8147,6 +8162,25 @@ static void io_rsrc_put_work(struct work_struct *work)
}
}
+static inline int io_calc_file_tables_size(__s32 __user *fds, unsigned nr_files)
+{
+ int i, fd, max_fd = 0;
+
+ for (i = 0; i < nr_files; i++) {
+ if (copy_from_user(&fd, &fds[i], sizeof(fd)))
+ return -EFAULT;
+ if (fd == -1)
+ continue;
+ if (fd > max_fd)
+ max_fd = fd;
+ }
+
+ max_fd++;
+ if (max_fd < nr_files)
+ max_fd = nr_files;
+ return max_fd;
+}
+
static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
unsigned nr_args, u64 __user *tags)
{
@@ -8154,6 +8188,7 @@ static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
struct file *file;
int fd, ret;
unsigned i;
+ int num_files;
if (ctx->file_data)
return -EBUSY;
@@ -8171,8 +8206,12 @@ static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
if (ret)
return ret;
+ num_files = io_calc_file_tables_size(fds, nr_args);
+ if (num_files < 0)
+ goto out_free;
+
ret = -ENOMEM;
- if (!io_alloc_file_tables(&ctx->file_table, nr_args))
+ if (!io_alloc_file_tables(&ctx->file_table, num_files))
goto out_free;
for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
@@ -8204,7 +8243,7 @@ static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
fput(file);
goto out_fput;
}
- io_fixed_file_set(io_fixed_file_slot(&ctx->file_table, i), file);
+ io_fixed_file_set(io_fixed_file_slot(&ctx->file_table, fd), file);
}
ret = io_sqe_files_scm(ctx);
@@ -8390,15 +8429,22 @@ static int __io_sqe_files_update(struct io_ring_ctx *ctx,
struct io_rsrc_data *data = ctx->file_data;
struct io_fixed_file *file_slot;
struct file *file;
- int fd, i, err = 0;
+ int fd, err = 0;
unsigned int done;
bool needs_switch = false;
+ int num_files;
if (!ctx->file_data)
return -ENXIO;
if (up->offset + nr_args > ctx->nr_user_files)
return -EINVAL;
+ num_files = io_calc_file_tables_size(fds, nr_args);
+ if (num_files < 0)
+ return -EFAULT;
+ if (io_resize_file_tables(ctx, ctx->nr_user_files, num_files) < 0)
+ return -ENOMEM;
+
for (done = 0; done < nr_args; done++) {
u64 tag = 0;
@@ -8414,12 +8460,11 @@ static int __io_sqe_files_update(struct io_ring_ctx *ctx,
if (fd == IORING_REGISTER_FILES_SKIP)
continue;
- i = array_index_nospec(up->offset + done, ctx->nr_user_files);
- file_slot = io_fixed_file_slot(&ctx->file_table, i);
+ file_slot = io_fixed_file_slot(&ctx->file_table, fd);
if (file_slot->file_ptr) {
file = (struct file *)(file_slot->file_ptr & FFS_MASK);
- err = io_queue_rsrc_removal(data, up->offset + done,
+ err = io_queue_rsrc_removal(data, fd,
ctx->rsrc_node, file);
if (err)
break;
@@ -8445,9 +8490,9 @@ static int __io_sqe_files_update(struct io_ring_ctx *ctx,
err = -EBADF;
break;
}
- *io_get_tag_slot(data, up->offset + done) = tag;
+ *io_get_tag_slot(data, fd) = tag;
io_fixed_file_set(file_slot, file);
- err = io_sqe_file_register(ctx, file, i);
+ err = io_sqe_file_register(ctx, file, fd);
if (err) {
file_slot->file_ptr = 0;
fput(file);
--
2.14.4.44.g2045bb6
next prev parent reply other threads:[~2021-10-12 8:48 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-12 8:48 [RFC 0/1] Is register file feature hard to use ? Xiaoguang Wang
2021-10-12 8:48 ` Xiaoguang Wang [this message]
2021-10-12 11:10 ` [RFC 1/1] io_uring: improve register file feature's usability Pavel Begunkov
2021-10-12 13:11 ` Xiaoguang Wang
2021-10-12 14:33 ` Pavel Begunkov
2021-10-13 3:32 ` Xiaoguang Wang
2021-10-14 9:43 ` Pavel Begunkov
2021-10-21 8:40 ` Xiaoguang Wang
2021-10-25 9:43 ` Pavel Begunkov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211012084811.29714-2-xiaoguang.wang@linux.alibaba.com \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox