blob: b789b9af2f4cc698480b7844e6ef3a2ff54eed62 [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
Jens Axboe52de1fe2020-02-27 10:15:42 -070047#include <net/compat.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070048#include <linux/refcount.h>
49#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030050#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070051
52#include <linux/sched/signal.h>
53#include <linux/fs.h>
54#include <linux/file.h>
55#include <linux/fdtable.h>
56#include <linux/mm.h>
57#include <linux/mman.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070058#include <linux/percpu.h>
59#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070060#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070061#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070062#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070063#include <linux/net.h>
64#include <net/sock.h>
65#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070066#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070067#include <linux/anon_inodes.h>
68#include <linux/sched/mm.h>
69#include <linux/uaccess.h>
70#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070071#include <linux/sizes.h>
72#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070073#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070074#include <linux/namei.h>
75#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070076#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070077#include <linux/eventpoll.h>
Jens Axboeff002b32020-02-07 16:05:21 -070078#include <linux/fs_struct.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030079#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070080#include <linux/task_work.h>
Jens Axboebcf5a062020-05-22 09:24:42 -060081#include <linux/pagemap.h>
Jens Axboe0f212202020-09-13 13:09:39 -060082#include <linux/io_uring.h>
Dennis Zhou91d8f512020-09-16 13:41:05 -070083#include <linux/blk-cgroup.h>
Jens Axboe4ea33a92020-10-15 13:46:44 -060084#include <linux/audit.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070085
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020086#define CREATE_TRACE_POINTS
87#include <trace/events/io_uring.h>
88
Jens Axboe2b188cc2019-01-07 10:46:33 -070089#include <uapi/linux/io_uring.h>
90
91#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060092#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070093
Daniel Xu5277dea2019-09-14 14:23:45 -070094#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060095#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060096
97/*
98 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
99 */
100#define IORING_FILE_TABLE_SHIFT 9
101#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
102#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
103#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200104#define IORING_MAX_RESTRICTIONS (IORING_RESTRICTION_LAST + \
105 IORING_REGISTER_LAST + IORING_OP_LAST)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700106
107struct io_uring {
108 u32 head ____cacheline_aligned_in_smp;
109 u32 tail ____cacheline_aligned_in_smp;
110};
111
Stefan Bühler1e84b972019-04-24 23:54:16 +0200112/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000113 * This data is shared with the application through the mmap at offsets
114 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 *
116 * The offsets to the member fields are published through struct
117 * io_sqring_offsets when calling io_uring_setup.
118 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000119struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200120 /*
121 * Head and tail offsets into the ring; the offsets need to be
122 * masked to get valid indices.
123 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000124 * The kernel controls head of the sq ring and the tail of the cq ring,
125 * and the application controls tail of the sq ring and the head of the
126 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200127 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000128 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200129 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000130 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200131 * ring_entries - 1)
132 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000133 u32 sq_ring_mask, cq_ring_mask;
134 /* Ring sizes (constant, power of 2) */
135 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200136 /*
137 * Number of invalid entries dropped by the kernel due to
138 * invalid index stored in array
139 *
140 * Written by the kernel, shouldn't be modified by the
141 * application (i.e. get number of "new events" by comparing to
142 * cached value).
143 *
144 * After a new SQ head value was read by the application this
145 * counter includes all submissions that were dropped reaching
146 * the new SQ head (and possibly more).
147 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000148 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200149 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200150 * Runtime SQ flags
Stefan Bühler1e84b972019-04-24 23:54:16 +0200151 *
152 * Written by the kernel, shouldn't be modified by the
153 * application.
154 *
155 * The application needs a full memory barrier before checking
156 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
157 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000158 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200159 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200160 * Runtime CQ flags
161 *
162 * Written by the application, shouldn't be modified by the
163 * kernel.
164 */
165 u32 cq_flags;
166 /*
Stefan Bühler1e84b972019-04-24 23:54:16 +0200167 * Number of completion events lost because the queue was full;
168 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800169 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200170 * the completion queue.
171 *
172 * Written by the kernel, shouldn't be modified by the
173 * application (i.e. get number of "new events" by comparing to
174 * cached value).
175 *
176 * As completion events come in out of order this counter is not
177 * ordered with any other data.
178 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000179 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200180 /*
181 * Ring buffer of completion events.
182 *
183 * The kernel writes completion events fresh every time they are
184 * produced, so the application is allowed to modify pending
185 * entries.
186 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000187 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700188};
189
Jens Axboeedafcce2019-01-09 09:16:05 -0700190struct io_mapped_ubuf {
191 u64 ubuf;
192 size_t len;
193 struct bio_vec *bvec;
194 unsigned int nr_bvecs;
Jens Axboede293932020-09-17 16:19:16 -0600195 unsigned long acct_pages;
Jens Axboeedafcce2019-01-09 09:16:05 -0700196};
197
Jens Axboe65e19f52019-10-26 07:20:21 -0600198struct fixed_file_table {
199 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700200};
201
Xiaoguang Wang05589552020-03-31 14:05:18 +0800202struct fixed_file_ref_node {
203 struct percpu_ref refs;
204 struct list_head node;
205 struct list_head file_list;
206 struct fixed_file_data *file_data;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600207 struct llist_node llist;
Pavel Begunkove2978222020-11-18 14:56:26 +0000208 bool done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800209};
210
Jens Axboe05f3fb32019-12-09 11:22:50 -0700211struct fixed_file_data {
212 struct fixed_file_table *table;
213 struct io_ring_ctx *ctx;
214
Pavel Begunkovb2e96852020-10-10 18:34:16 +0100215 struct fixed_file_ref_node *node;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700216 struct percpu_ref refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700217 struct completion done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800218 struct list_head ref_list;
219 spinlock_t lock;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700220};
221
Jens Axboe5a2e7452020-02-23 16:23:11 -0700222struct io_buffer {
223 struct list_head list;
224 __u64 addr;
225 __s32 len;
226 __u16 bid;
227};
228
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200229struct io_restriction {
230 DECLARE_BITMAP(register_op, IORING_REGISTER_LAST);
231 DECLARE_BITMAP(sqe_op, IORING_OP_LAST);
232 u8 sqe_flags_allowed;
233 u8 sqe_flags_required;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +0200234 bool registered;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200235};
236
Jens Axboe534ca6d2020-09-02 13:52:19 -0600237struct io_sq_data {
238 refcount_t refs;
Jens Axboe69fb2132020-09-14 11:16:23 -0600239 struct mutex lock;
240
241 /* ctx's that are using this sqd */
242 struct list_head ctx_list;
243 struct list_head ctx_new_list;
244 struct mutex ctx_lock;
245
Jens Axboe534ca6d2020-09-02 13:52:19 -0600246 struct task_struct *thread;
247 struct wait_queue_head wait;
Xiaoguang Wang08369242020-11-03 14:15:59 +0800248
249 unsigned sq_thread_idle;
Jens Axboe534ca6d2020-09-02 13:52:19 -0600250};
251
Jens Axboe2b188cc2019-01-07 10:46:33 -0700252struct io_ring_ctx {
253 struct {
254 struct percpu_ref refs;
255 } ____cacheline_aligned_in_smp;
256
257 struct {
258 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800259 unsigned int compat: 1;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -0700260 unsigned int limit_mem: 1;
Randy Dunlape1d85332020-02-05 20:57:10 -0800261 unsigned int cq_overflow_flushed: 1;
262 unsigned int drain_next: 1;
263 unsigned int eventfd_async: 1;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200264 unsigned int restricted: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700265
Hristo Venev75b28af2019-08-26 17:23:46 +0000266 /*
267 * Ring buffer of indices into array of io_uring_sqe, which is
268 * mmapped by the application using the IORING_OFF_SQES offset.
269 *
270 * This indirection could e.g. be used to assign fixed
271 * io_uring_sqe entries to operations and only submit them to
272 * the queue when needed.
273 *
274 * The kernel modifies neither the indices array nor the entries
275 * array.
276 */
277 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700278 unsigned cached_sq_head;
279 unsigned sq_entries;
280 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700281 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600282 unsigned cached_sq_dropped;
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +0100283 unsigned cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700284 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600285
286 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600287 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700288 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700289
Jens Axboefcb323c2019-10-24 12:39:47 -0600290 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700291 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700292 } ____cacheline_aligned_in_smp;
293
Hristo Venev75b28af2019-08-26 17:23:46 +0000294 struct io_rings *rings;
295
Jens Axboe2b188cc2019-01-07 10:46:33 -0700296 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600297 struct io_wq *io_wq;
Jens Axboe2aede0e2020-09-14 10:45:53 -0600298
299 /*
300 * For SQPOLL usage - we hold a reference to the parent task, so we
301 * have access to the ->files
302 */
303 struct task_struct *sqo_task;
304
305 /* Only used for accounting purposes */
306 struct mm_struct *mm_account;
307
Dennis Zhou91d8f512020-09-16 13:41:05 -0700308#ifdef CONFIG_BLK_CGROUP
309 struct cgroup_subsys_state *sqo_blkcg_css;
310#endif
311
Jens Axboe534ca6d2020-09-02 13:52:19 -0600312 struct io_sq_data *sq_data; /* if using sq thread polling */
313
Jens Axboe90554202020-09-03 12:12:41 -0600314 struct wait_queue_head sqo_sq_wait;
Jens Axboe69fb2132020-09-14 11:16:23 -0600315 struct list_head sqd_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700316
Jens Axboe6b063142019-01-10 22:13:58 -0700317 /*
318 * If used, fixed file set. Writers must ensure that ->refs is dead,
319 * readers must ensure that ->refs is alive as long as the file* is
320 * used. Only updated through io_uring_register(2).
321 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700322 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700323 unsigned nr_user_files;
324
Jens Axboeedafcce2019-01-09 09:16:05 -0700325 /* if used, fixed mapped user buffers */
326 unsigned nr_user_bufs;
327 struct io_mapped_ubuf *user_bufs;
328
Jens Axboe2b188cc2019-01-07 10:46:33 -0700329 struct user_struct *user;
330
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700331 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700332
Jens Axboe4ea33a92020-10-15 13:46:44 -0600333#ifdef CONFIG_AUDIT
334 kuid_t loginuid;
335 unsigned int sessionid;
336#endif
337
Jens Axboe0f158b42020-05-14 17:18:39 -0600338 struct completion ref_comp;
339 struct completion sq_thread_comp;
Jens Axboe206aefd2019-11-07 18:27:42 -0700340
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700341 /* if all else fails... */
342 struct io_kiocb *fallback_req;
343
Jens Axboe206aefd2019-11-07 18:27:42 -0700344#if defined(CONFIG_UNIX)
345 struct socket *ring_sock;
346#endif
347
Jens Axboe5a2e7452020-02-23 16:23:11 -0700348 struct idr io_buffer_idr;
349
Jens Axboe071698e2020-01-28 10:04:42 -0700350 struct idr personality_idr;
351
Jens Axboe206aefd2019-11-07 18:27:42 -0700352 struct {
353 unsigned cached_cq_tail;
354 unsigned cq_entries;
355 unsigned cq_mask;
356 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700357 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700358 struct wait_queue_head cq_wait;
359 struct fasync_struct *cq_fasync;
360 struct eventfd_ctx *cq_ev_fd;
361 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700362
363 struct {
364 struct mutex uring_lock;
365 wait_queue_head_t wait;
366 } ____cacheline_aligned_in_smp;
367
368 struct {
369 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700370
Jens Axboedef596e2019-01-09 08:59:42 -0700371 /*
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300372 * ->iopoll_list is protected by the ctx->uring_lock for
Jens Axboedef596e2019-01-09 08:59:42 -0700373 * io_uring instances that don't use IORING_SETUP_SQPOLL.
374 * For SQPOLL, only the single threaded io_sq_thread() will
375 * manipulate the list, hence no extra locking is needed there.
376 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300377 struct list_head iopoll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700378 struct hlist_head *cancel_hash;
379 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700380 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600381
382 spinlock_t inflight_lock;
383 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700384 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600385
Jens Axboe4a38aed22020-05-14 17:21:15 -0600386 struct delayed_work file_put_work;
387 struct llist_head file_put_llist;
388
Jens Axboe85faa7b2020-04-09 18:14:00 -0600389 struct work_struct exit_work;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200390 struct io_restriction restrictions;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700391};
392
Jens Axboe09bb8392019-03-13 12:39:28 -0600393/*
394 * First field must be the file pointer in all the
395 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
396 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700397struct io_poll_iocb {
398 struct file *file;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000399 struct wait_queue_head *head;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700400 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600401 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700402 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700403 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700404};
405
Pavel Begunkov018043b2020-10-27 23:17:18 +0000406struct io_poll_remove {
407 struct file *file;
408 u64 addr;
409};
410
Jens Axboeb5dba592019-12-11 14:02:38 -0700411struct io_close {
412 struct file *file;
413 struct file *put_file;
414 int fd;
415};
416
Jens Axboead8a48a2019-11-15 08:49:11 -0700417struct io_timeout_data {
418 struct io_kiocb *req;
419 struct hrtimer timer;
420 struct timespec64 ts;
421 enum hrtimer_mode mode;
422};
423
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700424struct io_accept {
425 struct file *file;
426 struct sockaddr __user *addr;
427 int __user *addr_len;
428 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600429 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700430};
431
432struct io_sync {
433 struct file *file;
434 loff_t len;
435 loff_t off;
436 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700437 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700438};
439
Jens Axboefbf23842019-12-17 18:45:56 -0700440struct io_cancel {
441 struct file *file;
442 u64 addr;
443};
444
Jens Axboeb29472e2019-12-17 18:50:29 -0700445struct io_timeout {
446 struct file *file;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +0300447 u32 off;
448 u32 target_seq;
Pavel Begunkov135fcde2020-07-13 23:37:12 +0300449 struct list_head list;
Pavel Begunkov90cd7e42020-10-27 23:25:36 +0000450 /* head of the link, used by linked timeouts only */
451 struct io_kiocb *head;
Jens Axboeb29472e2019-12-17 18:50:29 -0700452};
453
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100454struct io_timeout_rem {
455 struct file *file;
456 u64 addr;
457};
458
Jens Axboe9adbd452019-12-20 08:45:55 -0700459struct io_rw {
460 /* NOTE: kiocb has the file as the first member, so don't do it here */
461 struct kiocb kiocb;
462 u64 addr;
463 u64 len;
464};
465
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700466struct io_connect {
467 struct file *file;
468 struct sockaddr __user *addr;
469 int addr_len;
470};
471
Jens Axboee47293f2019-12-20 08:58:21 -0700472struct io_sr_msg {
473 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700474 union {
Pavel Begunkov270a5942020-07-12 20:41:04 +0300475 struct user_msghdr __user *umsg;
Jens Axboefddafac2020-01-04 20:19:44 -0700476 void __user *buf;
477 };
Jens Axboee47293f2019-12-20 08:58:21 -0700478 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700479 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700480 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700481 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700482};
483
Jens Axboe15b71ab2019-12-11 11:20:36 -0700484struct io_open {
485 struct file *file;
486 int dfd;
Jens Axboe944d1442020-11-13 16:48:44 -0700487 bool ignore_nonblock;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700488 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700489 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600490 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700491};
492
Jens Axboe05f3fb32019-12-09 11:22:50 -0700493struct io_files_update {
494 struct file *file;
495 u64 arg;
496 u32 nr_args;
497 u32 offset;
498};
499
Jens Axboe4840e412019-12-25 22:03:45 -0700500struct io_fadvise {
501 struct file *file;
502 u64 offset;
503 u32 len;
504 u32 advice;
505};
506
Jens Axboec1ca7572019-12-25 22:18:28 -0700507struct io_madvise {
508 struct file *file;
509 u64 addr;
510 u32 len;
511 u32 advice;
512};
513
Jens Axboe3e4827b2020-01-08 15:18:09 -0700514struct io_epoll {
515 struct file *file;
516 int epfd;
517 int op;
518 int fd;
519 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700520};
521
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300522struct io_splice {
523 struct file *file_out;
524 struct file *file_in;
525 loff_t off_out;
526 loff_t off_in;
527 u64 len;
528 unsigned int flags;
529};
530
Jens Axboeddf0322d2020-02-23 16:41:33 -0700531struct io_provide_buf {
532 struct file *file;
533 __u64 addr;
534 __s32 len;
535 __u32 bgid;
536 __u16 nbufs;
537 __u16 bid;
538};
539
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700540struct io_statx {
541 struct file *file;
542 int dfd;
543 unsigned int mask;
544 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700545 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700546 struct statx __user *buffer;
547};
548
Jens Axboe36f4fa62020-09-05 11:14:22 -0600549struct io_shutdown {
550 struct file *file;
551 int how;
552};
553
Jens Axboe80a261f2020-09-28 14:23:58 -0600554struct io_rename {
555 struct file *file;
556 int old_dfd;
557 int new_dfd;
558 struct filename *oldpath;
559 struct filename *newpath;
560 int flags;
561};
562
Jens Axboe14a11432020-09-28 14:27:37 -0600563struct io_unlink {
564 struct file *file;
565 int dfd;
566 int flags;
567 struct filename *filename;
568};
569
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300570struct io_completion {
571 struct file *file;
572 struct list_head list;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +0300573 int cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300574};
575
Jens Axboef499a022019-12-02 16:28:46 -0700576struct io_async_connect {
577 struct sockaddr_storage address;
578};
579
Jens Axboe03b12302019-12-02 18:50:25 -0700580struct io_async_msghdr {
581 struct iovec fast_iov[UIO_FASTIOV];
582 struct iovec *iov;
583 struct sockaddr __user *uaddr;
584 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700585 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700586};
587
Jens Axboef67676d2019-12-02 11:03:47 -0700588struct io_async_rw {
589 struct iovec fast_iov[UIO_FASTIOV];
Jens Axboeff6165b2020-08-13 09:47:43 -0600590 const struct iovec *free_iovec;
591 struct iov_iter iter;
Jens Axboe227c0c92020-08-13 11:51:40 -0600592 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600593 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700594};
595
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300596enum {
597 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
598 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
599 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
600 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
601 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700602 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300603
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300604 REQ_F_FAIL_LINK_BIT,
605 REQ_F_INFLIGHT_BIT,
606 REQ_F_CUR_POS_BIT,
607 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300608 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300609 REQ_F_ISREG_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300610 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700611 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700612 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600613 REQ_F_NO_FILE_TABLE_BIT,
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800614 REQ_F_WORK_INITIALIZED_BIT,
Pavel Begunkov900fad42020-10-19 16:39:16 +0100615 REQ_F_LTIMEOUT_ACTIVE_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700616
617 /* not a real bit, just to check we're not overflowing the space */
618 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300619};
620
621enum {
622 /* ctx owns file */
623 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
624 /* drain existing IO first */
625 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
626 /* linked sqes */
627 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
628 /* doesn't sever on completion < 0 */
629 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
630 /* IOSQE_ASYNC */
631 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700632 /* IOSQE_BUFFER_SELECT */
633 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300634
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300635 /* fail rest of links */
636 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
637 /* on inflight list */
638 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
639 /* read/write uses file position */
640 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
641 /* must not punt to workers */
642 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100643 /* has or had linked timeout */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300644 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300645 /* regular file */
646 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300647 /* needs cleanup */
648 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700649 /* already went through poll handler */
650 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700651 /* buffer already selected */
652 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600653 /* doesn't need file table for this request */
654 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800655 /* io_wq_work is initialized */
656 REQ_F_WORK_INITIALIZED = BIT(REQ_F_WORK_INITIALIZED_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100657 /* linked timeout is active, i.e. prepared by link's head */
658 REQ_F_LTIMEOUT_ACTIVE = BIT(REQ_F_LTIMEOUT_ACTIVE_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700659};
660
661struct async_poll {
662 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600663 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300664};
665
Jens Axboe09bb8392019-03-13 12:39:28 -0600666/*
667 * NOTE! Each of the iocb union members has the file pointer
668 * as the first entry in their struct definition. So you can
669 * access the file pointer through any of the sub-structs,
670 * or directly as just 'ki_filp' in this struct.
671 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700672struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700673 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600674 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700675 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700676 struct io_poll_iocb poll;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000677 struct io_poll_remove poll_remove;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700678 struct io_accept accept;
679 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700680 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700681 struct io_timeout timeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100682 struct io_timeout_rem timeout_rem;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700683 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700684 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700685 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700686 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700687 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700688 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700689 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700690 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300691 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700692 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700693 struct io_statx statx;
Jens Axboe36f4fa62020-09-05 11:14:22 -0600694 struct io_shutdown shutdown;
Jens Axboe80a261f2020-09-28 14:23:58 -0600695 struct io_rename rename;
Jens Axboe14a11432020-09-28 14:27:37 -0600696 struct io_unlink unlink;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300697 /* use only after cleaning per-op data, see io_clean_op() */
698 struct io_completion compl;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700699 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700700
Jens Axboee8c2bc12020-08-15 18:44:09 -0700701 /* opcode allocated if it needs to store data for async defer */
702 void *async_data;
Jens Axboed625c6e2019-12-17 19:53:05 -0700703 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800704 /* polled IO has completed */
705 u8 iopoll_completed;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700706
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700707 u16 buf_index;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300708 u32 result;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700709
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300710 struct io_ring_ctx *ctx;
711 unsigned int flags;
712 refcount_t refs;
713 struct task_struct *task;
714 u64 user_data;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700715
Pavel Begunkovf2f87372020-10-27 23:25:37 +0000716 struct io_kiocb *link;
Pavel Begunkov04157672020-10-27 23:25:38 +0000717 struct percpu_ref *fixed_file_refs;
Jens Axboed7718a92020-02-14 22:23:12 -0700718
Pavel Begunkovd21ffe72020-07-13 23:37:10 +0300719 /*
720 * 1. used with ctx->iopoll_list with reads/writes
721 * 2. to track reqs with ->files (see io_op_def::file_table)
722 */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300723 struct list_head inflight_entry;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300724 struct callback_head task_work;
725 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
726 struct hlist_node hash_node;
727 struct async_poll *apoll;
728 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700729};
730
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300731struct io_defer_entry {
732 struct list_head list;
733 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300734 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300735};
736
Jens Axboedef596e2019-01-09 08:59:42 -0700737#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700738
Jens Axboe013538b2020-06-22 09:29:15 -0600739struct io_comp_state {
740 unsigned int nr;
741 struct list_head list;
742 struct io_ring_ctx *ctx;
743};
744
Jens Axboe9a56a232019-01-09 09:06:50 -0700745struct io_submit_state {
746 struct blk_plug plug;
747
748 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700749 * io_kiocb alloc cache
750 */
751 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300752 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700753
Jens Axboe27926b62020-10-28 09:33:23 -0600754 bool plug_started;
755
Jens Axboe2579f912019-01-09 09:10:43 -0700756 /*
Jens Axboe013538b2020-06-22 09:29:15 -0600757 * Batch completion logic
758 */
759 struct io_comp_state comp;
760
761 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700762 * File reference cache
763 */
764 struct file *file;
765 unsigned int fd;
766 unsigned int has_refs;
Jens Axboe9a56a232019-01-09 09:06:50 -0700767 unsigned int ios_left;
768};
769
Jens Axboed3656342019-12-18 09:50:26 -0700770struct io_op_def {
Jens Axboed3656342019-12-18 09:50:26 -0700771 /* needs req->file assigned */
772 unsigned needs_file : 1;
Jens Axboefd2206e2020-06-02 16:40:47 -0600773 /* don't fail if file grab fails */
774 unsigned needs_file_no_error : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700775 /* hash wq insertion if file is a regular file */
776 unsigned hash_reg_file : 1;
777 /* unbound wq insertion if file is a non-regular file */
778 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700779 /* opcode is not supported by this kernel */
780 unsigned not_supported : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700781 /* set if opcode supports polled "wait" */
782 unsigned pollin : 1;
783 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700784 /* op supports buffer selection */
785 unsigned buffer_select : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700786 /* must always have async data allocated */
787 unsigned needs_async_data : 1;
Jens Axboe27926b62020-10-28 09:33:23 -0600788 /* should block plug */
789 unsigned plug : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700790 /* size of async data needed, if any */
791 unsigned short async_size;
Jens Axboe0f203762020-10-14 09:23:55 -0600792 unsigned work_flags;
Jens Axboed3656342019-12-18 09:50:26 -0700793};
794
Jens Axboe09186822020-10-13 15:01:40 -0600795static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300796 [IORING_OP_NOP] = {},
797 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700798 .needs_file = 1,
799 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700800 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700801 .buffer_select = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700802 .needs_async_data = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600803 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700804 .async_size = sizeof(struct io_async_rw),
Jens Axboe0f203762020-10-14 09:23:55 -0600805 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700806 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300807 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700808 .needs_file = 1,
809 .hash_reg_file = 1,
810 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700811 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700812 .needs_async_data = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600813 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700814 .async_size = sizeof(struct io_async_rw),
Jens Axboe69228332020-10-20 14:28:41 -0600815 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
816 IO_WQ_WORK_FSIZE,
Jens Axboed3656342019-12-18 09:50:26 -0700817 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300818 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700819 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600820 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700821 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300822 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700823 .needs_file = 1,
824 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700825 .pollin = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600826 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700827 .async_size = sizeof(struct io_async_rw),
Jens Axboe4017eb92020-10-22 14:14:12 -0600828 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700829 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300830 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700831 .needs_file = 1,
832 .hash_reg_file = 1,
833 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700834 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600835 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700836 .async_size = sizeof(struct io_async_rw),
Jens Axboe4017eb92020-10-22 14:14:12 -0600837 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_FSIZE |
838 IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700839 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300840 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700841 .needs_file = 1,
842 .unbound_nonreg_file = 1,
843 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300844 [IORING_OP_POLL_REMOVE] = {},
845 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700846 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600847 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700848 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300849 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700850 .needs_file = 1,
851 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700852 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700853 .needs_async_data = 1,
854 .async_size = sizeof(struct io_async_msghdr),
Jens Axboe0f203762020-10-14 09:23:55 -0600855 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
856 IO_WQ_WORK_FS,
Jens Axboed3656342019-12-18 09:50:26 -0700857 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300858 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700859 .needs_file = 1,
860 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700861 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700862 .buffer_select = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700863 .needs_async_data = 1,
864 .async_size = sizeof(struct io_async_msghdr),
Jens Axboe0f203762020-10-14 09:23:55 -0600865 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
866 IO_WQ_WORK_FS,
Jens Axboed3656342019-12-18 09:50:26 -0700867 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300868 [IORING_OP_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700869 .needs_async_data = 1,
870 .async_size = sizeof(struct io_timeout_data),
Jens Axboe0f203762020-10-14 09:23:55 -0600871 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700872 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300873 [IORING_OP_TIMEOUT_REMOVE] = {},
874 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700875 .needs_file = 1,
876 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700877 .pollin = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600878 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES,
Jens Axboed3656342019-12-18 09:50:26 -0700879 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300880 [IORING_OP_ASYNC_CANCEL] = {},
881 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700882 .needs_async_data = 1,
883 .async_size = sizeof(struct io_timeout_data),
Jens Axboe0f203762020-10-14 09:23:55 -0600884 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700885 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300886 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700887 .needs_file = 1,
888 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700889 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700890 .needs_async_data = 1,
891 .async_size = sizeof(struct io_async_connect),
Jens Axboe0f203762020-10-14 09:23:55 -0600892 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700893 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300894 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700895 .needs_file = 1,
Jens Axboe69228332020-10-20 14:28:41 -0600896 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_FSIZE,
Jens Axboed3656342019-12-18 09:50:26 -0700897 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300898 [IORING_OP_OPENAT] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600899 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_BLKCG |
Jens Axboe14587a462020-09-05 11:36:08 -0600900 IO_WQ_WORK_FS | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700901 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300902 [IORING_OP_CLOSE] = {
Jens Axboefd2206e2020-06-02 16:40:47 -0600903 .needs_file = 1,
904 .needs_file_no_error = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600905 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700906 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300907 [IORING_OP_FILES_UPDATE] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600908 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700909 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300910 [IORING_OP_STATX] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600911 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_MM |
912 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700913 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300914 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700915 .needs_file = 1,
916 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700917 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700918 .buffer_select = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600919 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700920 .async_size = sizeof(struct io_async_rw),
Jens Axboe0f203762020-10-14 09:23:55 -0600921 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700922 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300923 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700924 .needs_file = 1,
925 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700926 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600927 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700928 .async_size = sizeof(struct io_async_rw),
Jens Axboe69228332020-10-20 14:28:41 -0600929 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
930 IO_WQ_WORK_FSIZE,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700931 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300932 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700933 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600934 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboe4840e412019-12-25 22:03:45 -0700935 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300936 [IORING_OP_MADVISE] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600937 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboec1ca7572019-12-25 22:18:28 -0700938 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300939 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700940 .needs_file = 1,
941 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700942 .pollout = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600943 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboefddafac2020-01-04 20:19:44 -0700944 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300945 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700946 .needs_file = 1,
947 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700948 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700949 .buffer_select = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600950 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboefddafac2020-01-04 20:19:44 -0700951 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300952 [IORING_OP_OPENAT2] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600953 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_FS |
Jens Axboe14587a462020-09-05 11:36:08 -0600954 IO_WQ_WORK_BLKCG | IO_WQ_WORK_MM,
Jens Axboecebdb982020-01-08 17:59:24 -0700955 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700956 [IORING_OP_EPOLL_CTL] = {
957 .unbound_nonreg_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600958 .work_flags = IO_WQ_WORK_FILES,
Jens Axboe3e4827b2020-01-08 15:18:09 -0700959 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300960 [IORING_OP_SPLICE] = {
961 .needs_file = 1,
962 .hash_reg_file = 1,
963 .unbound_nonreg_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600964 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700965 },
966 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700967 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +0300968 [IORING_OP_TEE] = {
969 .needs_file = 1,
970 .hash_reg_file = 1,
971 .unbound_nonreg_file = 1,
972 },
Jens Axboe36f4fa62020-09-05 11:14:22 -0600973 [IORING_OP_SHUTDOWN] = {
974 .needs_file = 1,
975 },
Jens Axboe80a261f2020-09-28 14:23:58 -0600976 [IORING_OP_RENAMEAT] = {
977 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES |
978 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
979 },
Jens Axboe14a11432020-09-28 14:27:37 -0600980 [IORING_OP_UNLINKAT] = {
981 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES |
982 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
983 },
Jens Axboed3656342019-12-18 09:50:26 -0700984};
985
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -0700986enum io_mem_account {
987 ACCT_LOCKED,
988 ACCT_PINNED,
989};
990
Pavel Begunkov81b68a52020-07-30 18:43:46 +0300991static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
992 struct io_comp_state *cs);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700993static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800994static void io_put_req(struct io_kiocb *req);
Pavel Begunkov216578e2020-10-13 09:44:00 +0100995static void io_put_req_deferred(struct io_kiocb *req, int nr);
Jens Axboec40f6372020-06-25 15:39:59 -0600996static void io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700997static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
Jens Axboe7271ef32020-08-10 09:55:22 -0600998static void __io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700999static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -07001000static int __io_sqe_files_update(struct io_ring_ctx *ctx,
1001 struct io_uring_files_update *ip,
1002 unsigned nr_args);
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001003static void __io_clean_op(struct io_kiocb *req);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01001004static struct file *io_file_get(struct io_submit_state *state,
1005 struct io_kiocb *req, int fd, bool fixed);
Pavel Begunkovc1379e22020-09-30 22:57:56 +03001006static void __io_queue_sqe(struct io_kiocb *req, struct io_comp_state *cs);
Jens Axboe4349f302020-07-09 15:07:01 -06001007static void io_file_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -06001008
Jens Axboeb63534c2020-06-04 11:28:00 -06001009static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1010 struct iovec **iovec, struct iov_iter *iter,
1011 bool needs_lock);
Jens Axboeff6165b2020-08-13 09:47:43 -06001012static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
1013 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06001014 struct iov_iter *iter, bool force);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001015
1016static struct kmem_cache *req_cachep;
1017
Jens Axboe09186822020-10-13 15:01:40 -06001018static const struct file_operations io_uring_fops;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001019
1020struct sock *io_uring_get_socket(struct file *file)
1021{
1022#if defined(CONFIG_UNIX)
1023 if (file->f_op == &io_uring_fops) {
1024 struct io_ring_ctx *ctx = file->private_data;
1025
1026 return ctx->ring_sock->sk;
1027 }
1028#endif
1029 return NULL;
1030}
1031EXPORT_SYMBOL(io_uring_get_socket);
1032
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001033#define io_for_each_link(pos, head) \
1034 for (pos = (head); pos; pos = pos->link)
1035
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001036static inline void io_clean_op(struct io_kiocb *req)
1037{
Pavel Begunkovbb175342020-08-20 11:33:35 +03001038 if (req->flags & (REQ_F_NEED_CLEANUP | REQ_F_BUFFER_SELECTED |
1039 REQ_F_INFLIGHT))
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001040 __io_clean_op(req);
1041}
1042
Pavel Begunkov08d23632020-11-06 13:00:22 +00001043static bool io_match_task(struct io_kiocb *head,
1044 struct task_struct *task,
1045 struct files_struct *files)
1046{
1047 struct io_kiocb *req;
1048
1049 if (task && head->task != task)
1050 return false;
1051 if (!files)
1052 return true;
1053
1054 io_for_each_link(req, head) {
1055 if ((req->flags & REQ_F_WORK_INITIALIZED) &&
1056 (req->work.flags & IO_WQ_WORK_FILES) &&
1057 req->work.identity->files == files)
1058 return true;
1059 }
1060 return false;
1061}
1062
Jens Axboe28cea78a2020-09-14 10:51:17 -06001063static void io_sq_thread_drop_mm_files(void)
Jens Axboec40f6372020-06-25 15:39:59 -06001064{
Jens Axboe28cea78a2020-09-14 10:51:17 -06001065 struct files_struct *files = current->files;
Jens Axboec40f6372020-06-25 15:39:59 -06001066 struct mm_struct *mm = current->mm;
1067
1068 if (mm) {
1069 kthread_unuse_mm(mm);
1070 mmput(mm);
Jens Axboe4b70cf92020-11-02 10:39:05 -07001071 current->mm = NULL;
Jens Axboec40f6372020-06-25 15:39:59 -06001072 }
Jens Axboe28cea78a2020-09-14 10:51:17 -06001073 if (files) {
1074 struct nsproxy *nsproxy = current->nsproxy;
1075
1076 task_lock(current);
1077 current->files = NULL;
1078 current->nsproxy = NULL;
1079 task_unlock(current);
1080 put_files_struct(files);
1081 put_nsproxy(nsproxy);
1082 }
1083}
1084
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001085static int __io_sq_thread_acquire_files(struct io_ring_ctx *ctx)
Jens Axboe28cea78a2020-09-14 10:51:17 -06001086{
1087 if (!current->files) {
1088 struct files_struct *files;
1089 struct nsproxy *nsproxy;
1090
1091 task_lock(ctx->sqo_task);
1092 files = ctx->sqo_task->files;
1093 if (!files) {
1094 task_unlock(ctx->sqo_task);
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001095 return -EOWNERDEAD;
Jens Axboe28cea78a2020-09-14 10:51:17 -06001096 }
1097 atomic_inc(&files->count);
1098 get_nsproxy(ctx->sqo_task->nsproxy);
1099 nsproxy = ctx->sqo_task->nsproxy;
1100 task_unlock(ctx->sqo_task);
1101
1102 task_lock(current);
1103 current->files = files;
1104 current->nsproxy = nsproxy;
1105 task_unlock(current);
1106 }
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001107 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001108}
1109
1110static int __io_sq_thread_acquire_mm(struct io_ring_ctx *ctx)
1111{
Jens Axboe4b70cf92020-11-02 10:39:05 -07001112 struct mm_struct *mm;
1113
1114 if (current->mm)
1115 return 0;
1116
1117 /* Should never happen */
1118 if (unlikely(!(ctx->flags & IORING_SETUP_SQPOLL)))
1119 return -EFAULT;
1120
1121 task_lock(ctx->sqo_task);
1122 mm = ctx->sqo_task->mm;
1123 if (unlikely(!mm || !mmget_not_zero(mm)))
1124 mm = NULL;
1125 task_unlock(ctx->sqo_task);
1126
1127 if (mm) {
1128 kthread_use_mm(mm);
1129 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001130 }
1131
Jens Axboe4b70cf92020-11-02 10:39:05 -07001132 return -EFAULT;
Jens Axboec40f6372020-06-25 15:39:59 -06001133}
1134
Jens Axboe28cea78a2020-09-14 10:51:17 -06001135static int io_sq_thread_acquire_mm_files(struct io_ring_ctx *ctx,
1136 struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001137{
Jens Axboe28cea78a2020-09-14 10:51:17 -06001138 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001139 int ret;
Jens Axboe28cea78a2020-09-14 10:51:17 -06001140
1141 if (def->work_flags & IO_WQ_WORK_MM) {
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001142 ret = __io_sq_thread_acquire_mm(ctx);
Jens Axboe28cea78a2020-09-14 10:51:17 -06001143 if (unlikely(ret))
1144 return ret;
1145 }
1146
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001147 if (def->needs_file || (def->work_flags & IO_WQ_WORK_FILES)) {
1148 ret = __io_sq_thread_acquire_files(ctx);
1149 if (unlikely(ret))
1150 return ret;
1151 }
Jens Axboe28cea78a2020-09-14 10:51:17 -06001152
1153 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001154}
1155
Dennis Zhou91d8f512020-09-16 13:41:05 -07001156static void io_sq_thread_associate_blkcg(struct io_ring_ctx *ctx,
1157 struct cgroup_subsys_state **cur_css)
1158
1159{
1160#ifdef CONFIG_BLK_CGROUP
1161 /* puts the old one when swapping */
1162 if (*cur_css != ctx->sqo_blkcg_css) {
1163 kthread_associate_blkcg(ctx->sqo_blkcg_css);
1164 *cur_css = ctx->sqo_blkcg_css;
1165 }
1166#endif
1167}
1168
1169static void io_sq_thread_unassociate_blkcg(void)
1170{
1171#ifdef CONFIG_BLK_CGROUP
1172 kthread_associate_blkcg(NULL);
1173#endif
1174}
1175
Jens Axboec40f6372020-06-25 15:39:59 -06001176static inline void req_set_fail_links(struct io_kiocb *req)
1177{
1178 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1179 req->flags |= REQ_F_FAIL_LINK;
1180}
Jens Axboe4a38aed22020-05-14 17:21:15 -06001181
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001182/*
Jens Axboe1e6fa522020-10-15 08:46:24 -06001183 * None of these are dereferenced, they are simply used to check if any of
1184 * them have changed. If we're under current and check they are still the
1185 * same, we're fine to grab references to them for actual out-of-line use.
1186 */
1187static void io_init_identity(struct io_identity *id)
1188{
1189 id->files = current->files;
1190 id->mm = current->mm;
1191#ifdef CONFIG_BLK_CGROUP
1192 rcu_read_lock();
1193 id->blkcg_css = blkcg_css();
1194 rcu_read_unlock();
1195#endif
1196 id->creds = current_cred();
1197 id->nsproxy = current->nsproxy;
1198 id->fs = current->fs;
1199 id->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboe4ea33a92020-10-15 13:46:44 -06001200#ifdef CONFIG_AUDIT
1201 id->loginuid = current->loginuid;
1202 id->sessionid = current->sessionid;
1203#endif
Jens Axboe1e6fa522020-10-15 08:46:24 -06001204 refcount_set(&id->count, 1);
1205}
1206
Pavel Begunkovec99ca62020-10-18 10:17:38 +01001207static inline void __io_req_init_async(struct io_kiocb *req)
1208{
1209 memset(&req->work, 0, sizeof(req->work));
1210 req->flags |= REQ_F_WORK_INITIALIZED;
1211}
1212
Jens Axboe1e6fa522020-10-15 08:46:24 -06001213/*
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001214 * Note: must call io_req_init_async() for the first time you
1215 * touch any members of io_wq_work.
1216 */
1217static inline void io_req_init_async(struct io_kiocb *req)
1218{
Jens Axboe500a3732020-10-15 17:38:03 -06001219 struct io_uring_task *tctx = current->io_uring;
1220
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001221 if (req->flags & REQ_F_WORK_INITIALIZED)
1222 return;
1223
Pavel Begunkovec99ca62020-10-18 10:17:38 +01001224 __io_req_init_async(req);
Jens Axboe500a3732020-10-15 17:38:03 -06001225
1226 /* Grab a ref if this isn't our static identity */
1227 req->work.identity = tctx->identity;
1228 if (tctx->identity != &tctx->__identity)
1229 refcount_inc(&req->work.identity->count);
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001230}
1231
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03001232static inline bool io_async_submit(struct io_ring_ctx *ctx)
1233{
1234 return ctx->flags & IORING_SETUP_SQPOLL;
1235}
1236
Jens Axboe2b188cc2019-01-07 10:46:33 -07001237static void io_ring_ctx_ref_free(struct percpu_ref *ref)
1238{
1239 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1240
Jens Axboe0f158b42020-05-14 17:18:39 -06001241 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001242}
1243
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001244static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1245{
1246 return !req->timeout.off;
1247}
1248
Jens Axboe2b188cc2019-01-07 10:46:33 -07001249static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
1250{
1251 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001252 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001253
1254 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1255 if (!ctx)
1256 return NULL;
1257
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001258 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
1259 if (!ctx->fallback_req)
1260 goto err;
1261
Jens Axboe78076bb2019-12-04 19:56:40 -07001262 /*
1263 * Use 5 bits less than the max cq entries, that should give us around
1264 * 32 entries per hash list if totally full and uniformly spread.
1265 */
1266 hash_bits = ilog2(p->cq_entries);
1267 hash_bits -= 5;
1268 if (hash_bits <= 0)
1269 hash_bits = 1;
1270 ctx->cancel_hash_bits = hash_bits;
1271 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1272 GFP_KERNEL);
1273 if (!ctx->cancel_hash)
1274 goto err;
1275 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1276
Roman Gushchin21482892019-05-07 10:01:48 -07001277 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001278 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1279 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001280
1281 ctx->flags = p->flags;
Jens Axboe90554202020-09-03 12:12:41 -06001282 init_waitqueue_head(&ctx->sqo_sq_wait);
Jens Axboe69fb2132020-09-14 11:16:23 -06001283 INIT_LIST_HEAD(&ctx->sqd_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001284 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001285 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001286 init_completion(&ctx->ref_comp);
1287 init_completion(&ctx->sq_thread_comp);
Jens Axboe5a2e7452020-02-23 16:23:11 -07001288 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -07001289 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001290 mutex_init(&ctx->uring_lock);
1291 init_waitqueue_head(&ctx->wait);
1292 spin_lock_init(&ctx->completion_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03001293 INIT_LIST_HEAD(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001294 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001295 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -06001296 init_waitqueue_head(&ctx->inflight_wait);
1297 spin_lock_init(&ctx->inflight_lock);
1298 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe4a38aed22020-05-14 17:21:15 -06001299 INIT_DELAYED_WORK(&ctx->file_put_work, io_file_put_work);
1300 init_llist_head(&ctx->file_put_llist);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001301 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001302err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001303 if (ctx->fallback_req)
1304 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe78076bb2019-12-04 19:56:40 -07001305 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001306 kfree(ctx);
1307 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001308}
1309
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001310static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001311{
Jens Axboe2bc99302020-07-09 09:43:27 -06001312 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1313 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001314
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001315 return seq != ctx->cached_cq_tail
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001316 + READ_ONCE(ctx->cached_cq_overflow);
Jens Axboe2bc99302020-07-09 09:43:27 -06001317 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001318
Bob Liu9d858b22019-11-13 18:06:25 +08001319 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001320}
1321
Jens Axboede0617e2019-04-06 21:51:27 -06001322static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001323{
Hristo Venev75b28af2019-08-26 17:23:46 +00001324 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001325
Pavel Begunkov07910152020-01-17 03:52:46 +03001326 /* order cqe stores with ring update */
1327 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001328
Pavel Begunkov07910152020-01-17 03:52:46 +03001329 if (wq_has_sleeper(&ctx->cq_wait)) {
1330 wake_up_interruptible(&ctx->cq_wait);
1331 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001332 }
1333}
1334
Jens Axboe5c3462c2020-10-15 09:02:33 -06001335static void io_put_identity(struct io_uring_task *tctx, struct io_kiocb *req)
Jens Axboe1e6fa522020-10-15 08:46:24 -06001336{
Jens Axboe500a3732020-10-15 17:38:03 -06001337 if (req->work.identity == &tctx->__identity)
Jens Axboe1e6fa522020-10-15 08:46:24 -06001338 return;
1339 if (refcount_dec_and_test(&req->work.identity->count))
1340 kfree(req->work.identity);
1341}
1342
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001343static void io_req_clean_work(struct io_kiocb *req)
Jens Axboecccf0ee2020-01-27 16:34:48 -07001344{
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001345 if (!(req->flags & REQ_F_WORK_INITIALIZED))
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001346 return;
Jens Axboe51a4cc12020-08-10 10:55:56 -06001347
1348 req->flags &= ~REQ_F_WORK_INITIALIZED;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001349
Jens Axboedfead8a2020-10-14 10:12:37 -06001350 if (req->work.flags & IO_WQ_WORK_MM) {
Jens Axboe98447d62020-10-14 10:48:51 -06001351 mmdrop(req->work.identity->mm);
Jens Axboedfead8a2020-10-14 10:12:37 -06001352 req->work.flags &= ~IO_WQ_WORK_MM;
Jens Axboecccf0ee2020-01-27 16:34:48 -07001353 }
Dennis Zhou91d8f512020-09-16 13:41:05 -07001354#ifdef CONFIG_BLK_CGROUP
Jens Axboedfead8a2020-10-14 10:12:37 -06001355 if (req->work.flags & IO_WQ_WORK_BLKCG) {
Jens Axboe98447d62020-10-14 10:48:51 -06001356 css_put(req->work.identity->blkcg_css);
Jens Axboedfead8a2020-10-14 10:12:37 -06001357 req->work.flags &= ~IO_WQ_WORK_BLKCG;
Jens Axboecccf0ee2020-01-27 16:34:48 -07001358 }
Jens Axboedfead8a2020-10-14 10:12:37 -06001359#endif
1360 if (req->work.flags & IO_WQ_WORK_CREDS) {
Jens Axboe98447d62020-10-14 10:48:51 -06001361 put_cred(req->work.identity->creds);
Jens Axboedfead8a2020-10-14 10:12:37 -06001362 req->work.flags &= ~IO_WQ_WORK_CREDS;
1363 }
1364 if (req->work.flags & IO_WQ_WORK_FS) {
Jens Axboe98447d62020-10-14 10:48:51 -06001365 struct fs_struct *fs = req->work.identity->fs;
Jens Axboeff002b32020-02-07 16:05:21 -07001366
Jens Axboe98447d62020-10-14 10:48:51 -06001367 spin_lock(&req->work.identity->fs->lock);
Jens Axboeff002b32020-02-07 16:05:21 -07001368 if (--fs->users)
1369 fs = NULL;
Jens Axboe98447d62020-10-14 10:48:51 -06001370 spin_unlock(&req->work.identity->fs->lock);
Jens Axboeff002b32020-02-07 16:05:21 -07001371 if (fs)
1372 free_fs_struct(fs);
Jens Axboedfead8a2020-10-14 10:12:37 -06001373 req->work.flags &= ~IO_WQ_WORK_FS;
Jens Axboeff002b32020-02-07 16:05:21 -07001374 }
Jens Axboe51a4cc12020-08-10 10:55:56 -06001375
Jens Axboe5c3462c2020-10-15 09:02:33 -06001376 io_put_identity(req->task->io_uring, req);
Jens Axboe1e6fa522020-10-15 08:46:24 -06001377}
1378
1379/*
1380 * Create a private copy of io_identity, since some fields don't match
1381 * the current context.
1382 */
1383static bool io_identity_cow(struct io_kiocb *req)
1384{
Jens Axboe5c3462c2020-10-15 09:02:33 -06001385 struct io_uring_task *tctx = current->io_uring;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001386 const struct cred *creds = NULL;
1387 struct io_identity *id;
1388
1389 if (req->work.flags & IO_WQ_WORK_CREDS)
1390 creds = req->work.identity->creds;
1391
1392 id = kmemdup(req->work.identity, sizeof(*id), GFP_KERNEL);
1393 if (unlikely(!id)) {
1394 req->work.flags |= IO_WQ_WORK_CANCEL;
1395 return false;
1396 }
1397
1398 /*
1399 * We can safely just re-init the creds we copied Either the field
1400 * matches the current one, or we haven't grabbed it yet. The only
1401 * exception is ->creds, through registered personalities, so handle
1402 * that one separately.
1403 */
1404 io_init_identity(id);
1405 if (creds)
1406 req->work.identity->creds = creds;
1407
1408 /* add one for this request */
1409 refcount_inc(&id->count);
1410
Jens Axboecb8a8ae2020-11-03 12:19:07 -07001411 /* drop tctx and req identity references, if needed */
1412 if (tctx->identity != &tctx->__identity &&
1413 refcount_dec_and_test(&tctx->identity->count))
1414 kfree(tctx->identity);
1415 if (req->work.identity != &tctx->__identity &&
1416 refcount_dec_and_test(&req->work.identity->count))
Jens Axboe1e6fa522020-10-15 08:46:24 -06001417 kfree(req->work.identity);
1418
1419 req->work.identity = id;
Jens Axboe500a3732020-10-15 17:38:03 -06001420 tctx->identity = id;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001421 return true;
1422}
1423
1424static bool io_grab_identity(struct io_kiocb *req)
1425{
1426 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe5c3462c2020-10-15 09:02:33 -06001427 struct io_identity *id = req->work.identity;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001428 struct io_ring_ctx *ctx = req->ctx;
1429
Jens Axboe69228332020-10-20 14:28:41 -06001430 if (def->work_flags & IO_WQ_WORK_FSIZE) {
1431 if (id->fsize != rlimit(RLIMIT_FSIZE))
1432 return false;
1433 req->work.flags |= IO_WQ_WORK_FSIZE;
1434 }
Jens Axboe1e6fa522020-10-15 08:46:24 -06001435
1436 if (!(req->work.flags & IO_WQ_WORK_FILES) &&
1437 (def->work_flags & IO_WQ_WORK_FILES) &&
1438 !(req->flags & REQ_F_NO_FILE_TABLE)) {
1439 if (id->files != current->files ||
1440 id->nsproxy != current->nsproxy)
1441 return false;
1442 atomic_inc(&id->files->count);
1443 get_nsproxy(id->nsproxy);
1444 req->flags |= REQ_F_INFLIGHT;
1445
1446 spin_lock_irq(&ctx->inflight_lock);
1447 list_add(&req->inflight_entry, &ctx->inflight_list);
1448 spin_unlock_irq(&ctx->inflight_lock);
1449 req->work.flags |= IO_WQ_WORK_FILES;
1450 }
1451#ifdef CONFIG_BLK_CGROUP
1452 if (!(req->work.flags & IO_WQ_WORK_BLKCG) &&
1453 (def->work_flags & IO_WQ_WORK_BLKCG)) {
1454 rcu_read_lock();
1455 if (id->blkcg_css != blkcg_css()) {
1456 rcu_read_unlock();
1457 return false;
1458 }
1459 /*
1460 * This should be rare, either the cgroup is dying or the task
1461 * is moving cgroups. Just punt to root for the handful of ios.
1462 */
1463 if (css_tryget_online(id->blkcg_css))
1464 req->work.flags |= IO_WQ_WORK_BLKCG;
1465 rcu_read_unlock();
1466 }
1467#endif
1468 if (!(req->work.flags & IO_WQ_WORK_CREDS)) {
1469 if (id->creds != current_cred())
1470 return false;
1471 get_cred(id->creds);
1472 req->work.flags |= IO_WQ_WORK_CREDS;
1473 }
Jens Axboe4ea33a92020-10-15 13:46:44 -06001474#ifdef CONFIG_AUDIT
1475 if (!uid_eq(current->loginuid, id->loginuid) ||
1476 current->sessionid != id->sessionid)
1477 return false;
1478#endif
Jens Axboe1e6fa522020-10-15 08:46:24 -06001479 if (!(req->work.flags & IO_WQ_WORK_FS) &&
1480 (def->work_flags & IO_WQ_WORK_FS)) {
1481 if (current->fs != id->fs)
1482 return false;
1483 spin_lock(&id->fs->lock);
1484 if (!id->fs->in_exec) {
1485 id->fs->users++;
1486 req->work.flags |= IO_WQ_WORK_FS;
1487 } else {
1488 req->work.flags |= IO_WQ_WORK_CANCEL;
1489 }
1490 spin_unlock(&current->fs->lock);
1491 }
1492
1493 return true;
Jens Axboe561fb042019-10-24 07:25:42 -06001494}
1495
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001496static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001497{
Jens Axboed3656342019-12-18 09:50:26 -07001498 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov23329512020-10-10 18:34:06 +01001499 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5c3462c2020-10-15 09:02:33 -06001500 struct io_identity *id;
Jens Axboe54a91f32019-09-10 09:15:04 -06001501
Pavel Begunkov16d59802020-07-12 16:16:47 +03001502 io_req_init_async(req);
Jens Axboe5c3462c2020-10-15 09:02:33 -06001503 id = req->work.identity;
Pavel Begunkov16d59802020-07-12 16:16:47 +03001504
Pavel Begunkovfeaadc42020-10-22 16:47:16 +01001505 if (req->flags & REQ_F_FORCE_ASYNC)
1506 req->work.flags |= IO_WQ_WORK_CONCURRENT;
1507
Jens Axboed3656342019-12-18 09:50:26 -07001508 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov23329512020-10-10 18:34:06 +01001509 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001510 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001511 } else {
1512 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001513 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001514 }
Pavel Begunkov23329512020-10-10 18:34:06 +01001515
Jens Axboe1e6fa522020-10-15 08:46:24 -06001516 /* ->mm can never change on us */
Jens Axboedfead8a2020-10-14 10:12:37 -06001517 if (!(req->work.flags & IO_WQ_WORK_MM) &&
1518 (def->work_flags & IO_WQ_WORK_MM)) {
Jens Axboe1e6fa522020-10-15 08:46:24 -06001519 mmgrab(id->mm);
Jens Axboedfead8a2020-10-14 10:12:37 -06001520 req->work.flags |= IO_WQ_WORK_MM;
Pavel Begunkov23329512020-10-10 18:34:06 +01001521 }
Jens Axboe1e6fa522020-10-15 08:46:24 -06001522
1523 /* if we fail grabbing identity, we must COW, regrab, and retry */
1524 if (io_grab_identity(req))
1525 return;
1526
1527 if (!io_identity_cow(req))
1528 return;
1529
1530 /* can't fail at this point */
1531 if (!io_grab_identity(req))
1532 WARN_ON(1);
Jens Axboe561fb042019-10-24 07:25:42 -06001533}
1534
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001535static void io_prep_async_link(struct io_kiocb *req)
1536{
1537 struct io_kiocb *cur;
1538
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001539 io_for_each_link(cur, req)
1540 io_prep_async_work(cur);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001541}
1542
Jens Axboe7271ef32020-08-10 09:55:22 -06001543static struct io_kiocb *__io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001544{
Jackie Liua197f662019-11-08 08:09:12 -07001545 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001546 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001547
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001548 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1549 &req->work, req->flags);
1550 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001551 return link;
Jens Axboe18d9be12019-09-10 09:13:05 -06001552}
1553
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001554static void io_queue_async_work(struct io_kiocb *req)
1555{
Jens Axboe7271ef32020-08-10 09:55:22 -06001556 struct io_kiocb *link;
1557
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001558 /* init ->work of the whole link before punting */
1559 io_prep_async_link(req);
Jens Axboe7271ef32020-08-10 09:55:22 -06001560 link = __io_queue_async_work(req);
1561
1562 if (link)
1563 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001564}
1565
Jens Axboe5262f562019-09-17 12:26:57 -06001566static void io_kill_timeout(struct io_kiocb *req)
1567{
Jens Axboee8c2bc12020-08-15 18:44:09 -07001568 struct io_timeout_data *io = req->async_data;
Jens Axboe5262f562019-09-17 12:26:57 -06001569 int ret;
1570
Jens Axboee8c2bc12020-08-15 18:44:09 -07001571 ret = hrtimer_try_to_cancel(&io->timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001572 if (ret != -1) {
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001573 atomic_set(&req->ctx->cq_timeouts,
1574 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001575 list_del_init(&req->timeout.list);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001576 io_cqring_fill_event(req, 0);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001577 io_put_req_deferred(req, 1);
Jens Axboe5262f562019-09-17 12:26:57 -06001578 }
1579}
1580
Jens Axboe76e1b642020-09-26 15:05:03 -06001581/*
1582 * Returns true if we found and killed one or more timeouts
1583 */
Pavel Begunkov6b819282020-11-06 13:00:25 +00001584static bool io_kill_timeouts(struct io_ring_ctx *ctx, struct task_struct *tsk,
1585 struct files_struct *files)
Jens Axboe5262f562019-09-17 12:26:57 -06001586{
1587 struct io_kiocb *req, *tmp;
Jens Axboe76e1b642020-09-26 15:05:03 -06001588 int canceled = 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001589
1590 spin_lock_irq(&ctx->completion_lock);
Jens Axboef3606e32020-09-22 08:18:24 -06001591 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Pavel Begunkov6b819282020-11-06 13:00:25 +00001592 if (io_match_task(req, tsk, files)) {
Jens Axboef3606e32020-09-22 08:18:24 -06001593 io_kill_timeout(req);
Jens Axboe76e1b642020-09-26 15:05:03 -06001594 canceled++;
1595 }
Jens Axboef3606e32020-09-22 08:18:24 -06001596 }
Jens Axboe5262f562019-09-17 12:26:57 -06001597 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe76e1b642020-09-26 15:05:03 -06001598 return canceled != 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001599}
1600
Pavel Begunkov04518942020-05-26 20:34:05 +03001601static void __io_queue_deferred(struct io_ring_ctx *ctx)
1602{
1603 do {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001604 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1605 struct io_defer_entry, list);
Jens Axboe7271ef32020-08-10 09:55:22 -06001606 struct io_kiocb *link;
Pavel Begunkov04518942020-05-26 20:34:05 +03001607
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001608 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001609 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001610 list_del_init(&de->list);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001611 /* punt-init is done before queueing for defer */
Jens Axboe7271ef32020-08-10 09:55:22 -06001612 link = __io_queue_async_work(de->req);
1613 if (link) {
1614 __io_queue_linked_timeout(link);
1615 /* drop submission reference */
Pavel Begunkov216578e2020-10-13 09:44:00 +01001616 io_put_req_deferred(link, 1);
Jens Axboe7271ef32020-08-10 09:55:22 -06001617 }
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001618 kfree(de);
Pavel Begunkov04518942020-05-26 20:34:05 +03001619 } while (!list_empty(&ctx->defer_list));
1620}
1621
Pavel Begunkov360428f2020-05-30 14:54:17 +03001622static void io_flush_timeouts(struct io_ring_ctx *ctx)
1623{
1624 while (!list_empty(&ctx->timeout_list)) {
1625 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001626 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001627
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001628 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001629 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001630 if (req->timeout.target_seq != ctx->cached_cq_tail
1631 - atomic_read(&ctx->cq_timeouts))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001632 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001633
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001634 list_del_init(&req->timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001635 io_kill_timeout(req);
1636 }
1637}
1638
Jens Axboede0617e2019-04-06 21:51:27 -06001639static void io_commit_cqring(struct io_ring_ctx *ctx)
1640{
Pavel Begunkov360428f2020-05-30 14:54:17 +03001641 io_flush_timeouts(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001642 __io_commit_cqring(ctx);
1643
Pavel Begunkov04518942020-05-26 20:34:05 +03001644 if (unlikely(!list_empty(&ctx->defer_list)))
1645 __io_queue_deferred(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001646}
1647
Jens Axboe90554202020-09-03 12:12:41 -06001648static inline bool io_sqring_full(struct io_ring_ctx *ctx)
1649{
1650 struct io_rings *r = ctx->rings;
1651
1652 return READ_ONCE(r->sq.tail) - ctx->cached_sq_head == r->sq_ring_entries;
1653}
1654
Jens Axboe2b188cc2019-01-07 10:46:33 -07001655static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1656{
Hristo Venev75b28af2019-08-26 17:23:46 +00001657 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001658 unsigned tail;
1659
1660 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001661 /*
1662 * writes to the cq entry need to come after reading head; the
1663 * control dependency is enough as we're using WRITE_ONCE to
1664 * fill the cq entry
1665 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001666 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001667 return NULL;
1668
1669 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001670 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001671}
1672
Jens Axboef2842ab2020-01-08 11:04:00 -07001673static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1674{
Jens Axboef0b493e2020-02-01 21:30:11 -07001675 if (!ctx->cq_ev_fd)
1676 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001677 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1678 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001679 if (!ctx->eventfd_async)
1680 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001681 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001682}
1683
Jens Axboeb41e9852020-02-17 09:52:41 -07001684static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001685{
1686 if (waitqueue_active(&ctx->wait))
1687 wake_up(&ctx->wait);
Jens Axboe534ca6d2020-09-02 13:52:19 -06001688 if (ctx->sq_data && waitqueue_active(&ctx->sq_data->wait))
1689 wake_up(&ctx->sq_data->wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001690 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001691 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001692}
1693
Pavel Begunkov46930142020-07-30 18:43:49 +03001694static void io_cqring_mark_overflow(struct io_ring_ctx *ctx)
1695{
1696 if (list_empty(&ctx->cq_overflow_list)) {
1697 clear_bit(0, &ctx->sq_check_overflow);
1698 clear_bit(0, &ctx->cq_check_overflow);
1699 ctx->rings->sq_flags &= ~IORING_SQ_CQ_OVERFLOW;
1700 }
1701}
1702
Jens Axboec4a2ed72019-11-21 21:01:26 -07001703/* Returns true if there are no backlogged entries after the flush */
Jens Axboee6c8aa92020-09-28 13:10:13 -06001704static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force,
1705 struct task_struct *tsk,
1706 struct files_struct *files)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001707{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001708 struct io_rings *rings = ctx->rings;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001709 struct io_kiocb *req, *tmp;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001710 struct io_uring_cqe *cqe;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001711 unsigned long flags;
1712 LIST_HEAD(list);
1713
1714 if (!force) {
1715 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001716 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001717 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1718 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001719 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001720 }
1721
1722 spin_lock_irqsave(&ctx->completion_lock, flags);
1723
1724 /* if force is set, the ring is going away. always drop after that */
1725 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001726 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001727
Jens Axboec4a2ed72019-11-21 21:01:26 -07001728 cqe = NULL;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001729 list_for_each_entry_safe(req, tmp, &ctx->cq_overflow_list, compl.list) {
Pavel Begunkov08d23632020-11-06 13:00:22 +00001730 if (!io_match_task(req, tsk, files))
Jens Axboee6c8aa92020-09-28 13:10:13 -06001731 continue;
1732
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001733 cqe = io_get_cqring(ctx);
1734 if (!cqe && !force)
1735 break;
1736
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001737 list_move(&req->compl.list, &list);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001738 if (cqe) {
1739 WRITE_ONCE(cqe->user_data, req->user_data);
1740 WRITE_ONCE(cqe->res, req->result);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001741 WRITE_ONCE(cqe->flags, req->compl.cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001742 } else {
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001743 ctx->cached_cq_overflow++;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001744 WRITE_ONCE(ctx->rings->cq_overflow,
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001745 ctx->cached_cq_overflow);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001746 }
1747 }
1748
1749 io_commit_cqring(ctx);
Pavel Begunkov46930142020-07-30 18:43:49 +03001750 io_cqring_mark_overflow(ctx);
1751
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001752 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1753 io_cqring_ev_posted(ctx);
1754
1755 while (!list_empty(&list)) {
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001756 req = list_first_entry(&list, struct io_kiocb, compl.list);
1757 list_del(&req->compl.list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001758 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001759 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001760
1761 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001762}
1763
Jens Axboebcda7ba2020-02-23 16:42:51 -07001764static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001765{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001766 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001767 struct io_uring_cqe *cqe;
1768
Jens Axboe78e19bb2019-11-06 15:21:34 -07001769 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001770
Jens Axboe2b188cc2019-01-07 10:46:33 -07001771 /*
1772 * If we can't get a cq entry, userspace overflowed the
1773 * submission (by quite a lot). Increment the overflow count in
1774 * the ring.
1775 */
1776 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001777 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001778 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001779 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001780 WRITE_ONCE(cqe->flags, cflags);
Jens Axboefdaf0832020-10-30 09:37:30 -06001781 } else if (ctx->cq_overflow_flushed ||
1782 atomic_read(&req->task->io_uring->in_idle)) {
Jens Axboe0f212202020-09-13 13:09:39 -06001783 /*
1784 * If we're in ring overflow flush mode, or in task cancel mode,
1785 * then we cannot store the request for later flushing, we need
1786 * to drop it on the floor.
1787 */
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001788 ctx->cached_cq_overflow++;
1789 WRITE_ONCE(ctx->rings->cq_overflow, ctx->cached_cq_overflow);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001790 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001791 if (list_empty(&ctx->cq_overflow_list)) {
1792 set_bit(0, &ctx->sq_check_overflow);
1793 set_bit(0, &ctx->cq_check_overflow);
Xiaoguang Wang6d5f9042020-07-09 09:15:29 +08001794 ctx->rings->sq_flags |= IORING_SQ_CQ_OVERFLOW;
Jens Axboead3eb2c2019-12-18 17:12:20 -07001795 }
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001796 io_clean_op(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001797 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001798 req->compl.cflags = cflags;
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001799 refcount_inc(&req->refs);
1800 list_add_tail(&req->compl.list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001801 }
1802}
1803
Jens Axboebcda7ba2020-02-23 16:42:51 -07001804static void io_cqring_fill_event(struct io_kiocb *req, long res)
1805{
1806 __io_cqring_fill_event(req, res, 0);
1807}
1808
Jens Axboee1e16092020-06-22 09:17:17 -06001809static void io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001810{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001811 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001812 unsigned long flags;
1813
1814 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001815 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001816 io_commit_cqring(ctx);
1817 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1818
Jens Axboe8c838782019-03-12 15:48:16 -06001819 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001820}
1821
Jens Axboe229a7b62020-06-22 10:13:11 -06001822static void io_submit_flush_completions(struct io_comp_state *cs)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001823{
Jens Axboe229a7b62020-06-22 10:13:11 -06001824 struct io_ring_ctx *ctx = cs->ctx;
1825
1826 spin_lock_irq(&ctx->completion_lock);
1827 while (!list_empty(&cs->list)) {
1828 struct io_kiocb *req;
1829
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001830 req = list_first_entry(&cs->list, struct io_kiocb, compl.list);
1831 list_del(&req->compl.list);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001832 __io_cqring_fill_event(req, req->result, req->compl.cflags);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001833
1834 /*
1835 * io_free_req() doesn't care about completion_lock unless one
1836 * of these flags is set. REQ_F_WORK_INITIALIZED is in the list
1837 * because of a potential deadlock with req->work.fs->lock
1838 */
1839 if (req->flags & (REQ_F_FAIL_LINK|REQ_F_LINK_TIMEOUT
1840 |REQ_F_WORK_INITIALIZED)) {
Jens Axboe229a7b62020-06-22 10:13:11 -06001841 spin_unlock_irq(&ctx->completion_lock);
1842 io_put_req(req);
1843 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001844 } else {
1845 io_put_req(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06001846 }
1847 }
1848 io_commit_cqring(ctx);
1849 spin_unlock_irq(&ctx->completion_lock);
1850
1851 io_cqring_ev_posted(ctx);
1852 cs->nr = 0;
1853}
1854
1855static void __io_req_complete(struct io_kiocb *req, long res, unsigned cflags,
1856 struct io_comp_state *cs)
1857{
1858 if (!cs) {
1859 io_cqring_add_event(req, res, cflags);
1860 io_put_req(req);
1861 } else {
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001862 io_clean_op(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06001863 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001864 req->compl.cflags = cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001865 list_add_tail(&req->compl.list, &cs->list);
Jens Axboe229a7b62020-06-22 10:13:11 -06001866 if (++cs->nr >= 32)
1867 io_submit_flush_completions(cs);
1868 }
Jens Axboee1e16092020-06-22 09:17:17 -06001869}
1870
1871static void io_req_complete(struct io_kiocb *req, long res)
1872{
Jens Axboe229a7b62020-06-22 10:13:11 -06001873 __io_req_complete(req, res, 0, NULL);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001874}
1875
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001876static inline bool io_is_fallback_req(struct io_kiocb *req)
1877{
1878 return req == (struct io_kiocb *)
1879 ((unsigned long) req->ctx->fallback_req & ~1UL);
1880}
1881
1882static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1883{
1884 struct io_kiocb *req;
1885
1886 req = ctx->fallback_req;
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001887 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001888 return req;
1889
1890 return NULL;
1891}
1892
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001893static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1894 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001895{
Pavel Begunkovf6b6c7d2020-06-21 13:09:53 +03001896 if (!state->free_reqs) {
Pavel Begunkov291b2822020-09-30 22:57:01 +03001897 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2579f912019-01-09 09:10:43 -07001898 size_t sz;
1899 int ret;
1900
1901 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001902 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1903
1904 /*
1905 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1906 * retry single alloc to be on the safe side.
1907 */
1908 if (unlikely(ret <= 0)) {
1909 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1910 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001911 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001912 ret = 1;
1913 }
Pavel Begunkov291b2822020-09-30 22:57:01 +03001914 state->free_reqs = ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001915 }
1916
Pavel Begunkov291b2822020-09-30 22:57:01 +03001917 state->free_reqs--;
1918 return state->reqs[state->free_reqs];
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001919fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001920 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001921}
1922
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001923static inline void io_put_file(struct io_kiocb *req, struct file *file,
1924 bool fixed)
1925{
1926 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001927 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001928 else
1929 fput(file);
1930}
1931
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001932static void io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001933{
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001934 io_clean_op(req);
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001935
Jens Axboee8c2bc12020-08-15 18:44:09 -07001936 if (req->async_data)
1937 kfree(req->async_data);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001938 if (req->file)
1939 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboefcb323c2019-10-24 12:39:47 -06001940
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001941 io_req_clean_work(req);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001942}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001943
Pavel Begunkov216578e2020-10-13 09:44:00 +01001944static void __io_free_req(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03001945{
Jens Axboe0f212202020-09-13 13:09:39 -06001946 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe51a4cc12020-08-10 10:55:56 -06001947 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001948
Pavel Begunkov216578e2020-10-13 09:44:00 +01001949 io_dismantle_req(req);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001950
Jens Axboed8a6df12020-10-15 16:24:45 -06001951 percpu_counter_dec(&tctx->inflight);
Jens Axboefdaf0832020-10-30 09:37:30 -06001952 if (atomic_read(&tctx->in_idle))
Jens Axboe0f212202020-09-13 13:09:39 -06001953 wake_up(&tctx->wait);
Jens Axboee3bc8e92020-09-24 08:45:57 -06001954 put_task_struct(req->task);
1955
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001956 if (likely(!io_is_fallback_req(req)))
1957 kmem_cache_free(req_cachep, req);
1958 else
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001959 clear_bit_unlock(0, (unsigned long *) &ctx->fallback_req);
1960 percpu_ref_put(&ctx->refs);
Jens Axboee65ef562019-03-12 10:16:44 -06001961}
1962
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001963static inline void io_remove_next_linked(struct io_kiocb *req)
1964{
1965 struct io_kiocb *nxt = req->link;
1966
1967 req->link = nxt->link;
1968 nxt->link = NULL;
1969}
1970
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001971static void io_kill_linked_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001972{
Jackie Liua197f662019-11-08 08:09:12 -07001973 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001974 struct io_kiocb *link;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001975 bool cancelled = false;
1976 unsigned long flags;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001977
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001978 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001979 link = req->link;
1980
Pavel Begunkov900fad42020-10-19 16:39:16 +01001981 /*
1982 * Can happen if a linked timeout fired and link had been like
1983 * req -> link t-out -> link t-out [-> ...]
1984 */
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001985 if (link && (link->flags & REQ_F_LTIMEOUT_ACTIVE)) {
1986 struct io_timeout_data *io = link->async_data;
1987 int ret;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001988
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001989 io_remove_next_linked(req);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00001990 link->timeout.head = NULL;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001991 ret = hrtimer_try_to_cancel(&io->timer);
1992 if (ret != -1) {
1993 io_cqring_fill_event(link, -ECANCELED);
1994 io_commit_cqring(ctx);
1995 cancelled = true;
1996 }
1997 }
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001998 req->flags &= ~REQ_F_LINK_TIMEOUT;
Pavel Begunkov216578e2020-10-13 09:44:00 +01001999 spin_unlock_irqrestore(&ctx->completion_lock, flags);
Jens Axboeab0b6452020-06-30 08:43:15 -06002000
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002001 if (cancelled) {
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002002 io_cqring_ev_posted(ctx);
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002003 io_put_req(link);
2004 }
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002005}
2006
Jens Axboe4d7dd462019-11-20 13:03:52 -07002007
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002008static void io_fail_links(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002009{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002010 struct io_kiocb *link, *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07002011 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002012 unsigned long flags;
Jens Axboe9e645e112019-05-10 16:07:28 -06002013
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002014 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002015 link = req->link;
2016 req->link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06002017
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002018 while (link) {
2019 nxt = link->link;
2020 link->link = NULL;
2021
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002022 trace_io_uring_fail_link(req, link);
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002023 io_cqring_fill_event(link, -ECANCELED);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002024
2025 /*
2026 * It's ok to free under spinlock as they're not linked anymore,
2027 * but avoid REQ_F_WORK_INITIALIZED because it may deadlock on
2028 * work.fs->lock.
2029 */
2030 if (link->flags & REQ_F_WORK_INITIALIZED)
2031 io_put_req_deferred(link, 2);
2032 else
2033 io_double_put_req(link);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002034 link = nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06002035 }
Jens Axboe2665abf2019-11-05 12:40:47 -07002036 io_commit_cqring(ctx);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002037 spin_unlock_irqrestore(&ctx->completion_lock, flags);
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002038
Jens Axboe2665abf2019-11-05 12:40:47 -07002039 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06002040}
2041
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002042static struct io_kiocb *__io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002043{
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002044 if (req->flags & REQ_F_LINK_TIMEOUT)
2045 io_kill_linked_timeout(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07002046
Jens Axboe9e645e112019-05-10 16:07:28 -06002047 /*
2048 * If LINK is set, we have dependent requests in this chain. If we
2049 * didn't fail this request, queue the first one up, moving any other
2050 * dependencies to the next request. In case of failure, fail the rest
2051 * of the chain.
2052 */
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002053 if (likely(!(req->flags & REQ_F_FAIL_LINK))) {
2054 struct io_kiocb *nxt = req->link;
2055
2056 req->link = NULL;
2057 return nxt;
2058 }
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002059 io_fail_links(req);
2060 return NULL;
Jens Axboe4d7dd462019-11-20 13:03:52 -07002061}
Jens Axboe2665abf2019-11-05 12:40:47 -07002062
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002063static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002064{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002065 if (likely(!(req->link) && !(req->flags & REQ_F_LINK_TIMEOUT)))
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002066 return NULL;
2067 return __io_req_find_next(req);
2068}
2069
Jens Axboe87c43112020-09-30 21:00:14 -06002070static int io_req_task_work_add(struct io_kiocb *req, bool twa_signal_ok)
Jens Axboec2c4c832020-07-01 15:37:11 -06002071{
2072 struct task_struct *tsk = req->task;
2073 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe91989c72020-10-16 09:02:26 -06002074 enum task_work_notify_mode notify;
2075 int ret;
Jens Axboec2c4c832020-07-01 15:37:11 -06002076
Jens Axboe6200b0a2020-09-13 14:38:30 -06002077 if (tsk->flags & PF_EXITING)
2078 return -ESRCH;
2079
Jens Axboec2c4c832020-07-01 15:37:11 -06002080 /*
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06002081 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
2082 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
2083 * processing task_work. There's no reliable way to tell if TWA_RESUME
2084 * will do the job.
Jens Axboec2c4c832020-07-01 15:37:11 -06002085 */
Jens Axboe91989c72020-10-16 09:02:26 -06002086 notify = TWA_NONE;
Jens Axboefd7d6de2020-08-23 11:00:37 -06002087 if (!(ctx->flags & IORING_SETUP_SQPOLL) && twa_signal_ok)
Jens Axboec2c4c832020-07-01 15:37:11 -06002088 notify = TWA_SIGNAL;
2089
Jens Axboe87c43112020-09-30 21:00:14 -06002090 ret = task_work_add(tsk, &req->task_work, notify);
Jens Axboec2c4c832020-07-01 15:37:11 -06002091 if (!ret)
2092 wake_up_process(tsk);
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06002093
Jens Axboec2c4c832020-07-01 15:37:11 -06002094 return ret;
2095}
2096
Jens Axboec40f6372020-06-25 15:39:59 -06002097static void __io_req_task_cancel(struct io_kiocb *req, int error)
2098{
2099 struct io_ring_ctx *ctx = req->ctx;
2100
2101 spin_lock_irq(&ctx->completion_lock);
2102 io_cqring_fill_event(req, error);
2103 io_commit_cqring(ctx);
2104 spin_unlock_irq(&ctx->completion_lock);
2105
2106 io_cqring_ev_posted(ctx);
2107 req_set_fail_links(req);
2108 io_double_put_req(req);
2109}
2110
2111static void io_req_task_cancel(struct callback_head *cb)
2112{
2113 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002114 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002115
2116 __io_req_task_cancel(req, -ECANCELED);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002117 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002118}
2119
2120static void __io_req_task_submit(struct io_kiocb *req)
2121{
2122 struct io_ring_ctx *ctx = req->ctx;
2123
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00002124 if (!__io_sq_thread_acquire_mm(ctx) &&
2125 !__io_sq_thread_acquire_files(ctx)) {
Jens Axboec40f6372020-06-25 15:39:59 -06002126 mutex_lock(&ctx->uring_lock);
Pavel Begunkovc1379e22020-09-30 22:57:56 +03002127 __io_queue_sqe(req, NULL);
Jens Axboec40f6372020-06-25 15:39:59 -06002128 mutex_unlock(&ctx->uring_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07002129 } else {
Jens Axboec40f6372020-06-25 15:39:59 -06002130 __io_req_task_cancel(req, -EFAULT);
Jens Axboe2665abf2019-11-05 12:40:47 -07002131 }
Jens Axboe9e645e112019-05-10 16:07:28 -06002132}
2133
Jens Axboec40f6372020-06-25 15:39:59 -06002134static void io_req_task_submit(struct callback_head *cb)
2135{
2136 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06002137 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002138
2139 __io_req_task_submit(req);
Jens Axboe6d816e02020-08-11 08:04:14 -06002140 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002141}
2142
2143static void io_req_task_queue(struct io_kiocb *req)
2144{
Jens Axboec40f6372020-06-25 15:39:59 -06002145 int ret;
2146
2147 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06002148 percpu_ref_get(&req->ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002149
Jens Axboe87c43112020-09-30 21:00:14 -06002150 ret = io_req_task_work_add(req, true);
Jens Axboec40f6372020-06-25 15:39:59 -06002151 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06002152 struct task_struct *tsk;
2153
Jens Axboec40f6372020-06-25 15:39:59 -06002154 init_task_work(&req->task_work, io_req_task_cancel);
2155 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06002156 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboec2c4c832020-07-01 15:37:11 -06002157 wake_up_process(tsk);
Jens Axboec40f6372020-06-25 15:39:59 -06002158 }
Jens Axboec40f6372020-06-25 15:39:59 -06002159}
2160
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002161static inline void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08002162{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002163 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03002164
Pavel Begunkov906a8c32020-06-27 14:04:55 +03002165 if (nxt)
2166 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08002167}
2168
Jens Axboe9e645e112019-05-10 16:07:28 -06002169static void io_free_req(struct io_kiocb *req)
2170{
Pavel Begunkovc3524382020-06-28 12:52:32 +03002171 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06002172 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002173}
2174
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002175struct req_batch {
2176 void *reqs[IO_IOPOLL_BATCH];
2177 int to_free;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002178
2179 struct task_struct *task;
2180 int task_refs;
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002181};
2182
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002183static inline void io_init_req_batch(struct req_batch *rb)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002184{
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002185 rb->to_free = 0;
2186 rb->task_refs = 0;
2187 rb->task = NULL;
2188}
Pavel Begunkov8766dd52020-03-14 00:31:04 +03002189
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002190static void __io_req_free_batch_flush(struct io_ring_ctx *ctx,
2191 struct req_batch *rb)
2192{
2193 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
2194 percpu_ref_put_many(&ctx->refs, rb->to_free);
2195 rb->to_free = 0;
2196}
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002197
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002198static void io_req_free_batch_finish(struct io_ring_ctx *ctx,
2199 struct req_batch *rb)
2200{
2201 if (rb->to_free)
2202 __io_req_free_batch_flush(ctx, rb);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002203 if (rb->task) {
Jens Axboed8a6df12020-10-15 16:24:45 -06002204 struct io_uring_task *tctx = rb->task->io_uring;
2205
2206 percpu_counter_sub(&tctx->inflight, rb->task_refs);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002207 put_task_struct_many(rb->task, rb->task_refs);
2208 rb->task = NULL;
2209 }
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002210}
2211
2212static void io_req_free_batch(struct req_batch *rb, struct io_kiocb *req)
2213{
2214 if (unlikely(io_is_fallback_req(req))) {
2215 io_free_req(req);
2216 return;
2217 }
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002218 io_queue_next(req);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002219
Jens Axboee3bc8e92020-09-24 08:45:57 -06002220 if (req->task != rb->task) {
Jens Axboe0f212202020-09-13 13:09:39 -06002221 if (rb->task) {
Jens Axboed8a6df12020-10-15 16:24:45 -06002222 struct io_uring_task *tctx = rb->task->io_uring;
2223
2224 percpu_counter_sub(&tctx->inflight, rb->task_refs);
Jens Axboee3bc8e92020-09-24 08:45:57 -06002225 put_task_struct_many(rb->task, rb->task_refs);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002226 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06002227 rb->task = req->task;
2228 rb->task_refs = 0;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002229 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06002230 rb->task_refs++;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002231
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01002232 io_dismantle_req(req);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002233 rb->reqs[rb->to_free++] = req;
2234 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
2235 __io_req_free_batch_flush(req->ctx, rb);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002236}
2237
Jens Axboeba816ad2019-09-28 11:36:45 -06002238/*
2239 * Drop reference to request, return next in chain (if there is one) if this
2240 * was the last reference to this request.
2241 */
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002242static struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06002243{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002244 struct io_kiocb *nxt = NULL;
2245
Jens Axboe2a44f462020-02-25 13:25:41 -07002246 if (refcount_dec_and_test(&req->refs)) {
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002247 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07002248 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07002249 }
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002250 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002251}
2252
Jens Axboe2b188cc2019-01-07 10:46:33 -07002253static void io_put_req(struct io_kiocb *req)
2254{
Jens Axboedef596e2019-01-09 08:59:42 -07002255 if (refcount_dec_and_test(&req->refs))
2256 io_free_req(req);
2257}
2258
Pavel Begunkov216578e2020-10-13 09:44:00 +01002259static void io_put_req_deferred_cb(struct callback_head *cb)
2260{
2261 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
2262
2263 io_free_req(req);
2264}
2265
2266static void io_free_req_deferred(struct io_kiocb *req)
2267{
2268 int ret;
2269
2270 init_task_work(&req->task_work, io_put_req_deferred_cb);
2271 ret = io_req_task_work_add(req, true);
2272 if (unlikely(ret)) {
2273 struct task_struct *tsk;
2274
2275 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06002276 task_work_add(tsk, &req->task_work, TWA_NONE);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002277 wake_up_process(tsk);
2278 }
2279}
2280
2281static inline void io_put_req_deferred(struct io_kiocb *req, int refs)
2282{
2283 if (refcount_sub_and_test(refs, &req->refs))
2284 io_free_req_deferred(req);
2285}
2286
Pavel Begunkovf4db7182020-06-25 18:20:54 +03002287static struct io_wq_work *io_steal_work(struct io_kiocb *req)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002288{
Pavel Begunkov6df1db62020-07-03 22:15:06 +03002289 struct io_kiocb *nxt;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002290
Pavel Begunkovf4db7182020-06-25 18:20:54 +03002291 /*
2292 * A ref is owned by io-wq in which context we're. So, if that's the
2293 * last one, it's safe to steal next work. False negatives are Ok,
2294 * it just will be re-punted async in io_put_work()
2295 */
2296 if (refcount_read(&req->refs) != 1)
2297 return NULL;
2298
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002299 nxt = io_req_find_next(req);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03002300 return nxt ? &nxt->work : NULL;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002301}
2302
Jens Axboe978db572019-11-14 22:39:04 -07002303static void io_double_put_req(struct io_kiocb *req)
2304{
2305 /* drop both submit and complete references */
2306 if (refcount_sub_and_test(2, &req->refs))
2307 io_free_req(req);
2308}
2309
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002310static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06002311{
Jens Axboe84f97dc2019-11-06 11:27:53 -07002312 struct io_rings *rings = ctx->rings;
2313
Jens Axboead3eb2c2019-12-18 17:12:20 -07002314 if (test_bit(0, &ctx->cq_check_overflow)) {
2315 /*
2316 * noflush == true is from the waitqueue handler, just ensure
2317 * we wake up the task, and the next invocation will flush the
2318 * entries. We cannot safely to it from here.
2319 */
2320 if (noflush && !list_empty(&ctx->cq_overflow_list))
2321 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002322
Jens Axboee6c8aa92020-09-28 13:10:13 -06002323 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboead3eb2c2019-12-18 17:12:20 -07002324 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002325
Jens Axboea3a0e432019-08-20 11:03:11 -06002326 /* See comment at the top of this file */
2327 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07002328 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06002329}
2330
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002331static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2332{
2333 struct io_rings *rings = ctx->rings;
2334
2335 /* make sure SQ entry isn't read before tail */
2336 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2337}
2338
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002339static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002340{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002341 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002342
Jens Axboebcda7ba2020-02-23 16:42:51 -07002343 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2344 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002345 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002346 kfree(kbuf);
2347 return cflags;
2348}
2349
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002350static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2351{
2352 struct io_buffer *kbuf;
2353
2354 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2355 return io_put_kbuf(req, kbuf);
2356}
2357
Jens Axboe4c6e2772020-07-01 11:29:10 -06002358static inline bool io_run_task_work(void)
2359{
Jens Axboe6200b0a2020-09-13 14:38:30 -06002360 /*
2361 * Not safe to run on exiting task, and the task_work handling will
2362 * not add work to such a task.
2363 */
2364 if (unlikely(current->flags & PF_EXITING))
2365 return false;
Jens Axboe4c6e2772020-07-01 11:29:10 -06002366 if (current->task_works) {
2367 __set_current_state(TASK_RUNNING);
2368 task_work_run();
2369 return true;
2370 }
2371
2372 return false;
2373}
2374
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002375static void io_iopoll_queue(struct list_head *again)
2376{
2377 struct io_kiocb *req;
2378
2379 do {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002380 req = list_first_entry(again, struct io_kiocb, inflight_entry);
2381 list_del(&req->inflight_entry);
Pavel Begunkov81b68a52020-07-30 18:43:46 +03002382 __io_complete_rw(req, -EAGAIN, 0, NULL);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002383 } while (!list_empty(again));
2384}
2385
Jens Axboedef596e2019-01-09 08:59:42 -07002386/*
2387 * Find and free completed poll iocbs
2388 */
2389static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
2390 struct list_head *done)
2391{
Jens Axboe8237e042019-12-28 10:48:22 -07002392 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07002393 struct io_kiocb *req;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002394 LIST_HEAD(again);
2395
2396 /* order with ->result store in io_complete_rw_iopoll() */
2397 smp_rmb();
Jens Axboedef596e2019-01-09 08:59:42 -07002398
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002399 io_init_req_batch(&rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002400 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002401 int cflags = 0;
2402
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002403 req = list_first_entry(done, struct io_kiocb, inflight_entry);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002404 if (READ_ONCE(req->result) == -EAGAIN) {
Jens Axboe56450c22020-08-26 18:58:26 -06002405 req->result = 0;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002406 req->iopoll_completed = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002407 list_move_tail(&req->inflight_entry, &again);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002408 continue;
2409 }
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002410 list_del(&req->inflight_entry);
Jens Axboedef596e2019-01-09 08:59:42 -07002411
Jens Axboebcda7ba2020-02-23 16:42:51 -07002412 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002413 cflags = io_put_rw_kbuf(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002414
2415 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07002416 (*nr_events)++;
2417
Pavel Begunkovc3524382020-06-28 12:52:32 +03002418 if (refcount_dec_and_test(&req->refs))
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002419 io_req_free_batch(&rb, req);
Jens Axboedef596e2019-01-09 08:59:42 -07002420 }
Jens Axboedef596e2019-01-09 08:59:42 -07002421
Jens Axboe09bb8392019-03-13 12:39:28 -06002422 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08002423 if (ctx->flags & IORING_SETUP_SQPOLL)
2424 io_cqring_ev_posted(ctx);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002425 io_req_free_batch_finish(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002426
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002427 if (!list_empty(&again))
2428 io_iopoll_queue(&again);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002429}
2430
Jens Axboedef596e2019-01-09 08:59:42 -07002431static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
2432 long min)
2433{
2434 struct io_kiocb *req, *tmp;
2435 LIST_HEAD(done);
2436 bool spin;
2437 int ret;
2438
2439 /*
2440 * Only spin for completions if we don't have multiple devices hanging
2441 * off our complete list, and we're under the requested amount.
2442 */
2443 spin = !ctx->poll_multi_file && *nr_events < min;
2444
2445 ret = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002446 list_for_each_entry_safe(req, tmp, &ctx->iopoll_list, inflight_entry) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002447 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07002448
2449 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002450 * Move completed and retryable entries to our local lists.
2451 * If we find a request that requires polling, break out
2452 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002453 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002454 if (READ_ONCE(req->iopoll_completed)) {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002455 list_move_tail(&req->inflight_entry, &done);
Jens Axboedef596e2019-01-09 08:59:42 -07002456 continue;
2457 }
2458 if (!list_empty(&done))
2459 break;
2460
2461 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
2462 if (ret < 0)
2463 break;
2464
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002465 /* iopoll may have completed current req */
2466 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002467 list_move_tail(&req->inflight_entry, &done);
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002468
Jens Axboedef596e2019-01-09 08:59:42 -07002469 if (ret && spin)
2470 spin = false;
2471 ret = 0;
2472 }
2473
2474 if (!list_empty(&done))
2475 io_iopoll_complete(ctx, nr_events, &done);
2476
2477 return ret;
2478}
2479
2480/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08002481 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07002482 * non-spinning poll check - we'll still enter the driver poll loop, but only
2483 * as a non-spinning completion check.
2484 */
2485static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
2486 long min)
2487{
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002488 while (!list_empty(&ctx->iopoll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07002489 int ret;
2490
2491 ret = io_do_iopoll(ctx, nr_events, min);
2492 if (ret < 0)
2493 return ret;
Pavel Begunkoveba0a4d2020-07-06 17:59:30 +03002494 if (*nr_events >= min)
Jens Axboedef596e2019-01-09 08:59:42 -07002495 return 0;
2496 }
2497
2498 return 1;
2499}
2500
2501/*
2502 * We can't just wait for polled events to come to us, we have to actively
2503 * find and complete them.
2504 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002505static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002506{
2507 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2508 return;
2509
2510 mutex_lock(&ctx->uring_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002511 while (!list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002512 unsigned int nr_events = 0;
2513
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002514 io_do_iopoll(ctx, &nr_events, 0);
Jens Axboe08f54392019-08-21 22:19:11 -06002515
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002516 /* let it sleep and repeat later if can't complete a request */
2517 if (nr_events == 0)
2518 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002519 /*
2520 * Ensure we allow local-to-the-cpu processing to take place,
2521 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002522 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002523 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002524 if (need_resched()) {
2525 mutex_unlock(&ctx->uring_lock);
2526 cond_resched();
2527 mutex_lock(&ctx->uring_lock);
2528 }
Jens Axboedef596e2019-01-09 08:59:42 -07002529 }
2530 mutex_unlock(&ctx->uring_lock);
2531}
2532
Pavel Begunkov7668b922020-07-07 16:36:21 +03002533static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002534{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002535 unsigned int nr_events = 0;
Jens Axboe2b2ed972019-10-25 10:06:15 -06002536 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002537
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002538 /*
2539 * We disallow the app entering submit/complete with polling, but we
2540 * still need to lock the ring to prevent racing with polled issue
2541 * that got punted to a workqueue.
2542 */
2543 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002544 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002545 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06002546 * Don't enter poll loop if we already have events pending.
2547 * If we do, we can potentially be spinning for commands that
2548 * already triggered a CQE (eg in error).
2549 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002550 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06002551 break;
2552
2553 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06002554 * If a submit got punted to a workqueue, we can have the
2555 * application entering polling for a command before it gets
2556 * issued. That app will hold the uring_lock for the duration
2557 * of the poll right here, so we need to take a breather every
2558 * now and then to ensure that the issue has a chance to add
2559 * the poll to the issued list. Otherwise we can spin here
2560 * forever, while the workqueue is stuck trying to acquire the
2561 * very same mutex.
2562 */
2563 if (!(++iters & 7)) {
2564 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002565 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002566 mutex_lock(&ctx->uring_lock);
2567 }
2568
Pavel Begunkov7668b922020-07-07 16:36:21 +03002569 ret = io_iopoll_getevents(ctx, &nr_events, min);
Jens Axboedef596e2019-01-09 08:59:42 -07002570 if (ret <= 0)
2571 break;
2572 ret = 0;
Pavel Begunkov7668b922020-07-07 16:36:21 +03002573 } while (min && !nr_events && !need_resched());
Jens Axboedef596e2019-01-09 08:59:42 -07002574
Jens Axboe500f9fb2019-08-19 12:15:59 -06002575 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002576 return ret;
2577}
2578
Jens Axboe491381ce2019-10-17 09:20:46 -06002579static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002580{
Jens Axboe491381ce2019-10-17 09:20:46 -06002581 /*
2582 * Tell lockdep we inherited freeze protection from submission
2583 * thread.
2584 */
2585 if (req->flags & REQ_F_ISREG) {
2586 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002587
Jens Axboe491381ce2019-10-17 09:20:46 -06002588 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002589 }
Jens Axboe491381ce2019-10-17 09:20:46 -06002590 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002591}
2592
Jens Axboea1d7c392020-06-22 11:09:46 -06002593static void io_complete_rw_common(struct kiocb *kiocb, long res,
2594 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002595{
Jens Axboe9adbd452019-12-20 08:45:55 -07002596 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002597 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002598
Jens Axboe491381ce2019-10-17 09:20:46 -06002599 if (kiocb->ki_flags & IOCB_WRITE)
2600 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002601
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002602 if (res != req->result)
2603 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002604 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002605 cflags = io_put_rw_kbuf(req);
Jens Axboea1d7c392020-06-22 11:09:46 -06002606 __io_req_complete(req, res, cflags, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002607}
2608
Jens Axboeb63534c2020-06-04 11:28:00 -06002609#ifdef CONFIG_BLOCK
2610static bool io_resubmit_prep(struct io_kiocb *req, int error)
2611{
2612 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2613 ssize_t ret = -ECANCELED;
2614 struct iov_iter iter;
2615 int rw;
2616
2617 if (error) {
2618 ret = error;
2619 goto end_req;
2620 }
2621
2622 switch (req->opcode) {
2623 case IORING_OP_READV:
2624 case IORING_OP_READ_FIXED:
2625 case IORING_OP_READ:
2626 rw = READ;
2627 break;
2628 case IORING_OP_WRITEV:
2629 case IORING_OP_WRITE_FIXED:
2630 case IORING_OP_WRITE:
2631 rw = WRITE;
2632 break;
2633 default:
2634 printk_once(KERN_WARNING "io_uring: bad opcode in resubmit %d\n",
2635 req->opcode);
2636 goto end_req;
2637 }
2638
Jens Axboee8c2bc12020-08-15 18:44:09 -07002639 if (!req->async_data) {
Jens Axboe8f3d7492020-09-14 09:28:14 -06002640 ret = io_import_iovec(rw, req, &iovec, &iter, false);
2641 if (ret < 0)
2642 goto end_req;
2643 ret = io_setup_async_rw(req, iovec, inline_vecs, &iter, false);
2644 if (!ret)
2645 return true;
2646 kfree(iovec);
2647 } else {
Jens Axboeb63534c2020-06-04 11:28:00 -06002648 return true;
Jens Axboe8f3d7492020-09-14 09:28:14 -06002649 }
Jens Axboeb63534c2020-06-04 11:28:00 -06002650end_req:
Jens Axboeb63534c2020-06-04 11:28:00 -06002651 req_set_fail_links(req);
Jens Axboeb63534c2020-06-04 11:28:00 -06002652 return false;
2653}
Jens Axboeb63534c2020-06-04 11:28:00 -06002654#endif
2655
2656static bool io_rw_reissue(struct io_kiocb *req, long res)
2657{
2658#ifdef CONFIG_BLOCK
Jens Axboe355afae2020-09-02 09:30:31 -06002659 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboeb63534c2020-06-04 11:28:00 -06002660 int ret;
2661
Jens Axboe355afae2020-09-02 09:30:31 -06002662 if (!S_ISBLK(mode) && !S_ISREG(mode))
2663 return false;
Jens Axboeb63534c2020-06-04 11:28:00 -06002664 if ((res != -EAGAIN && res != -EOPNOTSUPP) || io_wq_current_is_worker())
2665 return false;
2666
Jens Axboe28cea78a2020-09-14 10:51:17 -06002667 ret = io_sq_thread_acquire_mm_files(req->ctx, req);
Jens Axboe6d816e02020-08-11 08:04:14 -06002668
Jens Axboefdee9462020-08-27 16:46:24 -06002669 if (io_resubmit_prep(req, ret)) {
2670 refcount_inc(&req->refs);
2671 io_queue_async_work(req);
Jens Axboeb63534c2020-06-04 11:28:00 -06002672 return true;
Jens Axboefdee9462020-08-27 16:46:24 -06002673 }
2674
Jens Axboeb63534c2020-06-04 11:28:00 -06002675#endif
2676 return false;
2677}
2678
Jens Axboea1d7c392020-06-22 11:09:46 -06002679static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2680 struct io_comp_state *cs)
2681{
2682 if (!io_rw_reissue(req, res))
2683 io_complete_rw_common(&req->rw.kiocb, res, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002684}
2685
2686static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2687{
Jens Axboe9adbd452019-12-20 08:45:55 -07002688 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002689
Jens Axboea1d7c392020-06-22 11:09:46 -06002690 __io_complete_rw(req, res, res2, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002691}
2692
Jens Axboedef596e2019-01-09 08:59:42 -07002693static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2694{
Jens Axboe9adbd452019-12-20 08:45:55 -07002695 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002696
Jens Axboe491381ce2019-10-17 09:20:46 -06002697 if (kiocb->ki_flags & IOCB_WRITE)
2698 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07002699
Xiaoguang Wang2d7d6792020-06-16 02:06:37 +08002700 if (res != -EAGAIN && res != req->result)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002701 req_set_fail_links(req);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002702
2703 WRITE_ONCE(req->result, res);
2704 /* order with io_poll_complete() checking ->result */
Pavel Begunkovcd664b02020-06-25 12:37:10 +03002705 smp_wmb();
2706 WRITE_ONCE(req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002707}
2708
2709/*
2710 * After the iocb has been issued, it's safe to be found on the poll list.
2711 * Adding the kiocb to the list AFTER submission ensures that we don't
2712 * find it from a io_iopoll_getevents() thread before the issuer is done
2713 * accessing the kiocb cookie.
2714 */
2715static void io_iopoll_req_issued(struct io_kiocb *req)
2716{
2717 struct io_ring_ctx *ctx = req->ctx;
2718
2719 /*
2720 * Track whether we have multiple files in our lists. This will impact
2721 * how we do polling eventually, not spinning if we're on potentially
2722 * different devices.
2723 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002724 if (list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002725 ctx->poll_multi_file = false;
2726 } else if (!ctx->poll_multi_file) {
2727 struct io_kiocb *list_req;
2728
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002729 list_req = list_first_entry(&ctx->iopoll_list, struct io_kiocb,
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002730 inflight_entry);
Jens Axboe9adbd452019-12-20 08:45:55 -07002731 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07002732 ctx->poll_multi_file = true;
2733 }
2734
2735 /*
2736 * For fast devices, IO may have already completed. If it has, add
2737 * it to the front so we find it first.
2738 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002739 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002740 list_add(&req->inflight_entry, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002741 else
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002742 list_add_tail(&req->inflight_entry, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002743
2744 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
Jens Axboe534ca6d2020-09-02 13:52:19 -06002745 wq_has_sleeper(&ctx->sq_data->wait))
2746 wake_up(&ctx->sq_data->wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002747}
2748
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002749static void __io_state_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002750{
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002751 if (state->has_refs)
2752 fput_many(state->file, state->has_refs);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002753 state->file = NULL;
2754}
2755
2756static inline void io_state_file_put(struct io_submit_state *state)
2757{
2758 if (state->file)
2759 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002760}
2761
2762/*
2763 * Get as many references to a file as we have IOs left in this submission,
2764 * assuming most submissions are for one file, or at least that each file
2765 * has more than one submission.
2766 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002767static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002768{
2769 if (!state)
2770 return fget(fd);
2771
2772 if (state->file) {
2773 if (state->fd == fd) {
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002774 state->has_refs--;
Jens Axboe9a56a232019-01-09 09:06:50 -07002775 return state->file;
2776 }
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002777 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002778 }
2779 state->file = fget_many(fd, state->ios_left);
2780 if (!state->file)
2781 return NULL;
2782
2783 state->fd = fd;
Pavel Begunkov71b547c2020-10-10 18:34:09 +01002784 state->has_refs = state->ios_left - 1;
Jens Axboe9a56a232019-01-09 09:06:50 -07002785 return state->file;
2786}
2787
Jens Axboe4503b762020-06-01 10:00:27 -06002788static bool io_bdev_nowait(struct block_device *bdev)
2789{
2790#ifdef CONFIG_BLOCK
Jeffle Xu9ba0d0c2020-10-19 16:59:42 +08002791 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
Jens Axboe4503b762020-06-01 10:00:27 -06002792#else
2793 return true;
2794#endif
2795}
2796
Jens Axboe2b188cc2019-01-07 10:46:33 -07002797/*
2798 * If we tracked the file through the SCM inflight mechanism, we could support
2799 * any file. For now, just ensure that anything potentially problematic is done
2800 * inline.
2801 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002802static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002803{
2804 umode_t mode = file_inode(file)->i_mode;
2805
Jens Axboe4503b762020-06-01 10:00:27 -06002806 if (S_ISBLK(mode)) {
2807 if (io_bdev_nowait(file->f_inode->i_bdev))
2808 return true;
2809 return false;
2810 }
2811 if (S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002812 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002813 if (S_ISREG(mode)) {
2814 if (io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
2815 file->f_op != &io_uring_fops)
2816 return true;
2817 return false;
2818 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002819
Jens Axboec5b85622020-06-09 19:23:05 -06002820 /* any ->read/write should understand O_NONBLOCK */
2821 if (file->f_flags & O_NONBLOCK)
2822 return true;
2823
Jens Axboeaf197f52020-04-28 13:15:06 -06002824 if (!(file->f_mode & FMODE_NOWAIT))
2825 return false;
2826
2827 if (rw == READ)
2828 return file->f_op->read_iter != NULL;
2829
2830 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002831}
2832
Pavel Begunkova88fc402020-09-30 22:57:53 +03002833static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002834{
Jens Axboedef596e2019-01-09 08:59:42 -07002835 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002836 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002837 unsigned ioprio;
2838 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002839
Jens Axboe491381ce2019-10-17 09:20:46 -06002840 if (S_ISREG(file_inode(req->file)->i_mode))
2841 req->flags |= REQ_F_ISREG;
2842
Jens Axboe2b188cc2019-01-07 10:46:33 -07002843 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002844 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2845 req->flags |= REQ_F_CUR_POS;
2846 kiocb->ki_pos = req->file->f_pos;
2847 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002848 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002849 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2850 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2851 if (unlikely(ret))
2852 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002853
2854 ioprio = READ_ONCE(sqe->ioprio);
2855 if (ioprio) {
2856 ret = ioprio_check_cap(ioprio);
2857 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002858 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002859
2860 kiocb->ki_ioprio = ioprio;
2861 } else
2862 kiocb->ki_ioprio = get_current_ioprio();
2863
Stefan Bühler8449eed2019-04-27 20:34:19 +02002864 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboec5b85622020-06-09 19:23:05 -06002865 if (kiocb->ki_flags & IOCB_NOWAIT)
Stefan Bühler8449eed2019-04-27 20:34:19 +02002866 req->flags |= REQ_F_NOWAIT;
2867
Jens Axboedef596e2019-01-09 08:59:42 -07002868 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002869 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2870 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002871 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002872
Jens Axboedef596e2019-01-09 08:59:42 -07002873 kiocb->ki_flags |= IOCB_HIPRI;
2874 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002875 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002876 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002877 if (kiocb->ki_flags & IOCB_HIPRI)
2878 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002879 kiocb->ki_complete = io_complete_rw;
2880 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002881
Jens Axboe3529d8c2019-12-19 18:24:38 -07002882 req->rw.addr = READ_ONCE(sqe->addr);
2883 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002884 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002885 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002886}
2887
2888static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2889{
2890 switch (ret) {
2891 case -EIOCBQUEUED:
2892 break;
2893 case -ERESTARTSYS:
2894 case -ERESTARTNOINTR:
2895 case -ERESTARTNOHAND:
2896 case -ERESTART_RESTARTBLOCK:
2897 /*
2898 * We can't just restart the syscall, since previously
2899 * submitted sqes may already be in progress. Just fail this
2900 * IO with EINTR.
2901 */
2902 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002903 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002904 default:
2905 kiocb->ki_complete(kiocb, ret, 0);
2906 }
2907}
2908
Jens Axboea1d7c392020-06-22 11:09:46 -06002909static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
2910 struct io_comp_state *cs)
Jens Axboeba816ad2019-09-28 11:36:45 -06002911{
Jens Axboeba042912019-12-25 16:33:42 -07002912 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboee8c2bc12020-08-15 18:44:09 -07002913 struct io_async_rw *io = req->async_data;
Jens Axboeba042912019-12-25 16:33:42 -07002914
Jens Axboe227c0c92020-08-13 11:51:40 -06002915 /* add previously done IO, if any */
Jens Axboee8c2bc12020-08-15 18:44:09 -07002916 if (io && io->bytes_done > 0) {
Jens Axboe227c0c92020-08-13 11:51:40 -06002917 if (ret < 0)
Jens Axboee8c2bc12020-08-15 18:44:09 -07002918 ret = io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002919 else
Jens Axboee8c2bc12020-08-15 18:44:09 -07002920 ret += io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002921 }
2922
Jens Axboeba042912019-12-25 16:33:42 -07002923 if (req->flags & REQ_F_CUR_POS)
2924 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002925 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboea1d7c392020-06-22 11:09:46 -06002926 __io_complete_rw(req, ret, 0, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002927 else
2928 io_rw_done(kiocb, ret);
2929}
2930
Jens Axboe9adbd452019-12-20 08:45:55 -07002931static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002932 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002933{
Jens Axboe9adbd452019-12-20 08:45:55 -07002934 struct io_ring_ctx *ctx = req->ctx;
2935 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002936 struct io_mapped_ubuf *imu;
Pavel Begunkov4be1c612020-09-06 00:45:48 +03002937 u16 index, buf_index = req->buf_index;
Jens Axboeedafcce2019-01-09 09:16:05 -07002938 size_t offset;
2939 u64 buf_addr;
2940
Jens Axboeedafcce2019-01-09 09:16:05 -07002941 if (unlikely(buf_index >= ctx->nr_user_bufs))
2942 return -EFAULT;
Jens Axboeedafcce2019-01-09 09:16:05 -07002943 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2944 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002945 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002946
2947 /* overflow */
2948 if (buf_addr + len < buf_addr)
2949 return -EFAULT;
2950 /* not inside the mapped region */
2951 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2952 return -EFAULT;
2953
2954 /*
2955 * May not be a start of buffer, set size appropriately
2956 * and advance us to the beginning.
2957 */
2958 offset = buf_addr - imu->ubuf;
2959 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002960
2961 if (offset) {
2962 /*
2963 * Don't use iov_iter_advance() here, as it's really slow for
2964 * using the latter parts of a big fixed buffer - it iterates
2965 * over each segment manually. We can cheat a bit here, because
2966 * we know that:
2967 *
2968 * 1) it's a BVEC iter, we set it up
2969 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2970 * first and last bvec
2971 *
2972 * So just find our index, and adjust the iterator afterwards.
2973 * If the offset is within the first bvec (or the whole first
2974 * bvec, just use iov_iter_advance(). This makes it easier
2975 * since we can just skip the first segment, which may not
2976 * be PAGE_SIZE aligned.
2977 */
2978 const struct bio_vec *bvec = imu->bvec;
2979
2980 if (offset <= bvec->bv_len) {
2981 iov_iter_advance(iter, offset);
2982 } else {
2983 unsigned long seg_skip;
2984
2985 /* skip first vec */
2986 offset -= bvec->bv_len;
2987 seg_skip = 1 + (offset >> PAGE_SHIFT);
2988
2989 iter->bvec = bvec + seg_skip;
2990 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002991 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002992 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002993 }
2994 }
2995
Jens Axboe5e559562019-11-13 16:12:46 -07002996 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002997}
2998
Jens Axboebcda7ba2020-02-23 16:42:51 -07002999static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
3000{
3001 if (needs_lock)
3002 mutex_unlock(&ctx->uring_lock);
3003}
3004
3005static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
3006{
3007 /*
3008 * "Normal" inline submissions always hold the uring_lock, since we
3009 * grab it from the system call. Same is true for the SQPOLL offload.
3010 * The only exception is when we've detached the request and issue it
3011 * from an async worker thread, grab the lock for that case.
3012 */
3013 if (needs_lock)
3014 mutex_lock(&ctx->uring_lock);
3015}
3016
3017static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
3018 int bgid, struct io_buffer *kbuf,
3019 bool needs_lock)
3020{
3021 struct io_buffer *head;
3022
3023 if (req->flags & REQ_F_BUFFER_SELECTED)
3024 return kbuf;
3025
3026 io_ring_submit_lock(req->ctx, needs_lock);
3027
3028 lockdep_assert_held(&req->ctx->uring_lock);
3029
3030 head = idr_find(&req->ctx->io_buffer_idr, bgid);
3031 if (head) {
3032 if (!list_empty(&head->list)) {
3033 kbuf = list_last_entry(&head->list, struct io_buffer,
3034 list);
3035 list_del(&kbuf->list);
3036 } else {
3037 kbuf = head;
3038 idr_remove(&req->ctx->io_buffer_idr, bgid);
3039 }
3040 if (*len > kbuf->len)
3041 *len = kbuf->len;
3042 } else {
3043 kbuf = ERR_PTR(-ENOBUFS);
3044 }
3045
3046 io_ring_submit_unlock(req->ctx, needs_lock);
3047
3048 return kbuf;
3049}
3050
Jens Axboe4d954c22020-02-27 07:31:19 -07003051static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
3052 bool needs_lock)
3053{
3054 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003055 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07003056
3057 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003058 bgid = req->buf_index;
Jens Axboe4d954c22020-02-27 07:31:19 -07003059 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
3060 if (IS_ERR(kbuf))
3061 return kbuf;
3062 req->rw.addr = (u64) (unsigned long) kbuf;
3063 req->flags |= REQ_F_BUFFER_SELECTED;
3064 return u64_to_user_ptr(kbuf->addr);
3065}
3066
3067#ifdef CONFIG_COMPAT
3068static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
3069 bool needs_lock)
3070{
3071 struct compat_iovec __user *uiov;
3072 compat_ssize_t clen;
3073 void __user *buf;
3074 ssize_t len;
3075
3076 uiov = u64_to_user_ptr(req->rw.addr);
3077 if (!access_ok(uiov, sizeof(*uiov)))
3078 return -EFAULT;
3079 if (__get_user(clen, &uiov->iov_len))
3080 return -EFAULT;
3081 if (clen < 0)
3082 return -EINVAL;
3083
3084 len = clen;
3085 buf = io_rw_buffer_select(req, &len, needs_lock);
3086 if (IS_ERR(buf))
3087 return PTR_ERR(buf);
3088 iov[0].iov_base = buf;
3089 iov[0].iov_len = (compat_size_t) len;
3090 return 0;
3091}
3092#endif
3093
3094static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3095 bool needs_lock)
3096{
3097 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
3098 void __user *buf;
3099 ssize_t len;
3100
3101 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3102 return -EFAULT;
3103
3104 len = iov[0].iov_len;
3105 if (len < 0)
3106 return -EINVAL;
3107 buf = io_rw_buffer_select(req, &len, needs_lock);
3108 if (IS_ERR(buf))
3109 return PTR_ERR(buf);
3110 iov[0].iov_base = buf;
3111 iov[0].iov_len = len;
3112 return 0;
3113}
3114
3115static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3116 bool needs_lock)
3117{
Jens Axboedddb3e22020-06-04 11:27:01 -06003118 if (req->flags & REQ_F_BUFFER_SELECTED) {
3119 struct io_buffer *kbuf;
3120
3121 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
3122 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3123 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003124 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06003125 }
Jens Axboe4d954c22020-02-27 07:31:19 -07003126 if (!req->rw.len)
3127 return 0;
3128 else if (req->rw.len > 1)
3129 return -EINVAL;
3130
3131#ifdef CONFIG_COMPAT
3132 if (req->ctx->compat)
3133 return io_compat_import(req, iov, needs_lock);
3134#endif
3135
3136 return __io_iov_buffer_select(req, iov, needs_lock);
3137}
3138
Pavel Begunkov2846c482020-11-07 13:16:27 +00003139static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboe8452fd02020-08-18 13:58:33 -07003140 struct iovec **iovec, struct iov_iter *iter,
3141 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003142{
Jens Axboe9adbd452019-12-20 08:45:55 -07003143 void __user *buf = u64_to_user_ptr(req->rw.addr);
3144 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003145 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07003146 u8 opcode;
3147
Jens Axboed625c6e2019-12-17 19:53:05 -07003148 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03003149 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07003150 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07003151 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07003152 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003153
Jens Axboebcda7ba2020-02-23 16:42:51 -07003154 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003155 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07003156 return -EINVAL;
3157
Jens Axboe3a6820f2019-12-22 15:19:35 -07003158 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07003159 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07003160 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03003161 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07003162 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003163 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003164 }
3165
Jens Axboe3a6820f2019-12-22 15:19:35 -07003166 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
3167 *iovec = NULL;
David Laight10fc72e2020-11-07 13:16:25 +00003168 return ret;
Jens Axboe3a6820f2019-12-22 15:19:35 -07003169 }
3170
Jens Axboe4d954c22020-02-27 07:31:19 -07003171 if (req->flags & REQ_F_BUFFER_SELECT) {
3172 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003173 if (!ret) {
3174 ret = (*iovec)->iov_len;
3175 iov_iter_init(iter, rw, *iovec, 1, ret);
3176 }
Jens Axboe4d954c22020-02-27 07:31:19 -07003177 *iovec = NULL;
3178 return ret;
3179 }
3180
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02003181 return __import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter,
3182 req->ctx->compat);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003183}
3184
Jens Axboe0fef9482020-08-26 10:36:20 -06003185static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3186{
Pavel Begunkov5b09e372020-09-30 22:57:15 +03003187 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
Jens Axboe0fef9482020-08-26 10:36:20 -06003188}
3189
Jens Axboe32960612019-09-23 11:05:34 -06003190/*
3191 * For files that don't have ->read_iter() and ->write_iter(), handle them
3192 * by looping over ->read() or ->write() manually.
3193 */
Jens Axboe4017eb92020-10-22 14:14:12 -06003194static ssize_t loop_rw_iter(int rw, struct io_kiocb *req, struct iov_iter *iter)
Jens Axboe32960612019-09-23 11:05:34 -06003195{
Jens Axboe4017eb92020-10-22 14:14:12 -06003196 struct kiocb *kiocb = &req->rw.kiocb;
3197 struct file *file = req->file;
Jens Axboe32960612019-09-23 11:05:34 -06003198 ssize_t ret = 0;
3199
3200 /*
3201 * Don't support polled IO through this interface, and we can't
3202 * support non-blocking either. For the latter, this just causes
3203 * the kiocb to be handled from an async context.
3204 */
3205 if (kiocb->ki_flags & IOCB_HIPRI)
3206 return -EOPNOTSUPP;
3207 if (kiocb->ki_flags & IOCB_NOWAIT)
3208 return -EAGAIN;
3209
3210 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003211 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06003212 ssize_t nr;
3213
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003214 if (!iov_iter_is_bvec(iter)) {
3215 iovec = iov_iter_iovec(iter);
3216 } else {
Jens Axboe4017eb92020-10-22 14:14:12 -06003217 iovec.iov_base = u64_to_user_ptr(req->rw.addr);
3218 iovec.iov_len = req->rw.len;
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003219 }
3220
Jens Axboe32960612019-09-23 11:05:34 -06003221 if (rw == READ) {
3222 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003223 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003224 } else {
3225 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003226 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003227 }
3228
3229 if (nr < 0) {
3230 if (!ret)
3231 ret = nr;
3232 break;
3233 }
3234 ret += nr;
3235 if (nr != iovec.iov_len)
3236 break;
Jens Axboe4017eb92020-10-22 14:14:12 -06003237 req->rw.len -= nr;
3238 req->rw.addr += nr;
Jens Axboe32960612019-09-23 11:05:34 -06003239 iov_iter_advance(iter, nr);
3240 }
3241
3242 return ret;
3243}
3244
Jens Axboeff6165b2020-08-13 09:47:43 -06003245static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3246 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07003247{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003248 struct io_async_rw *rw = req->async_data;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003249
Jens Axboeff6165b2020-08-13 09:47:43 -06003250 memcpy(&rw->iter, iter, sizeof(*iter));
Pavel Begunkovafb87652020-09-06 00:45:46 +03003251 rw->free_iovec = iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -06003252 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06003253 /* can only be fixed buffers, no need to do anything */
3254 if (iter->type == ITER_BVEC)
3255 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003256 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06003257 unsigned iov_off = 0;
3258
3259 rw->iter.iov = rw->fast_iov;
3260 if (iter->iov != fast_iov) {
3261 iov_off = iter->iov - fast_iov;
3262 rw->iter.iov += iov_off;
3263 }
3264 if (rw->fast_iov != fast_iov)
3265 memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08003266 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003267 } else {
3268 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07003269 }
3270}
3271
Jens Axboee8c2bc12020-08-15 18:44:09 -07003272static inline int __io_alloc_async_data(struct io_kiocb *req)
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003273{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003274 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3275 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
3276 return req->async_data == NULL;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003277}
3278
Jens Axboee8c2bc12020-08-15 18:44:09 -07003279static int io_alloc_async_data(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003280{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003281 if (!io_op_defs[req->opcode].needs_async_data)
Jens Axboed3656342019-12-18 09:50:26 -07003282 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003283
Jens Axboee8c2bc12020-08-15 18:44:09 -07003284 return __io_alloc_async_data(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003285}
3286
Jens Axboeff6165b2020-08-13 09:47:43 -06003287static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3288 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06003289 struct iov_iter *iter, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003290{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003291 if (!force && !io_op_defs[req->opcode].needs_async_data)
Jens Axboe74566df2020-01-13 19:23:24 -07003292 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003293 if (!req->async_data) {
3294 if (__io_alloc_async_data(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07003295 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003296
Jens Axboeff6165b2020-08-13 09:47:43 -06003297 io_req_map_rw(req, iovec, fast_iov, iter);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003298 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003299 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003300}
3301
Pavel Begunkov73debe62020-09-30 22:57:54 +03003302static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003303{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003304 struct io_async_rw *iorw = req->async_data;
Pavel Begunkovf4bff102020-09-06 00:45:45 +03003305 struct iovec *iov = iorw->fast_iov;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003306 ssize_t ret;
3307
Pavel Begunkov2846c482020-11-07 13:16:27 +00003308 ret = io_import_iovec(rw, req, &iov, &iorw->iter, false);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003309 if (unlikely(ret < 0))
3310 return ret;
3311
Pavel Begunkovab0b1962020-09-06 00:45:47 +03003312 iorw->bytes_done = 0;
3313 iorw->free_iovec = iov;
3314 if (iov)
3315 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003316 return 0;
3317}
3318
Pavel Begunkov73debe62020-09-30 22:57:54 +03003319static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003320{
3321 ssize_t ret;
3322
Pavel Begunkova88fc402020-09-30 22:57:53 +03003323 ret = io_prep_rw(req, sqe);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003324 if (ret)
3325 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003326
Jens Axboe3529d8c2019-12-19 18:24:38 -07003327 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3328 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003329
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003330 /* either don't need iovec imported or already have it */
Pavel Begunkov2d199892020-09-30 22:57:35 +03003331 if (!req->async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003332 return 0;
Pavel Begunkov73debe62020-09-30 22:57:54 +03003333 return io_rw_prep_async(req, READ);
Jens Axboef67676d2019-12-02 11:03:47 -07003334}
3335
Jens Axboec1dd91d2020-08-03 16:43:59 -06003336/*
3337 * This is our waitqueue callback handler, registered through lock_page_async()
3338 * when we initially tried to do the IO with the iocb armed our waitqueue.
3339 * This gets called when the page is unlocked, and we generally expect that to
3340 * happen when the page IO is completed and the page is now uptodate. This will
3341 * queue a task_work based retry of the operation, attempting to copy the data
3342 * again. If the latter fails because the page was NOT uptodate, then we will
3343 * do a thread based blocking retry of the operation. That's the unexpected
3344 * slow path.
3345 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003346static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3347 int sync, void *arg)
3348{
3349 struct wait_page_queue *wpq;
3350 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003351 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003352 int ret;
3353
3354 wpq = container_of(wait, struct wait_page_queue, wait);
3355
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003356 if (!wake_page_match(wpq, key))
3357 return 0;
3358
Hao Xuc8d317a2020-09-29 20:00:45 +08003359 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003360 list_del_init(&wait->entry);
3361
Pavel Begunkove7375122020-07-12 20:42:04 +03003362 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06003363 percpu_ref_get(&req->ctx->refs);
3364
Jens Axboebcf5a062020-05-22 09:24:42 -06003365 /* submit ref gets dropped, acquire a new one */
3366 refcount_inc(&req->refs);
Jens Axboe87c43112020-09-30 21:00:14 -06003367 ret = io_req_task_work_add(req, true);
Jens Axboebcf5a062020-05-22 09:24:42 -06003368 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06003369 struct task_struct *tsk;
3370
Jens Axboebcf5a062020-05-22 09:24:42 -06003371 /* queue just for cancelation */
Pavel Begunkove7375122020-07-12 20:42:04 +03003372 init_task_work(&req->task_work, io_req_task_cancel);
Jens Axboebcf5a062020-05-22 09:24:42 -06003373 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06003374 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboec2c4c832020-07-01 15:37:11 -06003375 wake_up_process(tsk);
Jens Axboebcf5a062020-05-22 09:24:42 -06003376 }
Jens Axboebcf5a062020-05-22 09:24:42 -06003377 return 1;
3378}
3379
Jens Axboec1dd91d2020-08-03 16:43:59 -06003380/*
3381 * This controls whether a given IO request should be armed for async page
3382 * based retry. If we return false here, the request is handed to the async
3383 * worker threads for retry. If we're doing buffered reads on a regular file,
3384 * we prepare a private wait_page_queue entry and retry the operation. This
3385 * will either succeed because the page is now uptodate and unlocked, or it
3386 * will register a callback when the page is unlocked at IO completion. Through
3387 * that callback, io_uring uses task_work to setup a retry of the operation.
3388 * That retry will attempt the buffered read again. The retry will generally
3389 * succeed, or in rare cases where it fails, we then fall back to using the
3390 * async worker threads for a blocking retry.
3391 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003392static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003393{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003394 struct io_async_rw *rw = req->async_data;
3395 struct wait_page_queue *wait = &rw->wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003396 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003397
3398 /* never retry for NOWAIT, we just complete with -EAGAIN */
3399 if (req->flags & REQ_F_NOWAIT)
3400 return false;
3401
Jens Axboe227c0c92020-08-13 11:51:40 -06003402 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003403 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003404 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003405
Jens Axboebcf5a062020-05-22 09:24:42 -06003406 /*
3407 * just use poll if we can, and don't attempt if the fs doesn't
3408 * support callback based unlocks
3409 */
3410 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3411 return false;
3412
Jens Axboe3b2a4432020-08-16 10:58:43 -07003413 wait->wait.func = io_async_buf_func;
3414 wait->wait.private = req;
3415 wait->wait.flags = 0;
3416 INIT_LIST_HEAD(&wait->wait.entry);
3417 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003418 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003419 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003420 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003421}
3422
3423static int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
3424{
3425 if (req->file->f_op->read_iter)
3426 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003427 else if (req->file->f_op->read)
Jens Axboe4017eb92020-10-22 14:14:12 -06003428 return loop_rw_iter(READ, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003429 else
3430 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003431}
3432
Jens Axboea1d7c392020-06-22 11:09:46 -06003433static int io_read(struct io_kiocb *req, bool force_nonblock,
3434 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003435{
3436 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003437 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003438 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003439 struct io_async_rw *rw = req->async_data;
Jens Axboe227c0c92020-08-13 11:51:40 -06003440 ssize_t io_size, ret, ret2;
Jens Axboef5cac8b2020-09-14 09:30:38 -06003441 bool no_async;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003442
Pavel Begunkov2846c482020-11-07 13:16:27 +00003443 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003444 iter = &rw->iter;
Pavel Begunkov2846c482020-11-07 13:16:27 +00003445 iovec = NULL;
3446 } else {
3447 ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
3448 if (ret < 0)
3449 return ret;
3450 }
Pavel Begunkov632546c2020-11-07 13:16:26 +00003451 io_size = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003452 req->result = io_size;
Jens Axboe227c0c92020-08-13 11:51:40 -06003453 ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003454
Jens Axboefd6c2e42019-12-18 12:19:41 -07003455 /* Ensure we clear previously set non-block flag */
3456 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003457 kiocb->ki_flags &= ~IOCB_NOWAIT;
Pavel Begunkova88fc402020-09-30 22:57:53 +03003458 else
3459 kiocb->ki_flags |= IOCB_NOWAIT;
3460
Jens Axboefd6c2e42019-12-18 12:19:41 -07003461
Pavel Begunkov24c74672020-06-21 13:09:51 +03003462 /* If the file doesn't support async, just async punt */
Jens Axboef5cac8b2020-09-14 09:30:38 -06003463 no_async = force_nonblock && !io_file_supports_async(req->file, READ);
3464 if (no_async)
Jens Axboef67676d2019-12-02 11:03:47 -07003465 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003466
Pavel Begunkov632546c2020-11-07 13:16:26 +00003467 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), io_size);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003468 if (unlikely(ret))
3469 goto out_free;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003470
Jens Axboe227c0c92020-08-13 11:51:40 -06003471 ret = io_iter_do_read(req, iter);
Jens Axboe32960612019-09-23 11:05:34 -06003472
Jens Axboe227c0c92020-08-13 11:51:40 -06003473 if (!ret) {
3474 goto done;
3475 } else if (ret == -EIOCBQUEUED) {
3476 ret = 0;
3477 goto out_free;
3478 } else if (ret == -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003479 /* IOPOLL retry should happen for io-wq threads */
3480 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003481 goto done;
Jens Axboe355afae2020-09-02 09:30:31 -06003482 /* no retry on NONBLOCK marked file */
3483 if (req->file->f_flags & O_NONBLOCK)
3484 goto done;
Jens Axboe84216312020-08-24 11:45:26 -06003485 /* some cases will consume bytes even on error returns */
Pavel Begunkov632546c2020-11-07 13:16:26 +00003486 iov_iter_revert(iter, io_size - iov_iter_count(iter));
Jens Axboef38c7e32020-09-25 15:23:43 -06003487 ret = 0;
3488 goto copy_iov;
Jens Axboe227c0c92020-08-13 11:51:40 -06003489 } else if (ret < 0) {
Jens Axboe00d23d52020-08-25 12:59:22 -06003490 /* make sure -ERESTARTSYS -> -EINTR is done */
3491 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003492 }
3493
3494 /* read it all, or we did blocking attempt. no retry. */
Jens Axboef91daf52020-08-15 15:58:42 -07003495 if (!iov_iter_count(iter) || !force_nonblock ||
3496 (req->file->f_flags & O_NONBLOCK))
Jens Axboe227c0c92020-08-13 11:51:40 -06003497 goto done;
3498
3499 io_size -= ret;
3500copy_iov:
3501 ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
3502 if (ret2) {
3503 ret = ret2;
3504 goto out_free;
3505 }
Jens Axboef5cac8b2020-09-14 09:30:38 -06003506 if (no_async)
3507 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003508 rw = req->async_data;
Jens Axboe227c0c92020-08-13 11:51:40 -06003509 /* it's copied and will be cleaned with ->io */
3510 iovec = NULL;
3511 /* now use our persistent iterator, if we aren't already */
Jens Axboee8c2bc12020-08-15 18:44:09 -07003512 iter = &rw->iter;
Jens Axboe227c0c92020-08-13 11:51:40 -06003513retry:
Jens Axboee8c2bc12020-08-15 18:44:09 -07003514 rw->bytes_done += ret;
Jens Axboe227c0c92020-08-13 11:51:40 -06003515 /* if we can retry, do so with the callbacks armed */
3516 if (!io_rw_should_retry(req)) {
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003517 kiocb->ki_flags &= ~IOCB_WAITQ;
3518 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003519 }
Jens Axboe227c0c92020-08-13 11:51:40 -06003520
3521 /*
3522 * Now retry read with the IOCB_WAITQ parts set in the iocb. If we
3523 * get -EIOCBQUEUED, then we'll get a notification when the desired
3524 * page gets unlocked. We can also get a partial read here, and if we
3525 * do, then just retry at the new offset.
3526 */
3527 ret = io_iter_do_read(req, iter);
3528 if (ret == -EIOCBQUEUED) {
3529 ret = 0;
3530 goto out_free;
3531 } else if (ret > 0 && ret < io_size) {
3532 /* we got some bytes, but not all. retry. */
3533 goto retry;
3534 }
3535done:
3536 kiocb_done(kiocb, ret, cs);
3537 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003538out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003539 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003540 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003541 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003542 return ret;
3543}
3544
Pavel Begunkov73debe62020-09-30 22:57:54 +03003545static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003546{
3547 ssize_t ret;
3548
Pavel Begunkova88fc402020-09-30 22:57:53 +03003549 ret = io_prep_rw(req, sqe);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003550 if (ret)
3551 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003552
Jens Axboe3529d8c2019-12-19 18:24:38 -07003553 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3554 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003555
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003556 /* either don't need iovec imported or already have it */
Pavel Begunkov2d199892020-09-30 22:57:35 +03003557 if (!req->async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003558 return 0;
Pavel Begunkov73debe62020-09-30 22:57:54 +03003559 return io_rw_prep_async(req, WRITE);
Jens Axboef67676d2019-12-02 11:03:47 -07003560}
3561
Jens Axboea1d7c392020-06-22 11:09:46 -06003562static int io_write(struct io_kiocb *req, bool force_nonblock,
3563 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003564{
3565 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003566 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003567 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003568 struct io_async_rw *rw = req->async_data;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003569 ssize_t ret, ret2, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003570
Pavel Begunkov2846c482020-11-07 13:16:27 +00003571 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003572 iter = &rw->iter;
Pavel Begunkov2846c482020-11-07 13:16:27 +00003573 iovec = NULL;
3574 } else {
3575 ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
3576 if (ret < 0)
3577 return ret;
3578 }
Pavel Begunkov632546c2020-11-07 13:16:26 +00003579 io_size = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003580 req->result = io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003581
Jens Axboefd6c2e42019-12-18 12:19:41 -07003582 /* Ensure we clear previously set non-block flag */
3583 if (!force_nonblock)
Pavel Begunkova88fc402020-09-30 22:57:53 +03003584 kiocb->ki_flags &= ~IOCB_NOWAIT;
3585 else
3586 kiocb->ki_flags |= IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003587
Pavel Begunkov24c74672020-06-21 13:09:51 +03003588 /* If the file doesn't support async, just async punt */
Jens Axboeaf197f52020-04-28 13:15:06 -06003589 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003590 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003591
Jens Axboe10d59342019-12-09 20:16:22 -07003592 /* file path doesn't support NOWAIT for non-direct_IO */
3593 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3594 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003595 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003596
Pavel Begunkov632546c2020-11-07 13:16:26 +00003597 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), io_size);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003598 if (unlikely(ret))
3599 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003600
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003601 /*
3602 * Open-code file_start_write here to grab freeze protection,
3603 * which will be released by another thread in
3604 * io_complete_rw(). Fool lockdep by telling it the lock got
3605 * released so that it doesn't complain about the held lock when
3606 * we return to userspace.
3607 */
3608 if (req->flags & REQ_F_ISREG) {
Darrick J. Wong8a3c84b2020-11-10 16:50:21 -08003609 sb_start_write(file_inode(req->file)->i_sb);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003610 __sb_writers_release(file_inode(req->file)->i_sb,
3611 SB_FREEZE_WRITE);
3612 }
3613 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003614
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003615 if (req->file->f_op->write_iter)
Jens Axboeff6165b2020-08-13 09:47:43 -06003616 ret2 = call_write_iter(req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003617 else if (req->file->f_op->write)
Jens Axboe4017eb92020-10-22 14:14:12 -06003618 ret2 = loop_rw_iter(WRITE, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003619 else
3620 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003621
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003622 /*
3623 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3624 * retry them without IOCB_NOWAIT.
3625 */
3626 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3627 ret2 = -EAGAIN;
Jens Axboe355afae2020-09-02 09:30:31 -06003628 /* no retry on NONBLOCK marked file */
3629 if (ret2 == -EAGAIN && (req->file->f_flags & O_NONBLOCK))
3630 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003631 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003632 /* IOPOLL retry should happen for io-wq threads */
3633 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3634 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003635done:
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003636 kiocb_done(kiocb, ret2, cs);
3637 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003638copy_iov:
Jens Axboe84216312020-08-24 11:45:26 -06003639 /* some cases will consume bytes even on error returns */
Pavel Begunkov632546c2020-11-07 13:16:26 +00003640 iov_iter_revert(iter, io_size - iov_iter_count(iter));
Jens Axboe227c0c92020-08-13 11:51:40 -06003641 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
Jens Axboeff6165b2020-08-13 09:47:43 -06003642 if (!ret)
3643 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003644 }
Jens Axboe31b51512019-01-18 22:56:34 -07003645out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003646 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003647 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003648 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003649 return ret;
3650}
3651
Jens Axboe80a261f2020-09-28 14:23:58 -06003652static int io_renameat_prep(struct io_kiocb *req,
3653 const struct io_uring_sqe *sqe)
3654{
3655 struct io_rename *ren = &req->rename;
3656 const char __user *oldf, *newf;
3657
3658 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3659 return -EBADF;
3660
3661 ren->old_dfd = READ_ONCE(sqe->fd);
3662 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3663 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3664 ren->new_dfd = READ_ONCE(sqe->len);
3665 ren->flags = READ_ONCE(sqe->rename_flags);
3666
3667 ren->oldpath = getname(oldf);
3668 if (IS_ERR(ren->oldpath))
3669 return PTR_ERR(ren->oldpath);
3670
3671 ren->newpath = getname(newf);
3672 if (IS_ERR(ren->newpath)) {
3673 putname(ren->oldpath);
3674 return PTR_ERR(ren->newpath);
3675 }
3676
3677 req->flags |= REQ_F_NEED_CLEANUP;
3678 return 0;
3679}
3680
3681static int io_renameat(struct io_kiocb *req, bool force_nonblock)
3682{
3683 struct io_rename *ren = &req->rename;
3684 int ret;
3685
3686 if (force_nonblock)
3687 return -EAGAIN;
3688
3689 ret = do_renameat2(ren->old_dfd, ren->oldpath, ren->new_dfd,
3690 ren->newpath, ren->flags);
3691
3692 req->flags &= ~REQ_F_NEED_CLEANUP;
3693 if (ret < 0)
3694 req_set_fail_links(req);
3695 io_req_complete(req, ret);
3696 return 0;
3697}
3698
Jens Axboe14a11432020-09-28 14:27:37 -06003699static int io_unlinkat_prep(struct io_kiocb *req,
3700 const struct io_uring_sqe *sqe)
3701{
3702 struct io_unlink *un = &req->unlink;
3703 const char __user *fname;
3704
3705 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3706 return -EBADF;
3707
3708 un->dfd = READ_ONCE(sqe->fd);
3709
3710 un->flags = READ_ONCE(sqe->unlink_flags);
3711 if (un->flags & ~AT_REMOVEDIR)
3712 return -EINVAL;
3713
3714 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3715 un->filename = getname(fname);
3716 if (IS_ERR(un->filename))
3717 return PTR_ERR(un->filename);
3718
3719 req->flags |= REQ_F_NEED_CLEANUP;
3720 return 0;
3721}
3722
3723static int io_unlinkat(struct io_kiocb *req, bool force_nonblock)
3724{
3725 struct io_unlink *un = &req->unlink;
3726 int ret;
3727
3728 if (force_nonblock)
3729 return -EAGAIN;
3730
3731 if (un->flags & AT_REMOVEDIR)
3732 ret = do_rmdir(un->dfd, un->filename);
3733 else
3734 ret = do_unlinkat(un->dfd, un->filename);
3735
3736 req->flags &= ~REQ_F_NEED_CLEANUP;
3737 if (ret < 0)
3738 req_set_fail_links(req);
3739 io_req_complete(req, ret);
3740 return 0;
3741}
3742
Jens Axboe36f4fa62020-09-05 11:14:22 -06003743static int io_shutdown_prep(struct io_kiocb *req,
3744 const struct io_uring_sqe *sqe)
3745{
3746#if defined(CONFIG_NET)
3747 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3748 return -EINVAL;
3749 if (sqe->ioprio || sqe->off || sqe->addr || sqe->rw_flags ||
3750 sqe->buf_index)
3751 return -EINVAL;
3752
3753 req->shutdown.how = READ_ONCE(sqe->len);
3754 return 0;
3755#else
3756 return -EOPNOTSUPP;
3757#endif
3758}
3759
3760static int io_shutdown(struct io_kiocb *req, bool force_nonblock)
3761{
3762#if defined(CONFIG_NET)
3763 struct socket *sock;
3764 int ret;
3765
3766 if (force_nonblock)
3767 return -EAGAIN;
3768
3769 sock = sock_from_file(req->file, &ret);
3770 if (unlikely(!sock))
3771 return ret;
3772
3773 ret = __sys_shutdown_sock(sock, req->shutdown.how);
3774 io_req_complete(req, ret);
3775 return 0;
3776#else
3777 return -EOPNOTSUPP;
3778#endif
3779}
3780
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003781static int __io_splice_prep(struct io_kiocb *req,
3782 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003783{
3784 struct io_splice* sp = &req->splice;
3785 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003786
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003787 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3788 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003789
3790 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003791 sp->len = READ_ONCE(sqe->len);
3792 sp->flags = READ_ONCE(sqe->splice_flags);
3793
3794 if (unlikely(sp->flags & ~valid_flags))
3795 return -EINVAL;
3796
Pavel Begunkov8371adf2020-10-10 18:34:08 +01003797 sp->file_in = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in),
3798 (sp->flags & SPLICE_F_FD_IN_FIXED));
3799 if (!sp->file_in)
3800 return -EBADF;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003801 req->flags |= REQ_F_NEED_CLEANUP;
3802
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003803 if (!S_ISREG(file_inode(sp->file_in)->i_mode)) {
3804 /*
3805 * Splice operation will be punted aync, and here need to
3806 * modify io_wq_work.flags, so initialize io_wq_work firstly.
3807 */
3808 io_req_init_async(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003809 req->work.flags |= IO_WQ_WORK_UNBOUND;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003810 }
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003811
3812 return 0;
3813}
3814
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003815static int io_tee_prep(struct io_kiocb *req,
3816 const struct io_uring_sqe *sqe)
3817{
3818 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3819 return -EINVAL;
3820 return __io_splice_prep(req, sqe);
3821}
3822
3823static int io_tee(struct io_kiocb *req, bool force_nonblock)
3824{
3825 struct io_splice *sp = &req->splice;
3826 struct file *in = sp->file_in;
3827 struct file *out = sp->file_out;
3828 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3829 long ret = 0;
3830
3831 if (force_nonblock)
3832 return -EAGAIN;
3833 if (sp->len)
3834 ret = do_tee(in, out, sp->len, flags);
3835
3836 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3837 req->flags &= ~REQ_F_NEED_CLEANUP;
3838
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003839 if (ret != sp->len)
3840 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003841 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003842 return 0;
3843}
3844
3845static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3846{
3847 struct io_splice* sp = &req->splice;
3848
3849 sp->off_in = READ_ONCE(sqe->splice_off_in);
3850 sp->off_out = READ_ONCE(sqe->off);
3851 return __io_splice_prep(req, sqe);
3852}
3853
Pavel Begunkov014db002020-03-03 21:33:12 +03003854static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003855{
3856 struct io_splice *sp = &req->splice;
3857 struct file *in = sp->file_in;
3858 struct file *out = sp->file_out;
3859 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3860 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003861 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003862
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03003863 if (force_nonblock)
3864 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003865
3866 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
3867 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003868
Jens Axboe948a7742020-05-17 14:21:38 -06003869 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03003870 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003871
3872 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3873 req->flags &= ~REQ_F_NEED_CLEANUP;
3874
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003875 if (ret != sp->len)
3876 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003877 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003878 return 0;
3879}
3880
Jens Axboe2b188cc2019-01-07 10:46:33 -07003881/*
3882 * IORING_OP_NOP just posts a completion event, nothing else.
3883 */
Jens Axboe229a7b62020-06-22 10:13:11 -06003884static int io_nop(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003885{
3886 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003887
Jens Axboedef596e2019-01-09 08:59:42 -07003888 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3889 return -EINVAL;
3890
Jens Axboe229a7b62020-06-22 10:13:11 -06003891 __io_req_complete(req, 0, 0, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003892 return 0;
3893}
3894
Jens Axboe3529d8c2019-12-19 18:24:38 -07003895static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003896{
Jens Axboe6b063142019-01-10 22:13:58 -07003897 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003898
Jens Axboe09bb8392019-03-13 12:39:28 -06003899 if (!req->file)
3900 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003901
Jens Axboe6b063142019-01-10 22:13:58 -07003902 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07003903 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07003904 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003905 return -EINVAL;
3906
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003907 req->sync.flags = READ_ONCE(sqe->fsync_flags);
3908 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
3909 return -EINVAL;
3910
3911 req->sync.off = READ_ONCE(sqe->off);
3912 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003913 return 0;
3914}
3915
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003916static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Jens Axboe78912932020-01-14 22:09:06 -07003917{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003918 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003919 int ret;
3920
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003921 /* fsync always requires a blocking context */
3922 if (force_nonblock)
3923 return -EAGAIN;
3924
Jens Axboe9adbd452019-12-20 08:45:55 -07003925 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003926 end > 0 ? end : LLONG_MAX,
3927 req->sync.flags & IORING_FSYNC_DATASYNC);
3928 if (ret < 0)
3929 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003930 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003931 return 0;
3932}
3933
Jens Axboed63d1b52019-12-10 10:38:56 -07003934static int io_fallocate_prep(struct io_kiocb *req,
3935 const struct io_uring_sqe *sqe)
3936{
3937 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
3938 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003939 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3940 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07003941
3942 req->sync.off = READ_ONCE(sqe->off);
3943 req->sync.len = READ_ONCE(sqe->addr);
3944 req->sync.mode = READ_ONCE(sqe->len);
3945 return 0;
3946}
3947
Pavel Begunkov014db002020-03-03 21:33:12 +03003948static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07003949{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003950 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07003951
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003952 /* fallocate always requiring blocking context */
3953 if (force_nonblock)
3954 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003955 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
3956 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003957 if (ret < 0)
3958 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003959 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07003960 return 0;
3961}
3962
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003963static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003964{
Jens Axboef8748882020-01-08 17:47:02 -07003965 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003966 int ret;
3967
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003968 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07003969 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003970 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07003971 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003972
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003973 /* open.how should be already initialised */
3974 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06003975 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003976
Pavel Begunkov25e72d12020-06-03 18:03:23 +03003977 req->open.dfd = READ_ONCE(sqe->fd);
3978 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07003979 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003980 if (IS_ERR(req->open.filename)) {
3981 ret = PTR_ERR(req->open.filename);
3982 req->open.filename = NULL;
3983 return ret;
3984 }
Jens Axboe4022e7a2020-03-19 19:23:18 -06003985 req->open.nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe944d1442020-11-13 16:48:44 -07003986 req->open.ignore_nonblock = false;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003987 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003988 return 0;
3989}
3990
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003991static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3992{
3993 u64 flags, mode;
3994
Jens Axboe14587a462020-09-05 11:36:08 -06003995 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe4eb8dde2020-09-18 19:36:24 -06003996 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003997 mode = READ_ONCE(sqe->len);
3998 flags = READ_ONCE(sqe->open_flags);
3999 req->open.how = build_open_how(flags, mode);
4000 return __io_openat_prep(req, sqe);
4001}
4002
Jens Axboecebdb982020-01-08 17:59:24 -07004003static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4004{
4005 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07004006 size_t len;
4007 int ret;
4008
Jens Axboe14587a462020-09-05 11:36:08 -06004009 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe4eb8dde2020-09-18 19:36:24 -06004010 return -EINVAL;
Jens Axboecebdb982020-01-08 17:59:24 -07004011 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4012 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07004013 if (len < OPEN_HOW_SIZE_VER0)
4014 return -EINVAL;
4015
4016 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
4017 len);
4018 if (ret)
4019 return ret;
4020
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004021 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07004022}
4023
Pavel Begunkov014db002020-03-03 21:33:12 +03004024static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004025{
4026 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004027 struct file *file;
4028 int ret;
4029
Jens Axboe944d1442020-11-13 16:48:44 -07004030 if (force_nonblock && !req->open.ignore_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004031 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004032
Jens Axboecebdb982020-01-08 17:59:24 -07004033 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004034 if (ret)
4035 goto err;
4036
Jens Axboe4022e7a2020-03-19 19:23:18 -06004037 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004038 if (ret < 0)
4039 goto err;
4040
4041 file = do_filp_open(req->open.dfd, req->open.filename, &op);
4042 if (IS_ERR(file)) {
4043 put_unused_fd(ret);
4044 ret = PTR_ERR(file);
Jens Axboe944d1442020-11-13 16:48:44 -07004045 /*
4046 * A work-around to ensure that /proc/self works that way
4047 * that it should - if we get -EOPNOTSUPP back, then assume
4048 * that proc_self_get_link() failed us because we're in async
4049 * context. We should be safe to retry this from the task
4050 * itself with force_nonblock == false set, as it should not
4051 * block on lookup. Would be nice to know this upfront and
4052 * avoid the async dance, but doesn't seem feasible.
4053 */
4054 if (ret == -EOPNOTSUPP && io_wq_current_is_worker()) {
4055 req->open.ignore_nonblock = true;
4056 refcount_inc(&req->refs);
4057 io_req_task_queue(req);
4058 return 0;
4059 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004060 } else {
4061 fsnotify_open(file);
4062 fd_install(ret, file);
4063 }
4064err:
4065 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004066 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004067 if (ret < 0)
4068 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004069 io_req_complete(req, ret);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004070 return 0;
4071}
4072
Pavel Begunkov014db002020-03-03 21:33:12 +03004073static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07004074{
Pavel Begunkov014db002020-03-03 21:33:12 +03004075 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07004076}
4077
Jens Axboe067524e2020-03-02 16:32:28 -07004078static int io_remove_buffers_prep(struct io_kiocb *req,
4079 const struct io_uring_sqe *sqe)
4080{
4081 struct io_provide_buf *p = &req->pbuf;
4082 u64 tmp;
4083
4084 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
4085 return -EINVAL;
4086
4087 tmp = READ_ONCE(sqe->fd);
4088 if (!tmp || tmp > USHRT_MAX)
4089 return -EINVAL;
4090
4091 memset(p, 0, sizeof(*p));
4092 p->nbufs = tmp;
4093 p->bgid = READ_ONCE(sqe->buf_group);
4094 return 0;
4095}
4096
4097static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
4098 int bgid, unsigned nbufs)
4099{
4100 unsigned i = 0;
4101
4102 /* shouldn't happen */
4103 if (!nbufs)
4104 return 0;
4105
4106 /* the head kbuf is the list itself */
4107 while (!list_empty(&buf->list)) {
4108 struct io_buffer *nxt;
4109
4110 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4111 list_del(&nxt->list);
4112 kfree(nxt);
4113 if (++i == nbufs)
4114 return i;
4115 }
4116 i++;
4117 kfree(buf);
4118 idr_remove(&ctx->io_buffer_idr, bgid);
4119
4120 return i;
4121}
4122
Jens Axboe229a7b62020-06-22 10:13:11 -06004123static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock,
4124 struct io_comp_state *cs)
Jens Axboe067524e2020-03-02 16:32:28 -07004125{
4126 struct io_provide_buf *p = &req->pbuf;
4127 struct io_ring_ctx *ctx = req->ctx;
4128 struct io_buffer *head;
4129 int ret = 0;
4130
4131 io_ring_submit_lock(ctx, !force_nonblock);
4132
4133 lockdep_assert_held(&ctx->uring_lock);
4134
4135 ret = -ENOENT;
4136 head = idr_find(&ctx->io_buffer_idr, p->bgid);
4137 if (head)
4138 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
4139
4140 io_ring_submit_lock(ctx, !force_nonblock);
4141 if (ret < 0)
4142 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004143 __io_req_complete(req, ret, 0, cs);
Jens Axboe067524e2020-03-02 16:32:28 -07004144 return 0;
4145}
4146
Jens Axboeddf0322d2020-02-23 16:41:33 -07004147static int io_provide_buffers_prep(struct io_kiocb *req,
4148 const struct io_uring_sqe *sqe)
4149{
4150 struct io_provide_buf *p = &req->pbuf;
4151 u64 tmp;
4152
4153 if (sqe->ioprio || sqe->rw_flags)
4154 return -EINVAL;
4155
4156 tmp = READ_ONCE(sqe->fd);
4157 if (!tmp || tmp > USHRT_MAX)
4158 return -E2BIG;
4159 p->nbufs = tmp;
4160 p->addr = READ_ONCE(sqe->addr);
4161 p->len = READ_ONCE(sqe->len);
4162
Bijan Mottahedehefe68c12020-06-04 18:01:52 -07004163 if (!access_ok(u64_to_user_ptr(p->addr), (p->len * p->nbufs)))
Jens Axboeddf0322d2020-02-23 16:41:33 -07004164 return -EFAULT;
4165
4166 p->bgid = READ_ONCE(sqe->buf_group);
4167 tmp = READ_ONCE(sqe->off);
4168 if (tmp > USHRT_MAX)
4169 return -E2BIG;
4170 p->bid = tmp;
4171 return 0;
4172}
4173
4174static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
4175{
4176 struct io_buffer *buf;
4177 u64 addr = pbuf->addr;
4178 int i, bid = pbuf->bid;
4179
4180 for (i = 0; i < pbuf->nbufs; i++) {
4181 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
4182 if (!buf)
4183 break;
4184
4185 buf->addr = addr;
4186 buf->len = pbuf->len;
4187 buf->bid = bid;
4188 addr += pbuf->len;
4189 bid++;
4190 if (!*head) {
4191 INIT_LIST_HEAD(&buf->list);
4192 *head = buf;
4193 } else {
4194 list_add_tail(&buf->list, &(*head)->list);
4195 }
4196 }
4197
4198 return i ? i : -ENOMEM;
4199}
4200
Jens Axboe229a7b62020-06-22 10:13:11 -06004201static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock,
4202 struct io_comp_state *cs)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004203{
4204 struct io_provide_buf *p = &req->pbuf;
4205 struct io_ring_ctx *ctx = req->ctx;
4206 struct io_buffer *head, *list;
4207 int ret = 0;
4208
4209 io_ring_submit_lock(ctx, !force_nonblock);
4210
4211 lockdep_assert_held(&ctx->uring_lock);
4212
4213 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
4214
4215 ret = io_add_buffers(p, &head);
4216 if (ret < 0)
4217 goto out;
4218
4219 if (!list) {
4220 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
4221 GFP_KERNEL);
4222 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07004223 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004224 goto out;
4225 }
4226 }
4227out:
4228 io_ring_submit_unlock(ctx, !force_nonblock);
4229 if (ret < 0)
4230 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004231 __io_req_complete(req, ret, 0, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004232 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004233}
4234
Jens Axboe3e4827b2020-01-08 15:18:09 -07004235static int io_epoll_ctl_prep(struct io_kiocb *req,
4236 const struct io_uring_sqe *sqe)
4237{
4238#if defined(CONFIG_EPOLL)
4239 if (sqe->ioprio || sqe->buf_index)
4240 return -EINVAL;
Jens Axboe6ca56f82020-09-18 16:51:19 -06004241 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004242 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004243
4244 req->epoll.epfd = READ_ONCE(sqe->fd);
4245 req->epoll.op = READ_ONCE(sqe->len);
4246 req->epoll.fd = READ_ONCE(sqe->off);
4247
4248 if (ep_op_has_event(req->epoll.op)) {
4249 struct epoll_event __user *ev;
4250
4251 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
4252 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
4253 return -EFAULT;
4254 }
4255
4256 return 0;
4257#else
4258 return -EOPNOTSUPP;
4259#endif
4260}
4261
Jens Axboe229a7b62020-06-22 10:13:11 -06004262static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock,
4263 struct io_comp_state *cs)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004264{
4265#if defined(CONFIG_EPOLL)
4266 struct io_epoll *ie = &req->epoll;
4267 int ret;
4268
4269 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
4270 if (force_nonblock && ret == -EAGAIN)
4271 return -EAGAIN;
4272
4273 if (ret < 0)
4274 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004275 __io_req_complete(req, ret, 0, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07004276 return 0;
4277#else
4278 return -EOPNOTSUPP;
4279#endif
4280}
4281
Jens Axboec1ca7572019-12-25 22:18:28 -07004282static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4283{
4284#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4285 if (sqe->ioprio || sqe->buf_index || sqe->off)
4286 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004287 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4288 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07004289
4290 req->madvise.addr = READ_ONCE(sqe->addr);
4291 req->madvise.len = READ_ONCE(sqe->len);
4292 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
4293 return 0;
4294#else
4295 return -EOPNOTSUPP;
4296#endif
4297}
4298
Pavel Begunkov014db002020-03-03 21:33:12 +03004299static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07004300{
4301#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4302 struct io_madvise *ma = &req->madvise;
4303 int ret;
4304
4305 if (force_nonblock)
4306 return -EAGAIN;
4307
Minchan Kim0726b012020-10-17 16:14:50 -07004308 ret = do_madvise(current->mm, ma->addr, ma->len, ma->advice);
Jens Axboec1ca7572019-12-25 22:18:28 -07004309 if (ret < 0)
4310 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004311 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07004312 return 0;
4313#else
4314 return -EOPNOTSUPP;
4315#endif
4316}
4317
Jens Axboe4840e412019-12-25 22:03:45 -07004318static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4319{
4320 if (sqe->ioprio || sqe->buf_index || sqe->addr)
4321 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004322 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4323 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07004324
4325 req->fadvise.offset = READ_ONCE(sqe->off);
4326 req->fadvise.len = READ_ONCE(sqe->len);
4327 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
4328 return 0;
4329}
4330
Pavel Begunkov014db002020-03-03 21:33:12 +03004331static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07004332{
4333 struct io_fadvise *fa = &req->fadvise;
4334 int ret;
4335
Jens Axboe3e694262020-02-01 09:22:49 -07004336 if (force_nonblock) {
4337 switch (fa->advice) {
4338 case POSIX_FADV_NORMAL:
4339 case POSIX_FADV_RANDOM:
4340 case POSIX_FADV_SEQUENTIAL:
4341 break;
4342 default:
4343 return -EAGAIN;
4344 }
4345 }
Jens Axboe4840e412019-12-25 22:03:45 -07004346
4347 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
4348 if (ret < 0)
4349 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004350 io_req_complete(req, ret);
Jens Axboe4840e412019-12-25 22:03:45 -07004351 return 0;
4352}
4353
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004354static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4355{
Jens Axboe6ca56f82020-09-18 16:51:19 -06004356 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004357 return -EINVAL;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004358 if (sqe->ioprio || sqe->buf_index)
4359 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004360 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004361 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004362
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004363 req->statx.dfd = READ_ONCE(sqe->fd);
4364 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004365 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004366 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4367 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004368
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004369 return 0;
4370}
4371
Pavel Begunkov014db002020-03-03 21:33:12 +03004372static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004373{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004374 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004375 int ret;
4376
Jens Axboe5b0bbee2020-04-27 10:41:22 -06004377 if (force_nonblock) {
4378 /* only need file table for an actual valid fd */
4379 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
4380 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004381 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06004382 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004383
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004384 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
4385 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004386
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004387 if (ret < 0)
4388 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004389 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004390 return 0;
4391}
4392
Jens Axboeb5dba592019-12-11 14:02:38 -07004393static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4394{
4395 /*
4396 * If we queue this for async, it must not be cancellable. That would
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08004397 * leave the 'file' in an undeterminate state, and here need to modify
4398 * io_wq_work.flags, so initialize io_wq_work firstly.
Jens Axboeb5dba592019-12-11 14:02:38 -07004399 */
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08004400 io_req_init_async(req);
Jens Axboeb5dba592019-12-11 14:02:38 -07004401 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
4402
Jens Axboe14587a462020-09-05 11:36:08 -06004403 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004404 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004405 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
4406 sqe->rw_flags || sqe->buf_index)
4407 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004408 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004409 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004410
4411 req->close.fd = READ_ONCE(sqe->fd);
Jens Axboe0f212202020-09-13 13:09:39 -06004412 if ((req->file && req->file->f_op == &io_uring_fops))
Jens Axboefd2206e2020-06-02 16:40:47 -06004413 return -EBADF;
4414
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004415 req->close.put_file = NULL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004416 return 0;
4417}
4418
Jens Axboe229a7b62020-06-22 10:13:11 -06004419static int io_close(struct io_kiocb *req, bool force_nonblock,
4420 struct io_comp_state *cs)
Jens Axboeb5dba592019-12-11 14:02:38 -07004421{
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004422 struct io_close *close = &req->close;
Jens Axboeb5dba592019-12-11 14:02:38 -07004423 int ret;
4424
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004425 /* might be already done during nonblock submission */
4426 if (!close->put_file) {
4427 ret = __close_fd_get_file(close->fd, &close->put_file);
4428 if (ret < 0)
4429 return (ret == -ENOENT) ? -EBADF : ret;
4430 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004431
4432 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004433 if (close->put_file->f_op->flush && force_nonblock) {
Pavel Begunkov24c74672020-06-21 13:09:51 +03004434 /* was never set, but play safe */
4435 req->flags &= ~REQ_F_NOWAIT;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004436 /* avoid grabbing files - we don't need the files */
Pavel Begunkov24c74672020-06-21 13:09:51 +03004437 req->flags |= REQ_F_NO_FILE_TABLE;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004438 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004439 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004440
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004441 /* No ->flush() or already async, safely close from here */
Jens Axboe98447d62020-10-14 10:48:51 -06004442 ret = filp_close(close->put_file, req->work.identity->files);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004443 if (ret < 0)
4444 req_set_fail_links(req);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004445 fput(close->put_file);
4446 close->put_file = NULL;
Jens Axboe229a7b62020-06-22 10:13:11 -06004447 __io_req_complete(req, ret, 0, cs);
Jens Axboe1a417f42020-01-31 17:16:48 -07004448 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004449}
4450
Jens Axboe3529d8c2019-12-19 18:24:38 -07004451static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004452{
4453 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004454
4455 if (!req->file)
4456 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004457
4458 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4459 return -EINVAL;
4460 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
4461 return -EINVAL;
4462
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004463 req->sync.off = READ_ONCE(sqe->off);
4464 req->sync.len = READ_ONCE(sqe->len);
4465 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004466 return 0;
4467}
4468
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004469static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004470{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004471 int ret;
4472
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004473 /* sync_file_range always requires a blocking context */
4474 if (force_nonblock)
4475 return -EAGAIN;
4476
Jens Axboe9adbd452019-12-20 08:45:55 -07004477 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004478 req->sync.flags);
4479 if (ret < 0)
4480 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004481 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004482 return 0;
4483}
4484
YueHaibing469956e2020-03-04 15:53:52 +08004485#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004486static int io_setup_async_msg(struct io_kiocb *req,
4487 struct io_async_msghdr *kmsg)
4488{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004489 struct io_async_msghdr *async_msg = req->async_data;
4490
4491 if (async_msg)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004492 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004493 if (io_alloc_async_data(req)) {
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004494 if (kmsg->iov != kmsg->fast_iov)
4495 kfree(kmsg->iov);
4496 return -ENOMEM;
4497 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004498 async_msg = req->async_data;
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004499 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004500 memcpy(async_msg, kmsg, sizeof(*kmsg));
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004501 return -EAGAIN;
4502}
4503
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004504static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4505 struct io_async_msghdr *iomsg)
4506{
4507 iomsg->iov = iomsg->fast_iov;
4508 iomsg->msg.msg_name = &iomsg->addr;
4509 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
4510 req->sr_msg.msg_flags, &iomsg->iov);
4511}
4512
Jens Axboe3529d8c2019-12-19 18:24:38 -07004513static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004514{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004515 struct io_async_msghdr *async_msg = req->async_data;
Jens Axboee47293f2019-12-20 08:58:21 -07004516 struct io_sr_msg *sr = &req->sr_msg;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004517 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004518
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004519 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4520 return -EINVAL;
4521
Jens Axboee47293f2019-12-20 08:58:21 -07004522 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004523 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004524 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004525
Jens Axboed8768362020-02-27 14:17:49 -07004526#ifdef CONFIG_COMPAT
4527 if (req->ctx->compat)
4528 sr->msg_flags |= MSG_CMSG_COMPAT;
4529#endif
4530
Jens Axboee8c2bc12020-08-15 18:44:09 -07004531 if (!async_msg || !io_op_defs[req->opcode].needs_async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07004532 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004533 ret = io_sendmsg_copy_hdr(req, async_msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004534 if (!ret)
4535 req->flags |= REQ_F_NEED_CLEANUP;
4536 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004537}
4538
Jens Axboe229a7b62020-06-22 10:13:11 -06004539static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4540 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004541{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004542 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004543 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004544 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004545 int ret;
4546
Jens Axboe03b12302019-12-02 18:50:25 -07004547 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004548 if (unlikely(!sock))
4549 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004550
Jens Axboee8c2bc12020-08-15 18:44:09 -07004551 if (req->async_data) {
4552 kmsg = req->async_data;
4553 kmsg->msg.msg_name = &kmsg->addr;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004554 /* if iov is set, it's allocated already */
4555 if (!kmsg->iov)
4556 kmsg->iov = kmsg->fast_iov;
4557 kmsg->msg.msg_iter.iov = kmsg->iov;
4558 } else {
4559 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004560 if (ret)
4561 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004562 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004563 }
4564
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004565 flags = req->sr_msg.msg_flags;
4566 if (flags & MSG_DONTWAIT)
4567 req->flags |= REQ_F_NOWAIT;
4568 else if (force_nonblock)
4569 flags |= MSG_DONTWAIT;
4570
4571 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
4572 if (force_nonblock && ret == -EAGAIN)
4573 return io_setup_async_msg(req, kmsg);
4574 if (ret == -ERESTARTSYS)
4575 ret = -EINTR;
4576
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004577 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe03b12302019-12-02 18:50:25 -07004578 kfree(kmsg->iov);
4579 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07004580 if (ret < 0)
4581 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004582 __io_req_complete(req, ret, 0, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004583 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004584}
4585
Jens Axboe229a7b62020-06-22 10:13:11 -06004586static int io_send(struct io_kiocb *req, bool force_nonblock,
4587 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004588{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004589 struct io_sr_msg *sr = &req->sr_msg;
4590 struct msghdr msg;
4591 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004592 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004593 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004594 int ret;
4595
4596 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004597 if (unlikely(!sock))
4598 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004599
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004600 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4601 if (unlikely(ret))
Zheng Bin14db8412020-09-09 20:12:37 +08004602 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004603
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004604 msg.msg_name = NULL;
4605 msg.msg_control = NULL;
4606 msg.msg_controllen = 0;
4607 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004608
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004609 flags = req->sr_msg.msg_flags;
4610 if (flags & MSG_DONTWAIT)
4611 req->flags |= REQ_F_NOWAIT;
4612 else if (force_nonblock)
4613 flags |= MSG_DONTWAIT;
Jens Axboe03b12302019-12-02 18:50:25 -07004614
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004615 msg.msg_flags = flags;
4616 ret = sock_sendmsg(sock, &msg);
4617 if (force_nonblock && ret == -EAGAIN)
4618 return -EAGAIN;
4619 if (ret == -ERESTARTSYS)
4620 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004621
Jens Axboe03b12302019-12-02 18:50:25 -07004622 if (ret < 0)
4623 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004624 __io_req_complete(req, ret, 0, cs);
Jens Axboe03b12302019-12-02 18:50:25 -07004625 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004626}
4627
Pavel Begunkov1400e692020-07-12 20:41:05 +03004628static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4629 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004630{
4631 struct io_sr_msg *sr = &req->sr_msg;
4632 struct iovec __user *uiov;
4633 size_t iov_len;
4634 int ret;
4635
Pavel Begunkov1400e692020-07-12 20:41:05 +03004636 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4637 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004638 if (ret)
4639 return ret;
4640
4641 if (req->flags & REQ_F_BUFFER_SELECT) {
4642 if (iov_len > 1)
4643 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004644 if (copy_from_user(iomsg->iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004645 return -EFAULT;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004646 sr->len = iomsg->iov[0].iov_len;
4647 iov_iter_init(&iomsg->msg.msg_iter, READ, iomsg->iov, 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004648 sr->len);
Pavel Begunkov1400e692020-07-12 20:41:05 +03004649 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004650 } else {
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004651 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
4652 &iomsg->iov, &iomsg->msg.msg_iter,
4653 false);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004654 if (ret > 0)
4655 ret = 0;
4656 }
4657
4658 return ret;
4659}
4660
4661#ifdef CONFIG_COMPAT
4662static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004663 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004664{
4665 struct compat_msghdr __user *msg_compat;
4666 struct io_sr_msg *sr = &req->sr_msg;
4667 struct compat_iovec __user *uiov;
4668 compat_uptr_t ptr;
4669 compat_size_t len;
4670 int ret;
4671
Pavel Begunkov270a5942020-07-12 20:41:04 +03004672 msg_compat = (struct compat_msghdr __user *) sr->umsg;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004673 ret = __get_compat_msghdr(&iomsg->msg, msg_compat, &iomsg->uaddr,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004674 &ptr, &len);
4675 if (ret)
4676 return ret;
4677
4678 uiov = compat_ptr(ptr);
4679 if (req->flags & REQ_F_BUFFER_SELECT) {
4680 compat_ssize_t clen;
4681
4682 if (len > 1)
4683 return -EINVAL;
4684 if (!access_ok(uiov, sizeof(*uiov)))
4685 return -EFAULT;
4686 if (__get_user(clen, &uiov->iov_len))
4687 return -EFAULT;
4688 if (clen < 0)
4689 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004690 sr->len = iomsg->iov[0].iov_len;
4691 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004692 } else {
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004693 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
4694 UIO_FASTIOV, &iomsg->iov,
4695 &iomsg->msg.msg_iter, true);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004696 if (ret < 0)
4697 return ret;
4698 }
4699
4700 return 0;
4701}
Jens Axboe03b12302019-12-02 18:50:25 -07004702#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004703
Pavel Begunkov1400e692020-07-12 20:41:05 +03004704static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4705 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004706{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004707 iomsg->msg.msg_name = &iomsg->addr;
4708 iomsg->iov = iomsg->fast_iov;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004709
4710#ifdef CONFIG_COMPAT
4711 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004712 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004713#endif
4714
Pavel Begunkov1400e692020-07-12 20:41:05 +03004715 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004716}
4717
Jens Axboebcda7ba2020-02-23 16:42:51 -07004718static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004719 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004720{
4721 struct io_sr_msg *sr = &req->sr_msg;
4722 struct io_buffer *kbuf;
4723
Jens Axboebcda7ba2020-02-23 16:42:51 -07004724 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4725 if (IS_ERR(kbuf))
4726 return kbuf;
4727
4728 sr->kbuf = kbuf;
4729 req->flags |= REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004730 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07004731}
4732
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004733static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4734{
4735 return io_put_kbuf(req, req->sr_msg.kbuf);
4736}
4737
Jens Axboe3529d8c2019-12-19 18:24:38 -07004738static int io_recvmsg_prep(struct io_kiocb *req,
4739 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07004740{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004741 struct io_async_msghdr *async_msg = req->async_data;
Jens Axboee47293f2019-12-20 08:58:21 -07004742 struct io_sr_msg *sr = &req->sr_msg;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004743 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004744
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004745 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4746 return -EINVAL;
4747
Jens Axboe3529d8c2019-12-19 18:24:38 -07004748 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004749 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004750 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004751 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004752
Jens Axboed8768362020-02-27 14:17:49 -07004753#ifdef CONFIG_COMPAT
4754 if (req->ctx->compat)
4755 sr->msg_flags |= MSG_CMSG_COMPAT;
4756#endif
4757
Jens Axboee8c2bc12020-08-15 18:44:09 -07004758 if (!async_msg || !io_op_defs[req->opcode].needs_async_data)
Jens Axboe06b76d42019-12-19 14:44:26 -07004759 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004760 ret = io_recvmsg_copy_hdr(req, async_msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004761 if (!ret)
4762 req->flags |= REQ_F_NEED_CLEANUP;
4763 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004764}
4765
Jens Axboe229a7b62020-06-22 10:13:11 -06004766static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4767 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004768{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004769 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004770 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004771 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004772 unsigned flags;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004773 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004774
Jens Axboe0fa03c62019-04-19 13:34:07 -06004775 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004776 if (unlikely(!sock))
4777 return ret;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004778
Jens Axboee8c2bc12020-08-15 18:44:09 -07004779 if (req->async_data) {
4780 kmsg = req->async_data;
4781 kmsg->msg.msg_name = &kmsg->addr;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004782 /* if iov is set, it's allocated already */
4783 if (!kmsg->iov)
4784 kmsg->iov = kmsg->fast_iov;
4785 kmsg->msg.msg_iter.iov = kmsg->iov;
4786 } else {
4787 ret = io_recvmsg_copy_hdr(req, &iomsg);
4788 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004789 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004790 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004791 }
4792
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004793 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004794 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004795 if (IS_ERR(kbuf))
4796 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004797 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
4798 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
4799 1, req->sr_msg.len);
4800 }
4801
4802 flags = req->sr_msg.msg_flags;
4803 if (flags & MSG_DONTWAIT)
4804 req->flags |= REQ_F_NOWAIT;
4805 else if (force_nonblock)
4806 flags |= MSG_DONTWAIT;
4807
4808 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4809 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004810 if (force_nonblock && ret == -EAGAIN)
4811 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004812 if (ret == -ERESTARTSYS)
4813 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004814
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004815 if (req->flags & REQ_F_BUFFER_SELECTED)
4816 cflags = io_put_recv_kbuf(req);
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004817 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07004818 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004819 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004820 if (ret < 0)
4821 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004822 __io_req_complete(req, ret, cflags, cs);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004823 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004824}
4825
Jens Axboe229a7b62020-06-22 10:13:11 -06004826static int io_recv(struct io_kiocb *req, bool force_nonblock,
4827 struct io_comp_state *cs)
Jens Axboefddafac2020-01-04 20:19:44 -07004828{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004829 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004830 struct io_sr_msg *sr = &req->sr_msg;
4831 struct msghdr msg;
4832 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07004833 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004834 struct iovec iov;
4835 unsigned flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004836 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004837
Jens Axboefddafac2020-01-04 20:19:44 -07004838 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004839 if (unlikely(!sock))
4840 return ret;
Jens Axboefddafac2020-01-04 20:19:44 -07004841
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004842 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004843 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004844 if (IS_ERR(kbuf))
4845 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004846 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07004847 }
4848
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004849 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004850 if (unlikely(ret))
4851 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07004852
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004853 msg.msg_name = NULL;
4854 msg.msg_control = NULL;
4855 msg.msg_controllen = 0;
4856 msg.msg_namelen = 0;
4857 msg.msg_iocb = NULL;
4858 msg.msg_flags = 0;
4859
4860 flags = req->sr_msg.msg_flags;
4861 if (flags & MSG_DONTWAIT)
4862 req->flags |= REQ_F_NOWAIT;
4863 else if (force_nonblock)
4864 flags |= MSG_DONTWAIT;
4865
4866 ret = sock_recvmsg(sock, &msg, flags);
4867 if (force_nonblock && ret == -EAGAIN)
4868 return -EAGAIN;
4869 if (ret == -ERESTARTSYS)
4870 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004871out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004872 if (req->flags & REQ_F_BUFFER_SELECTED)
4873 cflags = io_put_recv_kbuf(req);
Jens Axboefddafac2020-01-04 20:19:44 -07004874 if (ret < 0)
4875 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004876 __io_req_complete(req, ret, cflags, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004877 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004878}
4879
Jens Axboe3529d8c2019-12-19 18:24:38 -07004880static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004881{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004882 struct io_accept *accept = &req->accept;
4883
Jens Axboe14587a462020-09-05 11:36:08 -06004884 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe17f2fe32019-10-17 14:42:58 -06004885 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05004886 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004887 return -EINVAL;
4888
Jens Axboed55e5f52019-12-11 16:12:15 -07004889 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4890 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004891 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06004892 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004893 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004894}
Jens Axboe17f2fe32019-10-17 14:42:58 -06004895
Jens Axboe229a7b62020-06-22 10:13:11 -06004896static int io_accept(struct io_kiocb *req, bool force_nonblock,
4897 struct io_comp_state *cs)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004898{
4899 struct io_accept *accept = &req->accept;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004900 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004901 int ret;
4902
Jiufei Xuee697dee2020-06-10 13:41:59 +08004903 if (req->file->f_flags & O_NONBLOCK)
4904 req->flags |= REQ_F_NOWAIT;
4905
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004906 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06004907 accept->addr_len, accept->flags,
4908 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004909 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004910 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004911 if (ret < 0) {
4912 if (ret == -ERESTARTSYS)
4913 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004914 req_set_fail_links(req);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004915 }
Jens Axboe229a7b62020-06-22 10:13:11 -06004916 __io_req_complete(req, ret, 0, cs);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004917 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004918}
4919
Jens Axboe3529d8c2019-12-19 18:24:38 -07004920static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004921{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004922 struct io_connect *conn = &req->connect;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004923 struct io_async_connect *io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07004924
Jens Axboe14587a462020-09-05 11:36:08 -06004925 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004926 return -EINVAL;
4927 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4928 return -EINVAL;
4929
Jens Axboe3529d8c2019-12-19 18:24:38 -07004930 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4931 conn->addr_len = READ_ONCE(sqe->addr2);
4932
4933 if (!io)
4934 return 0;
4935
4936 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07004937 &io->address);
Jens Axboef499a022019-12-02 16:28:46 -07004938}
4939
Jens Axboe229a7b62020-06-22 10:13:11 -06004940static int io_connect(struct io_kiocb *req, bool force_nonblock,
4941 struct io_comp_state *cs)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004942{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004943 struct io_async_connect __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004944 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004945 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004946
Jens Axboee8c2bc12020-08-15 18:44:09 -07004947 if (req->async_data) {
4948 io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07004949 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004950 ret = move_addr_to_kernel(req->connect.addr,
4951 req->connect.addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07004952 &__io.address);
Jens Axboef499a022019-12-02 16:28:46 -07004953 if (ret)
4954 goto out;
4955 io = &__io;
4956 }
4957
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004958 file_flags = force_nonblock ? O_NONBLOCK : 0;
4959
Jens Axboee8c2bc12020-08-15 18:44:09 -07004960 ret = __sys_connect_file(req->file, &io->address,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004961 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004962 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07004963 if (req->async_data)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004964 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004965 if (io_alloc_async_data(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004966 ret = -ENOMEM;
4967 goto out;
4968 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004969 io = req->async_data;
4970 memcpy(req->async_data, &__io, sizeof(__io));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004971 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004972 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004973 if (ret == -ERESTARTSYS)
4974 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004975out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004976 if (ret < 0)
4977 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004978 __io_req_complete(req, ret, 0, cs);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004979 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004980}
YueHaibing469956e2020-03-04 15:53:52 +08004981#else /* !CONFIG_NET */
4982static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4983{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004984 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004985}
4986
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004987static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4988 struct io_comp_state *cs)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004989{
YueHaibing469956e2020-03-04 15:53:52 +08004990 return -EOPNOTSUPP;
4991}
4992
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004993static int io_send(struct io_kiocb *req, bool force_nonblock,
4994 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004995{
4996 return -EOPNOTSUPP;
4997}
4998
4999static int io_recvmsg_prep(struct io_kiocb *req,
5000 const struct io_uring_sqe *sqe)
5001{
5002 return -EOPNOTSUPP;
5003}
5004
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005005static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
5006 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005007{
5008 return -EOPNOTSUPP;
5009}
5010
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005011static int io_recv(struct io_kiocb *req, bool force_nonblock,
5012 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005013{
5014 return -EOPNOTSUPP;
5015}
5016
5017static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5018{
5019 return -EOPNOTSUPP;
5020}
5021
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005022static int io_accept(struct io_kiocb *req, bool force_nonblock,
5023 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005024{
5025 return -EOPNOTSUPP;
5026}
5027
5028static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5029{
5030 return -EOPNOTSUPP;
5031}
5032
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005033static int io_connect(struct io_kiocb *req, bool force_nonblock,
5034 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005035{
5036 return -EOPNOTSUPP;
5037}
5038#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07005039
Jens Axboed7718a92020-02-14 22:23:12 -07005040struct io_poll_table {
5041 struct poll_table_struct pt;
5042 struct io_kiocb *req;
5043 int error;
5044};
5045
Jens Axboed7718a92020-02-14 22:23:12 -07005046static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
5047 __poll_t mask, task_work_func_t func)
5048{
Jens Axboefd7d6de2020-08-23 11:00:37 -06005049 bool twa_signal_ok;
Jens Axboeaa96bf82020-04-03 11:26:26 -06005050 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07005051
5052 /* for instances that support it check for an event match first: */
5053 if (mask && !(mask & poll->events))
5054 return 0;
5055
5056 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
5057
5058 list_del_init(&poll->wait.entry);
5059
Jens Axboed7718a92020-02-14 22:23:12 -07005060 req->result = mask;
5061 init_task_work(&req->task_work, func);
Jens Axboe6d816e02020-08-11 08:04:14 -06005062 percpu_ref_get(&req->ctx->refs);
5063
Jens Axboed7718a92020-02-14 22:23:12 -07005064 /*
Jens Axboefd7d6de2020-08-23 11:00:37 -06005065 * If we using the signalfd wait_queue_head for this wakeup, then
5066 * it's not safe to use TWA_SIGNAL as we could be recursing on the
5067 * tsk->sighand->siglock on doing the wakeup. Should not be needed
5068 * either, as the normal wakeup will suffice.
5069 */
5070 twa_signal_ok = (poll->head != &req->task->sighand->signalfd_wqh);
5071
5072 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06005073 * If this fails, then the task is exiting. When a task exits, the
5074 * work gets canceled, so just cancel this request as well instead
5075 * of executing it. We can't safely execute it anyway, as we may not
5076 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07005077 */
Jens Axboe87c43112020-09-30 21:00:14 -06005078 ret = io_req_task_work_add(req, twa_signal_ok);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005079 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06005080 struct task_struct *tsk;
5081
Jens Axboee3aabf92020-05-18 11:04:17 -06005082 WRITE_ONCE(poll->canceled, true);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005083 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06005084 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboece593a62020-06-30 12:39:05 -06005085 wake_up_process(tsk);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005086 }
Jens Axboed7718a92020-02-14 22:23:12 -07005087 return 1;
5088}
5089
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005090static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
5091 __acquires(&req->ctx->completion_lock)
5092{
5093 struct io_ring_ctx *ctx = req->ctx;
5094
5095 if (!req->result && !READ_ONCE(poll->canceled)) {
5096 struct poll_table_struct pt = { ._key = poll->events };
5097
5098 req->result = vfs_poll(req->file, &pt) & poll->events;
5099 }
5100
5101 spin_lock_irq(&ctx->completion_lock);
5102 if (!req->result && !READ_ONCE(poll->canceled)) {
5103 add_wait_queue(poll->head, &poll->wait);
5104 return true;
5105 }
5106
5107 return false;
5108}
5109
Jens Axboed4e7cd32020-08-15 11:44:50 -07005110static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06005111{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005112 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
Jens Axboed4e7cd32020-08-15 11:44:50 -07005113 if (req->opcode == IORING_OP_POLL_ADD)
Jens Axboee8c2bc12020-08-15 18:44:09 -07005114 return req->async_data;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005115 return req->apoll->double_poll;
5116}
5117
5118static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
5119{
5120 if (req->opcode == IORING_OP_POLL_ADD)
5121 return &req->poll;
5122 return &req->apoll->poll;
5123}
5124
5125static void io_poll_remove_double(struct io_kiocb *req)
5126{
5127 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005128
5129 lockdep_assert_held(&req->ctx->completion_lock);
5130
5131 if (poll && poll->head) {
5132 struct wait_queue_head *head = poll->head;
5133
5134 spin_lock(&head->lock);
5135 list_del_init(&poll->wait.entry);
5136 if (poll->wait.private)
5137 refcount_dec(&req->refs);
5138 poll->head = NULL;
5139 spin_unlock(&head->lock);
5140 }
5141}
5142
5143static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
5144{
5145 struct io_ring_ctx *ctx = req->ctx;
5146
Jens Axboed4e7cd32020-08-15 11:44:50 -07005147 io_poll_remove_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005148 req->poll.done = true;
5149 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
5150 io_commit_cqring(ctx);
5151}
5152
Jens Axboe18bceab2020-05-15 11:56:54 -06005153static void io_poll_task_func(struct callback_head *cb)
5154{
5155 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06005156 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005157 struct io_kiocb *nxt;
Jens Axboe18bceab2020-05-15 11:56:54 -06005158
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005159 if (io_poll_rewait(req, &req->poll)) {
5160 spin_unlock_irq(&ctx->completion_lock);
5161 } else {
5162 hash_del(&req->hash_node);
5163 io_poll_complete(req, req->result, 0);
5164 spin_unlock_irq(&ctx->completion_lock);
5165
5166 nxt = io_put_req_find_next(req);
5167 io_cqring_ev_posted(ctx);
5168 if (nxt)
5169 __io_req_task_submit(nxt);
5170 }
5171
Jens Axboe6d816e02020-08-11 08:04:14 -06005172 percpu_ref_put(&ctx->refs);
Jens Axboe18bceab2020-05-15 11:56:54 -06005173}
5174
5175static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
5176 int sync, void *key)
5177{
5178 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005179 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005180 __poll_t mask = key_to_poll(key);
5181
5182 /* for instances that support it check for an event match first: */
5183 if (mask && !(mask & poll->events))
5184 return 0;
5185
Jens Axboe8706e042020-09-28 08:38:54 -06005186 list_del_init(&wait->entry);
5187
Jens Axboe807abcb2020-07-17 17:09:27 -06005188 if (poll && poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005189 bool done;
5190
Jens Axboe807abcb2020-07-17 17:09:27 -06005191 spin_lock(&poll->head->lock);
5192 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06005193 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06005194 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005195 /* make sure double remove sees this as being gone */
5196 wait->private = NULL;
Jens Axboe807abcb2020-07-17 17:09:27 -06005197 spin_unlock(&poll->head->lock);
Jens Axboec8b5e262020-10-25 13:53:26 -06005198 if (!done) {
5199 /* use wait func handler, so it matches the rq type */
5200 poll->wait.func(&poll->wait, mode, sync, key);
5201 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005202 }
5203 refcount_dec(&req->refs);
5204 return 1;
5205}
5206
5207static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
5208 wait_queue_func_t wake_func)
5209{
5210 poll->head = NULL;
5211 poll->done = false;
5212 poll->canceled = false;
5213 poll->events = events;
5214 INIT_LIST_HEAD(&poll->wait.entry);
5215 init_waitqueue_func_entry(&poll->wait, wake_func);
5216}
5217
5218static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06005219 struct wait_queue_head *head,
5220 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06005221{
5222 struct io_kiocb *req = pt->req;
5223
5224 /*
5225 * If poll->head is already set, it's because the file being polled
5226 * uses multiple waitqueues for poll handling (eg one for read, one
5227 * for write). Setup a separate io_poll_iocb if this happens.
5228 */
5229 if (unlikely(poll->head)) {
Pavel Begunkov58852d42020-10-16 20:55:56 +01005230 struct io_poll_iocb *poll_one = poll;
5231
Jens Axboe18bceab2020-05-15 11:56:54 -06005232 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06005233 if (*poll_ptr) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005234 pt->error = -EINVAL;
5235 return;
5236 }
5237 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5238 if (!poll) {
5239 pt->error = -ENOMEM;
5240 return;
5241 }
Pavel Begunkov58852d42020-10-16 20:55:56 +01005242 io_init_poll_iocb(poll, poll_one->events, io_poll_double_wake);
Jens Axboe18bceab2020-05-15 11:56:54 -06005243 refcount_inc(&req->refs);
5244 poll->wait.private = req;
Jens Axboe807abcb2020-07-17 17:09:27 -06005245 *poll_ptr = poll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005246 }
5247
5248 pt->error = 0;
5249 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005250
5251 if (poll->events & EPOLLEXCLUSIVE)
5252 add_wait_queue_exclusive(head, &poll->wait);
5253 else
5254 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06005255}
5256
5257static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5258 struct poll_table_struct *p)
5259{
5260 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06005261 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005262
Jens Axboe807abcb2020-07-17 17:09:27 -06005263 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06005264}
5265
Jens Axboed7718a92020-02-14 22:23:12 -07005266static void io_async_task_func(struct callback_head *cb)
5267{
5268 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
5269 struct async_poll *apoll = req->apoll;
5270 struct io_ring_ctx *ctx = req->ctx;
5271
5272 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
5273
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005274 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07005275 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe6d816e02020-08-11 08:04:14 -06005276 percpu_ref_put(&ctx->refs);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005277 return;
Jens Axboed7718a92020-02-14 22:23:12 -07005278 }
5279
Jens Axboe31067252020-05-17 17:43:31 -06005280 /* If req is still hashed, it cannot have been canceled. Don't check. */
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005281 if (hash_hashed(&req->hash_node))
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005282 hash_del(&req->hash_node);
Jens Axboe2bae0472020-04-13 11:16:34 -06005283
Jens Axboed4e7cd32020-08-15 11:44:50 -07005284 io_poll_remove_double(req);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005285 spin_unlock_irq(&ctx->completion_lock);
5286
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005287 if (!READ_ONCE(apoll->poll.canceled))
5288 __io_req_task_submit(req);
5289 else
5290 __io_req_task_cancel(req, -ECANCELED);
Dan Carpenteraa340842020-07-08 21:47:11 +03005291
Jens Axboe6d816e02020-08-11 08:04:14 -06005292 percpu_ref_put(&ctx->refs);
Jens Axboe807abcb2020-07-17 17:09:27 -06005293 kfree(apoll->double_poll);
Jens Axboe31067252020-05-17 17:43:31 -06005294 kfree(apoll);
Jens Axboed7718a92020-02-14 22:23:12 -07005295}
5296
5297static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5298 void *key)
5299{
5300 struct io_kiocb *req = wait->private;
5301 struct io_poll_iocb *poll = &req->apoll->poll;
5302
5303 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
5304 key_to_poll(key));
5305
5306 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
5307}
5308
5309static void io_poll_req_insert(struct io_kiocb *req)
5310{
5311 struct io_ring_ctx *ctx = req->ctx;
5312 struct hlist_head *list;
5313
5314 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
5315 hlist_add_head(&req->hash_node, list);
5316}
5317
5318static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
5319 struct io_poll_iocb *poll,
5320 struct io_poll_table *ipt, __poll_t mask,
5321 wait_queue_func_t wake_func)
5322 __acquires(&ctx->completion_lock)
5323{
5324 struct io_ring_ctx *ctx = req->ctx;
5325 bool cancel = false;
5326
Pavel Begunkov4d52f332020-10-18 10:17:43 +01005327 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe18bceab2020-05-15 11:56:54 -06005328 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03005329 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06005330 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07005331
5332 ipt->pt._key = mask;
5333 ipt->req = req;
5334 ipt->error = -EINVAL;
5335
Jens Axboed7718a92020-02-14 22:23:12 -07005336 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
5337
5338 spin_lock_irq(&ctx->completion_lock);
5339 if (likely(poll->head)) {
5340 spin_lock(&poll->head->lock);
5341 if (unlikely(list_empty(&poll->wait.entry))) {
5342 if (ipt->error)
5343 cancel = true;
5344 ipt->error = 0;
5345 mask = 0;
5346 }
5347 if (mask || ipt->error)
5348 list_del_init(&poll->wait.entry);
5349 else if (cancel)
5350 WRITE_ONCE(poll->canceled, true);
5351 else if (!poll->done) /* actually waiting for an event */
5352 io_poll_req_insert(req);
5353 spin_unlock(&poll->head->lock);
5354 }
5355
5356 return mask;
5357}
5358
5359static bool io_arm_poll_handler(struct io_kiocb *req)
5360{
5361 const struct io_op_def *def = &io_op_defs[req->opcode];
5362 struct io_ring_ctx *ctx = req->ctx;
5363 struct async_poll *apoll;
5364 struct io_poll_table ipt;
5365 __poll_t mask, ret;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005366 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07005367
5368 if (!req->file || !file_can_poll(req->file))
5369 return false;
Pavel Begunkov24c74672020-06-21 13:09:51 +03005370 if (req->flags & REQ_F_POLLED)
Jens Axboed7718a92020-02-14 22:23:12 -07005371 return false;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005372 if (def->pollin)
5373 rw = READ;
5374 else if (def->pollout)
5375 rw = WRITE;
5376 else
5377 return false;
5378 /* if we can't nonblock try, then no point in arming a poll handler */
5379 if (!io_file_supports_async(req->file, rw))
Jens Axboed7718a92020-02-14 22:23:12 -07005380 return false;
5381
5382 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5383 if (unlikely(!apoll))
5384 return false;
Jens Axboe807abcb2020-07-17 17:09:27 -06005385 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005386
5387 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07005388 req->apoll = apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07005389
Nathan Chancellor8755d972020-03-02 16:01:19 -07005390 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07005391 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07005392 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07005393 if (def->pollout)
5394 mask |= POLLOUT | POLLWRNORM;
Luke Hsiao901341b2020-08-21 21:41:05 -07005395
5396 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
5397 if ((req->opcode == IORING_OP_RECVMSG) &&
5398 (req->sr_msg.msg_flags & MSG_ERRQUEUE))
5399 mask &= ~POLLIN;
5400
Jens Axboed7718a92020-02-14 22:23:12 -07005401 mask |= POLLERR | POLLPRI;
5402
5403 ipt.pt._qproc = io_async_queue_proc;
5404
5405 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
5406 io_async_wake);
Jens Axboea36da652020-08-11 09:50:19 -06005407 if (ret || ipt.error) {
Jens Axboed4e7cd32020-08-15 11:44:50 -07005408 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005409 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe807abcb2020-07-17 17:09:27 -06005410 kfree(apoll->double_poll);
Jens Axboed7718a92020-02-14 22:23:12 -07005411 kfree(apoll);
5412 return false;
5413 }
5414 spin_unlock_irq(&ctx->completion_lock);
5415 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
5416 apoll->poll.events);
5417 return true;
5418}
5419
5420static bool __io_poll_remove_one(struct io_kiocb *req,
5421 struct io_poll_iocb *poll)
5422{
Jens Axboeb41e9852020-02-17 09:52:41 -07005423 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005424
5425 spin_lock(&poll->head->lock);
5426 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005427 if (!list_empty(&poll->wait.entry)) {
5428 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005429 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005430 }
5431 spin_unlock(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005432 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005433 return do_complete;
5434}
5435
5436static bool io_poll_remove_one(struct io_kiocb *req)
5437{
5438 bool do_complete;
5439
Jens Axboed4e7cd32020-08-15 11:44:50 -07005440 io_poll_remove_double(req);
5441
Jens Axboed7718a92020-02-14 22:23:12 -07005442 if (req->opcode == IORING_OP_POLL_ADD) {
5443 do_complete = __io_poll_remove_one(req, &req->poll);
5444 } else {
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005445 struct async_poll *apoll = req->apoll;
5446
Jens Axboed7718a92020-02-14 22:23:12 -07005447 /* non-poll requests have submit ref still */
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005448 do_complete = __io_poll_remove_one(req, &apoll->poll);
5449 if (do_complete) {
Jens Axboed7718a92020-02-14 22:23:12 -07005450 io_put_req(req);
Jens Axboe807abcb2020-07-17 17:09:27 -06005451 kfree(apoll->double_poll);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005452 kfree(apoll);
5453 }
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08005454 }
5455
Jens Axboeb41e9852020-02-17 09:52:41 -07005456 if (do_complete) {
5457 io_cqring_fill_event(req, -ECANCELED);
5458 io_commit_cqring(req->ctx);
Jens Axboef254ac02020-08-12 17:33:30 -06005459 req_set_fail_links(req);
Pavel Begunkov216578e2020-10-13 09:44:00 +01005460 io_put_req_deferred(req, 1);
Jens Axboeb41e9852020-02-17 09:52:41 -07005461 }
5462
5463 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005464}
5465
Jens Axboe76e1b642020-09-26 15:05:03 -06005466/*
5467 * Returns true if we found and killed one or more poll requests
5468 */
Pavel Begunkov6b819282020-11-06 13:00:25 +00005469static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk,
5470 struct files_struct *files)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005471{
Jens Axboe78076bb2019-12-04 19:56:40 -07005472 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005473 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005474 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005475
5476 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005477 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5478 struct hlist_head *list;
5479
5480 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005481 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
Pavel Begunkov6b819282020-11-06 13:00:25 +00005482 if (io_match_task(req, tsk, files))
Jens Axboef3606e32020-09-22 08:18:24 -06005483 posted += io_poll_remove_one(req);
5484 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005485 }
5486 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005487
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005488 if (posted)
5489 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005490
5491 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005492}
5493
Jens Axboe47f46762019-11-09 17:43:02 -07005494static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
5495{
Jens Axboe78076bb2019-12-04 19:56:40 -07005496 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005497 struct io_kiocb *req;
5498
Jens Axboe78076bb2019-12-04 19:56:40 -07005499 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5500 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005501 if (sqe_addr != req->user_data)
5502 continue;
5503 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07005504 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07005505 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07005506 }
5507
5508 return -ENOENT;
5509}
5510
Jens Axboe3529d8c2019-12-19 18:24:38 -07005511static int io_poll_remove_prep(struct io_kiocb *req,
5512 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005513{
Jens Axboe221c5eb2019-01-17 09:41:58 -07005514 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5515 return -EINVAL;
5516 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
5517 sqe->poll_events)
5518 return -EINVAL;
5519
Pavel Begunkov018043b2020-10-27 23:17:18 +00005520 req->poll_remove.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07005521 return 0;
5522}
5523
5524/*
5525 * Find a running poll command that matches one specified in sqe->addr,
5526 * and remove it if found.
5527 */
5528static int io_poll_remove(struct io_kiocb *req)
5529{
5530 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe0969e782019-12-17 18:40:57 -07005531 int ret;
5532
Jens Axboe221c5eb2019-01-17 09:41:58 -07005533 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov018043b2020-10-27 23:17:18 +00005534 ret = io_poll_cancel(ctx, req->poll_remove.addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005535 spin_unlock_irq(&ctx->completion_lock);
5536
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005537 if (ret < 0)
5538 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06005539 io_req_complete(req, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005540 return 0;
5541}
5542
Jens Axboe221c5eb2019-01-17 09:41:58 -07005543static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5544 void *key)
5545{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005546 struct io_kiocb *req = wait->private;
5547 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005548
Jens Axboed7718a92020-02-14 22:23:12 -07005549 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005550}
5551
Jens Axboe221c5eb2019-01-17 09:41:58 -07005552static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5553 struct poll_table_struct *p)
5554{
5555 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5556
Jens Axboee8c2bc12020-08-15 18:44:09 -07005557 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->async_data);
Jens Axboeeac406c2019-11-14 12:09:58 -07005558}
5559
Jens Axboe3529d8c2019-12-19 18:24:38 -07005560static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005561{
5562 struct io_poll_iocb *poll = &req->poll;
Jiufei Xue5769a352020-06-17 17:53:55 +08005563 u32 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005564
5565 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5566 return -EINVAL;
5567 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
5568 return -EINVAL;
5569
Jiufei Xue5769a352020-06-17 17:53:55 +08005570 events = READ_ONCE(sqe->poll32_events);
5571#ifdef __BIG_ENDIAN
5572 events = swahw32(events);
5573#endif
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005574 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP |
5575 (events & EPOLLEXCLUSIVE);
Jens Axboe0969e782019-12-17 18:40:57 -07005576 return 0;
5577}
5578
Pavel Begunkov014db002020-03-03 21:33:12 +03005579static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07005580{
5581 struct io_poll_iocb *poll = &req->poll;
5582 struct io_ring_ctx *ctx = req->ctx;
5583 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005584 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07005585
Jens Axboed7718a92020-02-14 22:23:12 -07005586 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005587
Jens Axboed7718a92020-02-14 22:23:12 -07005588 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5589 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005590
Jens Axboe8c838782019-03-12 15:48:16 -06005591 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005592 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005593 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06005594 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005595 spin_unlock_irq(&ctx->completion_lock);
5596
Jens Axboe8c838782019-03-12 15:48:16 -06005597 if (mask) {
5598 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03005599 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005600 }
Jens Axboe8c838782019-03-12 15:48:16 -06005601 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005602}
5603
Jens Axboe5262f562019-09-17 12:26:57 -06005604static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5605{
Jens Axboead8a48a2019-11-15 08:49:11 -07005606 struct io_timeout_data *data = container_of(timer,
5607 struct io_timeout_data, timer);
5608 struct io_kiocb *req = data->req;
5609 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005610 unsigned long flags;
5611
Jens Axboe5262f562019-09-17 12:26:57 -06005612 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkova71976f2020-10-10 18:34:11 +01005613 list_del_init(&req->timeout.list);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005614 atomic_set(&req->ctx->cq_timeouts,
5615 atomic_read(&req->ctx->cq_timeouts) + 1);
5616
Jens Axboe78e19bb2019-11-06 15:21:34 -07005617 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06005618 io_commit_cqring(ctx);
5619 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5620
5621 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005622 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005623 io_put_req(req);
5624 return HRTIMER_NORESTART;
5625}
5626
Jens Axboef254ac02020-08-12 17:33:30 -06005627static int __io_timeout_cancel(struct io_kiocb *req)
Jens Axboe47f46762019-11-09 17:43:02 -07005628{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005629 struct io_timeout_data *io = req->async_data;
Jens Axboef254ac02020-08-12 17:33:30 -06005630 int ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005631
Jens Axboee8c2bc12020-08-15 18:44:09 -07005632 ret = hrtimer_try_to_cancel(&io->timer);
Jens Axboe47f46762019-11-09 17:43:02 -07005633 if (ret == -1)
5634 return -EALREADY;
Pavel Begunkova71976f2020-10-10 18:34:11 +01005635 list_del_init(&req->timeout.list);
Jens Axboe47f46762019-11-09 17:43:02 -07005636
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005637 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005638 io_cqring_fill_event(req, -ECANCELED);
Pavel Begunkov216578e2020-10-13 09:44:00 +01005639 io_put_req_deferred(req, 1);
Jens Axboe47f46762019-11-09 17:43:02 -07005640 return 0;
5641}
5642
Jens Axboef254ac02020-08-12 17:33:30 -06005643static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
5644{
5645 struct io_kiocb *req;
5646 int ret = -ENOENT;
5647
5648 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
5649 if (user_data == req->user_data) {
5650 ret = 0;
5651 break;
5652 }
5653 }
5654
5655 if (ret == -ENOENT)
5656 return ret;
5657
5658 return __io_timeout_cancel(req);
5659}
5660
Jens Axboe3529d8c2019-12-19 18:24:38 -07005661static int io_timeout_remove_prep(struct io_kiocb *req,
5662 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07005663{
Jens Axboeb29472e2019-12-17 18:50:29 -07005664 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5665 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005666 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5667 return -EINVAL;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005668 if (sqe->ioprio || sqe->buf_index || sqe->len || sqe->timeout_flags)
Jens Axboeb29472e2019-12-17 18:50:29 -07005669 return -EINVAL;
5670
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005671 req->timeout_rem.addr = READ_ONCE(sqe->addr);
Jens Axboeb29472e2019-12-17 18:50:29 -07005672 return 0;
5673}
5674
Jens Axboe11365042019-10-16 09:08:32 -06005675/*
5676 * Remove or update an existing timeout command
5677 */
Jens Axboefc4df992019-12-10 14:38:45 -07005678static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06005679{
5680 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07005681 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06005682
Jens Axboe11365042019-10-16 09:08:32 -06005683 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005684 ret = io_timeout_cancel(ctx, req->timeout_rem.addr);
Jens Axboe11365042019-10-16 09:08:32 -06005685
Jens Axboe47f46762019-11-09 17:43:02 -07005686 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06005687 io_commit_cqring(ctx);
5688 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005689 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005690 if (ret < 0)
5691 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08005692 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06005693 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06005694}
5695
Jens Axboe3529d8c2019-12-19 18:24:38 -07005696static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07005697 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06005698{
Jens Axboead8a48a2019-11-15 08:49:11 -07005699 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06005700 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005701 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06005702
Jens Axboead8a48a2019-11-15 08:49:11 -07005703 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06005704 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07005705 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06005706 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005707 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07005708 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06005709 flags = READ_ONCE(sqe->timeout_flags);
5710 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06005711 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06005712
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005713 req->timeout.off = off;
Jens Axboe26a61672019-12-20 09:02:01 -07005714
Jens Axboee8c2bc12020-08-15 18:44:09 -07005715 if (!req->async_data && io_alloc_async_data(req))
Jens Axboe26a61672019-12-20 09:02:01 -07005716 return -ENOMEM;
5717
Jens Axboee8c2bc12020-08-15 18:44:09 -07005718 data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07005719 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07005720
5721 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06005722 return -EFAULT;
5723
Jens Axboe11365042019-10-16 09:08:32 -06005724 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07005725 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06005726 else
Jens Axboead8a48a2019-11-15 08:49:11 -07005727 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06005728
Jens Axboead8a48a2019-11-15 08:49:11 -07005729 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
5730 return 0;
5731}
5732
Jens Axboefc4df992019-12-10 14:38:45 -07005733static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07005734{
Jens Axboead8a48a2019-11-15 08:49:11 -07005735 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005736 struct io_timeout_data *data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07005737 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005738 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07005739
Pavel Begunkov733f5c92020-05-26 20:34:03 +03005740 spin_lock_irq(&ctx->completion_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07005741
Jens Axboe5262f562019-09-17 12:26:57 -06005742 /*
5743 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07005744 * timeout event to be satisfied. If it isn't set, then this is
5745 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06005746 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005747 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07005748 entry = ctx->timeout_list.prev;
5749 goto add;
5750 }
Jens Axboe5262f562019-09-17 12:26:57 -06005751
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005752 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
5753 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06005754
5755 /*
5756 * Insertion sort, ensuring the first entry in the list is always
5757 * the one we need first.
5758 */
Jens Axboe5262f562019-09-17 12:26:57 -06005759 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005760 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
5761 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06005762
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005763 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07005764 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005765 /* nxt.seq is behind @tail, otherwise would've been completed */
5766 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06005767 break;
5768 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07005769add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005770 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07005771 data->timer.function = io_timeout_fn;
5772 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06005773 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005774 return 0;
5775}
5776
Jens Axboe62755e32019-10-28 21:49:21 -06005777static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06005778{
Jens Axboe62755e32019-10-28 21:49:21 -06005779 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06005780
Jens Axboe62755e32019-10-28 21:49:21 -06005781 return req->user_data == (unsigned long) data;
5782}
5783
Jens Axboee977d6d2019-11-05 12:39:45 -07005784static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06005785{
Jens Axboe62755e32019-10-28 21:49:21 -06005786 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06005787 int ret = 0;
5788
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03005789 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr, false);
Jens Axboe62755e32019-10-28 21:49:21 -06005790 switch (cancel_ret) {
5791 case IO_WQ_CANCEL_OK:
5792 ret = 0;
5793 break;
5794 case IO_WQ_CANCEL_RUNNING:
5795 ret = -EALREADY;
5796 break;
5797 case IO_WQ_CANCEL_NOTFOUND:
5798 ret = -ENOENT;
5799 break;
5800 }
5801
Jens Axboee977d6d2019-11-05 12:39:45 -07005802 return ret;
5803}
5804
Jens Axboe47f46762019-11-09 17:43:02 -07005805static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
5806 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03005807 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07005808{
5809 unsigned long flags;
5810 int ret;
5811
5812 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
5813 if (ret != -ENOENT) {
5814 spin_lock_irqsave(&ctx->completion_lock, flags);
5815 goto done;
5816 }
5817
5818 spin_lock_irqsave(&ctx->completion_lock, flags);
5819 ret = io_timeout_cancel(ctx, sqe_addr);
5820 if (ret != -ENOENT)
5821 goto done;
5822 ret = io_poll_cancel(ctx, sqe_addr);
5823done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005824 if (!ret)
5825 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005826 io_cqring_fill_event(req, ret);
5827 io_commit_cqring(ctx);
5828 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5829 io_cqring_ev_posted(ctx);
5830
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005831 if (ret < 0)
5832 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03005833 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005834}
5835
Jens Axboe3529d8c2019-12-19 18:24:38 -07005836static int io_async_cancel_prep(struct io_kiocb *req,
5837 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07005838{
Jens Axboefbf23842019-12-17 18:45:56 -07005839 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07005840 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005841 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5842 return -EINVAL;
5843 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags)
Jens Axboee977d6d2019-11-05 12:39:45 -07005844 return -EINVAL;
5845
Jens Axboefbf23842019-12-17 18:45:56 -07005846 req->cancel.addr = READ_ONCE(sqe->addr);
5847 return 0;
5848}
5849
Pavel Begunkov014db002020-03-03 21:33:12 +03005850static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07005851{
5852 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07005853
Pavel Begunkov014db002020-03-03 21:33:12 +03005854 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06005855 return 0;
5856}
5857
Jens Axboe05f3fb32019-12-09 11:22:50 -07005858static int io_files_update_prep(struct io_kiocb *req,
5859 const struct io_uring_sqe *sqe)
5860{
Jens Axboe6ca56f82020-09-18 16:51:19 -06005861 if (unlikely(req->ctx->flags & IORING_SETUP_SQPOLL))
5862 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005863 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5864 return -EINVAL;
5865 if (sqe->ioprio || sqe->rw_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005866 return -EINVAL;
5867
5868 req->files_update.offset = READ_ONCE(sqe->off);
5869 req->files_update.nr_args = READ_ONCE(sqe->len);
5870 if (!req->files_update.nr_args)
5871 return -EINVAL;
5872 req->files_update.arg = READ_ONCE(sqe->addr);
5873 return 0;
5874}
5875
Jens Axboe229a7b62020-06-22 10:13:11 -06005876static int io_files_update(struct io_kiocb *req, bool force_nonblock,
5877 struct io_comp_state *cs)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005878{
5879 struct io_ring_ctx *ctx = req->ctx;
5880 struct io_uring_files_update up;
5881 int ret;
5882
Jens Axboef86cd202020-01-29 13:46:44 -07005883 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005884 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005885
5886 up.offset = req->files_update.offset;
5887 up.fds = req->files_update.arg;
5888
5889 mutex_lock(&ctx->uring_lock);
5890 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
5891 mutex_unlock(&ctx->uring_lock);
5892
5893 if (ret < 0)
5894 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06005895 __io_req_complete(req, ret, 0, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005896 return 0;
5897}
5898
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005899static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07005900{
Jens Axboed625c6e2019-12-17 19:53:05 -07005901 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07005902 case IORING_OP_NOP:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005903 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07005904 case IORING_OP_READV:
5905 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005906 case IORING_OP_READ:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005907 return io_read_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07005908 case IORING_OP_WRITEV:
5909 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005910 case IORING_OP_WRITE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005911 return io_write_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005912 case IORING_OP_POLL_ADD:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005913 return io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005914 case IORING_OP_POLL_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005915 return io_poll_remove_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005916 case IORING_OP_FSYNC:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005917 return io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005918 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005919 return io_prep_sfr(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005920 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005921 case IORING_OP_SEND:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005922 return io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005923 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005924 case IORING_OP_RECV:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005925 return io_recvmsg_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07005926 case IORING_OP_CONNECT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005927 return io_connect_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005928 case IORING_OP_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005929 return io_timeout_prep(req, sqe, false);
Jens Axboeb29472e2019-12-17 18:50:29 -07005930 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005931 return io_timeout_remove_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07005932 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005933 return io_async_cancel_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005934 case IORING_OP_LINK_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005935 return io_timeout_prep(req, sqe, true);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005936 case IORING_OP_ACCEPT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005937 return io_accept_prep(req, sqe);
Jens Axboed63d1b52019-12-10 10:38:56 -07005938 case IORING_OP_FALLOCATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005939 return io_fallocate_prep(req, sqe);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005940 case IORING_OP_OPENAT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005941 return io_openat_prep(req, sqe);
Jens Axboeb5dba592019-12-11 14:02:38 -07005942 case IORING_OP_CLOSE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005943 return io_close_prep(req, sqe);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005944 case IORING_OP_FILES_UPDATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005945 return io_files_update_prep(req, sqe);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005946 case IORING_OP_STATX:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005947 return io_statx_prep(req, sqe);
Jens Axboe4840e412019-12-25 22:03:45 -07005948 case IORING_OP_FADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005949 return io_fadvise_prep(req, sqe);
Jens Axboec1ca7572019-12-25 22:18:28 -07005950 case IORING_OP_MADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005951 return io_madvise_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07005952 case IORING_OP_OPENAT2:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005953 return io_openat2_prep(req, sqe);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005954 case IORING_OP_EPOLL_CTL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005955 return io_epoll_ctl_prep(req, sqe);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005956 case IORING_OP_SPLICE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005957 return io_splice_prep(req, sqe);
Jens Axboeddf0322d2020-02-23 16:41:33 -07005958 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005959 return io_provide_buffers_prep(req, sqe);
Jens Axboe067524e2020-03-02 16:32:28 -07005960 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005961 return io_remove_buffers_prep(req, sqe);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03005962 case IORING_OP_TEE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005963 return io_tee_prep(req, sqe);
Jens Axboe36f4fa62020-09-05 11:14:22 -06005964 case IORING_OP_SHUTDOWN:
5965 return io_shutdown_prep(req, sqe);
Jens Axboe80a261f2020-09-28 14:23:58 -06005966 case IORING_OP_RENAMEAT:
5967 return io_renameat_prep(req, sqe);
Jens Axboe14a11432020-09-28 14:27:37 -06005968 case IORING_OP_UNLINKAT:
5969 return io_unlinkat_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07005970 }
5971
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005972 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5973 req->opcode);
5974 return-EINVAL;
5975}
5976
Jens Axboedef596e2019-01-09 08:59:42 -07005977static int io_req_defer_prep(struct io_kiocb *req,
5978 const struct io_uring_sqe *sqe)
Jens Axboedef596e2019-01-09 08:59:42 -07005979{
Jens Axboedef596e2019-01-09 08:59:42 -07005980 if (!sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005981 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005982 if (io_alloc_async_data(req))
Jens Axboeb76da702019-11-20 13:05:32 -07005983 return -EAGAIN;
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005984 return io_req_prep(req, sqe);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005985}
5986
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005987static u32 io_get_sequence(struct io_kiocb *req)
5988{
5989 struct io_kiocb *pos;
5990 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00005991 u32 total_submitted, nr_reqs = 0;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005992
Pavel Begunkovf2f87372020-10-27 23:25:37 +00005993 io_for_each_link(pos, req)
5994 nr_reqs++;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005995
5996 total_submitted = ctx->cached_sq_head - ctx->cached_sq_dropped;
5997 return total_submitted - nr_reqs;
5998}
5999
Jens Axboe3529d8c2019-12-19 18:24:38 -07006000static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006001{
6002 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006003 struct io_defer_entry *de;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006004 int ret;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006005 u32 seq;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006006
6007 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006008 if (likely(list_empty_careful(&ctx->defer_list) &&
6009 !(req->flags & REQ_F_IO_DRAIN)))
6010 return 0;
6011
6012 seq = io_get_sequence(req);
6013 /* Still a chance to pass the sequence check */
6014 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006015 return 0;
6016
Jens Axboee8c2bc12020-08-15 18:44:09 -07006017 if (!req->async_data) {
Pavel Begunkov650b5482020-05-17 14:02:11 +03006018 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006019 if (ret)
Pavel Begunkov650b5482020-05-17 14:02:11 +03006020 return ret;
6021 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03006022 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006023 de = kmalloc(sizeof(*de), GFP_KERNEL);
6024 if (!de)
6025 return -ENOMEM;
Jens Axboe31b51512019-01-18 22:56:34 -07006026
6027 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006028 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboe31b51512019-01-18 22:56:34 -07006029 spin_unlock_irq(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006030 kfree(de);
Pavel Begunkovae348172020-07-23 20:25:20 +03006031 io_queue_async_work(req);
6032 return -EIOCBQUEUED;
Jens Axboe31b51512019-01-18 22:56:34 -07006033 }
6034
6035 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006036 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006037 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006038 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboe31b51512019-01-18 22:56:34 -07006039 spin_unlock_irq(&ctx->completion_lock);
6040 return -EIOCBQUEUED;
6041}
Jens Axboeedafcce2019-01-09 09:16:05 -07006042
Jens Axboef573d382020-09-22 10:19:24 -06006043static void io_req_drop_files(struct io_kiocb *req)
6044{
6045 struct io_ring_ctx *ctx = req->ctx;
6046 unsigned long flags;
6047
6048 spin_lock_irqsave(&ctx->inflight_lock, flags);
6049 list_del(&req->inflight_entry);
6050 if (waitqueue_active(&ctx->inflight_wait))
6051 wake_up(&ctx->inflight_wait);
6052 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
6053 req->flags &= ~REQ_F_INFLIGHT;
Jens Axboe98447d62020-10-14 10:48:51 -06006054 put_files_struct(req->work.identity->files);
6055 put_nsproxy(req->work.identity->nsproxy);
Jens Axboedfead8a2020-10-14 10:12:37 -06006056 req->work.flags &= ~IO_WQ_WORK_FILES;
Jens Axboef573d382020-09-22 10:19:24 -06006057}
6058
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03006059static void __io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006060{
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006061 if (req->flags & REQ_F_BUFFER_SELECTED) {
6062 switch (req->opcode) {
6063 case IORING_OP_READV:
6064 case IORING_OP_READ_FIXED:
6065 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07006066 kfree((void *)(unsigned long)req->rw.addr);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006067 break;
6068 case IORING_OP_RECVMSG:
6069 case IORING_OP_RECV:
Jens Axboe52de1fe2020-02-27 10:15:42 -07006070 kfree(req->sr_msg.kbuf);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006071 break;
6072 }
6073 req->flags &= ~REQ_F_BUFFER_SELECTED;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006074 }
6075
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006076 if (req->flags & REQ_F_NEED_CLEANUP) {
6077 switch (req->opcode) {
6078 case IORING_OP_READV:
6079 case IORING_OP_READ_FIXED:
6080 case IORING_OP_READ:
6081 case IORING_OP_WRITEV:
6082 case IORING_OP_WRITE_FIXED:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006083 case IORING_OP_WRITE: {
6084 struct io_async_rw *io = req->async_data;
6085 if (io->free_iovec)
6086 kfree(io->free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006087 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006088 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006089 case IORING_OP_RECVMSG:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006090 case IORING_OP_SENDMSG: {
6091 struct io_async_msghdr *io = req->async_data;
6092 if (io->iov != io->fast_iov)
6093 kfree(io->iov);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006094 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006095 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006096 case IORING_OP_SPLICE:
6097 case IORING_OP_TEE:
6098 io_put_file(req, req->splice.file_in,
6099 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
6100 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06006101 case IORING_OP_OPENAT:
6102 case IORING_OP_OPENAT2:
6103 if (req->open.filename)
6104 putname(req->open.filename);
6105 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006106 case IORING_OP_RENAMEAT:
6107 putname(req->rename.oldpath);
6108 putname(req->rename.newpath);
6109 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006110 case IORING_OP_UNLINKAT:
6111 putname(req->unlink.filename);
6112 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006113 }
6114 req->flags &= ~REQ_F_NEED_CLEANUP;
6115 }
Pavel Begunkovbb175342020-08-20 11:33:35 +03006116
Jens Axboef573d382020-09-22 10:19:24 -06006117 if (req->flags & REQ_F_INFLIGHT)
6118 io_req_drop_files(req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006119}
6120
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006121static int io_issue_sqe(struct io_kiocb *req, bool force_nonblock,
6122 struct io_comp_state *cs)
Jens Axboeedafcce2019-01-09 09:16:05 -07006123{
Jens Axboeedafcce2019-01-09 09:16:05 -07006124 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07006125 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07006126
Jens Axboed625c6e2019-12-17 19:53:05 -07006127 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07006128 case IORING_OP_NOP:
Jens Axboe229a7b62020-06-22 10:13:11 -06006129 ret = io_nop(req, cs);
Jens Axboe31b51512019-01-18 22:56:34 -07006130 break;
6131 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07006132 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006133 case IORING_OP_READ:
Jens Axboea1d7c392020-06-22 11:09:46 -06006134 ret = io_read(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006135 break;
6136 case IORING_OP_WRITEV:
Jens Axboe2b188cc2019-01-07 10:46:33 -07006137 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006138 case IORING_OP_WRITE:
Jens Axboea1d7c392020-06-22 11:09:46 -06006139 ret = io_write(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006140 break;
6141 case IORING_OP_FSYNC:
Pavel Begunkov014db002020-03-03 21:33:12 +03006142 ret = io_fsync(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006143 break;
6144 case IORING_OP_POLL_ADD:
Pavel Begunkov014db002020-03-03 21:33:12 +03006145 ret = io_poll_add(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006146 break;
6147 case IORING_OP_POLL_REMOVE:
Jens Axboeb76da702019-11-20 13:05:32 -07006148 ret = io_poll_remove(req);
6149 break;
6150 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006151 ret = io_sync_file_range(req, force_nonblock);
Jens Axboeb76da702019-11-20 13:05:32 -07006152 break;
6153 case IORING_OP_SENDMSG:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006154 ret = io_sendmsg(req, force_nonblock, cs);
6155 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006156 case IORING_OP_SEND:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006157 ret = io_send(req, force_nonblock, cs);
Jens Axboeb76da702019-11-20 13:05:32 -07006158 break;
6159 case IORING_OP_RECVMSG:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006160 ret = io_recvmsg(req, force_nonblock, cs);
6161 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006162 case IORING_OP_RECV:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006163 ret = io_recv(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006164 break;
6165 case IORING_OP_TIMEOUT:
6166 ret = io_timeout(req);
6167 break;
6168 case IORING_OP_TIMEOUT_REMOVE:
6169 ret = io_timeout_remove(req);
6170 break;
6171 case IORING_OP_ACCEPT:
Jens Axboe229a7b62020-06-22 10:13:11 -06006172 ret = io_accept(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006173 break;
6174 case IORING_OP_CONNECT:
Jens Axboe229a7b62020-06-22 10:13:11 -06006175 ret = io_connect(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006176 break;
6177 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkov014db002020-03-03 21:33:12 +03006178 ret = io_async_cancel(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006179 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07006180 case IORING_OP_FALLOCATE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006181 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07006182 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07006183 case IORING_OP_OPENAT:
Pavel Begunkov014db002020-03-03 21:33:12 +03006184 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006185 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07006186 case IORING_OP_CLOSE:
Jens Axboe229a7b62020-06-22 10:13:11 -06006187 ret = io_close(req, force_nonblock, cs);
Jens Axboeb5dba592019-12-11 14:02:38 -07006188 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006189 case IORING_OP_FILES_UPDATE:
Jens Axboe229a7b62020-06-22 10:13:11 -06006190 ret = io_files_update(req, force_nonblock, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006191 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006192 case IORING_OP_STATX:
Pavel Begunkov014db002020-03-03 21:33:12 +03006193 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006194 break;
Jens Axboe4840e412019-12-25 22:03:45 -07006195 case IORING_OP_FADVISE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006196 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07006197 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07006198 case IORING_OP_MADVISE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006199 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07006200 break;
Jens Axboecebdb982020-01-08 17:59:24 -07006201 case IORING_OP_OPENAT2:
Pavel Begunkov014db002020-03-03 21:33:12 +03006202 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07006203 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07006204 case IORING_OP_EPOLL_CTL:
Jens Axboe229a7b62020-06-22 10:13:11 -06006205 ret = io_epoll_ctl(req, force_nonblock, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006206 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006207 case IORING_OP_SPLICE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006208 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006209 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07006210 case IORING_OP_PROVIDE_BUFFERS:
Jens Axboe229a7b62020-06-22 10:13:11 -06006211 ret = io_provide_buffers(req, force_nonblock, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006212 break;
Jens Axboe067524e2020-03-02 16:32:28 -07006213 case IORING_OP_REMOVE_BUFFERS:
Jens Axboe229a7b62020-06-22 10:13:11 -06006214 ret = io_remove_buffers(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006215 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006216 case IORING_OP_TEE:
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006217 ret = io_tee(req, force_nonblock);
6218 break;
Jens Axboe36f4fa62020-09-05 11:14:22 -06006219 case IORING_OP_SHUTDOWN:
6220 ret = io_shutdown(req, force_nonblock);
6221 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006222 case IORING_OP_RENAMEAT:
6223 ret = io_renameat(req, force_nonblock);
6224 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006225 case IORING_OP_UNLINKAT:
6226 ret = io_unlinkat(req, force_nonblock);
6227 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006228 default:
6229 ret = -EINVAL;
6230 break;
Jens Axboe31b51512019-01-18 22:56:34 -07006231 }
6232
6233 if (ret)
Jens Axboeedafcce2019-01-09 09:16:05 -07006234 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006235
Jens Axboeb5325762020-05-19 21:20:27 -06006236 /* If the op doesn't have a file, we're not polling for it */
6237 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file) {
Jens Axboe11ba8202020-01-15 21:51:17 -07006238 const bool in_async = io_wq_current_is_worker();
6239
Jens Axboe11ba8202020-01-15 21:51:17 -07006240 /* workqueue context doesn't hold uring_lock, grab it now */
6241 if (in_async)
6242 mutex_lock(&ctx->uring_lock);
6243
Jens Axboe2b188cc2019-01-07 10:46:33 -07006244 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07006245
6246 if (in_async)
6247 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006248 }
6249
6250 return 0;
6251}
6252
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006253static struct io_wq_work *io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006254{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006255 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006256 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06006257 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006258
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006259 timeout = io_prep_linked_timeout(req);
6260 if (timeout)
6261 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006262
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006263 /* if NO_CANCEL is set, we must still run the work */
6264 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
6265 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06006266 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006267 }
Jens Axboe31b51512019-01-18 22:56:34 -07006268
Jens Axboe561fb042019-10-24 07:25:42 -06006269 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006270 do {
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006271 ret = io_issue_sqe(req, false, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06006272 /*
6273 * We can get EAGAIN for polled IO even though we're
6274 * forcing a sync submission from here, since we can't
6275 * wait for request slots on the block side.
6276 */
6277 if (ret != -EAGAIN)
6278 break;
6279 cond_resched();
6280 } while (1);
6281 }
Jens Axboe31b51512019-01-18 22:56:34 -07006282
Jens Axboe561fb042019-10-24 07:25:42 -06006283 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006284 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006285 io_req_complete(req, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006286 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006287
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006288 return io_steal_work(req);
Jens Axboe31b51512019-01-18 22:56:34 -07006289}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006290
Jens Axboe65e19f52019-10-26 07:20:21 -06006291static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6292 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06006293{
Jens Axboe65e19f52019-10-26 07:20:21 -06006294 struct fixed_file_table *table;
6295
Jens Axboe05f3fb32019-12-09 11:22:50 -07006296 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08006297 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06006298}
6299
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006300static struct file *io_file_get(struct io_submit_state *state,
6301 struct io_kiocb *req, int fd, bool fixed)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006302{
6303 struct io_ring_ctx *ctx = req->ctx;
6304 struct file *file;
6305
6306 if (fixed) {
Pavel Begunkov479f5172020-10-10 18:34:07 +01006307 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006308 return NULL;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006309 fd = array_index_nospec(fd, ctx->nr_user_files);
6310 file = io_file_from_index(ctx, fd);
Jens Axboefd2206e2020-06-02 16:40:47 -06006311 if (file) {
Pavel Begunkovb2e96852020-10-10 18:34:16 +01006312 req->fixed_file_refs = &ctx->file_data->node->refs;
Jens Axboefd2206e2020-06-02 16:40:47 -06006313 percpu_ref_get(req->fixed_file_refs);
6314 }
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006315 } else {
6316 trace_io_uring_file_get(ctx, fd);
6317 file = __io_file_get(state, fd);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006318 }
6319
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006320 return file;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006321}
6322
Jens Axboe3529d8c2019-12-19 18:24:38 -07006323static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06006324 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06006325{
Jens Axboe28cea78a2020-09-14 10:51:17 -06006326 req->file = io_file_get(state, req, fd, req->flags & REQ_F_FIXED_FILE);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006327 if (req->file || io_op_defs[req->opcode].needs_file_no_error)
Jens Axboef86cd202020-01-29 13:46:44 -07006328 return 0;
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006329 return -EBADF;
Pavel Begunkovf56040b2020-07-23 20:25:21 +03006330}
6331
Jens Axboe2665abf2019-11-05 12:40:47 -07006332static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6333{
Jens Axboead8a48a2019-11-15 08:49:11 -07006334 struct io_timeout_data *data = container_of(timer,
6335 struct io_timeout_data, timer);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006336 struct io_kiocb *prev, *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006337 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07006338 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006339
6340 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006341 prev = req->timeout.head;
6342 req->timeout.head = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006343
6344 /*
6345 * We don't expect the list to be empty, that will only happen if we
6346 * race with the completion of the linked work.
6347 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006348 if (prev && refcount_inc_not_zero(&prev->refs))
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006349 io_remove_next_linked(prev);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006350 else
6351 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006352 spin_unlock_irqrestore(&ctx->completion_lock, flags);
6353
6354 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006355 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03006356 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07006357 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07006358 } else {
Jens Axboee1e16092020-06-22 09:17:17 -06006359 io_req_complete(req, -ETIME);
Jens Axboe2665abf2019-11-05 12:40:47 -07006360 }
Jens Axboe2665abf2019-11-05 12:40:47 -07006361 return HRTIMER_NORESTART;
6362}
6363
Jens Axboe7271ef32020-08-10 09:55:22 -06006364static void __io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006365{
Jens Axboe76a46e02019-11-10 23:34:16 -07006366 /*
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006367 * If the back reference is NULL, then our linked request finished
6368 * before we got a chance to setup the timer
Jens Axboe76a46e02019-11-10 23:34:16 -07006369 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006370 if (req->timeout.head) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006371 struct io_timeout_data *data = req->async_data;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006372
Jens Axboead8a48a2019-11-15 08:49:11 -07006373 data->timer.function = io_link_timeout_fn;
6374 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6375 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07006376 }
Jens Axboe7271ef32020-08-10 09:55:22 -06006377}
6378
6379static void io_queue_linked_timeout(struct io_kiocb *req)
6380{
6381 struct io_ring_ctx *ctx = req->ctx;
6382
6383 spin_lock_irq(&ctx->completion_lock);
6384 __io_queue_linked_timeout(req);
Jens Axboe76a46e02019-11-10 23:34:16 -07006385 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006386
Jens Axboe2665abf2019-11-05 12:40:47 -07006387 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006388 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006389}
6390
Jens Axboead8a48a2019-11-15 08:49:11 -07006391static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006392{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006393 struct io_kiocb *nxt = req->link;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006394
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006395 if (!nxt || (req->flags & REQ_F_LINK_TIMEOUT) ||
6396 nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07006397 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006398
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006399 nxt->timeout.head = req;
Pavel Begunkov900fad42020-10-19 16:39:16 +01006400 nxt->flags |= REQ_F_LTIMEOUT_ACTIVE;
Jens Axboe76a46e02019-11-10 23:34:16 -07006401 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07006402 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07006403}
6404
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006405static void __io_queue_sqe(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006406{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006407 struct io_kiocb *linked_timeout;
Jens Axboe193155c2020-02-22 23:22:19 -07006408 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006409 int ret;
6410
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006411again:
6412 linked_timeout = io_prep_linked_timeout(req);
6413
Pavel Begunkov2e5aa6c2020-10-18 10:17:37 +01006414 if ((req->flags & REQ_F_WORK_INITIALIZED) &&
6415 (req->work.flags & IO_WQ_WORK_CREDS) &&
Jens Axboe98447d62020-10-14 10:48:51 -06006416 req->work.identity->creds != current_cred()) {
Jens Axboe193155c2020-02-22 23:22:19 -07006417 if (old_creds)
6418 revert_creds(old_creds);
Jens Axboe98447d62020-10-14 10:48:51 -06006419 if (old_creds == req->work.identity->creds)
Jens Axboe193155c2020-02-22 23:22:19 -07006420 old_creds = NULL; /* restored original creds */
6421 else
Jens Axboe98447d62020-10-14 10:48:51 -06006422 old_creds = override_creds(req->work.identity->creds);
Jens Axboe193155c2020-02-22 23:22:19 -07006423 }
6424
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006425 ret = io_issue_sqe(req, true, cs);
Jens Axboe491381ce2019-10-17 09:20:46 -06006426
6427 /*
6428 * We async punt it if the file wasn't marked NOWAIT, or if the file
6429 * doesn't support non-blocking read/write attempts
6430 */
Pavel Begunkov24c74672020-06-21 13:09:51 +03006431 if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006432 if (!io_arm_poll_handler(req)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006433 /*
6434 * Queued up for async execution, worker will release
6435 * submit reference when the iocb is actually submitted.
6436 */
6437 io_queue_async_work(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006438 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03006439
Pavel Begunkovf063c542020-07-25 14:41:59 +03006440 if (linked_timeout)
6441 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006442 } else if (likely(!ret)) {
6443 /* drop submission reference */
6444 req = io_put_req_find_next(req);
6445 if (linked_timeout)
6446 io_queue_linked_timeout(linked_timeout);
Jens Axboee65ef562019-03-12 10:16:44 -06006447
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006448 if (req) {
6449 if (!(req->flags & REQ_F_FORCE_ASYNC))
6450 goto again;
6451 io_queue_async_work(req);
6452 }
6453 } else {
Pavel Begunkov652532a2020-07-03 22:15:07 +03006454 /* un-prep timeout, so it'll be killed as any other linked */
6455 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006456 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06006457 io_put_req(req);
Pavel Begunkov652532a2020-07-03 22:15:07 +03006458 io_req_complete(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06006459 }
Pavel Begunkov652532a2020-07-03 22:15:07 +03006460
Jens Axboe193155c2020-02-22 23:22:19 -07006461 if (old_creds)
6462 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006463}
6464
Jens Axboef13fad72020-06-22 09:34:30 -06006465static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6466 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006467{
6468 int ret;
6469
Jens Axboe3529d8c2019-12-19 18:24:38 -07006470 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006471 if (ret) {
6472 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03006473fail_req:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006474 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006475 io_put_req(req);
6476 io_req_complete(req, ret);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006477 }
Pavel Begunkov25508782019-12-30 21:24:47 +03006478 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006479 if (!req->async_data) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006480 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006481 if (unlikely(ret))
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006482 goto fail_req;
6483 }
Jens Axboece35a472019-12-17 08:04:44 -07006484 io_queue_async_work(req);
6485 } else {
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006486 if (sqe) {
6487 ret = io_req_prep(req, sqe);
6488 if (unlikely(ret))
6489 goto fail_req;
6490 }
6491 __io_queue_sqe(req, cs);
Jens Axboece35a472019-12-17 08:04:44 -07006492 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006493}
6494
Jens Axboef13fad72020-06-22 09:34:30 -06006495static inline void io_queue_link_head(struct io_kiocb *req,
6496 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006497{
Jens Axboe94ae5e72019-11-14 19:39:52 -07006498 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Jens Axboee1e16092020-06-22 09:17:17 -06006499 io_put_req(req);
6500 io_req_complete(req, -ECANCELED);
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03006501 } else
Jens Axboef13fad72020-06-22 09:34:30 -06006502 io_queue_sqe(req, NULL, cs);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006503}
6504
Pavel Begunkov863e0562020-10-27 23:25:35 +00006505struct io_submit_link {
6506 struct io_kiocb *head;
6507 struct io_kiocb *last;
6508};
6509
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006510static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov863e0562020-10-27 23:25:35 +00006511 struct io_submit_link *link, struct io_comp_state *cs)
Jens Axboe9e645e112019-05-10 16:07:28 -06006512{
Jackie Liua197f662019-11-08 08:09:12 -07006513 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006514 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06006515
Jens Axboe9e645e112019-05-10 16:07:28 -06006516 /*
6517 * If we already have a head request, queue this one for async
6518 * submittal once the head completes. If we don't have a head but
6519 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
6520 * submitted sync once the chain is complete. If none of those
6521 * conditions are true (normal request), then just queue it.
6522 */
Pavel Begunkov863e0562020-10-27 23:25:35 +00006523 if (link->head) {
6524 struct io_kiocb *head = link->head;
Jens Axboe9e645e112019-05-10 16:07:28 -06006525
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03006526 /*
6527 * Taking sequential execution of a link, draining both sides
6528 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
6529 * requests in the link. So, it drains the head and the
6530 * next after the link request. The last one is done via
6531 * drain_next flag to persist the effect across calls.
6532 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006533 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006534 head->flags |= REQ_F_IO_DRAIN;
6535 ctx->drain_next = 1;
6536 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07006537 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006538 if (unlikely(ret)) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006539 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03006540 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006541 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07006542 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03006543 trace_io_uring_link(ctx, req, head);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006544 link->last->link = req;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006545 link->last = req;
Jens Axboe9e645e112019-05-10 16:07:28 -06006546
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006547 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006548 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Jens Axboef13fad72020-06-22 09:34:30 -06006549 io_queue_link_head(head, cs);
Pavel Begunkov863e0562020-10-27 23:25:35 +00006550 link->head = NULL;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006551 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006552 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03006553 if (unlikely(ctx->drain_next)) {
6554 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006555 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03006556 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006557 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006558 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006559 if (unlikely(ret))
Pavel Begunkov711be032020-01-17 03:57:59 +03006560 req->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006561 link->head = req;
6562 link->last = req;
Pavel Begunkov711be032020-01-17 03:57:59 +03006563 } else {
Jens Axboef13fad72020-06-22 09:34:30 -06006564 io_queue_sqe(req, sqe, cs);
Pavel Begunkov711be032020-01-17 03:57:59 +03006565 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006566 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03006567
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006568 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06006569}
6570
Jens Axboe9a56a232019-01-09 09:06:50 -07006571/*
6572 * Batched submission is done, ensure local IO is flushed out.
6573 */
6574static void io_submit_state_end(struct io_submit_state *state)
6575{
Jens Axboef13fad72020-06-22 09:34:30 -06006576 if (!list_empty(&state->comp.list))
6577 io_submit_flush_completions(&state->comp);
Jens Axboe27926b62020-10-28 09:33:23 -06006578 if (state->plug_started)
6579 blk_finish_plug(&state->plug);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03006580 io_state_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07006581 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03006582 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07006583}
6584
6585/*
6586 * Start submission side cache.
6587 */
6588static void io_submit_state_start(struct io_submit_state *state,
Jens Axboe013538b2020-06-22 09:29:15 -06006589 struct io_ring_ctx *ctx, unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07006590{
Jens Axboe27926b62020-10-28 09:33:23 -06006591 state->plug_started = false;
Jens Axboe013538b2020-06-22 09:29:15 -06006592 state->comp.nr = 0;
6593 INIT_LIST_HEAD(&state->comp.list);
6594 state->comp.ctx = ctx;
Jens Axboe2579f912019-01-09 09:10:43 -07006595 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07006596 state->file = NULL;
6597 state->ios_left = max_ios;
6598}
6599
Jens Axboe2b188cc2019-01-07 10:46:33 -07006600static void io_commit_sqring(struct io_ring_ctx *ctx)
6601{
Hristo Venev75b28af2019-08-26 17:23:46 +00006602 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006603
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03006604 /*
6605 * Ensure any loads from the SQEs are done at this point,
6606 * since once we write the new head, the application could
6607 * write new data to them.
6608 */
6609 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006610}
6611
6612/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07006613 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07006614 * that is mapped by userspace. This means that care needs to be taken to
6615 * ensure that reads are stable, as we cannot rely on userspace always
6616 * being a good citizen. If members of the sqe are validated and then later
6617 * used, it's important that those reads are done through READ_ONCE() to
6618 * prevent a re-load down the line.
6619 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03006620static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006621{
Hristo Venev75b28af2019-08-26 17:23:46 +00006622 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006623 unsigned head;
6624
6625 /*
6626 * The cached sq head (or cq tail) serves two purposes:
6627 *
6628 * 1) allows us to batch the cost of updating the user visible
6629 * head updates.
6630 * 2) allows the kernel side to track the head on its own, even
6631 * though the application is the one updating it.
6632 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006633 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006634 if (likely(head < ctx->sq_entries))
6635 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07006636
6637 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06006638 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006639 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006640 return NULL;
6641}
6642
6643static inline void io_consume_sqe(struct io_ring_ctx *ctx)
6644{
6645 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006646}
6647
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006648/*
6649 * Check SQE restrictions (opcode and flags).
6650 *
6651 * Returns 'true' if SQE is allowed, 'false' otherwise.
6652 */
6653static inline bool io_check_restriction(struct io_ring_ctx *ctx,
6654 struct io_kiocb *req,
6655 unsigned int sqe_flags)
6656{
6657 if (!ctx->restricted)
6658 return true;
6659
6660 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
6661 return false;
6662
6663 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
6664 ctx->restrictions.sqe_flags_required)
6665 return false;
6666
6667 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
6668 ctx->restrictions.sqe_flags_required))
6669 return false;
6670
6671 return true;
6672}
6673
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006674#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
6675 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
6676 IOSQE_BUFFER_SELECT)
6677
6678static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
6679 const struct io_uring_sqe *sqe,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006680 struct io_submit_state *state)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006681{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006682 unsigned int sqe_flags;
Pavel Begunkov71b547c2020-10-10 18:34:09 +01006683 int id, ret;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006684
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006685 req->opcode = READ_ONCE(sqe->opcode);
6686 req->user_data = READ_ONCE(sqe->user_data);
Jens Axboee8c2bc12020-08-15 18:44:09 -07006687 req->async_data = NULL;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006688 req->file = NULL;
6689 req->ctx = ctx;
6690 req->flags = 0;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006691 req->link = NULL;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006692 /* one is dropped after submission, the other at completion */
6693 refcount_set(&req->refs, 2);
Pavel Begunkov4dd28242020-06-15 10:33:13 +03006694 req->task = current;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006695 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006696
6697 if (unlikely(req->opcode >= IORING_OP_LAST))
6698 return -EINVAL;
6699
Jens Axboe28cea78a2020-09-14 10:51:17 -06006700 if (unlikely(io_sq_thread_acquire_mm_files(ctx, req)))
Jens Axboe9d8426a2020-06-16 18:42:49 -06006701 return -EFAULT;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006702
6703 sqe_flags = READ_ONCE(sqe->flags);
6704 /* enforce forwards compatibility on users */
6705 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
6706 return -EINVAL;
6707
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006708 if (unlikely(!io_check_restriction(ctx, req, sqe_flags)))
6709 return -EACCES;
6710
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006711 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
6712 !io_op_defs[req->opcode].buffer_select)
6713 return -EOPNOTSUPP;
6714
6715 id = READ_ONCE(sqe->personality);
6716 if (id) {
Jens Axboe1e6fa522020-10-15 08:46:24 -06006717 struct io_identity *iod;
6718
Jens Axboe1e6fa522020-10-15 08:46:24 -06006719 iod = idr_find(&ctx->personality_idr, id);
6720 if (unlikely(!iod))
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006721 return -EINVAL;
Jens Axboe1e6fa522020-10-15 08:46:24 -06006722 refcount_inc(&iod->count);
Pavel Begunkovec99ca62020-10-18 10:17:38 +01006723
6724 __io_req_init_async(req);
Jens Axboe1e6fa522020-10-15 08:46:24 -06006725 get_cred(iod->creds);
6726 req->work.identity = iod;
Jens Axboedfead8a2020-10-14 10:12:37 -06006727 req->work.flags |= IO_WQ_WORK_CREDS;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006728 }
6729
6730 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkovc11368a52020-05-17 14:13:42 +03006731 req->flags |= sqe_flags;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006732
Jens Axboe27926b62020-10-28 09:33:23 -06006733 /*
6734 * Plug now if we have more than 1 IO left after this, and the target
6735 * is potentially a read/write to block based storage.
6736 */
6737 if (!state->plug_started && state->ios_left > 1 &&
6738 io_op_defs[req->opcode].plug) {
6739 blk_start_plug(&state->plug);
6740 state->plug_started = true;
6741 }
6742
Jens Axboe63ff8222020-05-07 14:56:15 -06006743 if (!io_op_defs[req->opcode].needs_file)
6744 return 0;
6745
Pavel Begunkov71b547c2020-10-10 18:34:09 +01006746 ret = io_req_set_file(state, req, READ_ONCE(sqe->fd));
6747 state->ios_left--;
6748 return ret;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006749}
6750
Jens Axboe0f212202020-09-13 13:09:39 -06006751static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006752{
Jens Axboeac8691c2020-06-01 08:30:41 -06006753 struct io_submit_state state;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006754 struct io_submit_link link;
Jens Axboe9e645e112019-05-10 16:07:28 -06006755 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006756
Jens Axboec4a2ed72019-11-21 21:01:26 -07006757 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07006758 if (test_bit(0, &ctx->sq_check_overflow)) {
6759 if (!list_empty(&ctx->cq_overflow_list) &&
Jens Axboee6c8aa92020-09-28 13:10:13 -06006760 !io_cqring_overflow_flush(ctx, false, NULL, NULL))
Jens Axboead3eb2c2019-12-18 17:12:20 -07006761 return -EBUSY;
6762 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006763
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006764 /* make sure SQ entry isn't read before tail */
6765 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03006766
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03006767 if (!percpu_ref_tryget_many(&ctx->refs, nr))
6768 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006769
Jens Axboed8a6df12020-10-15 16:24:45 -06006770 percpu_counter_add(&current->io_uring->inflight, nr);
Jens Axboefaf7b512020-10-07 12:48:53 -06006771 refcount_add(nr, &current->usage);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006772
Jens Axboe6c271ce2019-01-10 11:22:30 -07006773 io_submit_state_start(&state, ctx, nr);
Pavel Begunkov863e0562020-10-27 23:25:35 +00006774 link.head = NULL;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03006775
Jens Axboe6c271ce2019-01-10 11:22:30 -07006776 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07006777 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03006778 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006779 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006780
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03006781 sqe = io_get_sqe(ctx);
6782 if (unlikely(!sqe)) {
6783 io_consume_sqe(ctx);
6784 break;
6785 }
Jens Axboeac8691c2020-06-01 08:30:41 -06006786 req = io_alloc_req(ctx, &state);
Pavel Begunkov196be952019-11-07 01:41:06 +03006787 if (unlikely(!req)) {
6788 if (!submitted)
6789 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006790 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06006791 }
Pavel Begunkov709b3022020-04-08 08:58:43 +03006792 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07006793 /* will complete beyond this point, count as submitted */
6794 submitted++;
6795
Pavel Begunkov692d8362020-10-10 18:34:13 +01006796 err = io_init_req(ctx, req, sqe, &state);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006797 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006798fail_req:
Jens Axboee1e16092020-06-22 09:17:17 -06006799 io_put_req(req);
6800 io_req_complete(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07006801 break;
6802 }
6803
Jens Axboe354420f2020-01-08 18:55:15 -07006804 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006805 true, io_async_submit(ctx));
Jens Axboef13fad72020-06-22 09:34:30 -06006806 err = io_submit_sqe(req, sqe, &link, &state.comp);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006807 if (err)
6808 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006809 }
6810
Pavel Begunkov9466f432020-01-25 22:34:01 +03006811 if (unlikely(submitted != nr)) {
6812 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
Jens Axboed8a6df12020-10-15 16:24:45 -06006813 struct io_uring_task *tctx = current->io_uring;
6814 int unused = nr - ref_used;
Pavel Begunkov9466f432020-01-25 22:34:01 +03006815
Jens Axboed8a6df12020-10-15 16:24:45 -06006816 percpu_ref_put_many(&ctx->refs, unused);
6817 percpu_counter_sub(&tctx->inflight, unused);
6818 put_task_struct_many(current, unused);
Pavel Begunkov9466f432020-01-25 22:34:01 +03006819 }
Pavel Begunkov863e0562020-10-27 23:25:35 +00006820 if (link.head)
6821 io_queue_link_head(link.head, &state.comp);
Jens Axboeac8691c2020-06-01 08:30:41 -06006822 io_submit_state_end(&state);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006823
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006824 /* Commit SQ ring head once we've consumed and submitted all SQEs */
6825 io_commit_sqring(ctx);
6826
Jens Axboe6c271ce2019-01-10 11:22:30 -07006827 return submitted;
6828}
6829
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006830static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
6831{
6832 /* Tell userspace we may need a wakeup call */
6833 spin_lock_irq(&ctx->completion_lock);
6834 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
6835 spin_unlock_irq(&ctx->completion_lock);
6836}
6837
6838static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
6839{
6840 spin_lock_irq(&ctx->completion_lock);
6841 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6842 spin_unlock_irq(&ctx->completion_lock);
6843}
6844
Xiaoguang Wang08369242020-11-03 14:15:59 +08006845static int __io_sq_thread(struct io_ring_ctx *ctx, bool cap_entries)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006846{
Jens Axboec8d1ba52020-09-14 11:07:26 -06006847 unsigned int to_submit;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006848 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006849
Jens Axboec8d1ba52020-09-14 11:07:26 -06006850 if (!list_empty(&ctx->iopoll_list)) {
6851 unsigned nr_events = 0;
Jackie Liua4c0b3d2019-07-08 13:41:12 +08006852
Jens Axboec8d1ba52020-09-14 11:07:26 -06006853 mutex_lock(&ctx->uring_lock);
Xiaoguang Wang08369242020-11-03 14:15:59 +08006854 if (!list_empty(&ctx->iopoll_list))
Jens Axboec8d1ba52020-09-14 11:07:26 -06006855 io_do_iopoll(ctx, &nr_events, 0);
6856 mutex_unlock(&ctx->uring_lock);
6857 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006858
Jens Axboec8d1ba52020-09-14 11:07:26 -06006859 to_submit = io_sqring_entries(ctx);
Jens Axboee95eee22020-09-08 09:11:32 -06006860 /* if we're handling multiple rings, cap submit size for fairness */
6861 if (cap_entries && to_submit > 8)
6862 to_submit = 8;
6863
Xiaoguang Wang08369242020-11-03 14:15:59 +08006864 if (to_submit) {
6865 mutex_lock(&ctx->uring_lock);
6866 if (likely(!percpu_ref_is_dying(&ctx->refs)))
6867 ret = io_submit_sqes(ctx, to_submit);
6868 mutex_unlock(&ctx->uring_lock);
6869 }
Jens Axboe90554202020-09-03 12:12:41 -06006870
6871 if (!io_sqring_full(ctx) && wq_has_sleeper(&ctx->sqo_sq_wait))
6872 wake_up(&ctx->sqo_sq_wait);
6873
Xiaoguang Wang08369242020-11-03 14:15:59 +08006874 return ret;
6875}
6876
6877static void io_sqd_update_thread_idle(struct io_sq_data *sqd)
6878{
6879 struct io_ring_ctx *ctx;
6880 unsigned sq_thread_idle = 0;
6881
6882 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
6883 if (sq_thread_idle < ctx->sq_thread_idle)
6884 sq_thread_idle = ctx->sq_thread_idle;
6885 }
6886
6887 sqd->sq_thread_idle = sq_thread_idle;
Jens Axboec8d1ba52020-09-14 11:07:26 -06006888}
6889
Jens Axboe69fb2132020-09-14 11:16:23 -06006890static void io_sqd_init_new(struct io_sq_data *sqd)
6891{
6892 struct io_ring_ctx *ctx;
6893
6894 while (!list_empty(&sqd->ctx_new_list)) {
6895 ctx = list_first_entry(&sqd->ctx_new_list, struct io_ring_ctx, sqd_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06006896 list_move_tail(&ctx->sqd_list, &sqd->ctx_list);
6897 complete(&ctx->sq_thread_comp);
6898 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08006899
6900 io_sqd_update_thread_idle(sqd);
Jens Axboe69fb2132020-09-14 11:16:23 -06006901}
6902
Jens Axboe6c271ce2019-01-10 11:22:30 -07006903static int io_sq_thread(void *data)
6904{
Dennis Zhou91d8f512020-09-16 13:41:05 -07006905 struct cgroup_subsys_state *cur_css = NULL;
Jens Axboe28cea78a2020-09-14 10:51:17 -06006906 struct files_struct *old_files = current->files;
6907 struct nsproxy *old_nsproxy = current->nsproxy;
Jens Axboe69fb2132020-09-14 11:16:23 -06006908 const struct cred *old_cred = NULL;
6909 struct io_sq_data *sqd = data;
6910 struct io_ring_ctx *ctx;
Xiaoguang Wang08369242020-11-03 14:15:59 +08006911 unsigned long timeout;
6912 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006913
Jens Axboe28cea78a2020-09-14 10:51:17 -06006914 task_lock(current);
6915 current->files = NULL;
6916 current->nsproxy = NULL;
6917 task_unlock(current);
6918
Jens Axboe69fb2132020-09-14 11:16:23 -06006919 while (!kthread_should_stop()) {
Xiaoguang Wang08369242020-11-03 14:15:59 +08006920 int ret;
6921 bool cap_entries, sqt_spin, needs_sched;
Jens Axboec1edbf52019-11-10 16:56:04 -07006922
6923 /*
Jens Axboe69fb2132020-09-14 11:16:23 -06006924 * Any changes to the sqd lists are synchronized through the
6925 * kthread parking. This synchronizes the thread vs users,
6926 * the users are synchronized on the sqd->ctx_lock.
Jens Axboec1edbf52019-11-10 16:56:04 -07006927 */
Jens Axboe69fb2132020-09-14 11:16:23 -06006928 if (kthread_should_park())
6929 kthread_parkme();
6930
Xiaoguang Wang08369242020-11-03 14:15:59 +08006931 if (unlikely(!list_empty(&sqd->ctx_new_list))) {
Jens Axboe69fb2132020-09-14 11:16:23 -06006932 io_sqd_init_new(sqd);
Xiaoguang Wang08369242020-11-03 14:15:59 +08006933 timeout = jiffies + sqd->sq_thread_idle;
6934 }
Jens Axboe69fb2132020-09-14 11:16:23 -06006935
Xiaoguang Wang08369242020-11-03 14:15:59 +08006936 sqt_spin = false;
Jens Axboee95eee22020-09-08 09:11:32 -06006937 cap_entries = !list_is_singular(&sqd->ctx_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06006938 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
6939 if (current->cred != ctx->creds) {
6940 if (old_cred)
6941 revert_creds(old_cred);
6942 old_cred = override_creds(ctx->creds);
6943 }
Dennis Zhou91d8f512020-09-16 13:41:05 -07006944 io_sq_thread_associate_blkcg(ctx, &cur_css);
Jens Axboe4ea33a92020-10-15 13:46:44 -06006945#ifdef CONFIG_AUDIT
6946 current->loginuid = ctx->loginuid;
6947 current->sessionid = ctx->sessionid;
6948#endif
Jens Axboe69fb2132020-09-14 11:16:23 -06006949
Xiaoguang Wang08369242020-11-03 14:15:59 +08006950 ret = __io_sq_thread(ctx, cap_entries);
6951 if (!sqt_spin && (ret > 0 || !list_empty(&ctx->iopoll_list)))
6952 sqt_spin = true;
Jens Axboe69fb2132020-09-14 11:16:23 -06006953
Jens Axboe28cea78a2020-09-14 10:51:17 -06006954 io_sq_thread_drop_mm_files();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006955 }
6956
Xiaoguang Wang08369242020-11-03 14:15:59 +08006957 if (sqt_spin || !time_after(jiffies, timeout)) {
Jens Axboec8d1ba52020-09-14 11:07:26 -06006958 io_run_task_work();
6959 cond_resched();
Xiaoguang Wang08369242020-11-03 14:15:59 +08006960 if (sqt_spin)
6961 timeout = jiffies + sqd->sq_thread_idle;
6962 continue;
6963 }
6964
6965 if (kthread_should_park())
6966 continue;
6967
6968 needs_sched = true;
6969 prepare_to_wait(&sqd->wait, &wait, TASK_INTERRUPTIBLE);
6970 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
6971 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6972 !list_empty_careful(&ctx->iopoll_list)) {
6973 needs_sched = false;
6974 break;
6975 }
6976 if (io_sqring_entries(ctx)) {
6977 needs_sched = false;
6978 break;
6979 }
6980 }
6981
6982 if (needs_sched) {
Jens Axboe69fb2132020-09-14 11:16:23 -06006983 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
6984 io_ring_set_wakeup_flag(ctx);
Xiaoguang Wang08369242020-11-03 14:15:59 +08006985
Jens Axboe69fb2132020-09-14 11:16:23 -06006986 schedule();
Jens Axboe69fb2132020-09-14 11:16:23 -06006987 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
6988 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006989 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08006990
6991 finish_wait(&sqd->wait, &wait);
6992 timeout = jiffies + sqd->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006993 }
6994
Jens Axboe4c6e2772020-07-01 11:29:10 -06006995 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07006996
Dennis Zhou91d8f512020-09-16 13:41:05 -07006997 if (cur_css)
6998 io_sq_thread_unassociate_blkcg();
Jens Axboe69fb2132020-09-14 11:16:23 -06006999 if (old_cred)
7000 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06007001
Jens Axboe28cea78a2020-09-14 10:51:17 -06007002 task_lock(current);
7003 current->files = old_files;
7004 current->nsproxy = old_nsproxy;
7005 task_unlock(current);
7006
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02007007 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06007008
Jens Axboe6c271ce2019-01-10 11:22:30 -07007009 return 0;
7010}
7011
Jens Axboebda52162019-09-24 13:47:15 -06007012struct io_wait_queue {
7013 struct wait_queue_entry wq;
7014 struct io_ring_ctx *ctx;
7015 unsigned to_wait;
7016 unsigned nr_timeouts;
7017};
7018
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007019static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06007020{
7021 struct io_ring_ctx *ctx = iowq->ctx;
7022
7023 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08007024 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06007025 * started waiting. For timeouts, we always want to return to userspace,
7026 * regardless of event count.
7027 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007028 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06007029 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
7030}
7031
7032static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7033 int wake_flags, void *key)
7034{
7035 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7036 wq);
7037
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007038 /* use noflush == true, as we can't safely rely on locking context */
7039 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06007040 return -1;
7041
7042 return autoremove_wake_function(curr, mode, wake_flags, key);
7043}
7044
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007045static int io_run_task_work_sig(void)
7046{
7047 if (io_run_task_work())
7048 return 1;
7049 if (!signal_pending(current))
7050 return 0;
7051 if (current->jobctl & JOBCTL_TASK_WORK) {
7052 spin_lock_irq(&current->sighand->siglock);
7053 current->jobctl &= ~JOBCTL_TASK_WORK;
7054 recalc_sigpending();
7055 spin_unlock_irq(&current->sighand->siglock);
7056 return 1;
7057 }
7058 return -EINTR;
7059}
7060
Jens Axboe2b188cc2019-01-07 10:46:33 -07007061/*
7062 * Wait until events become available, if we don't already have some. The
7063 * application must reap them itself, as they reside on the shared cq ring.
7064 */
7065static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
Hao Xuc73ebb62020-11-03 10:54:37 +08007066 const sigset_t __user *sig, size_t sigsz,
7067 struct __kernel_timespec __user *uts)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007068{
Jens Axboebda52162019-09-24 13:47:15 -06007069 struct io_wait_queue iowq = {
7070 .wq = {
7071 .private = current,
7072 .func = io_wake_function,
7073 .entry = LIST_HEAD_INIT(iowq.wq.entry),
7074 },
7075 .ctx = ctx,
7076 .to_wait = min_events,
7077 };
Hristo Venev75b28af2019-08-26 17:23:46 +00007078 struct io_rings *rings = ctx->rings;
Hao Xuc73ebb62020-11-03 10:54:37 +08007079 struct timespec64 ts;
7080 signed long timeout = 0;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08007081 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007082
Jens Axboeb41e9852020-02-17 09:52:41 -07007083 do {
7084 if (io_cqring_events(ctx, false) >= min_events)
7085 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06007086 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07007087 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07007088 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007089
7090 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007091#ifdef CONFIG_COMPAT
7092 if (in_compat_syscall())
7093 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07007094 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007095 else
7096#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07007097 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007098
Jens Axboe2b188cc2019-01-07 10:46:33 -07007099 if (ret)
7100 return ret;
7101 }
7102
Hao Xuc73ebb62020-11-03 10:54:37 +08007103 if (uts) {
7104 if (get_timespec64(&ts, uts))
7105 return -EFAULT;
7106 timeout = timespec64_to_jiffies(&ts);
7107 }
7108
Jens Axboebda52162019-09-24 13:47:15 -06007109 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007110 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06007111 do {
7112 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
7113 TASK_INTERRUPTIBLE);
Jens Axboece593a62020-06-30 12:39:05 -06007114 /* make sure we run task_work before checking for signals */
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007115 ret = io_run_task_work_sig();
7116 if (ret > 0)
Jens Axboe4c6e2772020-07-01 11:29:10 -06007117 continue;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007118 else if (ret < 0)
Jens Axboece593a62020-06-30 12:39:05 -06007119 break;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007120 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06007121 break;
Hao Xuc73ebb62020-11-03 10:54:37 +08007122 if (uts) {
7123 timeout = schedule_timeout(timeout);
7124 if (timeout == 0) {
7125 ret = -ETIME;
7126 break;
7127 }
7128 } else {
7129 schedule();
7130 }
Jens Axboebda52162019-09-24 13:47:15 -06007131 } while (1);
7132 finish_wait(&ctx->wait, &iowq.wq);
7133
Jens Axboeb7db41c2020-07-04 08:55:50 -06007134 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007135
Hristo Venev75b28af2019-08-26 17:23:46 +00007136 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007137}
7138
Jens Axboe6b063142019-01-10 22:13:58 -07007139static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
7140{
7141#if defined(CONFIG_UNIX)
7142 if (ctx->ring_sock) {
7143 struct sock *sock = ctx->ring_sock->sk;
7144 struct sk_buff *skb;
7145
7146 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7147 kfree_skb(skb);
7148 }
7149#else
7150 int i;
7151
Jens Axboe65e19f52019-10-26 07:20:21 -06007152 for (i = 0; i < ctx->nr_user_files; i++) {
7153 struct file *file;
7154
7155 file = io_file_from_index(ctx, i);
7156 if (file)
7157 fput(file);
7158 }
Jens Axboe6b063142019-01-10 22:13:58 -07007159#endif
7160}
7161
Jens Axboe05f3fb32019-12-09 11:22:50 -07007162static void io_file_ref_kill(struct percpu_ref *ref)
7163{
7164 struct fixed_file_data *data;
7165
7166 data = container_of(ref, struct fixed_file_data, refs);
7167 complete(&data->done);
7168}
7169
Jens Axboe6b063142019-01-10 22:13:58 -07007170static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7171{
Jens Axboe05f3fb32019-12-09 11:22:50 -07007172 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007173 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06007174 unsigned nr_tables, i;
7175
Jens Axboe05f3fb32019-12-09 11:22:50 -07007176 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07007177 return -ENXIO;
7178
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007179 spin_lock(&data->lock);
Pavel Begunkov1e5d7702020-11-18 14:56:25 +00007180 ref_node = data->node;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007181 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007182 if (ref_node)
7183 percpu_ref_kill(&ref_node->refs);
7184
7185 percpu_ref_kill(&data->refs);
7186
7187 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06007188 flush_delayed_work(&ctx->file_put_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07007189 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007190
Jens Axboe6b063142019-01-10 22:13:58 -07007191 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06007192 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
7193 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007194 kfree(data->table[i].files);
7195 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007196 percpu_ref_exit(&data->refs);
7197 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007198 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07007199 ctx->nr_user_files = 0;
7200 return 0;
7201}
7202
Jens Axboe534ca6d2020-09-02 13:52:19 -06007203static void io_put_sq_data(struct io_sq_data *sqd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007204{
Jens Axboe534ca6d2020-09-02 13:52:19 -06007205 if (refcount_dec_and_test(&sqd->refs)) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02007206 /*
7207 * The park is a bit of a work-around, without it we get
7208 * warning spews on shutdown with SQPOLL set and affinity
7209 * set to a single CPU.
7210 */
Jens Axboe534ca6d2020-09-02 13:52:19 -06007211 if (sqd->thread) {
7212 kthread_park(sqd->thread);
7213 kthread_stop(sqd->thread);
7214 }
7215
7216 kfree(sqd);
7217 }
7218}
7219
Jens Axboeaa061652020-09-02 14:50:27 -06007220static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7221{
7222 struct io_ring_ctx *ctx_attach;
7223 struct io_sq_data *sqd;
7224 struct fd f;
7225
7226 f = fdget(p->wq_fd);
7227 if (!f.file)
7228 return ERR_PTR(-ENXIO);
7229 if (f.file->f_op != &io_uring_fops) {
7230 fdput(f);
7231 return ERR_PTR(-EINVAL);
7232 }
7233
7234 ctx_attach = f.file->private_data;
7235 sqd = ctx_attach->sq_data;
7236 if (!sqd) {
7237 fdput(f);
7238 return ERR_PTR(-EINVAL);
7239 }
7240
7241 refcount_inc(&sqd->refs);
7242 fdput(f);
7243 return sqd;
7244}
7245
Jens Axboe534ca6d2020-09-02 13:52:19 -06007246static struct io_sq_data *io_get_sq_data(struct io_uring_params *p)
7247{
7248 struct io_sq_data *sqd;
7249
Jens Axboeaa061652020-09-02 14:50:27 -06007250 if (p->flags & IORING_SETUP_ATTACH_WQ)
7251 return io_attach_sq_data(p);
7252
Jens Axboe534ca6d2020-09-02 13:52:19 -06007253 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7254 if (!sqd)
7255 return ERR_PTR(-ENOMEM);
7256
7257 refcount_set(&sqd->refs, 1);
Jens Axboe69fb2132020-09-14 11:16:23 -06007258 INIT_LIST_HEAD(&sqd->ctx_list);
7259 INIT_LIST_HEAD(&sqd->ctx_new_list);
7260 mutex_init(&sqd->ctx_lock);
7261 mutex_init(&sqd->lock);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007262 init_waitqueue_head(&sqd->wait);
7263 return sqd;
7264}
7265
Jens Axboe69fb2132020-09-14 11:16:23 -06007266static void io_sq_thread_unpark(struct io_sq_data *sqd)
7267 __releases(&sqd->lock)
7268{
7269 if (!sqd->thread)
7270 return;
7271 kthread_unpark(sqd->thread);
7272 mutex_unlock(&sqd->lock);
7273}
7274
7275static void io_sq_thread_park(struct io_sq_data *sqd)
7276 __acquires(&sqd->lock)
7277{
7278 if (!sqd->thread)
7279 return;
7280 mutex_lock(&sqd->lock);
7281 kthread_park(sqd->thread);
7282}
7283
Jens Axboe534ca6d2020-09-02 13:52:19 -06007284static void io_sq_thread_stop(struct io_ring_ctx *ctx)
7285{
7286 struct io_sq_data *sqd = ctx->sq_data;
7287
7288 if (sqd) {
7289 if (sqd->thread) {
7290 /*
7291 * We may arrive here from the error branch in
7292 * io_sq_offload_create() where the kthread is created
7293 * without being waked up, thus wake it up now to make
7294 * sure the wait will complete.
7295 */
7296 wake_up_process(sqd->thread);
7297 wait_for_completion(&ctx->sq_thread_comp);
Jens Axboe69fb2132020-09-14 11:16:23 -06007298
7299 io_sq_thread_park(sqd);
7300 }
7301
7302 mutex_lock(&sqd->ctx_lock);
7303 list_del(&ctx->sqd_list);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007304 io_sqd_update_thread_idle(sqd);
Jens Axboe69fb2132020-09-14 11:16:23 -06007305 mutex_unlock(&sqd->ctx_lock);
7306
Xiaoguang Wang08369242020-11-03 14:15:59 +08007307 if (sqd->thread)
Jens Axboe69fb2132020-09-14 11:16:23 -06007308 io_sq_thread_unpark(sqd);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007309
7310 io_put_sq_data(sqd);
7311 ctx->sq_data = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007312 }
7313}
7314
Jens Axboe6b063142019-01-10 22:13:58 -07007315static void io_finish_async(struct io_ring_ctx *ctx)
7316{
Jens Axboe6c271ce2019-01-10 11:22:30 -07007317 io_sq_thread_stop(ctx);
7318
Jens Axboe561fb042019-10-24 07:25:42 -06007319 if (ctx->io_wq) {
7320 io_wq_destroy(ctx->io_wq);
7321 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07007322 }
7323}
7324
7325#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07007326/*
7327 * Ensure the UNIX gc is aware of our file set, so we are certain that
7328 * the io_uring can be safely unregistered on process exit, even if we have
7329 * loops in the file referencing.
7330 */
7331static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
7332{
7333 struct sock *sk = ctx->ring_sock->sk;
7334 struct scm_fp_list *fpl;
7335 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06007336 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07007337
Jens Axboe6b063142019-01-10 22:13:58 -07007338 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
7339 if (!fpl)
7340 return -ENOMEM;
7341
7342 skb = alloc_skb(0, GFP_KERNEL);
7343 if (!skb) {
7344 kfree(fpl);
7345 return -ENOMEM;
7346 }
7347
7348 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07007349
Jens Axboe08a45172019-10-03 08:11:03 -06007350 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07007351 fpl->user = get_uid(ctx->user);
7352 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007353 struct file *file = io_file_from_index(ctx, i + offset);
7354
7355 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06007356 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06007357 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06007358 unix_inflight(fpl->user, fpl->fp[nr_files]);
7359 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07007360 }
7361
Jens Axboe08a45172019-10-03 08:11:03 -06007362 if (nr_files) {
7363 fpl->max = SCM_MAX_FD;
7364 fpl->count = nr_files;
7365 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007366 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06007367 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
7368 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07007369
Jens Axboe08a45172019-10-03 08:11:03 -06007370 for (i = 0; i < nr_files; i++)
7371 fput(fpl->fp[i]);
7372 } else {
7373 kfree_skb(skb);
7374 kfree(fpl);
7375 }
Jens Axboe6b063142019-01-10 22:13:58 -07007376
7377 return 0;
7378}
7379
7380/*
7381 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
7382 * causes regular reference counting to break down. We rely on the UNIX
7383 * garbage collection to take care of this problem for us.
7384 */
7385static int io_sqe_files_scm(struct io_ring_ctx *ctx)
7386{
7387 unsigned left, total;
7388 int ret = 0;
7389
7390 total = 0;
7391 left = ctx->nr_user_files;
7392 while (left) {
7393 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07007394
7395 ret = __io_sqe_files_scm(ctx, this_files, total);
7396 if (ret)
7397 break;
7398 left -= this_files;
7399 total += this_files;
7400 }
7401
7402 if (!ret)
7403 return 0;
7404
7405 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007406 struct file *file = io_file_from_index(ctx, total);
7407
7408 if (file)
7409 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07007410 total++;
7411 }
7412
7413 return ret;
7414}
7415#else
7416static int io_sqe_files_scm(struct io_ring_ctx *ctx)
7417{
7418 return 0;
7419}
7420#endif
7421
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007422static int io_sqe_alloc_file_tables(struct fixed_file_data *file_data,
7423 unsigned nr_tables, unsigned nr_files)
Jens Axboe65e19f52019-10-26 07:20:21 -06007424{
7425 int i;
7426
7427 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007428 struct fixed_file_table *table = &file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007429 unsigned this_files;
7430
7431 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
7432 table->files = kcalloc(this_files, sizeof(struct file *),
7433 GFP_KERNEL);
7434 if (!table->files)
7435 break;
7436 nr_files -= this_files;
7437 }
7438
7439 if (i == nr_tables)
7440 return 0;
7441
7442 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007443 struct fixed_file_table *table = &file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007444 kfree(table->files);
7445 }
7446 return 1;
7447}
7448
Jens Axboe05f3fb32019-12-09 11:22:50 -07007449static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06007450{
7451#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06007452 struct sock *sock = ctx->ring_sock->sk;
7453 struct sk_buff_head list, *head = &sock->sk_receive_queue;
7454 struct sk_buff *skb;
7455 int i;
7456
7457 __skb_queue_head_init(&list);
7458
7459 /*
7460 * Find the skb that holds this file in its SCM_RIGHTS. When found,
7461 * remove this entry and rearrange the file array.
7462 */
7463 skb = skb_dequeue(head);
7464 while (skb) {
7465 struct scm_fp_list *fp;
7466
7467 fp = UNIXCB(skb).fp;
7468 for (i = 0; i < fp->count; i++) {
7469 int left;
7470
7471 if (fp->fp[i] != file)
7472 continue;
7473
7474 unix_notinflight(fp->user, fp->fp[i]);
7475 left = fp->count - 1 - i;
7476 if (left) {
7477 memmove(&fp->fp[i], &fp->fp[i + 1],
7478 left * sizeof(struct file *));
7479 }
7480 fp->count--;
7481 if (!fp->count) {
7482 kfree_skb(skb);
7483 skb = NULL;
7484 } else {
7485 __skb_queue_tail(&list, skb);
7486 }
7487 fput(file);
7488 file = NULL;
7489 break;
7490 }
7491
7492 if (!file)
7493 break;
7494
7495 __skb_queue_tail(&list, skb);
7496
7497 skb = skb_dequeue(head);
7498 }
7499
7500 if (skb_peek(&list)) {
7501 spin_lock_irq(&head->lock);
7502 while ((skb = __skb_dequeue(&list)) != NULL)
7503 __skb_queue_tail(head, skb);
7504 spin_unlock_irq(&head->lock);
7505 }
7506#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07007507 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007508#endif
7509}
7510
Jens Axboe05f3fb32019-12-09 11:22:50 -07007511struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08007512 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007513 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007514};
7515
Jens Axboe4a38aed22020-05-14 17:21:15 -06007516static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007517{
Jens Axboe4a38aed22020-05-14 17:21:15 -06007518 struct fixed_file_data *file_data = ref_node->file_data;
7519 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007520 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007521
7522 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007523 list_del(&pfile->list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007524 io_ring_file_put(ctx, pfile->file);
7525 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007526 }
7527
Xiaoguang Wang05589552020-03-31 14:05:18 +08007528 percpu_ref_exit(&ref_node->refs);
7529 kfree(ref_node);
7530 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007531}
7532
Jens Axboe4a38aed22020-05-14 17:21:15 -06007533static void io_file_put_work(struct work_struct *work)
7534{
7535 struct io_ring_ctx *ctx;
7536 struct llist_node *node;
7537
7538 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
7539 node = llist_del_all(&ctx->file_put_llist);
7540
7541 while (node) {
7542 struct fixed_file_ref_node *ref_node;
7543 struct llist_node *next = node->next;
7544
7545 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
7546 __io_file_put_work(ref_node);
7547 node = next;
7548 }
7549}
7550
Jens Axboe05f3fb32019-12-09 11:22:50 -07007551static void io_file_data_ref_zero(struct percpu_ref *ref)
7552{
Xiaoguang Wang05589552020-03-31 14:05:18 +08007553 struct fixed_file_ref_node *ref_node;
Pavel Begunkove2978222020-11-18 14:56:26 +00007554 struct fixed_file_data *data;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007555 struct io_ring_ctx *ctx;
Pavel Begunkove2978222020-11-18 14:56:26 +00007556 bool first_add = false;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007557 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007558
Xiaoguang Wang05589552020-03-31 14:05:18 +08007559 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Pavel Begunkove2978222020-11-18 14:56:26 +00007560 data = ref_node->file_data;
7561 ctx = data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007562
Pavel Begunkove2978222020-11-18 14:56:26 +00007563 spin_lock(&data->lock);
7564 ref_node->done = true;
7565
7566 while (!list_empty(&data->ref_list)) {
7567 ref_node = list_first_entry(&data->ref_list,
7568 struct fixed_file_ref_node, node);
7569 /* recycle ref nodes in order */
7570 if (!ref_node->done)
7571 break;
7572 list_del(&ref_node->node);
7573 first_add |= llist_add(&ref_node->llist, &ctx->file_put_llist);
7574 }
7575 spin_unlock(&data->lock);
7576
7577 if (percpu_ref_is_dying(&data->refs))
Jens Axboe4a38aed22020-05-14 17:21:15 -06007578 delay = 0;
7579
Jens Axboe4a38aed22020-05-14 17:21:15 -06007580 if (!delay)
7581 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
7582 else if (first_add)
7583 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007584}
7585
7586static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
7587 struct io_ring_ctx *ctx)
7588{
7589 struct fixed_file_ref_node *ref_node;
7590
7591 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7592 if (!ref_node)
7593 return ERR_PTR(-ENOMEM);
7594
7595 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
7596 0, GFP_KERNEL)) {
7597 kfree(ref_node);
7598 return ERR_PTR(-ENOMEM);
7599 }
7600 INIT_LIST_HEAD(&ref_node->node);
7601 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007602 ref_node->file_data = ctx->file_data;
Pavel Begunkove2978222020-11-18 14:56:26 +00007603 ref_node->done = false;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007604 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007605}
7606
7607static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
7608{
7609 percpu_ref_exit(&ref_node->refs);
7610 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007611}
7612
7613static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
7614 unsigned nr_args)
7615{
7616 __s32 __user *fds = (__s32 __user *) arg;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007617 unsigned nr_tables, i;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007618 struct file *file;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007619 int fd, ret = -ENOMEM;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007620 struct fixed_file_ref_node *ref_node;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007621 struct fixed_file_data *file_data;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007622
7623 if (ctx->file_data)
7624 return -EBUSY;
7625 if (!nr_args)
7626 return -EINVAL;
7627 if (nr_args > IORING_MAX_FIXED_FILES)
7628 return -EMFILE;
7629
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007630 file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
7631 if (!file_data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007632 return -ENOMEM;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007633 file_data->ctx = ctx;
7634 init_completion(&file_data->done);
7635 INIT_LIST_HEAD(&file_data->ref_list);
7636 spin_lock_init(&file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007637
7638 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
Colin Ian King035fbaf2020-10-12 15:03:41 +01007639 file_data->table = kcalloc(nr_tables, sizeof(*file_data->table),
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007640 GFP_KERNEL);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007641 if (!file_data->table)
7642 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007643
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007644 if (percpu_ref_init(&file_data->refs, io_file_ref_kill,
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007645 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
7646 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007647
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007648 if (io_sqe_alloc_file_tables(file_data, nr_tables, nr_args))
7649 goto out_ref;
Jens Axboe55cbc252020-10-14 07:35:57 -06007650 ctx->file_data = file_data;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007651
7652 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
7653 struct fixed_file_table *table;
7654 unsigned index;
7655
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007656 if (copy_from_user(&fd, &fds[i], sizeof(fd))) {
7657 ret = -EFAULT;
7658 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007659 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007660 /* allow sparse sets */
7661 if (fd == -1)
7662 continue;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007663
Jens Axboe05f3fb32019-12-09 11:22:50 -07007664 file = fget(fd);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007665 ret = -EBADF;
7666 if (!file)
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007667 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007668
7669 /*
7670 * Don't allow io_uring instances to be registered. If UNIX
7671 * isn't enabled, then this causes a reference cycle and this
7672 * instance can never get freed. If UNIX is enabled we'll
7673 * handle it just fine, but there's still no point in allowing
7674 * a ring fd as it doesn't support regular read/write anyway.
7675 */
7676 if (file->f_op == &io_uring_fops) {
7677 fput(file);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007678 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007679 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007680 table = &file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7681 index = i & IORING_FILE_TABLE_MASK;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007682 table->files[index] = file;
7683 }
7684
Jens Axboe05f3fb32019-12-09 11:22:50 -07007685 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007686 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007687 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007688 return ret;
7689 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007690
Xiaoguang Wang05589552020-03-31 14:05:18 +08007691 ref_node = alloc_fixed_file_ref_node(ctx);
7692 if (IS_ERR(ref_node)) {
7693 io_sqe_files_unregister(ctx);
7694 return PTR_ERR(ref_node);
7695 }
7696
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007697 file_data->node = ref_node;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007698 spin_lock(&file_data->lock);
Pavel Begunkove2978222020-11-18 14:56:26 +00007699 list_add_tail(&ref_node->node, &file_data->ref_list);
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007700 spin_unlock(&file_data->lock);
7701 percpu_ref_get(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007702 return ret;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007703out_fput:
7704 for (i = 0; i < ctx->nr_user_files; i++) {
7705 file = io_file_from_index(ctx, i);
7706 if (file)
7707 fput(file);
7708 }
7709 for (i = 0; i < nr_tables; i++)
7710 kfree(file_data->table[i].files);
7711 ctx->nr_user_files = 0;
7712out_ref:
7713 percpu_ref_exit(&file_data->refs);
7714out_free:
7715 kfree(file_data->table);
7716 kfree(file_data);
Jens Axboe55cbc252020-10-14 07:35:57 -06007717 ctx->file_data = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007718 return ret;
7719}
7720
Jens Axboec3a31e62019-10-03 13:59:56 -06007721static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
7722 int index)
7723{
7724#if defined(CONFIG_UNIX)
7725 struct sock *sock = ctx->ring_sock->sk;
7726 struct sk_buff_head *head = &sock->sk_receive_queue;
7727 struct sk_buff *skb;
7728
7729 /*
7730 * See if we can merge this file into an existing skb SCM_RIGHTS
7731 * file set. If there's no room, fall back to allocating a new skb
7732 * and filling it in.
7733 */
7734 spin_lock_irq(&head->lock);
7735 skb = skb_peek(head);
7736 if (skb) {
7737 struct scm_fp_list *fpl = UNIXCB(skb).fp;
7738
7739 if (fpl->count < SCM_MAX_FD) {
7740 __skb_unlink(skb, head);
7741 spin_unlock_irq(&head->lock);
7742 fpl->fp[fpl->count] = get_file(file);
7743 unix_inflight(fpl->user, fpl->fp[fpl->count]);
7744 fpl->count++;
7745 spin_lock_irq(&head->lock);
7746 __skb_queue_head(head, skb);
7747 } else {
7748 skb = NULL;
7749 }
7750 }
7751 spin_unlock_irq(&head->lock);
7752
7753 if (skb) {
7754 fput(file);
7755 return 0;
7756 }
7757
7758 return __io_sqe_files_scm(ctx, 1, index);
7759#else
7760 return 0;
7761#endif
7762}
7763
Hillf Dantona5318d32020-03-23 17:47:15 +08007764static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08007765 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007766{
Hillf Dantona5318d32020-03-23 17:47:15 +08007767 struct io_file_put *pfile;
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007768 struct fixed_file_ref_node *ref_node = data->node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007769
Jens Axboe05f3fb32019-12-09 11:22:50 -07007770 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08007771 if (!pfile)
7772 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007773
7774 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007775 list_add(&pfile->list, &ref_node->file_list);
7776
Hillf Dantona5318d32020-03-23 17:47:15 +08007777 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007778}
7779
7780static int __io_sqe_files_update(struct io_ring_ctx *ctx,
7781 struct io_uring_files_update *up,
7782 unsigned nr_args)
7783{
7784 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007785 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007786 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007787 __s32 __user *fds;
7788 int fd, i, err;
7789 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007790 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06007791
Jens Axboe05f3fb32019-12-09 11:22:50 -07007792 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06007793 return -EOVERFLOW;
7794 if (done > ctx->nr_user_files)
7795 return -EINVAL;
7796
Xiaoguang Wang05589552020-03-31 14:05:18 +08007797 ref_node = alloc_fixed_file_ref_node(ctx);
7798 if (IS_ERR(ref_node))
7799 return PTR_ERR(ref_node);
7800
Jens Axboec3a31e62019-10-03 13:59:56 -06007801 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007802 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06007803 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007804 struct fixed_file_table *table;
7805 unsigned index;
7806
Jens Axboec3a31e62019-10-03 13:59:56 -06007807 err = 0;
7808 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
7809 err = -EFAULT;
7810 break;
7811 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007812 i = array_index_nospec(up->offset, ctx->nr_user_files);
7813 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06007814 index = i & IORING_FILE_TABLE_MASK;
7815 if (table->files[index]) {
Jiufei Xue98dfd502020-09-01 13:35:02 +08007816 file = table->files[index];
Hillf Dantona5318d32020-03-23 17:47:15 +08007817 err = io_queue_file_removal(data, file);
7818 if (err)
7819 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06007820 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007821 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06007822 }
7823 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06007824 file = fget(fd);
7825 if (!file) {
7826 err = -EBADF;
7827 break;
7828 }
7829 /*
7830 * Don't allow io_uring instances to be registered. If
7831 * UNIX isn't enabled, then this causes a reference
7832 * cycle and this instance can never get freed. If UNIX
7833 * is enabled we'll handle it just fine, but there's
7834 * still no point in allowing a ring fd as it doesn't
7835 * support regular read/write anyway.
7836 */
7837 if (file->f_op == &io_uring_fops) {
7838 fput(file);
7839 err = -EBADF;
7840 break;
7841 }
Jens Axboe65e19f52019-10-26 07:20:21 -06007842 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007843 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007844 if (err) {
Jiufei Xue95d1c8e2020-09-02 17:59:39 +08007845 table->files[index] = NULL;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007846 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007847 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007848 }
Jens Axboec3a31e62019-10-03 13:59:56 -06007849 }
7850 nr_args--;
7851 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007852 up->offset++;
7853 }
7854
Xiaoguang Wang05589552020-03-31 14:05:18 +08007855 if (needs_switch) {
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007856 percpu_ref_kill(&data->node->refs);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007857 spin_lock(&data->lock);
Pavel Begunkove2978222020-11-18 14:56:26 +00007858 list_add_tail(&ref_node->node, &data->ref_list);
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007859 data->node = ref_node;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007860 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007861 percpu_ref_get(&ctx->file_data->refs);
7862 } else
7863 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06007864
7865 return done ? done : err;
7866}
Xiaoguang Wang05589552020-03-31 14:05:18 +08007867
Jens Axboe05f3fb32019-12-09 11:22:50 -07007868static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
7869 unsigned nr_args)
7870{
7871 struct io_uring_files_update up;
7872
7873 if (!ctx->file_data)
7874 return -ENXIO;
7875 if (!nr_args)
7876 return -EINVAL;
7877 if (copy_from_user(&up, arg, sizeof(up)))
7878 return -EFAULT;
7879 if (up.resv)
7880 return -EINVAL;
7881
7882 return __io_sqe_files_update(ctx, &up, nr_args);
7883}
Jens Axboec3a31e62019-10-03 13:59:56 -06007884
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007885static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07007886{
7887 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
7888
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007889 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07007890 io_put_req(req);
7891}
7892
Pavel Begunkov24369c22020-01-28 03:15:48 +03007893static int io_init_wq_offload(struct io_ring_ctx *ctx,
7894 struct io_uring_params *p)
7895{
7896 struct io_wq_data data;
7897 struct fd f;
7898 struct io_ring_ctx *ctx_attach;
7899 unsigned int concurrency;
7900 int ret = 0;
7901
7902 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007903 data.free_work = io_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03007904 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03007905
7906 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
7907 /* Do QD, or 4 * CPUS, whatever is smallest */
7908 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
7909
7910 ctx->io_wq = io_wq_create(concurrency, &data);
7911 if (IS_ERR(ctx->io_wq)) {
7912 ret = PTR_ERR(ctx->io_wq);
7913 ctx->io_wq = NULL;
7914 }
7915 return ret;
7916 }
7917
7918 f = fdget(p->wq_fd);
7919 if (!f.file)
7920 return -EBADF;
7921
7922 if (f.file->f_op != &io_uring_fops) {
7923 ret = -EINVAL;
7924 goto out_fput;
7925 }
7926
7927 ctx_attach = f.file->private_data;
7928 /* @io_wq is protected by holding the fd */
7929 if (!io_wq_get(ctx_attach->io_wq, &data)) {
7930 ret = -EINVAL;
7931 goto out_fput;
7932 }
7933
7934 ctx->io_wq = ctx_attach->io_wq;
7935out_fput:
7936 fdput(f);
7937 return ret;
7938}
7939
Jens Axboe0f212202020-09-13 13:09:39 -06007940static int io_uring_alloc_task_context(struct task_struct *task)
7941{
7942 struct io_uring_task *tctx;
Jens Axboed8a6df12020-10-15 16:24:45 -06007943 int ret;
Jens Axboe0f212202020-09-13 13:09:39 -06007944
7945 tctx = kmalloc(sizeof(*tctx), GFP_KERNEL);
7946 if (unlikely(!tctx))
7947 return -ENOMEM;
7948
Jens Axboed8a6df12020-10-15 16:24:45 -06007949 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
7950 if (unlikely(ret)) {
7951 kfree(tctx);
7952 return ret;
7953 }
7954
Jens Axboe0f212202020-09-13 13:09:39 -06007955 xa_init(&tctx->xa);
7956 init_waitqueue_head(&tctx->wait);
7957 tctx->last = NULL;
Jens Axboefdaf0832020-10-30 09:37:30 -06007958 atomic_set(&tctx->in_idle, 0);
7959 tctx->sqpoll = false;
Jens Axboe500a3732020-10-15 17:38:03 -06007960 io_init_identity(&tctx->__identity);
7961 tctx->identity = &tctx->__identity;
Jens Axboe0f212202020-09-13 13:09:39 -06007962 task->io_uring = tctx;
7963 return 0;
7964}
7965
7966void __io_uring_free(struct task_struct *tsk)
7967{
7968 struct io_uring_task *tctx = tsk->io_uring;
7969
7970 WARN_ON_ONCE(!xa_empty(&tctx->xa));
Jens Axboe500a3732020-10-15 17:38:03 -06007971 WARN_ON_ONCE(refcount_read(&tctx->identity->count) != 1);
7972 if (tctx->identity != &tctx->__identity)
7973 kfree(tctx->identity);
Jens Axboed8a6df12020-10-15 16:24:45 -06007974 percpu_counter_destroy(&tctx->inflight);
Jens Axboe0f212202020-09-13 13:09:39 -06007975 kfree(tctx);
7976 tsk->io_uring = NULL;
7977}
7978
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02007979static int io_sq_offload_create(struct io_ring_ctx *ctx,
7980 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007981{
7982 int ret;
7983
Jens Axboe6c271ce2019-01-10 11:22:30 -07007984 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06007985 struct io_sq_data *sqd;
7986
Jens Axboe3ec482d2019-04-08 10:51:01 -06007987 ret = -EPERM;
Jens Axboece59fc62020-09-02 13:28:09 -06007988 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_NICE))
Jens Axboe3ec482d2019-04-08 10:51:01 -06007989 goto err;
7990
Jens Axboe534ca6d2020-09-02 13:52:19 -06007991 sqd = io_get_sq_data(p);
7992 if (IS_ERR(sqd)) {
7993 ret = PTR_ERR(sqd);
7994 goto err;
7995 }
Jens Axboe69fb2132020-09-14 11:16:23 -06007996
Jens Axboe534ca6d2020-09-02 13:52:19 -06007997 ctx->sq_data = sqd;
Jens Axboe69fb2132020-09-14 11:16:23 -06007998 io_sq_thread_park(sqd);
7999 mutex_lock(&sqd->ctx_lock);
8000 list_add(&ctx->sqd_list, &sqd->ctx_new_list);
8001 mutex_unlock(&sqd->ctx_lock);
8002 io_sq_thread_unpark(sqd);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008003
Jens Axboe917257d2019-04-13 09:28:55 -06008004 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8005 if (!ctx->sq_thread_idle)
8006 ctx->sq_thread_idle = HZ;
8007
Jens Axboeaa061652020-09-02 14:50:27 -06008008 if (sqd->thread)
8009 goto done;
8010
Jens Axboe6c271ce2019-01-10 11:22:30 -07008011 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06008012 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008013
Jens Axboe917257d2019-04-13 09:28:55 -06008014 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06008015 if (cpu >= nr_cpu_ids)
8016 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08008017 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06008018 goto err;
8019
Jens Axboe69fb2132020-09-14 11:16:23 -06008020 sqd->thread = kthread_create_on_cpu(io_sq_thread, sqd,
Jens Axboe534ca6d2020-09-02 13:52:19 -06008021 cpu, "io_uring-sq");
Jens Axboe6c271ce2019-01-10 11:22:30 -07008022 } else {
Jens Axboe69fb2132020-09-14 11:16:23 -06008023 sqd->thread = kthread_create(io_sq_thread, sqd,
Jens Axboe6c271ce2019-01-10 11:22:30 -07008024 "io_uring-sq");
8025 }
Jens Axboe534ca6d2020-09-02 13:52:19 -06008026 if (IS_ERR(sqd->thread)) {
8027 ret = PTR_ERR(sqd->thread);
8028 sqd->thread = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008029 goto err;
8030 }
Jens Axboe534ca6d2020-09-02 13:52:19 -06008031 ret = io_uring_alloc_task_context(sqd->thread);
Jens Axboe0f212202020-09-13 13:09:39 -06008032 if (ret)
8033 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008034 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8035 /* Can't have SQ_AFF without SQPOLL */
8036 ret = -EINVAL;
8037 goto err;
8038 }
8039
Jens Axboeaa061652020-09-02 14:50:27 -06008040done:
Pavel Begunkov24369c22020-01-28 03:15:48 +03008041 ret = io_init_wq_offload(ctx, p);
8042 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008043 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008044
8045 return 0;
8046err:
Jens Axboe54a91f32019-09-10 09:15:04 -06008047 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008048 return ret;
8049}
8050
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008051static void io_sq_offload_start(struct io_ring_ctx *ctx)
8052{
Jens Axboe534ca6d2020-09-02 13:52:19 -06008053 struct io_sq_data *sqd = ctx->sq_data;
8054
8055 if ((ctx->flags & IORING_SETUP_SQPOLL) && sqd->thread)
8056 wake_up_process(sqd->thread);
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008057}
8058
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008059static inline void __io_unaccount_mem(struct user_struct *user,
8060 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008061{
8062 atomic_long_sub(nr_pages, &user->locked_vm);
8063}
8064
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008065static inline int __io_account_mem(struct user_struct *user,
8066 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008067{
8068 unsigned long page_limit, cur_pages, new_pages;
8069
8070 /* Don't allow more pages than we can safely lock */
8071 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8072
8073 do {
8074 cur_pages = atomic_long_read(&user->locked_vm);
8075 new_pages = cur_pages + nr_pages;
8076 if (new_pages > page_limit)
8077 return -ENOMEM;
8078 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8079 new_pages) != cur_pages);
8080
8081 return 0;
8082}
8083
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008084static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
8085 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008086{
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008087 if (ctx->limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008088 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008089
Jens Axboe2aede0e2020-09-14 10:45:53 -06008090 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008091 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008092 ctx->mm_account->locked_vm -= nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008093 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008094 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008095 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008096}
8097
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008098static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
8099 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008100{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008101 int ret;
8102
8103 if (ctx->limit_mem) {
8104 ret = __io_account_mem(ctx->user, nr_pages);
8105 if (ret)
8106 return ret;
8107 }
8108
Jens Axboe2aede0e2020-09-14 10:45:53 -06008109 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008110 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008111 ctx->mm_account->locked_vm += nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008112 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008113 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008114 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008115
8116 return 0;
8117}
8118
Jens Axboe2b188cc2019-01-07 10:46:33 -07008119static void io_mem_free(void *ptr)
8120{
Mark Rutland52e04ef2019-04-30 17:30:21 +01008121 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008122
Mark Rutland52e04ef2019-04-30 17:30:21 +01008123 if (!ptr)
8124 return;
8125
8126 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008127 if (put_page_testzero(page))
8128 free_compound_page(page);
8129}
8130
8131static void *io_mem_alloc(size_t size)
8132{
8133 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
8134 __GFP_NORETRY;
8135
8136 return (void *) __get_free_pages(gfp_flags, get_order(size));
8137}
8138
Hristo Venev75b28af2019-08-26 17:23:46 +00008139static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
8140 size_t *sq_offset)
8141{
8142 struct io_rings *rings;
8143 size_t off, sq_array_size;
8144
8145 off = struct_size(rings, cqes, cq_entries);
8146 if (off == SIZE_MAX)
8147 return SIZE_MAX;
8148
8149#ifdef CONFIG_SMP
8150 off = ALIGN(off, SMP_CACHE_BYTES);
8151 if (off == 0)
8152 return SIZE_MAX;
8153#endif
8154
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02008155 if (sq_offset)
8156 *sq_offset = off;
8157
Hristo Venev75b28af2019-08-26 17:23:46 +00008158 sq_array_size = array_size(sizeof(u32), sq_entries);
8159 if (sq_array_size == SIZE_MAX)
8160 return SIZE_MAX;
8161
8162 if (check_add_overflow(off, sq_array_size, &off))
8163 return SIZE_MAX;
8164
Hristo Venev75b28af2019-08-26 17:23:46 +00008165 return off;
8166}
8167
Jens Axboe2b188cc2019-01-07 10:46:33 -07008168static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
8169{
Hristo Venev75b28af2019-08-26 17:23:46 +00008170 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008171
Hristo Venev75b28af2019-08-26 17:23:46 +00008172 pages = (size_t)1 << get_order(
8173 rings_size(sq_entries, cq_entries, NULL));
8174 pages += (size_t)1 << get_order(
8175 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008176
Hristo Venev75b28af2019-08-26 17:23:46 +00008177 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008178}
8179
Jens Axboeedafcce2019-01-09 09:16:05 -07008180static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
8181{
8182 int i, j;
8183
8184 if (!ctx->user_bufs)
8185 return -ENXIO;
8186
8187 for (i = 0; i < ctx->nr_user_bufs; i++) {
8188 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8189
8190 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08008191 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07008192
Jens Axboede293932020-09-17 16:19:16 -06008193 if (imu->acct_pages)
8194 io_unaccount_mem(ctx, imu->acct_pages, ACCT_PINNED);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008195 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07008196 imu->nr_bvecs = 0;
8197 }
8198
8199 kfree(ctx->user_bufs);
8200 ctx->user_bufs = NULL;
8201 ctx->nr_user_bufs = 0;
8202 return 0;
8203}
8204
8205static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8206 void __user *arg, unsigned index)
8207{
8208 struct iovec __user *src;
8209
8210#ifdef CONFIG_COMPAT
8211 if (ctx->compat) {
8212 struct compat_iovec __user *ciovs;
8213 struct compat_iovec ciov;
8214
8215 ciovs = (struct compat_iovec __user *) arg;
8216 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8217 return -EFAULT;
8218
Jens Axboed55e5f52019-12-11 16:12:15 -07008219 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07008220 dst->iov_len = ciov.iov_len;
8221 return 0;
8222 }
8223#endif
8224 src = (struct iovec __user *) arg;
8225 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8226 return -EFAULT;
8227 return 0;
8228}
8229
Jens Axboede293932020-09-17 16:19:16 -06008230/*
8231 * Not super efficient, but this is just a registration time. And we do cache
8232 * the last compound head, so generally we'll only do a full search if we don't
8233 * match that one.
8234 *
8235 * We check if the given compound head page has already been accounted, to
8236 * avoid double accounting it. This allows us to account the full size of the
8237 * page, not just the constituent pages of a huge page.
8238 */
8239static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8240 int nr_pages, struct page *hpage)
8241{
8242 int i, j;
8243
8244 /* check current page array */
8245 for (i = 0; i < nr_pages; i++) {
8246 if (!PageCompound(pages[i]))
8247 continue;
8248 if (compound_head(pages[i]) == hpage)
8249 return true;
8250 }
8251
8252 /* check previously registered pages */
8253 for (i = 0; i < ctx->nr_user_bufs; i++) {
8254 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8255
8256 for (j = 0; j < imu->nr_bvecs; j++) {
8257 if (!PageCompound(imu->bvec[j].bv_page))
8258 continue;
8259 if (compound_head(imu->bvec[j].bv_page) == hpage)
8260 return true;
8261 }
8262 }
8263
8264 return false;
8265}
8266
8267static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8268 int nr_pages, struct io_mapped_ubuf *imu,
8269 struct page **last_hpage)
8270{
8271 int i, ret;
8272
8273 for (i = 0; i < nr_pages; i++) {
8274 if (!PageCompound(pages[i])) {
8275 imu->acct_pages++;
8276 } else {
8277 struct page *hpage;
8278
8279 hpage = compound_head(pages[i]);
8280 if (hpage == *last_hpage)
8281 continue;
8282 *last_hpage = hpage;
8283 if (headpage_already_acct(ctx, pages, i, hpage))
8284 continue;
8285 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8286 }
8287 }
8288
8289 if (!imu->acct_pages)
8290 return 0;
8291
8292 ret = io_account_mem(ctx, imu->acct_pages, ACCT_PINNED);
8293 if (ret)
8294 imu->acct_pages = 0;
8295 return ret;
8296}
8297
Jens Axboeedafcce2019-01-09 09:16:05 -07008298static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
8299 unsigned nr_args)
8300{
8301 struct vm_area_struct **vmas = NULL;
8302 struct page **pages = NULL;
Jens Axboede293932020-09-17 16:19:16 -06008303 struct page *last_hpage = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008304 int i, j, got_pages = 0;
8305 int ret = -EINVAL;
8306
8307 if (ctx->user_bufs)
8308 return -EBUSY;
8309 if (!nr_args || nr_args > UIO_MAXIOV)
8310 return -EINVAL;
8311
8312 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
8313 GFP_KERNEL);
8314 if (!ctx->user_bufs)
8315 return -ENOMEM;
8316
8317 for (i = 0; i < nr_args; i++) {
8318 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8319 unsigned long off, start, end, ubuf;
8320 int pret, nr_pages;
8321 struct iovec iov;
8322 size_t size;
8323
8324 ret = io_copy_iov(ctx, &iov, arg, i);
8325 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03008326 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07008327
8328 /*
8329 * Don't impose further limits on the size and buffer
8330 * constraints here, we'll -EINVAL later when IO is
8331 * submitted if they are wrong.
8332 */
8333 ret = -EFAULT;
8334 if (!iov.iov_base || !iov.iov_len)
8335 goto err;
8336
8337 /* arbitrary limit, but we need something */
8338 if (iov.iov_len > SZ_1G)
8339 goto err;
8340
8341 ubuf = (unsigned long) iov.iov_base;
8342 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
8343 start = ubuf >> PAGE_SHIFT;
8344 nr_pages = end - start;
8345
Jens Axboeedafcce2019-01-09 09:16:05 -07008346 ret = 0;
8347 if (!pages || nr_pages > got_pages) {
Denis Efremova8c73c12020-06-05 12:32:03 +03008348 kvfree(vmas);
8349 kvfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008350 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07008351 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008352 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07008353 sizeof(struct vm_area_struct *),
8354 GFP_KERNEL);
8355 if (!pages || !vmas) {
8356 ret = -ENOMEM;
Jens Axboeedafcce2019-01-09 09:16:05 -07008357 goto err;
8358 }
8359 got_pages = nr_pages;
8360 }
8361
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008362 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07008363 GFP_KERNEL);
8364 ret = -ENOMEM;
Jens Axboede293932020-09-17 16:19:16 -06008365 if (!imu->bvec)
Jens Axboeedafcce2019-01-09 09:16:05 -07008366 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07008367
8368 ret = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07008369 mmap_read_lock(current->mm);
John Hubbard2113b052020-01-30 22:13:13 -08008370 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07008371 FOLL_WRITE | FOLL_LONGTERM,
8372 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008373 if (pret == nr_pages) {
8374 /* don't support file backed memory */
8375 for (j = 0; j < nr_pages; j++) {
8376 struct vm_area_struct *vma = vmas[j];
8377
8378 if (vma->vm_file &&
8379 !is_file_hugepages(vma->vm_file)) {
8380 ret = -EOPNOTSUPP;
8381 break;
8382 }
8383 }
8384 } else {
8385 ret = pret < 0 ? pret : -EFAULT;
8386 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07008387 mmap_read_unlock(current->mm);
Jens Axboeedafcce2019-01-09 09:16:05 -07008388 if (ret) {
8389 /*
8390 * if we did partial map, or found file backed vmas,
8391 * release any pages we did get
8392 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07008393 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08008394 unpin_user_pages(pages, pret);
Jens Axboede293932020-09-17 16:19:16 -06008395 kvfree(imu->bvec);
8396 goto err;
8397 }
8398
8399 ret = io_buffer_account_pin(ctx, pages, pret, imu, &last_hpage);
8400 if (ret) {
8401 unpin_user_pages(pages, pret);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008402 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07008403 goto err;
8404 }
8405
8406 off = ubuf & ~PAGE_MASK;
8407 size = iov.iov_len;
8408 for (j = 0; j < nr_pages; j++) {
8409 size_t vec_len;
8410
8411 vec_len = min_t(size_t, size, PAGE_SIZE - off);
8412 imu->bvec[j].bv_page = pages[j];
8413 imu->bvec[j].bv_len = vec_len;
8414 imu->bvec[j].bv_offset = off;
8415 off = 0;
8416 size -= vec_len;
8417 }
8418 /* store original address for later verification */
8419 imu->ubuf = ubuf;
8420 imu->len = iov.iov_len;
8421 imu->nr_bvecs = nr_pages;
8422
8423 ctx->nr_user_bufs++;
8424 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008425 kvfree(pages);
8426 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008427 return 0;
8428err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008429 kvfree(pages);
8430 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008431 io_sqe_buffer_unregister(ctx);
8432 return ret;
8433}
8434
Jens Axboe9b402842019-04-11 11:45:41 -06008435static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
8436{
8437 __s32 __user *fds = arg;
8438 int fd;
8439
8440 if (ctx->cq_ev_fd)
8441 return -EBUSY;
8442
8443 if (copy_from_user(&fd, fds, sizeof(*fds)))
8444 return -EFAULT;
8445
8446 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
8447 if (IS_ERR(ctx->cq_ev_fd)) {
8448 int ret = PTR_ERR(ctx->cq_ev_fd);
8449 ctx->cq_ev_fd = NULL;
8450 return ret;
8451 }
8452
8453 return 0;
8454}
8455
8456static int io_eventfd_unregister(struct io_ring_ctx *ctx)
8457{
8458 if (ctx->cq_ev_fd) {
8459 eventfd_ctx_put(ctx->cq_ev_fd);
8460 ctx->cq_ev_fd = NULL;
8461 return 0;
8462 }
8463
8464 return -ENXIO;
8465}
8466
Jens Axboe5a2e7452020-02-23 16:23:11 -07008467static int __io_destroy_buffers(int id, void *p, void *data)
8468{
8469 struct io_ring_ctx *ctx = data;
8470 struct io_buffer *buf = p;
8471
Jens Axboe067524e2020-03-02 16:32:28 -07008472 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07008473 return 0;
8474}
8475
8476static void io_destroy_buffers(struct io_ring_ctx *ctx)
8477{
8478 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
8479 idr_destroy(&ctx->io_buffer_idr);
8480}
8481
Jens Axboe2b188cc2019-01-07 10:46:33 -07008482static void io_ring_ctx_free(struct io_ring_ctx *ctx)
8483{
Jens Axboe6b063142019-01-10 22:13:58 -07008484 io_finish_async(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07008485 io_sqe_buffer_unregister(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06008486
8487 if (ctx->sqo_task) {
8488 put_task_struct(ctx->sqo_task);
8489 ctx->sqo_task = NULL;
8490 mmdrop(ctx->mm_account);
8491 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008492 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008493
Dennis Zhou91d8f512020-09-16 13:41:05 -07008494#ifdef CONFIG_BLK_CGROUP
8495 if (ctx->sqo_blkcg_css)
8496 css_put(ctx->sqo_blkcg_css);
8497#endif
8498
Jens Axboe6b063142019-01-10 22:13:58 -07008499 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06008500 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07008501 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07008502 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07008503
Jens Axboe2b188cc2019-01-07 10:46:33 -07008504#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07008505 if (ctx->ring_sock) {
8506 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07008507 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07008508 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008509#endif
8510
Hristo Venev75b28af2019-08-26 17:23:46 +00008511 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008512 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008513
8514 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008515 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07008516 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07008517 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07008518 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008519 kfree(ctx);
8520}
8521
8522static __poll_t io_uring_poll(struct file *file, poll_table *wait)
8523{
8524 struct io_ring_ctx *ctx = file->private_data;
8525 __poll_t mask = 0;
8526
8527 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02008528 /*
8529 * synchronizes with barrier from wq_has_sleeper call in
8530 * io_commit_cqring
8531 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07008532 smp_rmb();
Jens Axboe90554202020-09-03 12:12:41 -06008533 if (!io_sqring_full(ctx))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008534 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01008535 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008536 mask |= EPOLLIN | EPOLLRDNORM;
8537
8538 return mask;
8539}
8540
8541static int io_uring_fasync(int fd, struct file *file, int on)
8542{
8543 struct io_ring_ctx *ctx = file->private_data;
8544
8545 return fasync_helper(fd, file, on, &ctx->cq_fasync);
8546}
8547
Jens Axboe071698e2020-01-28 10:04:42 -07008548static int io_remove_personalities(int id, void *p, void *data)
8549{
8550 struct io_ring_ctx *ctx = data;
Jens Axboe1e6fa522020-10-15 08:46:24 -06008551 struct io_identity *iod;
Jens Axboe071698e2020-01-28 10:04:42 -07008552
Jens Axboe1e6fa522020-10-15 08:46:24 -06008553 iod = idr_remove(&ctx->personality_idr, id);
8554 if (iod) {
8555 put_cred(iod->creds);
8556 if (refcount_dec_and_test(&iod->count))
8557 kfree(iod);
8558 }
Jens Axboe071698e2020-01-28 10:04:42 -07008559 return 0;
8560}
8561
Jens Axboe85faa7b2020-04-09 18:14:00 -06008562static void io_ring_exit_work(struct work_struct *work)
8563{
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008564 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
8565 exit_work);
Jens Axboe85faa7b2020-04-09 18:14:00 -06008566
Jens Axboe56952e92020-06-17 15:00:04 -06008567 /*
8568 * If we're doing polled IO and end up having requests being
8569 * submitted async (out-of-line), then completions can come in while
8570 * we're waiting for refs to drop. We need to reap these manually,
8571 * as nobody else will be looking for them.
8572 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008573 do {
Jens Axboe56952e92020-06-17 15:00:04 -06008574 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008575 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008576 io_iopoll_try_reap_events(ctx);
8577 } while (!wait_for_completion_timeout(&ctx->ref_comp, HZ/20));
Jens Axboe85faa7b2020-04-09 18:14:00 -06008578 io_ring_ctx_free(ctx);
8579}
8580
Jens Axboe2b188cc2019-01-07 10:46:33 -07008581static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
8582{
8583 mutex_lock(&ctx->uring_lock);
8584 percpu_ref_kill(&ctx->refs);
8585 mutex_unlock(&ctx->uring_lock);
8586
Pavel Begunkov6b819282020-11-06 13:00:25 +00008587 io_kill_timeouts(ctx, NULL, NULL);
8588 io_poll_remove_all(ctx, NULL, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06008589
8590 if (ctx->io_wq)
8591 io_wq_cancel_all(ctx->io_wq);
8592
Jens Axboe15dff282019-11-13 09:09:23 -07008593 /* if we failed setting up the ctx, we might not have any rings */
8594 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008595 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008596 io_iopoll_try_reap_events(ctx);
Jens Axboe071698e2020-01-28 10:04:42 -07008597 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06008598
8599 /*
8600 * Do this upfront, so we won't have a grace period where the ring
8601 * is closed but resources aren't reaped yet. This can cause
8602 * spurious failure in setting up a new ring.
8603 */
Jens Axboe760618f2020-07-24 12:53:31 -06008604 io_unaccount_mem(ctx, ring_pages(ctx->sq_entries, ctx->cq_entries),
8605 ACCT_LOCKED);
Jens Axboe309fc032020-07-10 09:13:34 -06008606
Jens Axboe85faa7b2020-04-09 18:14:00 -06008607 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06008608 /*
8609 * Use system_unbound_wq to avoid spawning tons of event kworkers
8610 * if we're exiting a ton of rings at the same time. It just adds
8611 * noise and overhead, there's no discernable change in runtime
8612 * over using system_wq.
8613 */
8614 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008615}
8616
8617static int io_uring_release(struct inode *inode, struct file *file)
8618{
8619 struct io_ring_ctx *ctx = file->private_data;
8620
8621 file->private_data = NULL;
8622 io_ring_ctx_wait_and_kill(ctx);
8623 return 0;
8624}
8625
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008626struct io_task_cancel {
8627 struct task_struct *task;
8628 struct files_struct *files;
8629};
Jens Axboef254ac02020-08-12 17:33:30 -06008630
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008631static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Jens Axboeb711d4e2020-08-16 08:23:05 -07008632{
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008633 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008634 struct io_task_cancel *cancel = data;
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008635 bool ret;
8636
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008637 if (cancel->files && (req->flags & REQ_F_LINK_TIMEOUT)) {
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008638 unsigned long flags;
8639 struct io_ring_ctx *ctx = req->ctx;
8640
8641 /* protect against races with linked timeouts */
8642 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008643 ret = io_match_task(req, cancel->task, cancel->files);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008644 spin_unlock_irqrestore(&ctx->completion_lock, flags);
8645 } else {
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008646 ret = io_match_task(req, cancel->task, cancel->files);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008647 }
8648 return ret;
Jens Axboeb711d4e2020-08-16 08:23:05 -07008649}
8650
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008651static void io_cancel_defer_files(struct io_ring_ctx *ctx,
Pavel Begunkovef9865a2020-11-05 14:06:19 +00008652 struct task_struct *task,
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008653 struct files_struct *files)
8654{
8655 struct io_defer_entry *de = NULL;
8656 LIST_HEAD(list);
8657
8658 spin_lock_irq(&ctx->completion_lock);
8659 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkov08d23632020-11-06 13:00:22 +00008660 if (io_match_task(de->req, task, files)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008661 list_cut_position(&list, &ctx->defer_list, &de->list);
8662 break;
8663 }
8664 }
8665 spin_unlock_irq(&ctx->completion_lock);
8666
8667 while (!list_empty(&list)) {
8668 de = list_first_entry(&list, struct io_defer_entry, list);
8669 list_del_init(&de->list);
8670 req_set_fail_links(de->req);
8671 io_put_req(de->req);
8672 io_req_complete(de->req, -ECANCELED);
8673 kfree(de);
8674 }
8675}
8676
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008677static void io_uring_cancel_files(struct io_ring_ctx *ctx,
Pavel Begunkovdf9923f2020-11-06 13:00:23 +00008678 struct task_struct *task,
Jens Axboefcb323c2019-10-24 12:39:47 -06008679 struct files_struct *files)
8680{
Jens Axboefcb323c2019-10-24 12:39:47 -06008681 while (!list_empty_careful(&ctx->inflight_list)) {
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008682 struct io_task_cancel cancel = { .task = task, .files = NULL, };
8683 struct io_kiocb *req;
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008684 DEFINE_WAIT(wait);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008685 bool found = false;
Jens Axboefcb323c2019-10-24 12:39:47 -06008686
8687 spin_lock_irq(&ctx->inflight_lock);
8688 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Pavel Begunkovdf9923f2020-11-06 13:00:23 +00008689 if (req->task == task &&
8690 (req->work.flags & IO_WQ_WORK_FILES) &&
Jens Axboe98447d62020-10-14 10:48:51 -06008691 req->work.identity->files != files)
Jens Axboe768134d2019-11-10 20:30:53 -07008692 continue;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008693 found = true;
Jens Axboe768134d2019-11-10 20:30:53 -07008694 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06008695 }
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008696 if (found)
Jens Axboefcb323c2019-10-24 12:39:47 -06008697 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07008698 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06008699 spin_unlock_irq(&ctx->inflight_lock);
8700
Jens Axboe768134d2019-11-10 20:30:53 -07008701 /* We need to keep going until we don't find a matching req */
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008702 if (!found)
Jens Axboefcb323c2019-10-24 12:39:47 -06008703 break;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008704
8705 io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, &cancel, true);
8706 io_poll_remove_all(ctx, task, files);
8707 io_kill_timeouts(ctx, task, files);
Jens Axboe6200b0a2020-09-13 14:38:30 -06008708 /* cancellations _may_ trigger task work */
8709 io_run_task_work();
Jens Axboefcb323c2019-10-24 12:39:47 -06008710 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008711 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008712 }
8713}
8714
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008715static void __io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8716 struct task_struct *task)
Jens Axboe0f212202020-09-13 13:09:39 -06008717{
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008718 while (1) {
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008719 struct io_task_cancel cancel = { .task = task, .files = NULL, };
Jens Axboe0f212202020-09-13 13:09:39 -06008720 enum io_wq_cancel cret;
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008721 bool ret = false;
Jens Axboe0f212202020-09-13 13:09:39 -06008722
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008723 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, &cancel, true);
Jens Axboe0f212202020-09-13 13:09:39 -06008724 if (cret != IO_WQ_CANCEL_NOTFOUND)
8725 ret = true;
8726
8727 /* SQPOLL thread does its own polling */
8728 if (!(ctx->flags & IORING_SETUP_SQPOLL)) {
8729 while (!list_empty_careful(&ctx->iopoll_list)) {
8730 io_iopoll_try_reap_events(ctx);
8731 ret = true;
8732 }
8733 }
8734
Pavel Begunkov6b819282020-11-06 13:00:25 +00008735 ret |= io_poll_remove_all(ctx, task, NULL);
8736 ret |= io_kill_timeouts(ctx, task, NULL);
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008737 if (!ret)
8738 break;
8739 io_run_task_work();
8740 cond_resched();
Jens Axboe0f212202020-09-13 13:09:39 -06008741 }
Jens Axboe0f212202020-09-13 13:09:39 -06008742}
8743
8744/*
8745 * We need to iteratively cancel requests, in case a request has dependent
8746 * hard links. These persist even for failure of cancelations, hence keep
8747 * looping until none are found.
8748 */
8749static void io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8750 struct files_struct *files)
8751{
8752 struct task_struct *task = current;
8753
Jens Axboefdaf0832020-10-30 09:37:30 -06008754 if ((ctx->flags & IORING_SETUP_SQPOLL) && ctx->sq_data) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06008755 task = ctx->sq_data->thread;
Jens Axboefdaf0832020-10-30 09:37:30 -06008756 atomic_inc(&task->io_uring->in_idle);
8757 io_sq_thread_park(ctx->sq_data);
8758 }
Jens Axboe0f212202020-09-13 13:09:39 -06008759
Pavel Begunkovdf9923f2020-11-06 13:00:23 +00008760 io_cancel_defer_files(ctx, task, files);
Jens Axboe0f212202020-09-13 13:09:39 -06008761 io_cqring_overflow_flush(ctx, true, task, files);
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008762 io_uring_cancel_files(ctx, task, files);
Jens Axboe0f212202020-09-13 13:09:39 -06008763
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008764 if (!files)
8765 __io_uring_cancel_task_requests(ctx, task);
Jens Axboefdaf0832020-10-30 09:37:30 -06008766
8767 if ((ctx->flags & IORING_SETUP_SQPOLL) && ctx->sq_data) {
8768 atomic_dec(&task->io_uring->in_idle);
8769 /*
8770 * If the files that are going away are the ones in the thread
8771 * identity, clear them out.
8772 */
8773 if (task->io_uring->identity->files == files)
8774 task->io_uring->identity->files = NULL;
8775 io_sq_thread_unpark(ctx->sq_data);
8776 }
Jens Axboe0f212202020-09-13 13:09:39 -06008777}
8778
8779/*
8780 * Note that this task has used io_uring. We use it for cancelation purposes.
8781 */
Jens Axboefdaf0832020-10-30 09:37:30 -06008782static int io_uring_add_task_file(struct io_ring_ctx *ctx, struct file *file)
Jens Axboe0f212202020-09-13 13:09:39 -06008783{
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008784 struct io_uring_task *tctx = current->io_uring;
8785
8786 if (unlikely(!tctx)) {
Jens Axboe0f212202020-09-13 13:09:39 -06008787 int ret;
8788
8789 ret = io_uring_alloc_task_context(current);
8790 if (unlikely(ret))
8791 return ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008792 tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06008793 }
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008794 if (tctx->last != file) {
8795 void *old = xa_load(&tctx->xa, (unsigned long)file);
Jens Axboe0f212202020-09-13 13:09:39 -06008796
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008797 if (!old) {
Jens Axboe0f212202020-09-13 13:09:39 -06008798 get_file(file);
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008799 xa_store(&tctx->xa, (unsigned long)file, file, GFP_KERNEL);
Jens Axboe0f212202020-09-13 13:09:39 -06008800 }
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008801 tctx->last = file;
Jens Axboe0f212202020-09-13 13:09:39 -06008802 }
8803
Jens Axboefdaf0832020-10-30 09:37:30 -06008804 /*
8805 * This is race safe in that the task itself is doing this, hence it
8806 * cannot be going through the exit/cancel paths at the same time.
8807 * This cannot be modified while exit/cancel is running.
8808 */
8809 if (!tctx->sqpoll && (ctx->flags & IORING_SETUP_SQPOLL))
8810 tctx->sqpoll = true;
8811
Jens Axboe0f212202020-09-13 13:09:39 -06008812 return 0;
8813}
8814
8815/*
8816 * Remove this io_uring_file -> task mapping.
8817 */
8818static void io_uring_del_task_file(struct file *file)
8819{
8820 struct io_uring_task *tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06008821
8822 if (tctx->last == file)
8823 tctx->last = NULL;
Matthew Wilcox (Oracle)5e2ed8c2020-10-09 13:49:53 +01008824 file = xa_erase(&tctx->xa, (unsigned long)file);
Jens Axboe0f212202020-09-13 13:09:39 -06008825 if (file)
8826 fput(file);
8827}
8828
Jens Axboe0f212202020-09-13 13:09:39 -06008829/*
8830 * Drop task note for this file if we're the only ones that hold it after
8831 * pending fput()
8832 */
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008833static void io_uring_attempt_task_drop(struct file *file)
Jens Axboe0f212202020-09-13 13:09:39 -06008834{
8835 if (!current->io_uring)
8836 return;
8837 /*
8838 * fput() is pending, will be 2 if the only other ref is our potential
8839 * task file note. If the task is exiting, drop regardless of count.
8840 */
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008841 if (fatal_signal_pending(current) || (current->flags & PF_EXITING) ||
8842 atomic_long_read(&file->f_count) == 2)
8843 io_uring_del_task_file(file);
Jens Axboe0f212202020-09-13 13:09:39 -06008844}
8845
8846void __io_uring_files_cancel(struct files_struct *files)
8847{
8848 struct io_uring_task *tctx = current->io_uring;
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008849 struct file *file;
8850 unsigned long index;
Jens Axboe0f212202020-09-13 13:09:39 -06008851
8852 /* make sure overflow events are dropped */
Jens Axboefdaf0832020-10-30 09:37:30 -06008853 atomic_inc(&tctx->in_idle);
Jens Axboe0f212202020-09-13 13:09:39 -06008854
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008855 xa_for_each(&tctx->xa, index, file) {
8856 struct io_ring_ctx *ctx = file->private_data;
Jens Axboe0f212202020-09-13 13:09:39 -06008857
8858 io_uring_cancel_task_requests(ctx, files);
8859 if (files)
8860 io_uring_del_task_file(file);
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008861 }
Jens Axboefdaf0832020-10-30 09:37:30 -06008862
8863 atomic_dec(&tctx->in_idle);
8864}
8865
8866static s64 tctx_inflight(struct io_uring_task *tctx)
8867{
8868 unsigned long index;
8869 struct file *file;
8870 s64 inflight;
8871
8872 inflight = percpu_counter_sum(&tctx->inflight);
8873 if (!tctx->sqpoll)
8874 return inflight;
8875
8876 /*
8877 * If we have SQPOLL rings, then we need to iterate and find them, and
8878 * add the pending count for those.
8879 */
8880 xa_for_each(&tctx->xa, index, file) {
8881 struct io_ring_ctx *ctx = file->private_data;
8882
8883 if (ctx->flags & IORING_SETUP_SQPOLL) {
8884 struct io_uring_task *__tctx = ctx->sqo_task->io_uring;
8885
8886 inflight += percpu_counter_sum(&__tctx->inflight);
8887 }
8888 }
8889
8890 return inflight;
Jens Axboe0f212202020-09-13 13:09:39 -06008891}
8892
Jens Axboe0f212202020-09-13 13:09:39 -06008893/*
8894 * Find any io_uring fd that this task has registered or done IO on, and cancel
8895 * requests.
8896 */
8897void __io_uring_task_cancel(void)
8898{
8899 struct io_uring_task *tctx = current->io_uring;
8900 DEFINE_WAIT(wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06008901 s64 inflight;
Jens Axboe0f212202020-09-13 13:09:39 -06008902
8903 /* make sure overflow events are dropped */
Jens Axboefdaf0832020-10-30 09:37:30 -06008904 atomic_inc(&tctx->in_idle);
Jens Axboe0f212202020-09-13 13:09:39 -06008905
Jens Axboed8a6df12020-10-15 16:24:45 -06008906 do {
Jens Axboe0f212202020-09-13 13:09:39 -06008907 /* read completions before cancelations */
Jens Axboefdaf0832020-10-30 09:37:30 -06008908 inflight = tctx_inflight(tctx);
Jens Axboed8a6df12020-10-15 16:24:45 -06008909 if (!inflight)
8910 break;
Jens Axboe0f212202020-09-13 13:09:39 -06008911 __io_uring_files_cancel(NULL);
8912
8913 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
8914
8915 /*
8916 * If we've seen completions, retry. This avoids a race where
8917 * a completion comes in before we did prepare_to_wait().
8918 */
Jens Axboefdaf0832020-10-30 09:37:30 -06008919 if (inflight != tctx_inflight(tctx))
Jens Axboe0f212202020-09-13 13:09:39 -06008920 continue;
Jens Axboe0f212202020-09-13 13:09:39 -06008921 schedule();
Jens Axboed8a6df12020-10-15 16:24:45 -06008922 } while (1);
Jens Axboe0f212202020-09-13 13:09:39 -06008923
8924 finish_wait(&tctx->wait, &wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06008925 atomic_dec(&tctx->in_idle);
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008926}
8927
Jens Axboefcb323c2019-10-24 12:39:47 -06008928static int io_uring_flush(struct file *file, void *data)
8929{
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008930 io_uring_attempt_task_drop(file);
Jens Axboefcb323c2019-10-24 12:39:47 -06008931 return 0;
8932}
8933
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008934static void *io_uring_validate_mmap_request(struct file *file,
8935 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008936{
Jens Axboe2b188cc2019-01-07 10:46:33 -07008937 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008938 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008939 struct page *page;
8940 void *ptr;
8941
8942 switch (offset) {
8943 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00008944 case IORING_OFF_CQ_RING:
8945 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008946 break;
8947 case IORING_OFF_SQES:
8948 ptr = ctx->sq_sqes;
8949 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008950 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008951 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008952 }
8953
8954 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07008955 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008956 return ERR_PTR(-EINVAL);
8957
8958 return ptr;
8959}
8960
8961#ifdef CONFIG_MMU
8962
8963static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8964{
8965 size_t sz = vma->vm_end - vma->vm_start;
8966 unsigned long pfn;
8967 void *ptr;
8968
8969 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
8970 if (IS_ERR(ptr))
8971 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008972
8973 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
8974 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
8975}
8976
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008977#else /* !CONFIG_MMU */
8978
8979static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8980{
8981 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
8982}
8983
8984static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
8985{
8986 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
8987}
8988
8989static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
8990 unsigned long addr, unsigned long len,
8991 unsigned long pgoff, unsigned long flags)
8992{
8993 void *ptr;
8994
8995 ptr = io_uring_validate_mmap_request(file, pgoff, len);
8996 if (IS_ERR(ptr))
8997 return PTR_ERR(ptr);
8998
8999 return (unsigned long) ptr;
9000}
9001
9002#endif /* !CONFIG_MMU */
9003
Jens Axboe90554202020-09-03 12:12:41 -06009004static void io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
9005{
9006 DEFINE_WAIT(wait);
9007
9008 do {
9009 if (!io_sqring_full(ctx))
9010 break;
9011
9012 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9013
9014 if (!io_sqring_full(ctx))
9015 break;
9016
9017 schedule();
9018 } while (!signal_pending(current));
9019
9020 finish_wait(&ctx->sqo_sq_wait, &wait);
9021}
9022
Hao Xuc73ebb62020-11-03 10:54:37 +08009023static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9024 struct __kernel_timespec __user **ts,
9025 const sigset_t __user **sig)
9026{
9027 struct io_uring_getevents_arg arg;
9028
9029 /*
9030 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9031 * is just a pointer to the sigset_t.
9032 */
9033 if (!(flags & IORING_ENTER_EXT_ARG)) {
9034 *sig = (const sigset_t __user *) argp;
9035 *ts = NULL;
9036 return 0;
9037 }
9038
9039 /*
9040 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9041 * timespec and sigset_t pointers if good.
9042 */
9043 if (*argsz != sizeof(arg))
9044 return -EINVAL;
9045 if (copy_from_user(&arg, argp, sizeof(arg)))
9046 return -EFAULT;
9047 *sig = u64_to_user_ptr(arg.sigmask);
9048 *argsz = arg.sigmask_sz;
9049 *ts = u64_to_user_ptr(arg.ts);
9050 return 0;
9051}
9052
Jens Axboe2b188cc2019-01-07 10:46:33 -07009053SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
Hao Xuc73ebb62020-11-03 10:54:37 +08009054 u32, min_complete, u32, flags, const void __user *, argp,
9055 size_t, argsz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009056{
9057 struct io_ring_ctx *ctx;
9058 long ret = -EBADF;
9059 int submitted = 0;
9060 struct fd f;
9061
Jens Axboe4c6e2772020-07-01 11:29:10 -06009062 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07009063
Jens Axboe90554202020-09-03 12:12:41 -06009064 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
Hao Xuc73ebb62020-11-03 10:54:37 +08009065 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009066 return -EINVAL;
9067
9068 f = fdget(fd);
9069 if (!f.file)
9070 return -EBADF;
9071
9072 ret = -EOPNOTSUPP;
9073 if (f.file->f_op != &io_uring_fops)
9074 goto out_fput;
9075
9076 ret = -ENXIO;
9077 ctx = f.file->private_data;
9078 if (!percpu_ref_tryget(&ctx->refs))
9079 goto out_fput;
9080
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009081 ret = -EBADFD;
9082 if (ctx->flags & IORING_SETUP_R_DISABLED)
9083 goto out;
9084
Jens Axboe6c271ce2019-01-10 11:22:30 -07009085 /*
9086 * For SQ polling, the thread will do all submissions and completions.
9087 * Just return the requested submit count, and wake the thread if
9088 * we were asked to.
9089 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009090 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07009091 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07009092 if (!list_empty_careful(&ctx->cq_overflow_list))
Jens Axboee6c8aa92020-09-28 13:10:13 -06009093 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboe6c271ce2019-01-10 11:22:30 -07009094 if (flags & IORING_ENTER_SQ_WAKEUP)
Jens Axboe534ca6d2020-09-02 13:52:19 -06009095 wake_up(&ctx->sq_data->wait);
Jens Axboe90554202020-09-03 12:12:41 -06009096 if (flags & IORING_ENTER_SQ_WAIT)
9097 io_sqpoll_wait_sq(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07009098 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009099 } else if (to_submit) {
Jens Axboefdaf0832020-10-30 09:37:30 -06009100 ret = io_uring_add_task_file(ctx, f.file);
Jens Axboe0f212202020-09-13 13:09:39 -06009101 if (unlikely(ret))
9102 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009103 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009104 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009105 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009106
9107 if (submitted != to_submit)
9108 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009109 }
9110 if (flags & IORING_ENTER_GETEVENTS) {
Hao Xuc73ebb62020-11-03 10:54:37 +08009111 const sigset_t __user *sig;
9112 struct __kernel_timespec __user *ts;
9113
9114 ret = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
9115 if (unlikely(ret))
9116 goto out;
9117
Jens Axboe2b188cc2019-01-07 10:46:33 -07009118 min_complete = min(min_complete, ctx->cq_entries);
9119
Xiaoguang Wang32b22442020-03-11 09:26:09 +08009120 /*
9121 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
9122 * space applications don't need to do io completion events
9123 * polling again, they can rely on io_sq_thread to do polling
9124 * work, which can reduce cpu usage and uring_lock contention.
9125 */
9126 if (ctx->flags & IORING_SETUP_IOPOLL &&
9127 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03009128 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07009129 } else {
Hao Xuc73ebb62020-11-03 10:54:37 +08009130 ret = io_cqring_wait(ctx, min_complete, sig, argsz, ts);
Jens Axboedef596e2019-01-09 08:59:42 -07009131 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009132 }
9133
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009134out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03009135 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009136out_fput:
9137 fdput(f);
9138 return submitted ? submitted : ret;
9139}
9140
Tobias Klauserbebdb652020-02-26 18:38:32 +01009141#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07009142static int io_uring_show_cred(int id, void *p, void *data)
9143{
Jens Axboe6b47ab82020-11-05 09:50:16 -07009144 struct io_identity *iod = p;
9145 const struct cred *cred = iod->creds;
Jens Axboe87ce9552020-01-30 08:25:34 -07009146 struct seq_file *m = data;
9147 struct user_namespace *uns = seq_user_ns(m);
9148 struct group_info *gi;
9149 kernel_cap_t cap;
9150 unsigned __capi;
9151 int g;
9152
9153 seq_printf(m, "%5d\n", id);
9154 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
9155 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
9156 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
9157 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
9158 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
9159 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
9160 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
9161 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
9162 seq_puts(m, "\n\tGroups:\t");
9163 gi = cred->group_info;
9164 for (g = 0; g < gi->ngroups; g++) {
9165 seq_put_decimal_ull(m, g ? " " : "",
9166 from_kgid_munged(uns, gi->gid[g]));
9167 }
9168 seq_puts(m, "\n\tCapEff:\t");
9169 cap = cred->cap_effective;
9170 CAP_FOR_EACH_U32(__capi)
9171 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
9172 seq_putc(m, '\n');
9173 return 0;
9174}
9175
9176static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
9177{
Joseph Qidbbe9c62020-09-29 09:01:22 -06009178 struct io_sq_data *sq = NULL;
Jens Axboefad8e0d2020-09-28 08:57:48 -06009179 bool has_lock;
Jens Axboe87ce9552020-01-30 08:25:34 -07009180 int i;
9181
Jens Axboefad8e0d2020-09-28 08:57:48 -06009182 /*
9183 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
9184 * since fdinfo case grabs it in the opposite direction of normal use
9185 * cases. If we fail to get the lock, we just don't iterate any
9186 * structures that could be going away outside the io_uring mutex.
9187 */
9188 has_lock = mutex_trylock(&ctx->uring_lock);
9189
Joseph Qidbbe9c62020-09-29 09:01:22 -06009190 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL))
9191 sq = ctx->sq_data;
9192
9193 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
9194 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
Jens Axboe87ce9552020-01-30 08:25:34 -07009195 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009196 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009197 struct fixed_file_table *table;
9198 struct file *f;
9199
9200 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
9201 f = table->files[i & IORING_FILE_TABLE_MASK];
9202 if (f)
9203 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
9204 else
9205 seq_printf(m, "%5u: <none>\n", i);
9206 }
9207 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009208 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009209 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
9210
9211 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
9212 (unsigned int) buf->len);
9213 }
Jens Axboefad8e0d2020-09-28 08:57:48 -06009214 if (has_lock && !idr_is_empty(&ctx->personality_idr)) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009215 seq_printf(m, "Personalities:\n");
9216 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
9217 }
Jens Axboed7718a92020-02-14 22:23:12 -07009218 seq_printf(m, "PollList:\n");
9219 spin_lock_irq(&ctx->completion_lock);
9220 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
9221 struct hlist_head *list = &ctx->cancel_hash[i];
9222 struct io_kiocb *req;
9223
9224 hlist_for_each_entry(req, list, hash_node)
9225 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
9226 req->task->task_works != NULL);
9227 }
9228 spin_unlock_irq(&ctx->completion_lock);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009229 if (has_lock)
9230 mutex_unlock(&ctx->uring_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07009231}
9232
9233static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
9234{
9235 struct io_ring_ctx *ctx = f->private_data;
9236
9237 if (percpu_ref_tryget(&ctx->refs)) {
9238 __io_uring_show_fdinfo(ctx, m);
9239 percpu_ref_put(&ctx->refs);
9240 }
9241}
Tobias Klauserbebdb652020-02-26 18:38:32 +01009242#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07009243
Jens Axboe2b188cc2019-01-07 10:46:33 -07009244static const struct file_operations io_uring_fops = {
9245 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06009246 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009247 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009248#ifndef CONFIG_MMU
9249 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
9250 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
9251#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07009252 .poll = io_uring_poll,
9253 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01009254#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07009255 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01009256#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07009257};
9258
9259static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
9260 struct io_uring_params *p)
9261{
Hristo Venev75b28af2019-08-26 17:23:46 +00009262 struct io_rings *rings;
9263 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009264
Jens Axboebd740482020-08-05 12:58:23 -06009265 /* make sure these are sane, as we already accounted them */
9266 ctx->sq_entries = p->sq_entries;
9267 ctx->cq_entries = p->cq_entries;
9268
Hristo Venev75b28af2019-08-26 17:23:46 +00009269 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
9270 if (size == SIZE_MAX)
9271 return -EOVERFLOW;
9272
9273 rings = io_mem_alloc(size);
9274 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009275 return -ENOMEM;
9276
Hristo Venev75b28af2019-08-26 17:23:46 +00009277 ctx->rings = rings;
9278 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
9279 rings->sq_ring_mask = p->sq_entries - 1;
9280 rings->cq_ring_mask = p->cq_entries - 1;
9281 rings->sq_ring_entries = p->sq_entries;
9282 rings->cq_ring_entries = p->cq_entries;
9283 ctx->sq_mask = rings->sq_ring_mask;
9284 ctx->cq_mask = rings->cq_ring_mask;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009285
9286 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07009287 if (size == SIZE_MAX) {
9288 io_mem_free(ctx->rings);
9289 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009290 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07009291 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009292
9293 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07009294 if (!ctx->sq_sqes) {
9295 io_mem_free(ctx->rings);
9296 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009297 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07009298 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009299
Jens Axboe2b188cc2019-01-07 10:46:33 -07009300 return 0;
9301}
9302
9303/*
9304 * Allocate an anonymous fd, this is what constitutes the application
9305 * visible backing of an io_uring instance. The application mmaps this
9306 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
9307 * we have to tie this fd to a socket for file garbage collection purposes.
9308 */
9309static int io_uring_get_fd(struct io_ring_ctx *ctx)
9310{
9311 struct file *file;
9312 int ret;
9313
9314#if defined(CONFIG_UNIX)
9315 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
9316 &ctx->ring_sock);
9317 if (ret)
9318 return ret;
9319#endif
9320
9321 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
9322 if (ret < 0)
9323 goto err;
9324
9325 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
9326 O_RDWR | O_CLOEXEC);
9327 if (IS_ERR(file)) {
Jens Axboe0f212202020-09-13 13:09:39 -06009328err_fd:
Jens Axboe2b188cc2019-01-07 10:46:33 -07009329 put_unused_fd(ret);
9330 ret = PTR_ERR(file);
9331 goto err;
9332 }
9333
9334#if defined(CONFIG_UNIX)
9335 ctx->ring_sock->file = file;
9336#endif
Jens Axboefdaf0832020-10-30 09:37:30 -06009337 if (unlikely(io_uring_add_task_file(ctx, file))) {
Jens Axboe0f212202020-09-13 13:09:39 -06009338 file = ERR_PTR(-ENOMEM);
9339 goto err_fd;
9340 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009341 fd_install(ret, file);
9342 return ret;
9343err:
9344#if defined(CONFIG_UNIX)
9345 sock_release(ctx->ring_sock);
9346 ctx->ring_sock = NULL;
9347#endif
9348 return ret;
9349}
9350
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009351static int io_uring_create(unsigned entries, struct io_uring_params *p,
9352 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009353{
9354 struct user_struct *user = NULL;
9355 struct io_ring_ctx *ctx;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009356 bool limit_mem;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009357 int ret;
9358
Jens Axboe8110c1a2019-12-28 15:39:54 -07009359 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009360 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07009361 if (entries > IORING_MAX_ENTRIES) {
9362 if (!(p->flags & IORING_SETUP_CLAMP))
9363 return -EINVAL;
9364 entries = IORING_MAX_ENTRIES;
9365 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009366
9367 /*
9368 * Use twice as many entries for the CQ ring. It's possible for the
9369 * application to drive a higher depth than the size of the SQ ring,
9370 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06009371 * some flexibility in overcommitting a bit. If the application has
9372 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
9373 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07009374 */
9375 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06009376 if (p->flags & IORING_SETUP_CQSIZE) {
9377 /*
9378 * If IORING_SETUP_CQSIZE is set, we do the same roundup
9379 * to a power-of-two, if it isn't already. We do NOT impose
9380 * any cq vs sq ring sizing.
9381 */
Jens Axboe88ec3212020-11-11 10:38:53 -07009382 p->cq_entries = roundup_pow_of_two(p->cq_entries);
Jens Axboe8110c1a2019-12-28 15:39:54 -07009383 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06009384 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07009385 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
9386 if (!(p->flags & IORING_SETUP_CLAMP))
9387 return -EINVAL;
9388 p->cq_entries = IORING_MAX_CQ_ENTRIES;
9389 }
Jens Axboe33a107f2019-10-04 12:10:03 -06009390 } else {
9391 p->cq_entries = 2 * p->sq_entries;
9392 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009393
9394 user = get_uid(current_user());
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009395 limit_mem = !capable(CAP_IPC_LOCK);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009396
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009397 if (limit_mem) {
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07009398 ret = __io_account_mem(user,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009399 ring_pages(p->sq_entries, p->cq_entries));
9400 if (ret) {
9401 free_uid(user);
9402 return ret;
9403 }
9404 }
9405
9406 ctx = io_ring_ctx_alloc(p);
9407 if (!ctx) {
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009408 if (limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07009409 __io_unaccount_mem(user, ring_pages(p->sq_entries,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009410 p->cq_entries));
9411 free_uid(user);
9412 return -ENOMEM;
9413 }
9414 ctx->compat = in_compat_syscall();
Jens Axboe2b188cc2019-01-07 10:46:33 -07009415 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07009416 ctx->creds = get_current_cred();
Jens Axboe4ea33a92020-10-15 13:46:44 -06009417#ifdef CONFIG_AUDIT
9418 ctx->loginuid = current->loginuid;
9419 ctx->sessionid = current->sessionid;
9420#endif
Jens Axboe2aede0e2020-09-14 10:45:53 -06009421 ctx->sqo_task = get_task_struct(current);
9422
9423 /*
9424 * This is just grabbed for accounting purposes. When a process exits,
9425 * the mm is exited and dropped before the files, hence we need to hang
9426 * on to this mm purely for the purposes of being able to unaccount
9427 * memory (locked/pinned vm). It's not used for anything else.
9428 */
Jens Axboe6b7898e2020-08-25 07:58:00 -06009429 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -06009430 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -06009431
Dennis Zhou91d8f512020-09-16 13:41:05 -07009432#ifdef CONFIG_BLK_CGROUP
9433 /*
9434 * The sq thread will belong to the original cgroup it was inited in.
9435 * If the cgroup goes offline (e.g. disabling the io controller), then
9436 * issued bios will be associated with the closest cgroup later in the
9437 * block layer.
9438 */
9439 rcu_read_lock();
9440 ctx->sqo_blkcg_css = blkcg_css();
9441 ret = css_tryget_online(ctx->sqo_blkcg_css);
9442 rcu_read_unlock();
9443 if (!ret) {
9444 /* don't init against a dying cgroup, have the user try again */
9445 ctx->sqo_blkcg_css = NULL;
9446 ret = -ENODEV;
9447 goto err;
9448 }
9449#endif
Jens Axboe6c271ce2019-01-10 11:22:30 -07009450
Jens Axboe2b188cc2019-01-07 10:46:33 -07009451 /*
9452 * Account memory _before_ installing the file descriptor. Once
9453 * the descriptor is installed, it can get closed at any time. Also
Jens Axboe2b188cc2019-01-07 10:46:33 -07009454 * do this before hitting the general error path, as ring freeing
Hristo Venev75b28af2019-08-26 17:23:46 +00009455 * will un-account as well.
9456 */
9457 io_account_mem(ctx, ring_pages(p->sq_entries, p->cq_entries),
9458 ACCT_LOCKED);
9459 ctx->limit_mem = limit_mem;
9460
9461 ret = io_allocate_scq_urings(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009462 if (ret)
9463 goto err;
Hristo Venev75b28af2019-08-26 17:23:46 +00009464
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009465 ret = io_sq_offload_create(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009466 if (ret)
9467 goto err;
9468
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009469 if (!(p->flags & IORING_SETUP_R_DISABLED))
9470 io_sq_offload_start(ctx);
9471
Jens Axboe2b188cc2019-01-07 10:46:33 -07009472 memset(&p->sq_off, 0, sizeof(p->sq_off));
9473 p->sq_off.head = offsetof(struct io_rings, sq.head);
9474 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
9475 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
9476 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
9477 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
9478 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
9479 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
9480
9481 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00009482 p->cq_off.head = offsetof(struct io_rings, cq.head);
9483 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
9484 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
9485 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
9486 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
9487 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +02009488 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -06009489
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009490 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
9491 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +08009492 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
Hao Xuc73ebb62020-11-03 10:54:37 +08009493 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
9494 IORING_FEAT_EXT_ARG;
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009495
9496 if (copy_to_user(params, p, sizeof(*p))) {
9497 ret = -EFAULT;
9498 goto err;
9499 }
Jens Axboed1719f72020-07-30 13:43:53 -06009500
9501 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -06009502 * Install ring fd as the very last thing, so we don't risk someone
9503 * having closed it before we finish setup
9504 */
9505 ret = io_uring_get_fd(ctx);
9506 if (ret < 0)
9507 goto err;
9508
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02009509 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009510 return ret;
9511err:
9512 io_ring_ctx_wait_and_kill(ctx);
9513 return ret;
9514}
9515
9516/*
9517 * Sets up an aio uring context, and returns the fd. Applications asks for a
9518 * ring size, we return the actual sq/cq ring sizes (among other things) in the
9519 * params structure passed in.
9520 */
9521static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
9522{
9523 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009524 int i;
9525
9526 if (copy_from_user(&p, params, sizeof(p)))
9527 return -EFAULT;
9528 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
9529 if (p.resv[i])
9530 return -EINVAL;
9531 }
9532
Jens Axboe6c271ce2019-01-10 11:22:30 -07009533 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07009534 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009535 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
9536 IORING_SETUP_R_DISABLED))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009537 return -EINVAL;
9538
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009539 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009540}
9541
9542SYSCALL_DEFINE2(io_uring_setup, u32, entries,
9543 struct io_uring_params __user *, params)
9544{
9545 return io_uring_setup(entries, params);
9546}
9547
Jens Axboe66f4af92020-01-16 15:36:52 -07009548static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
9549{
9550 struct io_uring_probe *p;
9551 size_t size;
9552 int i, ret;
9553
9554 size = struct_size(p, ops, nr_args);
9555 if (size == SIZE_MAX)
9556 return -EOVERFLOW;
9557 p = kzalloc(size, GFP_KERNEL);
9558 if (!p)
9559 return -ENOMEM;
9560
9561 ret = -EFAULT;
9562 if (copy_from_user(p, arg, size))
9563 goto out;
9564 ret = -EINVAL;
9565 if (memchr_inv(p, 0, size))
9566 goto out;
9567
9568 p->last_op = IORING_OP_LAST - 1;
9569 if (nr_args > IORING_OP_LAST)
9570 nr_args = IORING_OP_LAST;
9571
9572 for (i = 0; i < nr_args; i++) {
9573 p->ops[i].op = i;
9574 if (!io_op_defs[i].not_supported)
9575 p->ops[i].flags = IO_URING_OP_SUPPORTED;
9576 }
9577 p->ops_len = i;
9578
9579 ret = 0;
9580 if (copy_to_user(arg, p, size))
9581 ret = -EFAULT;
9582out:
9583 kfree(p);
9584 return ret;
9585}
9586
Jens Axboe071698e2020-01-28 10:04:42 -07009587static int io_register_personality(struct io_ring_ctx *ctx)
9588{
Jens Axboe1e6fa522020-10-15 08:46:24 -06009589 struct io_identity *id;
9590 int ret;
Jens Axboe071698e2020-01-28 10:04:42 -07009591
Jens Axboe1e6fa522020-10-15 08:46:24 -06009592 id = kmalloc(sizeof(*id), GFP_KERNEL);
9593 if (unlikely(!id))
9594 return -ENOMEM;
9595
9596 io_init_identity(id);
9597 id->creds = get_current_cred();
9598
9599 ret = idr_alloc_cyclic(&ctx->personality_idr, id, 1, USHRT_MAX, GFP_KERNEL);
9600 if (ret < 0) {
9601 put_cred(id->creds);
9602 kfree(id);
9603 }
9604 return ret;
Jens Axboe071698e2020-01-28 10:04:42 -07009605}
9606
9607static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
9608{
Jens Axboe1e6fa522020-10-15 08:46:24 -06009609 struct io_identity *iod;
Jens Axboe071698e2020-01-28 10:04:42 -07009610
Jens Axboe1e6fa522020-10-15 08:46:24 -06009611 iod = idr_remove(&ctx->personality_idr, id);
9612 if (iod) {
9613 put_cred(iod->creds);
9614 if (refcount_dec_and_test(&iod->count))
9615 kfree(iod);
Jens Axboe071698e2020-01-28 10:04:42 -07009616 return 0;
9617 }
9618
9619 return -EINVAL;
9620}
9621
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009622static int io_register_restrictions(struct io_ring_ctx *ctx, void __user *arg,
9623 unsigned int nr_args)
9624{
9625 struct io_uring_restriction *res;
9626 size_t size;
9627 int i, ret;
9628
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009629 /* Restrictions allowed only if rings started disabled */
9630 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
9631 return -EBADFD;
9632
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009633 /* We allow only a single restrictions registration */
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009634 if (ctx->restrictions.registered)
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009635 return -EBUSY;
9636
9637 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
9638 return -EINVAL;
9639
9640 size = array_size(nr_args, sizeof(*res));
9641 if (size == SIZE_MAX)
9642 return -EOVERFLOW;
9643
9644 res = memdup_user(arg, size);
9645 if (IS_ERR(res))
9646 return PTR_ERR(res);
9647
9648 ret = 0;
9649
9650 for (i = 0; i < nr_args; i++) {
9651 switch (res[i].opcode) {
9652 case IORING_RESTRICTION_REGISTER_OP:
9653 if (res[i].register_op >= IORING_REGISTER_LAST) {
9654 ret = -EINVAL;
9655 goto out;
9656 }
9657
9658 __set_bit(res[i].register_op,
9659 ctx->restrictions.register_op);
9660 break;
9661 case IORING_RESTRICTION_SQE_OP:
9662 if (res[i].sqe_op >= IORING_OP_LAST) {
9663 ret = -EINVAL;
9664 goto out;
9665 }
9666
9667 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
9668 break;
9669 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
9670 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
9671 break;
9672 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
9673 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
9674 break;
9675 default:
9676 ret = -EINVAL;
9677 goto out;
9678 }
9679 }
9680
9681out:
9682 /* Reset all restrictions if an error happened */
9683 if (ret != 0)
9684 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
9685 else
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009686 ctx->restrictions.registered = true;
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009687
9688 kfree(res);
9689 return ret;
9690}
9691
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009692static int io_register_enable_rings(struct io_ring_ctx *ctx)
9693{
9694 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
9695 return -EBADFD;
9696
9697 if (ctx->restrictions.registered)
9698 ctx->restricted = 1;
9699
9700 ctx->flags &= ~IORING_SETUP_R_DISABLED;
9701
9702 io_sq_offload_start(ctx);
9703
9704 return 0;
9705}
9706
Jens Axboe071698e2020-01-28 10:04:42 -07009707static bool io_register_op_must_quiesce(int op)
9708{
9709 switch (op) {
9710 case IORING_UNREGISTER_FILES:
9711 case IORING_REGISTER_FILES_UPDATE:
9712 case IORING_REGISTER_PROBE:
9713 case IORING_REGISTER_PERSONALITY:
9714 case IORING_UNREGISTER_PERSONALITY:
9715 return false;
9716 default:
9717 return true;
9718 }
9719}
9720
Jens Axboeedafcce2019-01-09 09:16:05 -07009721static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
9722 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06009723 __releases(ctx->uring_lock)
9724 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07009725{
9726 int ret;
9727
Jens Axboe35fa71a2019-04-22 10:23:23 -06009728 /*
9729 * We're inside the ring mutex, if the ref is already dying, then
9730 * someone else killed the ctx or is already going through
9731 * io_uring_register().
9732 */
9733 if (percpu_ref_is_dying(&ctx->refs))
9734 return -ENXIO;
9735
Jens Axboe071698e2020-01-28 10:04:42 -07009736 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009737 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06009738
Jens Axboe05f3fb32019-12-09 11:22:50 -07009739 /*
9740 * Drop uring mutex before waiting for references to exit. If
9741 * another thread is currently inside io_uring_enter() it might
9742 * need to grab the uring_lock to make progress. If we hold it
9743 * here across the drain wait, then we can deadlock. It's safe
9744 * to drop the mutex here, since no new references will come in
9745 * after we've killed the percpu ref.
9746 */
9747 mutex_unlock(&ctx->uring_lock);
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009748 do {
9749 ret = wait_for_completion_interruptible(&ctx->ref_comp);
9750 if (!ret)
9751 break;
Jens Axboeed6930c2020-10-08 19:09:46 -06009752 ret = io_run_task_work_sig();
9753 if (ret < 0)
9754 break;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009755 } while (1);
9756
Jens Axboe05f3fb32019-12-09 11:22:50 -07009757 mutex_lock(&ctx->uring_lock);
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009758
Jens Axboec1503682020-01-08 08:26:07 -07009759 if (ret) {
9760 percpu_ref_resurrect(&ctx->refs);
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009761 goto out_quiesce;
9762 }
9763 }
9764
9765 if (ctx->restricted) {
9766 if (opcode >= IORING_REGISTER_LAST) {
9767 ret = -EINVAL;
9768 goto out;
9769 }
9770
9771 if (!test_bit(opcode, ctx->restrictions.register_op)) {
9772 ret = -EACCES;
Jens Axboec1503682020-01-08 08:26:07 -07009773 goto out;
9774 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07009775 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009776
9777 switch (opcode) {
9778 case IORING_REGISTER_BUFFERS:
9779 ret = io_sqe_buffer_register(ctx, arg, nr_args);
9780 break;
9781 case IORING_UNREGISTER_BUFFERS:
9782 ret = -EINVAL;
9783 if (arg || nr_args)
9784 break;
9785 ret = io_sqe_buffer_unregister(ctx);
9786 break;
Jens Axboe6b063142019-01-10 22:13:58 -07009787 case IORING_REGISTER_FILES:
9788 ret = io_sqe_files_register(ctx, arg, nr_args);
9789 break;
9790 case IORING_UNREGISTER_FILES:
9791 ret = -EINVAL;
9792 if (arg || nr_args)
9793 break;
9794 ret = io_sqe_files_unregister(ctx);
9795 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06009796 case IORING_REGISTER_FILES_UPDATE:
9797 ret = io_sqe_files_update(ctx, arg, nr_args);
9798 break;
Jens Axboe9b402842019-04-11 11:45:41 -06009799 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07009800 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06009801 ret = -EINVAL;
9802 if (nr_args != 1)
9803 break;
9804 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07009805 if (ret)
9806 break;
9807 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
9808 ctx->eventfd_async = 1;
9809 else
9810 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06009811 break;
9812 case IORING_UNREGISTER_EVENTFD:
9813 ret = -EINVAL;
9814 if (arg || nr_args)
9815 break;
9816 ret = io_eventfd_unregister(ctx);
9817 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07009818 case IORING_REGISTER_PROBE:
9819 ret = -EINVAL;
9820 if (!arg || nr_args > 256)
9821 break;
9822 ret = io_probe(ctx, arg, nr_args);
9823 break;
Jens Axboe071698e2020-01-28 10:04:42 -07009824 case IORING_REGISTER_PERSONALITY:
9825 ret = -EINVAL;
9826 if (arg || nr_args)
9827 break;
9828 ret = io_register_personality(ctx);
9829 break;
9830 case IORING_UNREGISTER_PERSONALITY:
9831 ret = -EINVAL;
9832 if (arg)
9833 break;
9834 ret = io_unregister_personality(ctx, nr_args);
9835 break;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009836 case IORING_REGISTER_ENABLE_RINGS:
9837 ret = -EINVAL;
9838 if (arg || nr_args)
9839 break;
9840 ret = io_register_enable_rings(ctx);
9841 break;
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009842 case IORING_REGISTER_RESTRICTIONS:
9843 ret = io_register_restrictions(ctx, arg, nr_args);
9844 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009845 default:
9846 ret = -EINVAL;
9847 break;
9848 }
9849
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009850out:
Jens Axboe071698e2020-01-28 10:04:42 -07009851 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009852 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07009853 percpu_ref_reinit(&ctx->refs);
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009854out_quiesce:
Jens Axboe0f158b42020-05-14 17:18:39 -06009855 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07009856 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009857 return ret;
9858}
9859
9860SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
9861 void __user *, arg, unsigned int, nr_args)
9862{
9863 struct io_ring_ctx *ctx;
9864 long ret = -EBADF;
9865 struct fd f;
9866
9867 f = fdget(fd);
9868 if (!f.file)
9869 return -EBADF;
9870
9871 ret = -EOPNOTSUPP;
9872 if (f.file->f_op != &io_uring_fops)
9873 goto out_fput;
9874
9875 ctx = f.file->private_data;
9876
9877 mutex_lock(&ctx->uring_lock);
9878 ret = __io_uring_register(ctx, opcode, arg, nr_args);
9879 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02009880 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
9881 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07009882out_fput:
9883 fdput(f);
9884 return ret;
9885}
9886
Jens Axboe2b188cc2019-01-07 10:46:33 -07009887static int __init io_uring_init(void)
9888{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009889#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
9890 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
9891 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
9892} while (0)
9893
9894#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
9895 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
9896 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
9897 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
9898 BUILD_BUG_SQE_ELEM(1, __u8, flags);
9899 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
9900 BUILD_BUG_SQE_ELEM(4, __s32, fd);
9901 BUILD_BUG_SQE_ELEM(8, __u64, off);
9902 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
9903 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009904 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009905 BUILD_BUG_SQE_ELEM(24, __u32, len);
9906 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
9907 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
9908 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
9909 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +08009910 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
9911 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009912 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
9913 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
9914 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
9915 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
9916 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
9917 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
9918 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
9919 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009920 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009921 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
9922 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
9923 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009924 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009925
Jens Axboed3656342019-12-18 09:50:26 -07009926 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07009927 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009928 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
9929 return 0;
9930};
9931__initcall(io_uring_init);