blob: e7d749991de4267e8d1771b20a1e8d9cbe5c31c6 [file] [log] [blame]
Jens Axboe453b3292022-05-24 21:43:10 -06001// SPDX-License-Identifier: GPL-2.0
2#include <linux/kernel.h>
3#include <linux/errno.h>
4#include <linux/file.h>
5#include <linux/mm.h>
6#include <linux/slab.h>
Jens Axboec98817e2022-05-26 09:44:31 -06007#include <linux/nospec.h>
Jens Axboe453b3292022-05-24 21:43:10 -06008#include <linux/io_uring.h>
9
10#include <uapi/linux/io_uring.h>
11
Jens Axboe453b3292022-05-24 21:43:10 -060012#include "io_uring.h"
Jens Axboec98817e2022-05-26 09:44:31 -060013#include "rsrc.h"
14#include "filetable.h"
Jens Axboe453b3292022-05-24 21:43:10 -060015
Jens Axboec98817e2022-05-26 09:44:31 -060016static int io_file_bitmap_get(struct io_ring_ctx *ctx)
Jens Axboe453b3292022-05-24 21:43:10 -060017{
18 struct io_file_table *table = &ctx->file_table;
Pavel Begunkov6e73dff2022-06-25 11:55:38 +010019 unsigned long nr = ctx->file_alloc_end;
Jens Axboe453b3292022-05-24 21:43:10 -060020 int ret;
21
Savino Dicanosa02a4d922023-03-21 19:44:02 +000022 if (!table->bitmap)
23 return -ENFILE;
24
Jens Axboe453b3292022-05-24 21:43:10 -060025 do {
26 ret = find_next_zero_bit(table->bitmap, nr, table->alloc_hint);
27 if (ret != nr)
28 return ret;
29
Pavel Begunkov6e73dff2022-06-25 11:55:38 +010030 if (table->alloc_hint == ctx->file_alloc_start)
Jens Axboe453b3292022-05-24 21:43:10 -060031 break;
Jens Axboe453b3292022-05-24 21:43:10 -060032 nr = table->alloc_hint;
Pavel Begunkov6e73dff2022-06-25 11:55:38 +010033 table->alloc_hint = ctx->file_alloc_start;
Jens Axboe453b3292022-05-24 21:43:10 -060034 } while (1);
35
36 return -ENFILE;
37}
38
39bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files)
40{
41 table->files = kvcalloc(nr_files, sizeof(table->files[0]),
42 GFP_KERNEL_ACCOUNT);
43 if (unlikely(!table->files))
44 return false;
45
46 table->bitmap = bitmap_zalloc(nr_files, GFP_KERNEL_ACCOUNT);
47 if (unlikely(!table->bitmap)) {
48 kvfree(table->files);
49 return false;
50 }
51
52 return true;
53}
54
55void io_free_file_tables(struct io_file_table *table)
56{
57 kvfree(table->files);
58 bitmap_free(table->bitmap);
59 table->files = NULL;
60 table->bitmap = NULL;
61}
Jens Axboec98817e2022-05-26 09:44:31 -060062
Jens Axboef110ed82022-06-13 04:42:56 -060063static int io_install_fixed_file(struct io_ring_ctx *ctx, struct file *file,
64 u32 slot_index)
Jens Axboec98817e2022-05-26 09:44:31 -060065 __must_hold(&req->ctx->uring_lock)
66{
Jens Axboec98817e2022-05-26 09:44:31 -060067 struct io_fixed_file *file_slot;
68 int ret;
69
70 if (io_is_uring_fops(file))
71 return -EBADF;
72 if (!ctx->file_data)
73 return -ENXIO;
74 if (slot_index >= ctx->nr_user_files)
75 return -EINVAL;
76
77 slot_index = array_index_nospec(slot_index, ctx->nr_user_files);
78 file_slot = io_fixed_file_slot(&ctx->file_table, slot_index);
79
80 if (file_slot->file_ptr) {
Christoph Hellwig4bfb0c92023-06-20 13:32:35 +020081 ret = io_queue_rsrc_removal(ctx->file_data, slot_index,
82 io_slot_file(file_slot));
Jens Axboec98817e2022-05-26 09:44:31 -060083 if (ret)
Pavel Begunkovc87fd582023-04-13 15:28:13 +010084 return ret;
85
Jens Axboec98817e2022-05-26 09:44:31 -060086 file_slot->file_ptr = 0;
87 io_file_bitmap_clear(&ctx->file_table, slot_index);
Jens Axboec98817e2022-05-26 09:44:31 -060088 }
89
90 ret = io_scm_file_account(ctx, file);
91 if (!ret) {
92 *io_get_tag_slot(ctx->file_data, slot_index) = 0;
93 io_fixed_file_set(file_slot, file);
94 io_file_bitmap_set(&ctx->file_table, slot_index);
95 }
Jens Axboec98817e2022-05-26 09:44:31 -060096 return ret;
97}
98
Jens Axboef110ed82022-06-13 04:42:56 -060099int __io_fixed_fd_install(struct io_ring_ctx *ctx, struct file *file,
100 unsigned int file_slot)
101{
102 bool alloc_slot = file_slot == IORING_FILE_INDEX_ALLOC;
103 int ret;
104
105 if (alloc_slot) {
106 ret = io_file_bitmap_get(ctx);
107 if (unlikely(ret < 0))
108 return ret;
109 file_slot = ret;
110 } else {
111 file_slot--;
112 }
113
114 ret = io_install_fixed_file(ctx, file, file_slot);
115 if (!ret && alloc_slot)
116 ret = file_slot;
117 return ret;
118}
Jens Axboec98817e2022-05-26 09:44:31 -0600119/*
120 * Note when io_fixed_fd_install() returns error value, it will ensure
121 * fput() is called correspondingly.
122 */
123int io_fixed_fd_install(struct io_kiocb *req, unsigned int issue_flags,
124 struct file *file, unsigned int file_slot)
125{
Jens Axboec98817e2022-05-26 09:44:31 -0600126 struct io_ring_ctx *ctx = req->ctx;
127 int ret;
128
129 io_ring_submit_lock(ctx, issue_flags);
Jens Axboef110ed82022-06-13 04:42:56 -0600130 ret = __io_fixed_fd_install(ctx, file, file_slot);
Jens Axboec98817e2022-05-26 09:44:31 -0600131 io_ring_submit_unlock(ctx, issue_flags);
Jens Axboef110ed82022-06-13 04:42:56 -0600132
Jens Axboec98817e2022-05-26 09:44:31 -0600133 if (unlikely(ret < 0))
134 fput(file);
135 return ret;
136}
Jens Axboef110ed82022-06-13 04:42:56 -0600137
138int io_fixed_fd_remove(struct io_ring_ctx *ctx, unsigned int offset)
139{
140 struct io_fixed_file *file_slot;
Jens Axboef110ed82022-06-13 04:42:56 -0600141 int ret;
142
143 if (unlikely(!ctx->file_data))
144 return -ENXIO;
145 if (offset >= ctx->nr_user_files)
146 return -EINVAL;
Jens Axboef110ed82022-06-13 04:42:56 -0600147
148 offset = array_index_nospec(offset, ctx->nr_user_files);
149 file_slot = io_fixed_file_slot(&ctx->file_table, offset);
150 if (!file_slot->file_ptr)
151 return -EBADF;
152
Christoph Hellwig4bfb0c92023-06-20 13:32:35 +0200153 ret = io_queue_rsrc_removal(ctx->file_data, offset,
154 io_slot_file(file_slot));
Jens Axboef110ed82022-06-13 04:42:56 -0600155 if (ret)
156 return ret;
157
158 file_slot->file_ptr = 0;
159 io_file_bitmap_clear(&ctx->file_table, offset);
Jens Axboef110ed82022-06-13 04:42:56 -0600160 return 0;
161}
Pavel Begunkov6e73dff2022-06-25 11:55:38 +0100162
163int io_register_file_alloc_range(struct io_ring_ctx *ctx,
164 struct io_uring_file_index_range __user *arg)
165{
166 struct io_uring_file_index_range range;
167 u32 end;
168
169 if (copy_from_user(&range, arg, sizeof(range)))
170 return -EFAULT;
171 if (check_add_overflow(range.off, range.len, &end))
172 return -EOVERFLOW;
173 if (range.resv || end > ctx->nr_user_files)
174 return -EINVAL;
175
176 io_file_table_set_alloc_range(ctx, range.off, range.len);
177 return 0;
178}