blob: 3617bde95de263fbfb479308e1233c1e7135de38 [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 Begunkov9b5f7bd2020-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 Begunkov9b5f7bd2020-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 Begunkov9b5f7bd2020-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 Begunkov9b5f7bd2020-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 Begunkov9b5f7bd2020-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 Begunkov9b5f7bd2020-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 Begunkov9b5f7bd2020-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 */
Xiaoguang Wang2e9dbe92020-11-13 00:44:08 +08002715static void io_iopoll_req_issued(struct io_kiocb *req, bool in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002716{
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
Xiaoguang Wang2e9dbe92020-11-13 00:44:08 +08002744 /*
2745 * If IORING_SETUP_SQPOLL is enabled, sqes are either handled in sq thread
2746 * task context or in io worker task context. If current task context is
2747 * sq thread, we don't need to check whether should wake up sq thread.
2748 */
2749 if (in_async && (ctx->flags & IORING_SETUP_SQPOLL) &&
Jens Axboe534ca6d2020-09-02 13:52:19 -06002750 wq_has_sleeper(&ctx->sq_data->wait))
2751 wake_up(&ctx->sq_data->wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002752}
2753
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002754static void __io_state_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002755{
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002756 if (state->has_refs)
2757 fput_many(state->file, state->has_refs);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002758 state->file = NULL;
2759}
2760
2761static inline void io_state_file_put(struct io_submit_state *state)
2762{
2763 if (state->file)
2764 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002765}
2766
2767/*
2768 * Get as many references to a file as we have IOs left in this submission,
2769 * assuming most submissions are for one file, or at least that each file
2770 * has more than one submission.
2771 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002772static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002773{
2774 if (!state)
2775 return fget(fd);
2776
2777 if (state->file) {
2778 if (state->fd == fd) {
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002779 state->has_refs--;
Jens Axboe9a56a232019-01-09 09:06:50 -07002780 return state->file;
2781 }
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002782 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002783 }
2784 state->file = fget_many(fd, state->ios_left);
2785 if (!state->file)
2786 return NULL;
2787
2788 state->fd = fd;
Pavel Begunkov71b547c2020-10-10 18:34:09 +01002789 state->has_refs = state->ios_left - 1;
Jens Axboe9a56a232019-01-09 09:06:50 -07002790 return state->file;
2791}
2792
Jens Axboe4503b762020-06-01 10:00:27 -06002793static bool io_bdev_nowait(struct block_device *bdev)
2794{
2795#ifdef CONFIG_BLOCK
Jeffle Xu9ba0d0c2020-10-19 16:59:42 +08002796 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
Jens Axboe4503b762020-06-01 10:00:27 -06002797#else
2798 return true;
2799#endif
2800}
2801
Jens Axboe2b188cc2019-01-07 10:46:33 -07002802/*
2803 * If we tracked the file through the SCM inflight mechanism, we could support
2804 * any file. For now, just ensure that anything potentially problematic is done
2805 * inline.
2806 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002807static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002808{
2809 umode_t mode = file_inode(file)->i_mode;
2810
Jens Axboe4503b762020-06-01 10:00:27 -06002811 if (S_ISBLK(mode)) {
2812 if (io_bdev_nowait(file->f_inode->i_bdev))
2813 return true;
2814 return false;
2815 }
2816 if (S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002817 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002818 if (S_ISREG(mode)) {
2819 if (io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
2820 file->f_op != &io_uring_fops)
2821 return true;
2822 return false;
2823 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002824
Jens Axboec5b85622020-06-09 19:23:05 -06002825 /* any ->read/write should understand O_NONBLOCK */
2826 if (file->f_flags & O_NONBLOCK)
2827 return true;
2828
Jens Axboeaf197f52020-04-28 13:15:06 -06002829 if (!(file->f_mode & FMODE_NOWAIT))
2830 return false;
2831
2832 if (rw == READ)
2833 return file->f_op->read_iter != NULL;
2834
2835 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002836}
2837
Pavel Begunkova88fc402020-09-30 22:57:53 +03002838static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002839{
Jens Axboedef596e2019-01-09 08:59:42 -07002840 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002841 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002842 unsigned ioprio;
2843 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002844
Jens Axboe491381ce2019-10-17 09:20:46 -06002845 if (S_ISREG(file_inode(req->file)->i_mode))
2846 req->flags |= REQ_F_ISREG;
2847
Jens Axboe2b188cc2019-01-07 10:46:33 -07002848 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002849 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2850 req->flags |= REQ_F_CUR_POS;
2851 kiocb->ki_pos = req->file->f_pos;
2852 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002853 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002854 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2855 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2856 if (unlikely(ret))
2857 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002858
2859 ioprio = READ_ONCE(sqe->ioprio);
2860 if (ioprio) {
2861 ret = ioprio_check_cap(ioprio);
2862 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002863 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002864
2865 kiocb->ki_ioprio = ioprio;
2866 } else
2867 kiocb->ki_ioprio = get_current_ioprio();
2868
Stefan Bühler8449eed2019-04-27 20:34:19 +02002869 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboec5b85622020-06-09 19:23:05 -06002870 if (kiocb->ki_flags & IOCB_NOWAIT)
Stefan Bühler8449eed2019-04-27 20:34:19 +02002871 req->flags |= REQ_F_NOWAIT;
2872
Jens Axboedef596e2019-01-09 08:59:42 -07002873 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002874 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2875 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002876 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002877
Jens Axboedef596e2019-01-09 08:59:42 -07002878 kiocb->ki_flags |= IOCB_HIPRI;
2879 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002880 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002881 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002882 if (kiocb->ki_flags & IOCB_HIPRI)
2883 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002884 kiocb->ki_complete = io_complete_rw;
2885 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002886
Jens Axboe3529d8c2019-12-19 18:24:38 -07002887 req->rw.addr = READ_ONCE(sqe->addr);
2888 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002889 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002890 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002891}
2892
2893static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2894{
2895 switch (ret) {
2896 case -EIOCBQUEUED:
2897 break;
2898 case -ERESTARTSYS:
2899 case -ERESTARTNOINTR:
2900 case -ERESTARTNOHAND:
2901 case -ERESTART_RESTARTBLOCK:
2902 /*
2903 * We can't just restart the syscall, since previously
2904 * submitted sqes may already be in progress. Just fail this
2905 * IO with EINTR.
2906 */
2907 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002908 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002909 default:
2910 kiocb->ki_complete(kiocb, ret, 0);
2911 }
2912}
2913
Jens Axboea1d7c392020-06-22 11:09:46 -06002914static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
2915 struct io_comp_state *cs)
Jens Axboeba816ad2019-09-28 11:36:45 -06002916{
Jens Axboeba042912019-12-25 16:33:42 -07002917 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboee8c2bc12020-08-15 18:44:09 -07002918 struct io_async_rw *io = req->async_data;
Jens Axboeba042912019-12-25 16:33:42 -07002919
Jens Axboe227c0c92020-08-13 11:51:40 -06002920 /* add previously done IO, if any */
Jens Axboee8c2bc12020-08-15 18:44:09 -07002921 if (io && io->bytes_done > 0) {
Jens Axboe227c0c92020-08-13 11:51:40 -06002922 if (ret < 0)
Jens Axboee8c2bc12020-08-15 18:44:09 -07002923 ret = io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002924 else
Jens Axboee8c2bc12020-08-15 18:44:09 -07002925 ret += io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002926 }
2927
Jens Axboeba042912019-12-25 16:33:42 -07002928 if (req->flags & REQ_F_CUR_POS)
2929 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002930 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboea1d7c392020-06-22 11:09:46 -06002931 __io_complete_rw(req, ret, 0, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002932 else
2933 io_rw_done(kiocb, ret);
2934}
2935
Jens Axboe9adbd452019-12-20 08:45:55 -07002936static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002937 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002938{
Jens Axboe9adbd452019-12-20 08:45:55 -07002939 struct io_ring_ctx *ctx = req->ctx;
2940 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002941 struct io_mapped_ubuf *imu;
Pavel Begunkov4be1c612020-09-06 00:45:48 +03002942 u16 index, buf_index = req->buf_index;
Jens Axboeedafcce2019-01-09 09:16:05 -07002943 size_t offset;
2944 u64 buf_addr;
2945
Jens Axboeedafcce2019-01-09 09:16:05 -07002946 if (unlikely(buf_index >= ctx->nr_user_bufs))
2947 return -EFAULT;
Jens Axboeedafcce2019-01-09 09:16:05 -07002948 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2949 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002950 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002951
2952 /* overflow */
2953 if (buf_addr + len < buf_addr)
2954 return -EFAULT;
2955 /* not inside the mapped region */
2956 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2957 return -EFAULT;
2958
2959 /*
2960 * May not be a start of buffer, set size appropriately
2961 * and advance us to the beginning.
2962 */
2963 offset = buf_addr - imu->ubuf;
2964 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002965
2966 if (offset) {
2967 /*
2968 * Don't use iov_iter_advance() here, as it's really slow for
2969 * using the latter parts of a big fixed buffer - it iterates
2970 * over each segment manually. We can cheat a bit here, because
2971 * we know that:
2972 *
2973 * 1) it's a BVEC iter, we set it up
2974 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2975 * first and last bvec
2976 *
2977 * So just find our index, and adjust the iterator afterwards.
2978 * If the offset is within the first bvec (or the whole first
2979 * bvec, just use iov_iter_advance(). This makes it easier
2980 * since we can just skip the first segment, which may not
2981 * be PAGE_SIZE aligned.
2982 */
2983 const struct bio_vec *bvec = imu->bvec;
2984
2985 if (offset <= bvec->bv_len) {
2986 iov_iter_advance(iter, offset);
2987 } else {
2988 unsigned long seg_skip;
2989
2990 /* skip first vec */
2991 offset -= bvec->bv_len;
2992 seg_skip = 1 + (offset >> PAGE_SHIFT);
2993
2994 iter->bvec = bvec + seg_skip;
2995 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002996 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002997 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002998 }
2999 }
3000
Jens Axboe5e559562019-11-13 16:12:46 -07003001 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07003002}
3003
Jens Axboebcda7ba2020-02-23 16:42:51 -07003004static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
3005{
3006 if (needs_lock)
3007 mutex_unlock(&ctx->uring_lock);
3008}
3009
3010static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
3011{
3012 /*
3013 * "Normal" inline submissions always hold the uring_lock, since we
3014 * grab it from the system call. Same is true for the SQPOLL offload.
3015 * The only exception is when we've detached the request and issue it
3016 * from an async worker thread, grab the lock for that case.
3017 */
3018 if (needs_lock)
3019 mutex_lock(&ctx->uring_lock);
3020}
3021
3022static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
3023 int bgid, struct io_buffer *kbuf,
3024 bool needs_lock)
3025{
3026 struct io_buffer *head;
3027
3028 if (req->flags & REQ_F_BUFFER_SELECTED)
3029 return kbuf;
3030
3031 io_ring_submit_lock(req->ctx, needs_lock);
3032
3033 lockdep_assert_held(&req->ctx->uring_lock);
3034
3035 head = idr_find(&req->ctx->io_buffer_idr, bgid);
3036 if (head) {
3037 if (!list_empty(&head->list)) {
3038 kbuf = list_last_entry(&head->list, struct io_buffer,
3039 list);
3040 list_del(&kbuf->list);
3041 } else {
3042 kbuf = head;
3043 idr_remove(&req->ctx->io_buffer_idr, bgid);
3044 }
3045 if (*len > kbuf->len)
3046 *len = kbuf->len;
3047 } else {
3048 kbuf = ERR_PTR(-ENOBUFS);
3049 }
3050
3051 io_ring_submit_unlock(req->ctx, needs_lock);
3052
3053 return kbuf;
3054}
3055
Jens Axboe4d954c22020-02-27 07:31:19 -07003056static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
3057 bool needs_lock)
3058{
3059 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003060 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07003061
3062 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003063 bgid = req->buf_index;
Jens Axboe4d954c22020-02-27 07:31:19 -07003064 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
3065 if (IS_ERR(kbuf))
3066 return kbuf;
3067 req->rw.addr = (u64) (unsigned long) kbuf;
3068 req->flags |= REQ_F_BUFFER_SELECTED;
3069 return u64_to_user_ptr(kbuf->addr);
3070}
3071
3072#ifdef CONFIG_COMPAT
3073static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
3074 bool needs_lock)
3075{
3076 struct compat_iovec __user *uiov;
3077 compat_ssize_t clen;
3078 void __user *buf;
3079 ssize_t len;
3080
3081 uiov = u64_to_user_ptr(req->rw.addr);
3082 if (!access_ok(uiov, sizeof(*uiov)))
3083 return -EFAULT;
3084 if (__get_user(clen, &uiov->iov_len))
3085 return -EFAULT;
3086 if (clen < 0)
3087 return -EINVAL;
3088
3089 len = clen;
3090 buf = io_rw_buffer_select(req, &len, needs_lock);
3091 if (IS_ERR(buf))
3092 return PTR_ERR(buf);
3093 iov[0].iov_base = buf;
3094 iov[0].iov_len = (compat_size_t) len;
3095 return 0;
3096}
3097#endif
3098
3099static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3100 bool needs_lock)
3101{
3102 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
3103 void __user *buf;
3104 ssize_t len;
3105
3106 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3107 return -EFAULT;
3108
3109 len = iov[0].iov_len;
3110 if (len < 0)
3111 return -EINVAL;
3112 buf = io_rw_buffer_select(req, &len, needs_lock);
3113 if (IS_ERR(buf))
3114 return PTR_ERR(buf);
3115 iov[0].iov_base = buf;
3116 iov[0].iov_len = len;
3117 return 0;
3118}
3119
3120static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3121 bool needs_lock)
3122{
Jens Axboedddb3e22020-06-04 11:27:01 -06003123 if (req->flags & REQ_F_BUFFER_SELECTED) {
3124 struct io_buffer *kbuf;
3125
3126 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
3127 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3128 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003129 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06003130 }
Jens Axboe4d954c22020-02-27 07:31:19 -07003131 if (!req->rw.len)
3132 return 0;
3133 else if (req->rw.len > 1)
3134 return -EINVAL;
3135
3136#ifdef CONFIG_COMPAT
3137 if (req->ctx->compat)
3138 return io_compat_import(req, iov, needs_lock);
3139#endif
3140
3141 return __io_iov_buffer_select(req, iov, needs_lock);
3142}
3143
Pavel Begunkov2846c482020-11-07 13:16:27 +00003144static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboe8452fd02020-08-18 13:58:33 -07003145 struct iovec **iovec, struct iov_iter *iter,
3146 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003147{
Jens Axboe9adbd452019-12-20 08:45:55 -07003148 void __user *buf = u64_to_user_ptr(req->rw.addr);
3149 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003150 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07003151 u8 opcode;
3152
Jens Axboed625c6e2019-12-17 19:53:05 -07003153 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03003154 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07003155 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07003156 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07003157 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003158
Jens Axboebcda7ba2020-02-23 16:42:51 -07003159 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003160 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07003161 return -EINVAL;
3162
Jens Axboe3a6820f2019-12-22 15:19:35 -07003163 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07003164 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07003165 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03003166 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07003167 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003168 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003169 }
3170
Jens Axboe3a6820f2019-12-22 15:19:35 -07003171 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
3172 *iovec = NULL;
David Laight10fc72e2020-11-07 13:16:25 +00003173 return ret;
Jens Axboe3a6820f2019-12-22 15:19:35 -07003174 }
3175
Jens Axboe4d954c22020-02-27 07:31:19 -07003176 if (req->flags & REQ_F_BUFFER_SELECT) {
3177 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003178 if (!ret) {
3179 ret = (*iovec)->iov_len;
3180 iov_iter_init(iter, rw, *iovec, 1, ret);
3181 }
Jens Axboe4d954c22020-02-27 07:31:19 -07003182 *iovec = NULL;
3183 return ret;
3184 }
3185
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02003186 return __import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter,
3187 req->ctx->compat);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003188}
3189
Jens Axboe0fef9482020-08-26 10:36:20 -06003190static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3191{
Pavel Begunkov5b09e372020-09-30 22:57:15 +03003192 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
Jens Axboe0fef9482020-08-26 10:36:20 -06003193}
3194
Jens Axboe32960612019-09-23 11:05:34 -06003195/*
3196 * For files that don't have ->read_iter() and ->write_iter(), handle them
3197 * by looping over ->read() or ->write() manually.
3198 */
Jens Axboe4017eb92020-10-22 14:14:12 -06003199static ssize_t loop_rw_iter(int rw, struct io_kiocb *req, struct iov_iter *iter)
Jens Axboe32960612019-09-23 11:05:34 -06003200{
Jens Axboe4017eb92020-10-22 14:14:12 -06003201 struct kiocb *kiocb = &req->rw.kiocb;
3202 struct file *file = req->file;
Jens Axboe32960612019-09-23 11:05:34 -06003203 ssize_t ret = 0;
3204
3205 /*
3206 * Don't support polled IO through this interface, and we can't
3207 * support non-blocking either. For the latter, this just causes
3208 * the kiocb to be handled from an async context.
3209 */
3210 if (kiocb->ki_flags & IOCB_HIPRI)
3211 return -EOPNOTSUPP;
3212 if (kiocb->ki_flags & IOCB_NOWAIT)
3213 return -EAGAIN;
3214
3215 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003216 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06003217 ssize_t nr;
3218
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003219 if (!iov_iter_is_bvec(iter)) {
3220 iovec = iov_iter_iovec(iter);
3221 } else {
Jens Axboe4017eb92020-10-22 14:14:12 -06003222 iovec.iov_base = u64_to_user_ptr(req->rw.addr);
3223 iovec.iov_len = req->rw.len;
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003224 }
3225
Jens Axboe32960612019-09-23 11:05:34 -06003226 if (rw == READ) {
3227 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003228 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003229 } else {
3230 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003231 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003232 }
3233
3234 if (nr < 0) {
3235 if (!ret)
3236 ret = nr;
3237 break;
3238 }
3239 ret += nr;
3240 if (nr != iovec.iov_len)
3241 break;
Jens Axboe4017eb92020-10-22 14:14:12 -06003242 req->rw.len -= nr;
3243 req->rw.addr += nr;
Jens Axboe32960612019-09-23 11:05:34 -06003244 iov_iter_advance(iter, nr);
3245 }
3246
3247 return ret;
3248}
3249
Jens Axboeff6165b2020-08-13 09:47:43 -06003250static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3251 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07003252{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003253 struct io_async_rw *rw = req->async_data;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003254
Jens Axboeff6165b2020-08-13 09:47:43 -06003255 memcpy(&rw->iter, iter, sizeof(*iter));
Pavel Begunkovafb87652020-09-06 00:45:46 +03003256 rw->free_iovec = iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -06003257 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06003258 /* can only be fixed buffers, no need to do anything */
3259 if (iter->type == ITER_BVEC)
3260 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003261 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06003262 unsigned iov_off = 0;
3263
3264 rw->iter.iov = rw->fast_iov;
3265 if (iter->iov != fast_iov) {
3266 iov_off = iter->iov - fast_iov;
3267 rw->iter.iov += iov_off;
3268 }
3269 if (rw->fast_iov != fast_iov)
3270 memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08003271 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003272 } else {
3273 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07003274 }
3275}
3276
Jens Axboee8c2bc12020-08-15 18:44:09 -07003277static inline int __io_alloc_async_data(struct io_kiocb *req)
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003278{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003279 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3280 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
3281 return req->async_data == NULL;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003282}
3283
Jens Axboee8c2bc12020-08-15 18:44:09 -07003284static int io_alloc_async_data(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003285{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003286 if (!io_op_defs[req->opcode].needs_async_data)
Jens Axboed3656342019-12-18 09:50:26 -07003287 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003288
Jens Axboee8c2bc12020-08-15 18:44:09 -07003289 return __io_alloc_async_data(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003290}
3291
Jens Axboeff6165b2020-08-13 09:47:43 -06003292static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3293 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06003294 struct iov_iter *iter, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003295{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003296 if (!force && !io_op_defs[req->opcode].needs_async_data)
Jens Axboe74566df2020-01-13 19:23:24 -07003297 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003298 if (!req->async_data) {
3299 if (__io_alloc_async_data(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07003300 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003301
Jens Axboeff6165b2020-08-13 09:47:43 -06003302 io_req_map_rw(req, iovec, fast_iov, iter);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003303 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003304 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003305}
3306
Pavel Begunkov73debe62020-09-30 22:57:54 +03003307static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003308{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003309 struct io_async_rw *iorw = req->async_data;
Pavel Begunkovf4bff102020-09-06 00:45:45 +03003310 struct iovec *iov = iorw->fast_iov;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003311 ssize_t ret;
3312
Pavel Begunkov2846c482020-11-07 13:16:27 +00003313 ret = io_import_iovec(rw, req, &iov, &iorw->iter, false);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003314 if (unlikely(ret < 0))
3315 return ret;
3316
Pavel Begunkovab0b1962020-09-06 00:45:47 +03003317 iorw->bytes_done = 0;
3318 iorw->free_iovec = iov;
3319 if (iov)
3320 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003321 return 0;
3322}
3323
Pavel Begunkov73debe62020-09-30 22:57:54 +03003324static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003325{
3326 ssize_t ret;
3327
Pavel Begunkova88fc402020-09-30 22:57:53 +03003328 ret = io_prep_rw(req, sqe);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003329 if (ret)
3330 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003331
Jens Axboe3529d8c2019-12-19 18:24:38 -07003332 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3333 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003334
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003335 /* either don't need iovec imported or already have it */
Pavel Begunkov2d199892020-09-30 22:57:35 +03003336 if (!req->async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003337 return 0;
Pavel Begunkov73debe62020-09-30 22:57:54 +03003338 return io_rw_prep_async(req, READ);
Jens Axboef67676d2019-12-02 11:03:47 -07003339}
3340
Jens Axboec1dd91d2020-08-03 16:43:59 -06003341/*
3342 * This is our waitqueue callback handler, registered through lock_page_async()
3343 * when we initially tried to do the IO with the iocb armed our waitqueue.
3344 * This gets called when the page is unlocked, and we generally expect that to
3345 * happen when the page IO is completed and the page is now uptodate. This will
3346 * queue a task_work based retry of the operation, attempting to copy the data
3347 * again. If the latter fails because the page was NOT uptodate, then we will
3348 * do a thread based blocking retry of the operation. That's the unexpected
3349 * slow path.
3350 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003351static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3352 int sync, void *arg)
3353{
3354 struct wait_page_queue *wpq;
3355 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003356 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003357 int ret;
3358
3359 wpq = container_of(wait, struct wait_page_queue, wait);
3360
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003361 if (!wake_page_match(wpq, key))
3362 return 0;
3363
Hao Xuc8d317a2020-09-29 20:00:45 +08003364 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003365 list_del_init(&wait->entry);
3366
Pavel Begunkove7375122020-07-12 20:42:04 +03003367 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06003368 percpu_ref_get(&req->ctx->refs);
3369
Jens Axboebcf5a062020-05-22 09:24:42 -06003370 /* submit ref gets dropped, acquire a new one */
3371 refcount_inc(&req->refs);
Jens Axboe87c43112020-09-30 21:00:14 -06003372 ret = io_req_task_work_add(req, true);
Jens Axboebcf5a062020-05-22 09:24:42 -06003373 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06003374 struct task_struct *tsk;
3375
Jens Axboebcf5a062020-05-22 09:24:42 -06003376 /* queue just for cancelation */
Pavel Begunkove7375122020-07-12 20:42:04 +03003377 init_task_work(&req->task_work, io_req_task_cancel);
Jens Axboebcf5a062020-05-22 09:24:42 -06003378 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06003379 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboec2c4c832020-07-01 15:37:11 -06003380 wake_up_process(tsk);
Jens Axboebcf5a062020-05-22 09:24:42 -06003381 }
Jens Axboebcf5a062020-05-22 09:24:42 -06003382 return 1;
3383}
3384
Jens Axboec1dd91d2020-08-03 16:43:59 -06003385/*
3386 * This controls whether a given IO request should be armed for async page
3387 * based retry. If we return false here, the request is handed to the async
3388 * worker threads for retry. If we're doing buffered reads on a regular file,
3389 * we prepare a private wait_page_queue entry and retry the operation. This
3390 * will either succeed because the page is now uptodate and unlocked, or it
3391 * will register a callback when the page is unlocked at IO completion. Through
3392 * that callback, io_uring uses task_work to setup a retry of the operation.
3393 * That retry will attempt the buffered read again. The retry will generally
3394 * succeed, or in rare cases where it fails, we then fall back to using the
3395 * async worker threads for a blocking retry.
3396 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003397static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003398{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003399 struct io_async_rw *rw = req->async_data;
3400 struct wait_page_queue *wait = &rw->wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003401 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003402
3403 /* never retry for NOWAIT, we just complete with -EAGAIN */
3404 if (req->flags & REQ_F_NOWAIT)
3405 return false;
3406
Jens Axboe227c0c92020-08-13 11:51:40 -06003407 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003408 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003409 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003410
Jens Axboebcf5a062020-05-22 09:24:42 -06003411 /*
3412 * just use poll if we can, and don't attempt if the fs doesn't
3413 * support callback based unlocks
3414 */
3415 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3416 return false;
3417
Jens Axboe3b2a4432020-08-16 10:58:43 -07003418 wait->wait.func = io_async_buf_func;
3419 wait->wait.private = req;
3420 wait->wait.flags = 0;
3421 INIT_LIST_HEAD(&wait->wait.entry);
3422 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003423 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003424 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003425 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003426}
3427
3428static int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
3429{
3430 if (req->file->f_op->read_iter)
3431 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003432 else if (req->file->f_op->read)
Jens Axboe4017eb92020-10-22 14:14:12 -06003433 return loop_rw_iter(READ, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003434 else
3435 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003436}
3437
Jens Axboea1d7c392020-06-22 11:09:46 -06003438static int io_read(struct io_kiocb *req, bool force_nonblock,
3439 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003440{
3441 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003442 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003443 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003444 struct io_async_rw *rw = req->async_data;
Jens Axboe227c0c92020-08-13 11:51:40 -06003445 ssize_t io_size, ret, ret2;
Jens Axboef5cac8b2020-09-14 09:30:38 -06003446 bool no_async;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003447
Pavel Begunkov2846c482020-11-07 13:16:27 +00003448 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003449 iter = &rw->iter;
Pavel Begunkov2846c482020-11-07 13:16:27 +00003450 iovec = NULL;
3451 } else {
3452 ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
3453 if (ret < 0)
3454 return ret;
3455 }
Pavel Begunkov632546c2020-11-07 13:16:26 +00003456 io_size = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003457 req->result = io_size;
Jens Axboe227c0c92020-08-13 11:51:40 -06003458 ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003459
Jens Axboefd6c2e42019-12-18 12:19:41 -07003460 /* Ensure we clear previously set non-block flag */
3461 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003462 kiocb->ki_flags &= ~IOCB_NOWAIT;
Pavel Begunkova88fc402020-09-30 22:57:53 +03003463 else
3464 kiocb->ki_flags |= IOCB_NOWAIT;
3465
Jens Axboefd6c2e42019-12-18 12:19:41 -07003466
Pavel Begunkov24c74672020-06-21 13:09:51 +03003467 /* If the file doesn't support async, just async punt */
Jens Axboef5cac8b2020-09-14 09:30:38 -06003468 no_async = force_nonblock && !io_file_supports_async(req->file, READ);
3469 if (no_async)
Jens Axboef67676d2019-12-02 11:03:47 -07003470 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003471
Pavel Begunkov632546c2020-11-07 13:16:26 +00003472 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), io_size);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003473 if (unlikely(ret))
3474 goto out_free;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003475
Jens Axboe227c0c92020-08-13 11:51:40 -06003476 ret = io_iter_do_read(req, iter);
Jens Axboe32960612019-09-23 11:05:34 -06003477
Jens Axboe227c0c92020-08-13 11:51:40 -06003478 if (!ret) {
3479 goto done;
3480 } else if (ret == -EIOCBQUEUED) {
3481 ret = 0;
3482 goto out_free;
3483 } else if (ret == -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003484 /* IOPOLL retry should happen for io-wq threads */
3485 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003486 goto done;
Jens Axboe355afae2020-09-02 09:30:31 -06003487 /* no retry on NONBLOCK marked file */
3488 if (req->file->f_flags & O_NONBLOCK)
3489 goto done;
Jens Axboe84216312020-08-24 11:45:26 -06003490 /* some cases will consume bytes even on error returns */
Pavel Begunkov632546c2020-11-07 13:16:26 +00003491 iov_iter_revert(iter, io_size - iov_iter_count(iter));
Jens Axboef38c7e32020-09-25 15:23:43 -06003492 ret = 0;
3493 goto copy_iov;
Jens Axboe227c0c92020-08-13 11:51:40 -06003494 } else if (ret < 0) {
Jens Axboe00d23d52020-08-25 12:59:22 -06003495 /* make sure -ERESTARTSYS -> -EINTR is done */
3496 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003497 }
3498
3499 /* read it all, or we did blocking attempt. no retry. */
Jens Axboef91daf52020-08-15 15:58:42 -07003500 if (!iov_iter_count(iter) || !force_nonblock ||
3501 (req->file->f_flags & O_NONBLOCK))
Jens Axboe227c0c92020-08-13 11:51:40 -06003502 goto done;
3503
3504 io_size -= ret;
3505copy_iov:
3506 ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
3507 if (ret2) {
3508 ret = ret2;
3509 goto out_free;
3510 }
Jens Axboef5cac8b2020-09-14 09:30:38 -06003511 if (no_async)
3512 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003513 rw = req->async_data;
Jens Axboe227c0c92020-08-13 11:51:40 -06003514 /* it's copied and will be cleaned with ->io */
3515 iovec = NULL;
3516 /* now use our persistent iterator, if we aren't already */
Jens Axboee8c2bc12020-08-15 18:44:09 -07003517 iter = &rw->iter;
Jens Axboe227c0c92020-08-13 11:51:40 -06003518retry:
Jens Axboee8c2bc12020-08-15 18:44:09 -07003519 rw->bytes_done += ret;
Jens Axboe227c0c92020-08-13 11:51:40 -06003520 /* if we can retry, do so with the callbacks armed */
3521 if (!io_rw_should_retry(req)) {
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003522 kiocb->ki_flags &= ~IOCB_WAITQ;
3523 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003524 }
Jens Axboe227c0c92020-08-13 11:51:40 -06003525
3526 /*
3527 * Now retry read with the IOCB_WAITQ parts set in the iocb. If we
3528 * get -EIOCBQUEUED, then we'll get a notification when the desired
3529 * page gets unlocked. We can also get a partial read here, and if we
3530 * do, then just retry at the new offset.
3531 */
3532 ret = io_iter_do_read(req, iter);
3533 if (ret == -EIOCBQUEUED) {
3534 ret = 0;
3535 goto out_free;
3536 } else if (ret > 0 && ret < io_size) {
3537 /* we got some bytes, but not all. retry. */
3538 goto retry;
3539 }
3540done:
3541 kiocb_done(kiocb, ret, cs);
3542 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003543out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003544 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003545 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003546 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003547 return ret;
3548}
3549
Pavel Begunkov73debe62020-09-30 22:57:54 +03003550static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003551{
3552 ssize_t ret;
3553
Pavel Begunkova88fc402020-09-30 22:57:53 +03003554 ret = io_prep_rw(req, sqe);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003555 if (ret)
3556 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003557
Jens Axboe3529d8c2019-12-19 18:24:38 -07003558 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3559 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003560
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003561 /* either don't need iovec imported or already have it */
Pavel Begunkov2d199892020-09-30 22:57:35 +03003562 if (!req->async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003563 return 0;
Pavel Begunkov73debe62020-09-30 22:57:54 +03003564 return io_rw_prep_async(req, WRITE);
Jens Axboef67676d2019-12-02 11:03:47 -07003565}
3566
Jens Axboea1d7c392020-06-22 11:09:46 -06003567static int io_write(struct io_kiocb *req, bool force_nonblock,
3568 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003569{
3570 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003571 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003572 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003573 struct io_async_rw *rw = req->async_data;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003574 ssize_t ret, ret2, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003575
Pavel Begunkov2846c482020-11-07 13:16:27 +00003576 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003577 iter = &rw->iter;
Pavel Begunkov2846c482020-11-07 13:16:27 +00003578 iovec = NULL;
3579 } else {
3580 ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
3581 if (ret < 0)
3582 return ret;
3583 }
Pavel Begunkov632546c2020-11-07 13:16:26 +00003584 io_size = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003585 req->result = io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003586
Jens Axboefd6c2e42019-12-18 12:19:41 -07003587 /* Ensure we clear previously set non-block flag */
3588 if (!force_nonblock)
Pavel Begunkova88fc402020-09-30 22:57:53 +03003589 kiocb->ki_flags &= ~IOCB_NOWAIT;
3590 else
3591 kiocb->ki_flags |= IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003592
Pavel Begunkov24c74672020-06-21 13:09:51 +03003593 /* If the file doesn't support async, just async punt */
Jens Axboeaf197f52020-04-28 13:15:06 -06003594 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003595 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003596
Jens Axboe10d59342019-12-09 20:16:22 -07003597 /* file path doesn't support NOWAIT for non-direct_IO */
3598 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3599 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003600 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003601
Pavel Begunkov632546c2020-11-07 13:16:26 +00003602 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), io_size);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003603 if (unlikely(ret))
3604 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003605
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003606 /*
3607 * Open-code file_start_write here to grab freeze protection,
3608 * which will be released by another thread in
3609 * io_complete_rw(). Fool lockdep by telling it the lock got
3610 * released so that it doesn't complain about the held lock when
3611 * we return to userspace.
3612 */
3613 if (req->flags & REQ_F_ISREG) {
Darrick J. Wong8a3c84b2020-11-10 16:50:21 -08003614 sb_start_write(file_inode(req->file)->i_sb);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003615 __sb_writers_release(file_inode(req->file)->i_sb,
3616 SB_FREEZE_WRITE);
3617 }
3618 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003619
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003620 if (req->file->f_op->write_iter)
Jens Axboeff6165b2020-08-13 09:47:43 -06003621 ret2 = call_write_iter(req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003622 else if (req->file->f_op->write)
Jens Axboe4017eb92020-10-22 14:14:12 -06003623 ret2 = loop_rw_iter(WRITE, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003624 else
3625 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003626
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003627 /*
3628 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3629 * retry them without IOCB_NOWAIT.
3630 */
3631 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3632 ret2 = -EAGAIN;
Jens Axboe355afae2020-09-02 09:30:31 -06003633 /* no retry on NONBLOCK marked file */
3634 if (ret2 == -EAGAIN && (req->file->f_flags & O_NONBLOCK))
3635 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003636 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003637 /* IOPOLL retry should happen for io-wq threads */
3638 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3639 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003640done:
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003641 kiocb_done(kiocb, ret2, cs);
3642 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003643copy_iov:
Jens Axboe84216312020-08-24 11:45:26 -06003644 /* some cases will consume bytes even on error returns */
Pavel Begunkov632546c2020-11-07 13:16:26 +00003645 iov_iter_revert(iter, io_size - iov_iter_count(iter));
Jens Axboe227c0c92020-08-13 11:51:40 -06003646 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
Jens Axboeff6165b2020-08-13 09:47:43 -06003647 if (!ret)
3648 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003649 }
Jens Axboe31b51512019-01-18 22:56:34 -07003650out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003651 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003652 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003653 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003654 return ret;
3655}
3656
Jens Axboe80a261f2020-09-28 14:23:58 -06003657static int io_renameat_prep(struct io_kiocb *req,
3658 const struct io_uring_sqe *sqe)
3659{
3660 struct io_rename *ren = &req->rename;
3661 const char __user *oldf, *newf;
3662
3663 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3664 return -EBADF;
3665
3666 ren->old_dfd = READ_ONCE(sqe->fd);
3667 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3668 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3669 ren->new_dfd = READ_ONCE(sqe->len);
3670 ren->flags = READ_ONCE(sqe->rename_flags);
3671
3672 ren->oldpath = getname(oldf);
3673 if (IS_ERR(ren->oldpath))
3674 return PTR_ERR(ren->oldpath);
3675
3676 ren->newpath = getname(newf);
3677 if (IS_ERR(ren->newpath)) {
3678 putname(ren->oldpath);
3679 return PTR_ERR(ren->newpath);
3680 }
3681
3682 req->flags |= REQ_F_NEED_CLEANUP;
3683 return 0;
3684}
3685
3686static int io_renameat(struct io_kiocb *req, bool force_nonblock)
3687{
3688 struct io_rename *ren = &req->rename;
3689 int ret;
3690
3691 if (force_nonblock)
3692 return -EAGAIN;
3693
3694 ret = do_renameat2(ren->old_dfd, ren->oldpath, ren->new_dfd,
3695 ren->newpath, ren->flags);
3696
3697 req->flags &= ~REQ_F_NEED_CLEANUP;
3698 if (ret < 0)
3699 req_set_fail_links(req);
3700 io_req_complete(req, ret);
3701 return 0;
3702}
3703
Jens Axboe14a11432020-09-28 14:27:37 -06003704static int io_unlinkat_prep(struct io_kiocb *req,
3705 const struct io_uring_sqe *sqe)
3706{
3707 struct io_unlink *un = &req->unlink;
3708 const char __user *fname;
3709
3710 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3711 return -EBADF;
3712
3713 un->dfd = READ_ONCE(sqe->fd);
3714
3715 un->flags = READ_ONCE(sqe->unlink_flags);
3716 if (un->flags & ~AT_REMOVEDIR)
3717 return -EINVAL;
3718
3719 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3720 un->filename = getname(fname);
3721 if (IS_ERR(un->filename))
3722 return PTR_ERR(un->filename);
3723
3724 req->flags |= REQ_F_NEED_CLEANUP;
3725 return 0;
3726}
3727
3728static int io_unlinkat(struct io_kiocb *req, bool force_nonblock)
3729{
3730 struct io_unlink *un = &req->unlink;
3731 int ret;
3732
3733 if (force_nonblock)
3734 return -EAGAIN;
3735
3736 if (un->flags & AT_REMOVEDIR)
3737 ret = do_rmdir(un->dfd, un->filename);
3738 else
3739 ret = do_unlinkat(un->dfd, un->filename);
3740
3741 req->flags &= ~REQ_F_NEED_CLEANUP;
3742 if (ret < 0)
3743 req_set_fail_links(req);
3744 io_req_complete(req, ret);
3745 return 0;
3746}
3747
Jens Axboe36f4fa62020-09-05 11:14:22 -06003748static int io_shutdown_prep(struct io_kiocb *req,
3749 const struct io_uring_sqe *sqe)
3750{
3751#if defined(CONFIG_NET)
3752 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3753 return -EINVAL;
3754 if (sqe->ioprio || sqe->off || sqe->addr || sqe->rw_flags ||
3755 sqe->buf_index)
3756 return -EINVAL;
3757
3758 req->shutdown.how = READ_ONCE(sqe->len);
3759 return 0;
3760#else
3761 return -EOPNOTSUPP;
3762#endif
3763}
3764
3765static int io_shutdown(struct io_kiocb *req, bool force_nonblock)
3766{
3767#if defined(CONFIG_NET)
3768 struct socket *sock;
3769 int ret;
3770
3771 if (force_nonblock)
3772 return -EAGAIN;
3773
3774 sock = sock_from_file(req->file, &ret);
3775 if (unlikely(!sock))
3776 return ret;
3777
3778 ret = __sys_shutdown_sock(sock, req->shutdown.how);
3779 io_req_complete(req, ret);
3780 return 0;
3781#else
3782 return -EOPNOTSUPP;
3783#endif
3784}
3785
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003786static int __io_splice_prep(struct io_kiocb *req,
3787 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003788{
3789 struct io_splice* sp = &req->splice;
3790 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003791
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003792 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3793 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003794
3795 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003796 sp->len = READ_ONCE(sqe->len);
3797 sp->flags = READ_ONCE(sqe->splice_flags);
3798
3799 if (unlikely(sp->flags & ~valid_flags))
3800 return -EINVAL;
3801
Pavel Begunkov8371adf2020-10-10 18:34:08 +01003802 sp->file_in = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in),
3803 (sp->flags & SPLICE_F_FD_IN_FIXED));
3804 if (!sp->file_in)
3805 return -EBADF;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003806 req->flags |= REQ_F_NEED_CLEANUP;
3807
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003808 if (!S_ISREG(file_inode(sp->file_in)->i_mode)) {
3809 /*
3810 * Splice operation will be punted aync, and here need to
3811 * modify io_wq_work.flags, so initialize io_wq_work firstly.
3812 */
3813 io_req_init_async(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003814 req->work.flags |= IO_WQ_WORK_UNBOUND;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003815 }
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003816
3817 return 0;
3818}
3819
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003820static int io_tee_prep(struct io_kiocb *req,
3821 const struct io_uring_sqe *sqe)
3822{
3823 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3824 return -EINVAL;
3825 return __io_splice_prep(req, sqe);
3826}
3827
3828static int io_tee(struct io_kiocb *req, bool force_nonblock)
3829{
3830 struct io_splice *sp = &req->splice;
3831 struct file *in = sp->file_in;
3832 struct file *out = sp->file_out;
3833 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3834 long ret = 0;
3835
3836 if (force_nonblock)
3837 return -EAGAIN;
3838 if (sp->len)
3839 ret = do_tee(in, out, sp->len, flags);
3840
3841 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3842 req->flags &= ~REQ_F_NEED_CLEANUP;
3843
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003844 if (ret != sp->len)
3845 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003846 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003847 return 0;
3848}
3849
3850static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3851{
3852 struct io_splice* sp = &req->splice;
3853
3854 sp->off_in = READ_ONCE(sqe->splice_off_in);
3855 sp->off_out = READ_ONCE(sqe->off);
3856 return __io_splice_prep(req, sqe);
3857}
3858
Pavel Begunkov014db002020-03-03 21:33:12 +03003859static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003860{
3861 struct io_splice *sp = &req->splice;
3862 struct file *in = sp->file_in;
3863 struct file *out = sp->file_out;
3864 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3865 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003866 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003867
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03003868 if (force_nonblock)
3869 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003870
3871 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
3872 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003873
Jens Axboe948a7742020-05-17 14:21:38 -06003874 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03003875 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003876
3877 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3878 req->flags &= ~REQ_F_NEED_CLEANUP;
3879
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003880 if (ret != sp->len)
3881 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003882 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003883 return 0;
3884}
3885
Jens Axboe2b188cc2019-01-07 10:46:33 -07003886/*
3887 * IORING_OP_NOP just posts a completion event, nothing else.
3888 */
Jens Axboe229a7b62020-06-22 10:13:11 -06003889static int io_nop(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003890{
3891 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003892
Jens Axboedef596e2019-01-09 08:59:42 -07003893 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3894 return -EINVAL;
3895
Jens Axboe229a7b62020-06-22 10:13:11 -06003896 __io_req_complete(req, 0, 0, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003897 return 0;
3898}
3899
Jens Axboe3529d8c2019-12-19 18:24:38 -07003900static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003901{
Jens Axboe6b063142019-01-10 22:13:58 -07003902 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003903
Jens Axboe09bb8392019-03-13 12:39:28 -06003904 if (!req->file)
3905 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003906
Jens Axboe6b063142019-01-10 22:13:58 -07003907 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07003908 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07003909 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003910 return -EINVAL;
3911
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003912 req->sync.flags = READ_ONCE(sqe->fsync_flags);
3913 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
3914 return -EINVAL;
3915
3916 req->sync.off = READ_ONCE(sqe->off);
3917 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003918 return 0;
3919}
3920
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003921static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Jens Axboe78912932020-01-14 22:09:06 -07003922{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003923 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003924 int ret;
3925
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003926 /* fsync always requires a blocking context */
3927 if (force_nonblock)
3928 return -EAGAIN;
3929
Jens Axboe9adbd452019-12-20 08:45:55 -07003930 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003931 end > 0 ? end : LLONG_MAX,
3932 req->sync.flags & IORING_FSYNC_DATASYNC);
3933 if (ret < 0)
3934 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003935 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003936 return 0;
3937}
3938
Jens Axboed63d1b52019-12-10 10:38:56 -07003939static int io_fallocate_prep(struct io_kiocb *req,
3940 const struct io_uring_sqe *sqe)
3941{
3942 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
3943 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003944 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3945 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07003946
3947 req->sync.off = READ_ONCE(sqe->off);
3948 req->sync.len = READ_ONCE(sqe->addr);
3949 req->sync.mode = READ_ONCE(sqe->len);
3950 return 0;
3951}
3952
Pavel Begunkov014db002020-03-03 21:33:12 +03003953static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07003954{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003955 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07003956
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003957 /* fallocate always requiring blocking context */
3958 if (force_nonblock)
3959 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003960 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
3961 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003962 if (ret < 0)
3963 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003964 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07003965 return 0;
3966}
3967
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003968static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003969{
Jens Axboef8748882020-01-08 17:47:02 -07003970 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003971 int ret;
3972
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003973 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07003974 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003975 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07003976 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003977
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003978 /* open.how should be already initialised */
3979 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06003980 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003981
Pavel Begunkov25e72d12020-06-03 18:03:23 +03003982 req->open.dfd = READ_ONCE(sqe->fd);
3983 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07003984 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003985 if (IS_ERR(req->open.filename)) {
3986 ret = PTR_ERR(req->open.filename);
3987 req->open.filename = NULL;
3988 return ret;
3989 }
Jens Axboe4022e7a2020-03-19 19:23:18 -06003990 req->open.nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe944d1442020-11-13 16:48:44 -07003991 req->open.ignore_nonblock = false;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003992 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003993 return 0;
3994}
3995
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003996static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3997{
3998 u64 flags, mode;
3999
Jens Axboe14587a462020-09-05 11:36:08 -06004000 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe4eb8dde2020-09-18 19:36:24 -06004001 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004002 mode = READ_ONCE(sqe->len);
4003 flags = READ_ONCE(sqe->open_flags);
4004 req->open.how = build_open_how(flags, mode);
4005 return __io_openat_prep(req, sqe);
4006}
4007
Jens Axboecebdb982020-01-08 17:59:24 -07004008static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4009{
4010 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07004011 size_t len;
4012 int ret;
4013
Jens Axboe14587a462020-09-05 11:36:08 -06004014 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe4eb8dde2020-09-18 19:36:24 -06004015 return -EINVAL;
Jens Axboecebdb982020-01-08 17:59:24 -07004016 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4017 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07004018 if (len < OPEN_HOW_SIZE_VER0)
4019 return -EINVAL;
4020
4021 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
4022 len);
4023 if (ret)
4024 return ret;
4025
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004026 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07004027}
4028
Pavel Begunkov014db002020-03-03 21:33:12 +03004029static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004030{
4031 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004032 struct file *file;
4033 int ret;
4034
Jens Axboe944d1442020-11-13 16:48:44 -07004035 if (force_nonblock && !req->open.ignore_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004036 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004037
Jens Axboecebdb982020-01-08 17:59:24 -07004038 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004039 if (ret)
4040 goto err;
4041
Jens Axboe4022e7a2020-03-19 19:23:18 -06004042 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004043 if (ret < 0)
4044 goto err;
4045
4046 file = do_filp_open(req->open.dfd, req->open.filename, &op);
4047 if (IS_ERR(file)) {
4048 put_unused_fd(ret);
4049 ret = PTR_ERR(file);
Jens Axboe944d1442020-11-13 16:48:44 -07004050 /*
4051 * A work-around to ensure that /proc/self works that way
4052 * that it should - if we get -EOPNOTSUPP back, then assume
4053 * that proc_self_get_link() failed us because we're in async
4054 * context. We should be safe to retry this from the task
4055 * itself with force_nonblock == false set, as it should not
4056 * block on lookup. Would be nice to know this upfront and
4057 * avoid the async dance, but doesn't seem feasible.
4058 */
4059 if (ret == -EOPNOTSUPP && io_wq_current_is_worker()) {
4060 req->open.ignore_nonblock = true;
4061 refcount_inc(&req->refs);
4062 io_req_task_queue(req);
4063 return 0;
4064 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004065 } else {
4066 fsnotify_open(file);
4067 fd_install(ret, file);
4068 }
4069err:
4070 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004071 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004072 if (ret < 0)
4073 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004074 io_req_complete(req, ret);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004075 return 0;
4076}
4077
Pavel Begunkov014db002020-03-03 21:33:12 +03004078static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07004079{
Pavel Begunkov014db002020-03-03 21:33:12 +03004080 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07004081}
4082
Jens Axboe067524e2020-03-02 16:32:28 -07004083static int io_remove_buffers_prep(struct io_kiocb *req,
4084 const struct io_uring_sqe *sqe)
4085{
4086 struct io_provide_buf *p = &req->pbuf;
4087 u64 tmp;
4088
4089 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
4090 return -EINVAL;
4091
4092 tmp = READ_ONCE(sqe->fd);
4093 if (!tmp || tmp > USHRT_MAX)
4094 return -EINVAL;
4095
4096 memset(p, 0, sizeof(*p));
4097 p->nbufs = tmp;
4098 p->bgid = READ_ONCE(sqe->buf_group);
4099 return 0;
4100}
4101
4102static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
4103 int bgid, unsigned nbufs)
4104{
4105 unsigned i = 0;
4106
4107 /* shouldn't happen */
4108 if (!nbufs)
4109 return 0;
4110
4111 /* the head kbuf is the list itself */
4112 while (!list_empty(&buf->list)) {
4113 struct io_buffer *nxt;
4114
4115 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4116 list_del(&nxt->list);
4117 kfree(nxt);
4118 if (++i == nbufs)
4119 return i;
4120 }
4121 i++;
4122 kfree(buf);
4123 idr_remove(&ctx->io_buffer_idr, bgid);
4124
4125 return i;
4126}
4127
Jens Axboe229a7b62020-06-22 10:13:11 -06004128static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock,
4129 struct io_comp_state *cs)
Jens Axboe067524e2020-03-02 16:32:28 -07004130{
4131 struct io_provide_buf *p = &req->pbuf;
4132 struct io_ring_ctx *ctx = req->ctx;
4133 struct io_buffer *head;
4134 int ret = 0;
4135
4136 io_ring_submit_lock(ctx, !force_nonblock);
4137
4138 lockdep_assert_held(&ctx->uring_lock);
4139
4140 ret = -ENOENT;
4141 head = idr_find(&ctx->io_buffer_idr, p->bgid);
4142 if (head)
4143 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
4144
4145 io_ring_submit_lock(ctx, !force_nonblock);
4146 if (ret < 0)
4147 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004148 __io_req_complete(req, ret, 0, cs);
Jens Axboe067524e2020-03-02 16:32:28 -07004149 return 0;
4150}
4151
Jens Axboeddf0322d2020-02-23 16:41:33 -07004152static int io_provide_buffers_prep(struct io_kiocb *req,
4153 const struct io_uring_sqe *sqe)
4154{
4155 struct io_provide_buf *p = &req->pbuf;
4156 u64 tmp;
4157
4158 if (sqe->ioprio || sqe->rw_flags)
4159 return -EINVAL;
4160
4161 tmp = READ_ONCE(sqe->fd);
4162 if (!tmp || tmp > USHRT_MAX)
4163 return -E2BIG;
4164 p->nbufs = tmp;
4165 p->addr = READ_ONCE(sqe->addr);
4166 p->len = READ_ONCE(sqe->len);
4167
Bijan Mottahedehefe68c12020-06-04 18:01:52 -07004168 if (!access_ok(u64_to_user_ptr(p->addr), (p->len * p->nbufs)))
Jens Axboeddf0322d2020-02-23 16:41:33 -07004169 return -EFAULT;
4170
4171 p->bgid = READ_ONCE(sqe->buf_group);
4172 tmp = READ_ONCE(sqe->off);
4173 if (tmp > USHRT_MAX)
4174 return -E2BIG;
4175 p->bid = tmp;
4176 return 0;
4177}
4178
4179static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
4180{
4181 struct io_buffer *buf;
4182 u64 addr = pbuf->addr;
4183 int i, bid = pbuf->bid;
4184
4185 for (i = 0; i < pbuf->nbufs; i++) {
4186 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
4187 if (!buf)
4188 break;
4189
4190 buf->addr = addr;
4191 buf->len = pbuf->len;
4192 buf->bid = bid;
4193 addr += pbuf->len;
4194 bid++;
4195 if (!*head) {
4196 INIT_LIST_HEAD(&buf->list);
4197 *head = buf;
4198 } else {
4199 list_add_tail(&buf->list, &(*head)->list);
4200 }
4201 }
4202
4203 return i ? i : -ENOMEM;
4204}
4205
Jens Axboe229a7b62020-06-22 10:13:11 -06004206static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock,
4207 struct io_comp_state *cs)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004208{
4209 struct io_provide_buf *p = &req->pbuf;
4210 struct io_ring_ctx *ctx = req->ctx;
4211 struct io_buffer *head, *list;
4212 int ret = 0;
4213
4214 io_ring_submit_lock(ctx, !force_nonblock);
4215
4216 lockdep_assert_held(&ctx->uring_lock);
4217
4218 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
4219
4220 ret = io_add_buffers(p, &head);
4221 if (ret < 0)
4222 goto out;
4223
4224 if (!list) {
4225 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
4226 GFP_KERNEL);
4227 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07004228 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004229 goto out;
4230 }
4231 }
4232out:
4233 io_ring_submit_unlock(ctx, !force_nonblock);
4234 if (ret < 0)
4235 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004236 __io_req_complete(req, ret, 0, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004237 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004238}
4239
Jens Axboe3e4827b2020-01-08 15:18:09 -07004240static int io_epoll_ctl_prep(struct io_kiocb *req,
4241 const struct io_uring_sqe *sqe)
4242{
4243#if defined(CONFIG_EPOLL)
4244 if (sqe->ioprio || sqe->buf_index)
4245 return -EINVAL;
Jens Axboe6ca56f82020-09-18 16:51:19 -06004246 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004247 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004248
4249 req->epoll.epfd = READ_ONCE(sqe->fd);
4250 req->epoll.op = READ_ONCE(sqe->len);
4251 req->epoll.fd = READ_ONCE(sqe->off);
4252
4253 if (ep_op_has_event(req->epoll.op)) {
4254 struct epoll_event __user *ev;
4255
4256 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
4257 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
4258 return -EFAULT;
4259 }
4260
4261 return 0;
4262#else
4263 return -EOPNOTSUPP;
4264#endif
4265}
4266
Jens Axboe229a7b62020-06-22 10:13:11 -06004267static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock,
4268 struct io_comp_state *cs)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004269{
4270#if defined(CONFIG_EPOLL)
4271 struct io_epoll *ie = &req->epoll;
4272 int ret;
4273
4274 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
4275 if (force_nonblock && ret == -EAGAIN)
4276 return -EAGAIN;
4277
4278 if (ret < 0)
4279 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004280 __io_req_complete(req, ret, 0, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07004281 return 0;
4282#else
4283 return -EOPNOTSUPP;
4284#endif
4285}
4286
Jens Axboec1ca7572019-12-25 22:18:28 -07004287static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4288{
4289#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4290 if (sqe->ioprio || sqe->buf_index || sqe->off)
4291 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004292 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4293 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07004294
4295 req->madvise.addr = READ_ONCE(sqe->addr);
4296 req->madvise.len = READ_ONCE(sqe->len);
4297 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
4298 return 0;
4299#else
4300 return -EOPNOTSUPP;
4301#endif
4302}
4303
Pavel Begunkov014db002020-03-03 21:33:12 +03004304static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07004305{
4306#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4307 struct io_madvise *ma = &req->madvise;
4308 int ret;
4309
4310 if (force_nonblock)
4311 return -EAGAIN;
4312
Minchan Kim0726b012020-10-17 16:14:50 -07004313 ret = do_madvise(current->mm, ma->addr, ma->len, ma->advice);
Jens Axboec1ca7572019-12-25 22:18:28 -07004314 if (ret < 0)
4315 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004316 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07004317 return 0;
4318#else
4319 return -EOPNOTSUPP;
4320#endif
4321}
4322
Jens Axboe4840e412019-12-25 22:03:45 -07004323static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4324{
4325 if (sqe->ioprio || sqe->buf_index || sqe->addr)
4326 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004327 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4328 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07004329
4330 req->fadvise.offset = READ_ONCE(sqe->off);
4331 req->fadvise.len = READ_ONCE(sqe->len);
4332 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
4333 return 0;
4334}
4335
Pavel Begunkov014db002020-03-03 21:33:12 +03004336static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07004337{
4338 struct io_fadvise *fa = &req->fadvise;
4339 int ret;
4340
Jens Axboe3e694262020-02-01 09:22:49 -07004341 if (force_nonblock) {
4342 switch (fa->advice) {
4343 case POSIX_FADV_NORMAL:
4344 case POSIX_FADV_RANDOM:
4345 case POSIX_FADV_SEQUENTIAL:
4346 break;
4347 default:
4348 return -EAGAIN;
4349 }
4350 }
Jens Axboe4840e412019-12-25 22:03:45 -07004351
4352 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
4353 if (ret < 0)
4354 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004355 io_req_complete(req, ret);
Jens Axboe4840e412019-12-25 22:03:45 -07004356 return 0;
4357}
4358
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004359static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4360{
Jens Axboe6ca56f82020-09-18 16:51:19 -06004361 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004362 return -EINVAL;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004363 if (sqe->ioprio || sqe->buf_index)
4364 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004365 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004366 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004367
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004368 req->statx.dfd = READ_ONCE(sqe->fd);
4369 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004370 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004371 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4372 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004373
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004374 return 0;
4375}
4376
Pavel Begunkov014db002020-03-03 21:33:12 +03004377static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004378{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004379 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004380 int ret;
4381
Jens Axboe5b0bbee2020-04-27 10:41:22 -06004382 if (force_nonblock) {
4383 /* only need file table for an actual valid fd */
4384 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
4385 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004386 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06004387 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004388
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004389 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
4390 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004391
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004392 if (ret < 0)
4393 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004394 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004395 return 0;
4396}
4397
Jens Axboeb5dba592019-12-11 14:02:38 -07004398static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4399{
4400 /*
4401 * If we queue this for async, it must not be cancellable. That would
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08004402 * leave the 'file' in an undeterminate state, and here need to modify
4403 * io_wq_work.flags, so initialize io_wq_work firstly.
Jens Axboeb5dba592019-12-11 14:02:38 -07004404 */
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08004405 io_req_init_async(req);
Jens Axboeb5dba592019-12-11 14:02:38 -07004406 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
4407
Jens Axboe14587a462020-09-05 11:36:08 -06004408 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004409 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004410 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
4411 sqe->rw_flags || sqe->buf_index)
4412 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004413 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004414 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004415
4416 req->close.fd = READ_ONCE(sqe->fd);
Jens Axboe0f212202020-09-13 13:09:39 -06004417 if ((req->file && req->file->f_op == &io_uring_fops))
Jens Axboefd2206e2020-06-02 16:40:47 -06004418 return -EBADF;
4419
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004420 req->close.put_file = NULL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004421 return 0;
4422}
4423
Jens Axboe229a7b62020-06-22 10:13:11 -06004424static int io_close(struct io_kiocb *req, bool force_nonblock,
4425 struct io_comp_state *cs)
Jens Axboeb5dba592019-12-11 14:02:38 -07004426{
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004427 struct io_close *close = &req->close;
Jens Axboeb5dba592019-12-11 14:02:38 -07004428 int ret;
4429
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004430 /* might be already done during nonblock submission */
4431 if (!close->put_file) {
4432 ret = __close_fd_get_file(close->fd, &close->put_file);
4433 if (ret < 0)
4434 return (ret == -ENOENT) ? -EBADF : ret;
4435 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004436
4437 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004438 if (close->put_file->f_op->flush && force_nonblock) {
Pavel Begunkov24c74672020-06-21 13:09:51 +03004439 /* was never set, but play safe */
4440 req->flags &= ~REQ_F_NOWAIT;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004441 /* avoid grabbing files - we don't need the files */
Pavel Begunkov24c74672020-06-21 13:09:51 +03004442 req->flags |= REQ_F_NO_FILE_TABLE;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004443 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004444 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004445
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004446 /* No ->flush() or already async, safely close from here */
Jens Axboe98447d62020-10-14 10:48:51 -06004447 ret = filp_close(close->put_file, req->work.identity->files);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004448 if (ret < 0)
4449 req_set_fail_links(req);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004450 fput(close->put_file);
4451 close->put_file = NULL;
Jens Axboe229a7b62020-06-22 10:13:11 -06004452 __io_req_complete(req, ret, 0, cs);
Jens Axboe1a417f42020-01-31 17:16:48 -07004453 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004454}
4455
Jens Axboe3529d8c2019-12-19 18:24:38 -07004456static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004457{
4458 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004459
4460 if (!req->file)
4461 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004462
4463 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4464 return -EINVAL;
4465 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
4466 return -EINVAL;
4467
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004468 req->sync.off = READ_ONCE(sqe->off);
4469 req->sync.len = READ_ONCE(sqe->len);
4470 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004471 return 0;
4472}
4473
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004474static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004475{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004476 int ret;
4477
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004478 /* sync_file_range always requires a blocking context */
4479 if (force_nonblock)
4480 return -EAGAIN;
4481
Jens Axboe9adbd452019-12-20 08:45:55 -07004482 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004483 req->sync.flags);
4484 if (ret < 0)
4485 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004486 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004487 return 0;
4488}
4489
YueHaibing469956e2020-03-04 15:53:52 +08004490#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004491static int io_setup_async_msg(struct io_kiocb *req,
4492 struct io_async_msghdr *kmsg)
4493{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004494 struct io_async_msghdr *async_msg = req->async_data;
4495
4496 if (async_msg)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004497 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004498 if (io_alloc_async_data(req)) {
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004499 if (kmsg->iov != kmsg->fast_iov)
4500 kfree(kmsg->iov);
4501 return -ENOMEM;
4502 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004503 async_msg = req->async_data;
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004504 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004505 memcpy(async_msg, kmsg, sizeof(*kmsg));
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004506 return -EAGAIN;
4507}
4508
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004509static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4510 struct io_async_msghdr *iomsg)
4511{
4512 iomsg->iov = iomsg->fast_iov;
4513 iomsg->msg.msg_name = &iomsg->addr;
4514 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
4515 req->sr_msg.msg_flags, &iomsg->iov);
4516}
4517
Jens Axboe3529d8c2019-12-19 18:24:38 -07004518static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004519{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004520 struct io_async_msghdr *async_msg = req->async_data;
Jens Axboee47293f2019-12-20 08:58:21 -07004521 struct io_sr_msg *sr = &req->sr_msg;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004522 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004523
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004524 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4525 return -EINVAL;
4526
Jens Axboee47293f2019-12-20 08:58:21 -07004527 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004528 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004529 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004530
Jens Axboed8768362020-02-27 14:17:49 -07004531#ifdef CONFIG_COMPAT
4532 if (req->ctx->compat)
4533 sr->msg_flags |= MSG_CMSG_COMPAT;
4534#endif
4535
Jens Axboee8c2bc12020-08-15 18:44:09 -07004536 if (!async_msg || !io_op_defs[req->opcode].needs_async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07004537 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004538 ret = io_sendmsg_copy_hdr(req, async_msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004539 if (!ret)
4540 req->flags |= REQ_F_NEED_CLEANUP;
4541 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004542}
4543
Jens Axboe229a7b62020-06-22 10:13:11 -06004544static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4545 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004546{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004547 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004548 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004549 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004550 int ret;
4551
Jens Axboe03b12302019-12-02 18:50:25 -07004552 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004553 if (unlikely(!sock))
4554 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004555
Jens Axboee8c2bc12020-08-15 18:44:09 -07004556 if (req->async_data) {
4557 kmsg = req->async_data;
4558 kmsg->msg.msg_name = &kmsg->addr;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004559 /* if iov is set, it's allocated already */
4560 if (!kmsg->iov)
4561 kmsg->iov = kmsg->fast_iov;
4562 kmsg->msg.msg_iter.iov = kmsg->iov;
4563 } else {
4564 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004565 if (ret)
4566 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004567 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004568 }
4569
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004570 flags = req->sr_msg.msg_flags;
4571 if (flags & MSG_DONTWAIT)
4572 req->flags |= REQ_F_NOWAIT;
4573 else if (force_nonblock)
4574 flags |= MSG_DONTWAIT;
4575
4576 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
4577 if (force_nonblock && ret == -EAGAIN)
4578 return io_setup_async_msg(req, kmsg);
4579 if (ret == -ERESTARTSYS)
4580 ret = -EINTR;
4581
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004582 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe03b12302019-12-02 18:50:25 -07004583 kfree(kmsg->iov);
4584 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07004585 if (ret < 0)
4586 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004587 __io_req_complete(req, ret, 0, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004588 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004589}
4590
Jens Axboe229a7b62020-06-22 10:13:11 -06004591static int io_send(struct io_kiocb *req, bool force_nonblock,
4592 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004593{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004594 struct io_sr_msg *sr = &req->sr_msg;
4595 struct msghdr msg;
4596 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004597 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004598 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004599 int ret;
4600
4601 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004602 if (unlikely(!sock))
4603 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004604
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004605 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4606 if (unlikely(ret))
Zheng Bin14db8412020-09-09 20:12:37 +08004607 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004608
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004609 msg.msg_name = NULL;
4610 msg.msg_control = NULL;
4611 msg.msg_controllen = 0;
4612 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004613
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004614 flags = req->sr_msg.msg_flags;
4615 if (flags & MSG_DONTWAIT)
4616 req->flags |= REQ_F_NOWAIT;
4617 else if (force_nonblock)
4618 flags |= MSG_DONTWAIT;
Jens Axboe03b12302019-12-02 18:50:25 -07004619
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004620 msg.msg_flags = flags;
4621 ret = sock_sendmsg(sock, &msg);
4622 if (force_nonblock && ret == -EAGAIN)
4623 return -EAGAIN;
4624 if (ret == -ERESTARTSYS)
4625 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004626
Jens Axboe03b12302019-12-02 18:50:25 -07004627 if (ret < 0)
4628 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004629 __io_req_complete(req, ret, 0, cs);
Jens Axboe03b12302019-12-02 18:50:25 -07004630 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004631}
4632
Pavel Begunkov1400e692020-07-12 20:41:05 +03004633static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4634 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004635{
4636 struct io_sr_msg *sr = &req->sr_msg;
4637 struct iovec __user *uiov;
4638 size_t iov_len;
4639 int ret;
4640
Pavel Begunkov1400e692020-07-12 20:41:05 +03004641 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4642 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004643 if (ret)
4644 return ret;
4645
4646 if (req->flags & REQ_F_BUFFER_SELECT) {
4647 if (iov_len > 1)
4648 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004649 if (copy_from_user(iomsg->iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004650 return -EFAULT;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004651 sr->len = iomsg->iov[0].iov_len;
4652 iov_iter_init(&iomsg->msg.msg_iter, READ, iomsg->iov, 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004653 sr->len);
Pavel Begunkov1400e692020-07-12 20:41:05 +03004654 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004655 } else {
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004656 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
4657 &iomsg->iov, &iomsg->msg.msg_iter,
4658 false);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004659 if (ret > 0)
4660 ret = 0;
4661 }
4662
4663 return ret;
4664}
4665
4666#ifdef CONFIG_COMPAT
4667static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004668 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004669{
4670 struct compat_msghdr __user *msg_compat;
4671 struct io_sr_msg *sr = &req->sr_msg;
4672 struct compat_iovec __user *uiov;
4673 compat_uptr_t ptr;
4674 compat_size_t len;
4675 int ret;
4676
Pavel Begunkov270a5942020-07-12 20:41:04 +03004677 msg_compat = (struct compat_msghdr __user *) sr->umsg;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004678 ret = __get_compat_msghdr(&iomsg->msg, msg_compat, &iomsg->uaddr,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004679 &ptr, &len);
4680 if (ret)
4681 return ret;
4682
4683 uiov = compat_ptr(ptr);
4684 if (req->flags & REQ_F_BUFFER_SELECT) {
4685 compat_ssize_t clen;
4686
4687 if (len > 1)
4688 return -EINVAL;
4689 if (!access_ok(uiov, sizeof(*uiov)))
4690 return -EFAULT;
4691 if (__get_user(clen, &uiov->iov_len))
4692 return -EFAULT;
4693 if (clen < 0)
4694 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004695 sr->len = iomsg->iov[0].iov_len;
4696 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004697 } else {
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004698 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
4699 UIO_FASTIOV, &iomsg->iov,
4700 &iomsg->msg.msg_iter, true);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004701 if (ret < 0)
4702 return ret;
4703 }
4704
4705 return 0;
4706}
Jens Axboe03b12302019-12-02 18:50:25 -07004707#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004708
Pavel Begunkov1400e692020-07-12 20:41:05 +03004709static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4710 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004711{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004712 iomsg->msg.msg_name = &iomsg->addr;
4713 iomsg->iov = iomsg->fast_iov;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004714
4715#ifdef CONFIG_COMPAT
4716 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004717 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004718#endif
4719
Pavel Begunkov1400e692020-07-12 20:41:05 +03004720 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004721}
4722
Jens Axboebcda7ba2020-02-23 16:42:51 -07004723static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004724 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004725{
4726 struct io_sr_msg *sr = &req->sr_msg;
4727 struct io_buffer *kbuf;
4728
Jens Axboebcda7ba2020-02-23 16:42:51 -07004729 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4730 if (IS_ERR(kbuf))
4731 return kbuf;
4732
4733 sr->kbuf = kbuf;
4734 req->flags |= REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004735 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07004736}
4737
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004738static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4739{
4740 return io_put_kbuf(req, req->sr_msg.kbuf);
4741}
4742
Jens Axboe3529d8c2019-12-19 18:24:38 -07004743static int io_recvmsg_prep(struct io_kiocb *req,
4744 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07004745{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004746 struct io_async_msghdr *async_msg = req->async_data;
Jens Axboee47293f2019-12-20 08:58:21 -07004747 struct io_sr_msg *sr = &req->sr_msg;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004748 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004749
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004750 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4751 return -EINVAL;
4752
Jens Axboe3529d8c2019-12-19 18:24:38 -07004753 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004754 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004755 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004756 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004757
Jens Axboed8768362020-02-27 14:17:49 -07004758#ifdef CONFIG_COMPAT
4759 if (req->ctx->compat)
4760 sr->msg_flags |= MSG_CMSG_COMPAT;
4761#endif
4762
Jens Axboee8c2bc12020-08-15 18:44:09 -07004763 if (!async_msg || !io_op_defs[req->opcode].needs_async_data)
Jens Axboe06b76d42019-12-19 14:44:26 -07004764 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004765 ret = io_recvmsg_copy_hdr(req, async_msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004766 if (!ret)
4767 req->flags |= REQ_F_NEED_CLEANUP;
4768 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004769}
4770
Jens Axboe229a7b62020-06-22 10:13:11 -06004771static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4772 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004773{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004774 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004775 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004776 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004777 unsigned flags;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004778 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004779
Jens Axboe0fa03c62019-04-19 13:34:07 -06004780 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004781 if (unlikely(!sock))
4782 return ret;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004783
Jens Axboee8c2bc12020-08-15 18:44:09 -07004784 if (req->async_data) {
4785 kmsg = req->async_data;
4786 kmsg->msg.msg_name = &kmsg->addr;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004787 /* if iov is set, it's allocated already */
4788 if (!kmsg->iov)
4789 kmsg->iov = kmsg->fast_iov;
4790 kmsg->msg.msg_iter.iov = kmsg->iov;
4791 } else {
4792 ret = io_recvmsg_copy_hdr(req, &iomsg);
4793 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004794 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004795 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004796 }
4797
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004798 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004799 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004800 if (IS_ERR(kbuf))
4801 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004802 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
4803 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
4804 1, req->sr_msg.len);
4805 }
4806
4807 flags = req->sr_msg.msg_flags;
4808 if (flags & MSG_DONTWAIT)
4809 req->flags |= REQ_F_NOWAIT;
4810 else if (force_nonblock)
4811 flags |= MSG_DONTWAIT;
4812
4813 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4814 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004815 if (force_nonblock && ret == -EAGAIN)
4816 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004817 if (ret == -ERESTARTSYS)
4818 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004819
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004820 if (req->flags & REQ_F_BUFFER_SELECTED)
4821 cflags = io_put_recv_kbuf(req);
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004822 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07004823 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004824 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004825 if (ret < 0)
4826 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004827 __io_req_complete(req, ret, cflags, cs);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004828 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004829}
4830
Jens Axboe229a7b62020-06-22 10:13:11 -06004831static int io_recv(struct io_kiocb *req, bool force_nonblock,
4832 struct io_comp_state *cs)
Jens Axboefddafac2020-01-04 20:19:44 -07004833{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004834 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004835 struct io_sr_msg *sr = &req->sr_msg;
4836 struct msghdr msg;
4837 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07004838 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004839 struct iovec iov;
4840 unsigned flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004841 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004842
Jens Axboefddafac2020-01-04 20:19:44 -07004843 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004844 if (unlikely(!sock))
4845 return ret;
Jens Axboefddafac2020-01-04 20:19:44 -07004846
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004847 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004848 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004849 if (IS_ERR(kbuf))
4850 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004851 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07004852 }
4853
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004854 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004855 if (unlikely(ret))
4856 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07004857
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004858 msg.msg_name = NULL;
4859 msg.msg_control = NULL;
4860 msg.msg_controllen = 0;
4861 msg.msg_namelen = 0;
4862 msg.msg_iocb = NULL;
4863 msg.msg_flags = 0;
4864
4865 flags = req->sr_msg.msg_flags;
4866 if (flags & MSG_DONTWAIT)
4867 req->flags |= REQ_F_NOWAIT;
4868 else if (force_nonblock)
4869 flags |= MSG_DONTWAIT;
4870
4871 ret = sock_recvmsg(sock, &msg, flags);
4872 if (force_nonblock && ret == -EAGAIN)
4873 return -EAGAIN;
4874 if (ret == -ERESTARTSYS)
4875 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004876out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004877 if (req->flags & REQ_F_BUFFER_SELECTED)
4878 cflags = io_put_recv_kbuf(req);
Jens Axboefddafac2020-01-04 20:19:44 -07004879 if (ret < 0)
4880 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004881 __io_req_complete(req, ret, cflags, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004882 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004883}
4884
Jens Axboe3529d8c2019-12-19 18:24:38 -07004885static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004886{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004887 struct io_accept *accept = &req->accept;
4888
Jens Axboe14587a462020-09-05 11:36:08 -06004889 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe17f2fe32019-10-17 14:42:58 -06004890 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05004891 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004892 return -EINVAL;
4893
Jens Axboed55e5f52019-12-11 16:12:15 -07004894 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4895 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004896 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06004897 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004898 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004899}
Jens Axboe17f2fe32019-10-17 14:42:58 -06004900
Jens Axboe229a7b62020-06-22 10:13:11 -06004901static int io_accept(struct io_kiocb *req, bool force_nonblock,
4902 struct io_comp_state *cs)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004903{
4904 struct io_accept *accept = &req->accept;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004905 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004906 int ret;
4907
Jiufei Xuee697dee2020-06-10 13:41:59 +08004908 if (req->file->f_flags & O_NONBLOCK)
4909 req->flags |= REQ_F_NOWAIT;
4910
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004911 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06004912 accept->addr_len, accept->flags,
4913 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004914 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004915 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004916 if (ret < 0) {
4917 if (ret == -ERESTARTSYS)
4918 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004919 req_set_fail_links(req);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004920 }
Jens Axboe229a7b62020-06-22 10:13:11 -06004921 __io_req_complete(req, ret, 0, cs);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004922 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004923}
4924
Jens Axboe3529d8c2019-12-19 18:24:38 -07004925static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004926{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004927 struct io_connect *conn = &req->connect;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004928 struct io_async_connect *io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07004929
Jens Axboe14587a462020-09-05 11:36:08 -06004930 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004931 return -EINVAL;
4932 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4933 return -EINVAL;
4934
Jens Axboe3529d8c2019-12-19 18:24:38 -07004935 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4936 conn->addr_len = READ_ONCE(sqe->addr2);
4937
4938 if (!io)
4939 return 0;
4940
4941 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07004942 &io->address);
Jens Axboef499a022019-12-02 16:28:46 -07004943}
4944
Jens Axboe229a7b62020-06-22 10:13:11 -06004945static int io_connect(struct io_kiocb *req, bool force_nonblock,
4946 struct io_comp_state *cs)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004947{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004948 struct io_async_connect __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004949 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004950 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004951
Jens Axboee8c2bc12020-08-15 18:44:09 -07004952 if (req->async_data) {
4953 io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07004954 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004955 ret = move_addr_to_kernel(req->connect.addr,
4956 req->connect.addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07004957 &__io.address);
Jens Axboef499a022019-12-02 16:28:46 -07004958 if (ret)
4959 goto out;
4960 io = &__io;
4961 }
4962
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004963 file_flags = force_nonblock ? O_NONBLOCK : 0;
4964
Jens Axboee8c2bc12020-08-15 18:44:09 -07004965 ret = __sys_connect_file(req->file, &io->address,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004966 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004967 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07004968 if (req->async_data)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004969 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004970 if (io_alloc_async_data(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004971 ret = -ENOMEM;
4972 goto out;
4973 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004974 io = req->async_data;
4975 memcpy(req->async_data, &__io, sizeof(__io));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004976 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004977 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004978 if (ret == -ERESTARTSYS)
4979 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004980out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004981 if (ret < 0)
4982 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004983 __io_req_complete(req, ret, 0, cs);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004984 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004985}
YueHaibing469956e2020-03-04 15:53:52 +08004986#else /* !CONFIG_NET */
4987static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4988{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004989 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004990}
4991
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004992static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4993 struct io_comp_state *cs)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004994{
YueHaibing469956e2020-03-04 15:53:52 +08004995 return -EOPNOTSUPP;
4996}
4997
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004998static int io_send(struct io_kiocb *req, bool force_nonblock,
4999 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005000{
5001 return -EOPNOTSUPP;
5002}
5003
5004static int io_recvmsg_prep(struct io_kiocb *req,
5005 const struct io_uring_sqe *sqe)
5006{
5007 return -EOPNOTSUPP;
5008}
5009
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005010static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
5011 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005012{
5013 return -EOPNOTSUPP;
5014}
5015
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005016static int io_recv(struct io_kiocb *req, bool force_nonblock,
5017 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005018{
5019 return -EOPNOTSUPP;
5020}
5021
5022static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5023{
5024 return -EOPNOTSUPP;
5025}
5026
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005027static int io_accept(struct io_kiocb *req, bool force_nonblock,
5028 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005029{
5030 return -EOPNOTSUPP;
5031}
5032
5033static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5034{
5035 return -EOPNOTSUPP;
5036}
5037
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005038static int io_connect(struct io_kiocb *req, bool force_nonblock,
5039 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005040{
5041 return -EOPNOTSUPP;
5042}
5043#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07005044
Jens Axboed7718a92020-02-14 22:23:12 -07005045struct io_poll_table {
5046 struct poll_table_struct pt;
5047 struct io_kiocb *req;
5048 int error;
5049};
5050
Jens Axboed7718a92020-02-14 22:23:12 -07005051static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
5052 __poll_t mask, task_work_func_t func)
5053{
Jens Axboefd7d6de2020-08-23 11:00:37 -06005054 bool twa_signal_ok;
Jens Axboeaa96bf82020-04-03 11:26:26 -06005055 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07005056
5057 /* for instances that support it check for an event match first: */
5058 if (mask && !(mask & poll->events))
5059 return 0;
5060
5061 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
5062
5063 list_del_init(&poll->wait.entry);
5064
Jens Axboed7718a92020-02-14 22:23:12 -07005065 req->result = mask;
5066 init_task_work(&req->task_work, func);
Jens Axboe6d816e02020-08-11 08:04:14 -06005067 percpu_ref_get(&req->ctx->refs);
5068
Jens Axboed7718a92020-02-14 22:23:12 -07005069 /*
Jens Axboefd7d6de2020-08-23 11:00:37 -06005070 * If we using the signalfd wait_queue_head for this wakeup, then
5071 * it's not safe to use TWA_SIGNAL as we could be recursing on the
5072 * tsk->sighand->siglock on doing the wakeup. Should not be needed
5073 * either, as the normal wakeup will suffice.
5074 */
5075 twa_signal_ok = (poll->head != &req->task->sighand->signalfd_wqh);
5076
5077 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06005078 * If this fails, then the task is exiting. When a task exits, the
5079 * work gets canceled, so just cancel this request as well instead
5080 * of executing it. We can't safely execute it anyway, as we may not
5081 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07005082 */
Jens Axboe87c43112020-09-30 21:00:14 -06005083 ret = io_req_task_work_add(req, twa_signal_ok);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005084 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06005085 struct task_struct *tsk;
5086
Jens Axboee3aabf92020-05-18 11:04:17 -06005087 WRITE_ONCE(poll->canceled, true);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005088 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06005089 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboece593a62020-06-30 12:39:05 -06005090 wake_up_process(tsk);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005091 }
Jens Axboed7718a92020-02-14 22:23:12 -07005092 return 1;
5093}
5094
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005095static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
5096 __acquires(&req->ctx->completion_lock)
5097{
5098 struct io_ring_ctx *ctx = req->ctx;
5099
5100 if (!req->result && !READ_ONCE(poll->canceled)) {
5101 struct poll_table_struct pt = { ._key = poll->events };
5102
5103 req->result = vfs_poll(req->file, &pt) & poll->events;
5104 }
5105
5106 spin_lock_irq(&ctx->completion_lock);
5107 if (!req->result && !READ_ONCE(poll->canceled)) {
5108 add_wait_queue(poll->head, &poll->wait);
5109 return true;
5110 }
5111
5112 return false;
5113}
5114
Jens Axboed4e7cd32020-08-15 11:44:50 -07005115static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06005116{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005117 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
Jens Axboed4e7cd32020-08-15 11:44:50 -07005118 if (req->opcode == IORING_OP_POLL_ADD)
Jens Axboee8c2bc12020-08-15 18:44:09 -07005119 return req->async_data;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005120 return req->apoll->double_poll;
5121}
5122
5123static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
5124{
5125 if (req->opcode == IORING_OP_POLL_ADD)
5126 return &req->poll;
5127 return &req->apoll->poll;
5128}
5129
5130static void io_poll_remove_double(struct io_kiocb *req)
5131{
5132 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005133
5134 lockdep_assert_held(&req->ctx->completion_lock);
5135
5136 if (poll && poll->head) {
5137 struct wait_queue_head *head = poll->head;
5138
5139 spin_lock(&head->lock);
5140 list_del_init(&poll->wait.entry);
5141 if (poll->wait.private)
5142 refcount_dec(&req->refs);
5143 poll->head = NULL;
5144 spin_unlock(&head->lock);
5145 }
5146}
5147
5148static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
5149{
5150 struct io_ring_ctx *ctx = req->ctx;
5151
Jens Axboed4e7cd32020-08-15 11:44:50 -07005152 io_poll_remove_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005153 req->poll.done = true;
5154 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
5155 io_commit_cqring(ctx);
5156}
5157
Jens Axboe18bceab2020-05-15 11:56:54 -06005158static void io_poll_task_func(struct callback_head *cb)
5159{
5160 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06005161 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005162 struct io_kiocb *nxt;
Jens Axboe18bceab2020-05-15 11:56:54 -06005163
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005164 if (io_poll_rewait(req, &req->poll)) {
5165 spin_unlock_irq(&ctx->completion_lock);
5166 } else {
5167 hash_del(&req->hash_node);
5168 io_poll_complete(req, req->result, 0);
5169 spin_unlock_irq(&ctx->completion_lock);
5170
5171 nxt = io_put_req_find_next(req);
5172 io_cqring_ev_posted(ctx);
5173 if (nxt)
5174 __io_req_task_submit(nxt);
5175 }
5176
Jens Axboe6d816e02020-08-11 08:04:14 -06005177 percpu_ref_put(&ctx->refs);
Jens Axboe18bceab2020-05-15 11:56:54 -06005178}
5179
5180static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
5181 int sync, void *key)
5182{
5183 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005184 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005185 __poll_t mask = key_to_poll(key);
5186
5187 /* for instances that support it check for an event match first: */
5188 if (mask && !(mask & poll->events))
5189 return 0;
5190
Jens Axboe8706e042020-09-28 08:38:54 -06005191 list_del_init(&wait->entry);
5192
Jens Axboe807abcb2020-07-17 17:09:27 -06005193 if (poll && poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005194 bool done;
5195
Jens Axboe807abcb2020-07-17 17:09:27 -06005196 spin_lock(&poll->head->lock);
5197 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06005198 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06005199 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005200 /* make sure double remove sees this as being gone */
5201 wait->private = NULL;
Jens Axboe807abcb2020-07-17 17:09:27 -06005202 spin_unlock(&poll->head->lock);
Jens Axboec8b5e262020-10-25 13:53:26 -06005203 if (!done) {
5204 /* use wait func handler, so it matches the rq type */
5205 poll->wait.func(&poll->wait, mode, sync, key);
5206 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005207 }
5208 refcount_dec(&req->refs);
5209 return 1;
5210}
5211
5212static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
5213 wait_queue_func_t wake_func)
5214{
5215 poll->head = NULL;
5216 poll->done = false;
5217 poll->canceled = false;
5218 poll->events = events;
5219 INIT_LIST_HEAD(&poll->wait.entry);
5220 init_waitqueue_func_entry(&poll->wait, wake_func);
5221}
5222
5223static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06005224 struct wait_queue_head *head,
5225 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06005226{
5227 struct io_kiocb *req = pt->req;
5228
5229 /*
5230 * If poll->head is already set, it's because the file being polled
5231 * uses multiple waitqueues for poll handling (eg one for read, one
5232 * for write). Setup a separate io_poll_iocb if this happens.
5233 */
5234 if (unlikely(poll->head)) {
Pavel Begunkov58852d42020-10-16 20:55:56 +01005235 struct io_poll_iocb *poll_one = poll;
5236
Jens Axboe18bceab2020-05-15 11:56:54 -06005237 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06005238 if (*poll_ptr) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005239 pt->error = -EINVAL;
5240 return;
5241 }
5242 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5243 if (!poll) {
5244 pt->error = -ENOMEM;
5245 return;
5246 }
Pavel Begunkov58852d42020-10-16 20:55:56 +01005247 io_init_poll_iocb(poll, poll_one->events, io_poll_double_wake);
Jens Axboe18bceab2020-05-15 11:56:54 -06005248 refcount_inc(&req->refs);
5249 poll->wait.private = req;
Jens Axboe807abcb2020-07-17 17:09:27 -06005250 *poll_ptr = poll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005251 }
5252
5253 pt->error = 0;
5254 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005255
5256 if (poll->events & EPOLLEXCLUSIVE)
5257 add_wait_queue_exclusive(head, &poll->wait);
5258 else
5259 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06005260}
5261
5262static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5263 struct poll_table_struct *p)
5264{
5265 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06005266 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005267
Jens Axboe807abcb2020-07-17 17:09:27 -06005268 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06005269}
5270
Jens Axboed7718a92020-02-14 22:23:12 -07005271static void io_async_task_func(struct callback_head *cb)
5272{
5273 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
5274 struct async_poll *apoll = req->apoll;
5275 struct io_ring_ctx *ctx = req->ctx;
5276
5277 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
5278
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005279 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07005280 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe6d816e02020-08-11 08:04:14 -06005281 percpu_ref_put(&ctx->refs);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005282 return;
Jens Axboed7718a92020-02-14 22:23:12 -07005283 }
5284
Jens Axboe31067252020-05-17 17:43:31 -06005285 /* If req is still hashed, it cannot have been canceled. Don't check. */
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005286 if (hash_hashed(&req->hash_node))
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005287 hash_del(&req->hash_node);
Jens Axboe2bae0472020-04-13 11:16:34 -06005288
Jens Axboed4e7cd32020-08-15 11:44:50 -07005289 io_poll_remove_double(req);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005290 spin_unlock_irq(&ctx->completion_lock);
5291
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005292 if (!READ_ONCE(apoll->poll.canceled))
5293 __io_req_task_submit(req);
5294 else
5295 __io_req_task_cancel(req, -ECANCELED);
Dan Carpenteraa340842020-07-08 21:47:11 +03005296
Jens Axboe6d816e02020-08-11 08:04:14 -06005297 percpu_ref_put(&ctx->refs);
Jens Axboe807abcb2020-07-17 17:09:27 -06005298 kfree(apoll->double_poll);
Jens Axboe31067252020-05-17 17:43:31 -06005299 kfree(apoll);
Jens Axboed7718a92020-02-14 22:23:12 -07005300}
5301
5302static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5303 void *key)
5304{
5305 struct io_kiocb *req = wait->private;
5306 struct io_poll_iocb *poll = &req->apoll->poll;
5307
5308 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
5309 key_to_poll(key));
5310
5311 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
5312}
5313
5314static void io_poll_req_insert(struct io_kiocb *req)
5315{
5316 struct io_ring_ctx *ctx = req->ctx;
5317 struct hlist_head *list;
5318
5319 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
5320 hlist_add_head(&req->hash_node, list);
5321}
5322
5323static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
5324 struct io_poll_iocb *poll,
5325 struct io_poll_table *ipt, __poll_t mask,
5326 wait_queue_func_t wake_func)
5327 __acquires(&ctx->completion_lock)
5328{
5329 struct io_ring_ctx *ctx = req->ctx;
5330 bool cancel = false;
5331
Pavel Begunkov4d52f332020-10-18 10:17:43 +01005332 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe18bceab2020-05-15 11:56:54 -06005333 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03005334 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06005335 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07005336
5337 ipt->pt._key = mask;
5338 ipt->req = req;
5339 ipt->error = -EINVAL;
5340
Jens Axboed7718a92020-02-14 22:23:12 -07005341 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
5342
5343 spin_lock_irq(&ctx->completion_lock);
5344 if (likely(poll->head)) {
5345 spin_lock(&poll->head->lock);
5346 if (unlikely(list_empty(&poll->wait.entry))) {
5347 if (ipt->error)
5348 cancel = true;
5349 ipt->error = 0;
5350 mask = 0;
5351 }
5352 if (mask || ipt->error)
5353 list_del_init(&poll->wait.entry);
5354 else if (cancel)
5355 WRITE_ONCE(poll->canceled, true);
5356 else if (!poll->done) /* actually waiting for an event */
5357 io_poll_req_insert(req);
5358 spin_unlock(&poll->head->lock);
5359 }
5360
5361 return mask;
5362}
5363
5364static bool io_arm_poll_handler(struct io_kiocb *req)
5365{
5366 const struct io_op_def *def = &io_op_defs[req->opcode];
5367 struct io_ring_ctx *ctx = req->ctx;
5368 struct async_poll *apoll;
5369 struct io_poll_table ipt;
5370 __poll_t mask, ret;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005371 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07005372
5373 if (!req->file || !file_can_poll(req->file))
5374 return false;
Pavel Begunkov24c74672020-06-21 13:09:51 +03005375 if (req->flags & REQ_F_POLLED)
Jens Axboed7718a92020-02-14 22:23:12 -07005376 return false;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005377 if (def->pollin)
5378 rw = READ;
5379 else if (def->pollout)
5380 rw = WRITE;
5381 else
5382 return false;
5383 /* if we can't nonblock try, then no point in arming a poll handler */
5384 if (!io_file_supports_async(req->file, rw))
Jens Axboed7718a92020-02-14 22:23:12 -07005385 return false;
5386
5387 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5388 if (unlikely(!apoll))
5389 return false;
Jens Axboe807abcb2020-07-17 17:09:27 -06005390 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005391
5392 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07005393 req->apoll = apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07005394
Nathan Chancellor8755d972020-03-02 16:01:19 -07005395 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07005396 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07005397 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07005398 if (def->pollout)
5399 mask |= POLLOUT | POLLWRNORM;
Luke Hsiao901341b2020-08-21 21:41:05 -07005400
5401 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
5402 if ((req->opcode == IORING_OP_RECVMSG) &&
5403 (req->sr_msg.msg_flags & MSG_ERRQUEUE))
5404 mask &= ~POLLIN;
5405
Jens Axboed7718a92020-02-14 22:23:12 -07005406 mask |= POLLERR | POLLPRI;
5407
5408 ipt.pt._qproc = io_async_queue_proc;
5409
5410 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
5411 io_async_wake);
Jens Axboea36da652020-08-11 09:50:19 -06005412 if (ret || ipt.error) {
Jens Axboed4e7cd32020-08-15 11:44:50 -07005413 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005414 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe807abcb2020-07-17 17:09:27 -06005415 kfree(apoll->double_poll);
Jens Axboed7718a92020-02-14 22:23:12 -07005416 kfree(apoll);
5417 return false;
5418 }
5419 spin_unlock_irq(&ctx->completion_lock);
5420 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
5421 apoll->poll.events);
5422 return true;
5423}
5424
5425static bool __io_poll_remove_one(struct io_kiocb *req,
5426 struct io_poll_iocb *poll)
5427{
Jens Axboeb41e9852020-02-17 09:52:41 -07005428 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005429
5430 spin_lock(&poll->head->lock);
5431 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005432 if (!list_empty(&poll->wait.entry)) {
5433 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005434 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005435 }
5436 spin_unlock(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005437 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005438 return do_complete;
5439}
5440
5441static bool io_poll_remove_one(struct io_kiocb *req)
5442{
5443 bool do_complete;
5444
Jens Axboed4e7cd32020-08-15 11:44:50 -07005445 io_poll_remove_double(req);
5446
Jens Axboed7718a92020-02-14 22:23:12 -07005447 if (req->opcode == IORING_OP_POLL_ADD) {
5448 do_complete = __io_poll_remove_one(req, &req->poll);
5449 } else {
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005450 struct async_poll *apoll = req->apoll;
5451
Jens Axboed7718a92020-02-14 22:23:12 -07005452 /* non-poll requests have submit ref still */
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005453 do_complete = __io_poll_remove_one(req, &apoll->poll);
5454 if (do_complete) {
Jens Axboed7718a92020-02-14 22:23:12 -07005455 io_put_req(req);
Jens Axboe807abcb2020-07-17 17:09:27 -06005456 kfree(apoll->double_poll);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005457 kfree(apoll);
5458 }
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08005459 }
5460
Jens Axboeb41e9852020-02-17 09:52:41 -07005461 if (do_complete) {
5462 io_cqring_fill_event(req, -ECANCELED);
5463 io_commit_cqring(req->ctx);
Jens Axboef254ac02020-08-12 17:33:30 -06005464 req_set_fail_links(req);
Pavel Begunkov216578e2020-10-13 09:44:00 +01005465 io_put_req_deferred(req, 1);
Jens Axboeb41e9852020-02-17 09:52:41 -07005466 }
5467
5468 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005469}
5470
Jens Axboe76e1b642020-09-26 15:05:03 -06005471/*
5472 * Returns true if we found and killed one or more poll requests
5473 */
Pavel Begunkov6b819282020-11-06 13:00:25 +00005474static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk,
5475 struct files_struct *files)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005476{
Jens Axboe78076bb2019-12-04 19:56:40 -07005477 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005478 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005479 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005480
5481 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005482 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5483 struct hlist_head *list;
5484
5485 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005486 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
Pavel Begunkov6b819282020-11-06 13:00:25 +00005487 if (io_match_task(req, tsk, files))
Jens Axboef3606e32020-09-22 08:18:24 -06005488 posted += io_poll_remove_one(req);
5489 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005490 }
5491 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005492
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005493 if (posted)
5494 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005495
5496 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005497}
5498
Jens Axboe47f46762019-11-09 17:43:02 -07005499static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
5500{
Jens Axboe78076bb2019-12-04 19:56:40 -07005501 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005502 struct io_kiocb *req;
5503
Jens Axboe78076bb2019-12-04 19:56:40 -07005504 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5505 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005506 if (sqe_addr != req->user_data)
5507 continue;
5508 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07005509 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07005510 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07005511 }
5512
5513 return -ENOENT;
5514}
5515
Jens Axboe3529d8c2019-12-19 18:24:38 -07005516static int io_poll_remove_prep(struct io_kiocb *req,
5517 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005518{
Jens Axboe221c5eb2019-01-17 09:41:58 -07005519 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5520 return -EINVAL;
5521 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
5522 sqe->poll_events)
5523 return -EINVAL;
5524
Pavel Begunkov018043b2020-10-27 23:17:18 +00005525 req->poll_remove.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07005526 return 0;
5527}
5528
5529/*
5530 * Find a running poll command that matches one specified in sqe->addr,
5531 * and remove it if found.
5532 */
5533static int io_poll_remove(struct io_kiocb *req)
5534{
5535 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe0969e782019-12-17 18:40:57 -07005536 int ret;
5537
Jens Axboe221c5eb2019-01-17 09:41:58 -07005538 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov018043b2020-10-27 23:17:18 +00005539 ret = io_poll_cancel(ctx, req->poll_remove.addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005540 spin_unlock_irq(&ctx->completion_lock);
5541
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005542 if (ret < 0)
5543 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06005544 io_req_complete(req, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005545 return 0;
5546}
5547
Jens Axboe221c5eb2019-01-17 09:41:58 -07005548static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5549 void *key)
5550{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005551 struct io_kiocb *req = wait->private;
5552 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005553
Jens Axboed7718a92020-02-14 22:23:12 -07005554 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005555}
5556
Jens Axboe221c5eb2019-01-17 09:41:58 -07005557static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5558 struct poll_table_struct *p)
5559{
5560 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5561
Jens Axboee8c2bc12020-08-15 18:44:09 -07005562 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->async_data);
Jens Axboeeac406c2019-11-14 12:09:58 -07005563}
5564
Jens Axboe3529d8c2019-12-19 18:24:38 -07005565static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005566{
5567 struct io_poll_iocb *poll = &req->poll;
Jiufei Xue5769a352020-06-17 17:53:55 +08005568 u32 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005569
5570 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5571 return -EINVAL;
5572 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
5573 return -EINVAL;
5574
Jiufei Xue5769a352020-06-17 17:53:55 +08005575 events = READ_ONCE(sqe->poll32_events);
5576#ifdef __BIG_ENDIAN
5577 events = swahw32(events);
5578#endif
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005579 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP |
5580 (events & EPOLLEXCLUSIVE);
Jens Axboe0969e782019-12-17 18:40:57 -07005581 return 0;
5582}
5583
Pavel Begunkov014db002020-03-03 21:33:12 +03005584static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07005585{
5586 struct io_poll_iocb *poll = &req->poll;
5587 struct io_ring_ctx *ctx = req->ctx;
5588 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005589 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07005590
Jens Axboed7718a92020-02-14 22:23:12 -07005591 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005592
Jens Axboed7718a92020-02-14 22:23:12 -07005593 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5594 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005595
Jens Axboe8c838782019-03-12 15:48:16 -06005596 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005597 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005598 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06005599 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005600 spin_unlock_irq(&ctx->completion_lock);
5601
Jens Axboe8c838782019-03-12 15:48:16 -06005602 if (mask) {
5603 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03005604 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005605 }
Jens Axboe8c838782019-03-12 15:48:16 -06005606 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005607}
5608
Jens Axboe5262f562019-09-17 12:26:57 -06005609static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5610{
Jens Axboead8a48a2019-11-15 08:49:11 -07005611 struct io_timeout_data *data = container_of(timer,
5612 struct io_timeout_data, timer);
5613 struct io_kiocb *req = data->req;
5614 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005615 unsigned long flags;
5616
Jens Axboe5262f562019-09-17 12:26:57 -06005617 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkova71976f2020-10-10 18:34:11 +01005618 list_del_init(&req->timeout.list);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005619 atomic_set(&req->ctx->cq_timeouts,
5620 atomic_read(&req->ctx->cq_timeouts) + 1);
5621
Jens Axboe78e19bb2019-11-06 15:21:34 -07005622 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06005623 io_commit_cqring(ctx);
5624 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5625
5626 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005627 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005628 io_put_req(req);
5629 return HRTIMER_NORESTART;
5630}
5631
Jens Axboef254ac02020-08-12 17:33:30 -06005632static int __io_timeout_cancel(struct io_kiocb *req)
Jens Axboe47f46762019-11-09 17:43:02 -07005633{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005634 struct io_timeout_data *io = req->async_data;
Jens Axboef254ac02020-08-12 17:33:30 -06005635 int ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005636
Jens Axboee8c2bc12020-08-15 18:44:09 -07005637 ret = hrtimer_try_to_cancel(&io->timer);
Jens Axboe47f46762019-11-09 17:43:02 -07005638 if (ret == -1)
5639 return -EALREADY;
Pavel Begunkova71976f2020-10-10 18:34:11 +01005640 list_del_init(&req->timeout.list);
Jens Axboe47f46762019-11-09 17:43:02 -07005641
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005642 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005643 io_cqring_fill_event(req, -ECANCELED);
Pavel Begunkov216578e2020-10-13 09:44:00 +01005644 io_put_req_deferred(req, 1);
Jens Axboe47f46762019-11-09 17:43:02 -07005645 return 0;
5646}
5647
Jens Axboef254ac02020-08-12 17:33:30 -06005648static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
5649{
5650 struct io_kiocb *req;
5651 int ret = -ENOENT;
5652
5653 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
5654 if (user_data == req->user_data) {
5655 ret = 0;
5656 break;
5657 }
5658 }
5659
5660 if (ret == -ENOENT)
5661 return ret;
5662
5663 return __io_timeout_cancel(req);
5664}
5665
Jens Axboe3529d8c2019-12-19 18:24:38 -07005666static int io_timeout_remove_prep(struct io_kiocb *req,
5667 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07005668{
Jens Axboeb29472e2019-12-17 18:50:29 -07005669 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5670 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005671 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5672 return -EINVAL;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005673 if (sqe->ioprio || sqe->buf_index || sqe->len || sqe->timeout_flags)
Jens Axboeb29472e2019-12-17 18:50:29 -07005674 return -EINVAL;
5675
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005676 req->timeout_rem.addr = READ_ONCE(sqe->addr);
Jens Axboeb29472e2019-12-17 18:50:29 -07005677 return 0;
5678}
5679
Jens Axboe11365042019-10-16 09:08:32 -06005680/*
5681 * Remove or update an existing timeout command
5682 */
Jens Axboefc4df992019-12-10 14:38:45 -07005683static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06005684{
5685 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07005686 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06005687
Jens Axboe11365042019-10-16 09:08:32 -06005688 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005689 ret = io_timeout_cancel(ctx, req->timeout_rem.addr);
Jens Axboe11365042019-10-16 09:08:32 -06005690
Jens Axboe47f46762019-11-09 17:43:02 -07005691 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06005692 io_commit_cqring(ctx);
5693 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005694 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005695 if (ret < 0)
5696 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08005697 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06005698 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06005699}
5700
Jens Axboe3529d8c2019-12-19 18:24:38 -07005701static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07005702 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06005703{
Jens Axboead8a48a2019-11-15 08:49:11 -07005704 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06005705 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005706 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06005707
Jens Axboead8a48a2019-11-15 08:49:11 -07005708 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06005709 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07005710 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06005711 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005712 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07005713 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06005714 flags = READ_ONCE(sqe->timeout_flags);
5715 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06005716 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06005717
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005718 req->timeout.off = off;
Jens Axboe26a61672019-12-20 09:02:01 -07005719
Jens Axboee8c2bc12020-08-15 18:44:09 -07005720 if (!req->async_data && io_alloc_async_data(req))
Jens Axboe26a61672019-12-20 09:02:01 -07005721 return -ENOMEM;
5722
Jens Axboee8c2bc12020-08-15 18:44:09 -07005723 data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07005724 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07005725
5726 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06005727 return -EFAULT;
5728
Jens Axboe11365042019-10-16 09:08:32 -06005729 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07005730 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06005731 else
Jens Axboead8a48a2019-11-15 08:49:11 -07005732 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06005733
Jens Axboead8a48a2019-11-15 08:49:11 -07005734 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
5735 return 0;
5736}
5737
Jens Axboefc4df992019-12-10 14:38:45 -07005738static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07005739{
Jens Axboead8a48a2019-11-15 08:49:11 -07005740 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005741 struct io_timeout_data *data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07005742 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005743 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07005744
Pavel Begunkov733f5c92020-05-26 20:34:03 +03005745 spin_lock_irq(&ctx->completion_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07005746
Jens Axboe5262f562019-09-17 12:26:57 -06005747 /*
5748 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07005749 * timeout event to be satisfied. If it isn't set, then this is
5750 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06005751 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005752 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07005753 entry = ctx->timeout_list.prev;
5754 goto add;
5755 }
Jens Axboe5262f562019-09-17 12:26:57 -06005756
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005757 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
5758 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06005759
5760 /*
5761 * Insertion sort, ensuring the first entry in the list is always
5762 * the one we need first.
5763 */
Jens Axboe5262f562019-09-17 12:26:57 -06005764 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005765 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
5766 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06005767
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005768 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07005769 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005770 /* nxt.seq is behind @tail, otherwise would've been completed */
5771 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06005772 break;
5773 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07005774add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005775 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07005776 data->timer.function = io_timeout_fn;
5777 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06005778 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005779 return 0;
5780}
5781
Jens Axboe62755e32019-10-28 21:49:21 -06005782static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06005783{
Jens Axboe62755e32019-10-28 21:49:21 -06005784 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06005785
Jens Axboe62755e32019-10-28 21:49:21 -06005786 return req->user_data == (unsigned long) data;
5787}
5788
Jens Axboee977d6d2019-11-05 12:39:45 -07005789static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06005790{
Jens Axboe62755e32019-10-28 21:49:21 -06005791 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06005792 int ret = 0;
5793
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03005794 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr, false);
Jens Axboe62755e32019-10-28 21:49:21 -06005795 switch (cancel_ret) {
5796 case IO_WQ_CANCEL_OK:
5797 ret = 0;
5798 break;
5799 case IO_WQ_CANCEL_RUNNING:
5800 ret = -EALREADY;
5801 break;
5802 case IO_WQ_CANCEL_NOTFOUND:
5803 ret = -ENOENT;
5804 break;
5805 }
5806
Jens Axboee977d6d2019-11-05 12:39:45 -07005807 return ret;
5808}
5809
Jens Axboe47f46762019-11-09 17:43:02 -07005810static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
5811 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03005812 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07005813{
5814 unsigned long flags;
5815 int ret;
5816
5817 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
5818 if (ret != -ENOENT) {
5819 spin_lock_irqsave(&ctx->completion_lock, flags);
5820 goto done;
5821 }
5822
5823 spin_lock_irqsave(&ctx->completion_lock, flags);
5824 ret = io_timeout_cancel(ctx, sqe_addr);
5825 if (ret != -ENOENT)
5826 goto done;
5827 ret = io_poll_cancel(ctx, sqe_addr);
5828done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005829 if (!ret)
5830 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005831 io_cqring_fill_event(req, ret);
5832 io_commit_cqring(ctx);
5833 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5834 io_cqring_ev_posted(ctx);
5835
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005836 if (ret < 0)
5837 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03005838 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005839}
5840
Jens Axboe3529d8c2019-12-19 18:24:38 -07005841static int io_async_cancel_prep(struct io_kiocb *req,
5842 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07005843{
Jens Axboefbf23842019-12-17 18:45:56 -07005844 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07005845 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005846 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5847 return -EINVAL;
5848 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags)
Jens Axboee977d6d2019-11-05 12:39:45 -07005849 return -EINVAL;
5850
Jens Axboefbf23842019-12-17 18:45:56 -07005851 req->cancel.addr = READ_ONCE(sqe->addr);
5852 return 0;
5853}
5854
Pavel Begunkov014db002020-03-03 21:33:12 +03005855static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07005856{
5857 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07005858
Pavel Begunkov014db002020-03-03 21:33:12 +03005859 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06005860 return 0;
5861}
5862
Jens Axboe05f3fb32019-12-09 11:22:50 -07005863static int io_files_update_prep(struct io_kiocb *req,
5864 const struct io_uring_sqe *sqe)
5865{
Jens Axboe6ca56f82020-09-18 16:51:19 -06005866 if (unlikely(req->ctx->flags & IORING_SETUP_SQPOLL))
5867 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005868 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5869 return -EINVAL;
5870 if (sqe->ioprio || sqe->rw_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005871 return -EINVAL;
5872
5873 req->files_update.offset = READ_ONCE(sqe->off);
5874 req->files_update.nr_args = READ_ONCE(sqe->len);
5875 if (!req->files_update.nr_args)
5876 return -EINVAL;
5877 req->files_update.arg = READ_ONCE(sqe->addr);
5878 return 0;
5879}
5880
Jens Axboe229a7b62020-06-22 10:13:11 -06005881static int io_files_update(struct io_kiocb *req, bool force_nonblock,
5882 struct io_comp_state *cs)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005883{
5884 struct io_ring_ctx *ctx = req->ctx;
5885 struct io_uring_files_update up;
5886 int ret;
5887
Jens Axboef86cd202020-01-29 13:46:44 -07005888 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005889 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005890
5891 up.offset = req->files_update.offset;
5892 up.fds = req->files_update.arg;
5893
5894 mutex_lock(&ctx->uring_lock);
5895 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
5896 mutex_unlock(&ctx->uring_lock);
5897
5898 if (ret < 0)
5899 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06005900 __io_req_complete(req, ret, 0, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005901 return 0;
5902}
5903
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005904static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07005905{
Jens Axboed625c6e2019-12-17 19:53:05 -07005906 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07005907 case IORING_OP_NOP:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005908 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07005909 case IORING_OP_READV:
5910 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005911 case IORING_OP_READ:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005912 return io_read_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07005913 case IORING_OP_WRITEV:
5914 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005915 case IORING_OP_WRITE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005916 return io_write_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005917 case IORING_OP_POLL_ADD:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005918 return io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005919 case IORING_OP_POLL_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005920 return io_poll_remove_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005921 case IORING_OP_FSYNC:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005922 return io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005923 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005924 return io_prep_sfr(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005925 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005926 case IORING_OP_SEND:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005927 return io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005928 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005929 case IORING_OP_RECV:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005930 return io_recvmsg_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07005931 case IORING_OP_CONNECT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005932 return io_connect_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005933 case IORING_OP_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005934 return io_timeout_prep(req, sqe, false);
Jens Axboeb29472e2019-12-17 18:50:29 -07005935 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005936 return io_timeout_remove_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07005937 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005938 return io_async_cancel_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005939 case IORING_OP_LINK_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005940 return io_timeout_prep(req, sqe, true);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005941 case IORING_OP_ACCEPT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005942 return io_accept_prep(req, sqe);
Jens Axboed63d1b52019-12-10 10:38:56 -07005943 case IORING_OP_FALLOCATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005944 return io_fallocate_prep(req, sqe);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005945 case IORING_OP_OPENAT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005946 return io_openat_prep(req, sqe);
Jens Axboeb5dba592019-12-11 14:02:38 -07005947 case IORING_OP_CLOSE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005948 return io_close_prep(req, sqe);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005949 case IORING_OP_FILES_UPDATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005950 return io_files_update_prep(req, sqe);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005951 case IORING_OP_STATX:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005952 return io_statx_prep(req, sqe);
Jens Axboe4840e412019-12-25 22:03:45 -07005953 case IORING_OP_FADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005954 return io_fadvise_prep(req, sqe);
Jens Axboec1ca7572019-12-25 22:18:28 -07005955 case IORING_OP_MADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005956 return io_madvise_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07005957 case IORING_OP_OPENAT2:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005958 return io_openat2_prep(req, sqe);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005959 case IORING_OP_EPOLL_CTL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005960 return io_epoll_ctl_prep(req, sqe);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005961 case IORING_OP_SPLICE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005962 return io_splice_prep(req, sqe);
Jens Axboeddf0322d2020-02-23 16:41:33 -07005963 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005964 return io_provide_buffers_prep(req, sqe);
Jens Axboe067524e2020-03-02 16:32:28 -07005965 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005966 return io_remove_buffers_prep(req, sqe);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03005967 case IORING_OP_TEE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005968 return io_tee_prep(req, sqe);
Jens Axboe36f4fa62020-09-05 11:14:22 -06005969 case IORING_OP_SHUTDOWN:
5970 return io_shutdown_prep(req, sqe);
Jens Axboe80a261f2020-09-28 14:23:58 -06005971 case IORING_OP_RENAMEAT:
5972 return io_renameat_prep(req, sqe);
Jens Axboe14a11432020-09-28 14:27:37 -06005973 case IORING_OP_UNLINKAT:
5974 return io_unlinkat_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07005975 }
5976
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005977 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5978 req->opcode);
5979 return-EINVAL;
5980}
5981
Jens Axboedef596e2019-01-09 08:59:42 -07005982static int io_req_defer_prep(struct io_kiocb *req,
5983 const struct io_uring_sqe *sqe)
Jens Axboedef596e2019-01-09 08:59:42 -07005984{
Jens Axboedef596e2019-01-09 08:59:42 -07005985 if (!sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005986 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005987 if (io_alloc_async_data(req))
Jens Axboeb76da702019-11-20 13:05:32 -07005988 return -EAGAIN;
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005989 return io_req_prep(req, sqe);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005990}
5991
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005992static u32 io_get_sequence(struct io_kiocb *req)
5993{
5994 struct io_kiocb *pos;
5995 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00005996 u32 total_submitted, nr_reqs = 0;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005997
Pavel Begunkovf2f87372020-10-27 23:25:37 +00005998 io_for_each_link(pos, req)
5999 nr_reqs++;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006000
6001 total_submitted = ctx->cached_sq_head - ctx->cached_sq_dropped;
6002 return total_submitted - nr_reqs;
6003}
6004
Jens Axboe3529d8c2019-12-19 18:24:38 -07006005static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006006{
6007 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006008 struct io_defer_entry *de;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006009 int ret;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006010 u32 seq;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006011
6012 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006013 if (likely(list_empty_careful(&ctx->defer_list) &&
6014 !(req->flags & REQ_F_IO_DRAIN)))
6015 return 0;
6016
6017 seq = io_get_sequence(req);
6018 /* Still a chance to pass the sequence check */
6019 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006020 return 0;
6021
Jens Axboee8c2bc12020-08-15 18:44:09 -07006022 if (!req->async_data) {
Pavel Begunkov650b5482020-05-17 14:02:11 +03006023 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006024 if (ret)
Pavel Begunkov650b5482020-05-17 14:02:11 +03006025 return ret;
6026 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03006027 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006028 de = kmalloc(sizeof(*de), GFP_KERNEL);
6029 if (!de)
6030 return -ENOMEM;
Jens Axboe31b51512019-01-18 22:56:34 -07006031
6032 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006033 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboe31b51512019-01-18 22:56:34 -07006034 spin_unlock_irq(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006035 kfree(de);
Pavel Begunkovae348172020-07-23 20:25:20 +03006036 io_queue_async_work(req);
6037 return -EIOCBQUEUED;
Jens Axboe31b51512019-01-18 22:56:34 -07006038 }
6039
6040 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006041 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006042 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006043 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboe31b51512019-01-18 22:56:34 -07006044 spin_unlock_irq(&ctx->completion_lock);
6045 return -EIOCBQUEUED;
6046}
Jens Axboeedafcce2019-01-09 09:16:05 -07006047
Jens Axboef573d382020-09-22 10:19:24 -06006048static void io_req_drop_files(struct io_kiocb *req)
6049{
6050 struct io_ring_ctx *ctx = req->ctx;
6051 unsigned long flags;
6052
6053 spin_lock_irqsave(&ctx->inflight_lock, flags);
6054 list_del(&req->inflight_entry);
6055 if (waitqueue_active(&ctx->inflight_wait))
6056 wake_up(&ctx->inflight_wait);
6057 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
6058 req->flags &= ~REQ_F_INFLIGHT;
Jens Axboe98447d62020-10-14 10:48:51 -06006059 put_files_struct(req->work.identity->files);
6060 put_nsproxy(req->work.identity->nsproxy);
Jens Axboedfead8a2020-10-14 10:12:37 -06006061 req->work.flags &= ~IO_WQ_WORK_FILES;
Jens Axboef573d382020-09-22 10:19:24 -06006062}
6063
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03006064static void __io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006065{
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006066 if (req->flags & REQ_F_BUFFER_SELECTED) {
6067 switch (req->opcode) {
6068 case IORING_OP_READV:
6069 case IORING_OP_READ_FIXED:
6070 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07006071 kfree((void *)(unsigned long)req->rw.addr);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006072 break;
6073 case IORING_OP_RECVMSG:
6074 case IORING_OP_RECV:
Jens Axboe52de1fe2020-02-27 10:15:42 -07006075 kfree(req->sr_msg.kbuf);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006076 break;
6077 }
6078 req->flags &= ~REQ_F_BUFFER_SELECTED;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006079 }
6080
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006081 if (req->flags & REQ_F_NEED_CLEANUP) {
6082 switch (req->opcode) {
6083 case IORING_OP_READV:
6084 case IORING_OP_READ_FIXED:
6085 case IORING_OP_READ:
6086 case IORING_OP_WRITEV:
6087 case IORING_OP_WRITE_FIXED:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006088 case IORING_OP_WRITE: {
6089 struct io_async_rw *io = req->async_data;
6090 if (io->free_iovec)
6091 kfree(io->free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006092 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006093 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006094 case IORING_OP_RECVMSG:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006095 case IORING_OP_SENDMSG: {
6096 struct io_async_msghdr *io = req->async_data;
6097 if (io->iov != io->fast_iov)
6098 kfree(io->iov);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006099 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006100 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006101 case IORING_OP_SPLICE:
6102 case IORING_OP_TEE:
6103 io_put_file(req, req->splice.file_in,
6104 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
6105 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06006106 case IORING_OP_OPENAT:
6107 case IORING_OP_OPENAT2:
6108 if (req->open.filename)
6109 putname(req->open.filename);
6110 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006111 case IORING_OP_RENAMEAT:
6112 putname(req->rename.oldpath);
6113 putname(req->rename.newpath);
6114 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006115 case IORING_OP_UNLINKAT:
6116 putname(req->unlink.filename);
6117 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006118 }
6119 req->flags &= ~REQ_F_NEED_CLEANUP;
6120 }
Pavel Begunkovbb175342020-08-20 11:33:35 +03006121
Jens Axboef573d382020-09-22 10:19:24 -06006122 if (req->flags & REQ_F_INFLIGHT)
6123 io_req_drop_files(req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006124}
6125
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006126static int io_issue_sqe(struct io_kiocb *req, bool force_nonblock,
6127 struct io_comp_state *cs)
Jens Axboeedafcce2019-01-09 09:16:05 -07006128{
Jens Axboeedafcce2019-01-09 09:16:05 -07006129 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07006130 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07006131
Jens Axboed625c6e2019-12-17 19:53:05 -07006132 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07006133 case IORING_OP_NOP:
Jens Axboe229a7b62020-06-22 10:13:11 -06006134 ret = io_nop(req, cs);
Jens Axboe31b51512019-01-18 22:56:34 -07006135 break;
6136 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07006137 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006138 case IORING_OP_READ:
Jens Axboea1d7c392020-06-22 11:09:46 -06006139 ret = io_read(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006140 break;
6141 case IORING_OP_WRITEV:
Jens Axboe2b188cc2019-01-07 10:46:33 -07006142 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006143 case IORING_OP_WRITE:
Jens Axboea1d7c392020-06-22 11:09:46 -06006144 ret = io_write(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006145 break;
6146 case IORING_OP_FSYNC:
Pavel Begunkov014db002020-03-03 21:33:12 +03006147 ret = io_fsync(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006148 break;
6149 case IORING_OP_POLL_ADD:
Pavel Begunkov014db002020-03-03 21:33:12 +03006150 ret = io_poll_add(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006151 break;
6152 case IORING_OP_POLL_REMOVE:
Jens Axboeb76da702019-11-20 13:05:32 -07006153 ret = io_poll_remove(req);
6154 break;
6155 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006156 ret = io_sync_file_range(req, force_nonblock);
Jens Axboeb76da702019-11-20 13:05:32 -07006157 break;
6158 case IORING_OP_SENDMSG:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006159 ret = io_sendmsg(req, force_nonblock, cs);
6160 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006161 case IORING_OP_SEND:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006162 ret = io_send(req, force_nonblock, cs);
Jens Axboeb76da702019-11-20 13:05:32 -07006163 break;
6164 case IORING_OP_RECVMSG:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006165 ret = io_recvmsg(req, force_nonblock, cs);
6166 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006167 case IORING_OP_RECV:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006168 ret = io_recv(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006169 break;
6170 case IORING_OP_TIMEOUT:
6171 ret = io_timeout(req);
6172 break;
6173 case IORING_OP_TIMEOUT_REMOVE:
6174 ret = io_timeout_remove(req);
6175 break;
6176 case IORING_OP_ACCEPT:
Jens Axboe229a7b62020-06-22 10:13:11 -06006177 ret = io_accept(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006178 break;
6179 case IORING_OP_CONNECT:
Jens Axboe229a7b62020-06-22 10:13:11 -06006180 ret = io_connect(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006181 break;
6182 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkov014db002020-03-03 21:33:12 +03006183 ret = io_async_cancel(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006184 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07006185 case IORING_OP_FALLOCATE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006186 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07006187 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07006188 case IORING_OP_OPENAT:
Pavel Begunkov014db002020-03-03 21:33:12 +03006189 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006190 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07006191 case IORING_OP_CLOSE:
Jens Axboe229a7b62020-06-22 10:13:11 -06006192 ret = io_close(req, force_nonblock, cs);
Jens Axboeb5dba592019-12-11 14:02:38 -07006193 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006194 case IORING_OP_FILES_UPDATE:
Jens Axboe229a7b62020-06-22 10:13:11 -06006195 ret = io_files_update(req, force_nonblock, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006196 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006197 case IORING_OP_STATX:
Pavel Begunkov014db002020-03-03 21:33:12 +03006198 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006199 break;
Jens Axboe4840e412019-12-25 22:03:45 -07006200 case IORING_OP_FADVISE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006201 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07006202 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07006203 case IORING_OP_MADVISE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006204 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07006205 break;
Jens Axboecebdb982020-01-08 17:59:24 -07006206 case IORING_OP_OPENAT2:
Pavel Begunkov014db002020-03-03 21:33:12 +03006207 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07006208 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07006209 case IORING_OP_EPOLL_CTL:
Jens Axboe229a7b62020-06-22 10:13:11 -06006210 ret = io_epoll_ctl(req, force_nonblock, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006211 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006212 case IORING_OP_SPLICE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006213 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006214 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07006215 case IORING_OP_PROVIDE_BUFFERS:
Jens Axboe229a7b62020-06-22 10:13:11 -06006216 ret = io_provide_buffers(req, force_nonblock, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006217 break;
Jens Axboe067524e2020-03-02 16:32:28 -07006218 case IORING_OP_REMOVE_BUFFERS:
Jens Axboe229a7b62020-06-22 10:13:11 -06006219 ret = io_remove_buffers(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006220 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006221 case IORING_OP_TEE:
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006222 ret = io_tee(req, force_nonblock);
6223 break;
Jens Axboe36f4fa62020-09-05 11:14:22 -06006224 case IORING_OP_SHUTDOWN:
6225 ret = io_shutdown(req, force_nonblock);
6226 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006227 case IORING_OP_RENAMEAT:
6228 ret = io_renameat(req, force_nonblock);
6229 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006230 case IORING_OP_UNLINKAT:
6231 ret = io_unlinkat(req, force_nonblock);
6232 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006233 default:
6234 ret = -EINVAL;
6235 break;
Jens Axboe31b51512019-01-18 22:56:34 -07006236 }
6237
6238 if (ret)
Jens Axboeedafcce2019-01-09 09:16:05 -07006239 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006240
Jens Axboeb5325762020-05-19 21:20:27 -06006241 /* If the op doesn't have a file, we're not polling for it */
6242 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file) {
Jens Axboe11ba8202020-01-15 21:51:17 -07006243 const bool in_async = io_wq_current_is_worker();
6244
Jens Axboe11ba8202020-01-15 21:51:17 -07006245 /* workqueue context doesn't hold uring_lock, grab it now */
6246 if (in_async)
6247 mutex_lock(&ctx->uring_lock);
6248
Xiaoguang Wang2e9dbe92020-11-13 00:44:08 +08006249 io_iopoll_req_issued(req, in_async);
Jens Axboe11ba8202020-01-15 21:51:17 -07006250
6251 if (in_async)
6252 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006253 }
6254
6255 return 0;
6256}
6257
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006258static struct io_wq_work *io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006259{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006260 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006261 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06006262 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006263
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006264 timeout = io_prep_linked_timeout(req);
6265 if (timeout)
6266 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006267
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006268 /* if NO_CANCEL is set, we must still run the work */
6269 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
6270 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06006271 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006272 }
Jens Axboe31b51512019-01-18 22:56:34 -07006273
Jens Axboe561fb042019-10-24 07:25:42 -06006274 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006275 do {
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006276 ret = io_issue_sqe(req, false, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06006277 /*
6278 * We can get EAGAIN for polled IO even though we're
6279 * forcing a sync submission from here, since we can't
6280 * wait for request slots on the block side.
6281 */
6282 if (ret != -EAGAIN)
6283 break;
6284 cond_resched();
6285 } while (1);
6286 }
Jens Axboe31b51512019-01-18 22:56:34 -07006287
Jens Axboe561fb042019-10-24 07:25:42 -06006288 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006289 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006290 io_req_complete(req, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006291 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006292
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006293 return io_steal_work(req);
Jens Axboe31b51512019-01-18 22:56:34 -07006294}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006295
Jens Axboe65e19f52019-10-26 07:20:21 -06006296static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6297 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06006298{
Jens Axboe65e19f52019-10-26 07:20:21 -06006299 struct fixed_file_table *table;
6300
Jens Axboe05f3fb32019-12-09 11:22:50 -07006301 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08006302 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06006303}
6304
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006305static struct file *io_file_get(struct io_submit_state *state,
6306 struct io_kiocb *req, int fd, bool fixed)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006307{
6308 struct io_ring_ctx *ctx = req->ctx;
6309 struct file *file;
6310
6311 if (fixed) {
Pavel Begunkov479f5172020-10-10 18:34:07 +01006312 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006313 return NULL;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006314 fd = array_index_nospec(fd, ctx->nr_user_files);
6315 file = io_file_from_index(ctx, fd);
Jens Axboefd2206e2020-06-02 16:40:47 -06006316 if (file) {
Pavel Begunkovb2e96852020-10-10 18:34:16 +01006317 req->fixed_file_refs = &ctx->file_data->node->refs;
Jens Axboefd2206e2020-06-02 16:40:47 -06006318 percpu_ref_get(req->fixed_file_refs);
6319 }
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006320 } else {
6321 trace_io_uring_file_get(ctx, fd);
6322 file = __io_file_get(state, fd);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006323 }
6324
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006325 return file;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006326}
6327
Jens Axboe3529d8c2019-12-19 18:24:38 -07006328static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06006329 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06006330{
Jens Axboe28cea78a2020-09-14 10:51:17 -06006331 req->file = io_file_get(state, req, fd, req->flags & REQ_F_FIXED_FILE);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006332 if (req->file || io_op_defs[req->opcode].needs_file_no_error)
Jens Axboef86cd202020-01-29 13:46:44 -07006333 return 0;
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006334 return -EBADF;
Pavel Begunkovf56040b2020-07-23 20:25:21 +03006335}
6336
Jens Axboe2665abf2019-11-05 12:40:47 -07006337static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6338{
Jens Axboead8a48a2019-11-15 08:49:11 -07006339 struct io_timeout_data *data = container_of(timer,
6340 struct io_timeout_data, timer);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006341 struct io_kiocb *prev, *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006342 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07006343 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006344
6345 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006346 prev = req->timeout.head;
6347 req->timeout.head = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006348
6349 /*
6350 * We don't expect the list to be empty, that will only happen if we
6351 * race with the completion of the linked work.
6352 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006353 if (prev && refcount_inc_not_zero(&prev->refs))
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006354 io_remove_next_linked(prev);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006355 else
6356 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006357 spin_unlock_irqrestore(&ctx->completion_lock, flags);
6358
6359 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006360 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03006361 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07006362 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07006363 } else {
Jens Axboee1e16092020-06-22 09:17:17 -06006364 io_req_complete(req, -ETIME);
Jens Axboe2665abf2019-11-05 12:40:47 -07006365 }
Jens Axboe2665abf2019-11-05 12:40:47 -07006366 return HRTIMER_NORESTART;
6367}
6368
Jens Axboe7271ef32020-08-10 09:55:22 -06006369static void __io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006370{
Jens Axboe76a46e02019-11-10 23:34:16 -07006371 /*
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006372 * If the back reference is NULL, then our linked request finished
6373 * before we got a chance to setup the timer
Jens Axboe76a46e02019-11-10 23:34:16 -07006374 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006375 if (req->timeout.head) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006376 struct io_timeout_data *data = req->async_data;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006377
Jens Axboead8a48a2019-11-15 08:49:11 -07006378 data->timer.function = io_link_timeout_fn;
6379 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6380 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07006381 }
Jens Axboe7271ef32020-08-10 09:55:22 -06006382}
6383
6384static void io_queue_linked_timeout(struct io_kiocb *req)
6385{
6386 struct io_ring_ctx *ctx = req->ctx;
6387
6388 spin_lock_irq(&ctx->completion_lock);
6389 __io_queue_linked_timeout(req);
Jens Axboe76a46e02019-11-10 23:34:16 -07006390 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006391
Jens Axboe2665abf2019-11-05 12:40:47 -07006392 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006393 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006394}
6395
Jens Axboead8a48a2019-11-15 08:49:11 -07006396static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006397{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006398 struct io_kiocb *nxt = req->link;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006399
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006400 if (!nxt || (req->flags & REQ_F_LINK_TIMEOUT) ||
6401 nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07006402 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006403
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006404 nxt->timeout.head = req;
Pavel Begunkov900fad42020-10-19 16:39:16 +01006405 nxt->flags |= REQ_F_LTIMEOUT_ACTIVE;
Jens Axboe76a46e02019-11-10 23:34:16 -07006406 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07006407 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07006408}
6409
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006410static void __io_queue_sqe(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006411{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006412 struct io_kiocb *linked_timeout;
Jens Axboe193155c2020-02-22 23:22:19 -07006413 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006414 int ret;
6415
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006416again:
6417 linked_timeout = io_prep_linked_timeout(req);
6418
Pavel Begunkov2e5aa6c2020-10-18 10:17:37 +01006419 if ((req->flags & REQ_F_WORK_INITIALIZED) &&
6420 (req->work.flags & IO_WQ_WORK_CREDS) &&
Jens Axboe98447d62020-10-14 10:48:51 -06006421 req->work.identity->creds != current_cred()) {
Jens Axboe193155c2020-02-22 23:22:19 -07006422 if (old_creds)
6423 revert_creds(old_creds);
Jens Axboe98447d62020-10-14 10:48:51 -06006424 if (old_creds == req->work.identity->creds)
Jens Axboe193155c2020-02-22 23:22:19 -07006425 old_creds = NULL; /* restored original creds */
6426 else
Jens Axboe98447d62020-10-14 10:48:51 -06006427 old_creds = override_creds(req->work.identity->creds);
Jens Axboe193155c2020-02-22 23:22:19 -07006428 }
6429
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006430 ret = io_issue_sqe(req, true, cs);
Jens Axboe491381ce2019-10-17 09:20:46 -06006431
6432 /*
6433 * We async punt it if the file wasn't marked NOWAIT, or if the file
6434 * doesn't support non-blocking read/write attempts
6435 */
Pavel Begunkov24c74672020-06-21 13:09:51 +03006436 if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006437 if (!io_arm_poll_handler(req)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006438 /*
6439 * Queued up for async execution, worker will release
6440 * submit reference when the iocb is actually submitted.
6441 */
6442 io_queue_async_work(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006443 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03006444
Pavel Begunkovf063c542020-07-25 14:41:59 +03006445 if (linked_timeout)
6446 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006447 } else if (likely(!ret)) {
6448 /* drop submission reference */
6449 req = io_put_req_find_next(req);
6450 if (linked_timeout)
6451 io_queue_linked_timeout(linked_timeout);
Jens Axboee65ef562019-03-12 10:16:44 -06006452
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006453 if (req) {
6454 if (!(req->flags & REQ_F_FORCE_ASYNC))
6455 goto again;
6456 io_queue_async_work(req);
6457 }
6458 } else {
Pavel Begunkov652532a2020-07-03 22:15:07 +03006459 /* un-prep timeout, so it'll be killed as any other linked */
6460 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006461 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06006462 io_put_req(req);
Pavel Begunkov652532a2020-07-03 22:15:07 +03006463 io_req_complete(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06006464 }
Pavel Begunkov652532a2020-07-03 22:15:07 +03006465
Jens Axboe193155c2020-02-22 23:22:19 -07006466 if (old_creds)
6467 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006468}
6469
Jens Axboef13fad72020-06-22 09:34:30 -06006470static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6471 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006472{
6473 int ret;
6474
Jens Axboe3529d8c2019-12-19 18:24:38 -07006475 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006476 if (ret) {
6477 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03006478fail_req:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006479 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006480 io_put_req(req);
6481 io_req_complete(req, ret);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006482 }
Pavel Begunkov25508782019-12-30 21:24:47 +03006483 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006484 if (!req->async_data) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006485 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006486 if (unlikely(ret))
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006487 goto fail_req;
6488 }
Jens Axboece35a472019-12-17 08:04:44 -07006489 io_queue_async_work(req);
6490 } else {
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006491 if (sqe) {
6492 ret = io_req_prep(req, sqe);
6493 if (unlikely(ret))
6494 goto fail_req;
6495 }
6496 __io_queue_sqe(req, cs);
Jens Axboece35a472019-12-17 08:04:44 -07006497 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006498}
6499
Jens Axboef13fad72020-06-22 09:34:30 -06006500static inline void io_queue_link_head(struct io_kiocb *req,
6501 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006502{
Jens Axboe94ae5e72019-11-14 19:39:52 -07006503 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Jens Axboee1e16092020-06-22 09:17:17 -06006504 io_put_req(req);
6505 io_req_complete(req, -ECANCELED);
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03006506 } else
Jens Axboef13fad72020-06-22 09:34:30 -06006507 io_queue_sqe(req, NULL, cs);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006508}
6509
Pavel Begunkov863e0562020-10-27 23:25:35 +00006510struct io_submit_link {
6511 struct io_kiocb *head;
6512 struct io_kiocb *last;
6513};
6514
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006515static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov863e0562020-10-27 23:25:35 +00006516 struct io_submit_link *link, struct io_comp_state *cs)
Jens Axboe9e645e112019-05-10 16:07:28 -06006517{
Jackie Liua197f662019-11-08 08:09:12 -07006518 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006519 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06006520
Jens Axboe9e645e112019-05-10 16:07:28 -06006521 /*
6522 * If we already have a head request, queue this one for async
6523 * submittal once the head completes. If we don't have a head but
6524 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
6525 * submitted sync once the chain is complete. If none of those
6526 * conditions are true (normal request), then just queue it.
6527 */
Pavel Begunkov863e0562020-10-27 23:25:35 +00006528 if (link->head) {
6529 struct io_kiocb *head = link->head;
Jens Axboe9e645e112019-05-10 16:07:28 -06006530
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03006531 /*
6532 * Taking sequential execution of a link, draining both sides
6533 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
6534 * requests in the link. So, it drains the head and the
6535 * next after the link request. The last one is done via
6536 * drain_next flag to persist the effect across calls.
6537 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006538 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006539 head->flags |= REQ_F_IO_DRAIN;
6540 ctx->drain_next = 1;
6541 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07006542 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006543 if (unlikely(ret)) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006544 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03006545 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006546 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07006547 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03006548 trace_io_uring_link(ctx, req, head);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006549 link->last->link = req;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006550 link->last = req;
Jens Axboe9e645e112019-05-10 16:07:28 -06006551
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006552 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006553 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Jens Axboef13fad72020-06-22 09:34:30 -06006554 io_queue_link_head(head, cs);
Pavel Begunkov863e0562020-10-27 23:25:35 +00006555 link->head = NULL;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006556 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006557 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03006558 if (unlikely(ctx->drain_next)) {
6559 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006560 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03006561 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006562 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006563 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006564 if (unlikely(ret))
Pavel Begunkov711be032020-01-17 03:57:59 +03006565 req->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006566 link->head = req;
6567 link->last = req;
Pavel Begunkov711be032020-01-17 03:57:59 +03006568 } else {
Jens Axboef13fad72020-06-22 09:34:30 -06006569 io_queue_sqe(req, sqe, cs);
Pavel Begunkov711be032020-01-17 03:57:59 +03006570 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006571 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03006572
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006573 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06006574}
6575
Jens Axboe9a56a232019-01-09 09:06:50 -07006576/*
6577 * Batched submission is done, ensure local IO is flushed out.
6578 */
6579static void io_submit_state_end(struct io_submit_state *state)
6580{
Jens Axboef13fad72020-06-22 09:34:30 -06006581 if (!list_empty(&state->comp.list))
6582 io_submit_flush_completions(&state->comp);
Jens Axboe27926b62020-10-28 09:33:23 -06006583 if (state->plug_started)
6584 blk_finish_plug(&state->plug);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03006585 io_state_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07006586 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03006587 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07006588}
6589
6590/*
6591 * Start submission side cache.
6592 */
6593static void io_submit_state_start(struct io_submit_state *state,
Jens Axboe013538b2020-06-22 09:29:15 -06006594 struct io_ring_ctx *ctx, unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07006595{
Jens Axboe27926b62020-10-28 09:33:23 -06006596 state->plug_started = false;
Jens Axboe013538b2020-06-22 09:29:15 -06006597 state->comp.nr = 0;
6598 INIT_LIST_HEAD(&state->comp.list);
6599 state->comp.ctx = ctx;
Jens Axboe2579f912019-01-09 09:10:43 -07006600 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07006601 state->file = NULL;
6602 state->ios_left = max_ios;
6603}
6604
Jens Axboe2b188cc2019-01-07 10:46:33 -07006605static void io_commit_sqring(struct io_ring_ctx *ctx)
6606{
Hristo Venev75b28af2019-08-26 17:23:46 +00006607 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006608
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03006609 /*
6610 * Ensure any loads from the SQEs are done at this point,
6611 * since once we write the new head, the application could
6612 * write new data to them.
6613 */
6614 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006615}
6616
6617/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07006618 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07006619 * that is mapped by userspace. This means that care needs to be taken to
6620 * ensure that reads are stable, as we cannot rely on userspace always
6621 * being a good citizen. If members of the sqe are validated and then later
6622 * used, it's important that those reads are done through READ_ONCE() to
6623 * prevent a re-load down the line.
6624 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03006625static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006626{
Hristo Venev75b28af2019-08-26 17:23:46 +00006627 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006628 unsigned head;
6629
6630 /*
6631 * The cached sq head (or cq tail) serves two purposes:
6632 *
6633 * 1) allows us to batch the cost of updating the user visible
6634 * head updates.
6635 * 2) allows the kernel side to track the head on its own, even
6636 * though the application is the one updating it.
6637 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006638 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006639 if (likely(head < ctx->sq_entries))
6640 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07006641
6642 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06006643 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006644 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006645 return NULL;
6646}
6647
6648static inline void io_consume_sqe(struct io_ring_ctx *ctx)
6649{
6650 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006651}
6652
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006653/*
6654 * Check SQE restrictions (opcode and flags).
6655 *
6656 * Returns 'true' if SQE is allowed, 'false' otherwise.
6657 */
6658static inline bool io_check_restriction(struct io_ring_ctx *ctx,
6659 struct io_kiocb *req,
6660 unsigned int sqe_flags)
6661{
6662 if (!ctx->restricted)
6663 return true;
6664
6665 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
6666 return false;
6667
6668 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
6669 ctx->restrictions.sqe_flags_required)
6670 return false;
6671
6672 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
6673 ctx->restrictions.sqe_flags_required))
6674 return false;
6675
6676 return true;
6677}
6678
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006679#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
6680 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
6681 IOSQE_BUFFER_SELECT)
6682
6683static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
6684 const struct io_uring_sqe *sqe,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006685 struct io_submit_state *state)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006686{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006687 unsigned int sqe_flags;
Pavel Begunkov71b547c2020-10-10 18:34:09 +01006688 int id, ret;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006689
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006690 req->opcode = READ_ONCE(sqe->opcode);
6691 req->user_data = READ_ONCE(sqe->user_data);
Jens Axboee8c2bc12020-08-15 18:44:09 -07006692 req->async_data = NULL;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006693 req->file = NULL;
6694 req->ctx = ctx;
6695 req->flags = 0;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006696 req->link = NULL;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006697 /* one is dropped after submission, the other at completion */
6698 refcount_set(&req->refs, 2);
Pavel Begunkov4dd28242020-06-15 10:33:13 +03006699 req->task = current;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006700 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006701
6702 if (unlikely(req->opcode >= IORING_OP_LAST))
6703 return -EINVAL;
6704
Jens Axboe28cea78a2020-09-14 10:51:17 -06006705 if (unlikely(io_sq_thread_acquire_mm_files(ctx, req)))
Jens Axboe9d8426a2020-06-16 18:42:49 -06006706 return -EFAULT;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006707
6708 sqe_flags = READ_ONCE(sqe->flags);
6709 /* enforce forwards compatibility on users */
6710 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
6711 return -EINVAL;
6712
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006713 if (unlikely(!io_check_restriction(ctx, req, sqe_flags)))
6714 return -EACCES;
6715
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006716 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
6717 !io_op_defs[req->opcode].buffer_select)
6718 return -EOPNOTSUPP;
6719
6720 id = READ_ONCE(sqe->personality);
6721 if (id) {
Jens Axboe1e6fa522020-10-15 08:46:24 -06006722 struct io_identity *iod;
6723
Jens Axboe1e6fa522020-10-15 08:46:24 -06006724 iod = idr_find(&ctx->personality_idr, id);
6725 if (unlikely(!iod))
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006726 return -EINVAL;
Jens Axboe1e6fa522020-10-15 08:46:24 -06006727 refcount_inc(&iod->count);
Pavel Begunkovec99ca62020-10-18 10:17:38 +01006728
6729 __io_req_init_async(req);
Jens Axboe1e6fa522020-10-15 08:46:24 -06006730 get_cred(iod->creds);
6731 req->work.identity = iod;
Jens Axboedfead8a2020-10-14 10:12:37 -06006732 req->work.flags |= IO_WQ_WORK_CREDS;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006733 }
6734
6735 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkovc11368a52020-05-17 14:13:42 +03006736 req->flags |= sqe_flags;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006737
Jens Axboe27926b62020-10-28 09:33:23 -06006738 /*
6739 * Plug now if we have more than 1 IO left after this, and the target
6740 * is potentially a read/write to block based storage.
6741 */
6742 if (!state->plug_started && state->ios_left > 1 &&
6743 io_op_defs[req->opcode].plug) {
6744 blk_start_plug(&state->plug);
6745 state->plug_started = true;
6746 }
6747
Jens Axboe63ff8222020-05-07 14:56:15 -06006748 if (!io_op_defs[req->opcode].needs_file)
6749 return 0;
6750
Pavel Begunkov71b547c2020-10-10 18:34:09 +01006751 ret = io_req_set_file(state, req, READ_ONCE(sqe->fd));
6752 state->ios_left--;
6753 return ret;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006754}
6755
Jens Axboe0f212202020-09-13 13:09:39 -06006756static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006757{
Jens Axboeac8691c2020-06-01 08:30:41 -06006758 struct io_submit_state state;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006759 struct io_submit_link link;
Jens Axboe9e645e112019-05-10 16:07:28 -06006760 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006761
Jens Axboec4a2ed72019-11-21 21:01:26 -07006762 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07006763 if (test_bit(0, &ctx->sq_check_overflow)) {
6764 if (!list_empty(&ctx->cq_overflow_list) &&
Jens Axboee6c8aa92020-09-28 13:10:13 -06006765 !io_cqring_overflow_flush(ctx, false, NULL, NULL))
Jens Axboead3eb2c2019-12-18 17:12:20 -07006766 return -EBUSY;
6767 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006768
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006769 /* make sure SQ entry isn't read before tail */
6770 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03006771
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03006772 if (!percpu_ref_tryget_many(&ctx->refs, nr))
6773 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006774
Jens Axboed8a6df12020-10-15 16:24:45 -06006775 percpu_counter_add(&current->io_uring->inflight, nr);
Jens Axboefaf7b512020-10-07 12:48:53 -06006776 refcount_add(nr, &current->usage);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006777
Jens Axboe6c271ce2019-01-10 11:22:30 -07006778 io_submit_state_start(&state, ctx, nr);
Pavel Begunkov863e0562020-10-27 23:25:35 +00006779 link.head = NULL;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03006780
Jens Axboe6c271ce2019-01-10 11:22:30 -07006781 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07006782 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03006783 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006784 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006785
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03006786 sqe = io_get_sqe(ctx);
6787 if (unlikely(!sqe)) {
6788 io_consume_sqe(ctx);
6789 break;
6790 }
Jens Axboeac8691c2020-06-01 08:30:41 -06006791 req = io_alloc_req(ctx, &state);
Pavel Begunkov196be952019-11-07 01:41:06 +03006792 if (unlikely(!req)) {
6793 if (!submitted)
6794 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006795 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06006796 }
Pavel Begunkov709b3022020-04-08 08:58:43 +03006797 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07006798 /* will complete beyond this point, count as submitted */
6799 submitted++;
6800
Pavel Begunkov692d8362020-10-10 18:34:13 +01006801 err = io_init_req(ctx, req, sqe, &state);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006802 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006803fail_req:
Jens Axboee1e16092020-06-22 09:17:17 -06006804 io_put_req(req);
6805 io_req_complete(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07006806 break;
6807 }
6808
Jens Axboe354420f2020-01-08 18:55:15 -07006809 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006810 true, io_async_submit(ctx));
Jens Axboef13fad72020-06-22 09:34:30 -06006811 err = io_submit_sqe(req, sqe, &link, &state.comp);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006812 if (err)
6813 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006814 }
6815
Pavel Begunkov9466f432020-01-25 22:34:01 +03006816 if (unlikely(submitted != nr)) {
6817 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
Jens Axboed8a6df12020-10-15 16:24:45 -06006818 struct io_uring_task *tctx = current->io_uring;
6819 int unused = nr - ref_used;
Pavel Begunkov9466f432020-01-25 22:34:01 +03006820
Jens Axboed8a6df12020-10-15 16:24:45 -06006821 percpu_ref_put_many(&ctx->refs, unused);
6822 percpu_counter_sub(&tctx->inflight, unused);
6823 put_task_struct_many(current, unused);
Pavel Begunkov9466f432020-01-25 22:34:01 +03006824 }
Pavel Begunkov863e0562020-10-27 23:25:35 +00006825 if (link.head)
6826 io_queue_link_head(link.head, &state.comp);
Jens Axboeac8691c2020-06-01 08:30:41 -06006827 io_submit_state_end(&state);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006828
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006829 /* Commit SQ ring head once we've consumed and submitted all SQEs */
6830 io_commit_sqring(ctx);
6831
Jens Axboe6c271ce2019-01-10 11:22:30 -07006832 return submitted;
6833}
6834
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006835static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
6836{
6837 /* Tell userspace we may need a wakeup call */
6838 spin_lock_irq(&ctx->completion_lock);
6839 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
6840 spin_unlock_irq(&ctx->completion_lock);
6841}
6842
6843static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
6844{
6845 spin_lock_irq(&ctx->completion_lock);
6846 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6847 spin_unlock_irq(&ctx->completion_lock);
6848}
6849
Xiaoguang Wang08369242020-11-03 14:15:59 +08006850static int __io_sq_thread(struct io_ring_ctx *ctx, bool cap_entries)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006851{
Jens Axboec8d1ba52020-09-14 11:07:26 -06006852 unsigned int to_submit;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006853 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006854
Jens Axboec8d1ba52020-09-14 11:07:26 -06006855 to_submit = io_sqring_entries(ctx);
Jens Axboee95eee22020-09-08 09:11:32 -06006856 /* if we're handling multiple rings, cap submit size for fairness */
6857 if (cap_entries && to_submit > 8)
6858 to_submit = 8;
6859
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08006860 if (!list_empty(&ctx->iopoll_list) || to_submit) {
6861 unsigned nr_events = 0;
6862
Xiaoguang Wang08369242020-11-03 14:15:59 +08006863 mutex_lock(&ctx->uring_lock);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08006864 if (!list_empty(&ctx->iopoll_list))
6865 io_do_iopoll(ctx, &nr_events, 0);
6866
6867 if (to_submit && likely(!percpu_ref_is_dying(&ctx->refs)))
Xiaoguang Wang08369242020-11-03 14:15:59 +08006868 ret = io_submit_sqes(ctx, to_submit);
6869 mutex_unlock(&ctx->uring_lock);
6870 }
Jens Axboe90554202020-09-03 12:12:41 -06006871
6872 if (!io_sqring_full(ctx) && wq_has_sleeper(&ctx->sqo_sq_wait))
6873 wake_up(&ctx->sqo_sq_wait);
6874
Xiaoguang Wang08369242020-11-03 14:15:59 +08006875 return ret;
6876}
6877
6878static void io_sqd_update_thread_idle(struct io_sq_data *sqd)
6879{
6880 struct io_ring_ctx *ctx;
6881 unsigned sq_thread_idle = 0;
6882
6883 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
6884 if (sq_thread_idle < ctx->sq_thread_idle)
6885 sq_thread_idle = ctx->sq_thread_idle;
6886 }
6887
6888 sqd->sq_thread_idle = sq_thread_idle;
Jens Axboec8d1ba52020-09-14 11:07:26 -06006889}
6890
Jens Axboe69fb2132020-09-14 11:16:23 -06006891static void io_sqd_init_new(struct io_sq_data *sqd)
6892{
6893 struct io_ring_ctx *ctx;
6894
6895 while (!list_empty(&sqd->ctx_new_list)) {
6896 ctx = list_first_entry(&sqd->ctx_new_list, struct io_ring_ctx, sqd_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06006897 list_move_tail(&ctx->sqd_list, &sqd->ctx_list);
6898 complete(&ctx->sq_thread_comp);
6899 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08006900
6901 io_sqd_update_thread_idle(sqd);
Jens Axboe69fb2132020-09-14 11:16:23 -06006902}
6903
Jens Axboe6c271ce2019-01-10 11:22:30 -07006904static int io_sq_thread(void *data)
6905{
Dennis Zhou91d8f512020-09-16 13:41:05 -07006906 struct cgroup_subsys_state *cur_css = NULL;
Jens Axboe28cea78a2020-09-14 10:51:17 -06006907 struct files_struct *old_files = current->files;
6908 struct nsproxy *old_nsproxy = current->nsproxy;
Jens Axboe69fb2132020-09-14 11:16:23 -06006909 const struct cred *old_cred = NULL;
6910 struct io_sq_data *sqd = data;
6911 struct io_ring_ctx *ctx;
Xiaoguang Wanga0d92052020-11-12 14:55:59 +08006912 unsigned long timeout = 0;
Xiaoguang Wang08369242020-11-03 14:15:59 +08006913 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006914
Jens Axboe28cea78a2020-09-14 10:51:17 -06006915 task_lock(current);
6916 current->files = NULL;
6917 current->nsproxy = NULL;
6918 task_unlock(current);
6919
Jens Axboe69fb2132020-09-14 11:16:23 -06006920 while (!kthread_should_stop()) {
Xiaoguang Wang08369242020-11-03 14:15:59 +08006921 int ret;
6922 bool cap_entries, sqt_spin, needs_sched;
Jens Axboec1edbf52019-11-10 16:56:04 -07006923
6924 /*
Jens Axboe69fb2132020-09-14 11:16:23 -06006925 * Any changes to the sqd lists are synchronized through the
6926 * kthread parking. This synchronizes the thread vs users,
6927 * the users are synchronized on the sqd->ctx_lock.
Jens Axboec1edbf52019-11-10 16:56:04 -07006928 */
Jens Axboe69fb2132020-09-14 11:16:23 -06006929 if (kthread_should_park())
6930 kthread_parkme();
6931
Xiaoguang Wang08369242020-11-03 14:15:59 +08006932 if (unlikely(!list_empty(&sqd->ctx_new_list))) {
Jens Axboe69fb2132020-09-14 11:16:23 -06006933 io_sqd_init_new(sqd);
Xiaoguang Wang08369242020-11-03 14:15:59 +08006934 timeout = jiffies + sqd->sq_thread_idle;
6935 }
Jens Axboe69fb2132020-09-14 11:16:23 -06006936
Xiaoguang Wang08369242020-11-03 14:15:59 +08006937 sqt_spin = false;
Jens Axboee95eee22020-09-08 09:11:32 -06006938 cap_entries = !list_is_singular(&sqd->ctx_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06006939 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
6940 if (current->cred != ctx->creds) {
6941 if (old_cred)
6942 revert_creds(old_cred);
6943 old_cred = override_creds(ctx->creds);
6944 }
Dennis Zhou91d8f512020-09-16 13:41:05 -07006945 io_sq_thread_associate_blkcg(ctx, &cur_css);
Jens Axboe4ea33a92020-10-15 13:46:44 -06006946#ifdef CONFIG_AUDIT
6947 current->loginuid = ctx->loginuid;
6948 current->sessionid = ctx->sessionid;
6949#endif
Jens Axboe69fb2132020-09-14 11:16:23 -06006950
Xiaoguang Wang08369242020-11-03 14:15:59 +08006951 ret = __io_sq_thread(ctx, cap_entries);
6952 if (!sqt_spin && (ret > 0 || !list_empty(&ctx->iopoll_list)))
6953 sqt_spin = true;
Jens Axboe69fb2132020-09-14 11:16:23 -06006954
Jens Axboe28cea78a2020-09-14 10:51:17 -06006955 io_sq_thread_drop_mm_files();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006956 }
6957
Xiaoguang Wang08369242020-11-03 14:15:59 +08006958 if (sqt_spin || !time_after(jiffies, timeout)) {
Jens Axboec8d1ba52020-09-14 11:07:26 -06006959 io_run_task_work();
6960 cond_resched();
Xiaoguang Wang08369242020-11-03 14:15:59 +08006961 if (sqt_spin)
6962 timeout = jiffies + sqd->sq_thread_idle;
6963 continue;
6964 }
6965
6966 if (kthread_should_park())
6967 continue;
6968
6969 needs_sched = true;
6970 prepare_to_wait(&sqd->wait, &wait, TASK_INTERRUPTIBLE);
6971 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
6972 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6973 !list_empty_careful(&ctx->iopoll_list)) {
6974 needs_sched = false;
6975 break;
6976 }
6977 if (io_sqring_entries(ctx)) {
6978 needs_sched = false;
6979 break;
6980 }
6981 }
6982
6983 if (needs_sched) {
Jens Axboe69fb2132020-09-14 11:16:23 -06006984 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
6985 io_ring_set_wakeup_flag(ctx);
Xiaoguang Wang08369242020-11-03 14:15:59 +08006986
Jens Axboe69fb2132020-09-14 11:16:23 -06006987 schedule();
Jens Axboe69fb2132020-09-14 11:16:23 -06006988 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
6989 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006990 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08006991
6992 finish_wait(&sqd->wait, &wait);
6993 timeout = jiffies + sqd->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006994 }
6995
Jens Axboe4c6e2772020-07-01 11:29:10 -06006996 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07006997
Dennis Zhou91d8f512020-09-16 13:41:05 -07006998 if (cur_css)
6999 io_sq_thread_unassociate_blkcg();
Jens Axboe69fb2132020-09-14 11:16:23 -06007000 if (old_cred)
7001 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06007002
Jens Axboe28cea78a2020-09-14 10:51:17 -06007003 task_lock(current);
7004 current->files = old_files;
7005 current->nsproxy = old_nsproxy;
7006 task_unlock(current);
7007
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02007008 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06007009
Jens Axboe6c271ce2019-01-10 11:22:30 -07007010 return 0;
7011}
7012
Jens Axboebda52162019-09-24 13:47:15 -06007013struct io_wait_queue {
7014 struct wait_queue_entry wq;
7015 struct io_ring_ctx *ctx;
7016 unsigned to_wait;
7017 unsigned nr_timeouts;
7018};
7019
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007020static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06007021{
7022 struct io_ring_ctx *ctx = iowq->ctx;
7023
7024 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08007025 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06007026 * started waiting. For timeouts, we always want to return to userspace,
7027 * regardless of event count.
7028 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007029 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06007030 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
7031}
7032
7033static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7034 int wake_flags, void *key)
7035{
7036 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7037 wq);
7038
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007039 /* use noflush == true, as we can't safely rely on locking context */
7040 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06007041 return -1;
7042
7043 return autoremove_wake_function(curr, mode, wake_flags, key);
7044}
7045
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007046static int io_run_task_work_sig(void)
7047{
7048 if (io_run_task_work())
7049 return 1;
7050 if (!signal_pending(current))
7051 return 0;
7052 if (current->jobctl & JOBCTL_TASK_WORK) {
7053 spin_lock_irq(&current->sighand->siglock);
7054 current->jobctl &= ~JOBCTL_TASK_WORK;
7055 recalc_sigpending();
7056 spin_unlock_irq(&current->sighand->siglock);
7057 return 1;
7058 }
7059 return -EINTR;
7060}
7061
Jens Axboe2b188cc2019-01-07 10:46:33 -07007062/*
7063 * Wait until events become available, if we don't already have some. The
7064 * application must reap them itself, as they reside on the shared cq ring.
7065 */
7066static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
Hao Xuc73ebb62020-11-03 10:54:37 +08007067 const sigset_t __user *sig, size_t sigsz,
7068 struct __kernel_timespec __user *uts)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007069{
Jens Axboebda52162019-09-24 13:47:15 -06007070 struct io_wait_queue iowq = {
7071 .wq = {
7072 .private = current,
7073 .func = io_wake_function,
7074 .entry = LIST_HEAD_INIT(iowq.wq.entry),
7075 },
7076 .ctx = ctx,
7077 .to_wait = min_events,
7078 };
Hristo Venev75b28af2019-08-26 17:23:46 +00007079 struct io_rings *rings = ctx->rings;
Hao Xuc73ebb62020-11-03 10:54:37 +08007080 struct timespec64 ts;
7081 signed long timeout = 0;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08007082 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007083
Jens Axboeb41e9852020-02-17 09:52:41 -07007084 do {
7085 if (io_cqring_events(ctx, false) >= min_events)
7086 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06007087 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07007088 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07007089 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007090
7091 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007092#ifdef CONFIG_COMPAT
7093 if (in_compat_syscall())
7094 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07007095 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007096 else
7097#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07007098 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007099
Jens Axboe2b188cc2019-01-07 10:46:33 -07007100 if (ret)
7101 return ret;
7102 }
7103
Hao Xuc73ebb62020-11-03 10:54:37 +08007104 if (uts) {
7105 if (get_timespec64(&ts, uts))
7106 return -EFAULT;
7107 timeout = timespec64_to_jiffies(&ts);
7108 }
7109
Jens Axboebda52162019-09-24 13:47:15 -06007110 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007111 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06007112 do {
7113 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
7114 TASK_INTERRUPTIBLE);
Jens Axboece593a62020-06-30 12:39:05 -06007115 /* make sure we run task_work before checking for signals */
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007116 ret = io_run_task_work_sig();
7117 if (ret > 0)
Jens Axboe4c6e2772020-07-01 11:29:10 -06007118 continue;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007119 else if (ret < 0)
Jens Axboece593a62020-06-30 12:39:05 -06007120 break;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007121 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06007122 break;
Hao Xuc73ebb62020-11-03 10:54:37 +08007123 if (uts) {
7124 timeout = schedule_timeout(timeout);
7125 if (timeout == 0) {
7126 ret = -ETIME;
7127 break;
7128 }
7129 } else {
7130 schedule();
7131 }
Jens Axboebda52162019-09-24 13:47:15 -06007132 } while (1);
7133 finish_wait(&ctx->wait, &iowq.wq);
7134
Jens Axboeb7db41c2020-07-04 08:55:50 -06007135 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007136
Hristo Venev75b28af2019-08-26 17:23:46 +00007137 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007138}
7139
Jens Axboe6b063142019-01-10 22:13:58 -07007140static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
7141{
7142#if defined(CONFIG_UNIX)
7143 if (ctx->ring_sock) {
7144 struct sock *sock = ctx->ring_sock->sk;
7145 struct sk_buff *skb;
7146
7147 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7148 kfree_skb(skb);
7149 }
7150#else
7151 int i;
7152
Jens Axboe65e19f52019-10-26 07:20:21 -06007153 for (i = 0; i < ctx->nr_user_files; i++) {
7154 struct file *file;
7155
7156 file = io_file_from_index(ctx, i);
7157 if (file)
7158 fput(file);
7159 }
Jens Axboe6b063142019-01-10 22:13:58 -07007160#endif
7161}
7162
Jens Axboe05f3fb32019-12-09 11:22:50 -07007163static void io_file_ref_kill(struct percpu_ref *ref)
7164{
7165 struct fixed_file_data *data;
7166
7167 data = container_of(ref, struct fixed_file_data, refs);
7168 complete(&data->done);
7169}
7170
Jens Axboe6b063142019-01-10 22:13:58 -07007171static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7172{
Jens Axboe05f3fb32019-12-09 11:22:50 -07007173 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007174 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06007175 unsigned nr_tables, i;
7176
Jens Axboe05f3fb32019-12-09 11:22:50 -07007177 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07007178 return -ENXIO;
7179
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007180 spin_lock(&data->lock);
Pavel Begunkov1e5d7702020-11-18 14:56:25 +00007181 ref_node = data->node;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007182 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007183 if (ref_node)
7184 percpu_ref_kill(&ref_node->refs);
7185
7186 percpu_ref_kill(&data->refs);
7187
7188 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06007189 flush_delayed_work(&ctx->file_put_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07007190 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007191
Jens Axboe6b063142019-01-10 22:13:58 -07007192 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06007193 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
7194 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007195 kfree(data->table[i].files);
7196 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007197 percpu_ref_exit(&data->refs);
7198 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007199 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07007200 ctx->nr_user_files = 0;
7201 return 0;
7202}
7203
Jens Axboe534ca6d2020-09-02 13:52:19 -06007204static void io_put_sq_data(struct io_sq_data *sqd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007205{
Jens Axboe534ca6d2020-09-02 13:52:19 -06007206 if (refcount_dec_and_test(&sqd->refs)) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02007207 /*
7208 * The park is a bit of a work-around, without it we get
7209 * warning spews on shutdown with SQPOLL set and affinity
7210 * set to a single CPU.
7211 */
Jens Axboe534ca6d2020-09-02 13:52:19 -06007212 if (sqd->thread) {
7213 kthread_park(sqd->thread);
7214 kthread_stop(sqd->thread);
7215 }
7216
7217 kfree(sqd);
7218 }
7219}
7220
Jens Axboeaa061652020-09-02 14:50:27 -06007221static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7222{
7223 struct io_ring_ctx *ctx_attach;
7224 struct io_sq_data *sqd;
7225 struct fd f;
7226
7227 f = fdget(p->wq_fd);
7228 if (!f.file)
7229 return ERR_PTR(-ENXIO);
7230 if (f.file->f_op != &io_uring_fops) {
7231 fdput(f);
7232 return ERR_PTR(-EINVAL);
7233 }
7234
7235 ctx_attach = f.file->private_data;
7236 sqd = ctx_attach->sq_data;
7237 if (!sqd) {
7238 fdput(f);
7239 return ERR_PTR(-EINVAL);
7240 }
7241
7242 refcount_inc(&sqd->refs);
7243 fdput(f);
7244 return sqd;
7245}
7246
Jens Axboe534ca6d2020-09-02 13:52:19 -06007247static struct io_sq_data *io_get_sq_data(struct io_uring_params *p)
7248{
7249 struct io_sq_data *sqd;
7250
Jens Axboeaa061652020-09-02 14:50:27 -06007251 if (p->flags & IORING_SETUP_ATTACH_WQ)
7252 return io_attach_sq_data(p);
7253
Jens Axboe534ca6d2020-09-02 13:52:19 -06007254 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7255 if (!sqd)
7256 return ERR_PTR(-ENOMEM);
7257
7258 refcount_set(&sqd->refs, 1);
Jens Axboe69fb2132020-09-14 11:16:23 -06007259 INIT_LIST_HEAD(&sqd->ctx_list);
7260 INIT_LIST_HEAD(&sqd->ctx_new_list);
7261 mutex_init(&sqd->ctx_lock);
7262 mutex_init(&sqd->lock);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007263 init_waitqueue_head(&sqd->wait);
7264 return sqd;
7265}
7266
Jens Axboe69fb2132020-09-14 11:16:23 -06007267static void io_sq_thread_unpark(struct io_sq_data *sqd)
7268 __releases(&sqd->lock)
7269{
7270 if (!sqd->thread)
7271 return;
7272 kthread_unpark(sqd->thread);
7273 mutex_unlock(&sqd->lock);
7274}
7275
7276static void io_sq_thread_park(struct io_sq_data *sqd)
7277 __acquires(&sqd->lock)
7278{
7279 if (!sqd->thread)
7280 return;
7281 mutex_lock(&sqd->lock);
7282 kthread_park(sqd->thread);
7283}
7284
Jens Axboe534ca6d2020-09-02 13:52:19 -06007285static void io_sq_thread_stop(struct io_ring_ctx *ctx)
7286{
7287 struct io_sq_data *sqd = ctx->sq_data;
7288
7289 if (sqd) {
7290 if (sqd->thread) {
7291 /*
7292 * We may arrive here from the error branch in
7293 * io_sq_offload_create() where the kthread is created
7294 * without being waked up, thus wake it up now to make
7295 * sure the wait will complete.
7296 */
7297 wake_up_process(sqd->thread);
7298 wait_for_completion(&ctx->sq_thread_comp);
Jens Axboe69fb2132020-09-14 11:16:23 -06007299
7300 io_sq_thread_park(sqd);
7301 }
7302
7303 mutex_lock(&sqd->ctx_lock);
7304 list_del(&ctx->sqd_list);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007305 io_sqd_update_thread_idle(sqd);
Jens Axboe69fb2132020-09-14 11:16:23 -06007306 mutex_unlock(&sqd->ctx_lock);
7307
Xiaoguang Wang08369242020-11-03 14:15:59 +08007308 if (sqd->thread)
Jens Axboe69fb2132020-09-14 11:16:23 -06007309 io_sq_thread_unpark(sqd);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007310
7311 io_put_sq_data(sqd);
7312 ctx->sq_data = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007313 }
7314}
7315
Jens Axboe6b063142019-01-10 22:13:58 -07007316static void io_finish_async(struct io_ring_ctx *ctx)
7317{
Jens Axboe6c271ce2019-01-10 11:22:30 -07007318 io_sq_thread_stop(ctx);
7319
Jens Axboe561fb042019-10-24 07:25:42 -06007320 if (ctx->io_wq) {
7321 io_wq_destroy(ctx->io_wq);
7322 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07007323 }
7324}
7325
7326#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07007327/*
7328 * Ensure the UNIX gc is aware of our file set, so we are certain that
7329 * the io_uring can be safely unregistered on process exit, even if we have
7330 * loops in the file referencing.
7331 */
7332static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
7333{
7334 struct sock *sk = ctx->ring_sock->sk;
7335 struct scm_fp_list *fpl;
7336 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06007337 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07007338
Jens Axboe6b063142019-01-10 22:13:58 -07007339 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
7340 if (!fpl)
7341 return -ENOMEM;
7342
7343 skb = alloc_skb(0, GFP_KERNEL);
7344 if (!skb) {
7345 kfree(fpl);
7346 return -ENOMEM;
7347 }
7348
7349 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07007350
Jens Axboe08a45172019-10-03 08:11:03 -06007351 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07007352 fpl->user = get_uid(ctx->user);
7353 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007354 struct file *file = io_file_from_index(ctx, i + offset);
7355
7356 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06007357 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06007358 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06007359 unix_inflight(fpl->user, fpl->fp[nr_files]);
7360 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07007361 }
7362
Jens Axboe08a45172019-10-03 08:11:03 -06007363 if (nr_files) {
7364 fpl->max = SCM_MAX_FD;
7365 fpl->count = nr_files;
7366 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007367 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06007368 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
7369 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07007370
Jens Axboe08a45172019-10-03 08:11:03 -06007371 for (i = 0; i < nr_files; i++)
7372 fput(fpl->fp[i]);
7373 } else {
7374 kfree_skb(skb);
7375 kfree(fpl);
7376 }
Jens Axboe6b063142019-01-10 22:13:58 -07007377
7378 return 0;
7379}
7380
7381/*
7382 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
7383 * causes regular reference counting to break down. We rely on the UNIX
7384 * garbage collection to take care of this problem for us.
7385 */
7386static int io_sqe_files_scm(struct io_ring_ctx *ctx)
7387{
7388 unsigned left, total;
7389 int ret = 0;
7390
7391 total = 0;
7392 left = ctx->nr_user_files;
7393 while (left) {
7394 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07007395
7396 ret = __io_sqe_files_scm(ctx, this_files, total);
7397 if (ret)
7398 break;
7399 left -= this_files;
7400 total += this_files;
7401 }
7402
7403 if (!ret)
7404 return 0;
7405
7406 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007407 struct file *file = io_file_from_index(ctx, total);
7408
7409 if (file)
7410 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07007411 total++;
7412 }
7413
7414 return ret;
7415}
7416#else
7417static int io_sqe_files_scm(struct io_ring_ctx *ctx)
7418{
7419 return 0;
7420}
7421#endif
7422
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007423static int io_sqe_alloc_file_tables(struct fixed_file_data *file_data,
7424 unsigned nr_tables, unsigned nr_files)
Jens Axboe65e19f52019-10-26 07:20:21 -06007425{
7426 int i;
7427
7428 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007429 struct fixed_file_table *table = &file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007430 unsigned this_files;
7431
7432 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
7433 table->files = kcalloc(this_files, sizeof(struct file *),
7434 GFP_KERNEL);
7435 if (!table->files)
7436 break;
7437 nr_files -= this_files;
7438 }
7439
7440 if (i == nr_tables)
7441 return 0;
7442
7443 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007444 struct fixed_file_table *table = &file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007445 kfree(table->files);
7446 }
7447 return 1;
7448}
7449
Jens Axboe05f3fb32019-12-09 11:22:50 -07007450static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06007451{
7452#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06007453 struct sock *sock = ctx->ring_sock->sk;
7454 struct sk_buff_head list, *head = &sock->sk_receive_queue;
7455 struct sk_buff *skb;
7456 int i;
7457
7458 __skb_queue_head_init(&list);
7459
7460 /*
7461 * Find the skb that holds this file in its SCM_RIGHTS. When found,
7462 * remove this entry and rearrange the file array.
7463 */
7464 skb = skb_dequeue(head);
7465 while (skb) {
7466 struct scm_fp_list *fp;
7467
7468 fp = UNIXCB(skb).fp;
7469 for (i = 0; i < fp->count; i++) {
7470 int left;
7471
7472 if (fp->fp[i] != file)
7473 continue;
7474
7475 unix_notinflight(fp->user, fp->fp[i]);
7476 left = fp->count - 1 - i;
7477 if (left) {
7478 memmove(&fp->fp[i], &fp->fp[i + 1],
7479 left * sizeof(struct file *));
7480 }
7481 fp->count--;
7482 if (!fp->count) {
7483 kfree_skb(skb);
7484 skb = NULL;
7485 } else {
7486 __skb_queue_tail(&list, skb);
7487 }
7488 fput(file);
7489 file = NULL;
7490 break;
7491 }
7492
7493 if (!file)
7494 break;
7495
7496 __skb_queue_tail(&list, skb);
7497
7498 skb = skb_dequeue(head);
7499 }
7500
7501 if (skb_peek(&list)) {
7502 spin_lock_irq(&head->lock);
7503 while ((skb = __skb_dequeue(&list)) != NULL)
7504 __skb_queue_tail(head, skb);
7505 spin_unlock_irq(&head->lock);
7506 }
7507#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07007508 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007509#endif
7510}
7511
Jens Axboe05f3fb32019-12-09 11:22:50 -07007512struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08007513 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007514 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007515};
7516
Jens Axboe4a38aed22020-05-14 17:21:15 -06007517static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007518{
Jens Axboe4a38aed22020-05-14 17:21:15 -06007519 struct fixed_file_data *file_data = ref_node->file_data;
7520 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007521 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007522
7523 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007524 list_del(&pfile->list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007525 io_ring_file_put(ctx, pfile->file);
7526 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007527 }
7528
Xiaoguang Wang05589552020-03-31 14:05:18 +08007529 percpu_ref_exit(&ref_node->refs);
7530 kfree(ref_node);
7531 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007532}
7533
Jens Axboe4a38aed22020-05-14 17:21:15 -06007534static void io_file_put_work(struct work_struct *work)
7535{
7536 struct io_ring_ctx *ctx;
7537 struct llist_node *node;
7538
7539 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
7540 node = llist_del_all(&ctx->file_put_llist);
7541
7542 while (node) {
7543 struct fixed_file_ref_node *ref_node;
7544 struct llist_node *next = node->next;
7545
7546 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
7547 __io_file_put_work(ref_node);
7548 node = next;
7549 }
7550}
7551
Jens Axboe05f3fb32019-12-09 11:22:50 -07007552static void io_file_data_ref_zero(struct percpu_ref *ref)
7553{
Xiaoguang Wang05589552020-03-31 14:05:18 +08007554 struct fixed_file_ref_node *ref_node;
Pavel Begunkove2978222020-11-18 14:56:26 +00007555 struct fixed_file_data *data;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007556 struct io_ring_ctx *ctx;
Pavel Begunkove2978222020-11-18 14:56:26 +00007557 bool first_add = false;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007558 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007559
Xiaoguang Wang05589552020-03-31 14:05:18 +08007560 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Pavel Begunkove2978222020-11-18 14:56:26 +00007561 data = ref_node->file_data;
7562 ctx = data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007563
Pavel Begunkove2978222020-11-18 14:56:26 +00007564 spin_lock(&data->lock);
7565 ref_node->done = true;
7566
7567 while (!list_empty(&data->ref_list)) {
7568 ref_node = list_first_entry(&data->ref_list,
7569 struct fixed_file_ref_node, node);
7570 /* recycle ref nodes in order */
7571 if (!ref_node->done)
7572 break;
7573 list_del(&ref_node->node);
7574 first_add |= llist_add(&ref_node->llist, &ctx->file_put_llist);
7575 }
7576 spin_unlock(&data->lock);
7577
7578 if (percpu_ref_is_dying(&data->refs))
Jens Axboe4a38aed22020-05-14 17:21:15 -06007579 delay = 0;
7580
Jens Axboe4a38aed22020-05-14 17:21:15 -06007581 if (!delay)
7582 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
7583 else if (first_add)
7584 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007585}
7586
7587static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
7588 struct io_ring_ctx *ctx)
7589{
7590 struct fixed_file_ref_node *ref_node;
7591
7592 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7593 if (!ref_node)
7594 return ERR_PTR(-ENOMEM);
7595
7596 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
7597 0, GFP_KERNEL)) {
7598 kfree(ref_node);
7599 return ERR_PTR(-ENOMEM);
7600 }
7601 INIT_LIST_HEAD(&ref_node->node);
7602 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007603 ref_node->file_data = ctx->file_data;
Pavel Begunkove2978222020-11-18 14:56:26 +00007604 ref_node->done = false;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007605 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007606}
7607
7608static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
7609{
7610 percpu_ref_exit(&ref_node->refs);
7611 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007612}
7613
7614static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
7615 unsigned nr_args)
7616{
7617 __s32 __user *fds = (__s32 __user *) arg;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007618 unsigned nr_tables, i;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007619 struct file *file;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007620 int fd, ret = -ENOMEM;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007621 struct fixed_file_ref_node *ref_node;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007622 struct fixed_file_data *file_data;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007623
7624 if (ctx->file_data)
7625 return -EBUSY;
7626 if (!nr_args)
7627 return -EINVAL;
7628 if (nr_args > IORING_MAX_FIXED_FILES)
7629 return -EMFILE;
7630
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007631 file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
7632 if (!file_data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007633 return -ENOMEM;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007634 file_data->ctx = ctx;
7635 init_completion(&file_data->done);
7636 INIT_LIST_HEAD(&file_data->ref_list);
7637 spin_lock_init(&file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007638
7639 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
Colin Ian King035fbaf2020-10-12 15:03:41 +01007640 file_data->table = kcalloc(nr_tables, sizeof(*file_data->table),
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007641 GFP_KERNEL);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007642 if (!file_data->table)
7643 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007644
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007645 if (percpu_ref_init(&file_data->refs, io_file_ref_kill,
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007646 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
7647 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007648
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007649 if (io_sqe_alloc_file_tables(file_data, nr_tables, nr_args))
7650 goto out_ref;
Jens Axboe55cbc252020-10-14 07:35:57 -06007651 ctx->file_data = file_data;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007652
7653 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
7654 struct fixed_file_table *table;
7655 unsigned index;
7656
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007657 if (copy_from_user(&fd, &fds[i], sizeof(fd))) {
7658 ret = -EFAULT;
7659 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007660 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007661 /* allow sparse sets */
7662 if (fd == -1)
7663 continue;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007664
Jens Axboe05f3fb32019-12-09 11:22:50 -07007665 file = fget(fd);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007666 ret = -EBADF;
7667 if (!file)
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007668 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007669
7670 /*
7671 * Don't allow io_uring instances to be registered. If UNIX
7672 * isn't enabled, then this causes a reference cycle and this
7673 * instance can never get freed. If UNIX is enabled we'll
7674 * handle it just fine, but there's still no point in allowing
7675 * a ring fd as it doesn't support regular read/write anyway.
7676 */
7677 if (file->f_op == &io_uring_fops) {
7678 fput(file);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007679 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007680 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007681 table = &file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7682 index = i & IORING_FILE_TABLE_MASK;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007683 table->files[index] = file;
7684 }
7685
Jens Axboe05f3fb32019-12-09 11:22:50 -07007686 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007687 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007688 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007689 return ret;
7690 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007691
Xiaoguang Wang05589552020-03-31 14:05:18 +08007692 ref_node = alloc_fixed_file_ref_node(ctx);
7693 if (IS_ERR(ref_node)) {
7694 io_sqe_files_unregister(ctx);
7695 return PTR_ERR(ref_node);
7696 }
7697
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007698 file_data->node = ref_node;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007699 spin_lock(&file_data->lock);
Pavel Begunkove2978222020-11-18 14:56:26 +00007700 list_add_tail(&ref_node->node, &file_data->ref_list);
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007701 spin_unlock(&file_data->lock);
7702 percpu_ref_get(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007703 return ret;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007704out_fput:
7705 for (i = 0; i < ctx->nr_user_files; i++) {
7706 file = io_file_from_index(ctx, i);
7707 if (file)
7708 fput(file);
7709 }
7710 for (i = 0; i < nr_tables; i++)
7711 kfree(file_data->table[i].files);
7712 ctx->nr_user_files = 0;
7713out_ref:
7714 percpu_ref_exit(&file_data->refs);
7715out_free:
7716 kfree(file_data->table);
7717 kfree(file_data);
Jens Axboe55cbc252020-10-14 07:35:57 -06007718 ctx->file_data = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007719 return ret;
7720}
7721
Jens Axboec3a31e62019-10-03 13:59:56 -06007722static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
7723 int index)
7724{
7725#if defined(CONFIG_UNIX)
7726 struct sock *sock = ctx->ring_sock->sk;
7727 struct sk_buff_head *head = &sock->sk_receive_queue;
7728 struct sk_buff *skb;
7729
7730 /*
7731 * See if we can merge this file into an existing skb SCM_RIGHTS
7732 * file set. If there's no room, fall back to allocating a new skb
7733 * and filling it in.
7734 */
7735 spin_lock_irq(&head->lock);
7736 skb = skb_peek(head);
7737 if (skb) {
7738 struct scm_fp_list *fpl = UNIXCB(skb).fp;
7739
7740 if (fpl->count < SCM_MAX_FD) {
7741 __skb_unlink(skb, head);
7742 spin_unlock_irq(&head->lock);
7743 fpl->fp[fpl->count] = get_file(file);
7744 unix_inflight(fpl->user, fpl->fp[fpl->count]);
7745 fpl->count++;
7746 spin_lock_irq(&head->lock);
7747 __skb_queue_head(head, skb);
7748 } else {
7749 skb = NULL;
7750 }
7751 }
7752 spin_unlock_irq(&head->lock);
7753
7754 if (skb) {
7755 fput(file);
7756 return 0;
7757 }
7758
7759 return __io_sqe_files_scm(ctx, 1, index);
7760#else
7761 return 0;
7762#endif
7763}
7764
Hillf Dantona5318d32020-03-23 17:47:15 +08007765static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08007766 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007767{
Hillf Dantona5318d32020-03-23 17:47:15 +08007768 struct io_file_put *pfile;
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007769 struct fixed_file_ref_node *ref_node = data->node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007770
Jens Axboe05f3fb32019-12-09 11:22:50 -07007771 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08007772 if (!pfile)
7773 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007774
7775 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007776 list_add(&pfile->list, &ref_node->file_list);
7777
Hillf Dantona5318d32020-03-23 17:47:15 +08007778 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007779}
7780
7781static int __io_sqe_files_update(struct io_ring_ctx *ctx,
7782 struct io_uring_files_update *up,
7783 unsigned nr_args)
7784{
7785 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007786 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007787 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007788 __s32 __user *fds;
7789 int fd, i, err;
7790 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007791 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06007792
Jens Axboe05f3fb32019-12-09 11:22:50 -07007793 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06007794 return -EOVERFLOW;
7795 if (done > ctx->nr_user_files)
7796 return -EINVAL;
7797
Xiaoguang Wang05589552020-03-31 14:05:18 +08007798 ref_node = alloc_fixed_file_ref_node(ctx);
7799 if (IS_ERR(ref_node))
7800 return PTR_ERR(ref_node);
7801
Jens Axboec3a31e62019-10-03 13:59:56 -06007802 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007803 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06007804 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007805 struct fixed_file_table *table;
7806 unsigned index;
7807
Jens Axboec3a31e62019-10-03 13:59:56 -06007808 err = 0;
7809 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
7810 err = -EFAULT;
7811 break;
7812 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007813 i = array_index_nospec(up->offset, ctx->nr_user_files);
7814 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06007815 index = i & IORING_FILE_TABLE_MASK;
7816 if (table->files[index]) {
Jiufei Xue98dfd502020-09-01 13:35:02 +08007817 file = table->files[index];
Hillf Dantona5318d32020-03-23 17:47:15 +08007818 err = io_queue_file_removal(data, file);
7819 if (err)
7820 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06007821 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007822 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06007823 }
7824 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06007825 file = fget(fd);
7826 if (!file) {
7827 err = -EBADF;
7828 break;
7829 }
7830 /*
7831 * Don't allow io_uring instances to be registered. If
7832 * UNIX isn't enabled, then this causes a reference
7833 * cycle and this instance can never get freed. If UNIX
7834 * is enabled we'll handle it just fine, but there's
7835 * still no point in allowing a ring fd as it doesn't
7836 * support regular read/write anyway.
7837 */
7838 if (file->f_op == &io_uring_fops) {
7839 fput(file);
7840 err = -EBADF;
7841 break;
7842 }
Jens Axboe65e19f52019-10-26 07:20:21 -06007843 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007844 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007845 if (err) {
Jiufei Xue95d1c8e2020-09-02 17:59:39 +08007846 table->files[index] = NULL;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007847 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007848 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007849 }
Jens Axboec3a31e62019-10-03 13:59:56 -06007850 }
7851 nr_args--;
7852 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007853 up->offset++;
7854 }
7855
Xiaoguang Wang05589552020-03-31 14:05:18 +08007856 if (needs_switch) {
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007857 percpu_ref_kill(&data->node->refs);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007858 spin_lock(&data->lock);
Pavel Begunkove2978222020-11-18 14:56:26 +00007859 list_add_tail(&ref_node->node, &data->ref_list);
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007860 data->node = ref_node;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007861 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007862 percpu_ref_get(&ctx->file_data->refs);
7863 } else
7864 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06007865
7866 return done ? done : err;
7867}
Xiaoguang Wang05589552020-03-31 14:05:18 +08007868
Jens Axboe05f3fb32019-12-09 11:22:50 -07007869static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
7870 unsigned nr_args)
7871{
7872 struct io_uring_files_update up;
7873
7874 if (!ctx->file_data)
7875 return -ENXIO;
7876 if (!nr_args)
7877 return -EINVAL;
7878 if (copy_from_user(&up, arg, sizeof(up)))
7879 return -EFAULT;
7880 if (up.resv)
7881 return -EINVAL;
7882
7883 return __io_sqe_files_update(ctx, &up, nr_args);
7884}
Jens Axboec3a31e62019-10-03 13:59:56 -06007885
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007886static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07007887{
7888 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
7889
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007890 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07007891 io_put_req(req);
7892}
7893
Pavel Begunkov24369c22020-01-28 03:15:48 +03007894static int io_init_wq_offload(struct io_ring_ctx *ctx,
7895 struct io_uring_params *p)
7896{
7897 struct io_wq_data data;
7898 struct fd f;
7899 struct io_ring_ctx *ctx_attach;
7900 unsigned int concurrency;
7901 int ret = 0;
7902
7903 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007904 data.free_work = io_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03007905 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03007906
7907 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
7908 /* Do QD, or 4 * CPUS, whatever is smallest */
7909 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
7910
7911 ctx->io_wq = io_wq_create(concurrency, &data);
7912 if (IS_ERR(ctx->io_wq)) {
7913 ret = PTR_ERR(ctx->io_wq);
7914 ctx->io_wq = NULL;
7915 }
7916 return ret;
7917 }
7918
7919 f = fdget(p->wq_fd);
7920 if (!f.file)
7921 return -EBADF;
7922
7923 if (f.file->f_op != &io_uring_fops) {
7924 ret = -EINVAL;
7925 goto out_fput;
7926 }
7927
7928 ctx_attach = f.file->private_data;
7929 /* @io_wq is protected by holding the fd */
7930 if (!io_wq_get(ctx_attach->io_wq, &data)) {
7931 ret = -EINVAL;
7932 goto out_fput;
7933 }
7934
7935 ctx->io_wq = ctx_attach->io_wq;
7936out_fput:
7937 fdput(f);
7938 return ret;
7939}
7940
Jens Axboe0f212202020-09-13 13:09:39 -06007941static int io_uring_alloc_task_context(struct task_struct *task)
7942{
7943 struct io_uring_task *tctx;
Jens Axboed8a6df12020-10-15 16:24:45 -06007944 int ret;
Jens Axboe0f212202020-09-13 13:09:39 -06007945
7946 tctx = kmalloc(sizeof(*tctx), GFP_KERNEL);
7947 if (unlikely(!tctx))
7948 return -ENOMEM;
7949
Jens Axboed8a6df12020-10-15 16:24:45 -06007950 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
7951 if (unlikely(ret)) {
7952 kfree(tctx);
7953 return ret;
7954 }
7955
Jens Axboe0f212202020-09-13 13:09:39 -06007956 xa_init(&tctx->xa);
7957 init_waitqueue_head(&tctx->wait);
7958 tctx->last = NULL;
Jens Axboefdaf0832020-10-30 09:37:30 -06007959 atomic_set(&tctx->in_idle, 0);
7960 tctx->sqpoll = false;
Jens Axboe500a3732020-10-15 17:38:03 -06007961 io_init_identity(&tctx->__identity);
7962 tctx->identity = &tctx->__identity;
Jens Axboe0f212202020-09-13 13:09:39 -06007963 task->io_uring = tctx;
7964 return 0;
7965}
7966
7967void __io_uring_free(struct task_struct *tsk)
7968{
7969 struct io_uring_task *tctx = tsk->io_uring;
7970
7971 WARN_ON_ONCE(!xa_empty(&tctx->xa));
Jens Axboe500a3732020-10-15 17:38:03 -06007972 WARN_ON_ONCE(refcount_read(&tctx->identity->count) != 1);
7973 if (tctx->identity != &tctx->__identity)
7974 kfree(tctx->identity);
Jens Axboed8a6df12020-10-15 16:24:45 -06007975 percpu_counter_destroy(&tctx->inflight);
Jens Axboe0f212202020-09-13 13:09:39 -06007976 kfree(tctx);
7977 tsk->io_uring = NULL;
7978}
7979
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02007980static int io_sq_offload_create(struct io_ring_ctx *ctx,
7981 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007982{
7983 int ret;
7984
Jens Axboe6c271ce2019-01-10 11:22:30 -07007985 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06007986 struct io_sq_data *sqd;
7987
Jens Axboe3ec482d2019-04-08 10:51:01 -06007988 ret = -EPERM;
Jens Axboece59fc62020-09-02 13:28:09 -06007989 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_NICE))
Jens Axboe3ec482d2019-04-08 10:51:01 -06007990 goto err;
7991
Jens Axboe534ca6d2020-09-02 13:52:19 -06007992 sqd = io_get_sq_data(p);
7993 if (IS_ERR(sqd)) {
7994 ret = PTR_ERR(sqd);
7995 goto err;
7996 }
Jens Axboe69fb2132020-09-14 11:16:23 -06007997
Jens Axboe534ca6d2020-09-02 13:52:19 -06007998 ctx->sq_data = sqd;
Jens Axboe69fb2132020-09-14 11:16:23 -06007999 io_sq_thread_park(sqd);
8000 mutex_lock(&sqd->ctx_lock);
8001 list_add(&ctx->sqd_list, &sqd->ctx_new_list);
8002 mutex_unlock(&sqd->ctx_lock);
8003 io_sq_thread_unpark(sqd);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008004
Jens Axboe917257d2019-04-13 09:28:55 -06008005 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8006 if (!ctx->sq_thread_idle)
8007 ctx->sq_thread_idle = HZ;
8008
Jens Axboeaa061652020-09-02 14:50:27 -06008009 if (sqd->thread)
8010 goto done;
8011
Jens Axboe6c271ce2019-01-10 11:22:30 -07008012 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06008013 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008014
Jens Axboe917257d2019-04-13 09:28:55 -06008015 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06008016 if (cpu >= nr_cpu_ids)
8017 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08008018 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06008019 goto err;
8020
Jens Axboe69fb2132020-09-14 11:16:23 -06008021 sqd->thread = kthread_create_on_cpu(io_sq_thread, sqd,
Jens Axboe534ca6d2020-09-02 13:52:19 -06008022 cpu, "io_uring-sq");
Jens Axboe6c271ce2019-01-10 11:22:30 -07008023 } else {
Jens Axboe69fb2132020-09-14 11:16:23 -06008024 sqd->thread = kthread_create(io_sq_thread, sqd,
Jens Axboe6c271ce2019-01-10 11:22:30 -07008025 "io_uring-sq");
8026 }
Jens Axboe534ca6d2020-09-02 13:52:19 -06008027 if (IS_ERR(sqd->thread)) {
8028 ret = PTR_ERR(sqd->thread);
8029 sqd->thread = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008030 goto err;
8031 }
Jens Axboe534ca6d2020-09-02 13:52:19 -06008032 ret = io_uring_alloc_task_context(sqd->thread);
Jens Axboe0f212202020-09-13 13:09:39 -06008033 if (ret)
8034 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008035 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8036 /* Can't have SQ_AFF without SQPOLL */
8037 ret = -EINVAL;
8038 goto err;
8039 }
8040
Jens Axboeaa061652020-09-02 14:50:27 -06008041done:
Pavel Begunkov24369c22020-01-28 03:15:48 +03008042 ret = io_init_wq_offload(ctx, p);
8043 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008044 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008045
8046 return 0;
8047err:
Jens Axboe54a91f32019-09-10 09:15:04 -06008048 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008049 return ret;
8050}
8051
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008052static void io_sq_offload_start(struct io_ring_ctx *ctx)
8053{
Jens Axboe534ca6d2020-09-02 13:52:19 -06008054 struct io_sq_data *sqd = ctx->sq_data;
8055
8056 if ((ctx->flags & IORING_SETUP_SQPOLL) && sqd->thread)
8057 wake_up_process(sqd->thread);
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008058}
8059
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008060static inline void __io_unaccount_mem(struct user_struct *user,
8061 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008062{
8063 atomic_long_sub(nr_pages, &user->locked_vm);
8064}
8065
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008066static inline int __io_account_mem(struct user_struct *user,
8067 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008068{
8069 unsigned long page_limit, cur_pages, new_pages;
8070
8071 /* Don't allow more pages than we can safely lock */
8072 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8073
8074 do {
8075 cur_pages = atomic_long_read(&user->locked_vm);
8076 new_pages = cur_pages + nr_pages;
8077 if (new_pages > page_limit)
8078 return -ENOMEM;
8079 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8080 new_pages) != cur_pages);
8081
8082 return 0;
8083}
8084
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008085static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
8086 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008087{
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008088 if (ctx->limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008089 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008090
Jens Axboe2aede0e2020-09-14 10:45:53 -06008091 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008092 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008093 ctx->mm_account->locked_vm -= nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008094 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008095 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008096 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008097}
8098
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008099static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
8100 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008101{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008102 int ret;
8103
8104 if (ctx->limit_mem) {
8105 ret = __io_account_mem(ctx->user, nr_pages);
8106 if (ret)
8107 return ret;
8108 }
8109
Jens Axboe2aede0e2020-09-14 10:45:53 -06008110 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008111 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008112 ctx->mm_account->locked_vm += nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008113 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008114 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008115 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008116
8117 return 0;
8118}
8119
Jens Axboe2b188cc2019-01-07 10:46:33 -07008120static void io_mem_free(void *ptr)
8121{
Mark Rutland52e04ef2019-04-30 17:30:21 +01008122 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008123
Mark Rutland52e04ef2019-04-30 17:30:21 +01008124 if (!ptr)
8125 return;
8126
8127 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008128 if (put_page_testzero(page))
8129 free_compound_page(page);
8130}
8131
8132static void *io_mem_alloc(size_t size)
8133{
8134 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
8135 __GFP_NORETRY;
8136
8137 return (void *) __get_free_pages(gfp_flags, get_order(size));
8138}
8139
Hristo Venev75b28af2019-08-26 17:23:46 +00008140static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
8141 size_t *sq_offset)
8142{
8143 struct io_rings *rings;
8144 size_t off, sq_array_size;
8145
8146 off = struct_size(rings, cqes, cq_entries);
8147 if (off == SIZE_MAX)
8148 return SIZE_MAX;
8149
8150#ifdef CONFIG_SMP
8151 off = ALIGN(off, SMP_CACHE_BYTES);
8152 if (off == 0)
8153 return SIZE_MAX;
8154#endif
8155
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02008156 if (sq_offset)
8157 *sq_offset = off;
8158
Hristo Venev75b28af2019-08-26 17:23:46 +00008159 sq_array_size = array_size(sizeof(u32), sq_entries);
8160 if (sq_array_size == SIZE_MAX)
8161 return SIZE_MAX;
8162
8163 if (check_add_overflow(off, sq_array_size, &off))
8164 return SIZE_MAX;
8165
Hristo Venev75b28af2019-08-26 17:23:46 +00008166 return off;
8167}
8168
Jens Axboe2b188cc2019-01-07 10:46:33 -07008169static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
8170{
Hristo Venev75b28af2019-08-26 17:23:46 +00008171 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008172
Hristo Venev75b28af2019-08-26 17:23:46 +00008173 pages = (size_t)1 << get_order(
8174 rings_size(sq_entries, cq_entries, NULL));
8175 pages += (size_t)1 << get_order(
8176 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008177
Hristo Venev75b28af2019-08-26 17:23:46 +00008178 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008179}
8180
Jens Axboeedafcce2019-01-09 09:16:05 -07008181static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
8182{
8183 int i, j;
8184
8185 if (!ctx->user_bufs)
8186 return -ENXIO;
8187
8188 for (i = 0; i < ctx->nr_user_bufs; i++) {
8189 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8190
8191 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08008192 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07008193
Jens Axboede293932020-09-17 16:19:16 -06008194 if (imu->acct_pages)
8195 io_unaccount_mem(ctx, imu->acct_pages, ACCT_PINNED);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008196 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07008197 imu->nr_bvecs = 0;
8198 }
8199
8200 kfree(ctx->user_bufs);
8201 ctx->user_bufs = NULL;
8202 ctx->nr_user_bufs = 0;
8203 return 0;
8204}
8205
8206static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8207 void __user *arg, unsigned index)
8208{
8209 struct iovec __user *src;
8210
8211#ifdef CONFIG_COMPAT
8212 if (ctx->compat) {
8213 struct compat_iovec __user *ciovs;
8214 struct compat_iovec ciov;
8215
8216 ciovs = (struct compat_iovec __user *) arg;
8217 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8218 return -EFAULT;
8219
Jens Axboed55e5f52019-12-11 16:12:15 -07008220 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07008221 dst->iov_len = ciov.iov_len;
8222 return 0;
8223 }
8224#endif
8225 src = (struct iovec __user *) arg;
8226 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8227 return -EFAULT;
8228 return 0;
8229}
8230
Jens Axboede293932020-09-17 16:19:16 -06008231/*
8232 * Not super efficient, but this is just a registration time. And we do cache
8233 * the last compound head, so generally we'll only do a full search if we don't
8234 * match that one.
8235 *
8236 * We check if the given compound head page has already been accounted, to
8237 * avoid double accounting it. This allows us to account the full size of the
8238 * page, not just the constituent pages of a huge page.
8239 */
8240static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8241 int nr_pages, struct page *hpage)
8242{
8243 int i, j;
8244
8245 /* check current page array */
8246 for (i = 0; i < nr_pages; i++) {
8247 if (!PageCompound(pages[i]))
8248 continue;
8249 if (compound_head(pages[i]) == hpage)
8250 return true;
8251 }
8252
8253 /* check previously registered pages */
8254 for (i = 0; i < ctx->nr_user_bufs; i++) {
8255 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8256
8257 for (j = 0; j < imu->nr_bvecs; j++) {
8258 if (!PageCompound(imu->bvec[j].bv_page))
8259 continue;
8260 if (compound_head(imu->bvec[j].bv_page) == hpage)
8261 return true;
8262 }
8263 }
8264
8265 return false;
8266}
8267
8268static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8269 int nr_pages, struct io_mapped_ubuf *imu,
8270 struct page **last_hpage)
8271{
8272 int i, ret;
8273
8274 for (i = 0; i < nr_pages; i++) {
8275 if (!PageCompound(pages[i])) {
8276 imu->acct_pages++;
8277 } else {
8278 struct page *hpage;
8279
8280 hpage = compound_head(pages[i]);
8281 if (hpage == *last_hpage)
8282 continue;
8283 *last_hpage = hpage;
8284 if (headpage_already_acct(ctx, pages, i, hpage))
8285 continue;
8286 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8287 }
8288 }
8289
8290 if (!imu->acct_pages)
8291 return 0;
8292
8293 ret = io_account_mem(ctx, imu->acct_pages, ACCT_PINNED);
8294 if (ret)
8295 imu->acct_pages = 0;
8296 return ret;
8297}
8298
Jens Axboeedafcce2019-01-09 09:16:05 -07008299static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
8300 unsigned nr_args)
8301{
8302 struct vm_area_struct **vmas = NULL;
8303 struct page **pages = NULL;
Jens Axboede293932020-09-17 16:19:16 -06008304 struct page *last_hpage = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008305 int i, j, got_pages = 0;
8306 int ret = -EINVAL;
8307
8308 if (ctx->user_bufs)
8309 return -EBUSY;
8310 if (!nr_args || nr_args > UIO_MAXIOV)
8311 return -EINVAL;
8312
8313 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
8314 GFP_KERNEL);
8315 if (!ctx->user_bufs)
8316 return -ENOMEM;
8317
8318 for (i = 0; i < nr_args; i++) {
8319 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8320 unsigned long off, start, end, ubuf;
8321 int pret, nr_pages;
8322 struct iovec iov;
8323 size_t size;
8324
8325 ret = io_copy_iov(ctx, &iov, arg, i);
8326 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03008327 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07008328
8329 /*
8330 * Don't impose further limits on the size and buffer
8331 * constraints here, we'll -EINVAL later when IO is
8332 * submitted if they are wrong.
8333 */
8334 ret = -EFAULT;
8335 if (!iov.iov_base || !iov.iov_len)
8336 goto err;
8337
8338 /* arbitrary limit, but we need something */
8339 if (iov.iov_len > SZ_1G)
8340 goto err;
8341
8342 ubuf = (unsigned long) iov.iov_base;
8343 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
8344 start = ubuf >> PAGE_SHIFT;
8345 nr_pages = end - start;
8346
Jens Axboeedafcce2019-01-09 09:16:05 -07008347 ret = 0;
8348 if (!pages || nr_pages > got_pages) {
Denis Efremova8c73c12020-06-05 12:32:03 +03008349 kvfree(vmas);
8350 kvfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008351 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07008352 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008353 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07008354 sizeof(struct vm_area_struct *),
8355 GFP_KERNEL);
8356 if (!pages || !vmas) {
8357 ret = -ENOMEM;
Jens Axboeedafcce2019-01-09 09:16:05 -07008358 goto err;
8359 }
8360 got_pages = nr_pages;
8361 }
8362
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008363 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07008364 GFP_KERNEL);
8365 ret = -ENOMEM;
Jens Axboede293932020-09-17 16:19:16 -06008366 if (!imu->bvec)
Jens Axboeedafcce2019-01-09 09:16:05 -07008367 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07008368
8369 ret = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07008370 mmap_read_lock(current->mm);
John Hubbard2113b052020-01-30 22:13:13 -08008371 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07008372 FOLL_WRITE | FOLL_LONGTERM,
8373 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008374 if (pret == nr_pages) {
8375 /* don't support file backed memory */
8376 for (j = 0; j < nr_pages; j++) {
8377 struct vm_area_struct *vma = vmas[j];
8378
8379 if (vma->vm_file &&
8380 !is_file_hugepages(vma->vm_file)) {
8381 ret = -EOPNOTSUPP;
8382 break;
8383 }
8384 }
8385 } else {
8386 ret = pret < 0 ? pret : -EFAULT;
8387 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07008388 mmap_read_unlock(current->mm);
Jens Axboeedafcce2019-01-09 09:16:05 -07008389 if (ret) {
8390 /*
8391 * if we did partial map, or found file backed vmas,
8392 * release any pages we did get
8393 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07008394 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08008395 unpin_user_pages(pages, pret);
Jens Axboede293932020-09-17 16:19:16 -06008396 kvfree(imu->bvec);
8397 goto err;
8398 }
8399
8400 ret = io_buffer_account_pin(ctx, pages, pret, imu, &last_hpage);
8401 if (ret) {
8402 unpin_user_pages(pages, pret);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008403 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07008404 goto err;
8405 }
8406
8407 off = ubuf & ~PAGE_MASK;
8408 size = iov.iov_len;
8409 for (j = 0; j < nr_pages; j++) {
8410 size_t vec_len;
8411
8412 vec_len = min_t(size_t, size, PAGE_SIZE - off);
8413 imu->bvec[j].bv_page = pages[j];
8414 imu->bvec[j].bv_len = vec_len;
8415 imu->bvec[j].bv_offset = off;
8416 off = 0;
8417 size -= vec_len;
8418 }
8419 /* store original address for later verification */
8420 imu->ubuf = ubuf;
8421 imu->len = iov.iov_len;
8422 imu->nr_bvecs = nr_pages;
8423
8424 ctx->nr_user_bufs++;
8425 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008426 kvfree(pages);
8427 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008428 return 0;
8429err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008430 kvfree(pages);
8431 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008432 io_sqe_buffer_unregister(ctx);
8433 return ret;
8434}
8435
Jens Axboe9b402842019-04-11 11:45:41 -06008436static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
8437{
8438 __s32 __user *fds = arg;
8439 int fd;
8440
8441 if (ctx->cq_ev_fd)
8442 return -EBUSY;
8443
8444 if (copy_from_user(&fd, fds, sizeof(*fds)))
8445 return -EFAULT;
8446
8447 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
8448 if (IS_ERR(ctx->cq_ev_fd)) {
8449 int ret = PTR_ERR(ctx->cq_ev_fd);
8450 ctx->cq_ev_fd = NULL;
8451 return ret;
8452 }
8453
8454 return 0;
8455}
8456
8457static int io_eventfd_unregister(struct io_ring_ctx *ctx)
8458{
8459 if (ctx->cq_ev_fd) {
8460 eventfd_ctx_put(ctx->cq_ev_fd);
8461 ctx->cq_ev_fd = NULL;
8462 return 0;
8463 }
8464
8465 return -ENXIO;
8466}
8467
Jens Axboe5a2e7452020-02-23 16:23:11 -07008468static int __io_destroy_buffers(int id, void *p, void *data)
8469{
8470 struct io_ring_ctx *ctx = data;
8471 struct io_buffer *buf = p;
8472
Jens Axboe067524e2020-03-02 16:32:28 -07008473 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07008474 return 0;
8475}
8476
8477static void io_destroy_buffers(struct io_ring_ctx *ctx)
8478{
8479 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
8480 idr_destroy(&ctx->io_buffer_idr);
8481}
8482
Jens Axboe2b188cc2019-01-07 10:46:33 -07008483static void io_ring_ctx_free(struct io_ring_ctx *ctx)
8484{
Jens Axboe6b063142019-01-10 22:13:58 -07008485 io_finish_async(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07008486 io_sqe_buffer_unregister(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06008487
8488 if (ctx->sqo_task) {
8489 put_task_struct(ctx->sqo_task);
8490 ctx->sqo_task = NULL;
8491 mmdrop(ctx->mm_account);
8492 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008493 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008494
Dennis Zhou91d8f512020-09-16 13:41:05 -07008495#ifdef CONFIG_BLK_CGROUP
8496 if (ctx->sqo_blkcg_css)
8497 css_put(ctx->sqo_blkcg_css);
8498#endif
8499
Jens Axboe6b063142019-01-10 22:13:58 -07008500 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06008501 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07008502 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07008503 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07008504
Jens Axboe2b188cc2019-01-07 10:46:33 -07008505#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07008506 if (ctx->ring_sock) {
8507 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07008508 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07008509 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008510#endif
8511
Hristo Venev75b28af2019-08-26 17:23:46 +00008512 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008513 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008514
8515 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008516 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07008517 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07008518 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07008519 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008520 kfree(ctx);
8521}
8522
8523static __poll_t io_uring_poll(struct file *file, poll_table *wait)
8524{
8525 struct io_ring_ctx *ctx = file->private_data;
8526 __poll_t mask = 0;
8527
8528 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02008529 /*
8530 * synchronizes with barrier from wq_has_sleeper call in
8531 * io_commit_cqring
8532 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07008533 smp_rmb();
Jens Axboe90554202020-09-03 12:12:41 -06008534 if (!io_sqring_full(ctx))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008535 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01008536 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008537 mask |= EPOLLIN | EPOLLRDNORM;
8538
8539 return mask;
8540}
8541
8542static int io_uring_fasync(int fd, struct file *file, int on)
8543{
8544 struct io_ring_ctx *ctx = file->private_data;
8545
8546 return fasync_helper(fd, file, on, &ctx->cq_fasync);
8547}
8548
Jens Axboe071698e2020-01-28 10:04:42 -07008549static int io_remove_personalities(int id, void *p, void *data)
8550{
8551 struct io_ring_ctx *ctx = data;
Jens Axboe1e6fa522020-10-15 08:46:24 -06008552 struct io_identity *iod;
Jens Axboe071698e2020-01-28 10:04:42 -07008553
Jens Axboe1e6fa522020-10-15 08:46:24 -06008554 iod = idr_remove(&ctx->personality_idr, id);
8555 if (iod) {
8556 put_cred(iod->creds);
8557 if (refcount_dec_and_test(&iod->count))
8558 kfree(iod);
8559 }
Jens Axboe071698e2020-01-28 10:04:42 -07008560 return 0;
8561}
8562
Jens Axboe85faa7b2020-04-09 18:14:00 -06008563static void io_ring_exit_work(struct work_struct *work)
8564{
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008565 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
8566 exit_work);
Jens Axboe85faa7b2020-04-09 18:14:00 -06008567
Jens Axboe56952e92020-06-17 15:00:04 -06008568 /*
8569 * If we're doing polled IO and end up having requests being
8570 * submitted async (out-of-line), then completions can come in while
8571 * we're waiting for refs to drop. We need to reap these manually,
8572 * as nobody else will be looking for them.
8573 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008574 do {
Jens Axboe56952e92020-06-17 15:00:04 -06008575 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008576 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008577 io_iopoll_try_reap_events(ctx);
8578 } while (!wait_for_completion_timeout(&ctx->ref_comp, HZ/20));
Jens Axboe85faa7b2020-04-09 18:14:00 -06008579 io_ring_ctx_free(ctx);
8580}
8581
Jens Axboe2b188cc2019-01-07 10:46:33 -07008582static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
8583{
8584 mutex_lock(&ctx->uring_lock);
8585 percpu_ref_kill(&ctx->refs);
8586 mutex_unlock(&ctx->uring_lock);
8587
Pavel Begunkov6b819282020-11-06 13:00:25 +00008588 io_kill_timeouts(ctx, NULL, NULL);
8589 io_poll_remove_all(ctx, NULL, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06008590
8591 if (ctx->io_wq)
8592 io_wq_cancel_all(ctx->io_wq);
8593
Jens Axboe15dff282019-11-13 09:09:23 -07008594 /* if we failed setting up the ctx, we might not have any rings */
8595 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008596 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008597 io_iopoll_try_reap_events(ctx);
Jens Axboe071698e2020-01-28 10:04:42 -07008598 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06008599
8600 /*
8601 * Do this upfront, so we won't have a grace period where the ring
8602 * is closed but resources aren't reaped yet. This can cause
8603 * spurious failure in setting up a new ring.
8604 */
Jens Axboe760618f2020-07-24 12:53:31 -06008605 io_unaccount_mem(ctx, ring_pages(ctx->sq_entries, ctx->cq_entries),
8606 ACCT_LOCKED);
Jens Axboe309fc032020-07-10 09:13:34 -06008607
Jens Axboe85faa7b2020-04-09 18:14:00 -06008608 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06008609 /*
8610 * Use system_unbound_wq to avoid spawning tons of event kworkers
8611 * if we're exiting a ton of rings at the same time. It just adds
8612 * noise and overhead, there's no discernable change in runtime
8613 * over using system_wq.
8614 */
8615 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008616}
8617
8618static int io_uring_release(struct inode *inode, struct file *file)
8619{
8620 struct io_ring_ctx *ctx = file->private_data;
8621
8622 file->private_data = NULL;
8623 io_ring_ctx_wait_and_kill(ctx);
8624 return 0;
8625}
8626
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008627struct io_task_cancel {
8628 struct task_struct *task;
8629 struct files_struct *files;
8630};
Jens Axboef254ac02020-08-12 17:33:30 -06008631
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008632static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Jens Axboeb711d4e2020-08-16 08:23:05 -07008633{
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008634 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008635 struct io_task_cancel *cancel = data;
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008636 bool ret;
8637
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008638 if (cancel->files && (req->flags & REQ_F_LINK_TIMEOUT)) {
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008639 unsigned long flags;
8640 struct io_ring_ctx *ctx = req->ctx;
8641
8642 /* protect against races with linked timeouts */
8643 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008644 ret = io_match_task(req, cancel->task, cancel->files);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008645 spin_unlock_irqrestore(&ctx->completion_lock, flags);
8646 } else {
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008647 ret = io_match_task(req, cancel->task, cancel->files);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008648 }
8649 return ret;
Jens Axboeb711d4e2020-08-16 08:23:05 -07008650}
8651
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008652static void io_cancel_defer_files(struct io_ring_ctx *ctx,
Pavel Begunkovef9865a2020-11-05 14:06:19 +00008653 struct task_struct *task,
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008654 struct files_struct *files)
8655{
8656 struct io_defer_entry *de = NULL;
8657 LIST_HEAD(list);
8658
8659 spin_lock_irq(&ctx->completion_lock);
8660 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkov08d23632020-11-06 13:00:22 +00008661 if (io_match_task(de->req, task, files)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008662 list_cut_position(&list, &ctx->defer_list, &de->list);
8663 break;
8664 }
8665 }
8666 spin_unlock_irq(&ctx->completion_lock);
8667
8668 while (!list_empty(&list)) {
8669 de = list_first_entry(&list, struct io_defer_entry, list);
8670 list_del_init(&de->list);
8671 req_set_fail_links(de->req);
8672 io_put_req(de->req);
8673 io_req_complete(de->req, -ECANCELED);
8674 kfree(de);
8675 }
8676}
8677
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008678static void io_uring_cancel_files(struct io_ring_ctx *ctx,
Pavel Begunkovdf9923f2020-11-06 13:00:23 +00008679 struct task_struct *task,
Jens Axboefcb323c2019-10-24 12:39:47 -06008680 struct files_struct *files)
8681{
Jens Axboefcb323c2019-10-24 12:39:47 -06008682 while (!list_empty_careful(&ctx->inflight_list)) {
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008683 struct io_task_cancel cancel = { .task = task, .files = NULL, };
8684 struct io_kiocb *req;
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008685 DEFINE_WAIT(wait);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008686 bool found = false;
Jens Axboefcb323c2019-10-24 12:39:47 -06008687
8688 spin_lock_irq(&ctx->inflight_lock);
8689 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Pavel Begunkovdf9923f2020-11-06 13:00:23 +00008690 if (req->task == task &&
8691 (req->work.flags & IO_WQ_WORK_FILES) &&
Jens Axboe98447d62020-10-14 10:48:51 -06008692 req->work.identity->files != files)
Jens Axboe768134d2019-11-10 20:30:53 -07008693 continue;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008694 found = true;
Jens Axboe768134d2019-11-10 20:30:53 -07008695 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06008696 }
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008697 if (found)
Jens Axboefcb323c2019-10-24 12:39:47 -06008698 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07008699 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06008700 spin_unlock_irq(&ctx->inflight_lock);
8701
Jens Axboe768134d2019-11-10 20:30:53 -07008702 /* We need to keep going until we don't find a matching req */
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008703 if (!found)
Jens Axboefcb323c2019-10-24 12:39:47 -06008704 break;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008705
8706 io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, &cancel, true);
8707 io_poll_remove_all(ctx, task, files);
8708 io_kill_timeouts(ctx, task, files);
Jens Axboe6200b0a2020-09-13 14:38:30 -06008709 /* cancellations _may_ trigger task work */
8710 io_run_task_work();
Jens Axboefcb323c2019-10-24 12:39:47 -06008711 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008712 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008713 }
8714}
8715
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008716static void __io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8717 struct task_struct *task)
Jens Axboe0f212202020-09-13 13:09:39 -06008718{
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008719 while (1) {
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008720 struct io_task_cancel cancel = { .task = task, .files = NULL, };
Jens Axboe0f212202020-09-13 13:09:39 -06008721 enum io_wq_cancel cret;
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008722 bool ret = false;
Jens Axboe0f212202020-09-13 13:09:39 -06008723
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008724 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, &cancel, true);
Jens Axboe0f212202020-09-13 13:09:39 -06008725 if (cret != IO_WQ_CANCEL_NOTFOUND)
8726 ret = true;
8727
8728 /* SQPOLL thread does its own polling */
8729 if (!(ctx->flags & IORING_SETUP_SQPOLL)) {
8730 while (!list_empty_careful(&ctx->iopoll_list)) {
8731 io_iopoll_try_reap_events(ctx);
8732 ret = true;
8733 }
8734 }
8735
Pavel Begunkov6b819282020-11-06 13:00:25 +00008736 ret |= io_poll_remove_all(ctx, task, NULL);
8737 ret |= io_kill_timeouts(ctx, task, NULL);
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008738 if (!ret)
8739 break;
8740 io_run_task_work();
8741 cond_resched();
Jens Axboe0f212202020-09-13 13:09:39 -06008742 }
Jens Axboe0f212202020-09-13 13:09:39 -06008743}
8744
8745/*
8746 * We need to iteratively cancel requests, in case a request has dependent
8747 * hard links. These persist even for failure of cancelations, hence keep
8748 * looping until none are found.
8749 */
8750static void io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8751 struct files_struct *files)
8752{
8753 struct task_struct *task = current;
8754
Jens Axboefdaf0832020-10-30 09:37:30 -06008755 if ((ctx->flags & IORING_SETUP_SQPOLL) && ctx->sq_data) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06008756 task = ctx->sq_data->thread;
Jens Axboefdaf0832020-10-30 09:37:30 -06008757 atomic_inc(&task->io_uring->in_idle);
8758 io_sq_thread_park(ctx->sq_data);
8759 }
Jens Axboe0f212202020-09-13 13:09:39 -06008760
Pavel Begunkovdf9923f2020-11-06 13:00:23 +00008761 io_cancel_defer_files(ctx, task, files);
Jens Axboe0f212202020-09-13 13:09:39 -06008762 io_cqring_overflow_flush(ctx, true, task, files);
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008763 io_uring_cancel_files(ctx, task, files);
Jens Axboe0f212202020-09-13 13:09:39 -06008764
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008765 if (!files)
8766 __io_uring_cancel_task_requests(ctx, task);
Jens Axboefdaf0832020-10-30 09:37:30 -06008767
8768 if ((ctx->flags & IORING_SETUP_SQPOLL) && ctx->sq_data) {
8769 atomic_dec(&task->io_uring->in_idle);
8770 /*
8771 * If the files that are going away are the ones in the thread
8772 * identity, clear them out.
8773 */
8774 if (task->io_uring->identity->files == files)
8775 task->io_uring->identity->files = NULL;
8776 io_sq_thread_unpark(ctx->sq_data);
8777 }
Jens Axboe0f212202020-09-13 13:09:39 -06008778}
8779
8780/*
8781 * Note that this task has used io_uring. We use it for cancelation purposes.
8782 */
Jens Axboefdaf0832020-10-30 09:37:30 -06008783static int io_uring_add_task_file(struct io_ring_ctx *ctx, struct file *file)
Jens Axboe0f212202020-09-13 13:09:39 -06008784{
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008785 struct io_uring_task *tctx = current->io_uring;
8786
8787 if (unlikely(!tctx)) {
Jens Axboe0f212202020-09-13 13:09:39 -06008788 int ret;
8789
8790 ret = io_uring_alloc_task_context(current);
8791 if (unlikely(ret))
8792 return ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008793 tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06008794 }
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008795 if (tctx->last != file) {
8796 void *old = xa_load(&tctx->xa, (unsigned long)file);
Jens Axboe0f212202020-09-13 13:09:39 -06008797
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008798 if (!old) {
Jens Axboe0f212202020-09-13 13:09:39 -06008799 get_file(file);
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008800 xa_store(&tctx->xa, (unsigned long)file, file, GFP_KERNEL);
Jens Axboe0f212202020-09-13 13:09:39 -06008801 }
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008802 tctx->last = file;
Jens Axboe0f212202020-09-13 13:09:39 -06008803 }
8804
Jens Axboefdaf0832020-10-30 09:37:30 -06008805 /*
8806 * This is race safe in that the task itself is doing this, hence it
8807 * cannot be going through the exit/cancel paths at the same time.
8808 * This cannot be modified while exit/cancel is running.
8809 */
8810 if (!tctx->sqpoll && (ctx->flags & IORING_SETUP_SQPOLL))
8811 tctx->sqpoll = true;
8812
Jens Axboe0f212202020-09-13 13:09:39 -06008813 return 0;
8814}
8815
8816/*
8817 * Remove this io_uring_file -> task mapping.
8818 */
8819static void io_uring_del_task_file(struct file *file)
8820{
8821 struct io_uring_task *tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06008822
8823 if (tctx->last == file)
8824 tctx->last = NULL;
Matthew Wilcox (Oracle)5e2ed8c2020-10-09 13:49:53 +01008825 file = xa_erase(&tctx->xa, (unsigned long)file);
Jens Axboe0f212202020-09-13 13:09:39 -06008826 if (file)
8827 fput(file);
8828}
8829
Jens Axboe0f212202020-09-13 13:09:39 -06008830/*
8831 * Drop task note for this file if we're the only ones that hold it after
8832 * pending fput()
8833 */
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008834static void io_uring_attempt_task_drop(struct file *file)
Jens Axboe0f212202020-09-13 13:09:39 -06008835{
8836 if (!current->io_uring)
8837 return;
8838 /*
8839 * fput() is pending, will be 2 if the only other ref is our potential
8840 * task file note. If the task is exiting, drop regardless of count.
8841 */
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008842 if (fatal_signal_pending(current) || (current->flags & PF_EXITING) ||
8843 atomic_long_read(&file->f_count) == 2)
8844 io_uring_del_task_file(file);
Jens Axboe0f212202020-09-13 13:09:39 -06008845}
8846
8847void __io_uring_files_cancel(struct files_struct *files)
8848{
8849 struct io_uring_task *tctx = current->io_uring;
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008850 struct file *file;
8851 unsigned long index;
Jens Axboe0f212202020-09-13 13:09:39 -06008852
8853 /* make sure overflow events are dropped */
Jens Axboefdaf0832020-10-30 09:37:30 -06008854 atomic_inc(&tctx->in_idle);
Jens Axboe0f212202020-09-13 13:09:39 -06008855
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008856 xa_for_each(&tctx->xa, index, file) {
8857 struct io_ring_ctx *ctx = file->private_data;
Jens Axboe0f212202020-09-13 13:09:39 -06008858
8859 io_uring_cancel_task_requests(ctx, files);
8860 if (files)
8861 io_uring_del_task_file(file);
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008862 }
Jens Axboefdaf0832020-10-30 09:37:30 -06008863
8864 atomic_dec(&tctx->in_idle);
8865}
8866
8867static s64 tctx_inflight(struct io_uring_task *tctx)
8868{
8869 unsigned long index;
8870 struct file *file;
8871 s64 inflight;
8872
8873 inflight = percpu_counter_sum(&tctx->inflight);
8874 if (!tctx->sqpoll)
8875 return inflight;
8876
8877 /*
8878 * If we have SQPOLL rings, then we need to iterate and find them, and
8879 * add the pending count for those.
8880 */
8881 xa_for_each(&tctx->xa, index, file) {
8882 struct io_ring_ctx *ctx = file->private_data;
8883
8884 if (ctx->flags & IORING_SETUP_SQPOLL) {
8885 struct io_uring_task *__tctx = ctx->sqo_task->io_uring;
8886
8887 inflight += percpu_counter_sum(&__tctx->inflight);
8888 }
8889 }
8890
8891 return inflight;
Jens Axboe0f212202020-09-13 13:09:39 -06008892}
8893
Jens Axboe0f212202020-09-13 13:09:39 -06008894/*
8895 * Find any io_uring fd that this task has registered or done IO on, and cancel
8896 * requests.
8897 */
8898void __io_uring_task_cancel(void)
8899{
8900 struct io_uring_task *tctx = current->io_uring;
8901 DEFINE_WAIT(wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06008902 s64 inflight;
Jens Axboe0f212202020-09-13 13:09:39 -06008903
8904 /* make sure overflow events are dropped */
Jens Axboefdaf0832020-10-30 09:37:30 -06008905 atomic_inc(&tctx->in_idle);
Jens Axboe0f212202020-09-13 13:09:39 -06008906
Jens Axboed8a6df12020-10-15 16:24:45 -06008907 do {
Jens Axboe0f212202020-09-13 13:09:39 -06008908 /* read completions before cancelations */
Jens Axboefdaf0832020-10-30 09:37:30 -06008909 inflight = tctx_inflight(tctx);
Jens Axboed8a6df12020-10-15 16:24:45 -06008910 if (!inflight)
8911 break;
Jens Axboe0f212202020-09-13 13:09:39 -06008912 __io_uring_files_cancel(NULL);
8913
8914 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
8915
8916 /*
8917 * If we've seen completions, retry. This avoids a race where
8918 * a completion comes in before we did prepare_to_wait().
8919 */
Jens Axboefdaf0832020-10-30 09:37:30 -06008920 if (inflight != tctx_inflight(tctx))
Jens Axboe0f212202020-09-13 13:09:39 -06008921 continue;
Jens Axboe0f212202020-09-13 13:09:39 -06008922 schedule();
Jens Axboed8a6df12020-10-15 16:24:45 -06008923 } while (1);
Jens Axboe0f212202020-09-13 13:09:39 -06008924
8925 finish_wait(&tctx->wait, &wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06008926 atomic_dec(&tctx->in_idle);
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008927}
8928
Jens Axboefcb323c2019-10-24 12:39:47 -06008929static int io_uring_flush(struct file *file, void *data)
8930{
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008931 io_uring_attempt_task_drop(file);
Jens Axboefcb323c2019-10-24 12:39:47 -06008932 return 0;
8933}
8934
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008935static void *io_uring_validate_mmap_request(struct file *file,
8936 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008937{
Jens Axboe2b188cc2019-01-07 10:46:33 -07008938 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008939 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008940 struct page *page;
8941 void *ptr;
8942
8943 switch (offset) {
8944 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00008945 case IORING_OFF_CQ_RING:
8946 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008947 break;
8948 case IORING_OFF_SQES:
8949 ptr = ctx->sq_sqes;
8950 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008951 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008952 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008953 }
8954
8955 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07008956 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008957 return ERR_PTR(-EINVAL);
8958
8959 return ptr;
8960}
8961
8962#ifdef CONFIG_MMU
8963
8964static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8965{
8966 size_t sz = vma->vm_end - vma->vm_start;
8967 unsigned long pfn;
8968 void *ptr;
8969
8970 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
8971 if (IS_ERR(ptr))
8972 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008973
8974 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
8975 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
8976}
8977
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008978#else /* !CONFIG_MMU */
8979
8980static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8981{
8982 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
8983}
8984
8985static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
8986{
8987 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
8988}
8989
8990static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
8991 unsigned long addr, unsigned long len,
8992 unsigned long pgoff, unsigned long flags)
8993{
8994 void *ptr;
8995
8996 ptr = io_uring_validate_mmap_request(file, pgoff, len);
8997 if (IS_ERR(ptr))
8998 return PTR_ERR(ptr);
8999
9000 return (unsigned long) ptr;
9001}
9002
9003#endif /* !CONFIG_MMU */
9004
Jens Axboe90554202020-09-03 12:12:41 -06009005static void io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
9006{
9007 DEFINE_WAIT(wait);
9008
9009 do {
9010 if (!io_sqring_full(ctx))
9011 break;
9012
9013 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9014
9015 if (!io_sqring_full(ctx))
9016 break;
9017
9018 schedule();
9019 } while (!signal_pending(current));
9020
9021 finish_wait(&ctx->sqo_sq_wait, &wait);
9022}
9023
Hao Xuc73ebb62020-11-03 10:54:37 +08009024static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9025 struct __kernel_timespec __user **ts,
9026 const sigset_t __user **sig)
9027{
9028 struct io_uring_getevents_arg arg;
9029
9030 /*
9031 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9032 * is just a pointer to the sigset_t.
9033 */
9034 if (!(flags & IORING_ENTER_EXT_ARG)) {
9035 *sig = (const sigset_t __user *) argp;
9036 *ts = NULL;
9037 return 0;
9038 }
9039
9040 /*
9041 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9042 * timespec and sigset_t pointers if good.
9043 */
9044 if (*argsz != sizeof(arg))
9045 return -EINVAL;
9046 if (copy_from_user(&arg, argp, sizeof(arg)))
9047 return -EFAULT;
9048 *sig = u64_to_user_ptr(arg.sigmask);
9049 *argsz = arg.sigmask_sz;
9050 *ts = u64_to_user_ptr(arg.ts);
9051 return 0;
9052}
9053
Jens Axboe2b188cc2019-01-07 10:46:33 -07009054SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
Hao Xuc73ebb62020-11-03 10:54:37 +08009055 u32, min_complete, u32, flags, const void __user *, argp,
9056 size_t, argsz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009057{
9058 struct io_ring_ctx *ctx;
9059 long ret = -EBADF;
9060 int submitted = 0;
9061 struct fd f;
9062
Jens Axboe4c6e2772020-07-01 11:29:10 -06009063 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07009064
Jens Axboe90554202020-09-03 12:12:41 -06009065 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
Hao Xuc73ebb62020-11-03 10:54:37 +08009066 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009067 return -EINVAL;
9068
9069 f = fdget(fd);
9070 if (!f.file)
9071 return -EBADF;
9072
9073 ret = -EOPNOTSUPP;
9074 if (f.file->f_op != &io_uring_fops)
9075 goto out_fput;
9076
9077 ret = -ENXIO;
9078 ctx = f.file->private_data;
9079 if (!percpu_ref_tryget(&ctx->refs))
9080 goto out_fput;
9081
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009082 ret = -EBADFD;
9083 if (ctx->flags & IORING_SETUP_R_DISABLED)
9084 goto out;
9085
Jens Axboe6c271ce2019-01-10 11:22:30 -07009086 /*
9087 * For SQ polling, the thread will do all submissions and completions.
9088 * Just return the requested submit count, and wake the thread if
9089 * we were asked to.
9090 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009091 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07009092 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07009093 if (!list_empty_careful(&ctx->cq_overflow_list))
Jens Axboee6c8aa92020-09-28 13:10:13 -06009094 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboe6c271ce2019-01-10 11:22:30 -07009095 if (flags & IORING_ENTER_SQ_WAKEUP)
Jens Axboe534ca6d2020-09-02 13:52:19 -06009096 wake_up(&ctx->sq_data->wait);
Jens Axboe90554202020-09-03 12:12:41 -06009097 if (flags & IORING_ENTER_SQ_WAIT)
9098 io_sqpoll_wait_sq(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07009099 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009100 } else if (to_submit) {
Jens Axboefdaf0832020-10-30 09:37:30 -06009101 ret = io_uring_add_task_file(ctx, f.file);
Jens Axboe0f212202020-09-13 13:09:39 -06009102 if (unlikely(ret))
9103 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009104 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009105 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009106 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009107
9108 if (submitted != to_submit)
9109 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009110 }
9111 if (flags & IORING_ENTER_GETEVENTS) {
Hao Xuc73ebb62020-11-03 10:54:37 +08009112 const sigset_t __user *sig;
9113 struct __kernel_timespec __user *ts;
9114
9115 ret = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
9116 if (unlikely(ret))
9117 goto out;
9118
Jens Axboe2b188cc2019-01-07 10:46:33 -07009119 min_complete = min(min_complete, ctx->cq_entries);
9120
Xiaoguang Wang32b22442020-03-11 09:26:09 +08009121 /*
9122 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
9123 * space applications don't need to do io completion events
9124 * polling again, they can rely on io_sq_thread to do polling
9125 * work, which can reduce cpu usage and uring_lock contention.
9126 */
9127 if (ctx->flags & IORING_SETUP_IOPOLL &&
9128 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03009129 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07009130 } else {
Hao Xuc73ebb62020-11-03 10:54:37 +08009131 ret = io_cqring_wait(ctx, min_complete, sig, argsz, ts);
Jens Axboedef596e2019-01-09 08:59:42 -07009132 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009133 }
9134
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009135out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03009136 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009137out_fput:
9138 fdput(f);
9139 return submitted ? submitted : ret;
9140}
9141
Tobias Klauserbebdb652020-02-26 18:38:32 +01009142#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07009143static int io_uring_show_cred(int id, void *p, void *data)
9144{
Jens Axboe6b47ab82020-11-05 09:50:16 -07009145 struct io_identity *iod = p;
9146 const struct cred *cred = iod->creds;
Jens Axboe87ce9552020-01-30 08:25:34 -07009147 struct seq_file *m = data;
9148 struct user_namespace *uns = seq_user_ns(m);
9149 struct group_info *gi;
9150 kernel_cap_t cap;
9151 unsigned __capi;
9152 int g;
9153
9154 seq_printf(m, "%5d\n", id);
9155 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
9156 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
9157 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
9158 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
9159 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
9160 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
9161 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
9162 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
9163 seq_puts(m, "\n\tGroups:\t");
9164 gi = cred->group_info;
9165 for (g = 0; g < gi->ngroups; g++) {
9166 seq_put_decimal_ull(m, g ? " " : "",
9167 from_kgid_munged(uns, gi->gid[g]));
9168 }
9169 seq_puts(m, "\n\tCapEff:\t");
9170 cap = cred->cap_effective;
9171 CAP_FOR_EACH_U32(__capi)
9172 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
9173 seq_putc(m, '\n');
9174 return 0;
9175}
9176
9177static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
9178{
Joseph Qidbbe9c62020-09-29 09:01:22 -06009179 struct io_sq_data *sq = NULL;
Jens Axboefad8e0d2020-09-28 08:57:48 -06009180 bool has_lock;
Jens Axboe87ce9552020-01-30 08:25:34 -07009181 int i;
9182
Jens Axboefad8e0d2020-09-28 08:57:48 -06009183 /*
9184 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
9185 * since fdinfo case grabs it in the opposite direction of normal use
9186 * cases. If we fail to get the lock, we just don't iterate any
9187 * structures that could be going away outside the io_uring mutex.
9188 */
9189 has_lock = mutex_trylock(&ctx->uring_lock);
9190
Joseph Qidbbe9c62020-09-29 09:01:22 -06009191 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL))
9192 sq = ctx->sq_data;
9193
9194 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
9195 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
Jens Axboe87ce9552020-01-30 08:25:34 -07009196 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009197 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009198 struct fixed_file_table *table;
9199 struct file *f;
9200
9201 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
9202 f = table->files[i & IORING_FILE_TABLE_MASK];
9203 if (f)
9204 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
9205 else
9206 seq_printf(m, "%5u: <none>\n", i);
9207 }
9208 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009209 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009210 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
9211
9212 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
9213 (unsigned int) buf->len);
9214 }
Jens Axboefad8e0d2020-09-28 08:57:48 -06009215 if (has_lock && !idr_is_empty(&ctx->personality_idr)) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009216 seq_printf(m, "Personalities:\n");
9217 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
9218 }
Jens Axboed7718a92020-02-14 22:23:12 -07009219 seq_printf(m, "PollList:\n");
9220 spin_lock_irq(&ctx->completion_lock);
9221 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
9222 struct hlist_head *list = &ctx->cancel_hash[i];
9223 struct io_kiocb *req;
9224
9225 hlist_for_each_entry(req, list, hash_node)
9226 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
9227 req->task->task_works != NULL);
9228 }
9229 spin_unlock_irq(&ctx->completion_lock);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009230 if (has_lock)
9231 mutex_unlock(&ctx->uring_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07009232}
9233
9234static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
9235{
9236 struct io_ring_ctx *ctx = f->private_data;
9237
9238 if (percpu_ref_tryget(&ctx->refs)) {
9239 __io_uring_show_fdinfo(ctx, m);
9240 percpu_ref_put(&ctx->refs);
9241 }
9242}
Tobias Klauserbebdb652020-02-26 18:38:32 +01009243#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07009244
Jens Axboe2b188cc2019-01-07 10:46:33 -07009245static const struct file_operations io_uring_fops = {
9246 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06009247 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009248 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009249#ifndef CONFIG_MMU
9250 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
9251 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
9252#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07009253 .poll = io_uring_poll,
9254 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01009255#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07009256 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01009257#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07009258};
9259
9260static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
9261 struct io_uring_params *p)
9262{
Hristo Venev75b28af2019-08-26 17:23:46 +00009263 struct io_rings *rings;
9264 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009265
Jens Axboebd740482020-08-05 12:58:23 -06009266 /* make sure these are sane, as we already accounted them */
9267 ctx->sq_entries = p->sq_entries;
9268 ctx->cq_entries = p->cq_entries;
9269
Hristo Venev75b28af2019-08-26 17:23:46 +00009270 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
9271 if (size == SIZE_MAX)
9272 return -EOVERFLOW;
9273
9274 rings = io_mem_alloc(size);
9275 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009276 return -ENOMEM;
9277
Hristo Venev75b28af2019-08-26 17:23:46 +00009278 ctx->rings = rings;
9279 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
9280 rings->sq_ring_mask = p->sq_entries - 1;
9281 rings->cq_ring_mask = p->cq_entries - 1;
9282 rings->sq_ring_entries = p->sq_entries;
9283 rings->cq_ring_entries = p->cq_entries;
9284 ctx->sq_mask = rings->sq_ring_mask;
9285 ctx->cq_mask = rings->cq_ring_mask;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009286
9287 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07009288 if (size == SIZE_MAX) {
9289 io_mem_free(ctx->rings);
9290 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009291 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07009292 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009293
9294 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07009295 if (!ctx->sq_sqes) {
9296 io_mem_free(ctx->rings);
9297 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009298 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07009299 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009300
Jens Axboe2b188cc2019-01-07 10:46:33 -07009301 return 0;
9302}
9303
9304/*
9305 * Allocate an anonymous fd, this is what constitutes the application
9306 * visible backing of an io_uring instance. The application mmaps this
9307 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
9308 * we have to tie this fd to a socket for file garbage collection purposes.
9309 */
9310static int io_uring_get_fd(struct io_ring_ctx *ctx)
9311{
9312 struct file *file;
9313 int ret;
9314
9315#if defined(CONFIG_UNIX)
9316 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
9317 &ctx->ring_sock);
9318 if (ret)
9319 return ret;
9320#endif
9321
9322 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
9323 if (ret < 0)
9324 goto err;
9325
9326 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
9327 O_RDWR | O_CLOEXEC);
9328 if (IS_ERR(file)) {
Jens Axboe0f212202020-09-13 13:09:39 -06009329err_fd:
Jens Axboe2b188cc2019-01-07 10:46:33 -07009330 put_unused_fd(ret);
9331 ret = PTR_ERR(file);
9332 goto err;
9333 }
9334
9335#if defined(CONFIG_UNIX)
9336 ctx->ring_sock->file = file;
9337#endif
Jens Axboefdaf0832020-10-30 09:37:30 -06009338 if (unlikely(io_uring_add_task_file(ctx, file))) {
Jens Axboe0f212202020-09-13 13:09:39 -06009339 file = ERR_PTR(-ENOMEM);
9340 goto err_fd;
9341 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009342 fd_install(ret, file);
9343 return ret;
9344err:
9345#if defined(CONFIG_UNIX)
9346 sock_release(ctx->ring_sock);
9347 ctx->ring_sock = NULL;
9348#endif
9349 return ret;
9350}
9351
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009352static int io_uring_create(unsigned entries, struct io_uring_params *p,
9353 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009354{
9355 struct user_struct *user = NULL;
9356 struct io_ring_ctx *ctx;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009357 bool limit_mem;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009358 int ret;
9359
Jens Axboe8110c1a2019-12-28 15:39:54 -07009360 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009361 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07009362 if (entries > IORING_MAX_ENTRIES) {
9363 if (!(p->flags & IORING_SETUP_CLAMP))
9364 return -EINVAL;
9365 entries = IORING_MAX_ENTRIES;
9366 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009367
9368 /*
9369 * Use twice as many entries for the CQ ring. It's possible for the
9370 * application to drive a higher depth than the size of the SQ ring,
9371 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06009372 * some flexibility in overcommitting a bit. If the application has
9373 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
9374 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07009375 */
9376 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06009377 if (p->flags & IORING_SETUP_CQSIZE) {
9378 /*
9379 * If IORING_SETUP_CQSIZE is set, we do the same roundup
9380 * to a power-of-two, if it isn't already. We do NOT impose
9381 * any cq vs sq ring sizing.
9382 */
Jens Axboe88ec3212020-11-11 10:38:53 -07009383 p->cq_entries = roundup_pow_of_two(p->cq_entries);
Jens Axboe8110c1a2019-12-28 15:39:54 -07009384 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06009385 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07009386 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
9387 if (!(p->flags & IORING_SETUP_CLAMP))
9388 return -EINVAL;
9389 p->cq_entries = IORING_MAX_CQ_ENTRIES;
9390 }
Jens Axboe33a107f2019-10-04 12:10:03 -06009391 } else {
9392 p->cq_entries = 2 * p->sq_entries;
9393 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009394
9395 user = get_uid(current_user());
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009396 limit_mem = !capable(CAP_IPC_LOCK);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009397
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009398 if (limit_mem) {
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07009399 ret = __io_account_mem(user,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009400 ring_pages(p->sq_entries, p->cq_entries));
9401 if (ret) {
9402 free_uid(user);
9403 return ret;
9404 }
9405 }
9406
9407 ctx = io_ring_ctx_alloc(p);
9408 if (!ctx) {
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009409 if (limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07009410 __io_unaccount_mem(user, ring_pages(p->sq_entries,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009411 p->cq_entries));
9412 free_uid(user);
9413 return -ENOMEM;
9414 }
9415 ctx->compat = in_compat_syscall();
Jens Axboe2b188cc2019-01-07 10:46:33 -07009416 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07009417 ctx->creds = get_current_cred();
Jens Axboe4ea33a92020-10-15 13:46:44 -06009418#ifdef CONFIG_AUDIT
9419 ctx->loginuid = current->loginuid;
9420 ctx->sessionid = current->sessionid;
9421#endif
Jens Axboe2aede0e2020-09-14 10:45:53 -06009422 ctx->sqo_task = get_task_struct(current);
9423
9424 /*
9425 * This is just grabbed for accounting purposes. When a process exits,
9426 * the mm is exited and dropped before the files, hence we need to hang
9427 * on to this mm purely for the purposes of being able to unaccount
9428 * memory (locked/pinned vm). It's not used for anything else.
9429 */
Jens Axboe6b7898e2020-08-25 07:58:00 -06009430 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -06009431 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -06009432
Dennis Zhou91d8f512020-09-16 13:41:05 -07009433#ifdef CONFIG_BLK_CGROUP
9434 /*
9435 * The sq thread will belong to the original cgroup it was inited in.
9436 * If the cgroup goes offline (e.g. disabling the io controller), then
9437 * issued bios will be associated with the closest cgroup later in the
9438 * block layer.
9439 */
9440 rcu_read_lock();
9441 ctx->sqo_blkcg_css = blkcg_css();
9442 ret = css_tryget_online(ctx->sqo_blkcg_css);
9443 rcu_read_unlock();
9444 if (!ret) {
9445 /* don't init against a dying cgroup, have the user try again */
9446 ctx->sqo_blkcg_css = NULL;
9447 ret = -ENODEV;
9448 goto err;
9449 }
9450#endif
Jens Axboe6c271ce2019-01-10 11:22:30 -07009451
Jens Axboe2b188cc2019-01-07 10:46:33 -07009452 /*
9453 * Account memory _before_ installing the file descriptor. Once
9454 * the descriptor is installed, it can get closed at any time. Also
Jens Axboe2b188cc2019-01-07 10:46:33 -07009455 * do this before hitting the general error path, as ring freeing
Hristo Venev75b28af2019-08-26 17:23:46 +00009456 * will un-account as well.
9457 */
9458 io_account_mem(ctx, ring_pages(p->sq_entries, p->cq_entries),
9459 ACCT_LOCKED);
9460 ctx->limit_mem = limit_mem;
9461
9462 ret = io_allocate_scq_urings(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009463 if (ret)
9464 goto err;
Hristo Venev75b28af2019-08-26 17:23:46 +00009465
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009466 ret = io_sq_offload_create(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009467 if (ret)
9468 goto err;
9469
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009470 if (!(p->flags & IORING_SETUP_R_DISABLED))
9471 io_sq_offload_start(ctx);
9472
Jens Axboe2b188cc2019-01-07 10:46:33 -07009473 memset(&p->sq_off, 0, sizeof(p->sq_off));
9474 p->sq_off.head = offsetof(struct io_rings, sq.head);
9475 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
9476 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
9477 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
9478 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
9479 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
9480 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
9481
9482 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00009483 p->cq_off.head = offsetof(struct io_rings, cq.head);
9484 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
9485 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
9486 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
9487 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
9488 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +02009489 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -06009490
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009491 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
9492 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +08009493 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
Hao Xuc73ebb62020-11-03 10:54:37 +08009494 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
9495 IORING_FEAT_EXT_ARG;
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009496
9497 if (copy_to_user(params, p, sizeof(*p))) {
9498 ret = -EFAULT;
9499 goto err;
9500 }
Jens Axboed1719f72020-07-30 13:43:53 -06009501
9502 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -06009503 * Install ring fd as the very last thing, so we don't risk someone
9504 * having closed it before we finish setup
9505 */
9506 ret = io_uring_get_fd(ctx);
9507 if (ret < 0)
9508 goto err;
9509
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02009510 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009511 return ret;
9512err:
9513 io_ring_ctx_wait_and_kill(ctx);
9514 return ret;
9515}
9516
9517/*
9518 * Sets up an aio uring context, and returns the fd. Applications asks for a
9519 * ring size, we return the actual sq/cq ring sizes (among other things) in the
9520 * params structure passed in.
9521 */
9522static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
9523{
9524 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009525 int i;
9526
9527 if (copy_from_user(&p, params, sizeof(p)))
9528 return -EFAULT;
9529 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
9530 if (p.resv[i])
9531 return -EINVAL;
9532 }
9533
Jens Axboe6c271ce2019-01-10 11:22:30 -07009534 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07009535 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009536 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
9537 IORING_SETUP_R_DISABLED))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009538 return -EINVAL;
9539
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009540 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009541}
9542
9543SYSCALL_DEFINE2(io_uring_setup, u32, entries,
9544 struct io_uring_params __user *, params)
9545{
9546 return io_uring_setup(entries, params);
9547}
9548
Jens Axboe66f4af92020-01-16 15:36:52 -07009549static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
9550{
9551 struct io_uring_probe *p;
9552 size_t size;
9553 int i, ret;
9554
9555 size = struct_size(p, ops, nr_args);
9556 if (size == SIZE_MAX)
9557 return -EOVERFLOW;
9558 p = kzalloc(size, GFP_KERNEL);
9559 if (!p)
9560 return -ENOMEM;
9561
9562 ret = -EFAULT;
9563 if (copy_from_user(p, arg, size))
9564 goto out;
9565 ret = -EINVAL;
9566 if (memchr_inv(p, 0, size))
9567 goto out;
9568
9569 p->last_op = IORING_OP_LAST - 1;
9570 if (nr_args > IORING_OP_LAST)
9571 nr_args = IORING_OP_LAST;
9572
9573 for (i = 0; i < nr_args; i++) {
9574 p->ops[i].op = i;
9575 if (!io_op_defs[i].not_supported)
9576 p->ops[i].flags = IO_URING_OP_SUPPORTED;
9577 }
9578 p->ops_len = i;
9579
9580 ret = 0;
9581 if (copy_to_user(arg, p, size))
9582 ret = -EFAULT;
9583out:
9584 kfree(p);
9585 return ret;
9586}
9587
Jens Axboe071698e2020-01-28 10:04:42 -07009588static int io_register_personality(struct io_ring_ctx *ctx)
9589{
Jens Axboe1e6fa522020-10-15 08:46:24 -06009590 struct io_identity *id;
9591 int ret;
Jens Axboe071698e2020-01-28 10:04:42 -07009592
Jens Axboe1e6fa522020-10-15 08:46:24 -06009593 id = kmalloc(sizeof(*id), GFP_KERNEL);
9594 if (unlikely(!id))
9595 return -ENOMEM;
9596
9597 io_init_identity(id);
9598 id->creds = get_current_cred();
9599
9600 ret = idr_alloc_cyclic(&ctx->personality_idr, id, 1, USHRT_MAX, GFP_KERNEL);
9601 if (ret < 0) {
9602 put_cred(id->creds);
9603 kfree(id);
9604 }
9605 return ret;
Jens Axboe071698e2020-01-28 10:04:42 -07009606}
9607
9608static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
9609{
Jens Axboe1e6fa522020-10-15 08:46:24 -06009610 struct io_identity *iod;
Jens Axboe071698e2020-01-28 10:04:42 -07009611
Jens Axboe1e6fa522020-10-15 08:46:24 -06009612 iod = idr_remove(&ctx->personality_idr, id);
9613 if (iod) {
9614 put_cred(iod->creds);
9615 if (refcount_dec_and_test(&iod->count))
9616 kfree(iod);
Jens Axboe071698e2020-01-28 10:04:42 -07009617 return 0;
9618 }
9619
9620 return -EINVAL;
9621}
9622
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009623static int io_register_restrictions(struct io_ring_ctx *ctx, void __user *arg,
9624 unsigned int nr_args)
9625{
9626 struct io_uring_restriction *res;
9627 size_t size;
9628 int i, ret;
9629
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009630 /* Restrictions allowed only if rings started disabled */
9631 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
9632 return -EBADFD;
9633
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009634 /* We allow only a single restrictions registration */
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009635 if (ctx->restrictions.registered)
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009636 return -EBUSY;
9637
9638 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
9639 return -EINVAL;
9640
9641 size = array_size(nr_args, sizeof(*res));
9642 if (size == SIZE_MAX)
9643 return -EOVERFLOW;
9644
9645 res = memdup_user(arg, size);
9646 if (IS_ERR(res))
9647 return PTR_ERR(res);
9648
9649 ret = 0;
9650
9651 for (i = 0; i < nr_args; i++) {
9652 switch (res[i].opcode) {
9653 case IORING_RESTRICTION_REGISTER_OP:
9654 if (res[i].register_op >= IORING_REGISTER_LAST) {
9655 ret = -EINVAL;
9656 goto out;
9657 }
9658
9659 __set_bit(res[i].register_op,
9660 ctx->restrictions.register_op);
9661 break;
9662 case IORING_RESTRICTION_SQE_OP:
9663 if (res[i].sqe_op >= IORING_OP_LAST) {
9664 ret = -EINVAL;
9665 goto out;
9666 }
9667
9668 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
9669 break;
9670 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
9671 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
9672 break;
9673 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
9674 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
9675 break;
9676 default:
9677 ret = -EINVAL;
9678 goto out;
9679 }
9680 }
9681
9682out:
9683 /* Reset all restrictions if an error happened */
9684 if (ret != 0)
9685 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
9686 else
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009687 ctx->restrictions.registered = true;
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009688
9689 kfree(res);
9690 return ret;
9691}
9692
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009693static int io_register_enable_rings(struct io_ring_ctx *ctx)
9694{
9695 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
9696 return -EBADFD;
9697
9698 if (ctx->restrictions.registered)
9699 ctx->restricted = 1;
9700
9701 ctx->flags &= ~IORING_SETUP_R_DISABLED;
9702
9703 io_sq_offload_start(ctx);
9704
9705 return 0;
9706}
9707
Jens Axboe071698e2020-01-28 10:04:42 -07009708static bool io_register_op_must_quiesce(int op)
9709{
9710 switch (op) {
9711 case IORING_UNREGISTER_FILES:
9712 case IORING_REGISTER_FILES_UPDATE:
9713 case IORING_REGISTER_PROBE:
9714 case IORING_REGISTER_PERSONALITY:
9715 case IORING_UNREGISTER_PERSONALITY:
9716 return false;
9717 default:
9718 return true;
9719 }
9720}
9721
Jens Axboeedafcce2019-01-09 09:16:05 -07009722static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
9723 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06009724 __releases(ctx->uring_lock)
9725 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07009726{
9727 int ret;
9728
Jens Axboe35fa71a2019-04-22 10:23:23 -06009729 /*
9730 * We're inside the ring mutex, if the ref is already dying, then
9731 * someone else killed the ctx or is already going through
9732 * io_uring_register().
9733 */
9734 if (percpu_ref_is_dying(&ctx->refs))
9735 return -ENXIO;
9736
Jens Axboe071698e2020-01-28 10:04:42 -07009737 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009738 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06009739
Jens Axboe05f3fb32019-12-09 11:22:50 -07009740 /*
9741 * Drop uring mutex before waiting for references to exit. If
9742 * another thread is currently inside io_uring_enter() it might
9743 * need to grab the uring_lock to make progress. If we hold it
9744 * here across the drain wait, then we can deadlock. It's safe
9745 * to drop the mutex here, since no new references will come in
9746 * after we've killed the percpu ref.
9747 */
9748 mutex_unlock(&ctx->uring_lock);
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009749 do {
9750 ret = wait_for_completion_interruptible(&ctx->ref_comp);
9751 if (!ret)
9752 break;
Jens Axboeed6930c2020-10-08 19:09:46 -06009753 ret = io_run_task_work_sig();
9754 if (ret < 0)
9755 break;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009756 } while (1);
9757
Jens Axboe05f3fb32019-12-09 11:22:50 -07009758 mutex_lock(&ctx->uring_lock);
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009759
Jens Axboec1503682020-01-08 08:26:07 -07009760 if (ret) {
9761 percpu_ref_resurrect(&ctx->refs);
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009762 goto out_quiesce;
9763 }
9764 }
9765
9766 if (ctx->restricted) {
9767 if (opcode >= IORING_REGISTER_LAST) {
9768 ret = -EINVAL;
9769 goto out;
9770 }
9771
9772 if (!test_bit(opcode, ctx->restrictions.register_op)) {
9773 ret = -EACCES;
Jens Axboec1503682020-01-08 08:26:07 -07009774 goto out;
9775 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07009776 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009777
9778 switch (opcode) {
9779 case IORING_REGISTER_BUFFERS:
9780 ret = io_sqe_buffer_register(ctx, arg, nr_args);
9781 break;
9782 case IORING_UNREGISTER_BUFFERS:
9783 ret = -EINVAL;
9784 if (arg || nr_args)
9785 break;
9786 ret = io_sqe_buffer_unregister(ctx);
9787 break;
Jens Axboe6b063142019-01-10 22:13:58 -07009788 case IORING_REGISTER_FILES:
9789 ret = io_sqe_files_register(ctx, arg, nr_args);
9790 break;
9791 case IORING_UNREGISTER_FILES:
9792 ret = -EINVAL;
9793 if (arg || nr_args)
9794 break;
9795 ret = io_sqe_files_unregister(ctx);
9796 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06009797 case IORING_REGISTER_FILES_UPDATE:
9798 ret = io_sqe_files_update(ctx, arg, nr_args);
9799 break;
Jens Axboe9b402842019-04-11 11:45:41 -06009800 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07009801 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06009802 ret = -EINVAL;
9803 if (nr_args != 1)
9804 break;
9805 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07009806 if (ret)
9807 break;
9808 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
9809 ctx->eventfd_async = 1;
9810 else
9811 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06009812 break;
9813 case IORING_UNREGISTER_EVENTFD:
9814 ret = -EINVAL;
9815 if (arg || nr_args)
9816 break;
9817 ret = io_eventfd_unregister(ctx);
9818 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07009819 case IORING_REGISTER_PROBE:
9820 ret = -EINVAL;
9821 if (!arg || nr_args > 256)
9822 break;
9823 ret = io_probe(ctx, arg, nr_args);
9824 break;
Jens Axboe071698e2020-01-28 10:04:42 -07009825 case IORING_REGISTER_PERSONALITY:
9826 ret = -EINVAL;
9827 if (arg || nr_args)
9828 break;
9829 ret = io_register_personality(ctx);
9830 break;
9831 case IORING_UNREGISTER_PERSONALITY:
9832 ret = -EINVAL;
9833 if (arg)
9834 break;
9835 ret = io_unregister_personality(ctx, nr_args);
9836 break;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009837 case IORING_REGISTER_ENABLE_RINGS:
9838 ret = -EINVAL;
9839 if (arg || nr_args)
9840 break;
9841 ret = io_register_enable_rings(ctx);
9842 break;
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009843 case IORING_REGISTER_RESTRICTIONS:
9844 ret = io_register_restrictions(ctx, arg, nr_args);
9845 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009846 default:
9847 ret = -EINVAL;
9848 break;
9849 }
9850
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009851out:
Jens Axboe071698e2020-01-28 10:04:42 -07009852 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009853 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07009854 percpu_ref_reinit(&ctx->refs);
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009855out_quiesce:
Jens Axboe0f158b42020-05-14 17:18:39 -06009856 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07009857 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009858 return ret;
9859}
9860
9861SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
9862 void __user *, arg, unsigned int, nr_args)
9863{
9864 struct io_ring_ctx *ctx;
9865 long ret = -EBADF;
9866 struct fd f;
9867
9868 f = fdget(fd);
9869 if (!f.file)
9870 return -EBADF;
9871
9872 ret = -EOPNOTSUPP;
9873 if (f.file->f_op != &io_uring_fops)
9874 goto out_fput;
9875
9876 ctx = f.file->private_data;
9877
9878 mutex_lock(&ctx->uring_lock);
9879 ret = __io_uring_register(ctx, opcode, arg, nr_args);
9880 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02009881 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
9882 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07009883out_fput:
9884 fdput(f);
9885 return ret;
9886}
9887
Jens Axboe2b188cc2019-01-07 10:46:33 -07009888static int __init io_uring_init(void)
9889{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009890#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
9891 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
9892 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
9893} while (0)
9894
9895#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
9896 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
9897 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
9898 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
9899 BUILD_BUG_SQE_ELEM(1, __u8, flags);
9900 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
9901 BUILD_BUG_SQE_ELEM(4, __s32, fd);
9902 BUILD_BUG_SQE_ELEM(8, __u64, off);
9903 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
9904 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009905 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009906 BUILD_BUG_SQE_ELEM(24, __u32, len);
9907 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
9908 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
9909 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
9910 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +08009911 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
9912 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009913 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
9914 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
9915 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
9916 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
9917 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
9918 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
9919 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
9920 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009921 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009922 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
9923 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
9924 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009925 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009926
Jens Axboed3656342019-12-18 09:50:26 -07009927 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07009928 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009929 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
9930 return 0;
9931};
9932__initcall(io_uring_init);