blob: ca46f314640b150e97d38301d89ada6183497cf7 [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 Axboead3eb2c2019-12-18 17:12:20 -0700290 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700291 } ____cacheline_aligned_in_smp;
292
Hristo Venev75b28af2019-08-26 17:23:46 +0000293 struct io_rings *rings;
294
Jens Axboe2b188cc2019-01-07 10:46:33 -0700295 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600296 struct io_wq *io_wq;
Jens Axboe2aede0e2020-09-14 10:45:53 -0600297
298 /*
299 * For SQPOLL usage - we hold a reference to the parent task, so we
300 * have access to the ->files
301 */
302 struct task_struct *sqo_task;
303
304 /* Only used for accounting purposes */
305 struct mm_struct *mm_account;
306
Dennis Zhou91d8f512020-09-16 13:41:05 -0700307#ifdef CONFIG_BLK_CGROUP
308 struct cgroup_subsys_state *sqo_blkcg_css;
309#endif
310
Jens Axboe534ca6d2020-09-02 13:52:19 -0600311 struct io_sq_data *sq_data; /* if using sq thread polling */
312
Jens Axboe90554202020-09-03 12:12:41 -0600313 struct wait_queue_head sqo_sq_wait;
Jens Axboe69fb2132020-09-14 11:16:23 -0600314 struct list_head sqd_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700315
Jens Axboe6b063142019-01-10 22:13:58 -0700316 /*
317 * If used, fixed file set. Writers must ensure that ->refs is dead,
318 * readers must ensure that ->refs is alive as long as the file* is
319 * used. Only updated through io_uring_register(2).
320 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700321 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700322 unsigned nr_user_files;
323
Jens Axboeedafcce2019-01-09 09:16:05 -0700324 /* if used, fixed mapped user buffers */
325 unsigned nr_user_bufs;
326 struct io_mapped_ubuf *user_bufs;
327
Jens Axboe2b188cc2019-01-07 10:46:33 -0700328 struct user_struct *user;
329
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700330 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700331
Jens Axboe4ea33a92020-10-15 13:46:44 -0600332#ifdef CONFIG_AUDIT
333 kuid_t loginuid;
334 unsigned int sessionid;
335#endif
336
Jens Axboe0f158b42020-05-14 17:18:39 -0600337 struct completion ref_comp;
338 struct completion sq_thread_comp;
Jens Axboe206aefd2019-11-07 18:27:42 -0700339
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700340 /* if all else fails... */
341 struct io_kiocb *fallback_req;
342
Jens Axboe206aefd2019-11-07 18:27:42 -0700343#if defined(CONFIG_UNIX)
344 struct socket *ring_sock;
345#endif
346
Jens Axboe5a2e7452020-02-23 16:23:11 -0700347 struct idr io_buffer_idr;
348
Jens Axboe071698e2020-01-28 10:04:42 -0700349 struct idr personality_idr;
350
Jens Axboe206aefd2019-11-07 18:27:42 -0700351 struct {
352 unsigned cached_cq_tail;
353 unsigned cq_entries;
354 unsigned cq_mask;
355 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700356 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700357 struct wait_queue_head cq_wait;
358 struct fasync_struct *cq_fasync;
359 struct eventfd_ctx *cq_ev_fd;
360 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700361
362 struct {
363 struct mutex uring_lock;
364 wait_queue_head_t wait;
365 } ____cacheline_aligned_in_smp;
366
367 struct {
368 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700369
Jens Axboedef596e2019-01-09 08:59:42 -0700370 /*
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300371 * ->iopoll_list is protected by the ctx->uring_lock for
Jens Axboedef596e2019-01-09 08:59:42 -0700372 * io_uring instances that don't use IORING_SETUP_SQPOLL.
373 * For SQPOLL, only the single threaded io_sq_thread() will
374 * manipulate the list, hence no extra locking is needed there.
375 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300376 struct list_head iopoll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700377 struct hlist_head *cancel_hash;
378 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700379 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600380
381 spinlock_t inflight_lock;
382 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700383 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600384
Jens Axboe4a38aed22020-05-14 17:21:15 -0600385 struct delayed_work file_put_work;
386 struct llist_head file_put_llist;
387
Jens Axboe85faa7b2020-04-09 18:14:00 -0600388 struct work_struct exit_work;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200389 struct io_restriction restrictions;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700390};
391
Jens Axboe09bb8392019-03-13 12:39:28 -0600392/*
393 * First field must be the file pointer in all the
394 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
395 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700396struct io_poll_iocb {
397 struct file *file;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000398 struct wait_queue_head *head;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700399 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600400 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700401 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700402 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700403};
404
Pavel Begunkov018043b2020-10-27 23:17:18 +0000405struct io_poll_remove {
406 struct file *file;
407 u64 addr;
408};
409
Jens Axboeb5dba592019-12-11 14:02:38 -0700410struct io_close {
411 struct file *file;
412 struct file *put_file;
413 int fd;
414};
415
Jens Axboead8a48a2019-11-15 08:49:11 -0700416struct io_timeout_data {
417 struct io_kiocb *req;
418 struct hrtimer timer;
419 struct timespec64 ts;
420 enum hrtimer_mode mode;
421};
422
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700423struct io_accept {
424 struct file *file;
425 struct sockaddr __user *addr;
426 int __user *addr_len;
427 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600428 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700429};
430
431struct io_sync {
432 struct file *file;
433 loff_t len;
434 loff_t off;
435 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700436 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700437};
438
Jens Axboefbf23842019-12-17 18:45:56 -0700439struct io_cancel {
440 struct file *file;
441 u64 addr;
442};
443
Jens Axboeb29472e2019-12-17 18:50:29 -0700444struct io_timeout {
445 struct file *file;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +0300446 u32 off;
447 u32 target_seq;
Pavel Begunkov135fcde2020-07-13 23:37:12 +0300448 struct list_head list;
Pavel Begunkov90cd7e42020-10-27 23:25:36 +0000449 /* head of the link, used by linked timeouts only */
450 struct io_kiocb *head;
Jens Axboeb29472e2019-12-17 18:50:29 -0700451};
452
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100453struct io_timeout_rem {
454 struct file *file;
455 u64 addr;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000456
457 /* timeout update */
458 struct timespec64 ts;
459 u32 flags;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100460};
461
Jens Axboe9adbd452019-12-20 08:45:55 -0700462struct io_rw {
463 /* NOTE: kiocb has the file as the first member, so don't do it here */
464 struct kiocb kiocb;
465 u64 addr;
466 u64 len;
467};
468
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700469struct io_connect {
470 struct file *file;
471 struct sockaddr __user *addr;
472 int addr_len;
473};
474
Jens Axboee47293f2019-12-20 08:58:21 -0700475struct io_sr_msg {
476 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700477 union {
Pavel Begunkov270a5942020-07-12 20:41:04 +0300478 struct user_msghdr __user *umsg;
Jens Axboefddafac2020-01-04 20:19:44 -0700479 void __user *buf;
480 };
Jens Axboee47293f2019-12-20 08:58:21 -0700481 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700482 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700483 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700484 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700485};
486
Jens Axboe15b71ab2019-12-11 11:20:36 -0700487struct io_open {
488 struct file *file;
489 int dfd;
Jens Axboe944d1442020-11-13 16:48:44 -0700490 bool ignore_nonblock;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700491 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700492 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600493 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700494};
495
Jens Axboe05f3fb32019-12-09 11:22:50 -0700496struct io_files_update {
497 struct file *file;
498 u64 arg;
499 u32 nr_args;
500 u32 offset;
501};
502
Jens Axboe4840e412019-12-25 22:03:45 -0700503struct io_fadvise {
504 struct file *file;
505 u64 offset;
506 u32 len;
507 u32 advice;
508};
509
Jens Axboec1ca7572019-12-25 22:18:28 -0700510struct io_madvise {
511 struct file *file;
512 u64 addr;
513 u32 len;
514 u32 advice;
515};
516
Jens Axboe3e4827b2020-01-08 15:18:09 -0700517struct io_epoll {
518 struct file *file;
519 int epfd;
520 int op;
521 int fd;
522 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700523};
524
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300525struct io_splice {
526 struct file *file_out;
527 struct file *file_in;
528 loff_t off_out;
529 loff_t off_in;
530 u64 len;
531 unsigned int flags;
532};
533
Jens Axboeddf0322d2020-02-23 16:41:33 -0700534struct io_provide_buf {
535 struct file *file;
536 __u64 addr;
537 __s32 len;
538 __u32 bgid;
539 __u16 nbufs;
540 __u16 bid;
541};
542
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700543struct io_statx {
544 struct file *file;
545 int dfd;
546 unsigned int mask;
547 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700548 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700549 struct statx __user *buffer;
550};
551
Jens Axboe36f4fa62020-09-05 11:14:22 -0600552struct io_shutdown {
553 struct file *file;
554 int how;
555};
556
Jens Axboe80a261f2020-09-28 14:23:58 -0600557struct io_rename {
558 struct file *file;
559 int old_dfd;
560 int new_dfd;
561 struct filename *oldpath;
562 struct filename *newpath;
563 int flags;
564};
565
Jens Axboe14a11432020-09-28 14:27:37 -0600566struct io_unlink {
567 struct file *file;
568 int dfd;
569 int flags;
570 struct filename *filename;
571};
572
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300573struct io_completion {
574 struct file *file;
575 struct list_head list;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +0300576 int cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300577};
578
Jens Axboef499a022019-12-02 16:28:46 -0700579struct io_async_connect {
580 struct sockaddr_storage address;
581};
582
Jens Axboe03b12302019-12-02 18:50:25 -0700583struct io_async_msghdr {
584 struct iovec fast_iov[UIO_FASTIOV];
585 struct iovec *iov;
586 struct sockaddr __user *uaddr;
587 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700588 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700589};
590
Jens Axboef67676d2019-12-02 11:03:47 -0700591struct io_async_rw {
592 struct iovec fast_iov[UIO_FASTIOV];
Jens Axboeff6165b2020-08-13 09:47:43 -0600593 const struct iovec *free_iovec;
594 struct iov_iter iter;
Jens Axboe227c0c92020-08-13 11:51:40 -0600595 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600596 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700597};
598
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300599enum {
600 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
601 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
602 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
603 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
604 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700605 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300606
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300607 REQ_F_FAIL_LINK_BIT,
608 REQ_F_INFLIGHT_BIT,
609 REQ_F_CUR_POS_BIT,
610 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300611 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300612 REQ_F_ISREG_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300613 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700614 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700615 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600616 REQ_F_NO_FILE_TABLE_BIT,
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800617 REQ_F_WORK_INITIALIZED_BIT,
Pavel Begunkov900fad42020-10-19 16:39:16 +0100618 REQ_F_LTIMEOUT_ACTIVE_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700619
620 /* not a real bit, just to check we're not overflowing the space */
621 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300622};
623
624enum {
625 /* ctx owns file */
626 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
627 /* drain existing IO first */
628 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
629 /* linked sqes */
630 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
631 /* doesn't sever on completion < 0 */
632 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
633 /* IOSQE_ASYNC */
634 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700635 /* IOSQE_BUFFER_SELECT */
636 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300637
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300638 /* fail rest of links */
639 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
640 /* on inflight list */
641 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
642 /* read/write uses file position */
643 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
644 /* must not punt to workers */
645 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100646 /* has or had linked timeout */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300647 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300648 /* regular file */
649 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300650 /* needs cleanup */
651 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700652 /* already went through poll handler */
653 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700654 /* buffer already selected */
655 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600656 /* doesn't need file table for this request */
657 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800658 /* io_wq_work is initialized */
659 REQ_F_WORK_INITIALIZED = BIT(REQ_F_WORK_INITIALIZED_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100660 /* linked timeout is active, i.e. prepared by link's head */
661 REQ_F_LTIMEOUT_ACTIVE = BIT(REQ_F_LTIMEOUT_ACTIVE_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700662};
663
664struct async_poll {
665 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600666 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300667};
668
Jens Axboe09bb8392019-03-13 12:39:28 -0600669/*
670 * NOTE! Each of the iocb union members has the file pointer
671 * as the first entry in their struct definition. So you can
672 * access the file pointer through any of the sub-structs,
673 * or directly as just 'ki_filp' in this struct.
674 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700675struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700676 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600677 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700678 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700679 struct io_poll_iocb poll;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000680 struct io_poll_remove poll_remove;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700681 struct io_accept accept;
682 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700683 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700684 struct io_timeout timeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100685 struct io_timeout_rem timeout_rem;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700686 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700687 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700688 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700689 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700690 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700691 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700692 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700693 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300694 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700695 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700696 struct io_statx statx;
Jens Axboe36f4fa62020-09-05 11:14:22 -0600697 struct io_shutdown shutdown;
Jens Axboe80a261f2020-09-28 14:23:58 -0600698 struct io_rename rename;
Jens Axboe14a11432020-09-28 14:27:37 -0600699 struct io_unlink unlink;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300700 /* use only after cleaning per-op data, see io_clean_op() */
701 struct io_completion compl;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700702 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700703
Jens Axboee8c2bc12020-08-15 18:44:09 -0700704 /* opcode allocated if it needs to store data for async defer */
705 void *async_data;
Jens Axboed625c6e2019-12-17 19:53:05 -0700706 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800707 /* polled IO has completed */
708 u8 iopoll_completed;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700709
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700710 u16 buf_index;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300711 u32 result;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700712
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300713 struct io_ring_ctx *ctx;
714 unsigned int flags;
715 refcount_t refs;
716 struct task_struct *task;
717 u64 user_data;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700718
Pavel Begunkovf2f87372020-10-27 23:25:37 +0000719 struct io_kiocb *link;
Pavel Begunkov04157672020-10-27 23:25:38 +0000720 struct percpu_ref *fixed_file_refs;
Jens Axboed7718a92020-02-14 22:23:12 -0700721
Pavel Begunkovd21ffe72020-07-13 23:37:10 +0300722 /*
723 * 1. used with ctx->iopoll_list with reads/writes
724 * 2. to track reqs with ->files (see io_op_def::file_table)
725 */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300726 struct list_head inflight_entry;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300727 struct callback_head task_work;
728 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
729 struct hlist_node hash_node;
730 struct async_poll *apoll;
731 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700732};
733
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300734struct io_defer_entry {
735 struct list_head list;
736 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300737 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300738};
739
Jens Axboedef596e2019-01-09 08:59:42 -0700740#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700741
Jens Axboe013538b2020-06-22 09:29:15 -0600742struct io_comp_state {
743 unsigned int nr;
744 struct list_head list;
745 struct io_ring_ctx *ctx;
746};
747
Jens Axboe9a56a232019-01-09 09:06:50 -0700748struct io_submit_state {
749 struct blk_plug plug;
750
751 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700752 * io_kiocb alloc cache
753 */
754 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300755 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700756
Jens Axboe27926b62020-10-28 09:33:23 -0600757 bool plug_started;
758
Jens Axboe2579f912019-01-09 09:10:43 -0700759 /*
Jens Axboe013538b2020-06-22 09:29:15 -0600760 * Batch completion logic
761 */
762 struct io_comp_state comp;
763
764 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700765 * File reference cache
766 */
767 struct file *file;
768 unsigned int fd;
Pavel Begunkov6e1271e2020-11-20 15:50:50 +0000769 unsigned int file_refs;
Jens Axboe9a56a232019-01-09 09:06:50 -0700770 unsigned int ios_left;
771};
772
Jens Axboed3656342019-12-18 09:50:26 -0700773struct io_op_def {
Jens Axboed3656342019-12-18 09:50:26 -0700774 /* needs req->file assigned */
775 unsigned needs_file : 1;
Jens Axboefd2206e2020-06-02 16:40:47 -0600776 /* don't fail if file grab fails */
777 unsigned needs_file_no_error : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700778 /* hash wq insertion if file is a regular file */
779 unsigned hash_reg_file : 1;
780 /* unbound wq insertion if file is a non-regular file */
781 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700782 /* opcode is not supported by this kernel */
783 unsigned not_supported : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700784 /* set if opcode supports polled "wait" */
785 unsigned pollin : 1;
786 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700787 /* op supports buffer selection */
788 unsigned buffer_select : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700789 /* must always have async data allocated */
790 unsigned needs_async_data : 1;
Jens Axboe27926b62020-10-28 09:33:23 -0600791 /* should block plug */
792 unsigned plug : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700793 /* size of async data needed, if any */
794 unsigned short async_size;
Jens Axboe0f203762020-10-14 09:23:55 -0600795 unsigned work_flags;
Jens Axboed3656342019-12-18 09:50:26 -0700796};
797
Jens Axboe09186822020-10-13 15:01:40 -0600798static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300799 [IORING_OP_NOP] = {},
800 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700801 .needs_file = 1,
802 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700803 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700804 .buffer_select = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700805 .needs_async_data = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600806 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700807 .async_size = sizeof(struct io_async_rw),
Jens Axboe0f203762020-10-14 09:23:55 -0600808 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700809 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300810 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700811 .needs_file = 1,
812 .hash_reg_file = 1,
813 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700814 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700815 .needs_async_data = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600816 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700817 .async_size = sizeof(struct io_async_rw),
Jens Axboe69228332020-10-20 14:28:41 -0600818 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
819 IO_WQ_WORK_FSIZE,
Jens Axboed3656342019-12-18 09:50:26 -0700820 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300821 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700822 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600823 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700824 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300825 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700826 .needs_file = 1,
827 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700828 .pollin = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600829 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700830 .async_size = sizeof(struct io_async_rw),
Jens Axboe4017eb92020-10-22 14:14:12 -0600831 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700832 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300833 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700834 .needs_file = 1,
835 .hash_reg_file = 1,
836 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700837 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600838 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700839 .async_size = sizeof(struct io_async_rw),
Jens Axboe4017eb92020-10-22 14:14:12 -0600840 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_FSIZE |
841 IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700842 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300843 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700844 .needs_file = 1,
845 .unbound_nonreg_file = 1,
846 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300847 [IORING_OP_POLL_REMOVE] = {},
848 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700849 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600850 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700851 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300852 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700853 .needs_file = 1,
854 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700855 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700856 .needs_async_data = 1,
857 .async_size = sizeof(struct io_async_msghdr),
Pavel Begunkov10cad2c2020-11-07 13:20:39 +0000858 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700859 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300860 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700861 .needs_file = 1,
862 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700863 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700864 .buffer_select = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700865 .needs_async_data = 1,
866 .async_size = sizeof(struct io_async_msghdr),
Pavel Begunkov10cad2c2020-11-07 13:20:39 +0000867 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700868 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300869 [IORING_OP_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700870 .needs_async_data = 1,
871 .async_size = sizeof(struct io_timeout_data),
Jens Axboe0f203762020-10-14 09:23:55 -0600872 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700873 },
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000874 [IORING_OP_TIMEOUT_REMOVE] = {
875 /* used by timeout updates' prep() */
876 .work_flags = IO_WQ_WORK_MM,
877 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300878 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700879 .needs_file = 1,
880 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700881 .pollin = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600882 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES,
Jens Axboed3656342019-12-18 09:50:26 -0700883 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300884 [IORING_OP_ASYNC_CANCEL] = {},
885 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700886 .needs_async_data = 1,
887 .async_size = sizeof(struct io_timeout_data),
Jens Axboe0f203762020-10-14 09:23:55 -0600888 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700889 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300890 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700891 .needs_file = 1,
892 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700893 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700894 .needs_async_data = 1,
895 .async_size = sizeof(struct io_async_connect),
Jens Axboe0f203762020-10-14 09:23:55 -0600896 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700897 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300898 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700899 .needs_file = 1,
Jens Axboe69228332020-10-20 14:28:41 -0600900 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_FSIZE,
Jens Axboed3656342019-12-18 09:50:26 -0700901 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300902 [IORING_OP_OPENAT] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600903 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_BLKCG |
Jens Axboe14587a462020-09-05 11:36:08 -0600904 IO_WQ_WORK_FS | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700905 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300906 [IORING_OP_CLOSE] = {
Jens Axboefd2206e2020-06-02 16:40:47 -0600907 .needs_file = 1,
908 .needs_file_no_error = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600909 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700910 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300911 [IORING_OP_FILES_UPDATE] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600912 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700913 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300914 [IORING_OP_STATX] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600915 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_MM |
916 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700917 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300918 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700919 .needs_file = 1,
920 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700921 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700922 .buffer_select = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600923 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700924 .async_size = sizeof(struct io_async_rw),
Jens Axboe0f203762020-10-14 09:23:55 -0600925 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700926 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300927 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700928 .needs_file = 1,
929 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700930 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600931 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700932 .async_size = sizeof(struct io_async_rw),
Jens Axboe69228332020-10-20 14:28:41 -0600933 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
934 IO_WQ_WORK_FSIZE,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700935 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300936 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700937 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600938 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboe4840e412019-12-25 22:03:45 -0700939 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300940 [IORING_OP_MADVISE] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600941 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboec1ca7572019-12-25 22:18:28 -0700942 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300943 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700944 .needs_file = 1,
945 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700946 .pollout = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600947 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboefddafac2020-01-04 20:19:44 -0700948 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300949 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700950 .needs_file = 1,
951 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700952 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700953 .buffer_select = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600954 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboefddafac2020-01-04 20:19:44 -0700955 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300956 [IORING_OP_OPENAT2] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600957 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_FS |
Jens Axboe14587a462020-09-05 11:36:08 -0600958 IO_WQ_WORK_BLKCG | IO_WQ_WORK_MM,
Jens Axboecebdb982020-01-08 17:59:24 -0700959 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700960 [IORING_OP_EPOLL_CTL] = {
961 .unbound_nonreg_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600962 .work_flags = IO_WQ_WORK_FILES,
Jens Axboe3e4827b2020-01-08 15:18:09 -0700963 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300964 [IORING_OP_SPLICE] = {
965 .needs_file = 1,
966 .hash_reg_file = 1,
967 .unbound_nonreg_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600968 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700969 },
970 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700971 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +0300972 [IORING_OP_TEE] = {
973 .needs_file = 1,
974 .hash_reg_file = 1,
975 .unbound_nonreg_file = 1,
976 },
Jens Axboe36f4fa62020-09-05 11:14:22 -0600977 [IORING_OP_SHUTDOWN] = {
978 .needs_file = 1,
979 },
Jens Axboe80a261f2020-09-28 14:23:58 -0600980 [IORING_OP_RENAMEAT] = {
981 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES |
982 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
983 },
Jens Axboe14a11432020-09-28 14:27:37 -0600984 [IORING_OP_UNLINKAT] = {
985 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES |
986 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
987 },
Jens Axboed3656342019-12-18 09:50:26 -0700988};
989
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -0700990enum io_mem_account {
991 ACCT_LOCKED,
992 ACCT_PINNED,
993};
994
Pavel Begunkov1ffc5422020-12-30 21:34:15 +0000995static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node);
996static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
997 struct io_ring_ctx *ctx);
998
Pavel Begunkov81b68a52020-07-30 18:43:46 +0300999static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
1000 struct io_comp_state *cs);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001001static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001002static void io_put_req(struct io_kiocb *req);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001003static void io_put_req_deferred(struct io_kiocb *req, int nr);
Jens Axboec40f6372020-06-25 15:39:59 -06001004static void io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001005static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
Jens Axboe7271ef32020-08-10 09:55:22 -06001006static void __io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001007static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -07001008static int __io_sqe_files_update(struct io_ring_ctx *ctx,
1009 struct io_uring_files_update *ip,
1010 unsigned nr_args);
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001011static void __io_clean_op(struct io_kiocb *req);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01001012static struct file *io_file_get(struct io_submit_state *state,
1013 struct io_kiocb *req, int fd, bool fixed);
Pavel Begunkovc1379e22020-09-30 22:57:56 +03001014static void __io_queue_sqe(struct io_kiocb *req, struct io_comp_state *cs);
Jens Axboe4349f302020-07-09 15:07:01 -06001015static void io_file_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -06001016
Jens Axboeb63534c2020-06-04 11:28:00 -06001017static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1018 struct iovec **iovec, struct iov_iter *iter,
1019 bool needs_lock);
Jens Axboeff6165b2020-08-13 09:47:43 -06001020static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
1021 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06001022 struct iov_iter *iter, bool force);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001023
1024static struct kmem_cache *req_cachep;
1025
Jens Axboe09186822020-10-13 15:01:40 -06001026static const struct file_operations io_uring_fops;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001027
1028struct sock *io_uring_get_socket(struct file *file)
1029{
1030#if defined(CONFIG_UNIX)
1031 if (file->f_op == &io_uring_fops) {
1032 struct io_ring_ctx *ctx = file->private_data;
1033
1034 return ctx->ring_sock->sk;
1035 }
1036#endif
1037 return NULL;
1038}
1039EXPORT_SYMBOL(io_uring_get_socket);
1040
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001041#define io_for_each_link(pos, head) \
1042 for (pos = (head); pos; pos = pos->link)
1043
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001044static inline void io_clean_op(struct io_kiocb *req)
1045{
Pavel Begunkovbb175342020-08-20 11:33:35 +03001046 if (req->flags & (REQ_F_NEED_CLEANUP | REQ_F_BUFFER_SELECTED |
1047 REQ_F_INFLIGHT))
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001048 __io_clean_op(req);
1049}
1050
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001051static inline void io_set_resource_node(struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001052{
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001053 struct io_ring_ctx *ctx = req->ctx;
1054
1055 if (!req->fixed_file_refs) {
1056 req->fixed_file_refs = &ctx->file_data->node->refs;
1057 percpu_ref_get(req->fixed_file_refs);
1058 }
1059}
1060
Pavel Begunkov08d23632020-11-06 13:00:22 +00001061static bool io_match_task(struct io_kiocb *head,
1062 struct task_struct *task,
1063 struct files_struct *files)
1064{
1065 struct io_kiocb *req;
1066
1067 if (task && head->task != task)
1068 return false;
1069 if (!files)
1070 return true;
1071
1072 io_for_each_link(req, head) {
1073 if ((req->flags & REQ_F_WORK_INITIALIZED) &&
1074 (req->work.flags & IO_WQ_WORK_FILES) &&
1075 req->work.identity->files == files)
1076 return true;
1077 }
1078 return false;
1079}
1080
Jens Axboe28cea78a2020-09-14 10:51:17 -06001081static void io_sq_thread_drop_mm_files(void)
Jens Axboec40f6372020-06-25 15:39:59 -06001082{
Jens Axboe28cea78a2020-09-14 10:51:17 -06001083 struct files_struct *files = current->files;
Jens Axboec40f6372020-06-25 15:39:59 -06001084 struct mm_struct *mm = current->mm;
1085
1086 if (mm) {
1087 kthread_unuse_mm(mm);
1088 mmput(mm);
Jens Axboe4b70cf92020-11-02 10:39:05 -07001089 current->mm = NULL;
Jens Axboec40f6372020-06-25 15:39:59 -06001090 }
Jens Axboe28cea78a2020-09-14 10:51:17 -06001091 if (files) {
1092 struct nsproxy *nsproxy = current->nsproxy;
1093
1094 task_lock(current);
1095 current->files = NULL;
1096 current->nsproxy = NULL;
1097 task_unlock(current);
1098 put_files_struct(files);
1099 put_nsproxy(nsproxy);
1100 }
1101}
1102
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001103static int __io_sq_thread_acquire_files(struct io_ring_ctx *ctx)
Jens Axboe28cea78a2020-09-14 10:51:17 -06001104{
1105 if (!current->files) {
1106 struct files_struct *files;
1107 struct nsproxy *nsproxy;
1108
1109 task_lock(ctx->sqo_task);
1110 files = ctx->sqo_task->files;
1111 if (!files) {
1112 task_unlock(ctx->sqo_task);
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001113 return -EOWNERDEAD;
Jens Axboe28cea78a2020-09-14 10:51:17 -06001114 }
1115 atomic_inc(&files->count);
1116 get_nsproxy(ctx->sqo_task->nsproxy);
1117 nsproxy = ctx->sqo_task->nsproxy;
1118 task_unlock(ctx->sqo_task);
1119
1120 task_lock(current);
1121 current->files = files;
1122 current->nsproxy = nsproxy;
1123 task_unlock(current);
1124 }
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001125 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001126}
1127
1128static int __io_sq_thread_acquire_mm(struct io_ring_ctx *ctx)
1129{
Jens Axboe4b70cf92020-11-02 10:39:05 -07001130 struct mm_struct *mm;
1131
1132 if (current->mm)
1133 return 0;
1134
1135 /* Should never happen */
1136 if (unlikely(!(ctx->flags & IORING_SETUP_SQPOLL)))
1137 return -EFAULT;
1138
1139 task_lock(ctx->sqo_task);
1140 mm = ctx->sqo_task->mm;
1141 if (unlikely(!mm || !mmget_not_zero(mm)))
1142 mm = NULL;
1143 task_unlock(ctx->sqo_task);
1144
1145 if (mm) {
1146 kthread_use_mm(mm);
1147 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001148 }
1149
Jens Axboe4b70cf92020-11-02 10:39:05 -07001150 return -EFAULT;
Jens Axboec40f6372020-06-25 15:39:59 -06001151}
1152
Jens Axboe28cea78a2020-09-14 10:51:17 -06001153static int io_sq_thread_acquire_mm_files(struct io_ring_ctx *ctx,
1154 struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001155{
Jens Axboe28cea78a2020-09-14 10:51:17 -06001156 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001157 int ret;
Jens Axboe28cea78a2020-09-14 10:51:17 -06001158
1159 if (def->work_flags & IO_WQ_WORK_MM) {
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001160 ret = __io_sq_thread_acquire_mm(ctx);
Jens Axboe28cea78a2020-09-14 10:51:17 -06001161 if (unlikely(ret))
1162 return ret;
1163 }
1164
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001165 if (def->needs_file || (def->work_flags & IO_WQ_WORK_FILES)) {
1166 ret = __io_sq_thread_acquire_files(ctx);
1167 if (unlikely(ret))
1168 return ret;
1169 }
Jens Axboe28cea78a2020-09-14 10:51:17 -06001170
1171 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001172}
1173
Dennis Zhou91d8f512020-09-16 13:41:05 -07001174static void io_sq_thread_associate_blkcg(struct io_ring_ctx *ctx,
1175 struct cgroup_subsys_state **cur_css)
1176
1177{
1178#ifdef CONFIG_BLK_CGROUP
1179 /* puts the old one when swapping */
1180 if (*cur_css != ctx->sqo_blkcg_css) {
1181 kthread_associate_blkcg(ctx->sqo_blkcg_css);
1182 *cur_css = ctx->sqo_blkcg_css;
1183 }
1184#endif
1185}
1186
1187static void io_sq_thread_unassociate_blkcg(void)
1188{
1189#ifdef CONFIG_BLK_CGROUP
1190 kthread_associate_blkcg(NULL);
1191#endif
1192}
1193
Jens Axboec40f6372020-06-25 15:39:59 -06001194static inline void req_set_fail_links(struct io_kiocb *req)
1195{
1196 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1197 req->flags |= REQ_F_FAIL_LINK;
1198}
Jens Axboe4a38aed22020-05-14 17:21:15 -06001199
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001200/*
Jens Axboe1e6fa522020-10-15 08:46:24 -06001201 * None of these are dereferenced, they are simply used to check if any of
1202 * them have changed. If we're under current and check they are still the
1203 * same, we're fine to grab references to them for actual out-of-line use.
1204 */
1205static void io_init_identity(struct io_identity *id)
1206{
1207 id->files = current->files;
1208 id->mm = current->mm;
1209#ifdef CONFIG_BLK_CGROUP
1210 rcu_read_lock();
1211 id->blkcg_css = blkcg_css();
1212 rcu_read_unlock();
1213#endif
1214 id->creds = current_cred();
1215 id->nsproxy = current->nsproxy;
1216 id->fs = current->fs;
1217 id->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboe4ea33a92020-10-15 13:46:44 -06001218#ifdef CONFIG_AUDIT
1219 id->loginuid = current->loginuid;
1220 id->sessionid = current->sessionid;
1221#endif
Jens Axboe1e6fa522020-10-15 08:46:24 -06001222 refcount_set(&id->count, 1);
1223}
1224
Pavel Begunkovec99ca62020-10-18 10:17:38 +01001225static inline void __io_req_init_async(struct io_kiocb *req)
1226{
1227 memset(&req->work, 0, sizeof(req->work));
1228 req->flags |= REQ_F_WORK_INITIALIZED;
1229}
1230
Jens Axboe1e6fa522020-10-15 08:46:24 -06001231/*
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001232 * Note: must call io_req_init_async() for the first time you
1233 * touch any members of io_wq_work.
1234 */
1235static inline void io_req_init_async(struct io_kiocb *req)
1236{
Jens Axboe500a3732020-10-15 17:38:03 -06001237 struct io_uring_task *tctx = current->io_uring;
1238
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001239 if (req->flags & REQ_F_WORK_INITIALIZED)
1240 return;
1241
Pavel Begunkovec99ca62020-10-18 10:17:38 +01001242 __io_req_init_async(req);
Jens Axboe500a3732020-10-15 17:38:03 -06001243
1244 /* Grab a ref if this isn't our static identity */
1245 req->work.identity = tctx->identity;
1246 if (tctx->identity != &tctx->__identity)
1247 refcount_inc(&req->work.identity->count);
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001248}
1249
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03001250static inline bool io_async_submit(struct io_ring_ctx *ctx)
1251{
1252 return ctx->flags & IORING_SETUP_SQPOLL;
1253}
1254
Jens Axboe2b188cc2019-01-07 10:46:33 -07001255static void io_ring_ctx_ref_free(struct percpu_ref *ref)
1256{
1257 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1258
Jens Axboe0f158b42020-05-14 17:18:39 -06001259 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001260}
1261
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001262static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1263{
1264 return !req->timeout.off;
1265}
1266
Jens Axboe2b188cc2019-01-07 10:46:33 -07001267static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
1268{
1269 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001270 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001271
1272 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1273 if (!ctx)
1274 return NULL;
1275
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001276 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
1277 if (!ctx->fallback_req)
1278 goto err;
1279
Jens Axboe78076bb2019-12-04 19:56:40 -07001280 /*
1281 * Use 5 bits less than the max cq entries, that should give us around
1282 * 32 entries per hash list if totally full and uniformly spread.
1283 */
1284 hash_bits = ilog2(p->cq_entries);
1285 hash_bits -= 5;
1286 if (hash_bits <= 0)
1287 hash_bits = 1;
1288 ctx->cancel_hash_bits = hash_bits;
1289 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1290 GFP_KERNEL);
1291 if (!ctx->cancel_hash)
1292 goto err;
1293 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1294
Roman Gushchin21482892019-05-07 10:01:48 -07001295 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001296 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1297 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001298
1299 ctx->flags = p->flags;
Jens Axboe90554202020-09-03 12:12:41 -06001300 init_waitqueue_head(&ctx->sqo_sq_wait);
Jens Axboe69fb2132020-09-14 11:16:23 -06001301 INIT_LIST_HEAD(&ctx->sqd_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001302 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001303 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001304 init_completion(&ctx->ref_comp);
1305 init_completion(&ctx->sq_thread_comp);
Jens Axboe5a2e7452020-02-23 16:23:11 -07001306 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -07001307 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001308 mutex_init(&ctx->uring_lock);
1309 init_waitqueue_head(&ctx->wait);
1310 spin_lock_init(&ctx->completion_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03001311 INIT_LIST_HEAD(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001312 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001313 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -06001314 spin_lock_init(&ctx->inflight_lock);
1315 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe4a38aed22020-05-14 17:21:15 -06001316 INIT_DELAYED_WORK(&ctx->file_put_work, io_file_put_work);
1317 init_llist_head(&ctx->file_put_llist);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001318 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001319err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001320 if (ctx->fallback_req)
1321 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe78076bb2019-12-04 19:56:40 -07001322 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001323 kfree(ctx);
1324 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001325}
1326
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001327static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001328{
Jens Axboe2bc99302020-07-09 09:43:27 -06001329 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1330 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001331
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001332 return seq != ctx->cached_cq_tail
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001333 + READ_ONCE(ctx->cached_cq_overflow);
Jens Axboe2bc99302020-07-09 09:43:27 -06001334 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001335
Bob Liu9d858b22019-11-13 18:06:25 +08001336 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001337}
1338
Jens Axboede0617e2019-04-06 21:51:27 -06001339static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001340{
Hristo Venev75b28af2019-08-26 17:23:46 +00001341 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001342
Pavel Begunkov07910152020-01-17 03:52:46 +03001343 /* order cqe stores with ring update */
1344 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001345
Pavel Begunkov07910152020-01-17 03:52:46 +03001346 if (wq_has_sleeper(&ctx->cq_wait)) {
1347 wake_up_interruptible(&ctx->cq_wait);
1348 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001349 }
1350}
1351
Jens Axboe5c3462c2020-10-15 09:02:33 -06001352static void io_put_identity(struct io_uring_task *tctx, struct io_kiocb *req)
Jens Axboe1e6fa522020-10-15 08:46:24 -06001353{
Jens Axboe500a3732020-10-15 17:38:03 -06001354 if (req->work.identity == &tctx->__identity)
Jens Axboe1e6fa522020-10-15 08:46:24 -06001355 return;
1356 if (refcount_dec_and_test(&req->work.identity->count))
1357 kfree(req->work.identity);
1358}
1359
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001360static void io_req_clean_work(struct io_kiocb *req)
Jens Axboecccf0ee2020-01-27 16:34:48 -07001361{
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001362 if (!(req->flags & REQ_F_WORK_INITIALIZED))
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001363 return;
Jens Axboe51a4cc12020-08-10 10:55:56 -06001364
1365 req->flags &= ~REQ_F_WORK_INITIALIZED;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001366
Jens Axboedfead8a2020-10-14 10:12:37 -06001367 if (req->work.flags & IO_WQ_WORK_MM) {
Jens Axboe98447d62020-10-14 10:48:51 -06001368 mmdrop(req->work.identity->mm);
Jens Axboedfead8a2020-10-14 10:12:37 -06001369 req->work.flags &= ~IO_WQ_WORK_MM;
Jens Axboecccf0ee2020-01-27 16:34:48 -07001370 }
Dennis Zhou91d8f512020-09-16 13:41:05 -07001371#ifdef CONFIG_BLK_CGROUP
Jens Axboedfead8a2020-10-14 10:12:37 -06001372 if (req->work.flags & IO_WQ_WORK_BLKCG) {
Jens Axboe98447d62020-10-14 10:48:51 -06001373 css_put(req->work.identity->blkcg_css);
Jens Axboedfead8a2020-10-14 10:12:37 -06001374 req->work.flags &= ~IO_WQ_WORK_BLKCG;
Jens Axboecccf0ee2020-01-27 16:34:48 -07001375 }
Jens Axboedfead8a2020-10-14 10:12:37 -06001376#endif
1377 if (req->work.flags & IO_WQ_WORK_CREDS) {
Jens Axboe98447d62020-10-14 10:48:51 -06001378 put_cred(req->work.identity->creds);
Jens Axboedfead8a2020-10-14 10:12:37 -06001379 req->work.flags &= ~IO_WQ_WORK_CREDS;
1380 }
1381 if (req->work.flags & IO_WQ_WORK_FS) {
Jens Axboe98447d62020-10-14 10:48:51 -06001382 struct fs_struct *fs = req->work.identity->fs;
Jens Axboeff002b32020-02-07 16:05:21 -07001383
Jens Axboe98447d62020-10-14 10:48:51 -06001384 spin_lock(&req->work.identity->fs->lock);
Jens Axboeff002b32020-02-07 16:05:21 -07001385 if (--fs->users)
1386 fs = NULL;
Jens Axboe98447d62020-10-14 10:48:51 -06001387 spin_unlock(&req->work.identity->fs->lock);
Jens Axboeff002b32020-02-07 16:05:21 -07001388 if (fs)
1389 free_fs_struct(fs);
Jens Axboedfead8a2020-10-14 10:12:37 -06001390 req->work.flags &= ~IO_WQ_WORK_FS;
Jens Axboeff002b32020-02-07 16:05:21 -07001391 }
Jens Axboe51a4cc12020-08-10 10:55:56 -06001392
Jens Axboe5c3462c2020-10-15 09:02:33 -06001393 io_put_identity(req->task->io_uring, req);
Jens Axboe1e6fa522020-10-15 08:46:24 -06001394}
1395
1396/*
1397 * Create a private copy of io_identity, since some fields don't match
1398 * the current context.
1399 */
1400static bool io_identity_cow(struct io_kiocb *req)
1401{
Jens Axboe5c3462c2020-10-15 09:02:33 -06001402 struct io_uring_task *tctx = current->io_uring;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001403 const struct cred *creds = NULL;
1404 struct io_identity *id;
1405
1406 if (req->work.flags & IO_WQ_WORK_CREDS)
1407 creds = req->work.identity->creds;
1408
1409 id = kmemdup(req->work.identity, sizeof(*id), GFP_KERNEL);
1410 if (unlikely(!id)) {
1411 req->work.flags |= IO_WQ_WORK_CANCEL;
1412 return false;
1413 }
1414
1415 /*
1416 * We can safely just re-init the creds we copied Either the field
1417 * matches the current one, or we haven't grabbed it yet. The only
1418 * exception is ->creds, through registered personalities, so handle
1419 * that one separately.
1420 */
1421 io_init_identity(id);
1422 if (creds)
Pavel Begunkove8c954d2020-12-06 22:22:46 +00001423 id->creds = creds;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001424
1425 /* add one for this request */
1426 refcount_inc(&id->count);
1427
Jens Axboecb8a8ae2020-11-03 12:19:07 -07001428 /* drop tctx and req identity references, if needed */
1429 if (tctx->identity != &tctx->__identity &&
1430 refcount_dec_and_test(&tctx->identity->count))
1431 kfree(tctx->identity);
1432 if (req->work.identity != &tctx->__identity &&
1433 refcount_dec_and_test(&req->work.identity->count))
Jens Axboe1e6fa522020-10-15 08:46:24 -06001434 kfree(req->work.identity);
1435
1436 req->work.identity = id;
Jens Axboe500a3732020-10-15 17:38:03 -06001437 tctx->identity = id;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001438 return true;
1439}
1440
1441static bool io_grab_identity(struct io_kiocb *req)
1442{
1443 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe5c3462c2020-10-15 09:02:33 -06001444 struct io_identity *id = req->work.identity;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001445 struct io_ring_ctx *ctx = req->ctx;
1446
Jens Axboe69228332020-10-20 14:28:41 -06001447 if (def->work_flags & IO_WQ_WORK_FSIZE) {
1448 if (id->fsize != rlimit(RLIMIT_FSIZE))
1449 return false;
1450 req->work.flags |= IO_WQ_WORK_FSIZE;
1451 }
Jens Axboe1e6fa522020-10-15 08:46:24 -06001452#ifdef CONFIG_BLK_CGROUP
1453 if (!(req->work.flags & IO_WQ_WORK_BLKCG) &&
1454 (def->work_flags & IO_WQ_WORK_BLKCG)) {
1455 rcu_read_lock();
1456 if (id->blkcg_css != blkcg_css()) {
1457 rcu_read_unlock();
1458 return false;
1459 }
1460 /*
1461 * This should be rare, either the cgroup is dying or the task
1462 * is moving cgroups. Just punt to root for the handful of ios.
1463 */
1464 if (css_tryget_online(id->blkcg_css))
1465 req->work.flags |= IO_WQ_WORK_BLKCG;
1466 rcu_read_unlock();
1467 }
1468#endif
1469 if (!(req->work.flags & IO_WQ_WORK_CREDS)) {
1470 if (id->creds != current_cred())
1471 return false;
1472 get_cred(id->creds);
1473 req->work.flags |= IO_WQ_WORK_CREDS;
1474 }
Jens Axboe4ea33a92020-10-15 13:46:44 -06001475#ifdef CONFIG_AUDIT
1476 if (!uid_eq(current->loginuid, id->loginuid) ||
1477 current->sessionid != id->sessionid)
1478 return false;
1479#endif
Jens Axboe1e6fa522020-10-15 08:46:24 -06001480 if (!(req->work.flags & IO_WQ_WORK_FS) &&
1481 (def->work_flags & IO_WQ_WORK_FS)) {
1482 if (current->fs != id->fs)
1483 return false;
1484 spin_lock(&id->fs->lock);
1485 if (!id->fs->in_exec) {
1486 id->fs->users++;
1487 req->work.flags |= IO_WQ_WORK_FS;
1488 } else {
1489 req->work.flags |= IO_WQ_WORK_CANCEL;
1490 }
1491 spin_unlock(&current->fs->lock);
1492 }
Pavel Begunkovaf604702020-11-25 18:41:28 +00001493 if (!(req->work.flags & IO_WQ_WORK_FILES) &&
1494 (def->work_flags & IO_WQ_WORK_FILES) &&
1495 !(req->flags & REQ_F_NO_FILE_TABLE)) {
1496 if (id->files != current->files ||
1497 id->nsproxy != current->nsproxy)
1498 return false;
1499 atomic_inc(&id->files->count);
1500 get_nsproxy(id->nsproxy);
1501 req->flags |= REQ_F_INFLIGHT;
1502
1503 spin_lock_irq(&ctx->inflight_lock);
1504 list_add(&req->inflight_entry, &ctx->inflight_list);
1505 spin_unlock_irq(&ctx->inflight_lock);
1506 req->work.flags |= IO_WQ_WORK_FILES;
1507 }
Jens Axboe77788772020-12-29 10:50:46 -07001508 if (!(req->work.flags & IO_WQ_WORK_MM) &&
1509 (def->work_flags & IO_WQ_WORK_MM)) {
1510 if (id->mm != current->mm)
1511 return false;
1512 mmgrab(id->mm);
1513 req->work.flags |= IO_WQ_WORK_MM;
1514 }
Jens Axboe1e6fa522020-10-15 08:46:24 -06001515
1516 return true;
Jens Axboe561fb042019-10-24 07:25:42 -06001517}
1518
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001519static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001520{
Jens Axboed3656342019-12-18 09:50:26 -07001521 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov23329512020-10-10 18:34:06 +01001522 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5c3462c2020-10-15 09:02:33 -06001523 struct io_identity *id;
Jens Axboe54a91f32019-09-10 09:15:04 -06001524
Pavel Begunkov16d59802020-07-12 16:16:47 +03001525 io_req_init_async(req);
Jens Axboe5c3462c2020-10-15 09:02:33 -06001526 id = req->work.identity;
Pavel Begunkov16d59802020-07-12 16:16:47 +03001527
Pavel Begunkovfeaadc42020-10-22 16:47:16 +01001528 if (req->flags & REQ_F_FORCE_ASYNC)
1529 req->work.flags |= IO_WQ_WORK_CONCURRENT;
1530
Jens Axboed3656342019-12-18 09:50:26 -07001531 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov23329512020-10-10 18:34:06 +01001532 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001533 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001534 } else {
1535 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001536 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001537 }
Pavel Begunkov23329512020-10-10 18:34:06 +01001538
Jens Axboe1e6fa522020-10-15 08:46:24 -06001539 /* if we fail grabbing identity, we must COW, regrab, and retry */
1540 if (io_grab_identity(req))
1541 return;
1542
1543 if (!io_identity_cow(req))
1544 return;
1545
1546 /* can't fail at this point */
1547 if (!io_grab_identity(req))
1548 WARN_ON(1);
Jens Axboe561fb042019-10-24 07:25:42 -06001549}
1550
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001551static void io_prep_async_link(struct io_kiocb *req)
1552{
1553 struct io_kiocb *cur;
1554
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001555 io_for_each_link(cur, req)
1556 io_prep_async_work(cur);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001557}
1558
Jens Axboe7271ef32020-08-10 09:55:22 -06001559static struct io_kiocb *__io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001560{
Jackie Liua197f662019-11-08 08:09:12 -07001561 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001562 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001563
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001564 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1565 &req->work, req->flags);
1566 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001567 return link;
Jens Axboe18d9be12019-09-10 09:13:05 -06001568}
1569
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001570static void io_queue_async_work(struct io_kiocb *req)
1571{
Jens Axboe7271ef32020-08-10 09:55:22 -06001572 struct io_kiocb *link;
1573
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001574 /* init ->work of the whole link before punting */
1575 io_prep_async_link(req);
Jens Axboe7271ef32020-08-10 09:55:22 -06001576 link = __io_queue_async_work(req);
1577
1578 if (link)
1579 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001580}
1581
Jens Axboe5262f562019-09-17 12:26:57 -06001582static void io_kill_timeout(struct io_kiocb *req)
1583{
Jens Axboee8c2bc12020-08-15 18:44:09 -07001584 struct io_timeout_data *io = req->async_data;
Jens Axboe5262f562019-09-17 12:26:57 -06001585 int ret;
1586
Jens Axboee8c2bc12020-08-15 18:44:09 -07001587 ret = hrtimer_try_to_cancel(&io->timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001588 if (ret != -1) {
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001589 atomic_set(&req->ctx->cq_timeouts,
1590 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001591 list_del_init(&req->timeout.list);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001592 io_cqring_fill_event(req, 0);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001593 io_put_req_deferred(req, 1);
Jens Axboe5262f562019-09-17 12:26:57 -06001594 }
1595}
1596
Jens Axboe76e1b642020-09-26 15:05:03 -06001597/*
1598 * Returns true if we found and killed one or more timeouts
1599 */
Pavel Begunkov6b819282020-11-06 13:00:25 +00001600static bool io_kill_timeouts(struct io_ring_ctx *ctx, struct task_struct *tsk,
1601 struct files_struct *files)
Jens Axboe5262f562019-09-17 12:26:57 -06001602{
1603 struct io_kiocb *req, *tmp;
Jens Axboe76e1b642020-09-26 15:05:03 -06001604 int canceled = 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001605
1606 spin_lock_irq(&ctx->completion_lock);
Jens Axboef3606e32020-09-22 08:18:24 -06001607 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Pavel Begunkov6b819282020-11-06 13:00:25 +00001608 if (io_match_task(req, tsk, files)) {
Jens Axboef3606e32020-09-22 08:18:24 -06001609 io_kill_timeout(req);
Jens Axboe76e1b642020-09-26 15:05:03 -06001610 canceled++;
1611 }
Jens Axboef3606e32020-09-22 08:18:24 -06001612 }
Jens Axboe5262f562019-09-17 12:26:57 -06001613 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe76e1b642020-09-26 15:05:03 -06001614 return canceled != 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001615}
1616
Pavel Begunkov04518942020-05-26 20:34:05 +03001617static void __io_queue_deferred(struct io_ring_ctx *ctx)
1618{
1619 do {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001620 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1621 struct io_defer_entry, list);
Jens Axboe7271ef32020-08-10 09:55:22 -06001622 struct io_kiocb *link;
Pavel Begunkov04518942020-05-26 20:34:05 +03001623
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001624 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001625 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001626 list_del_init(&de->list);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001627 /* punt-init is done before queueing for defer */
Jens Axboe7271ef32020-08-10 09:55:22 -06001628 link = __io_queue_async_work(de->req);
1629 if (link) {
1630 __io_queue_linked_timeout(link);
1631 /* drop submission reference */
Pavel Begunkov216578e2020-10-13 09:44:00 +01001632 io_put_req_deferred(link, 1);
Jens Axboe7271ef32020-08-10 09:55:22 -06001633 }
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001634 kfree(de);
Pavel Begunkov04518942020-05-26 20:34:05 +03001635 } while (!list_empty(&ctx->defer_list));
1636}
1637
Pavel Begunkov360428f2020-05-30 14:54:17 +03001638static void io_flush_timeouts(struct io_ring_ctx *ctx)
1639{
1640 while (!list_empty(&ctx->timeout_list)) {
1641 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001642 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001643
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001644 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001645 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001646 if (req->timeout.target_seq != ctx->cached_cq_tail
1647 - atomic_read(&ctx->cq_timeouts))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001648 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001649
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001650 list_del_init(&req->timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001651 io_kill_timeout(req);
1652 }
1653}
1654
Jens Axboede0617e2019-04-06 21:51:27 -06001655static void io_commit_cqring(struct io_ring_ctx *ctx)
1656{
Pavel Begunkov360428f2020-05-30 14:54:17 +03001657 io_flush_timeouts(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001658 __io_commit_cqring(ctx);
1659
Pavel Begunkov04518942020-05-26 20:34:05 +03001660 if (unlikely(!list_empty(&ctx->defer_list)))
1661 __io_queue_deferred(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001662}
1663
Jens Axboe90554202020-09-03 12:12:41 -06001664static inline bool io_sqring_full(struct io_ring_ctx *ctx)
1665{
1666 struct io_rings *r = ctx->rings;
1667
1668 return READ_ONCE(r->sq.tail) - ctx->cached_sq_head == r->sq_ring_entries;
1669}
1670
Jens Axboe2b188cc2019-01-07 10:46:33 -07001671static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1672{
Hristo Venev75b28af2019-08-26 17:23:46 +00001673 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001674 unsigned tail;
1675
1676 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001677 /*
1678 * writes to the cq entry need to come after reading head; the
1679 * control dependency is enough as we're using WRITE_ONCE to
1680 * fill the cq entry
1681 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001682 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001683 return NULL;
1684
1685 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001686 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001687}
1688
Jens Axboef2842ab2020-01-08 11:04:00 -07001689static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1690{
Jens Axboef0b493e2020-02-01 21:30:11 -07001691 if (!ctx->cq_ev_fd)
1692 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001693 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1694 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001695 if (!ctx->eventfd_async)
1696 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001697 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001698}
1699
Pavel Begunkove23de152020-12-17 00:24:37 +00001700static inline unsigned __io_cqring_events(struct io_ring_ctx *ctx)
1701{
1702 return ctx->cached_cq_tail - READ_ONCE(ctx->rings->cq.head);
1703}
1704
Jens Axboeb41e9852020-02-17 09:52:41 -07001705static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001706{
1707 if (waitqueue_active(&ctx->wait))
1708 wake_up(&ctx->wait);
Jens Axboe534ca6d2020-09-02 13:52:19 -06001709 if (ctx->sq_data && waitqueue_active(&ctx->sq_data->wait))
1710 wake_up(&ctx->sq_data->wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001711 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001712 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001713}
1714
Jens Axboec4a2ed72019-11-21 21:01:26 -07001715/* Returns true if there are no backlogged entries after the flush */
Jens Axboee6c8aa92020-09-28 13:10:13 -06001716static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force,
1717 struct task_struct *tsk,
1718 struct files_struct *files)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001719{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001720 struct io_rings *rings = ctx->rings;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001721 struct io_kiocb *req, *tmp;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001722 struct io_uring_cqe *cqe;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001723 unsigned long flags;
Pavel Begunkov09e88402020-12-17 00:24:38 +00001724 bool all_flushed;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001725 LIST_HEAD(list);
1726
Pavel Begunkove23de152020-12-17 00:24:37 +00001727 if (!force && __io_cqring_events(ctx) == rings->cq_ring_entries)
1728 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001729
1730 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboee6c8aa92020-09-28 13:10:13 -06001731 list_for_each_entry_safe(req, tmp, &ctx->cq_overflow_list, compl.list) {
Pavel Begunkov08d23632020-11-06 13:00:22 +00001732 if (!io_match_task(req, tsk, files))
Jens Axboee6c8aa92020-09-28 13:10:13 -06001733 continue;
1734
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001735 cqe = io_get_cqring(ctx);
1736 if (!cqe && !force)
1737 break;
1738
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001739 list_move(&req->compl.list, &list);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001740 if (cqe) {
1741 WRITE_ONCE(cqe->user_data, req->user_data);
1742 WRITE_ONCE(cqe->res, req->result);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001743 WRITE_ONCE(cqe->flags, req->compl.cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001744 } else {
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001745 ctx->cached_cq_overflow++;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001746 WRITE_ONCE(ctx->rings->cq_overflow,
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001747 ctx->cached_cq_overflow);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001748 }
1749 }
1750
Pavel Begunkov09e88402020-12-17 00:24:38 +00001751 all_flushed = list_empty(&ctx->cq_overflow_list);
1752 if (all_flushed) {
1753 clear_bit(0, &ctx->sq_check_overflow);
1754 clear_bit(0, &ctx->cq_check_overflow);
1755 ctx->rings->sq_flags &= ~IORING_SQ_CQ_OVERFLOW;
1756 }
Pavel Begunkov46930142020-07-30 18:43:49 +03001757
Pavel Begunkov09e88402020-12-17 00:24:38 +00001758 io_commit_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001759 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1760 io_cqring_ev_posted(ctx);
1761
1762 while (!list_empty(&list)) {
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001763 req = list_first_entry(&list, struct io_kiocb, compl.list);
1764 list_del(&req->compl.list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001765 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001766 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001767
Pavel Begunkov09e88402020-12-17 00:24:38 +00001768 return all_flushed;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001769}
1770
Jens Axboebcda7ba2020-02-23 16:42:51 -07001771static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001772{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001773 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001774 struct io_uring_cqe *cqe;
1775
Jens Axboe78e19bb2019-11-06 15:21:34 -07001776 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001777
Jens Axboe2b188cc2019-01-07 10:46:33 -07001778 /*
1779 * If we can't get a cq entry, userspace overflowed the
1780 * submission (by quite a lot). Increment the overflow count in
1781 * the ring.
1782 */
1783 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001784 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001785 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001786 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001787 WRITE_ONCE(cqe->flags, cflags);
Jens Axboefdaf0832020-10-30 09:37:30 -06001788 } else if (ctx->cq_overflow_flushed ||
1789 atomic_read(&req->task->io_uring->in_idle)) {
Jens Axboe0f212202020-09-13 13:09:39 -06001790 /*
1791 * If we're in ring overflow flush mode, or in task cancel mode,
1792 * then we cannot store the request for later flushing, we need
1793 * to drop it on the floor.
1794 */
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001795 ctx->cached_cq_overflow++;
1796 WRITE_ONCE(ctx->rings->cq_overflow, ctx->cached_cq_overflow);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001797 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001798 if (list_empty(&ctx->cq_overflow_list)) {
1799 set_bit(0, &ctx->sq_check_overflow);
1800 set_bit(0, &ctx->cq_check_overflow);
Xiaoguang Wang6d5f9042020-07-09 09:15:29 +08001801 ctx->rings->sq_flags |= IORING_SQ_CQ_OVERFLOW;
Jens Axboead3eb2c2019-12-18 17:12:20 -07001802 }
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001803 io_clean_op(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001804 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001805 req->compl.cflags = cflags;
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001806 refcount_inc(&req->refs);
1807 list_add_tail(&req->compl.list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001808 }
1809}
1810
Jens Axboebcda7ba2020-02-23 16:42:51 -07001811static void io_cqring_fill_event(struct io_kiocb *req, long res)
1812{
1813 __io_cqring_fill_event(req, res, 0);
1814}
1815
Jens Axboee1e16092020-06-22 09:17:17 -06001816static void io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001817{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001818 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001819 unsigned long flags;
1820
1821 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001822 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001823 io_commit_cqring(ctx);
1824 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1825
Jens Axboe8c838782019-03-12 15:48:16 -06001826 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001827}
1828
Jens Axboe229a7b62020-06-22 10:13:11 -06001829static void io_submit_flush_completions(struct io_comp_state *cs)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001830{
Jens Axboe229a7b62020-06-22 10:13:11 -06001831 struct io_ring_ctx *ctx = cs->ctx;
1832
1833 spin_lock_irq(&ctx->completion_lock);
1834 while (!list_empty(&cs->list)) {
1835 struct io_kiocb *req;
1836
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001837 req = list_first_entry(&cs->list, struct io_kiocb, compl.list);
1838 list_del(&req->compl.list);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001839 __io_cqring_fill_event(req, req->result, req->compl.cflags);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001840
1841 /*
1842 * io_free_req() doesn't care about completion_lock unless one
1843 * of these flags is set. REQ_F_WORK_INITIALIZED is in the list
1844 * because of a potential deadlock with req->work.fs->lock
1845 */
1846 if (req->flags & (REQ_F_FAIL_LINK|REQ_F_LINK_TIMEOUT
1847 |REQ_F_WORK_INITIALIZED)) {
Jens Axboe229a7b62020-06-22 10:13:11 -06001848 spin_unlock_irq(&ctx->completion_lock);
1849 io_put_req(req);
1850 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001851 } else {
1852 io_put_req(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06001853 }
1854 }
1855 io_commit_cqring(ctx);
1856 spin_unlock_irq(&ctx->completion_lock);
1857
1858 io_cqring_ev_posted(ctx);
1859 cs->nr = 0;
1860}
1861
1862static void __io_req_complete(struct io_kiocb *req, long res, unsigned cflags,
1863 struct io_comp_state *cs)
1864{
1865 if (!cs) {
1866 io_cqring_add_event(req, res, cflags);
1867 io_put_req(req);
1868 } else {
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001869 io_clean_op(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06001870 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001871 req->compl.cflags = cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001872 list_add_tail(&req->compl.list, &cs->list);
Jens Axboe229a7b62020-06-22 10:13:11 -06001873 if (++cs->nr >= 32)
1874 io_submit_flush_completions(cs);
1875 }
Jens Axboee1e16092020-06-22 09:17:17 -06001876}
1877
1878static void io_req_complete(struct io_kiocb *req, long res)
1879{
Jens Axboe229a7b62020-06-22 10:13:11 -06001880 __io_req_complete(req, res, 0, NULL);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001881}
1882
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001883static inline bool io_is_fallback_req(struct io_kiocb *req)
1884{
1885 return req == (struct io_kiocb *)
1886 ((unsigned long) req->ctx->fallback_req & ~1UL);
1887}
1888
1889static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1890{
1891 struct io_kiocb *req;
1892
1893 req = ctx->fallback_req;
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001894 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001895 return req;
1896
1897 return NULL;
1898}
1899
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001900static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1901 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001902{
Pavel Begunkovf6b6c7d2020-06-21 13:09:53 +03001903 if (!state->free_reqs) {
Pavel Begunkov291b2822020-09-30 22:57:01 +03001904 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2579f912019-01-09 09:10:43 -07001905 size_t sz;
1906 int ret;
1907
1908 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001909 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1910
1911 /*
1912 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1913 * retry single alloc to be on the safe side.
1914 */
1915 if (unlikely(ret <= 0)) {
1916 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1917 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001918 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001919 ret = 1;
1920 }
Pavel Begunkov291b2822020-09-30 22:57:01 +03001921 state->free_reqs = ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001922 }
1923
Pavel Begunkov291b2822020-09-30 22:57:01 +03001924 state->free_reqs--;
1925 return state->reqs[state->free_reqs];
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001926fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001927 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001928}
1929
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001930static inline void io_put_file(struct io_kiocb *req, struct file *file,
1931 bool fixed)
1932{
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001933 if (!fixed)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001934 fput(file);
1935}
1936
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001937static void io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001938{
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001939 io_clean_op(req);
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001940
Jens Axboee8c2bc12020-08-15 18:44:09 -07001941 if (req->async_data)
1942 kfree(req->async_data);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001943 if (req->file)
1944 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001945 if (req->fixed_file_refs)
1946 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001947 io_req_clean_work(req);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001948}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001949
Pavel Begunkov216578e2020-10-13 09:44:00 +01001950static void __io_free_req(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03001951{
Jens Axboe0f212202020-09-13 13:09:39 -06001952 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe51a4cc12020-08-10 10:55:56 -06001953 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001954
Pavel Begunkov216578e2020-10-13 09:44:00 +01001955 io_dismantle_req(req);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001956
Jens Axboed8a6df12020-10-15 16:24:45 -06001957 percpu_counter_dec(&tctx->inflight);
Jens Axboefdaf0832020-10-30 09:37:30 -06001958 if (atomic_read(&tctx->in_idle))
Jens Axboe0f212202020-09-13 13:09:39 -06001959 wake_up(&tctx->wait);
Jens Axboee3bc8e92020-09-24 08:45:57 -06001960 put_task_struct(req->task);
1961
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001962 if (likely(!io_is_fallback_req(req)))
1963 kmem_cache_free(req_cachep, req);
1964 else
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001965 clear_bit_unlock(0, (unsigned long *) &ctx->fallback_req);
1966 percpu_ref_put(&ctx->refs);
Jens Axboee65ef562019-03-12 10:16:44 -06001967}
1968
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001969static inline void io_remove_next_linked(struct io_kiocb *req)
1970{
1971 struct io_kiocb *nxt = req->link;
1972
1973 req->link = nxt->link;
1974 nxt->link = NULL;
1975}
1976
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001977static void io_kill_linked_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001978{
Jackie Liua197f662019-11-08 08:09:12 -07001979 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001980 struct io_kiocb *link;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001981 bool cancelled = false;
1982 unsigned long flags;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001983
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001984 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001985 link = req->link;
1986
Pavel Begunkov900fad42020-10-19 16:39:16 +01001987 /*
1988 * Can happen if a linked timeout fired and link had been like
1989 * req -> link t-out -> link t-out [-> ...]
1990 */
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001991 if (link && (link->flags & REQ_F_LTIMEOUT_ACTIVE)) {
1992 struct io_timeout_data *io = link->async_data;
1993 int ret;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001994
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001995 io_remove_next_linked(req);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00001996 link->timeout.head = NULL;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001997 ret = hrtimer_try_to_cancel(&io->timer);
1998 if (ret != -1) {
1999 io_cqring_fill_event(link, -ECANCELED);
2000 io_commit_cqring(ctx);
2001 cancelled = true;
2002 }
2003 }
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002004 req->flags &= ~REQ_F_LINK_TIMEOUT;
Pavel Begunkov216578e2020-10-13 09:44:00 +01002005 spin_unlock_irqrestore(&ctx->completion_lock, flags);
Jens Axboeab0b6452020-06-30 08:43:15 -06002006
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002007 if (cancelled) {
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002008 io_cqring_ev_posted(ctx);
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002009 io_put_req(link);
2010 }
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002011}
2012
Jens Axboe4d7dd462019-11-20 13:03:52 -07002013
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002014static void io_fail_links(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002015{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002016 struct io_kiocb *link, *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07002017 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002018 unsigned long flags;
Jens Axboe9e645e112019-05-10 16:07:28 -06002019
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002020 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002021 link = req->link;
2022 req->link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06002023
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002024 while (link) {
2025 nxt = link->link;
2026 link->link = NULL;
2027
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002028 trace_io_uring_fail_link(req, link);
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002029 io_cqring_fill_event(link, -ECANCELED);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002030
2031 /*
2032 * It's ok to free under spinlock as they're not linked anymore,
2033 * but avoid REQ_F_WORK_INITIALIZED because it may deadlock on
2034 * work.fs->lock.
2035 */
2036 if (link->flags & REQ_F_WORK_INITIALIZED)
2037 io_put_req_deferred(link, 2);
2038 else
2039 io_double_put_req(link);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002040 link = nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06002041 }
Jens Axboe2665abf2019-11-05 12:40:47 -07002042 io_commit_cqring(ctx);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002043 spin_unlock_irqrestore(&ctx->completion_lock, flags);
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002044
Jens Axboe2665abf2019-11-05 12:40:47 -07002045 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06002046}
2047
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002048static struct io_kiocb *__io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002049{
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002050 if (req->flags & REQ_F_LINK_TIMEOUT)
2051 io_kill_linked_timeout(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07002052
Jens Axboe9e645e112019-05-10 16:07:28 -06002053 /*
2054 * If LINK is set, we have dependent requests in this chain. If we
2055 * didn't fail this request, queue the first one up, moving any other
2056 * dependencies to the next request. In case of failure, fail the rest
2057 * of the chain.
2058 */
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002059 if (likely(!(req->flags & REQ_F_FAIL_LINK))) {
2060 struct io_kiocb *nxt = req->link;
2061
2062 req->link = NULL;
2063 return nxt;
2064 }
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002065 io_fail_links(req);
2066 return NULL;
Jens Axboe4d7dd462019-11-20 13:03:52 -07002067}
Jens Axboe2665abf2019-11-05 12:40:47 -07002068
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002069static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002070{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002071 if (likely(!(req->link) && !(req->flags & REQ_F_LINK_TIMEOUT)))
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002072 return NULL;
2073 return __io_req_find_next(req);
2074}
2075
Jens Axboe355fb9e2020-10-22 20:19:35 -06002076static int io_req_task_work_add(struct io_kiocb *req)
Jens Axboec2c4c832020-07-01 15:37:11 -06002077{
2078 struct task_struct *tsk = req->task;
2079 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe91989c72020-10-16 09:02:26 -06002080 enum task_work_notify_mode notify;
2081 int ret;
Jens Axboec2c4c832020-07-01 15:37:11 -06002082
Jens Axboe6200b0a2020-09-13 14:38:30 -06002083 if (tsk->flags & PF_EXITING)
2084 return -ESRCH;
2085
Jens Axboec2c4c832020-07-01 15:37:11 -06002086 /*
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06002087 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
2088 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
2089 * processing task_work. There's no reliable way to tell if TWA_RESUME
2090 * will do the job.
Jens Axboec2c4c832020-07-01 15:37:11 -06002091 */
Jens Axboe91989c72020-10-16 09:02:26 -06002092 notify = TWA_NONE;
Jens Axboe355fb9e2020-10-22 20:19:35 -06002093 if (!(ctx->flags & IORING_SETUP_SQPOLL))
Jens Axboec2c4c832020-07-01 15:37:11 -06002094 notify = TWA_SIGNAL;
2095
Jens Axboe87c43112020-09-30 21:00:14 -06002096 ret = task_work_add(tsk, &req->task_work, notify);
Jens Axboec2c4c832020-07-01 15:37:11 -06002097 if (!ret)
2098 wake_up_process(tsk);
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06002099
Jens Axboec2c4c832020-07-01 15:37:11 -06002100 return ret;
2101}
2102
Jens Axboec40f6372020-06-25 15:39:59 -06002103static void __io_req_task_cancel(struct io_kiocb *req, int error)
2104{
2105 struct io_ring_ctx *ctx = req->ctx;
2106
2107 spin_lock_irq(&ctx->completion_lock);
2108 io_cqring_fill_event(req, error);
2109 io_commit_cqring(ctx);
2110 spin_unlock_irq(&ctx->completion_lock);
2111
2112 io_cqring_ev_posted(ctx);
2113 req_set_fail_links(req);
2114 io_double_put_req(req);
2115}
2116
2117static void io_req_task_cancel(struct callback_head *cb)
2118{
2119 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002120 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002121
2122 __io_req_task_cancel(req, -ECANCELED);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002123 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002124}
2125
2126static void __io_req_task_submit(struct io_kiocb *req)
2127{
2128 struct io_ring_ctx *ctx = req->ctx;
2129
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00002130 if (!__io_sq_thread_acquire_mm(ctx) &&
2131 !__io_sq_thread_acquire_files(ctx)) {
Jens Axboec40f6372020-06-25 15:39:59 -06002132 mutex_lock(&ctx->uring_lock);
Pavel Begunkovc1379e22020-09-30 22:57:56 +03002133 __io_queue_sqe(req, NULL);
Jens Axboec40f6372020-06-25 15:39:59 -06002134 mutex_unlock(&ctx->uring_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07002135 } else {
Jens Axboec40f6372020-06-25 15:39:59 -06002136 __io_req_task_cancel(req, -EFAULT);
Jens Axboe2665abf2019-11-05 12:40:47 -07002137 }
Jens Axboe9e645e112019-05-10 16:07:28 -06002138}
2139
Jens Axboec40f6372020-06-25 15:39:59 -06002140static void io_req_task_submit(struct callback_head *cb)
2141{
2142 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06002143 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002144
2145 __io_req_task_submit(req);
Jens Axboe6d816e02020-08-11 08:04:14 -06002146 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002147}
2148
2149static void io_req_task_queue(struct io_kiocb *req)
2150{
Jens Axboec40f6372020-06-25 15:39:59 -06002151 int ret;
2152
2153 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06002154 percpu_ref_get(&req->ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002155
Jens Axboe355fb9e2020-10-22 20:19:35 -06002156 ret = io_req_task_work_add(req);
Jens Axboec40f6372020-06-25 15:39:59 -06002157 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06002158 struct task_struct *tsk;
2159
Jens Axboec40f6372020-06-25 15:39:59 -06002160 init_task_work(&req->task_work, io_req_task_cancel);
2161 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06002162 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboec2c4c832020-07-01 15:37:11 -06002163 wake_up_process(tsk);
Jens Axboec40f6372020-06-25 15:39:59 -06002164 }
Jens Axboec40f6372020-06-25 15:39:59 -06002165}
2166
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002167static inline void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08002168{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002169 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03002170
Pavel Begunkov906a8c32020-06-27 14:04:55 +03002171 if (nxt)
2172 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08002173}
2174
Jens Axboe9e645e112019-05-10 16:07:28 -06002175static void io_free_req(struct io_kiocb *req)
2176{
Pavel Begunkovc3524382020-06-28 12:52:32 +03002177 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06002178 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002179}
2180
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002181struct req_batch {
2182 void *reqs[IO_IOPOLL_BATCH];
2183 int to_free;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002184
2185 struct task_struct *task;
2186 int task_refs;
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002187};
2188
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002189static inline void io_init_req_batch(struct req_batch *rb)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002190{
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002191 rb->to_free = 0;
2192 rb->task_refs = 0;
2193 rb->task = NULL;
2194}
Pavel Begunkov8766dd52020-03-14 00:31:04 +03002195
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002196static void __io_req_free_batch_flush(struct io_ring_ctx *ctx,
2197 struct req_batch *rb)
2198{
2199 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
2200 percpu_ref_put_many(&ctx->refs, rb->to_free);
2201 rb->to_free = 0;
2202}
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002203
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002204static void io_req_free_batch_finish(struct io_ring_ctx *ctx,
2205 struct req_batch *rb)
2206{
2207 if (rb->to_free)
2208 __io_req_free_batch_flush(ctx, rb);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002209 if (rb->task) {
Jens Axboed8a6df12020-10-15 16:24:45 -06002210 struct io_uring_task *tctx = rb->task->io_uring;
2211
2212 percpu_counter_sub(&tctx->inflight, rb->task_refs);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002213 put_task_struct_many(rb->task, rb->task_refs);
2214 rb->task = NULL;
2215 }
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002216}
2217
2218static void io_req_free_batch(struct req_batch *rb, struct io_kiocb *req)
2219{
2220 if (unlikely(io_is_fallback_req(req))) {
2221 io_free_req(req);
2222 return;
2223 }
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002224 io_queue_next(req);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002225
Jens Axboee3bc8e92020-09-24 08:45:57 -06002226 if (req->task != rb->task) {
Jens Axboe0f212202020-09-13 13:09:39 -06002227 if (rb->task) {
Jens Axboed8a6df12020-10-15 16:24:45 -06002228 struct io_uring_task *tctx = rb->task->io_uring;
2229
2230 percpu_counter_sub(&tctx->inflight, rb->task_refs);
Jens Axboee3bc8e92020-09-24 08:45:57 -06002231 put_task_struct_many(rb->task, rb->task_refs);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002232 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06002233 rb->task = req->task;
2234 rb->task_refs = 0;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002235 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06002236 rb->task_refs++;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002237
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01002238 io_dismantle_req(req);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002239 rb->reqs[rb->to_free++] = req;
2240 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
2241 __io_req_free_batch_flush(req->ctx, rb);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002242}
2243
Jens Axboeba816ad2019-09-28 11:36:45 -06002244/*
2245 * Drop reference to request, return next in chain (if there is one) if this
2246 * was the last reference to this request.
2247 */
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002248static struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06002249{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002250 struct io_kiocb *nxt = NULL;
2251
Jens Axboe2a44f462020-02-25 13:25:41 -07002252 if (refcount_dec_and_test(&req->refs)) {
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002253 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07002254 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07002255 }
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002256 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002257}
2258
Jens Axboe2b188cc2019-01-07 10:46:33 -07002259static void io_put_req(struct io_kiocb *req)
2260{
Jens Axboedef596e2019-01-09 08:59:42 -07002261 if (refcount_dec_and_test(&req->refs))
2262 io_free_req(req);
2263}
2264
Pavel Begunkov216578e2020-10-13 09:44:00 +01002265static void io_put_req_deferred_cb(struct callback_head *cb)
2266{
2267 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
2268
2269 io_free_req(req);
2270}
2271
2272static void io_free_req_deferred(struct io_kiocb *req)
2273{
2274 int ret;
2275
2276 init_task_work(&req->task_work, io_put_req_deferred_cb);
Jens Axboe355fb9e2020-10-22 20:19:35 -06002277 ret = io_req_task_work_add(req);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002278 if (unlikely(ret)) {
2279 struct task_struct *tsk;
2280
2281 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06002282 task_work_add(tsk, &req->task_work, TWA_NONE);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002283 wake_up_process(tsk);
2284 }
2285}
2286
2287static inline void io_put_req_deferred(struct io_kiocb *req, int refs)
2288{
2289 if (refcount_sub_and_test(refs, &req->refs))
2290 io_free_req_deferred(req);
2291}
2292
Pavel Begunkovf4db7182020-06-25 18:20:54 +03002293static struct io_wq_work *io_steal_work(struct io_kiocb *req)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002294{
Pavel Begunkov6df1db62020-07-03 22:15:06 +03002295 struct io_kiocb *nxt;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002296
Pavel Begunkovf4db7182020-06-25 18:20:54 +03002297 /*
2298 * A ref is owned by io-wq in which context we're. So, if that's the
2299 * last one, it's safe to steal next work. False negatives are Ok,
2300 * it just will be re-punted async in io_put_work()
2301 */
2302 if (refcount_read(&req->refs) != 1)
2303 return NULL;
2304
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002305 nxt = io_req_find_next(req);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03002306 return nxt ? &nxt->work : NULL;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002307}
2308
Jens Axboe978db572019-11-14 22:39:04 -07002309static void io_double_put_req(struct io_kiocb *req)
2310{
2311 /* drop both submit and complete references */
2312 if (refcount_sub_and_test(2, &req->refs))
2313 io_free_req(req);
2314}
2315
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002316static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06002317{
Jens Axboead3eb2c2019-12-18 17:12:20 -07002318 if (test_bit(0, &ctx->cq_check_overflow)) {
2319 /*
2320 * noflush == true is from the waitqueue handler, just ensure
2321 * we wake up the task, and the next invocation will flush the
2322 * entries. We cannot safely to it from here.
2323 */
Pavel Begunkov59850d22020-12-06 22:22:45 +00002324 if (noflush)
Jens Axboead3eb2c2019-12-18 17:12:20 -07002325 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002326
Jens Axboee6c8aa92020-09-28 13:10:13 -06002327 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboead3eb2c2019-12-18 17:12:20 -07002328 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002329
Jens Axboea3a0e432019-08-20 11:03:11 -06002330 /* See comment at the top of this file */
2331 smp_rmb();
Pavel Begunkove23de152020-12-17 00:24:37 +00002332 return __io_cqring_events(ctx);
Jens Axboea3a0e432019-08-20 11:03:11 -06002333}
2334
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002335static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2336{
2337 struct io_rings *rings = ctx->rings;
2338
2339 /* make sure SQ entry isn't read before tail */
2340 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2341}
2342
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002343static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002344{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002345 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002346
Jens Axboebcda7ba2020-02-23 16:42:51 -07002347 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2348 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002349 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002350 kfree(kbuf);
2351 return cflags;
2352}
2353
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002354static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2355{
2356 struct io_buffer *kbuf;
2357
2358 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2359 return io_put_kbuf(req, kbuf);
2360}
2361
Jens Axboe4c6e2772020-07-01 11:29:10 -06002362static inline bool io_run_task_work(void)
2363{
Jens Axboe6200b0a2020-09-13 14:38:30 -06002364 /*
2365 * Not safe to run on exiting task, and the task_work handling will
2366 * not add work to such a task.
2367 */
2368 if (unlikely(current->flags & PF_EXITING))
2369 return false;
Jens Axboe4c6e2772020-07-01 11:29:10 -06002370 if (current->task_works) {
2371 __set_current_state(TASK_RUNNING);
2372 task_work_run();
2373 return true;
2374 }
2375
2376 return false;
2377}
2378
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002379static void io_iopoll_queue(struct list_head *again)
2380{
2381 struct io_kiocb *req;
2382
2383 do {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002384 req = list_first_entry(again, struct io_kiocb, inflight_entry);
2385 list_del(&req->inflight_entry);
Pavel Begunkov81b68a52020-07-30 18:43:46 +03002386 __io_complete_rw(req, -EAGAIN, 0, NULL);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002387 } while (!list_empty(again));
2388}
2389
Jens Axboedef596e2019-01-09 08:59:42 -07002390/*
2391 * Find and free completed poll iocbs
2392 */
2393static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
2394 struct list_head *done)
2395{
Jens Axboe8237e042019-12-28 10:48:22 -07002396 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07002397 struct io_kiocb *req;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002398 LIST_HEAD(again);
2399
2400 /* order with ->result store in io_complete_rw_iopoll() */
2401 smp_rmb();
Jens Axboedef596e2019-01-09 08:59:42 -07002402
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002403 io_init_req_batch(&rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002404 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002405 int cflags = 0;
2406
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002407 req = list_first_entry(done, struct io_kiocb, inflight_entry);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002408 if (READ_ONCE(req->result) == -EAGAIN) {
Jens Axboe56450c22020-08-26 18:58:26 -06002409 req->result = 0;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002410 req->iopoll_completed = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002411 list_move_tail(&req->inflight_entry, &again);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002412 continue;
2413 }
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002414 list_del(&req->inflight_entry);
Jens Axboedef596e2019-01-09 08:59:42 -07002415
Jens Axboebcda7ba2020-02-23 16:42:51 -07002416 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002417 cflags = io_put_rw_kbuf(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002418
2419 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07002420 (*nr_events)++;
2421
Pavel Begunkovc3524382020-06-28 12:52:32 +03002422 if (refcount_dec_and_test(&req->refs))
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002423 io_req_free_batch(&rb, req);
Jens Axboedef596e2019-01-09 08:59:42 -07002424 }
Jens Axboedef596e2019-01-09 08:59:42 -07002425
Jens Axboe09bb8392019-03-13 12:39:28 -06002426 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08002427 if (ctx->flags & IORING_SETUP_SQPOLL)
2428 io_cqring_ev_posted(ctx);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002429 io_req_free_batch_finish(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002430
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002431 if (!list_empty(&again))
2432 io_iopoll_queue(&again);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002433}
2434
Jens Axboedef596e2019-01-09 08:59:42 -07002435static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
2436 long min)
2437{
2438 struct io_kiocb *req, *tmp;
2439 LIST_HEAD(done);
2440 bool spin;
2441 int ret;
2442
2443 /*
2444 * Only spin for completions if we don't have multiple devices hanging
2445 * off our complete list, and we're under the requested amount.
2446 */
2447 spin = !ctx->poll_multi_file && *nr_events < min;
2448
2449 ret = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002450 list_for_each_entry_safe(req, tmp, &ctx->iopoll_list, inflight_entry) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002451 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07002452
2453 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002454 * Move completed and retryable entries to our local lists.
2455 * If we find a request that requires polling, break out
2456 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002457 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002458 if (READ_ONCE(req->iopoll_completed)) {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002459 list_move_tail(&req->inflight_entry, &done);
Jens Axboedef596e2019-01-09 08:59:42 -07002460 continue;
2461 }
2462 if (!list_empty(&done))
2463 break;
2464
2465 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
2466 if (ret < 0)
2467 break;
2468
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002469 /* iopoll may have completed current req */
2470 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002471 list_move_tail(&req->inflight_entry, &done);
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002472
Jens Axboedef596e2019-01-09 08:59:42 -07002473 if (ret && spin)
2474 spin = false;
2475 ret = 0;
2476 }
2477
2478 if (!list_empty(&done))
2479 io_iopoll_complete(ctx, nr_events, &done);
2480
2481 return ret;
2482}
2483
2484/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08002485 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07002486 * non-spinning poll check - we'll still enter the driver poll loop, but only
2487 * as a non-spinning completion check.
2488 */
2489static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
2490 long min)
2491{
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002492 while (!list_empty(&ctx->iopoll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07002493 int ret;
2494
2495 ret = io_do_iopoll(ctx, nr_events, min);
2496 if (ret < 0)
2497 return ret;
Pavel Begunkoveba0a4d2020-07-06 17:59:30 +03002498 if (*nr_events >= min)
Jens Axboedef596e2019-01-09 08:59:42 -07002499 return 0;
2500 }
2501
2502 return 1;
2503}
2504
2505/*
2506 * We can't just wait for polled events to come to us, we have to actively
2507 * find and complete them.
2508 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002509static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002510{
2511 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2512 return;
2513
2514 mutex_lock(&ctx->uring_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002515 while (!list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002516 unsigned int nr_events = 0;
2517
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002518 io_do_iopoll(ctx, &nr_events, 0);
Jens Axboe08f54392019-08-21 22:19:11 -06002519
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002520 /* let it sleep and repeat later if can't complete a request */
2521 if (nr_events == 0)
2522 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002523 /*
2524 * Ensure we allow local-to-the-cpu processing to take place,
2525 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002526 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002527 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002528 if (need_resched()) {
2529 mutex_unlock(&ctx->uring_lock);
2530 cond_resched();
2531 mutex_lock(&ctx->uring_lock);
2532 }
Jens Axboedef596e2019-01-09 08:59:42 -07002533 }
2534 mutex_unlock(&ctx->uring_lock);
2535}
2536
Pavel Begunkov7668b922020-07-07 16:36:21 +03002537static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002538{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002539 unsigned int nr_events = 0;
Jens Axboe2b2ed972019-10-25 10:06:15 -06002540 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002541
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002542 /*
2543 * We disallow the app entering submit/complete with polling, but we
2544 * still need to lock the ring to prevent racing with polled issue
2545 * that got punted to a workqueue.
2546 */
2547 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002548 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002549 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06002550 * Don't enter poll loop if we already have events pending.
2551 * If we do, we can potentially be spinning for commands that
2552 * already triggered a CQE (eg in error).
2553 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002554 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06002555 break;
2556
2557 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06002558 * If a submit got punted to a workqueue, we can have the
2559 * application entering polling for a command before it gets
2560 * issued. That app will hold the uring_lock for the duration
2561 * of the poll right here, so we need to take a breather every
2562 * now and then to ensure that the issue has a chance to add
2563 * the poll to the issued list. Otherwise we can spin here
2564 * forever, while the workqueue is stuck trying to acquire the
2565 * very same mutex.
2566 */
2567 if (!(++iters & 7)) {
2568 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002569 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002570 mutex_lock(&ctx->uring_lock);
2571 }
2572
Pavel Begunkov7668b922020-07-07 16:36:21 +03002573 ret = io_iopoll_getevents(ctx, &nr_events, min);
Jens Axboedef596e2019-01-09 08:59:42 -07002574 if (ret <= 0)
2575 break;
2576 ret = 0;
Pavel Begunkov7668b922020-07-07 16:36:21 +03002577 } while (min && !nr_events && !need_resched());
Jens Axboedef596e2019-01-09 08:59:42 -07002578
Jens Axboe500f9fb2019-08-19 12:15:59 -06002579 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002580 return ret;
2581}
2582
Jens Axboe491381ce2019-10-17 09:20:46 -06002583static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002584{
Jens Axboe491381ce2019-10-17 09:20:46 -06002585 /*
2586 * Tell lockdep we inherited freeze protection from submission
2587 * thread.
2588 */
2589 if (req->flags & REQ_F_ISREG) {
2590 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002591
Jens Axboe491381ce2019-10-17 09:20:46 -06002592 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002593 }
Jens Axboe491381ce2019-10-17 09:20:46 -06002594 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002595}
2596
Jens Axboea1d7c392020-06-22 11:09:46 -06002597static void io_complete_rw_common(struct kiocb *kiocb, long res,
2598 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002599{
Jens Axboe9adbd452019-12-20 08:45:55 -07002600 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002601 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002602
Jens Axboe491381ce2019-10-17 09:20:46 -06002603 if (kiocb->ki_flags & IOCB_WRITE)
2604 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002605
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002606 if (res != req->result)
2607 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002608 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002609 cflags = io_put_rw_kbuf(req);
Jens Axboea1d7c392020-06-22 11:09:46 -06002610 __io_req_complete(req, res, cflags, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002611}
2612
Jens Axboeb63534c2020-06-04 11:28:00 -06002613#ifdef CONFIG_BLOCK
2614static bool io_resubmit_prep(struct io_kiocb *req, int error)
2615{
2616 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2617 ssize_t ret = -ECANCELED;
2618 struct iov_iter iter;
2619 int rw;
2620
2621 if (error) {
2622 ret = error;
2623 goto end_req;
2624 }
2625
2626 switch (req->opcode) {
2627 case IORING_OP_READV:
2628 case IORING_OP_READ_FIXED:
2629 case IORING_OP_READ:
2630 rw = READ;
2631 break;
2632 case IORING_OP_WRITEV:
2633 case IORING_OP_WRITE_FIXED:
2634 case IORING_OP_WRITE:
2635 rw = WRITE;
2636 break;
2637 default:
2638 printk_once(KERN_WARNING "io_uring: bad opcode in resubmit %d\n",
2639 req->opcode);
2640 goto end_req;
2641 }
2642
Jens Axboee8c2bc12020-08-15 18:44:09 -07002643 if (!req->async_data) {
Jens Axboe8f3d7492020-09-14 09:28:14 -06002644 ret = io_import_iovec(rw, req, &iovec, &iter, false);
2645 if (ret < 0)
2646 goto end_req;
2647 ret = io_setup_async_rw(req, iovec, inline_vecs, &iter, false);
2648 if (!ret)
2649 return true;
2650 kfree(iovec);
2651 } else {
Jens Axboeb63534c2020-06-04 11:28:00 -06002652 return true;
Jens Axboe8f3d7492020-09-14 09:28:14 -06002653 }
Jens Axboeb63534c2020-06-04 11:28:00 -06002654end_req:
Jens Axboeb63534c2020-06-04 11:28:00 -06002655 req_set_fail_links(req);
Jens Axboeb63534c2020-06-04 11:28:00 -06002656 return false;
2657}
Jens Axboeb63534c2020-06-04 11:28:00 -06002658#endif
2659
2660static bool io_rw_reissue(struct io_kiocb *req, long res)
2661{
2662#ifdef CONFIG_BLOCK
Jens Axboe355afae2020-09-02 09:30:31 -06002663 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboeb63534c2020-06-04 11:28:00 -06002664 int ret;
2665
Jens Axboe355afae2020-09-02 09:30:31 -06002666 if (!S_ISBLK(mode) && !S_ISREG(mode))
2667 return false;
Jens Axboeb63534c2020-06-04 11:28:00 -06002668 if ((res != -EAGAIN && res != -EOPNOTSUPP) || io_wq_current_is_worker())
2669 return false;
2670
Jens Axboe28cea78a2020-09-14 10:51:17 -06002671 ret = io_sq_thread_acquire_mm_files(req->ctx, req);
Jens Axboe6d816e02020-08-11 08:04:14 -06002672
Jens Axboefdee9462020-08-27 16:46:24 -06002673 if (io_resubmit_prep(req, ret)) {
2674 refcount_inc(&req->refs);
2675 io_queue_async_work(req);
Jens Axboeb63534c2020-06-04 11:28:00 -06002676 return true;
Jens Axboefdee9462020-08-27 16:46:24 -06002677 }
2678
Jens Axboeb63534c2020-06-04 11:28:00 -06002679#endif
2680 return false;
2681}
2682
Jens Axboea1d7c392020-06-22 11:09:46 -06002683static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2684 struct io_comp_state *cs)
2685{
2686 if (!io_rw_reissue(req, res))
2687 io_complete_rw_common(&req->rw.kiocb, res, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002688}
2689
2690static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2691{
Jens Axboe9adbd452019-12-20 08:45:55 -07002692 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002693
Jens Axboea1d7c392020-06-22 11:09:46 -06002694 __io_complete_rw(req, res, res2, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002695}
2696
Jens Axboedef596e2019-01-09 08:59:42 -07002697static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2698{
Jens Axboe9adbd452019-12-20 08:45:55 -07002699 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002700
Jens Axboe491381ce2019-10-17 09:20:46 -06002701 if (kiocb->ki_flags & IOCB_WRITE)
2702 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07002703
Xiaoguang Wang2d7d6792020-06-16 02:06:37 +08002704 if (res != -EAGAIN && res != req->result)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002705 req_set_fail_links(req);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002706
2707 WRITE_ONCE(req->result, res);
2708 /* order with io_poll_complete() checking ->result */
Pavel Begunkovcd664b02020-06-25 12:37:10 +03002709 smp_wmb();
2710 WRITE_ONCE(req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002711}
2712
2713/*
2714 * After the iocb has been issued, it's safe to be found on the poll list.
2715 * Adding the kiocb to the list AFTER submission ensures that we don't
2716 * find it from a io_iopoll_getevents() thread before the issuer is done
2717 * accessing the kiocb cookie.
2718 */
Xiaoguang Wang2e9dbe92020-11-13 00:44:08 +08002719static void io_iopoll_req_issued(struct io_kiocb *req, bool in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002720{
2721 struct io_ring_ctx *ctx = req->ctx;
2722
2723 /*
2724 * Track whether we have multiple files in our lists. This will impact
2725 * how we do polling eventually, not spinning if we're on potentially
2726 * different devices.
2727 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002728 if (list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002729 ctx->poll_multi_file = false;
2730 } else if (!ctx->poll_multi_file) {
2731 struct io_kiocb *list_req;
2732
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002733 list_req = list_first_entry(&ctx->iopoll_list, struct io_kiocb,
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002734 inflight_entry);
Jens Axboe9adbd452019-12-20 08:45:55 -07002735 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07002736 ctx->poll_multi_file = true;
2737 }
2738
2739 /*
2740 * For fast devices, IO may have already completed. If it has, add
2741 * it to the front so we find it first.
2742 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002743 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002744 list_add(&req->inflight_entry, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002745 else
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002746 list_add_tail(&req->inflight_entry, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002747
Xiaoguang Wang2e9dbe92020-11-13 00:44:08 +08002748 /*
2749 * If IORING_SETUP_SQPOLL is enabled, sqes are either handled in sq thread
2750 * task context or in io worker task context. If current task context is
2751 * sq thread, we don't need to check whether should wake up sq thread.
2752 */
2753 if (in_async && (ctx->flags & IORING_SETUP_SQPOLL) &&
Jens Axboe534ca6d2020-09-02 13:52:19 -06002754 wq_has_sleeper(&ctx->sq_data->wait))
2755 wake_up(&ctx->sq_data->wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002756}
2757
Pavel Begunkov6e1271e2020-11-20 15:50:50 +00002758static inline void __io_state_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002759{
Pavel Begunkov6e1271e2020-11-20 15:50:50 +00002760 fput_many(state->file, state->file_refs);
2761 state->file_refs = 0;
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002762}
2763
2764static inline void io_state_file_put(struct io_submit_state *state)
2765{
Pavel Begunkov6e1271e2020-11-20 15:50:50 +00002766 if (state->file_refs)
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002767 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002768}
2769
2770/*
2771 * Get as many references to a file as we have IOs left in this submission,
2772 * assuming most submissions are for one file, or at least that each file
2773 * has more than one submission.
2774 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002775static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002776{
2777 if (!state)
2778 return fget(fd);
2779
Pavel Begunkov6e1271e2020-11-20 15:50:50 +00002780 if (state->file_refs) {
Jens Axboe9a56a232019-01-09 09:06:50 -07002781 if (state->fd == fd) {
Pavel Begunkov6e1271e2020-11-20 15:50:50 +00002782 state->file_refs--;
Jens Axboe9a56a232019-01-09 09:06:50 -07002783 return state->file;
2784 }
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002785 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002786 }
2787 state->file = fget_many(fd, state->ios_left);
Pavel Begunkov6e1271e2020-11-20 15:50:50 +00002788 if (unlikely(!state->file))
Jens Axboe9a56a232019-01-09 09:06:50 -07002789 return NULL;
2790
2791 state->fd = fd;
Pavel Begunkov6e1271e2020-11-20 15:50:50 +00002792 state->file_refs = state->ios_left - 1;
Jens Axboe9a56a232019-01-09 09:06:50 -07002793 return state->file;
2794}
2795
Jens Axboe4503b762020-06-01 10:00:27 -06002796static bool io_bdev_nowait(struct block_device *bdev)
2797{
Jeffle Xu9ba0d0c2020-10-19 16:59:42 +08002798 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
Jens Axboe4503b762020-06-01 10:00:27 -06002799}
2800
Jens Axboe2b188cc2019-01-07 10:46:33 -07002801/*
2802 * If we tracked the file through the SCM inflight mechanism, we could support
2803 * any file. For now, just ensure that anything potentially problematic is done
2804 * inline.
2805 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002806static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002807{
2808 umode_t mode = file_inode(file)->i_mode;
2809
Jens Axboe4503b762020-06-01 10:00:27 -06002810 if (S_ISBLK(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002811 if (IS_ENABLED(CONFIG_BLOCK) &&
2812 io_bdev_nowait(I_BDEV(file->f_mapping->host)))
Jens Axboe4503b762020-06-01 10:00:27 -06002813 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)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002819 if (IS_ENABLED(CONFIG_BLOCK) &&
2820 io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
Jens Axboe4503b762020-06-01 10:00:27 -06002821 file->f_op != &io_uring_fops)
2822 return true;
2823 return false;
2824 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002825
Jens Axboec5b85622020-06-09 19:23:05 -06002826 /* any ->read/write should understand O_NONBLOCK */
2827 if (file->f_flags & O_NONBLOCK)
2828 return true;
2829
Jens Axboeaf197f52020-04-28 13:15:06 -06002830 if (!(file->f_mode & FMODE_NOWAIT))
2831 return false;
2832
2833 if (rw == READ)
2834 return file->f_op->read_iter != NULL;
2835
2836 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002837}
2838
Pavel Begunkova88fc402020-09-30 22:57:53 +03002839static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002840{
Jens Axboedef596e2019-01-09 08:59:42 -07002841 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002842 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002843 unsigned ioprio;
2844 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002845
Jens Axboe491381ce2019-10-17 09:20:46 -06002846 if (S_ISREG(file_inode(req->file)->i_mode))
2847 req->flags |= REQ_F_ISREG;
2848
Jens Axboe2b188cc2019-01-07 10:46:33 -07002849 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002850 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2851 req->flags |= REQ_F_CUR_POS;
2852 kiocb->ki_pos = req->file->f_pos;
2853 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002854 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002855 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2856 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2857 if (unlikely(ret))
2858 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002859
2860 ioprio = READ_ONCE(sqe->ioprio);
2861 if (ioprio) {
2862 ret = ioprio_check_cap(ioprio);
2863 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002864 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002865
2866 kiocb->ki_ioprio = ioprio;
2867 } else
2868 kiocb->ki_ioprio = get_current_ioprio();
2869
Stefan Bühler8449eed2019-04-27 20:34:19 +02002870 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboec5b85622020-06-09 19:23:05 -06002871 if (kiocb->ki_flags & IOCB_NOWAIT)
Stefan Bühler8449eed2019-04-27 20:34:19 +02002872 req->flags |= REQ_F_NOWAIT;
2873
Jens Axboedef596e2019-01-09 08:59:42 -07002874 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002875 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2876 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002877 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002878
Jens Axboedef596e2019-01-09 08:59:42 -07002879 kiocb->ki_flags |= IOCB_HIPRI;
2880 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002881 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002882 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002883 if (kiocb->ki_flags & IOCB_HIPRI)
2884 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002885 kiocb->ki_complete = io_complete_rw;
2886 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002887
Jens Axboe3529d8c2019-12-19 18:24:38 -07002888 req->rw.addr = READ_ONCE(sqe->addr);
2889 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002890 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002891 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002892}
2893
2894static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2895{
2896 switch (ret) {
2897 case -EIOCBQUEUED:
2898 break;
2899 case -ERESTARTSYS:
2900 case -ERESTARTNOINTR:
2901 case -ERESTARTNOHAND:
2902 case -ERESTART_RESTARTBLOCK:
2903 /*
2904 * We can't just restart the syscall, since previously
2905 * submitted sqes may already be in progress. Just fail this
2906 * IO with EINTR.
2907 */
2908 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002909 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002910 default:
2911 kiocb->ki_complete(kiocb, ret, 0);
2912 }
2913}
2914
Jens Axboea1d7c392020-06-22 11:09:46 -06002915static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
2916 struct io_comp_state *cs)
Jens Axboeba816ad2019-09-28 11:36:45 -06002917{
Jens Axboeba042912019-12-25 16:33:42 -07002918 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboee8c2bc12020-08-15 18:44:09 -07002919 struct io_async_rw *io = req->async_data;
Jens Axboeba042912019-12-25 16:33:42 -07002920
Jens Axboe227c0c92020-08-13 11:51:40 -06002921 /* add previously done IO, if any */
Jens Axboee8c2bc12020-08-15 18:44:09 -07002922 if (io && io->bytes_done > 0) {
Jens Axboe227c0c92020-08-13 11:51:40 -06002923 if (ret < 0)
Jens Axboee8c2bc12020-08-15 18:44:09 -07002924 ret = io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002925 else
Jens Axboee8c2bc12020-08-15 18:44:09 -07002926 ret += io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002927 }
2928
Jens Axboeba042912019-12-25 16:33:42 -07002929 if (req->flags & REQ_F_CUR_POS)
2930 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002931 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboea1d7c392020-06-22 11:09:46 -06002932 __io_complete_rw(req, ret, 0, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002933 else
2934 io_rw_done(kiocb, ret);
2935}
2936
Jens Axboe9adbd452019-12-20 08:45:55 -07002937static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002938 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002939{
Jens Axboe9adbd452019-12-20 08:45:55 -07002940 struct io_ring_ctx *ctx = req->ctx;
2941 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002942 struct io_mapped_ubuf *imu;
Pavel Begunkov4be1c612020-09-06 00:45:48 +03002943 u16 index, buf_index = req->buf_index;
Jens Axboeedafcce2019-01-09 09:16:05 -07002944 size_t offset;
2945 u64 buf_addr;
2946
Jens Axboeedafcce2019-01-09 09:16:05 -07002947 if (unlikely(buf_index >= ctx->nr_user_bufs))
2948 return -EFAULT;
Jens Axboeedafcce2019-01-09 09:16:05 -07002949 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2950 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002951 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002952
2953 /* overflow */
2954 if (buf_addr + len < buf_addr)
2955 return -EFAULT;
2956 /* not inside the mapped region */
2957 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2958 return -EFAULT;
2959
2960 /*
2961 * May not be a start of buffer, set size appropriately
2962 * and advance us to the beginning.
2963 */
2964 offset = buf_addr - imu->ubuf;
2965 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002966
2967 if (offset) {
2968 /*
2969 * Don't use iov_iter_advance() here, as it's really slow for
2970 * using the latter parts of a big fixed buffer - it iterates
2971 * over each segment manually. We can cheat a bit here, because
2972 * we know that:
2973 *
2974 * 1) it's a BVEC iter, we set it up
2975 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2976 * first and last bvec
2977 *
2978 * So just find our index, and adjust the iterator afterwards.
2979 * If the offset is within the first bvec (or the whole first
2980 * bvec, just use iov_iter_advance(). This makes it easier
2981 * since we can just skip the first segment, which may not
2982 * be PAGE_SIZE aligned.
2983 */
2984 const struct bio_vec *bvec = imu->bvec;
2985
2986 if (offset <= bvec->bv_len) {
2987 iov_iter_advance(iter, offset);
2988 } else {
2989 unsigned long seg_skip;
2990
2991 /* skip first vec */
2992 offset -= bvec->bv_len;
2993 seg_skip = 1 + (offset >> PAGE_SHIFT);
2994
2995 iter->bvec = bvec + seg_skip;
2996 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002997 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002998 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002999 }
3000 }
3001
Jens Axboe5e559562019-11-13 16:12:46 -07003002 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07003003}
3004
Jens Axboebcda7ba2020-02-23 16:42:51 -07003005static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
3006{
3007 if (needs_lock)
3008 mutex_unlock(&ctx->uring_lock);
3009}
3010
3011static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
3012{
3013 /*
3014 * "Normal" inline submissions always hold the uring_lock, since we
3015 * grab it from the system call. Same is true for the SQPOLL offload.
3016 * The only exception is when we've detached the request and issue it
3017 * from an async worker thread, grab the lock for that case.
3018 */
3019 if (needs_lock)
3020 mutex_lock(&ctx->uring_lock);
3021}
3022
3023static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
3024 int bgid, struct io_buffer *kbuf,
3025 bool needs_lock)
3026{
3027 struct io_buffer *head;
3028
3029 if (req->flags & REQ_F_BUFFER_SELECTED)
3030 return kbuf;
3031
3032 io_ring_submit_lock(req->ctx, needs_lock);
3033
3034 lockdep_assert_held(&req->ctx->uring_lock);
3035
3036 head = idr_find(&req->ctx->io_buffer_idr, bgid);
3037 if (head) {
3038 if (!list_empty(&head->list)) {
3039 kbuf = list_last_entry(&head->list, struct io_buffer,
3040 list);
3041 list_del(&kbuf->list);
3042 } else {
3043 kbuf = head;
3044 idr_remove(&req->ctx->io_buffer_idr, bgid);
3045 }
3046 if (*len > kbuf->len)
3047 *len = kbuf->len;
3048 } else {
3049 kbuf = ERR_PTR(-ENOBUFS);
3050 }
3051
3052 io_ring_submit_unlock(req->ctx, needs_lock);
3053
3054 return kbuf;
3055}
3056
Jens Axboe4d954c22020-02-27 07:31:19 -07003057static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
3058 bool needs_lock)
3059{
3060 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003061 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07003062
3063 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003064 bgid = req->buf_index;
Jens Axboe4d954c22020-02-27 07:31:19 -07003065 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
3066 if (IS_ERR(kbuf))
3067 return kbuf;
3068 req->rw.addr = (u64) (unsigned long) kbuf;
3069 req->flags |= REQ_F_BUFFER_SELECTED;
3070 return u64_to_user_ptr(kbuf->addr);
3071}
3072
3073#ifdef CONFIG_COMPAT
3074static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
3075 bool needs_lock)
3076{
3077 struct compat_iovec __user *uiov;
3078 compat_ssize_t clen;
3079 void __user *buf;
3080 ssize_t len;
3081
3082 uiov = u64_to_user_ptr(req->rw.addr);
3083 if (!access_ok(uiov, sizeof(*uiov)))
3084 return -EFAULT;
3085 if (__get_user(clen, &uiov->iov_len))
3086 return -EFAULT;
3087 if (clen < 0)
3088 return -EINVAL;
3089
3090 len = clen;
3091 buf = io_rw_buffer_select(req, &len, needs_lock);
3092 if (IS_ERR(buf))
3093 return PTR_ERR(buf);
3094 iov[0].iov_base = buf;
3095 iov[0].iov_len = (compat_size_t) len;
3096 return 0;
3097}
3098#endif
3099
3100static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3101 bool needs_lock)
3102{
3103 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
3104 void __user *buf;
3105 ssize_t len;
3106
3107 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3108 return -EFAULT;
3109
3110 len = iov[0].iov_len;
3111 if (len < 0)
3112 return -EINVAL;
3113 buf = io_rw_buffer_select(req, &len, needs_lock);
3114 if (IS_ERR(buf))
3115 return PTR_ERR(buf);
3116 iov[0].iov_base = buf;
3117 iov[0].iov_len = len;
3118 return 0;
3119}
3120
3121static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3122 bool needs_lock)
3123{
Jens Axboedddb3e22020-06-04 11:27:01 -06003124 if (req->flags & REQ_F_BUFFER_SELECTED) {
3125 struct io_buffer *kbuf;
3126
3127 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
3128 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3129 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003130 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06003131 }
Pavel Begunkovdd201662020-12-19 03:15:43 +00003132 if (req->rw.len != 1)
Jens Axboe4d954c22020-02-27 07:31:19 -07003133 return -EINVAL;
3134
3135#ifdef CONFIG_COMPAT
3136 if (req->ctx->compat)
3137 return io_compat_import(req, iov, needs_lock);
3138#endif
3139
3140 return __io_iov_buffer_select(req, iov, needs_lock);
3141}
3142
Pavel Begunkov2846c482020-11-07 13:16:27 +00003143static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboe8452fd02020-08-18 13:58:33 -07003144 struct iovec **iovec, struct iov_iter *iter,
3145 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003146{
Jens Axboe9adbd452019-12-20 08:45:55 -07003147 void __user *buf = u64_to_user_ptr(req->rw.addr);
3148 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003149 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07003150 u8 opcode;
3151
Jens Axboed625c6e2019-12-17 19:53:05 -07003152 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03003153 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07003154 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07003155 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07003156 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003157
Jens Axboebcda7ba2020-02-23 16:42:51 -07003158 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003159 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07003160 return -EINVAL;
3161
Jens Axboe3a6820f2019-12-22 15:19:35 -07003162 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07003163 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07003164 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03003165 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07003166 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003167 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003168 }
3169
Jens Axboe3a6820f2019-12-22 15:19:35 -07003170 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
3171 *iovec = NULL;
David Laight10fc72e2020-11-07 13:16:25 +00003172 return ret;
Jens Axboe3a6820f2019-12-22 15:19:35 -07003173 }
3174
Jens Axboe4d954c22020-02-27 07:31:19 -07003175 if (req->flags & REQ_F_BUFFER_SELECT) {
3176 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003177 if (!ret) {
3178 ret = (*iovec)->iov_len;
3179 iov_iter_init(iter, rw, *iovec, 1, ret);
3180 }
Jens Axboe4d954c22020-02-27 07:31:19 -07003181 *iovec = NULL;
3182 return ret;
3183 }
3184
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02003185 return __import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter,
3186 req->ctx->compat);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003187}
3188
Jens Axboe0fef9482020-08-26 10:36:20 -06003189static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3190{
Pavel Begunkov5b09e372020-09-30 22:57:15 +03003191 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
Jens Axboe0fef9482020-08-26 10:36:20 -06003192}
3193
Jens Axboe32960612019-09-23 11:05:34 -06003194/*
3195 * For files that don't have ->read_iter() and ->write_iter(), handle them
3196 * by looping over ->read() or ->write() manually.
3197 */
Jens Axboe4017eb92020-10-22 14:14:12 -06003198static ssize_t loop_rw_iter(int rw, struct io_kiocb *req, struct iov_iter *iter)
Jens Axboe32960612019-09-23 11:05:34 -06003199{
Jens Axboe4017eb92020-10-22 14:14:12 -06003200 struct kiocb *kiocb = &req->rw.kiocb;
3201 struct file *file = req->file;
Jens Axboe32960612019-09-23 11:05:34 -06003202 ssize_t ret = 0;
3203
3204 /*
3205 * Don't support polled IO through this interface, and we can't
3206 * support non-blocking either. For the latter, this just causes
3207 * the kiocb to be handled from an async context.
3208 */
3209 if (kiocb->ki_flags & IOCB_HIPRI)
3210 return -EOPNOTSUPP;
3211 if (kiocb->ki_flags & IOCB_NOWAIT)
3212 return -EAGAIN;
3213
3214 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003215 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06003216 ssize_t nr;
3217
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003218 if (!iov_iter_is_bvec(iter)) {
3219 iovec = iov_iter_iovec(iter);
3220 } else {
Jens Axboe4017eb92020-10-22 14:14:12 -06003221 iovec.iov_base = u64_to_user_ptr(req->rw.addr);
3222 iovec.iov_len = req->rw.len;
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003223 }
3224
Jens Axboe32960612019-09-23 11:05:34 -06003225 if (rw == READ) {
3226 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003227 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003228 } else {
3229 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003230 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003231 }
3232
3233 if (nr < 0) {
3234 if (!ret)
3235 ret = nr;
3236 break;
3237 }
3238 ret += nr;
3239 if (nr != iovec.iov_len)
3240 break;
Jens Axboe4017eb92020-10-22 14:14:12 -06003241 req->rw.len -= nr;
3242 req->rw.addr += nr;
Jens Axboe32960612019-09-23 11:05:34 -06003243 iov_iter_advance(iter, nr);
3244 }
3245
3246 return ret;
3247}
3248
Jens Axboeff6165b2020-08-13 09:47:43 -06003249static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3250 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07003251{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003252 struct io_async_rw *rw = req->async_data;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003253
Jens Axboeff6165b2020-08-13 09:47:43 -06003254 memcpy(&rw->iter, iter, sizeof(*iter));
Pavel Begunkovafb87652020-09-06 00:45:46 +03003255 rw->free_iovec = iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -06003256 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06003257 /* can only be fixed buffers, no need to do anything */
Pavel Begunkov9c3a2052020-11-23 23:20:27 +00003258 if (iov_iter_is_bvec(iter))
Jens Axboeff6165b2020-08-13 09:47:43 -06003259 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003260 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06003261 unsigned iov_off = 0;
3262
3263 rw->iter.iov = rw->fast_iov;
3264 if (iter->iov != fast_iov) {
3265 iov_off = iter->iov - fast_iov;
3266 rw->iter.iov += iov_off;
3267 }
3268 if (rw->fast_iov != fast_iov)
3269 memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08003270 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003271 } else {
3272 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07003273 }
3274}
3275
Jens Axboee8c2bc12020-08-15 18:44:09 -07003276static inline int __io_alloc_async_data(struct io_kiocb *req)
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003277{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003278 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3279 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
3280 return req->async_data == NULL;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003281}
3282
Jens Axboee8c2bc12020-08-15 18:44:09 -07003283static int io_alloc_async_data(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003284{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003285 if (!io_op_defs[req->opcode].needs_async_data)
Jens Axboed3656342019-12-18 09:50:26 -07003286 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003287
Jens Axboee8c2bc12020-08-15 18:44:09 -07003288 return __io_alloc_async_data(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003289}
3290
Jens Axboeff6165b2020-08-13 09:47:43 -06003291static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3292 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06003293 struct iov_iter *iter, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003294{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003295 if (!force && !io_op_defs[req->opcode].needs_async_data)
Jens Axboe74566df2020-01-13 19:23:24 -07003296 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003297 if (!req->async_data) {
3298 if (__io_alloc_async_data(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07003299 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003300
Jens Axboeff6165b2020-08-13 09:47:43 -06003301 io_req_map_rw(req, iovec, fast_iov, iter);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003302 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003303 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003304}
3305
Pavel Begunkov73debe62020-09-30 22:57:54 +03003306static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003307{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003308 struct io_async_rw *iorw = req->async_data;
Pavel Begunkovf4bff102020-09-06 00:45:45 +03003309 struct iovec *iov = iorw->fast_iov;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003310 ssize_t ret;
3311
Pavel Begunkov2846c482020-11-07 13:16:27 +00003312 ret = io_import_iovec(rw, req, &iov, &iorw->iter, false);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003313 if (unlikely(ret < 0))
3314 return ret;
3315
Pavel Begunkovab0b1962020-09-06 00:45:47 +03003316 iorw->bytes_done = 0;
3317 iorw->free_iovec = iov;
3318 if (iov)
3319 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003320 return 0;
3321}
3322
Pavel Begunkov73debe62020-09-30 22:57:54 +03003323static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003324{
3325 ssize_t ret;
3326
Pavel Begunkova88fc402020-09-30 22:57:53 +03003327 ret = io_prep_rw(req, sqe);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003328 if (ret)
3329 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003330
Jens Axboe3529d8c2019-12-19 18:24:38 -07003331 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3332 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003333
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003334 /* either don't need iovec imported or already have it */
Pavel Begunkov2d199892020-09-30 22:57:35 +03003335 if (!req->async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003336 return 0;
Pavel Begunkov73debe62020-09-30 22:57:54 +03003337 return io_rw_prep_async(req, READ);
Jens Axboef67676d2019-12-02 11:03:47 -07003338}
3339
Jens Axboec1dd91d2020-08-03 16:43:59 -06003340/*
3341 * This is our waitqueue callback handler, registered through lock_page_async()
3342 * when we initially tried to do the IO with the iocb armed our waitqueue.
3343 * This gets called when the page is unlocked, and we generally expect that to
3344 * happen when the page IO is completed and the page is now uptodate. This will
3345 * queue a task_work based retry of the operation, attempting to copy the data
3346 * again. If the latter fails because the page was NOT uptodate, then we will
3347 * do a thread based blocking retry of the operation. That's the unexpected
3348 * slow path.
3349 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003350static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3351 int sync, void *arg)
3352{
3353 struct wait_page_queue *wpq;
3354 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003355 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003356 int ret;
3357
3358 wpq = container_of(wait, struct wait_page_queue, wait);
3359
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003360 if (!wake_page_match(wpq, key))
3361 return 0;
3362
Hao Xuc8d317a2020-09-29 20:00:45 +08003363 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003364 list_del_init(&wait->entry);
3365
Pavel Begunkove7375122020-07-12 20:42:04 +03003366 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06003367 percpu_ref_get(&req->ctx->refs);
3368
Jens Axboebcf5a062020-05-22 09:24:42 -06003369 /* submit ref gets dropped, acquire a new one */
3370 refcount_inc(&req->refs);
Jens Axboe355fb9e2020-10-22 20:19:35 -06003371 ret = io_req_task_work_add(req);
Jens Axboebcf5a062020-05-22 09:24:42 -06003372 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06003373 struct task_struct *tsk;
3374
Jens Axboebcf5a062020-05-22 09:24:42 -06003375 /* queue just for cancelation */
Pavel Begunkove7375122020-07-12 20:42:04 +03003376 init_task_work(&req->task_work, io_req_task_cancel);
Jens Axboebcf5a062020-05-22 09:24:42 -06003377 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06003378 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboec2c4c832020-07-01 15:37:11 -06003379 wake_up_process(tsk);
Jens Axboebcf5a062020-05-22 09:24:42 -06003380 }
Jens Axboebcf5a062020-05-22 09:24:42 -06003381 return 1;
3382}
3383
Jens Axboec1dd91d2020-08-03 16:43:59 -06003384/*
3385 * This controls whether a given IO request should be armed for async page
3386 * based retry. If we return false here, the request is handed to the async
3387 * worker threads for retry. If we're doing buffered reads on a regular file,
3388 * we prepare a private wait_page_queue entry and retry the operation. This
3389 * will either succeed because the page is now uptodate and unlocked, or it
3390 * will register a callback when the page is unlocked at IO completion. Through
3391 * that callback, io_uring uses task_work to setup a retry of the operation.
3392 * That retry will attempt the buffered read again. The retry will generally
3393 * succeed, or in rare cases where it fails, we then fall back to using the
3394 * async worker threads for a blocking retry.
3395 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003396static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003397{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003398 struct io_async_rw *rw = req->async_data;
3399 struct wait_page_queue *wait = &rw->wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003400 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003401
3402 /* never retry for NOWAIT, we just complete with -EAGAIN */
3403 if (req->flags & REQ_F_NOWAIT)
3404 return false;
3405
Jens Axboe227c0c92020-08-13 11:51:40 -06003406 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003407 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003408 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003409
Jens Axboebcf5a062020-05-22 09:24:42 -06003410 /*
3411 * just use poll if we can, and don't attempt if the fs doesn't
3412 * support callback based unlocks
3413 */
3414 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3415 return false;
3416
Jens Axboe3b2a4432020-08-16 10:58:43 -07003417 wait->wait.func = io_async_buf_func;
3418 wait->wait.private = req;
3419 wait->wait.flags = 0;
3420 INIT_LIST_HEAD(&wait->wait.entry);
3421 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003422 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003423 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003424 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003425}
3426
3427static int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
3428{
3429 if (req->file->f_op->read_iter)
3430 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003431 else if (req->file->f_op->read)
Jens Axboe4017eb92020-10-22 14:14:12 -06003432 return loop_rw_iter(READ, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003433 else
3434 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003435}
3436
Jens Axboea1d7c392020-06-22 11:09:46 -06003437static int io_read(struct io_kiocb *req, bool force_nonblock,
3438 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003439{
3440 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003441 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003442 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003443 struct io_async_rw *rw = req->async_data;
Jens Axboe227c0c92020-08-13 11:51:40 -06003444 ssize_t io_size, ret, ret2;
Jens Axboef5cac8b2020-09-14 09:30:38 -06003445 bool no_async;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003446
Pavel Begunkov2846c482020-11-07 13:16:27 +00003447 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003448 iter = &rw->iter;
Pavel Begunkov2846c482020-11-07 13:16:27 +00003449 iovec = NULL;
3450 } else {
3451 ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
3452 if (ret < 0)
3453 return ret;
3454 }
Pavel Begunkov632546c2020-11-07 13:16:26 +00003455 io_size = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003456 req->result = io_size;
Jens Axboe227c0c92020-08-13 11:51:40 -06003457 ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003458
Jens Axboefd6c2e42019-12-18 12:19:41 -07003459 /* Ensure we clear previously set non-block flag */
3460 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003461 kiocb->ki_flags &= ~IOCB_NOWAIT;
Pavel Begunkova88fc402020-09-30 22:57:53 +03003462 else
3463 kiocb->ki_flags |= IOCB_NOWAIT;
3464
Jens Axboefd6c2e42019-12-18 12:19:41 -07003465
Pavel Begunkov24c74672020-06-21 13:09:51 +03003466 /* If the file doesn't support async, just async punt */
Jens Axboef5cac8b2020-09-14 09:30:38 -06003467 no_async = force_nonblock && !io_file_supports_async(req->file, READ);
3468 if (no_async)
Jens Axboef67676d2019-12-02 11:03:47 -07003469 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003470
Pavel Begunkov632546c2020-11-07 13:16:26 +00003471 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), io_size);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003472 if (unlikely(ret))
3473 goto out_free;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003474
Jens Axboe227c0c92020-08-13 11:51:40 -06003475 ret = io_iter_do_read(req, iter);
Jens Axboe32960612019-09-23 11:05:34 -06003476
Jens Axboe227c0c92020-08-13 11:51:40 -06003477 if (!ret) {
3478 goto done;
3479 } else if (ret == -EIOCBQUEUED) {
3480 ret = 0;
3481 goto out_free;
3482 } else if (ret == -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003483 /* IOPOLL retry should happen for io-wq threads */
3484 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003485 goto done;
Jens Axboe355afae2020-09-02 09:30:31 -06003486 /* no retry on NONBLOCK marked file */
3487 if (req->file->f_flags & O_NONBLOCK)
3488 goto done;
Jens Axboe84216312020-08-24 11:45:26 -06003489 /* some cases will consume bytes even on error returns */
Pavel Begunkov632546c2020-11-07 13:16:26 +00003490 iov_iter_revert(iter, io_size - iov_iter_count(iter));
Jens Axboef38c7e32020-09-25 15:23:43 -06003491 ret = 0;
3492 goto copy_iov;
Jens Axboe227c0c92020-08-13 11:51:40 -06003493 } else if (ret < 0) {
Jens Axboe00d23d52020-08-25 12:59:22 -06003494 /* make sure -ERESTARTSYS -> -EINTR is done */
3495 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003496 }
3497
3498 /* read it all, or we did blocking attempt. no retry. */
Jens Axboef91daf52020-08-15 15:58:42 -07003499 if (!iov_iter_count(iter) || !force_nonblock ||
3500 (req->file->f_flags & O_NONBLOCK))
Jens Axboe227c0c92020-08-13 11:51:40 -06003501 goto done;
3502
3503 io_size -= ret;
3504copy_iov:
3505 ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
3506 if (ret2) {
3507 ret = ret2;
3508 goto out_free;
3509 }
Jens Axboef5cac8b2020-09-14 09:30:38 -06003510 if (no_async)
3511 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003512 rw = req->async_data;
Jens Axboe227c0c92020-08-13 11:51:40 -06003513 /* it's copied and will be cleaned with ->io */
3514 iovec = NULL;
3515 /* now use our persistent iterator, if we aren't already */
Jens Axboee8c2bc12020-08-15 18:44:09 -07003516 iter = &rw->iter;
Jens Axboe227c0c92020-08-13 11:51:40 -06003517retry:
Jens Axboee8c2bc12020-08-15 18:44:09 -07003518 rw->bytes_done += ret;
Jens Axboe227c0c92020-08-13 11:51:40 -06003519 /* if we can retry, do so with the callbacks armed */
3520 if (!io_rw_should_retry(req)) {
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003521 kiocb->ki_flags &= ~IOCB_WAITQ;
3522 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003523 }
Jens Axboe227c0c92020-08-13 11:51:40 -06003524
3525 /*
3526 * Now retry read with the IOCB_WAITQ parts set in the iocb. If we
3527 * get -EIOCBQUEUED, then we'll get a notification when the desired
3528 * page gets unlocked. We can also get a partial read here, and if we
3529 * do, then just retry at the new offset.
3530 */
3531 ret = io_iter_do_read(req, iter);
3532 if (ret == -EIOCBQUEUED) {
3533 ret = 0;
3534 goto out_free;
3535 } else if (ret > 0 && ret < io_size) {
3536 /* we got some bytes, but not all. retry. */
3537 goto retry;
3538 }
3539done:
3540 kiocb_done(kiocb, ret, cs);
3541 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003542out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003543 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003544 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003545 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003546 return ret;
3547}
3548
Pavel Begunkov73debe62020-09-30 22:57:54 +03003549static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003550{
3551 ssize_t ret;
3552
Pavel Begunkova88fc402020-09-30 22:57:53 +03003553 ret = io_prep_rw(req, sqe);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003554 if (ret)
3555 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003556
Jens Axboe3529d8c2019-12-19 18:24:38 -07003557 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3558 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003559
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003560 /* either don't need iovec imported or already have it */
Pavel Begunkov2d199892020-09-30 22:57:35 +03003561 if (!req->async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003562 return 0;
Pavel Begunkov73debe62020-09-30 22:57:54 +03003563 return io_rw_prep_async(req, WRITE);
Jens Axboef67676d2019-12-02 11:03:47 -07003564}
3565
Jens Axboea1d7c392020-06-22 11:09:46 -06003566static int io_write(struct io_kiocb *req, bool force_nonblock,
3567 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003568{
3569 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003570 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003571 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003572 struct io_async_rw *rw = req->async_data;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003573 ssize_t ret, ret2, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003574
Pavel Begunkov2846c482020-11-07 13:16:27 +00003575 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003576 iter = &rw->iter;
Pavel Begunkov2846c482020-11-07 13:16:27 +00003577 iovec = NULL;
3578 } else {
3579 ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
3580 if (ret < 0)
3581 return ret;
3582 }
Pavel Begunkov632546c2020-11-07 13:16:26 +00003583 io_size = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003584 req->result = io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003585
Jens Axboefd6c2e42019-12-18 12:19:41 -07003586 /* Ensure we clear previously set non-block flag */
3587 if (!force_nonblock)
Pavel Begunkova88fc402020-09-30 22:57:53 +03003588 kiocb->ki_flags &= ~IOCB_NOWAIT;
3589 else
3590 kiocb->ki_flags |= IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003591
Pavel Begunkov24c74672020-06-21 13:09:51 +03003592 /* If the file doesn't support async, just async punt */
Jens Axboeaf197f52020-04-28 13:15:06 -06003593 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003594 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003595
Jens Axboe10d59342019-12-09 20:16:22 -07003596 /* file path doesn't support NOWAIT for non-direct_IO */
3597 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3598 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003599 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003600
Pavel Begunkov632546c2020-11-07 13:16:26 +00003601 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), io_size);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003602 if (unlikely(ret))
3603 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003604
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003605 /*
3606 * Open-code file_start_write here to grab freeze protection,
3607 * which will be released by another thread in
3608 * io_complete_rw(). Fool lockdep by telling it the lock got
3609 * released so that it doesn't complain about the held lock when
3610 * we return to userspace.
3611 */
3612 if (req->flags & REQ_F_ISREG) {
Darrick J. Wong8a3c84b2020-11-10 16:50:21 -08003613 sb_start_write(file_inode(req->file)->i_sb);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003614 __sb_writers_release(file_inode(req->file)->i_sb,
3615 SB_FREEZE_WRITE);
3616 }
3617 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003618
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003619 if (req->file->f_op->write_iter)
Jens Axboeff6165b2020-08-13 09:47:43 -06003620 ret2 = call_write_iter(req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003621 else if (req->file->f_op->write)
Jens Axboe4017eb92020-10-22 14:14:12 -06003622 ret2 = loop_rw_iter(WRITE, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003623 else
3624 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003625
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003626 /*
3627 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3628 * retry them without IOCB_NOWAIT.
3629 */
3630 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3631 ret2 = -EAGAIN;
Jens Axboe355afae2020-09-02 09:30:31 -06003632 /* no retry on NONBLOCK marked file */
3633 if (ret2 == -EAGAIN && (req->file->f_flags & O_NONBLOCK))
3634 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003635 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003636 /* IOPOLL retry should happen for io-wq threads */
3637 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3638 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003639done:
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003640 kiocb_done(kiocb, ret2, cs);
3641 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003642copy_iov:
Jens Axboe84216312020-08-24 11:45:26 -06003643 /* some cases will consume bytes even on error returns */
Pavel Begunkov632546c2020-11-07 13:16:26 +00003644 iov_iter_revert(iter, io_size - iov_iter_count(iter));
Jens Axboe227c0c92020-08-13 11:51:40 -06003645 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
Jens Axboeff6165b2020-08-13 09:47:43 -06003646 if (!ret)
3647 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003648 }
Jens Axboe31b51512019-01-18 22:56:34 -07003649out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003650 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003651 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003652 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003653 return ret;
3654}
3655
Jens Axboe80a261f2020-09-28 14:23:58 -06003656static int io_renameat_prep(struct io_kiocb *req,
3657 const struct io_uring_sqe *sqe)
3658{
3659 struct io_rename *ren = &req->rename;
3660 const char __user *oldf, *newf;
3661
3662 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3663 return -EBADF;
3664
3665 ren->old_dfd = READ_ONCE(sqe->fd);
3666 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3667 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3668 ren->new_dfd = READ_ONCE(sqe->len);
3669 ren->flags = READ_ONCE(sqe->rename_flags);
3670
3671 ren->oldpath = getname(oldf);
3672 if (IS_ERR(ren->oldpath))
3673 return PTR_ERR(ren->oldpath);
3674
3675 ren->newpath = getname(newf);
3676 if (IS_ERR(ren->newpath)) {
3677 putname(ren->oldpath);
3678 return PTR_ERR(ren->newpath);
3679 }
3680
3681 req->flags |= REQ_F_NEED_CLEANUP;
3682 return 0;
3683}
3684
3685static int io_renameat(struct io_kiocb *req, bool force_nonblock)
3686{
3687 struct io_rename *ren = &req->rename;
3688 int ret;
3689
3690 if (force_nonblock)
3691 return -EAGAIN;
3692
3693 ret = do_renameat2(ren->old_dfd, ren->oldpath, ren->new_dfd,
3694 ren->newpath, ren->flags);
3695
3696 req->flags &= ~REQ_F_NEED_CLEANUP;
3697 if (ret < 0)
3698 req_set_fail_links(req);
3699 io_req_complete(req, ret);
3700 return 0;
3701}
3702
Jens Axboe14a11432020-09-28 14:27:37 -06003703static int io_unlinkat_prep(struct io_kiocb *req,
3704 const struct io_uring_sqe *sqe)
3705{
3706 struct io_unlink *un = &req->unlink;
3707 const char __user *fname;
3708
3709 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3710 return -EBADF;
3711
3712 un->dfd = READ_ONCE(sqe->fd);
3713
3714 un->flags = READ_ONCE(sqe->unlink_flags);
3715 if (un->flags & ~AT_REMOVEDIR)
3716 return -EINVAL;
3717
3718 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3719 un->filename = getname(fname);
3720 if (IS_ERR(un->filename))
3721 return PTR_ERR(un->filename);
3722
3723 req->flags |= REQ_F_NEED_CLEANUP;
3724 return 0;
3725}
3726
3727static int io_unlinkat(struct io_kiocb *req, bool force_nonblock)
3728{
3729 struct io_unlink *un = &req->unlink;
3730 int ret;
3731
3732 if (force_nonblock)
3733 return -EAGAIN;
3734
3735 if (un->flags & AT_REMOVEDIR)
3736 ret = do_rmdir(un->dfd, un->filename);
3737 else
3738 ret = do_unlinkat(un->dfd, un->filename);
3739
3740 req->flags &= ~REQ_F_NEED_CLEANUP;
3741 if (ret < 0)
3742 req_set_fail_links(req);
3743 io_req_complete(req, ret);
3744 return 0;
3745}
3746
Jens Axboe36f4fa62020-09-05 11:14:22 -06003747static int io_shutdown_prep(struct io_kiocb *req,
3748 const struct io_uring_sqe *sqe)
3749{
3750#if defined(CONFIG_NET)
3751 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3752 return -EINVAL;
3753 if (sqe->ioprio || sqe->off || sqe->addr || sqe->rw_flags ||
3754 sqe->buf_index)
3755 return -EINVAL;
3756
3757 req->shutdown.how = READ_ONCE(sqe->len);
3758 return 0;
3759#else
3760 return -EOPNOTSUPP;
3761#endif
3762}
3763
3764static int io_shutdown(struct io_kiocb *req, bool force_nonblock)
3765{
3766#if defined(CONFIG_NET)
3767 struct socket *sock;
3768 int ret;
3769
3770 if (force_nonblock)
3771 return -EAGAIN;
3772
Linus Torvalds48aba792020-12-16 12:44:05 -08003773 sock = sock_from_file(req->file);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003774 if (unlikely(!sock))
Linus Torvalds48aba792020-12-16 12:44:05 -08003775 return -ENOTSOCK;
Jens Axboe36f4fa62020-09-05 11:14:22 -06003776
3777 ret = __sys_shutdown_sock(sock, req->shutdown.how);
Jens Axboea1464682020-12-14 20:57:27 -07003778 if (ret < 0)
3779 req_set_fail_links(req);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003780 io_req_complete(req, ret);
3781 return 0;
3782#else
3783 return -EOPNOTSUPP;
3784#endif
3785}
3786
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003787static int __io_splice_prep(struct io_kiocb *req,
3788 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003789{
3790 struct io_splice* sp = &req->splice;
3791 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003792
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003793 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3794 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003795
3796 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003797 sp->len = READ_ONCE(sqe->len);
3798 sp->flags = READ_ONCE(sqe->splice_flags);
3799
3800 if (unlikely(sp->flags & ~valid_flags))
3801 return -EINVAL;
3802
Pavel Begunkov8371adf2020-10-10 18:34:08 +01003803 sp->file_in = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in),
3804 (sp->flags & SPLICE_F_FD_IN_FIXED));
3805 if (!sp->file_in)
3806 return -EBADF;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003807 req->flags |= REQ_F_NEED_CLEANUP;
3808
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003809 if (!S_ISREG(file_inode(sp->file_in)->i_mode)) {
3810 /*
3811 * Splice operation will be punted aync, and here need to
3812 * modify io_wq_work.flags, so initialize io_wq_work firstly.
3813 */
3814 io_req_init_async(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003815 req->work.flags |= IO_WQ_WORK_UNBOUND;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003816 }
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003817
3818 return 0;
3819}
3820
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003821static int io_tee_prep(struct io_kiocb *req,
3822 const struct io_uring_sqe *sqe)
3823{
3824 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3825 return -EINVAL;
3826 return __io_splice_prep(req, sqe);
3827}
3828
3829static int io_tee(struct io_kiocb *req, bool force_nonblock)
3830{
3831 struct io_splice *sp = &req->splice;
3832 struct file *in = sp->file_in;
3833 struct file *out = sp->file_out;
3834 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3835 long ret = 0;
3836
3837 if (force_nonblock)
3838 return -EAGAIN;
3839 if (sp->len)
3840 ret = do_tee(in, out, sp->len, flags);
3841
3842 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3843 req->flags &= ~REQ_F_NEED_CLEANUP;
3844
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003845 if (ret != sp->len)
3846 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003847 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003848 return 0;
3849}
3850
3851static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3852{
3853 struct io_splice* sp = &req->splice;
3854
3855 sp->off_in = READ_ONCE(sqe->splice_off_in);
3856 sp->off_out = READ_ONCE(sqe->off);
3857 return __io_splice_prep(req, sqe);
3858}
3859
Pavel Begunkov014db002020-03-03 21:33:12 +03003860static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003861{
3862 struct io_splice *sp = &req->splice;
3863 struct file *in = sp->file_in;
3864 struct file *out = sp->file_out;
3865 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3866 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003867 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003868
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03003869 if (force_nonblock)
3870 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003871
3872 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
3873 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003874
Jens Axboe948a7742020-05-17 14:21:38 -06003875 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03003876 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003877
3878 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3879 req->flags &= ~REQ_F_NEED_CLEANUP;
3880
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003881 if (ret != sp->len)
3882 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003883 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003884 return 0;
3885}
3886
Jens Axboe2b188cc2019-01-07 10:46:33 -07003887/*
3888 * IORING_OP_NOP just posts a completion event, nothing else.
3889 */
Jens Axboe229a7b62020-06-22 10:13:11 -06003890static int io_nop(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003891{
3892 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003893
Jens Axboedef596e2019-01-09 08:59:42 -07003894 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3895 return -EINVAL;
3896
Jens Axboe229a7b62020-06-22 10:13:11 -06003897 __io_req_complete(req, 0, 0, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003898 return 0;
3899}
3900
Jens Axboe3529d8c2019-12-19 18:24:38 -07003901static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003902{
Jens Axboe6b063142019-01-10 22:13:58 -07003903 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003904
Jens Axboe09bb8392019-03-13 12:39:28 -06003905 if (!req->file)
3906 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003907
Jens Axboe6b063142019-01-10 22:13:58 -07003908 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07003909 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07003910 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003911 return -EINVAL;
3912
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003913 req->sync.flags = READ_ONCE(sqe->fsync_flags);
3914 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
3915 return -EINVAL;
3916
3917 req->sync.off = READ_ONCE(sqe->off);
3918 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003919 return 0;
3920}
3921
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003922static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Jens Axboe78912932020-01-14 22:09:06 -07003923{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003924 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003925 int ret;
3926
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003927 /* fsync always requires a blocking context */
3928 if (force_nonblock)
3929 return -EAGAIN;
3930
Jens Axboe9adbd452019-12-20 08:45:55 -07003931 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003932 end > 0 ? end : LLONG_MAX,
3933 req->sync.flags & IORING_FSYNC_DATASYNC);
3934 if (ret < 0)
3935 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003936 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003937 return 0;
3938}
3939
Jens Axboed63d1b52019-12-10 10:38:56 -07003940static int io_fallocate_prep(struct io_kiocb *req,
3941 const struct io_uring_sqe *sqe)
3942{
3943 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
3944 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003945 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3946 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07003947
3948 req->sync.off = READ_ONCE(sqe->off);
3949 req->sync.len = READ_ONCE(sqe->addr);
3950 req->sync.mode = READ_ONCE(sqe->len);
3951 return 0;
3952}
3953
Pavel Begunkov014db002020-03-03 21:33:12 +03003954static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07003955{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003956 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07003957
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003958 /* fallocate always requiring blocking context */
3959 if (force_nonblock)
3960 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003961 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
3962 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003963 if (ret < 0)
3964 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003965 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07003966 return 0;
3967}
3968
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003969static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003970{
Jens Axboef8748882020-01-08 17:47:02 -07003971 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003972 int ret;
3973
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003974 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07003975 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003976 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07003977 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003978
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003979 /* open.how should be already initialised */
3980 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06003981 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003982
Pavel Begunkov25e72d12020-06-03 18:03:23 +03003983 req->open.dfd = READ_ONCE(sqe->fd);
3984 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07003985 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003986 if (IS_ERR(req->open.filename)) {
3987 ret = PTR_ERR(req->open.filename);
3988 req->open.filename = NULL;
3989 return ret;
3990 }
Jens Axboe4022e7a2020-03-19 19:23:18 -06003991 req->open.nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe944d1442020-11-13 16:48:44 -07003992 req->open.ignore_nonblock = false;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003993 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003994 return 0;
3995}
3996
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003997static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3998{
3999 u64 flags, mode;
4000
Jens Axboe14587a462020-09-05 11:36:08 -06004001 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe4eb8dde2020-09-18 19:36:24 -06004002 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004003 mode = READ_ONCE(sqe->len);
4004 flags = READ_ONCE(sqe->open_flags);
4005 req->open.how = build_open_how(flags, mode);
4006 return __io_openat_prep(req, sqe);
4007}
4008
Jens Axboecebdb982020-01-08 17:59:24 -07004009static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4010{
4011 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07004012 size_t len;
4013 int ret;
4014
Jens Axboe14587a462020-09-05 11:36:08 -06004015 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe4eb8dde2020-09-18 19:36:24 -06004016 return -EINVAL;
Jens Axboecebdb982020-01-08 17:59:24 -07004017 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4018 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07004019 if (len < OPEN_HOW_SIZE_VER0)
4020 return -EINVAL;
4021
4022 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
4023 len);
4024 if (ret)
4025 return ret;
4026
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004027 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07004028}
4029
Pavel Begunkov014db002020-03-03 21:33:12 +03004030static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004031{
4032 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004033 struct file *file;
4034 int ret;
4035
Jens Axboe944d1442020-11-13 16:48:44 -07004036 if (force_nonblock && !req->open.ignore_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004037 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004038
Jens Axboecebdb982020-01-08 17:59:24 -07004039 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004040 if (ret)
4041 goto err;
4042
Jens Axboe4022e7a2020-03-19 19:23:18 -06004043 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004044 if (ret < 0)
4045 goto err;
4046
4047 file = do_filp_open(req->open.dfd, req->open.filename, &op);
4048 if (IS_ERR(file)) {
4049 put_unused_fd(ret);
4050 ret = PTR_ERR(file);
Jens Axboe944d1442020-11-13 16:48:44 -07004051 /*
4052 * A work-around to ensure that /proc/self works that way
4053 * that it should - if we get -EOPNOTSUPP back, then assume
4054 * that proc_self_get_link() failed us because we're in async
4055 * context. We should be safe to retry this from the task
4056 * itself with force_nonblock == false set, as it should not
4057 * block on lookup. Would be nice to know this upfront and
4058 * avoid the async dance, but doesn't seem feasible.
4059 */
4060 if (ret == -EOPNOTSUPP && io_wq_current_is_worker()) {
4061 req->open.ignore_nonblock = true;
4062 refcount_inc(&req->refs);
4063 io_req_task_queue(req);
4064 return 0;
4065 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004066 } else {
4067 fsnotify_open(file);
4068 fd_install(ret, file);
4069 }
4070err:
4071 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004072 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004073 if (ret < 0)
4074 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004075 io_req_complete(req, ret);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004076 return 0;
4077}
4078
Pavel Begunkov014db002020-03-03 21:33:12 +03004079static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07004080{
Pavel Begunkov014db002020-03-03 21:33:12 +03004081 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07004082}
4083
Jens Axboe067524e2020-03-02 16:32:28 -07004084static int io_remove_buffers_prep(struct io_kiocb *req,
4085 const struct io_uring_sqe *sqe)
4086{
4087 struct io_provide_buf *p = &req->pbuf;
4088 u64 tmp;
4089
4090 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
4091 return -EINVAL;
4092
4093 tmp = READ_ONCE(sqe->fd);
4094 if (!tmp || tmp > USHRT_MAX)
4095 return -EINVAL;
4096
4097 memset(p, 0, sizeof(*p));
4098 p->nbufs = tmp;
4099 p->bgid = READ_ONCE(sqe->buf_group);
4100 return 0;
4101}
4102
4103static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
4104 int bgid, unsigned nbufs)
4105{
4106 unsigned i = 0;
4107
4108 /* shouldn't happen */
4109 if (!nbufs)
4110 return 0;
4111
4112 /* the head kbuf is the list itself */
4113 while (!list_empty(&buf->list)) {
4114 struct io_buffer *nxt;
4115
4116 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4117 list_del(&nxt->list);
4118 kfree(nxt);
4119 if (++i == nbufs)
4120 return i;
4121 }
4122 i++;
4123 kfree(buf);
4124 idr_remove(&ctx->io_buffer_idr, bgid);
4125
4126 return i;
4127}
4128
Jens Axboe229a7b62020-06-22 10:13:11 -06004129static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock,
4130 struct io_comp_state *cs)
Jens Axboe067524e2020-03-02 16:32:28 -07004131{
4132 struct io_provide_buf *p = &req->pbuf;
4133 struct io_ring_ctx *ctx = req->ctx;
4134 struct io_buffer *head;
4135 int ret = 0;
4136
4137 io_ring_submit_lock(ctx, !force_nonblock);
4138
4139 lockdep_assert_held(&ctx->uring_lock);
4140
4141 ret = -ENOENT;
4142 head = idr_find(&ctx->io_buffer_idr, p->bgid);
4143 if (head)
4144 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
Jens Axboe067524e2020-03-02 16:32:28 -07004145 if (ret < 0)
4146 req_set_fail_links(req);
Pavel Begunkov31bff9a2020-12-06 22:22:43 +00004147
4148 /* need to hold the lock to complete IOPOLL requests */
4149 if (ctx->flags & IORING_SETUP_IOPOLL) {
4150 __io_req_complete(req, ret, 0, cs);
4151 io_ring_submit_unlock(ctx, !force_nonblock);
4152 } else {
4153 io_ring_submit_unlock(ctx, !force_nonblock);
4154 __io_req_complete(req, ret, 0, cs);
4155 }
Jens Axboe067524e2020-03-02 16:32:28 -07004156 return 0;
4157}
4158
Jens Axboeddf0322d2020-02-23 16:41:33 -07004159static int io_provide_buffers_prep(struct io_kiocb *req,
4160 const struct io_uring_sqe *sqe)
4161{
4162 struct io_provide_buf *p = &req->pbuf;
4163 u64 tmp;
4164
4165 if (sqe->ioprio || sqe->rw_flags)
4166 return -EINVAL;
4167
4168 tmp = READ_ONCE(sqe->fd);
4169 if (!tmp || tmp > USHRT_MAX)
4170 return -E2BIG;
4171 p->nbufs = tmp;
4172 p->addr = READ_ONCE(sqe->addr);
4173 p->len = READ_ONCE(sqe->len);
4174
Bijan Mottahedehefe68c12020-06-04 18:01:52 -07004175 if (!access_ok(u64_to_user_ptr(p->addr), (p->len * p->nbufs)))
Jens Axboeddf0322d2020-02-23 16:41:33 -07004176 return -EFAULT;
4177
4178 p->bgid = READ_ONCE(sqe->buf_group);
4179 tmp = READ_ONCE(sqe->off);
4180 if (tmp > USHRT_MAX)
4181 return -E2BIG;
4182 p->bid = tmp;
4183 return 0;
4184}
4185
4186static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
4187{
4188 struct io_buffer *buf;
4189 u64 addr = pbuf->addr;
4190 int i, bid = pbuf->bid;
4191
4192 for (i = 0; i < pbuf->nbufs; i++) {
4193 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
4194 if (!buf)
4195 break;
4196
4197 buf->addr = addr;
4198 buf->len = pbuf->len;
4199 buf->bid = bid;
4200 addr += pbuf->len;
4201 bid++;
4202 if (!*head) {
4203 INIT_LIST_HEAD(&buf->list);
4204 *head = buf;
4205 } else {
4206 list_add_tail(&buf->list, &(*head)->list);
4207 }
4208 }
4209
4210 return i ? i : -ENOMEM;
4211}
4212
Jens Axboe229a7b62020-06-22 10:13:11 -06004213static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock,
4214 struct io_comp_state *cs)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004215{
4216 struct io_provide_buf *p = &req->pbuf;
4217 struct io_ring_ctx *ctx = req->ctx;
4218 struct io_buffer *head, *list;
4219 int ret = 0;
4220
4221 io_ring_submit_lock(ctx, !force_nonblock);
4222
4223 lockdep_assert_held(&ctx->uring_lock);
4224
4225 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
4226
4227 ret = io_add_buffers(p, &head);
4228 if (ret < 0)
4229 goto out;
4230
4231 if (!list) {
4232 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
4233 GFP_KERNEL);
4234 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07004235 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004236 goto out;
4237 }
4238 }
4239out:
Jens Axboeddf0322d2020-02-23 16:41:33 -07004240 if (ret < 0)
4241 req_set_fail_links(req);
Pavel Begunkov31bff9a2020-12-06 22:22:43 +00004242
4243 /* need to hold the lock to complete IOPOLL requests */
4244 if (ctx->flags & IORING_SETUP_IOPOLL) {
4245 __io_req_complete(req, ret, 0, cs);
4246 io_ring_submit_unlock(ctx, !force_nonblock);
4247 } else {
4248 io_ring_submit_unlock(ctx, !force_nonblock);
4249 __io_req_complete(req, ret, 0, cs);
4250 }
Jens Axboeddf0322d2020-02-23 16:41:33 -07004251 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004252}
4253
Jens Axboe3e4827b2020-01-08 15:18:09 -07004254static int io_epoll_ctl_prep(struct io_kiocb *req,
4255 const struct io_uring_sqe *sqe)
4256{
4257#if defined(CONFIG_EPOLL)
4258 if (sqe->ioprio || sqe->buf_index)
4259 return -EINVAL;
Jens Axboe6ca56f82020-09-18 16:51:19 -06004260 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004261 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004262
4263 req->epoll.epfd = READ_ONCE(sqe->fd);
4264 req->epoll.op = READ_ONCE(sqe->len);
4265 req->epoll.fd = READ_ONCE(sqe->off);
4266
4267 if (ep_op_has_event(req->epoll.op)) {
4268 struct epoll_event __user *ev;
4269
4270 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
4271 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
4272 return -EFAULT;
4273 }
4274
4275 return 0;
4276#else
4277 return -EOPNOTSUPP;
4278#endif
4279}
4280
Jens Axboe229a7b62020-06-22 10:13:11 -06004281static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock,
4282 struct io_comp_state *cs)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004283{
4284#if defined(CONFIG_EPOLL)
4285 struct io_epoll *ie = &req->epoll;
4286 int ret;
4287
4288 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
4289 if (force_nonblock && ret == -EAGAIN)
4290 return -EAGAIN;
4291
4292 if (ret < 0)
4293 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004294 __io_req_complete(req, ret, 0, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07004295 return 0;
4296#else
4297 return -EOPNOTSUPP;
4298#endif
4299}
4300
Jens Axboec1ca7572019-12-25 22:18:28 -07004301static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4302{
4303#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4304 if (sqe->ioprio || sqe->buf_index || sqe->off)
4305 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004306 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4307 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07004308
4309 req->madvise.addr = READ_ONCE(sqe->addr);
4310 req->madvise.len = READ_ONCE(sqe->len);
4311 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
4312 return 0;
4313#else
4314 return -EOPNOTSUPP;
4315#endif
4316}
4317
Pavel Begunkov014db002020-03-03 21:33:12 +03004318static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07004319{
4320#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4321 struct io_madvise *ma = &req->madvise;
4322 int ret;
4323
4324 if (force_nonblock)
4325 return -EAGAIN;
4326
Minchan Kim0726b012020-10-17 16:14:50 -07004327 ret = do_madvise(current->mm, ma->addr, ma->len, ma->advice);
Jens Axboec1ca7572019-12-25 22:18:28 -07004328 if (ret < 0)
4329 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004330 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07004331 return 0;
4332#else
4333 return -EOPNOTSUPP;
4334#endif
4335}
4336
Jens Axboe4840e412019-12-25 22:03:45 -07004337static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4338{
4339 if (sqe->ioprio || sqe->buf_index || sqe->addr)
4340 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004341 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4342 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07004343
4344 req->fadvise.offset = READ_ONCE(sqe->off);
4345 req->fadvise.len = READ_ONCE(sqe->len);
4346 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
4347 return 0;
4348}
4349
Pavel Begunkov014db002020-03-03 21:33:12 +03004350static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07004351{
4352 struct io_fadvise *fa = &req->fadvise;
4353 int ret;
4354
Jens Axboe3e694262020-02-01 09:22:49 -07004355 if (force_nonblock) {
4356 switch (fa->advice) {
4357 case POSIX_FADV_NORMAL:
4358 case POSIX_FADV_RANDOM:
4359 case POSIX_FADV_SEQUENTIAL:
4360 break;
4361 default:
4362 return -EAGAIN;
4363 }
4364 }
Jens Axboe4840e412019-12-25 22:03:45 -07004365
4366 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
4367 if (ret < 0)
4368 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004369 io_req_complete(req, ret);
Jens Axboe4840e412019-12-25 22:03:45 -07004370 return 0;
4371}
4372
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004373static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4374{
Jens Axboe6ca56f82020-09-18 16:51:19 -06004375 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004376 return -EINVAL;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004377 if (sqe->ioprio || sqe->buf_index)
4378 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004379 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004380 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004381
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004382 req->statx.dfd = READ_ONCE(sqe->fd);
4383 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004384 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004385 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4386 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004387
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004388 return 0;
4389}
4390
Pavel Begunkov014db002020-03-03 21:33:12 +03004391static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004392{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004393 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004394 int ret;
4395
Jens Axboe5b0bbee2020-04-27 10:41:22 -06004396 if (force_nonblock) {
4397 /* only need file table for an actual valid fd */
4398 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
4399 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004400 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06004401 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004402
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004403 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
4404 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004405
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004406 if (ret < 0)
4407 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004408 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004409 return 0;
4410}
4411
Jens Axboeb5dba592019-12-11 14:02:38 -07004412static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4413{
4414 /*
4415 * If we queue this for async, it must not be cancellable. That would
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08004416 * leave the 'file' in an undeterminate state, and here need to modify
4417 * io_wq_work.flags, so initialize io_wq_work firstly.
Jens Axboeb5dba592019-12-11 14:02:38 -07004418 */
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08004419 io_req_init_async(req);
Jens Axboeb5dba592019-12-11 14:02:38 -07004420 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
4421
Jens Axboe14587a462020-09-05 11:36:08 -06004422 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004423 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004424 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
4425 sqe->rw_flags || sqe->buf_index)
4426 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004427 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004428 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004429
4430 req->close.fd = READ_ONCE(sqe->fd);
Jens Axboe0f212202020-09-13 13:09:39 -06004431 if ((req->file && req->file->f_op == &io_uring_fops))
Jens Axboefd2206e2020-06-02 16:40:47 -06004432 return -EBADF;
4433
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004434 req->close.put_file = NULL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004435 return 0;
4436}
4437
Jens Axboe229a7b62020-06-22 10:13:11 -06004438static int io_close(struct io_kiocb *req, bool force_nonblock,
4439 struct io_comp_state *cs)
Jens Axboeb5dba592019-12-11 14:02:38 -07004440{
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004441 struct io_close *close = &req->close;
Jens Axboeb5dba592019-12-11 14:02:38 -07004442 int ret;
4443
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004444 /* might be already done during nonblock submission */
4445 if (!close->put_file) {
Eric W. Biederman9fe83c42020-11-20 17:14:40 -06004446 ret = close_fd_get_file(close->fd, &close->put_file);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004447 if (ret < 0)
4448 return (ret == -ENOENT) ? -EBADF : ret;
4449 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004450
4451 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004452 if (close->put_file->f_op->flush && force_nonblock) {
Pavel Begunkov24c74672020-06-21 13:09:51 +03004453 /* was never set, but play safe */
4454 req->flags &= ~REQ_F_NOWAIT;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004455 /* avoid grabbing files - we don't need the files */
Pavel Begunkov24c74672020-06-21 13:09:51 +03004456 req->flags |= REQ_F_NO_FILE_TABLE;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004457 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004458 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004459
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004460 /* No ->flush() or already async, safely close from here */
Jens Axboe98447d62020-10-14 10:48:51 -06004461 ret = filp_close(close->put_file, req->work.identity->files);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004462 if (ret < 0)
4463 req_set_fail_links(req);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004464 fput(close->put_file);
4465 close->put_file = NULL;
Jens Axboe229a7b62020-06-22 10:13:11 -06004466 __io_req_complete(req, ret, 0, cs);
Jens Axboe1a417f42020-01-31 17:16:48 -07004467 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004468}
4469
Jens Axboe3529d8c2019-12-19 18:24:38 -07004470static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004471{
4472 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004473
4474 if (!req->file)
4475 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004476
4477 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4478 return -EINVAL;
4479 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
4480 return -EINVAL;
4481
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004482 req->sync.off = READ_ONCE(sqe->off);
4483 req->sync.len = READ_ONCE(sqe->len);
4484 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004485 return 0;
4486}
4487
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004488static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004489{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004490 int ret;
4491
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004492 /* sync_file_range always requires a blocking context */
4493 if (force_nonblock)
4494 return -EAGAIN;
4495
Jens Axboe9adbd452019-12-20 08:45:55 -07004496 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004497 req->sync.flags);
4498 if (ret < 0)
4499 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004500 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004501 return 0;
4502}
4503
YueHaibing469956e2020-03-04 15:53:52 +08004504#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004505static int io_setup_async_msg(struct io_kiocb *req,
4506 struct io_async_msghdr *kmsg)
4507{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004508 struct io_async_msghdr *async_msg = req->async_data;
4509
4510 if (async_msg)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004511 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004512 if (io_alloc_async_data(req)) {
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004513 if (kmsg->iov != kmsg->fast_iov)
4514 kfree(kmsg->iov);
4515 return -ENOMEM;
4516 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004517 async_msg = req->async_data;
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004518 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004519 memcpy(async_msg, kmsg, sizeof(*kmsg));
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004520 return -EAGAIN;
4521}
4522
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004523static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4524 struct io_async_msghdr *iomsg)
4525{
4526 iomsg->iov = iomsg->fast_iov;
4527 iomsg->msg.msg_name = &iomsg->addr;
4528 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
4529 req->sr_msg.msg_flags, &iomsg->iov);
4530}
4531
Jens Axboe3529d8c2019-12-19 18:24:38 -07004532static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004533{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004534 struct io_async_msghdr *async_msg = req->async_data;
Jens Axboee47293f2019-12-20 08:58:21 -07004535 struct io_sr_msg *sr = &req->sr_msg;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004536 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004537
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004538 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4539 return -EINVAL;
4540
Jens Axboee47293f2019-12-20 08:58:21 -07004541 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004542 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004543 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004544
Jens Axboed8768362020-02-27 14:17:49 -07004545#ifdef CONFIG_COMPAT
4546 if (req->ctx->compat)
4547 sr->msg_flags |= MSG_CMSG_COMPAT;
4548#endif
4549
Jens Axboee8c2bc12020-08-15 18:44:09 -07004550 if (!async_msg || !io_op_defs[req->opcode].needs_async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07004551 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004552 ret = io_sendmsg_copy_hdr(req, async_msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004553 if (!ret)
4554 req->flags |= REQ_F_NEED_CLEANUP;
4555 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004556}
4557
Jens Axboe229a7b62020-06-22 10:13:11 -06004558static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4559 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004560{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004561 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004562 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004563 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004564 int ret;
4565
Florent Revestdba4a922020-12-04 12:36:04 +01004566 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004567 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004568 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004569
Jens Axboee8c2bc12020-08-15 18:44:09 -07004570 if (req->async_data) {
4571 kmsg = req->async_data;
4572 kmsg->msg.msg_name = &kmsg->addr;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004573 /* if iov is set, it's allocated already */
4574 if (!kmsg->iov)
4575 kmsg->iov = kmsg->fast_iov;
4576 kmsg->msg.msg_iter.iov = kmsg->iov;
4577 } else {
4578 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004579 if (ret)
4580 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004581 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004582 }
4583
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004584 flags = req->sr_msg.msg_flags;
4585 if (flags & MSG_DONTWAIT)
4586 req->flags |= REQ_F_NOWAIT;
4587 else if (force_nonblock)
4588 flags |= MSG_DONTWAIT;
4589
4590 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
4591 if (force_nonblock && ret == -EAGAIN)
4592 return io_setup_async_msg(req, kmsg);
4593 if (ret == -ERESTARTSYS)
4594 ret = -EINTR;
4595
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004596 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe03b12302019-12-02 18:50:25 -07004597 kfree(kmsg->iov);
4598 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07004599 if (ret < 0)
4600 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004601 __io_req_complete(req, ret, 0, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004602 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004603}
4604
Jens Axboe229a7b62020-06-22 10:13:11 -06004605static int io_send(struct io_kiocb *req, bool force_nonblock,
4606 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004607{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004608 struct io_sr_msg *sr = &req->sr_msg;
4609 struct msghdr msg;
4610 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004611 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004612 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004613 int ret;
4614
Florent Revestdba4a922020-12-04 12:36:04 +01004615 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004616 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004617 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004618
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004619 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4620 if (unlikely(ret))
Zheng Bin14db8412020-09-09 20:12:37 +08004621 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004622
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004623 msg.msg_name = NULL;
4624 msg.msg_control = NULL;
4625 msg.msg_controllen = 0;
4626 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004627
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004628 flags = req->sr_msg.msg_flags;
4629 if (flags & MSG_DONTWAIT)
4630 req->flags |= REQ_F_NOWAIT;
4631 else if (force_nonblock)
4632 flags |= MSG_DONTWAIT;
Jens Axboe03b12302019-12-02 18:50:25 -07004633
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004634 msg.msg_flags = flags;
4635 ret = sock_sendmsg(sock, &msg);
4636 if (force_nonblock && ret == -EAGAIN)
4637 return -EAGAIN;
4638 if (ret == -ERESTARTSYS)
4639 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004640
Jens Axboe03b12302019-12-02 18:50:25 -07004641 if (ret < 0)
4642 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004643 __io_req_complete(req, ret, 0, cs);
Jens Axboe03b12302019-12-02 18:50:25 -07004644 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004645}
4646
Pavel Begunkov1400e692020-07-12 20:41:05 +03004647static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4648 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004649{
4650 struct io_sr_msg *sr = &req->sr_msg;
4651 struct iovec __user *uiov;
4652 size_t iov_len;
4653 int ret;
4654
Pavel Begunkov1400e692020-07-12 20:41:05 +03004655 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4656 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004657 if (ret)
4658 return ret;
4659
4660 if (req->flags & REQ_F_BUFFER_SELECT) {
4661 if (iov_len > 1)
4662 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004663 if (copy_from_user(iomsg->iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004664 return -EFAULT;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004665 sr->len = iomsg->iov[0].iov_len;
4666 iov_iter_init(&iomsg->msg.msg_iter, READ, iomsg->iov, 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004667 sr->len);
Pavel Begunkov1400e692020-07-12 20:41:05 +03004668 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004669 } else {
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004670 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
4671 &iomsg->iov, &iomsg->msg.msg_iter,
4672 false);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004673 if (ret > 0)
4674 ret = 0;
4675 }
4676
4677 return ret;
4678}
4679
4680#ifdef CONFIG_COMPAT
4681static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004682 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004683{
4684 struct compat_msghdr __user *msg_compat;
4685 struct io_sr_msg *sr = &req->sr_msg;
4686 struct compat_iovec __user *uiov;
4687 compat_uptr_t ptr;
4688 compat_size_t len;
4689 int ret;
4690
Pavel Begunkov270a5942020-07-12 20:41:04 +03004691 msg_compat = (struct compat_msghdr __user *) sr->umsg;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004692 ret = __get_compat_msghdr(&iomsg->msg, msg_compat, &iomsg->uaddr,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004693 &ptr, &len);
4694 if (ret)
4695 return ret;
4696
4697 uiov = compat_ptr(ptr);
4698 if (req->flags & REQ_F_BUFFER_SELECT) {
4699 compat_ssize_t clen;
4700
4701 if (len > 1)
4702 return -EINVAL;
4703 if (!access_ok(uiov, sizeof(*uiov)))
4704 return -EFAULT;
4705 if (__get_user(clen, &uiov->iov_len))
4706 return -EFAULT;
4707 if (clen < 0)
4708 return -EINVAL;
Pavel Begunkov2d280bc2020-11-29 18:33:32 +00004709 sr->len = clen;
4710 iomsg->iov[0].iov_len = clen;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004711 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004712 } else {
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004713 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
4714 UIO_FASTIOV, &iomsg->iov,
4715 &iomsg->msg.msg_iter, true);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004716 if (ret < 0)
4717 return ret;
4718 }
4719
4720 return 0;
4721}
Jens Axboe03b12302019-12-02 18:50:25 -07004722#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004723
Pavel Begunkov1400e692020-07-12 20:41:05 +03004724static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4725 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004726{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004727 iomsg->msg.msg_name = &iomsg->addr;
4728 iomsg->iov = iomsg->fast_iov;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004729
4730#ifdef CONFIG_COMPAT
4731 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004732 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004733#endif
4734
Pavel Begunkov1400e692020-07-12 20:41:05 +03004735 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004736}
4737
Jens Axboebcda7ba2020-02-23 16:42:51 -07004738static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004739 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004740{
4741 struct io_sr_msg *sr = &req->sr_msg;
4742 struct io_buffer *kbuf;
4743
Jens Axboebcda7ba2020-02-23 16:42:51 -07004744 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4745 if (IS_ERR(kbuf))
4746 return kbuf;
4747
4748 sr->kbuf = kbuf;
4749 req->flags |= REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004750 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07004751}
4752
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004753static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4754{
4755 return io_put_kbuf(req, req->sr_msg.kbuf);
4756}
4757
Jens Axboe3529d8c2019-12-19 18:24:38 -07004758static int io_recvmsg_prep(struct io_kiocb *req,
4759 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07004760{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004761 struct io_async_msghdr *async_msg = req->async_data;
Jens Axboee47293f2019-12-20 08:58:21 -07004762 struct io_sr_msg *sr = &req->sr_msg;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004763 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004764
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004765 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4766 return -EINVAL;
4767
Jens Axboe3529d8c2019-12-19 18:24:38 -07004768 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004769 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004770 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004771 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004772
Jens Axboed8768362020-02-27 14:17:49 -07004773#ifdef CONFIG_COMPAT
4774 if (req->ctx->compat)
4775 sr->msg_flags |= MSG_CMSG_COMPAT;
4776#endif
4777
Jens Axboee8c2bc12020-08-15 18:44:09 -07004778 if (!async_msg || !io_op_defs[req->opcode].needs_async_data)
Jens Axboe06b76d42019-12-19 14:44:26 -07004779 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004780 ret = io_recvmsg_copy_hdr(req, async_msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004781 if (!ret)
4782 req->flags |= REQ_F_NEED_CLEANUP;
4783 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004784}
4785
Jens Axboe229a7b62020-06-22 10:13:11 -06004786static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4787 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004788{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004789 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004790 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004791 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004792 unsigned flags;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004793 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004794
Florent Revestdba4a922020-12-04 12:36:04 +01004795 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004796 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004797 return -ENOTSOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004798
Jens Axboee8c2bc12020-08-15 18:44:09 -07004799 if (req->async_data) {
4800 kmsg = req->async_data;
4801 kmsg->msg.msg_name = &kmsg->addr;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004802 /* if iov is set, it's allocated already */
4803 if (!kmsg->iov)
4804 kmsg->iov = kmsg->fast_iov;
4805 kmsg->msg.msg_iter.iov = kmsg->iov;
4806 } else {
4807 ret = io_recvmsg_copy_hdr(req, &iomsg);
4808 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004809 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004810 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004811 }
4812
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004813 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004814 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004815 if (IS_ERR(kbuf))
4816 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004817 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
4818 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
4819 1, req->sr_msg.len);
4820 }
4821
4822 flags = req->sr_msg.msg_flags;
4823 if (flags & MSG_DONTWAIT)
4824 req->flags |= REQ_F_NOWAIT;
4825 else if (force_nonblock)
4826 flags |= MSG_DONTWAIT;
4827
4828 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4829 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004830 if (force_nonblock && ret == -EAGAIN)
4831 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004832 if (ret == -ERESTARTSYS)
4833 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004834
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004835 if (req->flags & REQ_F_BUFFER_SELECTED)
4836 cflags = io_put_recv_kbuf(req);
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004837 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07004838 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004839 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004840 if (ret < 0)
4841 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004842 __io_req_complete(req, ret, cflags, cs);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004843 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004844}
4845
Jens Axboe229a7b62020-06-22 10:13:11 -06004846static int io_recv(struct io_kiocb *req, bool force_nonblock,
4847 struct io_comp_state *cs)
Jens Axboefddafac2020-01-04 20:19:44 -07004848{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004849 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004850 struct io_sr_msg *sr = &req->sr_msg;
4851 struct msghdr msg;
4852 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07004853 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004854 struct iovec iov;
4855 unsigned flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004856 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004857
Florent Revestdba4a922020-12-04 12:36:04 +01004858 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004859 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004860 return -ENOTSOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07004861
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004862 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004863 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004864 if (IS_ERR(kbuf))
4865 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004866 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07004867 }
4868
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004869 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004870 if (unlikely(ret))
4871 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07004872
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004873 msg.msg_name = NULL;
4874 msg.msg_control = NULL;
4875 msg.msg_controllen = 0;
4876 msg.msg_namelen = 0;
4877 msg.msg_iocb = NULL;
4878 msg.msg_flags = 0;
4879
4880 flags = req->sr_msg.msg_flags;
4881 if (flags & MSG_DONTWAIT)
4882 req->flags |= REQ_F_NOWAIT;
4883 else if (force_nonblock)
4884 flags |= MSG_DONTWAIT;
4885
4886 ret = sock_recvmsg(sock, &msg, flags);
4887 if (force_nonblock && ret == -EAGAIN)
4888 return -EAGAIN;
4889 if (ret == -ERESTARTSYS)
4890 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004891out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004892 if (req->flags & REQ_F_BUFFER_SELECTED)
4893 cflags = io_put_recv_kbuf(req);
Jens Axboefddafac2020-01-04 20:19:44 -07004894 if (ret < 0)
4895 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004896 __io_req_complete(req, ret, cflags, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004897 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004898}
4899
Jens Axboe3529d8c2019-12-19 18:24:38 -07004900static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004901{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004902 struct io_accept *accept = &req->accept;
4903
Jens Axboe14587a462020-09-05 11:36:08 -06004904 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe17f2fe32019-10-17 14:42:58 -06004905 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05004906 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004907 return -EINVAL;
4908
Jens Axboed55e5f52019-12-11 16:12:15 -07004909 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4910 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004911 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06004912 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004913 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004914}
Jens Axboe17f2fe32019-10-17 14:42:58 -06004915
Jens Axboe229a7b62020-06-22 10:13:11 -06004916static int io_accept(struct io_kiocb *req, bool force_nonblock,
4917 struct io_comp_state *cs)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004918{
4919 struct io_accept *accept = &req->accept;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004920 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004921 int ret;
4922
Jiufei Xuee697dee2020-06-10 13:41:59 +08004923 if (req->file->f_flags & O_NONBLOCK)
4924 req->flags |= REQ_F_NOWAIT;
4925
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004926 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06004927 accept->addr_len, accept->flags,
4928 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004929 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004930 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004931 if (ret < 0) {
4932 if (ret == -ERESTARTSYS)
4933 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004934 req_set_fail_links(req);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004935 }
Jens Axboe229a7b62020-06-22 10:13:11 -06004936 __io_req_complete(req, ret, 0, cs);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004937 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004938}
4939
Jens Axboe3529d8c2019-12-19 18:24:38 -07004940static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004941{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004942 struct io_connect *conn = &req->connect;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004943 struct io_async_connect *io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07004944
Jens Axboe14587a462020-09-05 11:36:08 -06004945 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004946 return -EINVAL;
4947 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4948 return -EINVAL;
4949
Jens Axboe3529d8c2019-12-19 18:24:38 -07004950 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4951 conn->addr_len = READ_ONCE(sqe->addr2);
4952
4953 if (!io)
4954 return 0;
4955
4956 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07004957 &io->address);
Jens Axboef499a022019-12-02 16:28:46 -07004958}
4959
Jens Axboe229a7b62020-06-22 10:13:11 -06004960static int io_connect(struct io_kiocb *req, bool force_nonblock,
4961 struct io_comp_state *cs)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004962{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004963 struct io_async_connect __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004964 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004965 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004966
Jens Axboee8c2bc12020-08-15 18:44:09 -07004967 if (req->async_data) {
4968 io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07004969 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004970 ret = move_addr_to_kernel(req->connect.addr,
4971 req->connect.addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07004972 &__io.address);
Jens Axboef499a022019-12-02 16:28:46 -07004973 if (ret)
4974 goto out;
4975 io = &__io;
4976 }
4977
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004978 file_flags = force_nonblock ? O_NONBLOCK : 0;
4979
Jens Axboee8c2bc12020-08-15 18:44:09 -07004980 ret = __sys_connect_file(req->file, &io->address,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004981 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004982 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07004983 if (req->async_data)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004984 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004985 if (io_alloc_async_data(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004986 ret = -ENOMEM;
4987 goto out;
4988 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004989 io = req->async_data;
4990 memcpy(req->async_data, &__io, sizeof(__io));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004991 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004992 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004993 if (ret == -ERESTARTSYS)
4994 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004995out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004996 if (ret < 0)
4997 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004998 __io_req_complete(req, ret, 0, cs);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004999 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005000}
YueHaibing469956e2020-03-04 15:53:52 +08005001#else /* !CONFIG_NET */
5002static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5003{
Jens Axboef8e85cf2019-11-23 14:24:24 -07005004 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005005}
5006
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005007static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
5008 struct io_comp_state *cs)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005009{
YueHaibing469956e2020-03-04 15:53:52 +08005010 return -EOPNOTSUPP;
5011}
5012
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005013static int io_send(struct io_kiocb *req, bool force_nonblock,
5014 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005015{
5016 return -EOPNOTSUPP;
5017}
5018
5019static int io_recvmsg_prep(struct io_kiocb *req,
5020 const struct io_uring_sqe *sqe)
5021{
5022 return -EOPNOTSUPP;
5023}
5024
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005025static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
5026 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005027{
5028 return -EOPNOTSUPP;
5029}
5030
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005031static int io_recv(struct io_kiocb *req, bool force_nonblock,
5032 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005033{
5034 return -EOPNOTSUPP;
5035}
5036
5037static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5038{
5039 return -EOPNOTSUPP;
5040}
5041
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005042static int io_accept(struct io_kiocb *req, bool force_nonblock,
5043 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005044{
5045 return -EOPNOTSUPP;
5046}
5047
5048static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5049{
5050 return -EOPNOTSUPP;
5051}
5052
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005053static int io_connect(struct io_kiocb *req, bool force_nonblock,
5054 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005055{
5056 return -EOPNOTSUPP;
5057}
5058#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07005059
Jens Axboed7718a92020-02-14 22:23:12 -07005060struct io_poll_table {
5061 struct poll_table_struct pt;
5062 struct io_kiocb *req;
5063 int error;
5064};
5065
Jens Axboed7718a92020-02-14 22:23:12 -07005066static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
5067 __poll_t mask, task_work_func_t func)
5068{
Jens Axboeaa96bf82020-04-03 11:26:26 -06005069 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07005070
5071 /* for instances that support it check for an event match first: */
5072 if (mask && !(mask & poll->events))
5073 return 0;
5074
5075 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
5076
5077 list_del_init(&poll->wait.entry);
5078
Jens Axboed7718a92020-02-14 22:23:12 -07005079 req->result = mask;
5080 init_task_work(&req->task_work, func);
Jens Axboe6d816e02020-08-11 08:04:14 -06005081 percpu_ref_get(&req->ctx->refs);
5082
Jens Axboed7718a92020-02-14 22:23:12 -07005083 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06005084 * If this fails, then the task is exiting. When a task exits, the
5085 * work gets canceled, so just cancel this request as well instead
5086 * of executing it. We can't safely execute it anyway, as we may not
5087 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07005088 */
Jens Axboe355fb9e2020-10-22 20:19:35 -06005089 ret = io_req_task_work_add(req);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005090 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06005091 struct task_struct *tsk;
5092
Jens Axboee3aabf92020-05-18 11:04:17 -06005093 WRITE_ONCE(poll->canceled, true);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005094 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06005095 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboece593a62020-06-30 12:39:05 -06005096 wake_up_process(tsk);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005097 }
Jens Axboed7718a92020-02-14 22:23:12 -07005098 return 1;
5099}
5100
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005101static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
5102 __acquires(&req->ctx->completion_lock)
5103{
5104 struct io_ring_ctx *ctx = req->ctx;
5105
5106 if (!req->result && !READ_ONCE(poll->canceled)) {
5107 struct poll_table_struct pt = { ._key = poll->events };
5108
5109 req->result = vfs_poll(req->file, &pt) & poll->events;
5110 }
5111
5112 spin_lock_irq(&ctx->completion_lock);
5113 if (!req->result && !READ_ONCE(poll->canceled)) {
5114 add_wait_queue(poll->head, &poll->wait);
5115 return true;
5116 }
5117
5118 return false;
5119}
5120
Jens Axboed4e7cd32020-08-15 11:44:50 -07005121static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06005122{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005123 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
Jens Axboed4e7cd32020-08-15 11:44:50 -07005124 if (req->opcode == IORING_OP_POLL_ADD)
Jens Axboee8c2bc12020-08-15 18:44:09 -07005125 return req->async_data;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005126 return req->apoll->double_poll;
5127}
5128
5129static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
5130{
5131 if (req->opcode == IORING_OP_POLL_ADD)
5132 return &req->poll;
5133 return &req->apoll->poll;
5134}
5135
5136static void io_poll_remove_double(struct io_kiocb *req)
5137{
5138 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005139
5140 lockdep_assert_held(&req->ctx->completion_lock);
5141
5142 if (poll && poll->head) {
5143 struct wait_queue_head *head = poll->head;
5144
5145 spin_lock(&head->lock);
5146 list_del_init(&poll->wait.entry);
5147 if (poll->wait.private)
5148 refcount_dec(&req->refs);
5149 poll->head = NULL;
5150 spin_unlock(&head->lock);
5151 }
5152}
5153
5154static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
5155{
5156 struct io_ring_ctx *ctx = req->ctx;
5157
Jens Axboed4e7cd32020-08-15 11:44:50 -07005158 io_poll_remove_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005159 req->poll.done = true;
5160 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
5161 io_commit_cqring(ctx);
5162}
5163
Jens Axboe18bceab2020-05-15 11:56:54 -06005164static void io_poll_task_func(struct callback_head *cb)
5165{
5166 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06005167 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005168 struct io_kiocb *nxt;
Jens Axboe18bceab2020-05-15 11:56:54 -06005169
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005170 if (io_poll_rewait(req, &req->poll)) {
5171 spin_unlock_irq(&ctx->completion_lock);
5172 } else {
5173 hash_del(&req->hash_node);
5174 io_poll_complete(req, req->result, 0);
5175 spin_unlock_irq(&ctx->completion_lock);
5176
5177 nxt = io_put_req_find_next(req);
5178 io_cqring_ev_posted(ctx);
5179 if (nxt)
5180 __io_req_task_submit(nxt);
5181 }
5182
Jens Axboe6d816e02020-08-11 08:04:14 -06005183 percpu_ref_put(&ctx->refs);
Jens Axboe18bceab2020-05-15 11:56:54 -06005184}
5185
5186static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
5187 int sync, void *key)
5188{
5189 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005190 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005191 __poll_t mask = key_to_poll(key);
5192
5193 /* for instances that support it check for an event match first: */
5194 if (mask && !(mask & poll->events))
5195 return 0;
5196
Jens Axboe8706e042020-09-28 08:38:54 -06005197 list_del_init(&wait->entry);
5198
Jens Axboe807abcb2020-07-17 17:09:27 -06005199 if (poll && poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005200 bool done;
5201
Jens Axboe807abcb2020-07-17 17:09:27 -06005202 spin_lock(&poll->head->lock);
5203 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06005204 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06005205 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005206 /* make sure double remove sees this as being gone */
5207 wait->private = NULL;
Jens Axboe807abcb2020-07-17 17:09:27 -06005208 spin_unlock(&poll->head->lock);
Jens Axboec8b5e262020-10-25 13:53:26 -06005209 if (!done) {
5210 /* use wait func handler, so it matches the rq type */
5211 poll->wait.func(&poll->wait, mode, sync, key);
5212 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005213 }
5214 refcount_dec(&req->refs);
5215 return 1;
5216}
5217
5218static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
5219 wait_queue_func_t wake_func)
5220{
5221 poll->head = NULL;
5222 poll->done = false;
5223 poll->canceled = false;
5224 poll->events = events;
5225 INIT_LIST_HEAD(&poll->wait.entry);
5226 init_waitqueue_func_entry(&poll->wait, wake_func);
5227}
5228
5229static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06005230 struct wait_queue_head *head,
5231 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06005232{
5233 struct io_kiocb *req = pt->req;
5234
5235 /*
5236 * If poll->head is already set, it's because the file being polled
5237 * uses multiple waitqueues for poll handling (eg one for read, one
5238 * for write). Setup a separate io_poll_iocb if this happens.
5239 */
5240 if (unlikely(poll->head)) {
Pavel Begunkov58852d42020-10-16 20:55:56 +01005241 struct io_poll_iocb *poll_one = poll;
5242
Jens Axboe18bceab2020-05-15 11:56:54 -06005243 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06005244 if (*poll_ptr) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005245 pt->error = -EINVAL;
5246 return;
5247 }
5248 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5249 if (!poll) {
5250 pt->error = -ENOMEM;
5251 return;
5252 }
Pavel Begunkov58852d42020-10-16 20:55:56 +01005253 io_init_poll_iocb(poll, poll_one->events, io_poll_double_wake);
Jens Axboe18bceab2020-05-15 11:56:54 -06005254 refcount_inc(&req->refs);
5255 poll->wait.private = req;
Jens Axboe807abcb2020-07-17 17:09:27 -06005256 *poll_ptr = poll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005257 }
5258
5259 pt->error = 0;
5260 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005261
5262 if (poll->events & EPOLLEXCLUSIVE)
5263 add_wait_queue_exclusive(head, &poll->wait);
5264 else
5265 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06005266}
5267
5268static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5269 struct poll_table_struct *p)
5270{
5271 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06005272 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005273
Jens Axboe807abcb2020-07-17 17:09:27 -06005274 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06005275}
5276
Jens Axboed7718a92020-02-14 22:23:12 -07005277static void io_async_task_func(struct callback_head *cb)
5278{
5279 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
5280 struct async_poll *apoll = req->apoll;
5281 struct io_ring_ctx *ctx = req->ctx;
5282
5283 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
5284
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005285 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07005286 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe6d816e02020-08-11 08:04:14 -06005287 percpu_ref_put(&ctx->refs);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005288 return;
Jens Axboed7718a92020-02-14 22:23:12 -07005289 }
5290
Jens Axboe31067252020-05-17 17:43:31 -06005291 /* If req is still hashed, it cannot have been canceled. Don't check. */
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005292 if (hash_hashed(&req->hash_node))
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005293 hash_del(&req->hash_node);
Jens Axboe2bae0472020-04-13 11:16:34 -06005294
Jens Axboed4e7cd32020-08-15 11:44:50 -07005295 io_poll_remove_double(req);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005296 spin_unlock_irq(&ctx->completion_lock);
5297
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005298 if (!READ_ONCE(apoll->poll.canceled))
5299 __io_req_task_submit(req);
5300 else
5301 __io_req_task_cancel(req, -ECANCELED);
Dan Carpenteraa340842020-07-08 21:47:11 +03005302
Jens Axboe6d816e02020-08-11 08:04:14 -06005303 percpu_ref_put(&ctx->refs);
Jens Axboe807abcb2020-07-17 17:09:27 -06005304 kfree(apoll->double_poll);
Jens Axboe31067252020-05-17 17:43:31 -06005305 kfree(apoll);
Jens Axboed7718a92020-02-14 22:23:12 -07005306}
5307
5308static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5309 void *key)
5310{
5311 struct io_kiocb *req = wait->private;
5312 struct io_poll_iocb *poll = &req->apoll->poll;
5313
5314 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
5315 key_to_poll(key));
5316
5317 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
5318}
5319
5320static void io_poll_req_insert(struct io_kiocb *req)
5321{
5322 struct io_ring_ctx *ctx = req->ctx;
5323 struct hlist_head *list;
5324
5325 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
5326 hlist_add_head(&req->hash_node, list);
5327}
5328
5329static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
5330 struct io_poll_iocb *poll,
5331 struct io_poll_table *ipt, __poll_t mask,
5332 wait_queue_func_t wake_func)
5333 __acquires(&ctx->completion_lock)
5334{
5335 struct io_ring_ctx *ctx = req->ctx;
5336 bool cancel = false;
5337
Pavel Begunkov4d52f332020-10-18 10:17:43 +01005338 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe18bceab2020-05-15 11:56:54 -06005339 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03005340 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06005341 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07005342
5343 ipt->pt._key = mask;
5344 ipt->req = req;
5345 ipt->error = -EINVAL;
5346
Jens Axboed7718a92020-02-14 22:23:12 -07005347 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
5348
5349 spin_lock_irq(&ctx->completion_lock);
5350 if (likely(poll->head)) {
5351 spin_lock(&poll->head->lock);
5352 if (unlikely(list_empty(&poll->wait.entry))) {
5353 if (ipt->error)
5354 cancel = true;
5355 ipt->error = 0;
5356 mask = 0;
5357 }
5358 if (mask || ipt->error)
5359 list_del_init(&poll->wait.entry);
5360 else if (cancel)
5361 WRITE_ONCE(poll->canceled, true);
5362 else if (!poll->done) /* actually waiting for an event */
5363 io_poll_req_insert(req);
5364 spin_unlock(&poll->head->lock);
5365 }
5366
5367 return mask;
5368}
5369
5370static bool io_arm_poll_handler(struct io_kiocb *req)
5371{
5372 const struct io_op_def *def = &io_op_defs[req->opcode];
5373 struct io_ring_ctx *ctx = req->ctx;
5374 struct async_poll *apoll;
5375 struct io_poll_table ipt;
5376 __poll_t mask, ret;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005377 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07005378
5379 if (!req->file || !file_can_poll(req->file))
5380 return false;
Pavel Begunkov24c74672020-06-21 13:09:51 +03005381 if (req->flags & REQ_F_POLLED)
Jens Axboed7718a92020-02-14 22:23:12 -07005382 return false;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005383 if (def->pollin)
5384 rw = READ;
5385 else if (def->pollout)
5386 rw = WRITE;
5387 else
5388 return false;
5389 /* if we can't nonblock try, then no point in arming a poll handler */
5390 if (!io_file_supports_async(req->file, rw))
Jens Axboed7718a92020-02-14 22:23:12 -07005391 return false;
5392
5393 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5394 if (unlikely(!apoll))
5395 return false;
Jens Axboe807abcb2020-07-17 17:09:27 -06005396 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005397
5398 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07005399 req->apoll = apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07005400
Nathan Chancellor8755d972020-03-02 16:01:19 -07005401 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07005402 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07005403 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07005404 if (def->pollout)
5405 mask |= POLLOUT | POLLWRNORM;
Luke Hsiao901341b2020-08-21 21:41:05 -07005406
5407 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
5408 if ((req->opcode == IORING_OP_RECVMSG) &&
5409 (req->sr_msg.msg_flags & MSG_ERRQUEUE))
5410 mask &= ~POLLIN;
5411
Jens Axboed7718a92020-02-14 22:23:12 -07005412 mask |= POLLERR | POLLPRI;
5413
5414 ipt.pt._qproc = io_async_queue_proc;
5415
5416 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
5417 io_async_wake);
Jens Axboea36da652020-08-11 09:50:19 -06005418 if (ret || ipt.error) {
Jens Axboed4e7cd32020-08-15 11:44:50 -07005419 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005420 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe807abcb2020-07-17 17:09:27 -06005421 kfree(apoll->double_poll);
Jens Axboed7718a92020-02-14 22:23:12 -07005422 kfree(apoll);
5423 return false;
5424 }
5425 spin_unlock_irq(&ctx->completion_lock);
5426 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
5427 apoll->poll.events);
5428 return true;
5429}
5430
5431static bool __io_poll_remove_one(struct io_kiocb *req,
5432 struct io_poll_iocb *poll)
5433{
Jens Axboeb41e9852020-02-17 09:52:41 -07005434 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005435
5436 spin_lock(&poll->head->lock);
5437 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005438 if (!list_empty(&poll->wait.entry)) {
5439 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005440 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005441 }
5442 spin_unlock(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005443 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005444 return do_complete;
5445}
5446
5447static bool io_poll_remove_one(struct io_kiocb *req)
5448{
5449 bool do_complete;
5450
Jens Axboed4e7cd32020-08-15 11:44:50 -07005451 io_poll_remove_double(req);
5452
Jens Axboed7718a92020-02-14 22:23:12 -07005453 if (req->opcode == IORING_OP_POLL_ADD) {
5454 do_complete = __io_poll_remove_one(req, &req->poll);
5455 } else {
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005456 struct async_poll *apoll = req->apoll;
5457
Jens Axboed7718a92020-02-14 22:23:12 -07005458 /* non-poll requests have submit ref still */
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005459 do_complete = __io_poll_remove_one(req, &apoll->poll);
5460 if (do_complete) {
Jens Axboed7718a92020-02-14 22:23:12 -07005461 io_put_req(req);
Jens Axboe807abcb2020-07-17 17:09:27 -06005462 kfree(apoll->double_poll);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005463 kfree(apoll);
5464 }
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08005465 }
5466
Jens Axboeb41e9852020-02-17 09:52:41 -07005467 if (do_complete) {
5468 io_cqring_fill_event(req, -ECANCELED);
5469 io_commit_cqring(req->ctx);
Jens Axboef254ac02020-08-12 17:33:30 -06005470 req_set_fail_links(req);
Pavel Begunkov216578e2020-10-13 09:44:00 +01005471 io_put_req_deferred(req, 1);
Jens Axboeb41e9852020-02-17 09:52:41 -07005472 }
5473
5474 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005475}
5476
Jens Axboe76e1b642020-09-26 15:05:03 -06005477/*
5478 * Returns true if we found and killed one or more poll requests
5479 */
Pavel Begunkov6b819282020-11-06 13:00:25 +00005480static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk,
5481 struct files_struct *files)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005482{
Jens Axboe78076bb2019-12-04 19:56:40 -07005483 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005484 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005485 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005486
5487 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005488 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5489 struct hlist_head *list;
5490
5491 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005492 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
Pavel Begunkov6b819282020-11-06 13:00:25 +00005493 if (io_match_task(req, tsk, files))
Jens Axboef3606e32020-09-22 08:18:24 -06005494 posted += io_poll_remove_one(req);
5495 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005496 }
5497 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005498
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005499 if (posted)
5500 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005501
5502 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005503}
5504
Jens Axboe47f46762019-11-09 17:43:02 -07005505static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
5506{
Jens Axboe78076bb2019-12-04 19:56:40 -07005507 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005508 struct io_kiocb *req;
5509
Jens Axboe78076bb2019-12-04 19:56:40 -07005510 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5511 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005512 if (sqe_addr != req->user_data)
5513 continue;
5514 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07005515 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07005516 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07005517 }
5518
5519 return -ENOENT;
5520}
5521
Jens Axboe3529d8c2019-12-19 18:24:38 -07005522static int io_poll_remove_prep(struct io_kiocb *req,
5523 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005524{
Jens Axboe221c5eb2019-01-17 09:41:58 -07005525 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5526 return -EINVAL;
5527 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
5528 sqe->poll_events)
5529 return -EINVAL;
5530
Pavel Begunkov018043b2020-10-27 23:17:18 +00005531 req->poll_remove.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07005532 return 0;
5533}
5534
5535/*
5536 * Find a running poll command that matches one specified in sqe->addr,
5537 * and remove it if found.
5538 */
5539static int io_poll_remove(struct io_kiocb *req)
5540{
5541 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe0969e782019-12-17 18:40:57 -07005542 int ret;
5543
Jens Axboe221c5eb2019-01-17 09:41:58 -07005544 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov018043b2020-10-27 23:17:18 +00005545 ret = io_poll_cancel(ctx, req->poll_remove.addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005546 spin_unlock_irq(&ctx->completion_lock);
5547
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005548 if (ret < 0)
5549 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06005550 io_req_complete(req, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005551 return 0;
5552}
5553
Jens Axboe221c5eb2019-01-17 09:41:58 -07005554static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5555 void *key)
5556{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005557 struct io_kiocb *req = wait->private;
5558 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005559
Jens Axboed7718a92020-02-14 22:23:12 -07005560 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005561}
5562
Jens Axboe221c5eb2019-01-17 09:41:58 -07005563static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5564 struct poll_table_struct *p)
5565{
5566 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5567
Jens Axboee8c2bc12020-08-15 18:44:09 -07005568 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->async_data);
Jens Axboeeac406c2019-11-14 12:09:58 -07005569}
5570
Jens Axboe3529d8c2019-12-19 18:24:38 -07005571static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005572{
5573 struct io_poll_iocb *poll = &req->poll;
Jiufei Xue5769a352020-06-17 17:53:55 +08005574 u32 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005575
5576 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5577 return -EINVAL;
5578 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
5579 return -EINVAL;
5580
Jiufei Xue5769a352020-06-17 17:53:55 +08005581 events = READ_ONCE(sqe->poll32_events);
5582#ifdef __BIG_ENDIAN
5583 events = swahw32(events);
5584#endif
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005585 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP |
5586 (events & EPOLLEXCLUSIVE);
Jens Axboe0969e782019-12-17 18:40:57 -07005587 return 0;
5588}
5589
Pavel Begunkov014db002020-03-03 21:33:12 +03005590static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07005591{
5592 struct io_poll_iocb *poll = &req->poll;
5593 struct io_ring_ctx *ctx = req->ctx;
5594 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005595 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07005596
Jens Axboed7718a92020-02-14 22:23:12 -07005597 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005598
Jens Axboed7718a92020-02-14 22:23:12 -07005599 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5600 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005601
Jens Axboe8c838782019-03-12 15:48:16 -06005602 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005603 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005604 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06005605 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005606 spin_unlock_irq(&ctx->completion_lock);
5607
Jens Axboe8c838782019-03-12 15:48:16 -06005608 if (mask) {
5609 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03005610 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005611 }
Jens Axboe8c838782019-03-12 15:48:16 -06005612 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005613}
5614
Jens Axboe5262f562019-09-17 12:26:57 -06005615static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5616{
Jens Axboead8a48a2019-11-15 08:49:11 -07005617 struct io_timeout_data *data = container_of(timer,
5618 struct io_timeout_data, timer);
5619 struct io_kiocb *req = data->req;
5620 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005621 unsigned long flags;
5622
Jens Axboe5262f562019-09-17 12:26:57 -06005623 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkova71976f2020-10-10 18:34:11 +01005624 list_del_init(&req->timeout.list);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005625 atomic_set(&req->ctx->cq_timeouts,
5626 atomic_read(&req->ctx->cq_timeouts) + 1);
5627
Jens Axboe78e19bb2019-11-06 15:21:34 -07005628 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06005629 io_commit_cqring(ctx);
5630 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5631
5632 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005633 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005634 io_put_req(req);
5635 return HRTIMER_NORESTART;
5636}
5637
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005638static struct io_kiocb *io_timeout_extract(struct io_ring_ctx *ctx,
5639 __u64 user_data)
Jens Axboe47f46762019-11-09 17:43:02 -07005640{
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005641 struct io_timeout_data *io;
Jens Axboef254ac02020-08-12 17:33:30 -06005642 struct io_kiocb *req;
5643 int ret = -ENOENT;
5644
5645 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
5646 if (user_data == req->user_data) {
5647 ret = 0;
5648 break;
5649 }
5650 }
5651
5652 if (ret == -ENOENT)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005653 return ERR_PTR(ret);
Jens Axboef254ac02020-08-12 17:33:30 -06005654
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005655 io = req->async_data;
5656 ret = hrtimer_try_to_cancel(&io->timer);
5657 if (ret == -1)
5658 return ERR_PTR(-EALREADY);
5659 list_del_init(&req->timeout.list);
5660 return req;
5661}
5662
5663static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
5664{
5665 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
5666
5667 if (IS_ERR(req))
5668 return PTR_ERR(req);
5669
5670 req_set_fail_links(req);
5671 io_cqring_fill_event(req, -ECANCELED);
5672 io_put_req_deferred(req, 1);
5673 return 0;
Jens Axboef254ac02020-08-12 17:33:30 -06005674}
5675
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005676static int io_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
5677 struct timespec64 *ts, enum hrtimer_mode mode)
5678{
5679 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
5680 struct io_timeout_data *data;
5681
5682 if (IS_ERR(req))
5683 return PTR_ERR(req);
5684
5685 req->timeout.off = 0; /* noseq */
5686 data = req->async_data;
5687 list_add_tail(&req->timeout.list, &ctx->timeout_list);
5688 hrtimer_init(&data->timer, CLOCK_MONOTONIC, mode);
5689 data->timer.function = io_timeout_fn;
5690 hrtimer_start(&data->timer, timespec64_to_ktime(*ts), mode);
5691 return 0;
Jens Axboe47f46762019-11-09 17:43:02 -07005692}
5693
Jens Axboe3529d8c2019-12-19 18:24:38 -07005694static int io_timeout_remove_prep(struct io_kiocb *req,
5695 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07005696{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005697 struct io_timeout_rem *tr = &req->timeout_rem;
5698
Jens Axboeb29472e2019-12-17 18:50:29 -07005699 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5700 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005701 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5702 return -EINVAL;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005703 if (sqe->ioprio || sqe->buf_index || sqe->len)
Jens Axboeb29472e2019-12-17 18:50:29 -07005704 return -EINVAL;
5705
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005706 tr->addr = READ_ONCE(sqe->addr);
5707 tr->flags = READ_ONCE(sqe->timeout_flags);
5708 if (tr->flags & IORING_TIMEOUT_UPDATE) {
5709 if (tr->flags & ~(IORING_TIMEOUT_UPDATE|IORING_TIMEOUT_ABS))
5710 return -EINVAL;
5711 if (get_timespec64(&tr->ts, u64_to_user_ptr(sqe->addr2)))
5712 return -EFAULT;
5713 } else if (tr->flags) {
5714 /* timeout removal doesn't support flags */
5715 return -EINVAL;
5716 }
5717
Jens Axboeb29472e2019-12-17 18:50:29 -07005718 return 0;
5719}
5720
Jens Axboe11365042019-10-16 09:08:32 -06005721/*
5722 * Remove or update an existing timeout command
5723 */
Jens Axboefc4df992019-12-10 14:38:45 -07005724static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06005725{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005726 struct io_timeout_rem *tr = &req->timeout_rem;
Jens Axboe11365042019-10-16 09:08:32 -06005727 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07005728 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06005729
Jens Axboe11365042019-10-16 09:08:32 -06005730 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005731 if (req->timeout_rem.flags & IORING_TIMEOUT_UPDATE) {
5732 enum hrtimer_mode mode = (tr->flags & IORING_TIMEOUT_ABS)
5733 ? HRTIMER_MODE_ABS : HRTIMER_MODE_REL;
5734
5735 ret = io_timeout_update(ctx, tr->addr, &tr->ts, mode);
5736 } else {
5737 ret = io_timeout_cancel(ctx, tr->addr);
5738 }
Jens Axboe11365042019-10-16 09:08:32 -06005739
Jens Axboe47f46762019-11-09 17:43:02 -07005740 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06005741 io_commit_cqring(ctx);
5742 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005743 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005744 if (ret < 0)
5745 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08005746 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06005747 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06005748}
5749
Jens Axboe3529d8c2019-12-19 18:24:38 -07005750static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07005751 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06005752{
Jens Axboead8a48a2019-11-15 08:49:11 -07005753 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06005754 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005755 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06005756
Jens Axboead8a48a2019-11-15 08:49:11 -07005757 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06005758 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07005759 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06005760 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005761 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07005762 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06005763 flags = READ_ONCE(sqe->timeout_flags);
5764 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06005765 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06005766
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005767 req->timeout.off = off;
Jens Axboe26a61672019-12-20 09:02:01 -07005768
Jens Axboee8c2bc12020-08-15 18:44:09 -07005769 if (!req->async_data && io_alloc_async_data(req))
Jens Axboe26a61672019-12-20 09:02:01 -07005770 return -ENOMEM;
5771
Jens Axboee8c2bc12020-08-15 18:44:09 -07005772 data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07005773 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07005774
5775 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06005776 return -EFAULT;
5777
Jens Axboe11365042019-10-16 09:08:32 -06005778 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07005779 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06005780 else
Jens Axboead8a48a2019-11-15 08:49:11 -07005781 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06005782
Jens Axboead8a48a2019-11-15 08:49:11 -07005783 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
5784 return 0;
5785}
5786
Jens Axboefc4df992019-12-10 14:38:45 -07005787static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07005788{
Jens Axboead8a48a2019-11-15 08:49:11 -07005789 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005790 struct io_timeout_data *data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07005791 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005792 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07005793
Pavel Begunkov733f5c92020-05-26 20:34:03 +03005794 spin_lock_irq(&ctx->completion_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07005795
Jens Axboe5262f562019-09-17 12:26:57 -06005796 /*
5797 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07005798 * timeout event to be satisfied. If it isn't set, then this is
5799 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06005800 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005801 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07005802 entry = ctx->timeout_list.prev;
5803 goto add;
5804 }
Jens Axboe5262f562019-09-17 12:26:57 -06005805
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005806 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
5807 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06005808
5809 /*
5810 * Insertion sort, ensuring the first entry in the list is always
5811 * the one we need first.
5812 */
Jens Axboe5262f562019-09-17 12:26:57 -06005813 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005814 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
5815 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06005816
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005817 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07005818 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005819 /* nxt.seq is behind @tail, otherwise would've been completed */
5820 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06005821 break;
5822 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07005823add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005824 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07005825 data->timer.function = io_timeout_fn;
5826 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06005827 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005828 return 0;
5829}
5830
Jens Axboe62755e32019-10-28 21:49:21 -06005831static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06005832{
Jens Axboe62755e32019-10-28 21:49:21 -06005833 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06005834
Jens Axboe62755e32019-10-28 21:49:21 -06005835 return req->user_data == (unsigned long) data;
5836}
5837
Jens Axboee977d6d2019-11-05 12:39:45 -07005838static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06005839{
Jens Axboe62755e32019-10-28 21:49:21 -06005840 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06005841 int ret = 0;
5842
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03005843 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr, false);
Jens Axboe62755e32019-10-28 21:49:21 -06005844 switch (cancel_ret) {
5845 case IO_WQ_CANCEL_OK:
5846 ret = 0;
5847 break;
5848 case IO_WQ_CANCEL_RUNNING:
5849 ret = -EALREADY;
5850 break;
5851 case IO_WQ_CANCEL_NOTFOUND:
5852 ret = -ENOENT;
5853 break;
5854 }
5855
Jens Axboee977d6d2019-11-05 12:39:45 -07005856 return ret;
5857}
5858
Jens Axboe47f46762019-11-09 17:43:02 -07005859static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
5860 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03005861 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07005862{
5863 unsigned long flags;
5864 int ret;
5865
5866 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
5867 if (ret != -ENOENT) {
5868 spin_lock_irqsave(&ctx->completion_lock, flags);
5869 goto done;
5870 }
5871
5872 spin_lock_irqsave(&ctx->completion_lock, flags);
5873 ret = io_timeout_cancel(ctx, sqe_addr);
5874 if (ret != -ENOENT)
5875 goto done;
5876 ret = io_poll_cancel(ctx, sqe_addr);
5877done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005878 if (!ret)
5879 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005880 io_cqring_fill_event(req, ret);
5881 io_commit_cqring(ctx);
5882 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5883 io_cqring_ev_posted(ctx);
5884
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005885 if (ret < 0)
5886 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03005887 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005888}
5889
Jens Axboe3529d8c2019-12-19 18:24:38 -07005890static int io_async_cancel_prep(struct io_kiocb *req,
5891 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07005892{
Jens Axboefbf23842019-12-17 18:45:56 -07005893 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07005894 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005895 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5896 return -EINVAL;
5897 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags)
Jens Axboee977d6d2019-11-05 12:39:45 -07005898 return -EINVAL;
5899
Jens Axboefbf23842019-12-17 18:45:56 -07005900 req->cancel.addr = READ_ONCE(sqe->addr);
5901 return 0;
5902}
5903
Pavel Begunkov014db002020-03-03 21:33:12 +03005904static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07005905{
5906 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07005907
Pavel Begunkov014db002020-03-03 21:33:12 +03005908 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06005909 return 0;
5910}
5911
Jens Axboe05f3fb32019-12-09 11:22:50 -07005912static int io_files_update_prep(struct io_kiocb *req,
5913 const struct io_uring_sqe *sqe)
5914{
Jens Axboe6ca56f82020-09-18 16:51:19 -06005915 if (unlikely(req->ctx->flags & IORING_SETUP_SQPOLL))
5916 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005917 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5918 return -EINVAL;
5919 if (sqe->ioprio || sqe->rw_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005920 return -EINVAL;
5921
5922 req->files_update.offset = READ_ONCE(sqe->off);
5923 req->files_update.nr_args = READ_ONCE(sqe->len);
5924 if (!req->files_update.nr_args)
5925 return -EINVAL;
5926 req->files_update.arg = READ_ONCE(sqe->addr);
5927 return 0;
5928}
5929
Jens Axboe229a7b62020-06-22 10:13:11 -06005930static int io_files_update(struct io_kiocb *req, bool force_nonblock,
5931 struct io_comp_state *cs)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005932{
5933 struct io_ring_ctx *ctx = req->ctx;
5934 struct io_uring_files_update up;
5935 int ret;
5936
Jens Axboef86cd202020-01-29 13:46:44 -07005937 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005938 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005939
5940 up.offset = req->files_update.offset;
5941 up.fds = req->files_update.arg;
5942
5943 mutex_lock(&ctx->uring_lock);
5944 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
5945 mutex_unlock(&ctx->uring_lock);
5946
5947 if (ret < 0)
5948 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06005949 __io_req_complete(req, ret, 0, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005950 return 0;
5951}
5952
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005953static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07005954{
Jens Axboed625c6e2019-12-17 19:53:05 -07005955 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07005956 case IORING_OP_NOP:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005957 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07005958 case IORING_OP_READV:
5959 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005960 case IORING_OP_READ:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005961 return io_read_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07005962 case IORING_OP_WRITEV:
5963 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005964 case IORING_OP_WRITE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005965 return io_write_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005966 case IORING_OP_POLL_ADD:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005967 return io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005968 case IORING_OP_POLL_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005969 return io_poll_remove_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005970 case IORING_OP_FSYNC:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005971 return io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005972 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005973 return io_prep_sfr(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005974 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005975 case IORING_OP_SEND:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005976 return io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005977 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005978 case IORING_OP_RECV:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005979 return io_recvmsg_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07005980 case IORING_OP_CONNECT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005981 return io_connect_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005982 case IORING_OP_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005983 return io_timeout_prep(req, sqe, false);
Jens Axboeb29472e2019-12-17 18:50:29 -07005984 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005985 return io_timeout_remove_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07005986 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005987 return io_async_cancel_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005988 case IORING_OP_LINK_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005989 return io_timeout_prep(req, sqe, true);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005990 case IORING_OP_ACCEPT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005991 return io_accept_prep(req, sqe);
Jens Axboed63d1b52019-12-10 10:38:56 -07005992 case IORING_OP_FALLOCATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005993 return io_fallocate_prep(req, sqe);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005994 case IORING_OP_OPENAT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005995 return io_openat_prep(req, sqe);
Jens Axboeb5dba592019-12-11 14:02:38 -07005996 case IORING_OP_CLOSE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005997 return io_close_prep(req, sqe);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005998 case IORING_OP_FILES_UPDATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005999 return io_files_update_prep(req, sqe);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006000 case IORING_OP_STATX:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006001 return io_statx_prep(req, sqe);
Jens Axboe4840e412019-12-25 22:03:45 -07006002 case IORING_OP_FADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006003 return io_fadvise_prep(req, sqe);
Jens Axboec1ca7572019-12-25 22:18:28 -07006004 case IORING_OP_MADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006005 return io_madvise_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07006006 case IORING_OP_OPENAT2:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006007 return io_openat2_prep(req, sqe);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006008 case IORING_OP_EPOLL_CTL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006009 return io_epoll_ctl_prep(req, sqe);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006010 case IORING_OP_SPLICE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006011 return io_splice_prep(req, sqe);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006012 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006013 return io_provide_buffers_prep(req, sqe);
Jens Axboe067524e2020-03-02 16:32:28 -07006014 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006015 return io_remove_buffers_prep(req, sqe);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006016 case IORING_OP_TEE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006017 return io_tee_prep(req, sqe);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006018 case IORING_OP_SHUTDOWN:
6019 return io_shutdown_prep(req, sqe);
Jens Axboe80a261f2020-09-28 14:23:58 -06006020 case IORING_OP_RENAMEAT:
6021 return io_renameat_prep(req, sqe);
Jens Axboe14a11432020-09-28 14:27:37 -06006022 case IORING_OP_UNLINKAT:
6023 return io_unlinkat_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006024 }
6025
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006026 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
6027 req->opcode);
6028 return-EINVAL;
6029}
6030
Jens Axboedef596e2019-01-09 08:59:42 -07006031static int io_req_defer_prep(struct io_kiocb *req,
6032 const struct io_uring_sqe *sqe)
Jens Axboedef596e2019-01-09 08:59:42 -07006033{
Jens Axboedef596e2019-01-09 08:59:42 -07006034 if (!sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006035 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006036 if (io_alloc_async_data(req))
Jens Axboeb76da702019-11-20 13:05:32 -07006037 return -EAGAIN;
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006038 return io_req_prep(req, sqe);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006039}
6040
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006041static u32 io_get_sequence(struct io_kiocb *req)
6042{
6043 struct io_kiocb *pos;
6044 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006045 u32 total_submitted, nr_reqs = 0;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006046
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006047 io_for_each_link(pos, req)
6048 nr_reqs++;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006049
6050 total_submitted = ctx->cached_sq_head - ctx->cached_sq_dropped;
6051 return total_submitted - nr_reqs;
6052}
6053
Jens Axboe3529d8c2019-12-19 18:24:38 -07006054static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006055{
6056 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006057 struct io_defer_entry *de;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006058 int ret;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006059 u32 seq;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006060
6061 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006062 if (likely(list_empty_careful(&ctx->defer_list) &&
6063 !(req->flags & REQ_F_IO_DRAIN)))
6064 return 0;
6065
6066 seq = io_get_sequence(req);
6067 /* Still a chance to pass the sequence check */
6068 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006069 return 0;
6070
Jens Axboee8c2bc12020-08-15 18:44:09 -07006071 if (!req->async_data) {
Pavel Begunkov650b5482020-05-17 14:02:11 +03006072 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006073 if (ret)
Pavel Begunkov650b5482020-05-17 14:02:11 +03006074 return ret;
6075 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03006076 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006077 de = kmalloc(sizeof(*de), GFP_KERNEL);
6078 if (!de)
6079 return -ENOMEM;
Jens Axboe31b51512019-01-18 22:56:34 -07006080
6081 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006082 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboe31b51512019-01-18 22:56:34 -07006083 spin_unlock_irq(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006084 kfree(de);
Pavel Begunkovae348172020-07-23 20:25:20 +03006085 io_queue_async_work(req);
6086 return -EIOCBQUEUED;
Jens Axboe31b51512019-01-18 22:56:34 -07006087 }
6088
6089 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006090 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006091 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006092 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboe31b51512019-01-18 22:56:34 -07006093 spin_unlock_irq(&ctx->completion_lock);
6094 return -EIOCBQUEUED;
6095}
Jens Axboeedafcce2019-01-09 09:16:05 -07006096
Jens Axboef573d382020-09-22 10:19:24 -06006097static void io_req_drop_files(struct io_kiocb *req)
6098{
6099 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovc98de082020-11-15 12:56:32 +00006100 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboef573d382020-09-22 10:19:24 -06006101 unsigned long flags;
6102
Jens Axboe98447d62020-10-14 10:48:51 -06006103 put_files_struct(req->work.identity->files);
6104 put_nsproxy(req->work.identity->nsproxy);
Pavel Begunkovdfea9fc2020-12-18 13:12:21 +00006105 spin_lock_irqsave(&ctx->inflight_lock, flags);
6106 list_del(&req->inflight_entry);
6107 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
6108 req->flags &= ~REQ_F_INFLIGHT;
Jens Axboedfead8a2020-10-14 10:12:37 -06006109 req->work.flags &= ~IO_WQ_WORK_FILES;
Pavel Begunkovdfea9fc2020-12-18 13:12:21 +00006110 if (atomic_read(&tctx->in_idle))
6111 wake_up(&tctx->wait);
Jens Axboef573d382020-09-22 10:19:24 -06006112}
6113
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03006114static void __io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006115{
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006116 if (req->flags & REQ_F_BUFFER_SELECTED) {
6117 switch (req->opcode) {
6118 case IORING_OP_READV:
6119 case IORING_OP_READ_FIXED:
6120 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07006121 kfree((void *)(unsigned long)req->rw.addr);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006122 break;
6123 case IORING_OP_RECVMSG:
6124 case IORING_OP_RECV:
Jens Axboe52de1fe2020-02-27 10:15:42 -07006125 kfree(req->sr_msg.kbuf);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006126 break;
6127 }
6128 req->flags &= ~REQ_F_BUFFER_SELECTED;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006129 }
6130
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006131 if (req->flags & REQ_F_NEED_CLEANUP) {
6132 switch (req->opcode) {
6133 case IORING_OP_READV:
6134 case IORING_OP_READ_FIXED:
6135 case IORING_OP_READ:
6136 case IORING_OP_WRITEV:
6137 case IORING_OP_WRITE_FIXED:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006138 case IORING_OP_WRITE: {
6139 struct io_async_rw *io = req->async_data;
6140 if (io->free_iovec)
6141 kfree(io->free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006142 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006143 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006144 case IORING_OP_RECVMSG:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006145 case IORING_OP_SENDMSG: {
6146 struct io_async_msghdr *io = req->async_data;
6147 if (io->iov != io->fast_iov)
6148 kfree(io->iov);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006149 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006150 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006151 case IORING_OP_SPLICE:
6152 case IORING_OP_TEE:
6153 io_put_file(req, req->splice.file_in,
6154 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
6155 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06006156 case IORING_OP_OPENAT:
6157 case IORING_OP_OPENAT2:
6158 if (req->open.filename)
6159 putname(req->open.filename);
6160 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006161 case IORING_OP_RENAMEAT:
6162 putname(req->rename.oldpath);
6163 putname(req->rename.newpath);
6164 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006165 case IORING_OP_UNLINKAT:
6166 putname(req->unlink.filename);
6167 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006168 }
6169 req->flags &= ~REQ_F_NEED_CLEANUP;
6170 }
Pavel Begunkovbb175342020-08-20 11:33:35 +03006171
Jens Axboef573d382020-09-22 10:19:24 -06006172 if (req->flags & REQ_F_INFLIGHT)
6173 io_req_drop_files(req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006174}
6175
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006176static int io_issue_sqe(struct io_kiocb *req, bool force_nonblock,
6177 struct io_comp_state *cs)
Jens Axboeedafcce2019-01-09 09:16:05 -07006178{
Jens Axboeedafcce2019-01-09 09:16:05 -07006179 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07006180 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07006181
Jens Axboed625c6e2019-12-17 19:53:05 -07006182 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07006183 case IORING_OP_NOP:
Jens Axboe229a7b62020-06-22 10:13:11 -06006184 ret = io_nop(req, cs);
Jens Axboe31b51512019-01-18 22:56:34 -07006185 break;
6186 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07006187 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006188 case IORING_OP_READ:
Jens Axboea1d7c392020-06-22 11:09:46 -06006189 ret = io_read(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006190 break;
6191 case IORING_OP_WRITEV:
Jens Axboe2b188cc2019-01-07 10:46:33 -07006192 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006193 case IORING_OP_WRITE:
Jens Axboea1d7c392020-06-22 11:09:46 -06006194 ret = io_write(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006195 break;
6196 case IORING_OP_FSYNC:
Pavel Begunkov014db002020-03-03 21:33:12 +03006197 ret = io_fsync(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006198 break;
6199 case IORING_OP_POLL_ADD:
Pavel Begunkov014db002020-03-03 21:33:12 +03006200 ret = io_poll_add(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006201 break;
6202 case IORING_OP_POLL_REMOVE:
Jens Axboeb76da702019-11-20 13:05:32 -07006203 ret = io_poll_remove(req);
6204 break;
6205 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006206 ret = io_sync_file_range(req, force_nonblock);
Jens Axboeb76da702019-11-20 13:05:32 -07006207 break;
6208 case IORING_OP_SENDMSG:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006209 ret = io_sendmsg(req, force_nonblock, cs);
6210 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006211 case IORING_OP_SEND:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006212 ret = io_send(req, force_nonblock, cs);
Jens Axboeb76da702019-11-20 13:05:32 -07006213 break;
6214 case IORING_OP_RECVMSG:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006215 ret = io_recvmsg(req, force_nonblock, cs);
6216 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006217 case IORING_OP_RECV:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006218 ret = io_recv(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006219 break;
6220 case IORING_OP_TIMEOUT:
6221 ret = io_timeout(req);
6222 break;
6223 case IORING_OP_TIMEOUT_REMOVE:
6224 ret = io_timeout_remove(req);
6225 break;
6226 case IORING_OP_ACCEPT:
Jens Axboe229a7b62020-06-22 10:13:11 -06006227 ret = io_accept(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006228 break;
6229 case IORING_OP_CONNECT:
Jens Axboe229a7b62020-06-22 10:13:11 -06006230 ret = io_connect(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006231 break;
6232 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkov014db002020-03-03 21:33:12 +03006233 ret = io_async_cancel(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006234 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07006235 case IORING_OP_FALLOCATE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006236 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07006237 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07006238 case IORING_OP_OPENAT:
Pavel Begunkov014db002020-03-03 21:33:12 +03006239 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006240 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07006241 case IORING_OP_CLOSE:
Jens Axboe229a7b62020-06-22 10:13:11 -06006242 ret = io_close(req, force_nonblock, cs);
Jens Axboeb5dba592019-12-11 14:02:38 -07006243 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006244 case IORING_OP_FILES_UPDATE:
Jens Axboe229a7b62020-06-22 10:13:11 -06006245 ret = io_files_update(req, force_nonblock, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006246 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006247 case IORING_OP_STATX:
Pavel Begunkov014db002020-03-03 21:33:12 +03006248 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006249 break;
Jens Axboe4840e412019-12-25 22:03:45 -07006250 case IORING_OP_FADVISE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006251 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07006252 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07006253 case IORING_OP_MADVISE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006254 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07006255 break;
Jens Axboecebdb982020-01-08 17:59:24 -07006256 case IORING_OP_OPENAT2:
Pavel Begunkov014db002020-03-03 21:33:12 +03006257 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07006258 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07006259 case IORING_OP_EPOLL_CTL:
Jens Axboe229a7b62020-06-22 10:13:11 -06006260 ret = io_epoll_ctl(req, force_nonblock, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006261 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006262 case IORING_OP_SPLICE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006263 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006264 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07006265 case IORING_OP_PROVIDE_BUFFERS:
Jens Axboe229a7b62020-06-22 10:13:11 -06006266 ret = io_provide_buffers(req, force_nonblock, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006267 break;
Jens Axboe067524e2020-03-02 16:32:28 -07006268 case IORING_OP_REMOVE_BUFFERS:
Jens Axboe229a7b62020-06-22 10:13:11 -06006269 ret = io_remove_buffers(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006270 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006271 case IORING_OP_TEE:
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006272 ret = io_tee(req, force_nonblock);
6273 break;
Jens Axboe36f4fa62020-09-05 11:14:22 -06006274 case IORING_OP_SHUTDOWN:
6275 ret = io_shutdown(req, force_nonblock);
6276 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006277 case IORING_OP_RENAMEAT:
6278 ret = io_renameat(req, force_nonblock);
6279 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006280 case IORING_OP_UNLINKAT:
6281 ret = io_unlinkat(req, force_nonblock);
6282 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006283 default:
6284 ret = -EINVAL;
6285 break;
Jens Axboe31b51512019-01-18 22:56:34 -07006286 }
6287
6288 if (ret)
Jens Axboeedafcce2019-01-09 09:16:05 -07006289 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006290
Jens Axboeb5325762020-05-19 21:20:27 -06006291 /* If the op doesn't have a file, we're not polling for it */
6292 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file) {
Jens Axboe11ba8202020-01-15 21:51:17 -07006293 const bool in_async = io_wq_current_is_worker();
6294
Jens Axboe11ba8202020-01-15 21:51:17 -07006295 /* workqueue context doesn't hold uring_lock, grab it now */
6296 if (in_async)
6297 mutex_lock(&ctx->uring_lock);
6298
Xiaoguang Wang2e9dbe92020-11-13 00:44:08 +08006299 io_iopoll_req_issued(req, in_async);
Jens Axboe11ba8202020-01-15 21:51:17 -07006300
6301 if (in_async)
6302 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006303 }
6304
6305 return 0;
6306}
6307
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006308static struct io_wq_work *io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006309{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006310 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006311 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06006312 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006313
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006314 timeout = io_prep_linked_timeout(req);
6315 if (timeout)
6316 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006317
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006318 /* if NO_CANCEL is set, we must still run the work */
6319 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
6320 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06006321 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006322 }
Jens Axboe31b51512019-01-18 22:56:34 -07006323
Jens Axboe561fb042019-10-24 07:25:42 -06006324 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006325 do {
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006326 ret = io_issue_sqe(req, false, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06006327 /*
6328 * We can get EAGAIN for polled IO even though we're
6329 * forcing a sync submission from here, since we can't
6330 * wait for request slots on the block side.
6331 */
6332 if (ret != -EAGAIN)
6333 break;
6334 cond_resched();
6335 } while (1);
6336 }
Jens Axboe31b51512019-01-18 22:56:34 -07006337
Jens Axboe561fb042019-10-24 07:25:42 -06006338 if (ret) {
Xiaoguang Wangc07e6712020-12-14 23:49:41 +08006339 struct io_ring_ctx *lock_ctx = NULL;
Xiaoguang Wangdad1b122020-12-06 22:22:42 +00006340
Xiaoguang Wangc07e6712020-12-14 23:49:41 +08006341 if (req->ctx->flags & IORING_SETUP_IOPOLL)
6342 lock_ctx = req->ctx;
6343
6344 /*
6345 * io_iopoll_complete() does not hold completion_lock to
6346 * complete polled io, so here for polled io, we can not call
6347 * io_req_complete() directly, otherwise there maybe concurrent
6348 * access to cqring, defer_list, etc, which is not safe. Given
6349 * that io_iopoll_complete() is always called under uring_lock,
6350 * so here for polled io, we also get uring_lock to complete
6351 * it.
6352 */
6353 if (lock_ctx)
6354 mutex_lock(&lock_ctx->uring_lock);
6355
6356 req_set_fail_links(req);
6357 io_req_complete(req, ret);
6358
6359 if (lock_ctx)
6360 mutex_unlock(&lock_ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07006361 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006362
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006363 return io_steal_work(req);
Jens Axboe31b51512019-01-18 22:56:34 -07006364}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006365
Jens Axboe65e19f52019-10-26 07:20:21 -06006366static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6367 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06006368{
Jens Axboe65e19f52019-10-26 07:20:21 -06006369 struct fixed_file_table *table;
6370
Jens Axboe05f3fb32019-12-09 11:22:50 -07006371 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08006372 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06006373}
6374
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006375static struct file *io_file_get(struct io_submit_state *state,
6376 struct io_kiocb *req, int fd, bool fixed)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006377{
6378 struct io_ring_ctx *ctx = req->ctx;
6379 struct file *file;
6380
6381 if (fixed) {
Pavel Begunkov479f5172020-10-10 18:34:07 +01006382 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006383 return NULL;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006384 fd = array_index_nospec(fd, ctx->nr_user_files);
6385 file = io_file_from_index(ctx, fd);
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00006386 io_set_resource_node(req);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006387 } else {
6388 trace_io_uring_file_get(ctx, fd);
6389 file = __io_file_get(state, fd);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006390 }
6391
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006392 return file;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006393}
6394
Jens Axboe2665abf2019-11-05 12:40:47 -07006395static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6396{
Jens Axboead8a48a2019-11-15 08:49:11 -07006397 struct io_timeout_data *data = container_of(timer,
6398 struct io_timeout_data, timer);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006399 struct io_kiocb *prev, *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006400 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07006401 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006402
6403 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006404 prev = req->timeout.head;
6405 req->timeout.head = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006406
6407 /*
6408 * We don't expect the list to be empty, that will only happen if we
6409 * race with the completion of the linked work.
6410 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006411 if (prev && refcount_inc_not_zero(&prev->refs))
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006412 io_remove_next_linked(prev);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006413 else
6414 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006415 spin_unlock_irqrestore(&ctx->completion_lock, flags);
6416
6417 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006418 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03006419 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07006420 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07006421 } else {
Jens Axboee1e16092020-06-22 09:17:17 -06006422 io_req_complete(req, -ETIME);
Jens Axboe2665abf2019-11-05 12:40:47 -07006423 }
Jens Axboe2665abf2019-11-05 12:40:47 -07006424 return HRTIMER_NORESTART;
6425}
6426
Jens Axboe7271ef32020-08-10 09:55:22 -06006427static void __io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006428{
Jens Axboe76a46e02019-11-10 23:34:16 -07006429 /*
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006430 * If the back reference is NULL, then our linked request finished
6431 * before we got a chance to setup the timer
Jens Axboe76a46e02019-11-10 23:34:16 -07006432 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006433 if (req->timeout.head) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006434 struct io_timeout_data *data = req->async_data;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006435
Jens Axboead8a48a2019-11-15 08:49:11 -07006436 data->timer.function = io_link_timeout_fn;
6437 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6438 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07006439 }
Jens Axboe7271ef32020-08-10 09:55:22 -06006440}
6441
6442static void io_queue_linked_timeout(struct io_kiocb *req)
6443{
6444 struct io_ring_ctx *ctx = req->ctx;
6445
6446 spin_lock_irq(&ctx->completion_lock);
6447 __io_queue_linked_timeout(req);
Jens Axboe76a46e02019-11-10 23:34:16 -07006448 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006449
Jens Axboe2665abf2019-11-05 12:40:47 -07006450 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006451 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006452}
6453
Jens Axboead8a48a2019-11-15 08:49:11 -07006454static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006455{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006456 struct io_kiocb *nxt = req->link;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006457
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006458 if (!nxt || (req->flags & REQ_F_LINK_TIMEOUT) ||
6459 nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboed7718a92020-02-14 22:23:12 -07006460 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006461
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006462 nxt->timeout.head = req;
Pavel Begunkov900fad42020-10-19 16:39:16 +01006463 nxt->flags |= REQ_F_LTIMEOUT_ACTIVE;
Jens Axboe76a46e02019-11-10 23:34:16 -07006464 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07006465 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07006466}
6467
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006468static void __io_queue_sqe(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006469{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006470 struct io_kiocb *linked_timeout;
Jens Axboe193155c2020-02-22 23:22:19 -07006471 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006472 int ret;
6473
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006474again:
6475 linked_timeout = io_prep_linked_timeout(req);
6476
Pavel Begunkov2e5aa6c2020-10-18 10:17:37 +01006477 if ((req->flags & REQ_F_WORK_INITIALIZED) &&
6478 (req->work.flags & IO_WQ_WORK_CREDS) &&
Jens Axboe98447d62020-10-14 10:48:51 -06006479 req->work.identity->creds != current_cred()) {
Jens Axboe193155c2020-02-22 23:22:19 -07006480 if (old_creds)
6481 revert_creds(old_creds);
Jens Axboe98447d62020-10-14 10:48:51 -06006482 if (old_creds == req->work.identity->creds)
Jens Axboe193155c2020-02-22 23:22:19 -07006483 old_creds = NULL; /* restored original creds */
6484 else
Jens Axboe98447d62020-10-14 10:48:51 -06006485 old_creds = override_creds(req->work.identity->creds);
Jens Axboe193155c2020-02-22 23:22:19 -07006486 }
6487
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006488 ret = io_issue_sqe(req, true, cs);
Jens Axboe491381ce2019-10-17 09:20:46 -06006489
6490 /*
6491 * We async punt it if the file wasn't marked NOWAIT, or if the file
6492 * doesn't support non-blocking read/write attempts
6493 */
Pavel Begunkov24c74672020-06-21 13:09:51 +03006494 if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006495 if (!io_arm_poll_handler(req)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006496 /*
6497 * Queued up for async execution, worker will release
6498 * submit reference when the iocb is actually submitted.
6499 */
6500 io_queue_async_work(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006501 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03006502
Pavel Begunkovf063c542020-07-25 14:41:59 +03006503 if (linked_timeout)
6504 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006505 } else if (likely(!ret)) {
6506 /* drop submission reference */
6507 req = io_put_req_find_next(req);
6508 if (linked_timeout)
6509 io_queue_linked_timeout(linked_timeout);
Jens Axboee65ef562019-03-12 10:16:44 -06006510
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006511 if (req) {
6512 if (!(req->flags & REQ_F_FORCE_ASYNC))
6513 goto again;
6514 io_queue_async_work(req);
6515 }
6516 } else {
Pavel Begunkov652532a2020-07-03 22:15:07 +03006517 /* un-prep timeout, so it'll be killed as any other linked */
6518 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006519 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06006520 io_put_req(req);
Pavel Begunkov652532a2020-07-03 22:15:07 +03006521 io_req_complete(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06006522 }
Pavel Begunkov652532a2020-07-03 22:15:07 +03006523
Jens Axboe193155c2020-02-22 23:22:19 -07006524 if (old_creds)
6525 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006526}
6527
Jens Axboef13fad72020-06-22 09:34:30 -06006528static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6529 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006530{
6531 int ret;
6532
Jens Axboe3529d8c2019-12-19 18:24:38 -07006533 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006534 if (ret) {
6535 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03006536fail_req:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006537 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006538 io_put_req(req);
6539 io_req_complete(req, ret);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006540 }
Pavel Begunkov25508782019-12-30 21:24:47 +03006541 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006542 if (!req->async_data) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006543 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006544 if (unlikely(ret))
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006545 goto fail_req;
6546 }
Jens Axboece35a472019-12-17 08:04:44 -07006547 io_queue_async_work(req);
6548 } else {
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006549 if (sqe) {
6550 ret = io_req_prep(req, sqe);
6551 if (unlikely(ret))
6552 goto fail_req;
6553 }
6554 __io_queue_sqe(req, cs);
Jens Axboece35a472019-12-17 08:04:44 -07006555 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006556}
6557
Jens Axboef13fad72020-06-22 09:34:30 -06006558static inline void io_queue_link_head(struct io_kiocb *req,
6559 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006560{
Jens Axboe94ae5e72019-11-14 19:39:52 -07006561 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Jens Axboee1e16092020-06-22 09:17:17 -06006562 io_put_req(req);
6563 io_req_complete(req, -ECANCELED);
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03006564 } else
Jens Axboef13fad72020-06-22 09:34:30 -06006565 io_queue_sqe(req, NULL, cs);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006566}
6567
Pavel Begunkov863e0562020-10-27 23:25:35 +00006568struct io_submit_link {
6569 struct io_kiocb *head;
6570 struct io_kiocb *last;
6571};
6572
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006573static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov863e0562020-10-27 23:25:35 +00006574 struct io_submit_link *link, struct io_comp_state *cs)
Jens Axboe9e645e112019-05-10 16:07:28 -06006575{
Jackie Liua197f662019-11-08 08:09:12 -07006576 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006577 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06006578
Jens Axboe9e645e112019-05-10 16:07:28 -06006579 /*
6580 * If we already have a head request, queue this one for async
6581 * submittal once the head completes. If we don't have a head but
6582 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
6583 * submitted sync once the chain is complete. If none of those
6584 * conditions are true (normal request), then just queue it.
6585 */
Pavel Begunkov863e0562020-10-27 23:25:35 +00006586 if (link->head) {
6587 struct io_kiocb *head = link->head;
Jens Axboe9e645e112019-05-10 16:07:28 -06006588
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03006589 /*
6590 * Taking sequential execution of a link, draining both sides
6591 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
6592 * requests in the link. So, it drains the head and the
6593 * next after the link request. The last one is done via
6594 * drain_next flag to persist the effect across calls.
6595 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006596 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006597 head->flags |= REQ_F_IO_DRAIN;
6598 ctx->drain_next = 1;
6599 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07006600 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006601 if (unlikely(ret)) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006602 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03006603 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006604 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07006605 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03006606 trace_io_uring_link(ctx, req, head);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006607 link->last->link = req;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006608 link->last = req;
Jens Axboe9e645e112019-05-10 16:07:28 -06006609
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006610 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006611 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Jens Axboef13fad72020-06-22 09:34:30 -06006612 io_queue_link_head(head, cs);
Pavel Begunkov863e0562020-10-27 23:25:35 +00006613 link->head = NULL;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006614 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006615 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03006616 if (unlikely(ctx->drain_next)) {
6617 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006618 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03006619 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006620 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006621 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006622 if (unlikely(ret))
Pavel Begunkov711be032020-01-17 03:57:59 +03006623 req->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006624 link->head = req;
6625 link->last = req;
Pavel Begunkov711be032020-01-17 03:57:59 +03006626 } else {
Jens Axboef13fad72020-06-22 09:34:30 -06006627 io_queue_sqe(req, sqe, cs);
Pavel Begunkov711be032020-01-17 03:57:59 +03006628 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006629 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03006630
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006631 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06006632}
6633
Jens Axboe9a56a232019-01-09 09:06:50 -07006634/*
6635 * Batched submission is done, ensure local IO is flushed out.
6636 */
6637static void io_submit_state_end(struct io_submit_state *state)
6638{
Jens Axboef13fad72020-06-22 09:34:30 -06006639 if (!list_empty(&state->comp.list))
6640 io_submit_flush_completions(&state->comp);
Jens Axboe27926b62020-10-28 09:33:23 -06006641 if (state->plug_started)
6642 blk_finish_plug(&state->plug);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03006643 io_state_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07006644 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03006645 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07006646}
6647
6648/*
6649 * Start submission side cache.
6650 */
6651static void io_submit_state_start(struct io_submit_state *state,
Jens Axboe013538b2020-06-22 09:29:15 -06006652 struct io_ring_ctx *ctx, unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07006653{
Jens Axboe27926b62020-10-28 09:33:23 -06006654 state->plug_started = false;
Jens Axboe013538b2020-06-22 09:29:15 -06006655 state->comp.nr = 0;
6656 INIT_LIST_HEAD(&state->comp.list);
6657 state->comp.ctx = ctx;
Jens Axboe2579f912019-01-09 09:10:43 -07006658 state->free_reqs = 0;
Pavel Begunkov6e1271e2020-11-20 15:50:50 +00006659 state->file_refs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07006660 state->ios_left = max_ios;
6661}
6662
Jens Axboe2b188cc2019-01-07 10:46:33 -07006663static void io_commit_sqring(struct io_ring_ctx *ctx)
6664{
Hristo Venev75b28af2019-08-26 17:23:46 +00006665 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006666
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03006667 /*
6668 * Ensure any loads from the SQEs are done at this point,
6669 * since once we write the new head, the application could
6670 * write new data to them.
6671 */
6672 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006673}
6674
6675/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07006676 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07006677 * that is mapped by userspace. This means that care needs to be taken to
6678 * ensure that reads are stable, as we cannot rely on userspace always
6679 * being a good citizen. If members of the sqe are validated and then later
6680 * used, it's important that those reads are done through READ_ONCE() to
6681 * prevent a re-load down the line.
6682 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03006683static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006684{
Hristo Venev75b28af2019-08-26 17:23:46 +00006685 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006686 unsigned head;
6687
6688 /*
6689 * The cached sq head (or cq tail) serves two purposes:
6690 *
6691 * 1) allows us to batch the cost of updating the user visible
6692 * head updates.
6693 * 2) allows the kernel side to track the head on its own, even
6694 * though the application is the one updating it.
6695 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006696 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006697 if (likely(head < ctx->sq_entries))
6698 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07006699
6700 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06006701 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006702 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006703 return NULL;
6704}
6705
6706static inline void io_consume_sqe(struct io_ring_ctx *ctx)
6707{
6708 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006709}
6710
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006711/*
6712 * Check SQE restrictions (opcode and flags).
6713 *
6714 * Returns 'true' if SQE is allowed, 'false' otherwise.
6715 */
6716static inline bool io_check_restriction(struct io_ring_ctx *ctx,
6717 struct io_kiocb *req,
6718 unsigned int sqe_flags)
6719{
6720 if (!ctx->restricted)
6721 return true;
6722
6723 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
6724 return false;
6725
6726 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
6727 ctx->restrictions.sqe_flags_required)
6728 return false;
6729
6730 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
6731 ctx->restrictions.sqe_flags_required))
6732 return false;
6733
6734 return true;
6735}
6736
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006737#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
6738 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
6739 IOSQE_BUFFER_SELECT)
6740
6741static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
6742 const struct io_uring_sqe *sqe,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006743 struct io_submit_state *state)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006744{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006745 unsigned int sqe_flags;
Pavel Begunkov71b547c2020-10-10 18:34:09 +01006746 int id, ret;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006747
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006748 req->opcode = READ_ONCE(sqe->opcode);
6749 req->user_data = READ_ONCE(sqe->user_data);
Jens Axboee8c2bc12020-08-15 18:44:09 -07006750 req->async_data = NULL;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006751 req->file = NULL;
6752 req->ctx = ctx;
6753 req->flags = 0;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006754 req->link = NULL;
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00006755 req->fixed_file_refs = NULL;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006756 /* one is dropped after submission, the other at completion */
6757 refcount_set(&req->refs, 2);
Pavel Begunkov4dd28242020-06-15 10:33:13 +03006758 req->task = current;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006759 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006760
6761 if (unlikely(req->opcode >= IORING_OP_LAST))
6762 return -EINVAL;
6763
Jens Axboe28cea78a2020-09-14 10:51:17 -06006764 if (unlikely(io_sq_thread_acquire_mm_files(ctx, req)))
Jens Axboe9d8426a2020-06-16 18:42:49 -06006765 return -EFAULT;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006766
6767 sqe_flags = READ_ONCE(sqe->flags);
6768 /* enforce forwards compatibility on users */
6769 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
6770 return -EINVAL;
6771
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006772 if (unlikely(!io_check_restriction(ctx, req, sqe_flags)))
6773 return -EACCES;
6774
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006775 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
6776 !io_op_defs[req->opcode].buffer_select)
6777 return -EOPNOTSUPP;
6778
6779 id = READ_ONCE(sqe->personality);
6780 if (id) {
Jens Axboe1e6fa522020-10-15 08:46:24 -06006781 struct io_identity *iod;
6782
Jens Axboe1e6fa522020-10-15 08:46:24 -06006783 iod = idr_find(&ctx->personality_idr, id);
6784 if (unlikely(!iod))
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006785 return -EINVAL;
Jens Axboe1e6fa522020-10-15 08:46:24 -06006786 refcount_inc(&iod->count);
Pavel Begunkovec99ca62020-10-18 10:17:38 +01006787
6788 __io_req_init_async(req);
Jens Axboe1e6fa522020-10-15 08:46:24 -06006789 get_cred(iod->creds);
6790 req->work.identity = iod;
Jens Axboedfead8a2020-10-14 10:12:37 -06006791 req->work.flags |= IO_WQ_WORK_CREDS;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006792 }
6793
6794 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkovc11368a52020-05-17 14:13:42 +03006795 req->flags |= sqe_flags;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006796
Jens Axboe27926b62020-10-28 09:33:23 -06006797 /*
6798 * Plug now if we have more than 1 IO left after this, and the target
6799 * is potentially a read/write to block based storage.
6800 */
6801 if (!state->plug_started && state->ios_left > 1 &&
6802 io_op_defs[req->opcode].plug) {
6803 blk_start_plug(&state->plug);
6804 state->plug_started = true;
6805 }
Jens Axboe63ff8222020-05-07 14:56:15 -06006806
Pavel Begunkovbd5bbda2020-11-20 15:50:51 +00006807 ret = 0;
6808 if (io_op_defs[req->opcode].needs_file) {
6809 bool fixed = req->flags & REQ_F_FIXED_FILE;
Jens Axboe63ff8222020-05-07 14:56:15 -06006810
Pavel Begunkovbd5bbda2020-11-20 15:50:51 +00006811 req->file = io_file_get(state, req, READ_ONCE(sqe->fd), fixed);
6812 if (unlikely(!req->file &&
6813 !io_op_defs[req->opcode].needs_file_no_error))
6814 ret = -EBADF;
6815 }
6816
Pavel Begunkov71b547c2020-10-10 18:34:09 +01006817 state->ios_left--;
6818 return ret;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006819}
6820
Jens Axboe0f212202020-09-13 13:09:39 -06006821static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006822{
Jens Axboeac8691c2020-06-01 08:30:41 -06006823 struct io_submit_state state;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006824 struct io_submit_link link;
Jens Axboe9e645e112019-05-10 16:07:28 -06006825 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006826
Jens Axboec4a2ed72019-11-21 21:01:26 -07006827 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07006828 if (test_bit(0, &ctx->sq_check_overflow)) {
Pavel Begunkov9cd2be52020-12-17 00:24:36 +00006829 if (!io_cqring_overflow_flush(ctx, false, NULL, NULL))
Jens Axboead3eb2c2019-12-18 17:12:20 -07006830 return -EBUSY;
6831 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006832
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006833 /* make sure SQ entry isn't read before tail */
6834 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03006835
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03006836 if (!percpu_ref_tryget_many(&ctx->refs, nr))
6837 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006838
Jens Axboed8a6df12020-10-15 16:24:45 -06006839 percpu_counter_add(&current->io_uring->inflight, nr);
Jens Axboefaf7b512020-10-07 12:48:53 -06006840 refcount_add(nr, &current->usage);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006841
Jens Axboe6c271ce2019-01-10 11:22:30 -07006842 io_submit_state_start(&state, ctx, nr);
Pavel Begunkov863e0562020-10-27 23:25:35 +00006843 link.head = NULL;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03006844
Jens Axboe6c271ce2019-01-10 11:22:30 -07006845 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07006846 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03006847 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006848 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006849
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03006850 sqe = io_get_sqe(ctx);
6851 if (unlikely(!sqe)) {
6852 io_consume_sqe(ctx);
6853 break;
6854 }
Jens Axboeac8691c2020-06-01 08:30:41 -06006855 req = io_alloc_req(ctx, &state);
Pavel Begunkov196be952019-11-07 01:41:06 +03006856 if (unlikely(!req)) {
6857 if (!submitted)
6858 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006859 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06006860 }
Pavel Begunkov709b3022020-04-08 08:58:43 +03006861 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07006862 /* will complete beyond this point, count as submitted */
6863 submitted++;
6864
Pavel Begunkov692d8362020-10-10 18:34:13 +01006865 err = io_init_req(ctx, req, sqe, &state);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006866 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006867fail_req:
Jens Axboee1e16092020-06-22 09:17:17 -06006868 io_put_req(req);
6869 io_req_complete(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07006870 break;
6871 }
6872
Jens Axboe354420f2020-01-08 18:55:15 -07006873 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006874 true, io_async_submit(ctx));
Jens Axboef13fad72020-06-22 09:34:30 -06006875 err = io_submit_sqe(req, sqe, &link, &state.comp);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006876 if (err)
6877 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006878 }
6879
Pavel Begunkov9466f432020-01-25 22:34:01 +03006880 if (unlikely(submitted != nr)) {
6881 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
Jens Axboed8a6df12020-10-15 16:24:45 -06006882 struct io_uring_task *tctx = current->io_uring;
6883 int unused = nr - ref_used;
Pavel Begunkov9466f432020-01-25 22:34:01 +03006884
Jens Axboed8a6df12020-10-15 16:24:45 -06006885 percpu_ref_put_many(&ctx->refs, unused);
6886 percpu_counter_sub(&tctx->inflight, unused);
6887 put_task_struct_many(current, unused);
Pavel Begunkov9466f432020-01-25 22:34:01 +03006888 }
Pavel Begunkov863e0562020-10-27 23:25:35 +00006889 if (link.head)
6890 io_queue_link_head(link.head, &state.comp);
Jens Axboeac8691c2020-06-01 08:30:41 -06006891 io_submit_state_end(&state);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006892
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006893 /* Commit SQ ring head once we've consumed and submitted all SQEs */
6894 io_commit_sqring(ctx);
6895
Jens Axboe6c271ce2019-01-10 11:22:30 -07006896 return submitted;
6897}
6898
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006899static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
6900{
6901 /* Tell userspace we may need a wakeup call */
6902 spin_lock_irq(&ctx->completion_lock);
6903 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
6904 spin_unlock_irq(&ctx->completion_lock);
6905}
6906
6907static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
6908{
6909 spin_lock_irq(&ctx->completion_lock);
6910 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6911 spin_unlock_irq(&ctx->completion_lock);
6912}
6913
Xiaoguang Wang08369242020-11-03 14:15:59 +08006914static int __io_sq_thread(struct io_ring_ctx *ctx, bool cap_entries)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006915{
Jens Axboec8d1ba52020-09-14 11:07:26 -06006916 unsigned int to_submit;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006917 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006918
Jens Axboec8d1ba52020-09-14 11:07:26 -06006919 to_submit = io_sqring_entries(ctx);
Jens Axboee95eee22020-09-08 09:11:32 -06006920 /* if we're handling multiple rings, cap submit size for fairness */
6921 if (cap_entries && to_submit > 8)
6922 to_submit = 8;
6923
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08006924 if (!list_empty(&ctx->iopoll_list) || to_submit) {
6925 unsigned nr_events = 0;
6926
Xiaoguang Wang08369242020-11-03 14:15:59 +08006927 mutex_lock(&ctx->uring_lock);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08006928 if (!list_empty(&ctx->iopoll_list))
6929 io_do_iopoll(ctx, &nr_events, 0);
6930
6931 if (to_submit && likely(!percpu_ref_is_dying(&ctx->refs)))
Xiaoguang Wang08369242020-11-03 14:15:59 +08006932 ret = io_submit_sqes(ctx, to_submit);
6933 mutex_unlock(&ctx->uring_lock);
6934 }
Jens Axboe90554202020-09-03 12:12:41 -06006935
6936 if (!io_sqring_full(ctx) && wq_has_sleeper(&ctx->sqo_sq_wait))
6937 wake_up(&ctx->sqo_sq_wait);
6938
Xiaoguang Wang08369242020-11-03 14:15:59 +08006939 return ret;
6940}
6941
6942static void io_sqd_update_thread_idle(struct io_sq_data *sqd)
6943{
6944 struct io_ring_ctx *ctx;
6945 unsigned sq_thread_idle = 0;
6946
6947 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
6948 if (sq_thread_idle < ctx->sq_thread_idle)
6949 sq_thread_idle = ctx->sq_thread_idle;
6950 }
6951
6952 sqd->sq_thread_idle = sq_thread_idle;
Jens Axboec8d1ba52020-09-14 11:07:26 -06006953}
6954
Jens Axboe69fb2132020-09-14 11:16:23 -06006955static void io_sqd_init_new(struct io_sq_data *sqd)
6956{
6957 struct io_ring_ctx *ctx;
6958
6959 while (!list_empty(&sqd->ctx_new_list)) {
6960 ctx = list_first_entry(&sqd->ctx_new_list, struct io_ring_ctx, sqd_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06006961 list_move_tail(&ctx->sqd_list, &sqd->ctx_list);
6962 complete(&ctx->sq_thread_comp);
6963 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08006964
6965 io_sqd_update_thread_idle(sqd);
Jens Axboe69fb2132020-09-14 11:16:23 -06006966}
6967
Jens Axboe6c271ce2019-01-10 11:22:30 -07006968static int io_sq_thread(void *data)
6969{
Dennis Zhou91d8f512020-09-16 13:41:05 -07006970 struct cgroup_subsys_state *cur_css = NULL;
Jens Axboe28cea78a2020-09-14 10:51:17 -06006971 struct files_struct *old_files = current->files;
6972 struct nsproxy *old_nsproxy = current->nsproxy;
Jens Axboe69fb2132020-09-14 11:16:23 -06006973 const struct cred *old_cred = NULL;
6974 struct io_sq_data *sqd = data;
6975 struct io_ring_ctx *ctx;
Xiaoguang Wanga0d92052020-11-12 14:55:59 +08006976 unsigned long timeout = 0;
Xiaoguang Wang08369242020-11-03 14:15:59 +08006977 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006978
Jens Axboe28cea78a2020-09-14 10:51:17 -06006979 task_lock(current);
6980 current->files = NULL;
6981 current->nsproxy = NULL;
6982 task_unlock(current);
6983
Jens Axboe69fb2132020-09-14 11:16:23 -06006984 while (!kthread_should_stop()) {
Xiaoguang Wang08369242020-11-03 14:15:59 +08006985 int ret;
6986 bool cap_entries, sqt_spin, needs_sched;
Jens Axboec1edbf52019-11-10 16:56:04 -07006987
6988 /*
Jens Axboe69fb2132020-09-14 11:16:23 -06006989 * Any changes to the sqd lists are synchronized through the
6990 * kthread parking. This synchronizes the thread vs users,
6991 * the users are synchronized on the sqd->ctx_lock.
Jens Axboec1edbf52019-11-10 16:56:04 -07006992 */
Xiaoguang Wang65b2b212020-11-19 17:44:46 +08006993 if (kthread_should_park()) {
Jens Axboe69fb2132020-09-14 11:16:23 -06006994 kthread_parkme();
Xiaoguang Wang65b2b212020-11-19 17:44:46 +08006995 /*
6996 * When sq thread is unparked, in case the previous park operation
6997 * comes from io_put_sq_data(), which means that sq thread is going
6998 * to be stopped, so here needs to have a check.
6999 */
7000 if (kthread_should_stop())
7001 break;
7002 }
Jens Axboe69fb2132020-09-14 11:16:23 -06007003
Xiaoguang Wang08369242020-11-03 14:15:59 +08007004 if (unlikely(!list_empty(&sqd->ctx_new_list))) {
Jens Axboe69fb2132020-09-14 11:16:23 -06007005 io_sqd_init_new(sqd);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007006 timeout = jiffies + sqd->sq_thread_idle;
7007 }
Jens Axboe69fb2132020-09-14 11:16:23 -06007008
Xiaoguang Wang08369242020-11-03 14:15:59 +08007009 sqt_spin = false;
Jens Axboee95eee22020-09-08 09:11:32 -06007010 cap_entries = !list_is_singular(&sqd->ctx_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06007011 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
7012 if (current->cred != ctx->creds) {
7013 if (old_cred)
7014 revert_creds(old_cred);
7015 old_cred = override_creds(ctx->creds);
7016 }
Dennis Zhou91d8f512020-09-16 13:41:05 -07007017 io_sq_thread_associate_blkcg(ctx, &cur_css);
Jens Axboe4ea33a92020-10-15 13:46:44 -06007018#ifdef CONFIG_AUDIT
7019 current->loginuid = ctx->loginuid;
7020 current->sessionid = ctx->sessionid;
7021#endif
Jens Axboe69fb2132020-09-14 11:16:23 -06007022
Xiaoguang Wang08369242020-11-03 14:15:59 +08007023 ret = __io_sq_thread(ctx, cap_entries);
7024 if (!sqt_spin && (ret > 0 || !list_empty(&ctx->iopoll_list)))
7025 sqt_spin = true;
Jens Axboe69fb2132020-09-14 11:16:23 -06007026
Jens Axboe28cea78a2020-09-14 10:51:17 -06007027 io_sq_thread_drop_mm_files();
Jens Axboe6c271ce2019-01-10 11:22:30 -07007028 }
7029
Xiaoguang Wang08369242020-11-03 14:15:59 +08007030 if (sqt_spin || !time_after(jiffies, timeout)) {
Jens Axboec8d1ba52020-09-14 11:07:26 -06007031 io_run_task_work();
7032 cond_resched();
Xiaoguang Wang08369242020-11-03 14:15:59 +08007033 if (sqt_spin)
7034 timeout = jiffies + sqd->sq_thread_idle;
7035 continue;
7036 }
7037
7038 if (kthread_should_park())
7039 continue;
7040
7041 needs_sched = true;
7042 prepare_to_wait(&sqd->wait, &wait, TASK_INTERRUPTIBLE);
7043 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
7044 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
7045 !list_empty_careful(&ctx->iopoll_list)) {
7046 needs_sched = false;
7047 break;
7048 }
7049 if (io_sqring_entries(ctx)) {
7050 needs_sched = false;
7051 break;
7052 }
7053 }
7054
7055 if (needs_sched) {
Jens Axboe69fb2132020-09-14 11:16:23 -06007056 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7057 io_ring_set_wakeup_flag(ctx);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007058
Jens Axboe69fb2132020-09-14 11:16:23 -06007059 schedule();
Jens Axboe69fb2132020-09-14 11:16:23 -06007060 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7061 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007062 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08007063
7064 finish_wait(&sqd->wait, &wait);
7065 timeout = jiffies + sqd->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007066 }
7067
Jens Axboe4c6e2772020-07-01 11:29:10 -06007068 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07007069
Dennis Zhou91d8f512020-09-16 13:41:05 -07007070 if (cur_css)
7071 io_sq_thread_unassociate_blkcg();
Jens Axboe69fb2132020-09-14 11:16:23 -06007072 if (old_cred)
7073 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06007074
Jens Axboe28cea78a2020-09-14 10:51:17 -06007075 task_lock(current);
7076 current->files = old_files;
7077 current->nsproxy = old_nsproxy;
7078 task_unlock(current);
7079
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02007080 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06007081
Jens Axboe6c271ce2019-01-10 11:22:30 -07007082 return 0;
7083}
7084
Jens Axboebda52162019-09-24 13:47:15 -06007085struct io_wait_queue {
7086 struct wait_queue_entry wq;
7087 struct io_ring_ctx *ctx;
7088 unsigned to_wait;
7089 unsigned nr_timeouts;
7090};
7091
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007092static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06007093{
7094 struct io_ring_ctx *ctx = iowq->ctx;
7095
7096 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08007097 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06007098 * started waiting. For timeouts, we always want to return to userspace,
7099 * regardless of event count.
7100 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007101 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06007102 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
7103}
7104
7105static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7106 int wake_flags, void *key)
7107{
7108 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7109 wq);
7110
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007111 /* use noflush == true, as we can't safely rely on locking context */
7112 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06007113 return -1;
7114
7115 return autoremove_wake_function(curr, mode, wake_flags, key);
7116}
7117
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007118static int io_run_task_work_sig(void)
7119{
7120 if (io_run_task_work())
7121 return 1;
7122 if (!signal_pending(current))
7123 return 0;
Jens Axboe792ee0f62020-10-22 20:17:18 -06007124 if (test_tsk_thread_flag(current, TIF_NOTIFY_SIGNAL))
7125 return -ERESTARTSYS;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007126 return -EINTR;
7127}
7128
Jens Axboe2b188cc2019-01-07 10:46:33 -07007129/*
7130 * Wait until events become available, if we don't already have some. The
7131 * application must reap them itself, as they reside on the shared cq ring.
7132 */
7133static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
Hao Xuc73ebb62020-11-03 10:54:37 +08007134 const sigset_t __user *sig, size_t sigsz,
7135 struct __kernel_timespec __user *uts)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007136{
Jens Axboebda52162019-09-24 13:47:15 -06007137 struct io_wait_queue iowq = {
7138 .wq = {
7139 .private = current,
7140 .func = io_wake_function,
7141 .entry = LIST_HEAD_INIT(iowq.wq.entry),
7142 },
7143 .ctx = ctx,
7144 .to_wait = min_events,
7145 };
Hristo Venev75b28af2019-08-26 17:23:46 +00007146 struct io_rings *rings = ctx->rings;
Hao Xuc73ebb62020-11-03 10:54:37 +08007147 struct timespec64 ts;
7148 signed long timeout = 0;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08007149 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007150
Jens Axboeb41e9852020-02-17 09:52:41 -07007151 do {
7152 if (io_cqring_events(ctx, false) >= min_events)
7153 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06007154 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07007155 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07007156 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007157
7158 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007159#ifdef CONFIG_COMPAT
7160 if (in_compat_syscall())
7161 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07007162 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007163 else
7164#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07007165 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007166
Jens Axboe2b188cc2019-01-07 10:46:33 -07007167 if (ret)
7168 return ret;
7169 }
7170
Hao Xuc73ebb62020-11-03 10:54:37 +08007171 if (uts) {
7172 if (get_timespec64(&ts, uts))
7173 return -EFAULT;
7174 timeout = timespec64_to_jiffies(&ts);
7175 }
7176
Jens Axboebda52162019-09-24 13:47:15 -06007177 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007178 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06007179 do {
7180 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
7181 TASK_INTERRUPTIBLE);
Jens Axboece593a62020-06-30 12:39:05 -06007182 /* make sure we run task_work before checking for signals */
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007183 ret = io_run_task_work_sig();
7184 if (ret > 0)
Jens Axboe4c6e2772020-07-01 11:29:10 -06007185 continue;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007186 else if (ret < 0)
Jens Axboece593a62020-06-30 12:39:05 -06007187 break;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007188 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06007189 break;
Hao Xuc73ebb62020-11-03 10:54:37 +08007190 if (uts) {
7191 timeout = schedule_timeout(timeout);
7192 if (timeout == 0) {
7193 ret = -ETIME;
7194 break;
7195 }
7196 } else {
7197 schedule();
7198 }
Jens Axboebda52162019-09-24 13:47:15 -06007199 } while (1);
7200 finish_wait(&ctx->wait, &iowq.wq);
7201
Jens Axboeb7db41c2020-07-04 08:55:50 -06007202 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007203
Hristo Venev75b28af2019-08-26 17:23:46 +00007204 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007205}
7206
Jens Axboe6b063142019-01-10 22:13:58 -07007207static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
7208{
7209#if defined(CONFIG_UNIX)
7210 if (ctx->ring_sock) {
7211 struct sock *sock = ctx->ring_sock->sk;
7212 struct sk_buff *skb;
7213
7214 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7215 kfree_skb(skb);
7216 }
7217#else
7218 int i;
7219
Jens Axboe65e19f52019-10-26 07:20:21 -06007220 for (i = 0; i < ctx->nr_user_files; i++) {
7221 struct file *file;
7222
7223 file = io_file_from_index(ctx, i);
7224 if (file)
7225 fput(file);
7226 }
Jens Axboe6b063142019-01-10 22:13:58 -07007227#endif
7228}
7229
Jens Axboe05f3fb32019-12-09 11:22:50 -07007230static void io_file_ref_kill(struct percpu_ref *ref)
7231{
7232 struct fixed_file_data *data;
7233
7234 data = container_of(ref, struct fixed_file_data, refs);
7235 complete(&data->done);
7236}
7237
Pavel Begunkov1642b442020-12-30 21:34:14 +00007238static void io_sqe_files_set_node(struct fixed_file_data *file_data,
7239 struct fixed_file_ref_node *ref_node)
7240{
7241 spin_lock_bh(&file_data->lock);
7242 file_data->node = ref_node;
7243 list_add_tail(&ref_node->node, &file_data->ref_list);
7244 spin_unlock_bh(&file_data->lock);
7245 percpu_ref_get(&file_data->refs);
7246}
7247
Jens Axboe6b063142019-01-10 22:13:58 -07007248static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7249{
Jens Axboe05f3fb32019-12-09 11:22:50 -07007250 struct fixed_file_data *data = ctx->file_data;
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007251 struct fixed_file_ref_node *backup_node, *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06007252 unsigned nr_tables, i;
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007253 int ret;
Jens Axboe65e19f52019-10-26 07:20:21 -06007254
Jens Axboe05f3fb32019-12-09 11:22:50 -07007255 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07007256 return -ENXIO;
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007257 backup_node = alloc_fixed_file_ref_node(ctx);
7258 if (!backup_node)
7259 return -ENOMEM;
Jens Axboe6b063142019-01-10 22:13:58 -07007260
Jens Axboeac0648a2020-11-23 09:37:51 -07007261 spin_lock_bh(&data->lock);
Pavel Begunkov1e5d7702020-11-18 14:56:25 +00007262 ref_node = data->node;
Jens Axboeac0648a2020-11-23 09:37:51 -07007263 spin_unlock_bh(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007264 if (ref_node)
7265 percpu_ref_kill(&ref_node->refs);
7266
7267 percpu_ref_kill(&data->refs);
7268
7269 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06007270 flush_delayed_work(&ctx->file_put_work);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007271 do {
7272 ret = wait_for_completion_interruptible(&data->done);
7273 if (!ret)
7274 break;
7275 ret = io_run_task_work_sig();
7276 if (ret < 0) {
7277 percpu_ref_resurrect(&data->refs);
7278 reinit_completion(&data->done);
7279 io_sqe_files_set_node(data, backup_node);
7280 return ret;
7281 }
7282 } while (1);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007283
Jens Axboe6b063142019-01-10 22:13:58 -07007284 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06007285 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
7286 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007287 kfree(data->table[i].files);
7288 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007289 percpu_ref_exit(&data->refs);
7290 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007291 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07007292 ctx->nr_user_files = 0;
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007293 destroy_fixed_file_ref_node(backup_node);
Jens Axboe6b063142019-01-10 22:13:58 -07007294 return 0;
7295}
7296
Jens Axboe534ca6d2020-09-02 13:52:19 -06007297static void io_put_sq_data(struct io_sq_data *sqd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007298{
Jens Axboe534ca6d2020-09-02 13:52:19 -06007299 if (refcount_dec_and_test(&sqd->refs)) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02007300 /*
7301 * The park is a bit of a work-around, without it we get
7302 * warning spews on shutdown with SQPOLL set and affinity
7303 * set to a single CPU.
7304 */
Jens Axboe534ca6d2020-09-02 13:52:19 -06007305 if (sqd->thread) {
7306 kthread_park(sqd->thread);
7307 kthread_stop(sqd->thread);
7308 }
7309
7310 kfree(sqd);
7311 }
7312}
7313
Jens Axboeaa061652020-09-02 14:50:27 -06007314static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7315{
7316 struct io_ring_ctx *ctx_attach;
7317 struct io_sq_data *sqd;
7318 struct fd f;
7319
7320 f = fdget(p->wq_fd);
7321 if (!f.file)
7322 return ERR_PTR(-ENXIO);
7323 if (f.file->f_op != &io_uring_fops) {
7324 fdput(f);
7325 return ERR_PTR(-EINVAL);
7326 }
7327
7328 ctx_attach = f.file->private_data;
7329 sqd = ctx_attach->sq_data;
7330 if (!sqd) {
7331 fdput(f);
7332 return ERR_PTR(-EINVAL);
7333 }
7334
7335 refcount_inc(&sqd->refs);
7336 fdput(f);
7337 return sqd;
7338}
7339
Jens Axboe534ca6d2020-09-02 13:52:19 -06007340static struct io_sq_data *io_get_sq_data(struct io_uring_params *p)
7341{
7342 struct io_sq_data *sqd;
7343
Jens Axboeaa061652020-09-02 14:50:27 -06007344 if (p->flags & IORING_SETUP_ATTACH_WQ)
7345 return io_attach_sq_data(p);
7346
Jens Axboe534ca6d2020-09-02 13:52:19 -06007347 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7348 if (!sqd)
7349 return ERR_PTR(-ENOMEM);
7350
7351 refcount_set(&sqd->refs, 1);
Jens Axboe69fb2132020-09-14 11:16:23 -06007352 INIT_LIST_HEAD(&sqd->ctx_list);
7353 INIT_LIST_HEAD(&sqd->ctx_new_list);
7354 mutex_init(&sqd->ctx_lock);
7355 mutex_init(&sqd->lock);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007356 init_waitqueue_head(&sqd->wait);
7357 return sqd;
7358}
7359
Jens Axboe69fb2132020-09-14 11:16:23 -06007360static void io_sq_thread_unpark(struct io_sq_data *sqd)
7361 __releases(&sqd->lock)
7362{
7363 if (!sqd->thread)
7364 return;
7365 kthread_unpark(sqd->thread);
7366 mutex_unlock(&sqd->lock);
7367}
7368
7369static void io_sq_thread_park(struct io_sq_data *sqd)
7370 __acquires(&sqd->lock)
7371{
7372 if (!sqd->thread)
7373 return;
7374 mutex_lock(&sqd->lock);
7375 kthread_park(sqd->thread);
7376}
7377
Jens Axboe534ca6d2020-09-02 13:52:19 -06007378static void io_sq_thread_stop(struct io_ring_ctx *ctx)
7379{
7380 struct io_sq_data *sqd = ctx->sq_data;
7381
7382 if (sqd) {
7383 if (sqd->thread) {
7384 /*
7385 * We may arrive here from the error branch in
7386 * io_sq_offload_create() where the kthread is created
7387 * without being waked up, thus wake it up now to make
7388 * sure the wait will complete.
7389 */
7390 wake_up_process(sqd->thread);
7391 wait_for_completion(&ctx->sq_thread_comp);
Jens Axboe69fb2132020-09-14 11:16:23 -06007392
7393 io_sq_thread_park(sqd);
7394 }
7395
7396 mutex_lock(&sqd->ctx_lock);
7397 list_del(&ctx->sqd_list);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007398 io_sqd_update_thread_idle(sqd);
Jens Axboe69fb2132020-09-14 11:16:23 -06007399 mutex_unlock(&sqd->ctx_lock);
7400
Xiaoguang Wang08369242020-11-03 14:15:59 +08007401 if (sqd->thread)
Jens Axboe69fb2132020-09-14 11:16:23 -06007402 io_sq_thread_unpark(sqd);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007403
7404 io_put_sq_data(sqd);
7405 ctx->sq_data = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007406 }
7407}
7408
Jens Axboe6b063142019-01-10 22:13:58 -07007409static void io_finish_async(struct io_ring_ctx *ctx)
7410{
Jens Axboe6c271ce2019-01-10 11:22:30 -07007411 io_sq_thread_stop(ctx);
7412
Jens Axboe561fb042019-10-24 07:25:42 -06007413 if (ctx->io_wq) {
7414 io_wq_destroy(ctx->io_wq);
7415 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07007416 }
7417}
7418
7419#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07007420/*
7421 * Ensure the UNIX gc is aware of our file set, so we are certain that
7422 * the io_uring can be safely unregistered on process exit, even if we have
7423 * loops in the file referencing.
7424 */
7425static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
7426{
7427 struct sock *sk = ctx->ring_sock->sk;
7428 struct scm_fp_list *fpl;
7429 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06007430 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07007431
Jens Axboe6b063142019-01-10 22:13:58 -07007432 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
7433 if (!fpl)
7434 return -ENOMEM;
7435
7436 skb = alloc_skb(0, GFP_KERNEL);
7437 if (!skb) {
7438 kfree(fpl);
7439 return -ENOMEM;
7440 }
7441
7442 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07007443
Jens Axboe08a45172019-10-03 08:11:03 -06007444 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07007445 fpl->user = get_uid(ctx->user);
7446 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007447 struct file *file = io_file_from_index(ctx, i + offset);
7448
7449 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06007450 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06007451 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06007452 unix_inflight(fpl->user, fpl->fp[nr_files]);
7453 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07007454 }
7455
Jens Axboe08a45172019-10-03 08:11:03 -06007456 if (nr_files) {
7457 fpl->max = SCM_MAX_FD;
7458 fpl->count = nr_files;
7459 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007460 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06007461 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
7462 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07007463
Jens Axboe08a45172019-10-03 08:11:03 -06007464 for (i = 0; i < nr_files; i++)
7465 fput(fpl->fp[i]);
7466 } else {
7467 kfree_skb(skb);
7468 kfree(fpl);
7469 }
Jens Axboe6b063142019-01-10 22:13:58 -07007470
7471 return 0;
7472}
7473
7474/*
7475 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
7476 * causes regular reference counting to break down. We rely on the UNIX
7477 * garbage collection to take care of this problem for us.
7478 */
7479static int io_sqe_files_scm(struct io_ring_ctx *ctx)
7480{
7481 unsigned left, total;
7482 int ret = 0;
7483
7484 total = 0;
7485 left = ctx->nr_user_files;
7486 while (left) {
7487 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07007488
7489 ret = __io_sqe_files_scm(ctx, this_files, total);
7490 if (ret)
7491 break;
7492 left -= this_files;
7493 total += this_files;
7494 }
7495
7496 if (!ret)
7497 return 0;
7498
7499 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007500 struct file *file = io_file_from_index(ctx, total);
7501
7502 if (file)
7503 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07007504 total++;
7505 }
7506
7507 return ret;
7508}
7509#else
7510static int io_sqe_files_scm(struct io_ring_ctx *ctx)
7511{
7512 return 0;
7513}
7514#endif
7515
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007516static int io_sqe_alloc_file_tables(struct fixed_file_data *file_data,
7517 unsigned nr_tables, unsigned nr_files)
Jens Axboe65e19f52019-10-26 07:20:21 -06007518{
7519 int i;
7520
7521 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007522 struct fixed_file_table *table = &file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007523 unsigned this_files;
7524
7525 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
7526 table->files = kcalloc(this_files, sizeof(struct file *),
7527 GFP_KERNEL);
7528 if (!table->files)
7529 break;
7530 nr_files -= this_files;
7531 }
7532
7533 if (i == nr_tables)
7534 return 0;
7535
7536 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007537 struct fixed_file_table *table = &file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007538 kfree(table->files);
7539 }
7540 return 1;
7541}
7542
Jens Axboe05f3fb32019-12-09 11:22:50 -07007543static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06007544{
7545#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06007546 struct sock *sock = ctx->ring_sock->sk;
7547 struct sk_buff_head list, *head = &sock->sk_receive_queue;
7548 struct sk_buff *skb;
7549 int i;
7550
7551 __skb_queue_head_init(&list);
7552
7553 /*
7554 * Find the skb that holds this file in its SCM_RIGHTS. When found,
7555 * remove this entry and rearrange the file array.
7556 */
7557 skb = skb_dequeue(head);
7558 while (skb) {
7559 struct scm_fp_list *fp;
7560
7561 fp = UNIXCB(skb).fp;
7562 for (i = 0; i < fp->count; i++) {
7563 int left;
7564
7565 if (fp->fp[i] != file)
7566 continue;
7567
7568 unix_notinflight(fp->user, fp->fp[i]);
7569 left = fp->count - 1 - i;
7570 if (left) {
7571 memmove(&fp->fp[i], &fp->fp[i + 1],
7572 left * sizeof(struct file *));
7573 }
7574 fp->count--;
7575 if (!fp->count) {
7576 kfree_skb(skb);
7577 skb = NULL;
7578 } else {
7579 __skb_queue_tail(&list, skb);
7580 }
7581 fput(file);
7582 file = NULL;
7583 break;
7584 }
7585
7586 if (!file)
7587 break;
7588
7589 __skb_queue_tail(&list, skb);
7590
7591 skb = skb_dequeue(head);
7592 }
7593
7594 if (skb_peek(&list)) {
7595 spin_lock_irq(&head->lock);
7596 while ((skb = __skb_dequeue(&list)) != NULL)
7597 __skb_queue_tail(head, skb);
7598 spin_unlock_irq(&head->lock);
7599 }
7600#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07007601 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007602#endif
7603}
7604
Jens Axboe05f3fb32019-12-09 11:22:50 -07007605struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08007606 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007607 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007608};
7609
Jens Axboe4a38aed22020-05-14 17:21:15 -06007610static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007611{
Jens Axboe4a38aed22020-05-14 17:21:15 -06007612 struct fixed_file_data *file_data = ref_node->file_data;
7613 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007614 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007615
7616 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007617 list_del(&pfile->list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007618 io_ring_file_put(ctx, pfile->file);
7619 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007620 }
7621
Xiaoguang Wang05589552020-03-31 14:05:18 +08007622 percpu_ref_exit(&ref_node->refs);
7623 kfree(ref_node);
7624 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007625}
7626
Jens Axboe4a38aed22020-05-14 17:21:15 -06007627static void io_file_put_work(struct work_struct *work)
7628{
7629 struct io_ring_ctx *ctx;
7630 struct llist_node *node;
7631
7632 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
7633 node = llist_del_all(&ctx->file_put_llist);
7634
7635 while (node) {
7636 struct fixed_file_ref_node *ref_node;
7637 struct llist_node *next = node->next;
7638
7639 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
7640 __io_file_put_work(ref_node);
7641 node = next;
7642 }
7643}
7644
Jens Axboe05f3fb32019-12-09 11:22:50 -07007645static void io_file_data_ref_zero(struct percpu_ref *ref)
7646{
Xiaoguang Wang05589552020-03-31 14:05:18 +08007647 struct fixed_file_ref_node *ref_node;
Pavel Begunkove2978222020-11-18 14:56:26 +00007648 struct fixed_file_data *data;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007649 struct io_ring_ctx *ctx;
Pavel Begunkove2978222020-11-18 14:56:26 +00007650 bool first_add = false;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007651 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007652
Xiaoguang Wang05589552020-03-31 14:05:18 +08007653 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Pavel Begunkove2978222020-11-18 14:56:26 +00007654 data = ref_node->file_data;
7655 ctx = data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007656
Jens Axboeac0648a2020-11-23 09:37:51 -07007657 spin_lock_bh(&data->lock);
Pavel Begunkove2978222020-11-18 14:56:26 +00007658 ref_node->done = true;
7659
7660 while (!list_empty(&data->ref_list)) {
7661 ref_node = list_first_entry(&data->ref_list,
7662 struct fixed_file_ref_node, node);
7663 /* recycle ref nodes in order */
7664 if (!ref_node->done)
7665 break;
7666 list_del(&ref_node->node);
7667 first_add |= llist_add(&ref_node->llist, &ctx->file_put_llist);
7668 }
Jens Axboeac0648a2020-11-23 09:37:51 -07007669 spin_unlock_bh(&data->lock);
Pavel Begunkove2978222020-11-18 14:56:26 +00007670
7671 if (percpu_ref_is_dying(&data->refs))
Jens Axboe4a38aed22020-05-14 17:21:15 -06007672 delay = 0;
7673
Jens Axboe4a38aed22020-05-14 17:21:15 -06007674 if (!delay)
7675 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
7676 else if (first_add)
7677 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007678}
7679
7680static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
7681 struct io_ring_ctx *ctx)
7682{
7683 struct fixed_file_ref_node *ref_node;
7684
7685 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7686 if (!ref_node)
7687 return ERR_PTR(-ENOMEM);
7688
7689 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
7690 0, GFP_KERNEL)) {
7691 kfree(ref_node);
7692 return ERR_PTR(-ENOMEM);
7693 }
7694 INIT_LIST_HEAD(&ref_node->node);
7695 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007696 ref_node->file_data = ctx->file_data;
Pavel Begunkove2978222020-11-18 14:56:26 +00007697 ref_node->done = false;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007698 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007699}
7700
7701static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
7702{
7703 percpu_ref_exit(&ref_node->refs);
7704 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007705}
7706
7707static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
7708 unsigned nr_args)
7709{
7710 __s32 __user *fds = (__s32 __user *) arg;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007711 unsigned nr_tables, i;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007712 struct file *file;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007713 int fd, ret = -ENOMEM;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007714 struct fixed_file_ref_node *ref_node;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007715 struct fixed_file_data *file_data;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007716
7717 if (ctx->file_data)
7718 return -EBUSY;
7719 if (!nr_args)
7720 return -EINVAL;
7721 if (nr_args > IORING_MAX_FIXED_FILES)
7722 return -EMFILE;
7723
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007724 file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
7725 if (!file_data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007726 return -ENOMEM;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007727 file_data->ctx = ctx;
7728 init_completion(&file_data->done);
7729 INIT_LIST_HEAD(&file_data->ref_list);
7730 spin_lock_init(&file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007731
7732 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
Colin Ian King035fbaf2020-10-12 15:03:41 +01007733 file_data->table = kcalloc(nr_tables, sizeof(*file_data->table),
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007734 GFP_KERNEL);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007735 if (!file_data->table)
7736 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007737
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007738 if (percpu_ref_init(&file_data->refs, io_file_ref_kill,
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007739 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
7740 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007741
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007742 if (io_sqe_alloc_file_tables(file_data, nr_tables, nr_args))
7743 goto out_ref;
Jens Axboe55cbc252020-10-14 07:35:57 -06007744 ctx->file_data = file_data;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007745
7746 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
7747 struct fixed_file_table *table;
7748 unsigned index;
7749
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007750 if (copy_from_user(&fd, &fds[i], sizeof(fd))) {
7751 ret = -EFAULT;
7752 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007753 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007754 /* allow sparse sets */
7755 if (fd == -1)
7756 continue;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007757
Jens Axboe05f3fb32019-12-09 11:22:50 -07007758 file = fget(fd);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007759 ret = -EBADF;
7760 if (!file)
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007761 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007762
7763 /*
7764 * Don't allow io_uring instances to be registered. If UNIX
7765 * isn't enabled, then this causes a reference cycle and this
7766 * instance can never get freed. If UNIX is enabled we'll
7767 * handle it just fine, but there's still no point in allowing
7768 * a ring fd as it doesn't support regular read/write anyway.
7769 */
7770 if (file->f_op == &io_uring_fops) {
7771 fput(file);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007772 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007773 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007774 table = &file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7775 index = i & IORING_FILE_TABLE_MASK;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007776 table->files[index] = file;
7777 }
7778
Jens Axboe05f3fb32019-12-09 11:22:50 -07007779 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007780 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007781 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007782 return ret;
7783 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007784
Xiaoguang Wang05589552020-03-31 14:05:18 +08007785 ref_node = alloc_fixed_file_ref_node(ctx);
7786 if (IS_ERR(ref_node)) {
7787 io_sqe_files_unregister(ctx);
7788 return PTR_ERR(ref_node);
7789 }
7790
Pavel Begunkov1642b442020-12-30 21:34:14 +00007791 io_sqe_files_set_node(file_data, ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007792 return ret;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007793out_fput:
7794 for (i = 0; i < ctx->nr_user_files; i++) {
7795 file = io_file_from_index(ctx, i);
7796 if (file)
7797 fput(file);
7798 }
7799 for (i = 0; i < nr_tables; i++)
7800 kfree(file_data->table[i].files);
7801 ctx->nr_user_files = 0;
7802out_ref:
7803 percpu_ref_exit(&file_data->refs);
7804out_free:
7805 kfree(file_data->table);
7806 kfree(file_data);
Jens Axboe55cbc252020-10-14 07:35:57 -06007807 ctx->file_data = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007808 return ret;
7809}
7810
Jens Axboec3a31e62019-10-03 13:59:56 -06007811static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
7812 int index)
7813{
7814#if defined(CONFIG_UNIX)
7815 struct sock *sock = ctx->ring_sock->sk;
7816 struct sk_buff_head *head = &sock->sk_receive_queue;
7817 struct sk_buff *skb;
7818
7819 /*
7820 * See if we can merge this file into an existing skb SCM_RIGHTS
7821 * file set. If there's no room, fall back to allocating a new skb
7822 * and filling it in.
7823 */
7824 spin_lock_irq(&head->lock);
7825 skb = skb_peek(head);
7826 if (skb) {
7827 struct scm_fp_list *fpl = UNIXCB(skb).fp;
7828
7829 if (fpl->count < SCM_MAX_FD) {
7830 __skb_unlink(skb, head);
7831 spin_unlock_irq(&head->lock);
7832 fpl->fp[fpl->count] = get_file(file);
7833 unix_inflight(fpl->user, fpl->fp[fpl->count]);
7834 fpl->count++;
7835 spin_lock_irq(&head->lock);
7836 __skb_queue_head(head, skb);
7837 } else {
7838 skb = NULL;
7839 }
7840 }
7841 spin_unlock_irq(&head->lock);
7842
7843 if (skb) {
7844 fput(file);
7845 return 0;
7846 }
7847
7848 return __io_sqe_files_scm(ctx, 1, index);
7849#else
7850 return 0;
7851#endif
7852}
7853
Hillf Dantona5318d32020-03-23 17:47:15 +08007854static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08007855 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007856{
Hillf Dantona5318d32020-03-23 17:47:15 +08007857 struct io_file_put *pfile;
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007858 struct fixed_file_ref_node *ref_node = data->node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007859
Jens Axboe05f3fb32019-12-09 11:22:50 -07007860 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08007861 if (!pfile)
7862 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007863
7864 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007865 list_add(&pfile->list, &ref_node->file_list);
7866
Hillf Dantona5318d32020-03-23 17:47:15 +08007867 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007868}
7869
7870static int __io_sqe_files_update(struct io_ring_ctx *ctx,
7871 struct io_uring_files_update *up,
7872 unsigned nr_args)
7873{
7874 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007875 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007876 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007877 __s32 __user *fds;
7878 int fd, i, err;
7879 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007880 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06007881
Jens Axboe05f3fb32019-12-09 11:22:50 -07007882 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06007883 return -EOVERFLOW;
7884 if (done > ctx->nr_user_files)
7885 return -EINVAL;
7886
Xiaoguang Wang05589552020-03-31 14:05:18 +08007887 ref_node = alloc_fixed_file_ref_node(ctx);
7888 if (IS_ERR(ref_node))
7889 return PTR_ERR(ref_node);
7890
Jens Axboec3a31e62019-10-03 13:59:56 -06007891 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007892 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06007893 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007894 struct fixed_file_table *table;
7895 unsigned index;
7896
Jens Axboec3a31e62019-10-03 13:59:56 -06007897 err = 0;
7898 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
7899 err = -EFAULT;
7900 break;
7901 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007902 i = array_index_nospec(up->offset, ctx->nr_user_files);
7903 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06007904 index = i & IORING_FILE_TABLE_MASK;
7905 if (table->files[index]) {
Jiufei Xue98dfd502020-09-01 13:35:02 +08007906 file = table->files[index];
Hillf Dantona5318d32020-03-23 17:47:15 +08007907 err = io_queue_file_removal(data, file);
7908 if (err)
7909 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06007910 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007911 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06007912 }
7913 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06007914 file = fget(fd);
7915 if (!file) {
7916 err = -EBADF;
7917 break;
7918 }
7919 /*
7920 * Don't allow io_uring instances to be registered. If
7921 * UNIX isn't enabled, then this causes a reference
7922 * cycle and this instance can never get freed. If UNIX
7923 * is enabled we'll handle it just fine, but there's
7924 * still no point in allowing a ring fd as it doesn't
7925 * support regular read/write anyway.
7926 */
7927 if (file->f_op == &io_uring_fops) {
7928 fput(file);
7929 err = -EBADF;
7930 break;
7931 }
Jens Axboe65e19f52019-10-26 07:20:21 -06007932 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007933 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007934 if (err) {
Jiufei Xue95d1c8e2020-09-02 17:59:39 +08007935 table->files[index] = NULL;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007936 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007937 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007938 }
Jens Axboec3a31e62019-10-03 13:59:56 -06007939 }
7940 nr_args--;
7941 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007942 up->offset++;
7943 }
7944
Xiaoguang Wang05589552020-03-31 14:05:18 +08007945 if (needs_switch) {
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007946 percpu_ref_kill(&data->node->refs);
Pavel Begunkov1642b442020-12-30 21:34:14 +00007947 io_sqe_files_set_node(data, ref_node);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007948 } else
7949 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06007950
7951 return done ? done : err;
7952}
Xiaoguang Wang05589552020-03-31 14:05:18 +08007953
Jens Axboe05f3fb32019-12-09 11:22:50 -07007954static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
7955 unsigned nr_args)
7956{
7957 struct io_uring_files_update up;
7958
7959 if (!ctx->file_data)
7960 return -ENXIO;
7961 if (!nr_args)
7962 return -EINVAL;
7963 if (copy_from_user(&up, arg, sizeof(up)))
7964 return -EFAULT;
7965 if (up.resv)
7966 return -EINVAL;
7967
7968 return __io_sqe_files_update(ctx, &up, nr_args);
7969}
Jens Axboec3a31e62019-10-03 13:59:56 -06007970
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007971static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07007972{
7973 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
7974
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007975 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07007976 io_put_req(req);
7977}
7978
Pavel Begunkov24369c22020-01-28 03:15:48 +03007979static int io_init_wq_offload(struct io_ring_ctx *ctx,
7980 struct io_uring_params *p)
7981{
7982 struct io_wq_data data;
7983 struct fd f;
7984 struct io_ring_ctx *ctx_attach;
7985 unsigned int concurrency;
7986 int ret = 0;
7987
7988 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007989 data.free_work = io_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03007990 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03007991
7992 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
7993 /* Do QD, or 4 * CPUS, whatever is smallest */
7994 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
7995
7996 ctx->io_wq = io_wq_create(concurrency, &data);
7997 if (IS_ERR(ctx->io_wq)) {
7998 ret = PTR_ERR(ctx->io_wq);
7999 ctx->io_wq = NULL;
8000 }
8001 return ret;
8002 }
8003
8004 f = fdget(p->wq_fd);
8005 if (!f.file)
8006 return -EBADF;
8007
8008 if (f.file->f_op != &io_uring_fops) {
8009 ret = -EINVAL;
8010 goto out_fput;
8011 }
8012
8013 ctx_attach = f.file->private_data;
8014 /* @io_wq is protected by holding the fd */
8015 if (!io_wq_get(ctx_attach->io_wq, &data)) {
8016 ret = -EINVAL;
8017 goto out_fput;
8018 }
8019
8020 ctx->io_wq = ctx_attach->io_wq;
8021out_fput:
8022 fdput(f);
8023 return ret;
8024}
8025
Jens Axboe0f212202020-09-13 13:09:39 -06008026static int io_uring_alloc_task_context(struct task_struct *task)
8027{
8028 struct io_uring_task *tctx;
Jens Axboed8a6df12020-10-15 16:24:45 -06008029 int ret;
Jens Axboe0f212202020-09-13 13:09:39 -06008030
8031 tctx = kmalloc(sizeof(*tctx), GFP_KERNEL);
8032 if (unlikely(!tctx))
8033 return -ENOMEM;
8034
Jens Axboed8a6df12020-10-15 16:24:45 -06008035 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
8036 if (unlikely(ret)) {
8037 kfree(tctx);
8038 return ret;
8039 }
8040
Jens Axboe0f212202020-09-13 13:09:39 -06008041 xa_init(&tctx->xa);
8042 init_waitqueue_head(&tctx->wait);
8043 tctx->last = NULL;
Jens Axboefdaf0832020-10-30 09:37:30 -06008044 atomic_set(&tctx->in_idle, 0);
8045 tctx->sqpoll = false;
Jens Axboe500a3732020-10-15 17:38:03 -06008046 io_init_identity(&tctx->__identity);
8047 tctx->identity = &tctx->__identity;
Jens Axboe0f212202020-09-13 13:09:39 -06008048 task->io_uring = tctx;
8049 return 0;
8050}
8051
8052void __io_uring_free(struct task_struct *tsk)
8053{
8054 struct io_uring_task *tctx = tsk->io_uring;
8055
8056 WARN_ON_ONCE(!xa_empty(&tctx->xa));
Jens Axboe500a3732020-10-15 17:38:03 -06008057 WARN_ON_ONCE(refcount_read(&tctx->identity->count) != 1);
8058 if (tctx->identity != &tctx->__identity)
8059 kfree(tctx->identity);
Jens Axboed8a6df12020-10-15 16:24:45 -06008060 percpu_counter_destroy(&tctx->inflight);
Jens Axboe0f212202020-09-13 13:09:39 -06008061 kfree(tctx);
8062 tsk->io_uring = NULL;
8063}
8064
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008065static int io_sq_offload_create(struct io_ring_ctx *ctx,
8066 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008067{
8068 int ret;
8069
Jens Axboe6c271ce2019-01-10 11:22:30 -07008070 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06008071 struct io_sq_data *sqd;
8072
Jens Axboe3ec482d2019-04-08 10:51:01 -06008073 ret = -EPERM;
Jens Axboece59fc62020-09-02 13:28:09 -06008074 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_NICE))
Jens Axboe3ec482d2019-04-08 10:51:01 -06008075 goto err;
8076
Jens Axboe534ca6d2020-09-02 13:52:19 -06008077 sqd = io_get_sq_data(p);
8078 if (IS_ERR(sqd)) {
8079 ret = PTR_ERR(sqd);
8080 goto err;
8081 }
Jens Axboe69fb2132020-09-14 11:16:23 -06008082
Jens Axboe534ca6d2020-09-02 13:52:19 -06008083 ctx->sq_data = sqd;
Jens Axboe69fb2132020-09-14 11:16:23 -06008084 io_sq_thread_park(sqd);
8085 mutex_lock(&sqd->ctx_lock);
8086 list_add(&ctx->sqd_list, &sqd->ctx_new_list);
8087 mutex_unlock(&sqd->ctx_lock);
8088 io_sq_thread_unpark(sqd);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008089
Jens Axboe917257d2019-04-13 09:28:55 -06008090 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8091 if (!ctx->sq_thread_idle)
8092 ctx->sq_thread_idle = HZ;
8093
Jens Axboeaa061652020-09-02 14:50:27 -06008094 if (sqd->thread)
8095 goto done;
8096
Jens Axboe6c271ce2019-01-10 11:22:30 -07008097 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06008098 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008099
Jens Axboe917257d2019-04-13 09:28:55 -06008100 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06008101 if (cpu >= nr_cpu_ids)
8102 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08008103 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06008104 goto err;
8105
Jens Axboe69fb2132020-09-14 11:16:23 -06008106 sqd->thread = kthread_create_on_cpu(io_sq_thread, sqd,
Jens Axboe534ca6d2020-09-02 13:52:19 -06008107 cpu, "io_uring-sq");
Jens Axboe6c271ce2019-01-10 11:22:30 -07008108 } else {
Jens Axboe69fb2132020-09-14 11:16:23 -06008109 sqd->thread = kthread_create(io_sq_thread, sqd,
Jens Axboe6c271ce2019-01-10 11:22:30 -07008110 "io_uring-sq");
8111 }
Jens Axboe534ca6d2020-09-02 13:52:19 -06008112 if (IS_ERR(sqd->thread)) {
8113 ret = PTR_ERR(sqd->thread);
8114 sqd->thread = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008115 goto err;
8116 }
Jens Axboe534ca6d2020-09-02 13:52:19 -06008117 ret = io_uring_alloc_task_context(sqd->thread);
Jens Axboe0f212202020-09-13 13:09:39 -06008118 if (ret)
8119 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008120 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8121 /* Can't have SQ_AFF without SQPOLL */
8122 ret = -EINVAL;
8123 goto err;
8124 }
8125
Jens Axboeaa061652020-09-02 14:50:27 -06008126done:
Pavel Begunkov24369c22020-01-28 03:15:48 +03008127 ret = io_init_wq_offload(ctx, p);
8128 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008129 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008130
8131 return 0;
8132err:
Jens Axboe54a91f32019-09-10 09:15:04 -06008133 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008134 return ret;
8135}
8136
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008137static void io_sq_offload_start(struct io_ring_ctx *ctx)
8138{
Jens Axboe534ca6d2020-09-02 13:52:19 -06008139 struct io_sq_data *sqd = ctx->sq_data;
8140
8141 if ((ctx->flags & IORING_SETUP_SQPOLL) && sqd->thread)
8142 wake_up_process(sqd->thread);
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008143}
8144
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008145static inline void __io_unaccount_mem(struct user_struct *user,
8146 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008147{
8148 atomic_long_sub(nr_pages, &user->locked_vm);
8149}
8150
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008151static inline int __io_account_mem(struct user_struct *user,
8152 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008153{
8154 unsigned long page_limit, cur_pages, new_pages;
8155
8156 /* Don't allow more pages than we can safely lock */
8157 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8158
8159 do {
8160 cur_pages = atomic_long_read(&user->locked_vm);
8161 new_pages = cur_pages + nr_pages;
8162 if (new_pages > page_limit)
8163 return -ENOMEM;
8164 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8165 new_pages) != cur_pages);
8166
8167 return 0;
8168}
8169
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008170static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
8171 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008172{
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008173 if (ctx->limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008174 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008175
Jens Axboe2aede0e2020-09-14 10:45:53 -06008176 if (ctx->mm_account) {
Jens Axboe4bc4a912020-12-17 07:53:33 -07008177 if (acct == ACCT_LOCKED) {
8178 mmap_write_lock(ctx->mm_account);
Jens Axboe2aede0e2020-09-14 10:45:53 -06008179 ctx->mm_account->locked_vm -= nr_pages;
Jens Axboe4bc4a912020-12-17 07:53:33 -07008180 mmap_write_unlock(ctx->mm_account);
8181 }else if (acct == ACCT_PINNED) {
Jens Axboe2aede0e2020-09-14 10:45:53 -06008182 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Jens Axboe4bc4a912020-12-17 07:53:33 -07008183 }
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008184 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008185}
8186
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008187static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
8188 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008189{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008190 int ret;
8191
8192 if (ctx->limit_mem) {
8193 ret = __io_account_mem(ctx->user, nr_pages);
8194 if (ret)
8195 return ret;
8196 }
8197
Jens Axboe2aede0e2020-09-14 10:45:53 -06008198 if (ctx->mm_account) {
Jens Axboe4bc4a912020-12-17 07:53:33 -07008199 if (acct == ACCT_LOCKED) {
8200 mmap_write_lock(ctx->mm_account);
Jens Axboe2aede0e2020-09-14 10:45:53 -06008201 ctx->mm_account->locked_vm += nr_pages;
Jens Axboe4bc4a912020-12-17 07:53:33 -07008202 mmap_write_unlock(ctx->mm_account);
8203 } else if (acct == ACCT_PINNED) {
Jens Axboe2aede0e2020-09-14 10:45:53 -06008204 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Jens Axboe4bc4a912020-12-17 07:53:33 -07008205 }
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008206 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008207
8208 return 0;
8209}
8210
Jens Axboe2b188cc2019-01-07 10:46:33 -07008211static void io_mem_free(void *ptr)
8212{
Mark Rutland52e04ef2019-04-30 17:30:21 +01008213 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008214
Mark Rutland52e04ef2019-04-30 17:30:21 +01008215 if (!ptr)
8216 return;
8217
8218 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008219 if (put_page_testzero(page))
8220 free_compound_page(page);
8221}
8222
8223static void *io_mem_alloc(size_t size)
8224{
8225 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
8226 __GFP_NORETRY;
8227
8228 return (void *) __get_free_pages(gfp_flags, get_order(size));
8229}
8230
Hristo Venev75b28af2019-08-26 17:23:46 +00008231static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
8232 size_t *sq_offset)
8233{
8234 struct io_rings *rings;
8235 size_t off, sq_array_size;
8236
8237 off = struct_size(rings, cqes, cq_entries);
8238 if (off == SIZE_MAX)
8239 return SIZE_MAX;
8240
8241#ifdef CONFIG_SMP
8242 off = ALIGN(off, SMP_CACHE_BYTES);
8243 if (off == 0)
8244 return SIZE_MAX;
8245#endif
8246
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02008247 if (sq_offset)
8248 *sq_offset = off;
8249
Hristo Venev75b28af2019-08-26 17:23:46 +00008250 sq_array_size = array_size(sizeof(u32), sq_entries);
8251 if (sq_array_size == SIZE_MAX)
8252 return SIZE_MAX;
8253
8254 if (check_add_overflow(off, sq_array_size, &off))
8255 return SIZE_MAX;
8256
Hristo Venev75b28af2019-08-26 17:23:46 +00008257 return off;
8258}
8259
Jens Axboe2b188cc2019-01-07 10:46:33 -07008260static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
8261{
Hristo Venev75b28af2019-08-26 17:23:46 +00008262 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008263
Hristo Venev75b28af2019-08-26 17:23:46 +00008264 pages = (size_t)1 << get_order(
8265 rings_size(sq_entries, cq_entries, NULL));
8266 pages += (size_t)1 << get_order(
8267 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008268
Hristo Venev75b28af2019-08-26 17:23:46 +00008269 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008270}
8271
Jens Axboeedafcce2019-01-09 09:16:05 -07008272static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
8273{
8274 int i, j;
8275
8276 if (!ctx->user_bufs)
8277 return -ENXIO;
8278
8279 for (i = 0; i < ctx->nr_user_bufs; i++) {
8280 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8281
8282 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08008283 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07008284
Jens Axboede293932020-09-17 16:19:16 -06008285 if (imu->acct_pages)
8286 io_unaccount_mem(ctx, imu->acct_pages, ACCT_PINNED);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008287 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07008288 imu->nr_bvecs = 0;
8289 }
8290
8291 kfree(ctx->user_bufs);
8292 ctx->user_bufs = NULL;
8293 ctx->nr_user_bufs = 0;
8294 return 0;
8295}
8296
8297static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8298 void __user *arg, unsigned index)
8299{
8300 struct iovec __user *src;
8301
8302#ifdef CONFIG_COMPAT
8303 if (ctx->compat) {
8304 struct compat_iovec __user *ciovs;
8305 struct compat_iovec ciov;
8306
8307 ciovs = (struct compat_iovec __user *) arg;
8308 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8309 return -EFAULT;
8310
Jens Axboed55e5f52019-12-11 16:12:15 -07008311 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07008312 dst->iov_len = ciov.iov_len;
8313 return 0;
8314 }
8315#endif
8316 src = (struct iovec __user *) arg;
8317 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8318 return -EFAULT;
8319 return 0;
8320}
8321
Jens Axboede293932020-09-17 16:19:16 -06008322/*
8323 * Not super efficient, but this is just a registration time. And we do cache
8324 * the last compound head, so generally we'll only do a full search if we don't
8325 * match that one.
8326 *
8327 * We check if the given compound head page has already been accounted, to
8328 * avoid double accounting it. This allows us to account the full size of the
8329 * page, not just the constituent pages of a huge page.
8330 */
8331static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8332 int nr_pages, struct page *hpage)
8333{
8334 int i, j;
8335
8336 /* check current page array */
8337 for (i = 0; i < nr_pages; i++) {
8338 if (!PageCompound(pages[i]))
8339 continue;
8340 if (compound_head(pages[i]) == hpage)
8341 return true;
8342 }
8343
8344 /* check previously registered pages */
8345 for (i = 0; i < ctx->nr_user_bufs; i++) {
8346 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8347
8348 for (j = 0; j < imu->nr_bvecs; j++) {
8349 if (!PageCompound(imu->bvec[j].bv_page))
8350 continue;
8351 if (compound_head(imu->bvec[j].bv_page) == hpage)
8352 return true;
8353 }
8354 }
8355
8356 return false;
8357}
8358
8359static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8360 int nr_pages, struct io_mapped_ubuf *imu,
8361 struct page **last_hpage)
8362{
8363 int i, ret;
8364
8365 for (i = 0; i < nr_pages; i++) {
8366 if (!PageCompound(pages[i])) {
8367 imu->acct_pages++;
8368 } else {
8369 struct page *hpage;
8370
8371 hpage = compound_head(pages[i]);
8372 if (hpage == *last_hpage)
8373 continue;
8374 *last_hpage = hpage;
8375 if (headpage_already_acct(ctx, pages, i, hpage))
8376 continue;
8377 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8378 }
8379 }
8380
8381 if (!imu->acct_pages)
8382 return 0;
8383
8384 ret = io_account_mem(ctx, imu->acct_pages, ACCT_PINNED);
8385 if (ret)
8386 imu->acct_pages = 0;
8387 return ret;
8388}
8389
Jens Axboeedafcce2019-01-09 09:16:05 -07008390static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
8391 unsigned nr_args)
8392{
8393 struct vm_area_struct **vmas = NULL;
8394 struct page **pages = NULL;
Jens Axboede293932020-09-17 16:19:16 -06008395 struct page *last_hpage = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008396 int i, j, got_pages = 0;
8397 int ret = -EINVAL;
8398
8399 if (ctx->user_bufs)
8400 return -EBUSY;
8401 if (!nr_args || nr_args > UIO_MAXIOV)
8402 return -EINVAL;
8403
8404 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
8405 GFP_KERNEL);
8406 if (!ctx->user_bufs)
8407 return -ENOMEM;
8408
8409 for (i = 0; i < nr_args; i++) {
8410 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8411 unsigned long off, start, end, ubuf;
8412 int pret, nr_pages;
8413 struct iovec iov;
8414 size_t size;
8415
8416 ret = io_copy_iov(ctx, &iov, arg, i);
8417 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03008418 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07008419
8420 /*
8421 * Don't impose further limits on the size and buffer
8422 * constraints here, we'll -EINVAL later when IO is
8423 * submitted if they are wrong.
8424 */
8425 ret = -EFAULT;
8426 if (!iov.iov_base || !iov.iov_len)
8427 goto err;
8428
8429 /* arbitrary limit, but we need something */
8430 if (iov.iov_len > SZ_1G)
8431 goto err;
8432
8433 ubuf = (unsigned long) iov.iov_base;
8434 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
8435 start = ubuf >> PAGE_SHIFT;
8436 nr_pages = end - start;
8437
Jens Axboeedafcce2019-01-09 09:16:05 -07008438 ret = 0;
8439 if (!pages || nr_pages > got_pages) {
Denis Efremova8c73c12020-06-05 12:32:03 +03008440 kvfree(vmas);
8441 kvfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008442 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07008443 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008444 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07008445 sizeof(struct vm_area_struct *),
8446 GFP_KERNEL);
8447 if (!pages || !vmas) {
8448 ret = -ENOMEM;
Jens Axboeedafcce2019-01-09 09:16:05 -07008449 goto err;
8450 }
8451 got_pages = nr_pages;
8452 }
8453
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008454 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07008455 GFP_KERNEL);
8456 ret = -ENOMEM;
Jens Axboede293932020-09-17 16:19:16 -06008457 if (!imu->bvec)
Jens Axboeedafcce2019-01-09 09:16:05 -07008458 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07008459
8460 ret = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07008461 mmap_read_lock(current->mm);
John Hubbard2113b052020-01-30 22:13:13 -08008462 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07008463 FOLL_WRITE | FOLL_LONGTERM,
8464 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008465 if (pret == nr_pages) {
8466 /* don't support file backed memory */
8467 for (j = 0; j < nr_pages; j++) {
8468 struct vm_area_struct *vma = vmas[j];
8469
8470 if (vma->vm_file &&
8471 !is_file_hugepages(vma->vm_file)) {
8472 ret = -EOPNOTSUPP;
8473 break;
8474 }
8475 }
8476 } else {
8477 ret = pret < 0 ? pret : -EFAULT;
8478 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07008479 mmap_read_unlock(current->mm);
Jens Axboeedafcce2019-01-09 09:16:05 -07008480 if (ret) {
8481 /*
8482 * if we did partial map, or found file backed vmas,
8483 * release any pages we did get
8484 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07008485 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08008486 unpin_user_pages(pages, pret);
Jens Axboede293932020-09-17 16:19:16 -06008487 kvfree(imu->bvec);
8488 goto err;
8489 }
8490
8491 ret = io_buffer_account_pin(ctx, pages, pret, imu, &last_hpage);
8492 if (ret) {
8493 unpin_user_pages(pages, pret);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008494 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07008495 goto err;
8496 }
8497
8498 off = ubuf & ~PAGE_MASK;
8499 size = iov.iov_len;
8500 for (j = 0; j < nr_pages; j++) {
8501 size_t vec_len;
8502
8503 vec_len = min_t(size_t, size, PAGE_SIZE - off);
8504 imu->bvec[j].bv_page = pages[j];
8505 imu->bvec[j].bv_len = vec_len;
8506 imu->bvec[j].bv_offset = off;
8507 off = 0;
8508 size -= vec_len;
8509 }
8510 /* store original address for later verification */
8511 imu->ubuf = ubuf;
8512 imu->len = iov.iov_len;
8513 imu->nr_bvecs = nr_pages;
8514
8515 ctx->nr_user_bufs++;
8516 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008517 kvfree(pages);
8518 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008519 return 0;
8520err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008521 kvfree(pages);
8522 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008523 io_sqe_buffer_unregister(ctx);
8524 return ret;
8525}
8526
Jens Axboe9b402842019-04-11 11:45:41 -06008527static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
8528{
8529 __s32 __user *fds = arg;
8530 int fd;
8531
8532 if (ctx->cq_ev_fd)
8533 return -EBUSY;
8534
8535 if (copy_from_user(&fd, fds, sizeof(*fds)))
8536 return -EFAULT;
8537
8538 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
8539 if (IS_ERR(ctx->cq_ev_fd)) {
8540 int ret = PTR_ERR(ctx->cq_ev_fd);
8541 ctx->cq_ev_fd = NULL;
8542 return ret;
8543 }
8544
8545 return 0;
8546}
8547
8548static int io_eventfd_unregister(struct io_ring_ctx *ctx)
8549{
8550 if (ctx->cq_ev_fd) {
8551 eventfd_ctx_put(ctx->cq_ev_fd);
8552 ctx->cq_ev_fd = NULL;
8553 return 0;
8554 }
8555
8556 return -ENXIO;
8557}
8558
Jens Axboe5a2e7452020-02-23 16:23:11 -07008559static int __io_destroy_buffers(int id, void *p, void *data)
8560{
8561 struct io_ring_ctx *ctx = data;
8562 struct io_buffer *buf = p;
8563
Jens Axboe067524e2020-03-02 16:32:28 -07008564 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07008565 return 0;
8566}
8567
8568static void io_destroy_buffers(struct io_ring_ctx *ctx)
8569{
8570 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
8571 idr_destroy(&ctx->io_buffer_idr);
8572}
8573
Jens Axboe2b188cc2019-01-07 10:46:33 -07008574static void io_ring_ctx_free(struct io_ring_ctx *ctx)
8575{
Jens Axboe6b063142019-01-10 22:13:58 -07008576 io_finish_async(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07008577 io_sqe_buffer_unregister(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06008578
8579 if (ctx->sqo_task) {
8580 put_task_struct(ctx->sqo_task);
8581 ctx->sqo_task = NULL;
8582 mmdrop(ctx->mm_account);
8583 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008584 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008585
Dennis Zhou91d8f512020-09-16 13:41:05 -07008586#ifdef CONFIG_BLK_CGROUP
8587 if (ctx->sqo_blkcg_css)
8588 css_put(ctx->sqo_blkcg_css);
8589#endif
8590
Jens Axboe6b063142019-01-10 22:13:58 -07008591 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06008592 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07008593 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07008594 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07008595
Jens Axboe2b188cc2019-01-07 10:46:33 -07008596#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07008597 if (ctx->ring_sock) {
8598 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07008599 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07008600 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008601#endif
8602
Hristo Venev75b28af2019-08-26 17:23:46 +00008603 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008604 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008605
8606 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008607 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07008608 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07008609 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07008610 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008611 kfree(ctx);
8612}
8613
8614static __poll_t io_uring_poll(struct file *file, poll_table *wait)
8615{
8616 struct io_ring_ctx *ctx = file->private_data;
8617 __poll_t mask = 0;
8618
8619 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02008620 /*
8621 * synchronizes with barrier from wq_has_sleeper call in
8622 * io_commit_cqring
8623 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07008624 smp_rmb();
Jens Axboe90554202020-09-03 12:12:41 -06008625 if (!io_sqring_full(ctx))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008626 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01008627 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008628 mask |= EPOLLIN | EPOLLRDNORM;
8629
8630 return mask;
8631}
8632
8633static int io_uring_fasync(int fd, struct file *file, int on)
8634{
8635 struct io_ring_ctx *ctx = file->private_data;
8636
8637 return fasync_helper(fd, file, on, &ctx->cq_fasync);
8638}
8639
Jens Axboe071698e2020-01-28 10:04:42 -07008640static int io_remove_personalities(int id, void *p, void *data)
8641{
8642 struct io_ring_ctx *ctx = data;
Jens Axboe1e6fa522020-10-15 08:46:24 -06008643 struct io_identity *iod;
Jens Axboe071698e2020-01-28 10:04:42 -07008644
Jens Axboe1e6fa522020-10-15 08:46:24 -06008645 iod = idr_remove(&ctx->personality_idr, id);
8646 if (iod) {
8647 put_cred(iod->creds);
8648 if (refcount_dec_and_test(&iod->count))
8649 kfree(iod);
8650 }
Jens Axboe071698e2020-01-28 10:04:42 -07008651 return 0;
8652}
8653
Jens Axboe85faa7b2020-04-09 18:14:00 -06008654static void io_ring_exit_work(struct work_struct *work)
8655{
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008656 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
8657 exit_work);
Jens Axboe85faa7b2020-04-09 18:14:00 -06008658
Jens Axboe56952e92020-06-17 15:00:04 -06008659 /*
8660 * If we're doing polled IO and end up having requests being
8661 * submitted async (out-of-line), then completions can come in while
8662 * we're waiting for refs to drop. We need to reap these manually,
8663 * as nobody else will be looking for them.
8664 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008665 do {
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008666 io_iopoll_try_reap_events(ctx);
8667 } while (!wait_for_completion_timeout(&ctx->ref_comp, HZ/20));
Jens Axboe85faa7b2020-04-09 18:14:00 -06008668 io_ring_ctx_free(ctx);
8669}
8670
Jens Axboe00c18642020-12-20 10:45:02 -07008671static bool io_cancel_ctx_cb(struct io_wq_work *work, void *data)
8672{
8673 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
8674
8675 return req->ctx == data;
8676}
8677
Jens Axboe2b188cc2019-01-07 10:46:33 -07008678static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
8679{
8680 mutex_lock(&ctx->uring_lock);
8681 percpu_ref_kill(&ctx->refs);
Pavel Begunkovcda286f2020-12-17 00:24:35 +00008682 /* if force is set, the ring is going away. always drop after that */
8683 ctx->cq_overflow_flushed = 1;
Pavel Begunkov634578f2020-12-06 22:22:44 +00008684 if (ctx->rings)
8685 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008686 mutex_unlock(&ctx->uring_lock);
8687
Pavel Begunkov6b819282020-11-06 13:00:25 +00008688 io_kill_timeouts(ctx, NULL, NULL);
8689 io_poll_remove_all(ctx, NULL, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06008690
8691 if (ctx->io_wq)
Jens Axboe00c18642020-12-20 10:45:02 -07008692 io_wq_cancel_cb(ctx->io_wq, io_cancel_ctx_cb, ctx, true);
Jens Axboe561fb042019-10-24 07:25:42 -06008693
Jens Axboe15dff282019-11-13 09:09:23 -07008694 /* if we failed setting up the ctx, we might not have any rings */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008695 io_iopoll_try_reap_events(ctx);
Jens Axboe071698e2020-01-28 10:04:42 -07008696 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06008697
8698 /*
8699 * Do this upfront, so we won't have a grace period where the ring
8700 * is closed but resources aren't reaped yet. This can cause
8701 * spurious failure in setting up a new ring.
8702 */
Jens Axboe760618f2020-07-24 12:53:31 -06008703 io_unaccount_mem(ctx, ring_pages(ctx->sq_entries, ctx->cq_entries),
8704 ACCT_LOCKED);
Jens Axboe309fc032020-07-10 09:13:34 -06008705
Jens Axboe85faa7b2020-04-09 18:14:00 -06008706 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06008707 /*
8708 * Use system_unbound_wq to avoid spawning tons of event kworkers
8709 * if we're exiting a ton of rings at the same time. It just adds
8710 * noise and overhead, there's no discernable change in runtime
8711 * over using system_wq.
8712 */
8713 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008714}
8715
8716static int io_uring_release(struct inode *inode, struct file *file)
8717{
8718 struct io_ring_ctx *ctx = file->private_data;
8719
8720 file->private_data = NULL;
8721 io_ring_ctx_wait_and_kill(ctx);
8722 return 0;
8723}
8724
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008725struct io_task_cancel {
8726 struct task_struct *task;
8727 struct files_struct *files;
8728};
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008729
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008730static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Jens Axboeb711d4e2020-08-16 08:23:05 -07008731{
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008732 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008733 struct io_task_cancel *cancel = data;
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008734 bool ret;
8735
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008736 if (cancel->files && (req->flags & REQ_F_LINK_TIMEOUT)) {
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008737 unsigned long flags;
8738 struct io_ring_ctx *ctx = req->ctx;
8739
8740 /* protect against races with linked timeouts */
8741 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008742 ret = io_match_task(req, cancel->task, cancel->files);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008743 spin_unlock_irqrestore(&ctx->completion_lock, flags);
8744 } else {
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008745 ret = io_match_task(req, cancel->task, cancel->files);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008746 }
8747 return ret;
Jens Axboeb711d4e2020-08-16 08:23:05 -07008748}
8749
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008750static void io_cancel_defer_files(struct io_ring_ctx *ctx,
Pavel Begunkovef9865a2020-11-05 14:06:19 +00008751 struct task_struct *task,
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008752 struct files_struct *files)
8753{
8754 struct io_defer_entry *de = NULL;
8755 LIST_HEAD(list);
8756
8757 spin_lock_irq(&ctx->completion_lock);
8758 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkov08d23632020-11-06 13:00:22 +00008759 if (io_match_task(de->req, task, files)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008760 list_cut_position(&list, &ctx->defer_list, &de->list);
8761 break;
8762 }
8763 }
8764 spin_unlock_irq(&ctx->completion_lock);
8765
8766 while (!list_empty(&list)) {
8767 de = list_first_entry(&list, struct io_defer_entry, list);
8768 list_del_init(&de->list);
8769 req_set_fail_links(de->req);
8770 io_put_req(de->req);
8771 io_req_complete(de->req, -ECANCELED);
8772 kfree(de);
8773 }
8774}
8775
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008776static void io_uring_cancel_files(struct io_ring_ctx *ctx,
Pavel Begunkovdf9923f2020-11-06 13:00:23 +00008777 struct task_struct *task,
Jens Axboefcb323c2019-10-24 12:39:47 -06008778 struct files_struct *files)
8779{
Jens Axboefcb323c2019-10-24 12:39:47 -06008780 while (!list_empty_careful(&ctx->inflight_list)) {
Pavel Begunkovbee749b2020-11-25 02:19:23 +00008781 struct io_task_cancel cancel = { .task = task, .files = files };
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008782 struct io_kiocb *req;
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008783 DEFINE_WAIT(wait);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008784 bool found = false;
Jens Axboefcb323c2019-10-24 12:39:47 -06008785
8786 spin_lock_irq(&ctx->inflight_lock);
8787 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Pavel Begunkovbee749b2020-11-25 02:19:23 +00008788 if (req->task != task ||
Jens Axboe98447d62020-10-14 10:48:51 -06008789 req->work.identity->files != files)
Jens Axboe768134d2019-11-10 20:30:53 -07008790 continue;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008791 found = true;
Jens Axboe768134d2019-11-10 20:30:53 -07008792 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06008793 }
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008794 if (found)
Pavel Begunkovc98de082020-11-15 12:56:32 +00008795 prepare_to_wait(&task->io_uring->wait, &wait,
8796 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06008797 spin_unlock_irq(&ctx->inflight_lock);
8798
Jens Axboe768134d2019-11-10 20:30:53 -07008799 /* We need to keep going until we don't find a matching req */
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008800 if (!found)
Jens Axboefcb323c2019-10-24 12:39:47 -06008801 break;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008802
8803 io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, &cancel, true);
8804 io_poll_remove_all(ctx, task, files);
8805 io_kill_timeouts(ctx, task, files);
Jens Axboe6200b0a2020-09-13 14:38:30 -06008806 /* cancellations _may_ trigger task work */
8807 io_run_task_work();
Jens Axboefcb323c2019-10-24 12:39:47 -06008808 schedule();
Pavel Begunkovc98de082020-11-15 12:56:32 +00008809 finish_wait(&task->io_uring->wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008810 }
8811}
8812
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008813static void __io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8814 struct task_struct *task)
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008815{
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008816 while (1) {
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008817 struct io_task_cancel cancel = { .task = task, .files = NULL, };
Jens Axboe0f212202020-09-13 13:09:39 -06008818 enum io_wq_cancel cret;
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008819 bool ret = false;
Jens Axboe0f212202020-09-13 13:09:39 -06008820
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00008821 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, &cancel, true);
Jens Axboe0f212202020-09-13 13:09:39 -06008822 if (cret != IO_WQ_CANCEL_NOTFOUND)
8823 ret = true;
8824
8825 /* SQPOLL thread does its own polling */
8826 if (!(ctx->flags & IORING_SETUP_SQPOLL)) {
8827 while (!list_empty_careful(&ctx->iopoll_list)) {
8828 io_iopoll_try_reap_events(ctx);
8829 ret = true;
8830 }
8831 }
8832
Pavel Begunkov6b819282020-11-06 13:00:25 +00008833 ret |= io_poll_remove_all(ctx, task, NULL);
8834 ret |= io_kill_timeouts(ctx, task, NULL);
Pavel Begunkov55583d72020-12-20 13:21:43 +00008835 ret |= io_run_task_work();
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008836 if (!ret)
8837 break;
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008838 cond_resched();
Jens Axboe0f212202020-09-13 13:09:39 -06008839 }
Jens Axboe0f212202020-09-13 13:09:39 -06008840}
8841
8842/*
8843 * We need to iteratively cancel requests, in case a request has dependent
8844 * hard links. These persist even for failure of cancelations, hence keep
8845 * looping until none are found.
8846 */
8847static void io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8848 struct files_struct *files)
8849{
8850 struct task_struct *task = current;
8851
Jens Axboefdaf0832020-10-30 09:37:30 -06008852 if ((ctx->flags & IORING_SETUP_SQPOLL) && ctx->sq_data) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06008853 task = ctx->sq_data->thread;
Jens Axboefdaf0832020-10-30 09:37:30 -06008854 atomic_inc(&task->io_uring->in_idle);
8855 io_sq_thread_park(ctx->sq_data);
8856 }
Jens Axboe0f212202020-09-13 13:09:39 -06008857
Pavel Begunkovdf9923f2020-11-06 13:00:23 +00008858 io_cancel_defer_files(ctx, task, files);
Pavel Begunkov634578f2020-12-06 22:22:44 +00008859 io_ring_submit_lock(ctx, (ctx->flags & IORING_SETUP_IOPOLL));
Jens Axboe0f212202020-09-13 13:09:39 -06008860 io_cqring_overflow_flush(ctx, true, task, files);
Pavel Begunkov634578f2020-12-06 22:22:44 +00008861 io_ring_submit_unlock(ctx, (ctx->flags & IORING_SETUP_IOPOLL));
Jens Axboe0f212202020-09-13 13:09:39 -06008862
Pavel Begunkovb52fda02020-11-06 13:00:24 +00008863 if (!files)
8864 __io_uring_cancel_task_requests(ctx, task);
Pavel Begunkovbee749b2020-11-25 02:19:23 +00008865 else
8866 io_uring_cancel_files(ctx, task, files);
Jens Axboefdaf0832020-10-30 09:37:30 -06008867
8868 if ((ctx->flags & IORING_SETUP_SQPOLL) && ctx->sq_data) {
8869 atomic_dec(&task->io_uring->in_idle);
8870 /*
8871 * If the files that are going away are the ones in the thread
8872 * identity, clear them out.
8873 */
8874 if (task->io_uring->identity->files == files)
8875 task->io_uring->identity->files = NULL;
8876 io_sq_thread_unpark(ctx->sq_data);
8877 }
Jens Axboe0f212202020-09-13 13:09:39 -06008878}
8879
8880/*
8881 * Note that this task has used io_uring. We use it for cancelation purposes.
8882 */
Jens Axboefdaf0832020-10-30 09:37:30 -06008883static int io_uring_add_task_file(struct io_ring_ctx *ctx, struct file *file)
Jens Axboe0f212202020-09-13 13:09:39 -06008884{
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008885 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkova528b042020-12-21 18:34:04 +00008886 int ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008887
8888 if (unlikely(!tctx)) {
Jens Axboe0f212202020-09-13 13:09:39 -06008889 ret = io_uring_alloc_task_context(current);
8890 if (unlikely(ret))
8891 return ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008892 tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06008893 }
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008894 if (tctx->last != file) {
8895 void *old = xa_load(&tctx->xa, (unsigned long)file);
Jens Axboe0f212202020-09-13 13:09:39 -06008896
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008897 if (!old) {
Jens Axboe0f212202020-09-13 13:09:39 -06008898 get_file(file);
Pavel Begunkova528b042020-12-21 18:34:04 +00008899 ret = xa_err(xa_store(&tctx->xa, (unsigned long)file,
8900 file, GFP_KERNEL));
8901 if (ret) {
8902 fput(file);
8903 return ret;
8904 }
Jens Axboe0f212202020-09-13 13:09:39 -06008905 }
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008906 tctx->last = file;
Jens Axboe0f212202020-09-13 13:09:39 -06008907 }
8908
Jens Axboefdaf0832020-10-30 09:37:30 -06008909 /*
8910 * This is race safe in that the task itself is doing this, hence it
8911 * cannot be going through the exit/cancel paths at the same time.
8912 * This cannot be modified while exit/cancel is running.
8913 */
8914 if (!tctx->sqpoll && (ctx->flags & IORING_SETUP_SQPOLL))
8915 tctx->sqpoll = true;
8916
Jens Axboe0f212202020-09-13 13:09:39 -06008917 return 0;
8918}
8919
8920/*
8921 * Remove this io_uring_file -> task mapping.
8922 */
8923static void io_uring_del_task_file(struct file *file)
8924{
8925 struct io_uring_task *tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06008926
8927 if (tctx->last == file)
8928 tctx->last = NULL;
Matthew Wilcox (Oracle)5e2ed8c2020-10-09 13:49:53 +01008929 file = xa_erase(&tctx->xa, (unsigned long)file);
Jens Axboe0f212202020-09-13 13:09:39 -06008930 if (file)
8931 fput(file);
8932}
8933
Jens Axboe0f212202020-09-13 13:09:39 -06008934/*
8935 * Drop task note for this file if we're the only ones that hold it after
8936 * pending fput()
8937 */
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008938static void io_uring_attempt_task_drop(struct file *file)
Jens Axboe0f212202020-09-13 13:09:39 -06008939{
8940 if (!current->io_uring)
8941 return;
8942 /*
8943 * fput() is pending, will be 2 if the only other ref is our potential
8944 * task file note. If the task is exiting, drop regardless of count.
8945 */
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008946 if (fatal_signal_pending(current) || (current->flags & PF_EXITING) ||
8947 atomic_long_read(&file->f_count) == 2)
8948 io_uring_del_task_file(file);
Jens Axboe0f212202020-09-13 13:09:39 -06008949}
8950
8951void __io_uring_files_cancel(struct files_struct *files)
8952{
8953 struct io_uring_task *tctx = current->io_uring;
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008954 struct file *file;
8955 unsigned long index;
Jens Axboe0f212202020-09-13 13:09:39 -06008956
8957 /* make sure overflow events are dropped */
Jens Axboefdaf0832020-10-30 09:37:30 -06008958 atomic_inc(&tctx->in_idle);
Jens Axboe0f212202020-09-13 13:09:39 -06008959
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008960 xa_for_each(&tctx->xa, index, file) {
8961 struct io_ring_ctx *ctx = file->private_data;
Jens Axboe0f212202020-09-13 13:09:39 -06008962
8963 io_uring_cancel_task_requests(ctx, files);
8964 if (files)
8965 io_uring_del_task_file(file);
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01008966 }
Jens Axboefdaf0832020-10-30 09:37:30 -06008967
8968 atomic_dec(&tctx->in_idle);
8969}
8970
8971static s64 tctx_inflight(struct io_uring_task *tctx)
8972{
8973 unsigned long index;
8974 struct file *file;
8975 s64 inflight;
8976
8977 inflight = percpu_counter_sum(&tctx->inflight);
8978 if (!tctx->sqpoll)
8979 return inflight;
8980
8981 /*
8982 * If we have SQPOLL rings, then we need to iterate and find them, and
8983 * add the pending count for those.
8984 */
8985 xa_for_each(&tctx->xa, index, file) {
8986 struct io_ring_ctx *ctx = file->private_data;
8987
8988 if (ctx->flags & IORING_SETUP_SQPOLL) {
8989 struct io_uring_task *__tctx = ctx->sqo_task->io_uring;
8990
8991 inflight += percpu_counter_sum(&__tctx->inflight);
8992 }
8993 }
8994
8995 return inflight;
Jens Axboe0f212202020-09-13 13:09:39 -06008996}
8997
Jens Axboe0f212202020-09-13 13:09:39 -06008998/*
8999 * Find any io_uring fd that this task has registered or done IO on, and cancel
9000 * requests.
9001 */
9002void __io_uring_task_cancel(void)
9003{
9004 struct io_uring_task *tctx = current->io_uring;
9005 DEFINE_WAIT(wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06009006 s64 inflight;
Jens Axboe0f212202020-09-13 13:09:39 -06009007
9008 /* make sure overflow events are dropped */
Jens Axboefdaf0832020-10-30 09:37:30 -06009009 atomic_inc(&tctx->in_idle);
Jens Axboe0f212202020-09-13 13:09:39 -06009010
Jens Axboed8a6df12020-10-15 16:24:45 -06009011 do {
Jens Axboe0f212202020-09-13 13:09:39 -06009012 /* read completions before cancelations */
Jens Axboefdaf0832020-10-30 09:37:30 -06009013 inflight = tctx_inflight(tctx);
Jens Axboed8a6df12020-10-15 16:24:45 -06009014 if (!inflight)
9015 break;
Jens Axboe0f212202020-09-13 13:09:39 -06009016 __io_uring_files_cancel(NULL);
9017
9018 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
9019
9020 /*
9021 * If we've seen completions, retry. This avoids a race where
9022 * a completion comes in before we did prepare_to_wait().
9023 */
Jens Axboefdaf0832020-10-30 09:37:30 -06009024 if (inflight != tctx_inflight(tctx))
Jens Axboe0f212202020-09-13 13:09:39 -06009025 continue;
Jens Axboe0f212202020-09-13 13:09:39 -06009026 schedule();
Pavel Begunkovf57555e2020-12-20 13:21:44 +00009027 finish_wait(&tctx->wait, &wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06009028 } while (1);
Jens Axboe0f212202020-09-13 13:09:39 -06009029
Jens Axboefdaf0832020-10-30 09:37:30 -06009030 atomic_dec(&tctx->in_idle);
Pavel Begunkov44e728b2020-06-15 10:24:04 +03009031}
9032
Jens Axboefcb323c2019-10-24 12:39:47 -06009033static int io_uring_flush(struct file *file, void *data)
9034{
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01009035 io_uring_attempt_task_drop(file);
Jens Axboefcb323c2019-10-24 12:39:47 -06009036 return 0;
9037}
9038
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009039static void *io_uring_validate_mmap_request(struct file *file,
9040 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009041{
Jens Axboe2b188cc2019-01-07 10:46:33 -07009042 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009043 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009044 struct page *page;
9045 void *ptr;
9046
9047 switch (offset) {
9048 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00009049 case IORING_OFF_CQ_RING:
9050 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009051 break;
9052 case IORING_OFF_SQES:
9053 ptr = ctx->sq_sqes;
9054 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009055 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009056 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009057 }
9058
9059 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07009060 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009061 return ERR_PTR(-EINVAL);
9062
9063 return ptr;
9064}
9065
9066#ifdef CONFIG_MMU
9067
9068static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9069{
9070 size_t sz = vma->vm_end - vma->vm_start;
9071 unsigned long pfn;
9072 void *ptr;
9073
9074 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
9075 if (IS_ERR(ptr))
9076 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009077
9078 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
9079 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
9080}
9081
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009082#else /* !CONFIG_MMU */
9083
9084static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9085{
9086 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
9087}
9088
9089static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
9090{
9091 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
9092}
9093
9094static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
9095 unsigned long addr, unsigned long len,
9096 unsigned long pgoff, unsigned long flags)
9097{
9098 void *ptr;
9099
9100 ptr = io_uring_validate_mmap_request(file, pgoff, len);
9101 if (IS_ERR(ptr))
9102 return PTR_ERR(ptr);
9103
9104 return (unsigned long) ptr;
9105}
9106
9107#endif /* !CONFIG_MMU */
9108
Jens Axboe90554202020-09-03 12:12:41 -06009109static void io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
9110{
9111 DEFINE_WAIT(wait);
9112
9113 do {
9114 if (!io_sqring_full(ctx))
9115 break;
9116
9117 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9118
9119 if (!io_sqring_full(ctx))
9120 break;
9121
9122 schedule();
9123 } while (!signal_pending(current));
9124
9125 finish_wait(&ctx->sqo_sq_wait, &wait);
9126}
9127
Hao Xuc73ebb62020-11-03 10:54:37 +08009128static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9129 struct __kernel_timespec __user **ts,
9130 const sigset_t __user **sig)
9131{
9132 struct io_uring_getevents_arg arg;
9133
9134 /*
9135 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9136 * is just a pointer to the sigset_t.
9137 */
9138 if (!(flags & IORING_ENTER_EXT_ARG)) {
9139 *sig = (const sigset_t __user *) argp;
9140 *ts = NULL;
9141 return 0;
9142 }
9143
9144 /*
9145 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9146 * timespec and sigset_t pointers if good.
9147 */
9148 if (*argsz != sizeof(arg))
9149 return -EINVAL;
9150 if (copy_from_user(&arg, argp, sizeof(arg)))
9151 return -EFAULT;
9152 *sig = u64_to_user_ptr(arg.sigmask);
9153 *argsz = arg.sigmask_sz;
9154 *ts = u64_to_user_ptr(arg.ts);
9155 return 0;
9156}
9157
Jens Axboe2b188cc2019-01-07 10:46:33 -07009158SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
Hao Xuc73ebb62020-11-03 10:54:37 +08009159 u32, min_complete, u32, flags, const void __user *, argp,
9160 size_t, argsz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009161{
9162 struct io_ring_ctx *ctx;
9163 long ret = -EBADF;
9164 int submitted = 0;
9165 struct fd f;
9166
Jens Axboe4c6e2772020-07-01 11:29:10 -06009167 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07009168
Jens Axboe90554202020-09-03 12:12:41 -06009169 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
Hao Xuc73ebb62020-11-03 10:54:37 +08009170 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009171 return -EINVAL;
9172
9173 f = fdget(fd);
9174 if (!f.file)
9175 return -EBADF;
9176
9177 ret = -EOPNOTSUPP;
9178 if (f.file->f_op != &io_uring_fops)
9179 goto out_fput;
9180
9181 ret = -ENXIO;
9182 ctx = f.file->private_data;
9183 if (!percpu_ref_tryget(&ctx->refs))
9184 goto out_fput;
9185
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009186 ret = -EBADFD;
9187 if (ctx->flags & IORING_SETUP_R_DISABLED)
9188 goto out;
9189
Jens Axboe6c271ce2019-01-10 11:22:30 -07009190 /*
9191 * For SQ polling, the thread will do all submissions and completions.
9192 * Just return the requested submit count, and wake the thread if
9193 * we were asked to.
9194 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009195 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07009196 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkov89448c42020-12-17 00:24:39 +00009197 if (!list_empty_careful(&ctx->cq_overflow_list)) {
9198 bool needs_lock = ctx->flags & IORING_SETUP_IOPOLL;
9199
9200 io_ring_submit_lock(ctx, needs_lock);
Jens Axboee6c8aa92020-09-28 13:10:13 -06009201 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Pavel Begunkov89448c42020-12-17 00:24:39 +00009202 io_ring_submit_unlock(ctx, needs_lock);
9203 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009204 if (flags & IORING_ENTER_SQ_WAKEUP)
Jens Axboe534ca6d2020-09-02 13:52:19 -06009205 wake_up(&ctx->sq_data->wait);
Jens Axboe90554202020-09-03 12:12:41 -06009206 if (flags & IORING_ENTER_SQ_WAIT)
9207 io_sqpoll_wait_sq(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07009208 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009209 } else if (to_submit) {
Jens Axboefdaf0832020-10-30 09:37:30 -06009210 ret = io_uring_add_task_file(ctx, f.file);
Jens Axboe0f212202020-09-13 13:09:39 -06009211 if (unlikely(ret))
9212 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009213 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009214 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009215 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009216
9217 if (submitted != to_submit)
9218 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009219 }
9220 if (flags & IORING_ENTER_GETEVENTS) {
Hao Xuc73ebb62020-11-03 10:54:37 +08009221 const sigset_t __user *sig;
9222 struct __kernel_timespec __user *ts;
9223
9224 ret = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
9225 if (unlikely(ret))
9226 goto out;
9227
Jens Axboe2b188cc2019-01-07 10:46:33 -07009228 min_complete = min(min_complete, ctx->cq_entries);
9229
Xiaoguang Wang32b22442020-03-11 09:26:09 +08009230 /*
9231 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
9232 * space applications don't need to do io completion events
9233 * polling again, they can rely on io_sq_thread to do polling
9234 * work, which can reduce cpu usage and uring_lock contention.
9235 */
9236 if (ctx->flags & IORING_SETUP_IOPOLL &&
9237 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03009238 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07009239 } else {
Hao Xuc73ebb62020-11-03 10:54:37 +08009240 ret = io_cqring_wait(ctx, min_complete, sig, argsz, ts);
Jens Axboedef596e2019-01-09 08:59:42 -07009241 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009242 }
9243
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009244out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03009245 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009246out_fput:
9247 fdput(f);
9248 return submitted ? submitted : ret;
9249}
9250
Tobias Klauserbebdb652020-02-26 18:38:32 +01009251#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07009252static int io_uring_show_cred(int id, void *p, void *data)
9253{
Jens Axboe6b47ab82020-11-05 09:50:16 -07009254 struct io_identity *iod = p;
9255 const struct cred *cred = iod->creds;
Jens Axboe87ce9552020-01-30 08:25:34 -07009256 struct seq_file *m = data;
9257 struct user_namespace *uns = seq_user_ns(m);
9258 struct group_info *gi;
9259 kernel_cap_t cap;
9260 unsigned __capi;
9261 int g;
9262
9263 seq_printf(m, "%5d\n", id);
9264 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
9265 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
9266 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
9267 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
9268 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
9269 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
9270 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
9271 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
9272 seq_puts(m, "\n\tGroups:\t");
9273 gi = cred->group_info;
9274 for (g = 0; g < gi->ngroups; g++) {
9275 seq_put_decimal_ull(m, g ? " " : "",
9276 from_kgid_munged(uns, gi->gid[g]));
9277 }
9278 seq_puts(m, "\n\tCapEff:\t");
9279 cap = cred->cap_effective;
9280 CAP_FOR_EACH_U32(__capi)
9281 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
9282 seq_putc(m, '\n');
9283 return 0;
9284}
9285
9286static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
9287{
Joseph Qidbbe9c62020-09-29 09:01:22 -06009288 struct io_sq_data *sq = NULL;
Jens Axboefad8e0d2020-09-28 08:57:48 -06009289 bool has_lock;
Jens Axboe87ce9552020-01-30 08:25:34 -07009290 int i;
9291
Jens Axboefad8e0d2020-09-28 08:57:48 -06009292 /*
9293 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
9294 * since fdinfo case grabs it in the opposite direction of normal use
9295 * cases. If we fail to get the lock, we just don't iterate any
9296 * structures that could be going away outside the io_uring mutex.
9297 */
9298 has_lock = mutex_trylock(&ctx->uring_lock);
9299
Joseph Qidbbe9c62020-09-29 09:01:22 -06009300 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL))
9301 sq = ctx->sq_data;
9302
9303 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
9304 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
Jens Axboe87ce9552020-01-30 08:25:34 -07009305 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009306 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009307 struct fixed_file_table *table;
9308 struct file *f;
9309
9310 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
9311 f = table->files[i & IORING_FILE_TABLE_MASK];
9312 if (f)
9313 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
9314 else
9315 seq_printf(m, "%5u: <none>\n", i);
9316 }
9317 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009318 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009319 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
9320
9321 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
9322 (unsigned int) buf->len);
9323 }
Jens Axboefad8e0d2020-09-28 08:57:48 -06009324 if (has_lock && !idr_is_empty(&ctx->personality_idr)) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009325 seq_printf(m, "Personalities:\n");
9326 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
9327 }
Jens Axboed7718a92020-02-14 22:23:12 -07009328 seq_printf(m, "PollList:\n");
9329 spin_lock_irq(&ctx->completion_lock);
9330 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
9331 struct hlist_head *list = &ctx->cancel_hash[i];
9332 struct io_kiocb *req;
9333
9334 hlist_for_each_entry(req, list, hash_node)
9335 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
9336 req->task->task_works != NULL);
9337 }
9338 spin_unlock_irq(&ctx->completion_lock);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009339 if (has_lock)
9340 mutex_unlock(&ctx->uring_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07009341}
9342
9343static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
9344{
9345 struct io_ring_ctx *ctx = f->private_data;
9346
9347 if (percpu_ref_tryget(&ctx->refs)) {
9348 __io_uring_show_fdinfo(ctx, m);
9349 percpu_ref_put(&ctx->refs);
9350 }
9351}
Tobias Klauserbebdb652020-02-26 18:38:32 +01009352#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07009353
Jens Axboe2b188cc2019-01-07 10:46:33 -07009354static const struct file_operations io_uring_fops = {
9355 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06009356 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009357 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009358#ifndef CONFIG_MMU
9359 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
9360 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
9361#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07009362 .poll = io_uring_poll,
9363 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01009364#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07009365 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01009366#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07009367};
9368
9369static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
9370 struct io_uring_params *p)
9371{
Hristo Venev75b28af2019-08-26 17:23:46 +00009372 struct io_rings *rings;
9373 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009374
Jens Axboebd740482020-08-05 12:58:23 -06009375 /* make sure these are sane, as we already accounted them */
9376 ctx->sq_entries = p->sq_entries;
9377 ctx->cq_entries = p->cq_entries;
9378
Hristo Venev75b28af2019-08-26 17:23:46 +00009379 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
9380 if (size == SIZE_MAX)
9381 return -EOVERFLOW;
9382
9383 rings = io_mem_alloc(size);
9384 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009385 return -ENOMEM;
9386
Hristo Venev75b28af2019-08-26 17:23:46 +00009387 ctx->rings = rings;
9388 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
9389 rings->sq_ring_mask = p->sq_entries - 1;
9390 rings->cq_ring_mask = p->cq_entries - 1;
9391 rings->sq_ring_entries = p->sq_entries;
9392 rings->cq_ring_entries = p->cq_entries;
9393 ctx->sq_mask = rings->sq_ring_mask;
9394 ctx->cq_mask = rings->cq_ring_mask;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009395
9396 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07009397 if (size == SIZE_MAX) {
9398 io_mem_free(ctx->rings);
9399 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009400 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07009401 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009402
9403 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07009404 if (!ctx->sq_sqes) {
9405 io_mem_free(ctx->rings);
9406 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009407 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07009408 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009409
Jens Axboe2b188cc2019-01-07 10:46:33 -07009410 return 0;
9411}
9412
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009413static int io_uring_install_fd(struct io_ring_ctx *ctx, struct file *file)
9414{
9415 int ret, fd;
9416
9417 fd = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
9418 if (fd < 0)
9419 return fd;
9420
9421 ret = io_uring_add_task_file(ctx, file);
9422 if (ret) {
9423 put_unused_fd(fd);
9424 return ret;
9425 }
9426 fd_install(fd, file);
9427 return fd;
9428}
9429
Jens Axboe2b188cc2019-01-07 10:46:33 -07009430/*
9431 * Allocate an anonymous fd, this is what constitutes the application
9432 * visible backing of an io_uring instance. The application mmaps this
9433 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
9434 * we have to tie this fd to a socket for file garbage collection purposes.
9435 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009436static struct file *io_uring_get_file(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009437{
9438 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009439#if defined(CONFIG_UNIX)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009440 int ret;
9441
Jens Axboe2b188cc2019-01-07 10:46:33 -07009442 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
9443 &ctx->ring_sock);
9444 if (ret)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009445 return ERR_PTR(ret);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009446#endif
9447
Jens Axboe2b188cc2019-01-07 10:46:33 -07009448 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
9449 O_RDWR | O_CLOEXEC);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009450#if defined(CONFIG_UNIX)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009451 if (IS_ERR(file)) {
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009452 sock_release(ctx->ring_sock);
9453 ctx->ring_sock = NULL;
9454 } else {
9455 ctx->ring_sock->file = file;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009456 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009457#endif
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009458 return file;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009459}
9460
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009461static int io_uring_create(unsigned entries, struct io_uring_params *p,
9462 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009463{
9464 struct user_struct *user = NULL;
9465 struct io_ring_ctx *ctx;
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009466 struct file *file;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009467 bool limit_mem;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009468 int ret;
9469
Jens Axboe8110c1a2019-12-28 15:39:54 -07009470 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009471 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07009472 if (entries > IORING_MAX_ENTRIES) {
9473 if (!(p->flags & IORING_SETUP_CLAMP))
9474 return -EINVAL;
9475 entries = IORING_MAX_ENTRIES;
9476 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009477
9478 /*
9479 * Use twice as many entries for the CQ ring. It's possible for the
9480 * application to drive a higher depth than the size of the SQ ring,
9481 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06009482 * some flexibility in overcommitting a bit. If the application has
9483 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
9484 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07009485 */
9486 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06009487 if (p->flags & IORING_SETUP_CQSIZE) {
9488 /*
9489 * If IORING_SETUP_CQSIZE is set, we do the same roundup
9490 * to a power-of-two, if it isn't already. We do NOT impose
9491 * any cq vs sq ring sizing.
9492 */
Joseph Qieb2667b32020-11-24 15:03:03 +08009493 if (!p->cq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06009494 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07009495 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
9496 if (!(p->flags & IORING_SETUP_CLAMP))
9497 return -EINVAL;
9498 p->cq_entries = IORING_MAX_CQ_ENTRIES;
9499 }
Joseph Qieb2667b32020-11-24 15:03:03 +08009500 p->cq_entries = roundup_pow_of_two(p->cq_entries);
9501 if (p->cq_entries < p->sq_entries)
9502 return -EINVAL;
Jens Axboe33a107f2019-10-04 12:10:03 -06009503 } else {
9504 p->cq_entries = 2 * p->sq_entries;
9505 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009506
9507 user = get_uid(current_user());
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009508 limit_mem = !capable(CAP_IPC_LOCK);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009509
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009510 if (limit_mem) {
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07009511 ret = __io_account_mem(user,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009512 ring_pages(p->sq_entries, p->cq_entries));
9513 if (ret) {
9514 free_uid(user);
9515 return ret;
9516 }
9517 }
9518
9519 ctx = io_ring_ctx_alloc(p);
9520 if (!ctx) {
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009521 if (limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07009522 __io_unaccount_mem(user, ring_pages(p->sq_entries,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009523 p->cq_entries));
9524 free_uid(user);
9525 return -ENOMEM;
9526 }
9527 ctx->compat = in_compat_syscall();
Jens Axboe2b188cc2019-01-07 10:46:33 -07009528 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07009529 ctx->creds = get_current_cred();
Jens Axboe4ea33a92020-10-15 13:46:44 -06009530#ifdef CONFIG_AUDIT
9531 ctx->loginuid = current->loginuid;
9532 ctx->sessionid = current->sessionid;
9533#endif
Jens Axboe2aede0e2020-09-14 10:45:53 -06009534 ctx->sqo_task = get_task_struct(current);
9535
9536 /*
9537 * This is just grabbed for accounting purposes. When a process exits,
9538 * the mm is exited and dropped before the files, hence we need to hang
9539 * on to this mm purely for the purposes of being able to unaccount
9540 * memory (locked/pinned vm). It's not used for anything else.
9541 */
Jens Axboe6b7898e2020-08-25 07:58:00 -06009542 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -06009543 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -06009544
Dennis Zhou91d8f512020-09-16 13:41:05 -07009545#ifdef CONFIG_BLK_CGROUP
9546 /*
9547 * The sq thread will belong to the original cgroup it was inited in.
9548 * If the cgroup goes offline (e.g. disabling the io controller), then
9549 * issued bios will be associated with the closest cgroup later in the
9550 * block layer.
9551 */
9552 rcu_read_lock();
9553 ctx->sqo_blkcg_css = blkcg_css();
9554 ret = css_tryget_online(ctx->sqo_blkcg_css);
9555 rcu_read_unlock();
9556 if (!ret) {
9557 /* don't init against a dying cgroup, have the user try again */
9558 ctx->sqo_blkcg_css = NULL;
9559 ret = -ENODEV;
9560 goto err;
9561 }
9562#endif
Jens Axboe6c271ce2019-01-10 11:22:30 -07009563
Jens Axboe2b188cc2019-01-07 10:46:33 -07009564 /*
9565 * Account memory _before_ installing the file descriptor. Once
9566 * the descriptor is installed, it can get closed at any time. Also
Jens Axboe2b188cc2019-01-07 10:46:33 -07009567 * do this before hitting the general error path, as ring freeing
Hristo Venev75b28af2019-08-26 17:23:46 +00009568 * will un-account as well.
9569 */
9570 io_account_mem(ctx, ring_pages(p->sq_entries, p->cq_entries),
9571 ACCT_LOCKED);
9572 ctx->limit_mem = limit_mem;
9573
9574 ret = io_allocate_scq_urings(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009575 if (ret)
9576 goto err;
Hristo Venev75b28af2019-08-26 17:23:46 +00009577
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009578 ret = io_sq_offload_create(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009579 if (ret)
9580 goto err;
9581
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009582 if (!(p->flags & IORING_SETUP_R_DISABLED))
9583 io_sq_offload_start(ctx);
9584
Jens Axboe2b188cc2019-01-07 10:46:33 -07009585 memset(&p->sq_off, 0, sizeof(p->sq_off));
9586 p->sq_off.head = offsetof(struct io_rings, sq.head);
9587 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
9588 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
9589 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
9590 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
9591 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
9592 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
9593
9594 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00009595 p->cq_off.head = offsetof(struct io_rings, cq.head);
9596 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
9597 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
9598 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
9599 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
9600 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +02009601 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -06009602
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009603 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
9604 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +08009605 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
Hao Xuc73ebb62020-11-03 10:54:37 +08009606 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
9607 IORING_FEAT_EXT_ARG;
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009608
9609 if (copy_to_user(params, p, sizeof(*p))) {
9610 ret = -EFAULT;
9611 goto err;
9612 }
Jens Axboed1719f72020-07-30 13:43:53 -06009613
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009614 file = io_uring_get_file(ctx);
9615 if (IS_ERR(file)) {
9616 ret = PTR_ERR(file);
9617 goto err;
9618 }
9619
Jens Axboed1719f72020-07-30 13:43:53 -06009620 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -06009621 * Install ring fd as the very last thing, so we don't risk someone
9622 * having closed it before we finish setup
9623 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +00009624 ret = io_uring_install_fd(ctx, file);
9625 if (ret < 0) {
9626 /* fput will clean it up */
9627 fput(file);
9628 return ret;
9629 }
Jens Axboe044c1ab2019-10-28 09:15:33 -06009630
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02009631 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009632 return ret;
9633err:
9634 io_ring_ctx_wait_and_kill(ctx);
9635 return ret;
9636}
9637
9638/*
9639 * Sets up an aio uring context, and returns the fd. Applications asks for a
9640 * ring size, we return the actual sq/cq ring sizes (among other things) in the
9641 * params structure passed in.
9642 */
9643static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
9644{
9645 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009646 int i;
9647
9648 if (copy_from_user(&p, params, sizeof(p)))
9649 return -EFAULT;
9650 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
9651 if (p.resv[i])
9652 return -EINVAL;
9653 }
9654
Jens Axboe6c271ce2019-01-10 11:22:30 -07009655 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07009656 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009657 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
9658 IORING_SETUP_R_DISABLED))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009659 return -EINVAL;
9660
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009661 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009662}
9663
9664SYSCALL_DEFINE2(io_uring_setup, u32, entries,
9665 struct io_uring_params __user *, params)
9666{
9667 return io_uring_setup(entries, params);
9668}
9669
Jens Axboe66f4af92020-01-16 15:36:52 -07009670static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
9671{
9672 struct io_uring_probe *p;
9673 size_t size;
9674 int i, ret;
9675
9676 size = struct_size(p, ops, nr_args);
9677 if (size == SIZE_MAX)
9678 return -EOVERFLOW;
9679 p = kzalloc(size, GFP_KERNEL);
9680 if (!p)
9681 return -ENOMEM;
9682
9683 ret = -EFAULT;
9684 if (copy_from_user(p, arg, size))
9685 goto out;
9686 ret = -EINVAL;
9687 if (memchr_inv(p, 0, size))
9688 goto out;
9689
9690 p->last_op = IORING_OP_LAST - 1;
9691 if (nr_args > IORING_OP_LAST)
9692 nr_args = IORING_OP_LAST;
9693
9694 for (i = 0; i < nr_args; i++) {
9695 p->ops[i].op = i;
9696 if (!io_op_defs[i].not_supported)
9697 p->ops[i].flags = IO_URING_OP_SUPPORTED;
9698 }
9699 p->ops_len = i;
9700
9701 ret = 0;
9702 if (copy_to_user(arg, p, size))
9703 ret = -EFAULT;
9704out:
9705 kfree(p);
9706 return ret;
9707}
9708
Jens Axboe071698e2020-01-28 10:04:42 -07009709static int io_register_personality(struct io_ring_ctx *ctx)
9710{
Jens Axboe1e6fa522020-10-15 08:46:24 -06009711 struct io_identity *id;
9712 int ret;
Jens Axboe071698e2020-01-28 10:04:42 -07009713
Jens Axboe1e6fa522020-10-15 08:46:24 -06009714 id = kmalloc(sizeof(*id), GFP_KERNEL);
9715 if (unlikely(!id))
9716 return -ENOMEM;
9717
9718 io_init_identity(id);
9719 id->creds = get_current_cred();
9720
9721 ret = idr_alloc_cyclic(&ctx->personality_idr, id, 1, USHRT_MAX, GFP_KERNEL);
9722 if (ret < 0) {
9723 put_cred(id->creds);
9724 kfree(id);
9725 }
9726 return ret;
Jens Axboe071698e2020-01-28 10:04:42 -07009727}
9728
9729static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
9730{
Jens Axboe1e6fa522020-10-15 08:46:24 -06009731 struct io_identity *iod;
Jens Axboe071698e2020-01-28 10:04:42 -07009732
Jens Axboe1e6fa522020-10-15 08:46:24 -06009733 iod = idr_remove(&ctx->personality_idr, id);
9734 if (iod) {
9735 put_cred(iod->creds);
9736 if (refcount_dec_and_test(&iod->count))
9737 kfree(iod);
Jens Axboe071698e2020-01-28 10:04:42 -07009738 return 0;
9739 }
9740
9741 return -EINVAL;
9742}
9743
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009744static int io_register_restrictions(struct io_ring_ctx *ctx, void __user *arg,
9745 unsigned int nr_args)
9746{
9747 struct io_uring_restriction *res;
9748 size_t size;
9749 int i, ret;
9750
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009751 /* Restrictions allowed only if rings started disabled */
9752 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
9753 return -EBADFD;
9754
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009755 /* We allow only a single restrictions registration */
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009756 if (ctx->restrictions.registered)
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009757 return -EBUSY;
9758
9759 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
9760 return -EINVAL;
9761
9762 size = array_size(nr_args, sizeof(*res));
9763 if (size == SIZE_MAX)
9764 return -EOVERFLOW;
9765
9766 res = memdup_user(arg, size);
9767 if (IS_ERR(res))
9768 return PTR_ERR(res);
9769
9770 ret = 0;
9771
9772 for (i = 0; i < nr_args; i++) {
9773 switch (res[i].opcode) {
9774 case IORING_RESTRICTION_REGISTER_OP:
9775 if (res[i].register_op >= IORING_REGISTER_LAST) {
9776 ret = -EINVAL;
9777 goto out;
9778 }
9779
9780 __set_bit(res[i].register_op,
9781 ctx->restrictions.register_op);
9782 break;
9783 case IORING_RESTRICTION_SQE_OP:
9784 if (res[i].sqe_op >= IORING_OP_LAST) {
9785 ret = -EINVAL;
9786 goto out;
9787 }
9788
9789 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
9790 break;
9791 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
9792 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
9793 break;
9794 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
9795 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
9796 break;
9797 default:
9798 ret = -EINVAL;
9799 goto out;
9800 }
9801 }
9802
9803out:
9804 /* Reset all restrictions if an error happened */
9805 if (ret != 0)
9806 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
9807 else
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009808 ctx->restrictions.registered = true;
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009809
9810 kfree(res);
9811 return ret;
9812}
9813
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009814static int io_register_enable_rings(struct io_ring_ctx *ctx)
9815{
9816 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
9817 return -EBADFD;
9818
9819 if (ctx->restrictions.registered)
9820 ctx->restricted = 1;
9821
9822 ctx->flags &= ~IORING_SETUP_R_DISABLED;
9823
9824 io_sq_offload_start(ctx);
9825
9826 return 0;
9827}
9828
Jens Axboe071698e2020-01-28 10:04:42 -07009829static bool io_register_op_must_quiesce(int op)
9830{
9831 switch (op) {
9832 case IORING_UNREGISTER_FILES:
9833 case IORING_REGISTER_FILES_UPDATE:
9834 case IORING_REGISTER_PROBE:
9835 case IORING_REGISTER_PERSONALITY:
9836 case IORING_UNREGISTER_PERSONALITY:
9837 return false;
9838 default:
9839 return true;
9840 }
9841}
9842
Jens Axboeedafcce2019-01-09 09:16:05 -07009843static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
9844 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06009845 __releases(ctx->uring_lock)
9846 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07009847{
9848 int ret;
9849
Jens Axboe35fa71a2019-04-22 10:23:23 -06009850 /*
9851 * We're inside the ring mutex, if the ref is already dying, then
9852 * someone else killed the ctx or is already going through
9853 * io_uring_register().
9854 */
9855 if (percpu_ref_is_dying(&ctx->refs))
9856 return -ENXIO;
9857
Jens Axboe071698e2020-01-28 10:04:42 -07009858 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009859 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06009860
Jens Axboe05f3fb32019-12-09 11:22:50 -07009861 /*
9862 * Drop uring mutex before waiting for references to exit. If
9863 * another thread is currently inside io_uring_enter() it might
9864 * need to grab the uring_lock to make progress. If we hold it
9865 * here across the drain wait, then we can deadlock. It's safe
9866 * to drop the mutex here, since no new references will come in
9867 * after we've killed the percpu ref.
9868 */
9869 mutex_unlock(&ctx->uring_lock);
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009870 do {
9871 ret = wait_for_completion_interruptible(&ctx->ref_comp);
9872 if (!ret)
9873 break;
Jens Axboeed6930c2020-10-08 19:09:46 -06009874 ret = io_run_task_work_sig();
9875 if (ret < 0)
9876 break;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009877 } while (1);
9878
Jens Axboe05f3fb32019-12-09 11:22:50 -07009879 mutex_lock(&ctx->uring_lock);
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009880
Jens Axboec1503682020-01-08 08:26:07 -07009881 if (ret) {
9882 percpu_ref_resurrect(&ctx->refs);
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009883 goto out_quiesce;
9884 }
9885 }
9886
9887 if (ctx->restricted) {
9888 if (opcode >= IORING_REGISTER_LAST) {
9889 ret = -EINVAL;
9890 goto out;
9891 }
9892
9893 if (!test_bit(opcode, ctx->restrictions.register_op)) {
9894 ret = -EACCES;
Jens Axboec1503682020-01-08 08:26:07 -07009895 goto out;
9896 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07009897 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009898
9899 switch (opcode) {
9900 case IORING_REGISTER_BUFFERS:
9901 ret = io_sqe_buffer_register(ctx, arg, nr_args);
9902 break;
9903 case IORING_UNREGISTER_BUFFERS:
9904 ret = -EINVAL;
9905 if (arg || nr_args)
9906 break;
9907 ret = io_sqe_buffer_unregister(ctx);
9908 break;
Jens Axboe6b063142019-01-10 22:13:58 -07009909 case IORING_REGISTER_FILES:
9910 ret = io_sqe_files_register(ctx, arg, nr_args);
9911 break;
9912 case IORING_UNREGISTER_FILES:
9913 ret = -EINVAL;
9914 if (arg || nr_args)
9915 break;
9916 ret = io_sqe_files_unregister(ctx);
9917 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06009918 case IORING_REGISTER_FILES_UPDATE:
9919 ret = io_sqe_files_update(ctx, arg, nr_args);
9920 break;
Jens Axboe9b402842019-04-11 11:45:41 -06009921 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07009922 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06009923 ret = -EINVAL;
9924 if (nr_args != 1)
9925 break;
9926 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07009927 if (ret)
9928 break;
9929 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
9930 ctx->eventfd_async = 1;
9931 else
9932 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06009933 break;
9934 case IORING_UNREGISTER_EVENTFD:
9935 ret = -EINVAL;
9936 if (arg || nr_args)
9937 break;
9938 ret = io_eventfd_unregister(ctx);
9939 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07009940 case IORING_REGISTER_PROBE:
9941 ret = -EINVAL;
9942 if (!arg || nr_args > 256)
9943 break;
9944 ret = io_probe(ctx, arg, nr_args);
9945 break;
Jens Axboe071698e2020-01-28 10:04:42 -07009946 case IORING_REGISTER_PERSONALITY:
9947 ret = -EINVAL;
9948 if (arg || nr_args)
9949 break;
9950 ret = io_register_personality(ctx);
9951 break;
9952 case IORING_UNREGISTER_PERSONALITY:
9953 ret = -EINVAL;
9954 if (arg)
9955 break;
9956 ret = io_unregister_personality(ctx, nr_args);
9957 break;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009958 case IORING_REGISTER_ENABLE_RINGS:
9959 ret = -EINVAL;
9960 if (arg || nr_args)
9961 break;
9962 ret = io_register_enable_rings(ctx);
9963 break;
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009964 case IORING_REGISTER_RESTRICTIONS:
9965 ret = io_register_restrictions(ctx, arg, nr_args);
9966 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009967 default:
9968 ret = -EINVAL;
9969 break;
9970 }
9971
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009972out:
Jens Axboe071698e2020-01-28 10:04:42 -07009973 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009974 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07009975 percpu_ref_reinit(&ctx->refs);
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009976out_quiesce:
Jens Axboe0f158b42020-05-14 17:18:39 -06009977 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07009978 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009979 return ret;
9980}
9981
9982SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
9983 void __user *, arg, unsigned int, nr_args)
9984{
9985 struct io_ring_ctx *ctx;
9986 long ret = -EBADF;
9987 struct fd f;
9988
9989 f = fdget(fd);
9990 if (!f.file)
9991 return -EBADF;
9992
9993 ret = -EOPNOTSUPP;
9994 if (f.file->f_op != &io_uring_fops)
9995 goto out_fput;
9996
9997 ctx = f.file->private_data;
9998
9999 mutex_lock(&ctx->uring_lock);
10000 ret = __io_uring_register(ctx, opcode, arg, nr_args);
10001 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010002 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
10003 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -070010004out_fput:
10005 fdput(f);
10006 return ret;
10007}
10008
Jens Axboe2b188cc2019-01-07 10:46:33 -070010009static int __init io_uring_init(void)
10010{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010011#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
10012 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
10013 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
10014} while (0)
10015
10016#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
10017 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
10018 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
10019 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
10020 BUILD_BUG_SQE_ELEM(1, __u8, flags);
10021 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
10022 BUILD_BUG_SQE_ELEM(4, __s32, fd);
10023 BUILD_BUG_SQE_ELEM(8, __u64, off);
10024 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
10025 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010026 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010027 BUILD_BUG_SQE_ELEM(24, __u32, len);
10028 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
10029 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
10030 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
10031 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +080010032 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
10033 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010034 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
10035 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
10036 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
10037 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
10038 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
10039 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
10040 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
10041 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010042 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010043 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
10044 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
10045 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010046 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010047
Jens Axboed3656342019-12-18 09:50:26 -070010048 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -070010049 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -070010050 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
10051 return 0;
10052};
10053__initcall(io_uring_init);