blob: 12a213b147c0c3ad94144735fd2d30d993ae4bbf [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;
248};
249
Jens Axboe2b188cc2019-01-07 10:46:33 -0700250struct io_ring_ctx {
251 struct {
252 struct percpu_ref refs;
253 } ____cacheline_aligned_in_smp;
254
255 struct {
256 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800257 unsigned int compat: 1;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -0700258 unsigned int limit_mem: 1;
Randy Dunlape1d85332020-02-05 20:57:10 -0800259 unsigned int cq_overflow_flushed: 1;
260 unsigned int drain_next: 1;
261 unsigned int eventfd_async: 1;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200262 unsigned int restricted: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700263
Hristo Venev75b28af2019-08-26 17:23:46 +0000264 /*
265 * Ring buffer of indices into array of io_uring_sqe, which is
266 * mmapped by the application using the IORING_OFF_SQES offset.
267 *
268 * This indirection could e.g. be used to assign fixed
269 * io_uring_sqe entries to operations and only submit them to
270 * the queue when needed.
271 *
272 * The kernel modifies neither the indices array nor the entries
273 * array.
274 */
275 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700276 unsigned cached_sq_head;
277 unsigned sq_entries;
278 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700279 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600280 unsigned cached_sq_dropped;
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +0100281 unsigned cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700282 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600283
284 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600285 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700286 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700287
Jens Axboefcb323c2019-10-24 12:39:47 -0600288 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700289 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700290 } ____cacheline_aligned_in_smp;
291
Hristo Venev75b28af2019-08-26 17:23:46 +0000292 struct io_rings *rings;
293
Jens Axboe2b188cc2019-01-07 10:46:33 -0700294 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600295 struct io_wq *io_wq;
Jens Axboe2aede0e2020-09-14 10:45:53 -0600296
297 /*
298 * For SQPOLL usage - we hold a reference to the parent task, so we
299 * have access to the ->files
300 */
301 struct task_struct *sqo_task;
302
303 /* Only used for accounting purposes */
304 struct mm_struct *mm_account;
305
Dennis Zhou91d8f512020-09-16 13:41:05 -0700306#ifdef CONFIG_BLK_CGROUP
307 struct cgroup_subsys_state *sqo_blkcg_css;
308#endif
309
Jens Axboe534ca6d2020-09-02 13:52:19 -0600310 struct io_sq_data *sq_data; /* if using sq thread polling */
311
Jens Axboe90554202020-09-03 12:12:41 -0600312 struct wait_queue_head sqo_sq_wait;
Jens Axboe6a779382020-09-02 12:21:41 -0600313 struct wait_queue_entry sqo_wait_entry;
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;
456};
457
Jens Axboe9adbd452019-12-20 08:45:55 -0700458struct io_rw {
459 /* NOTE: kiocb has the file as the first member, so don't do it here */
460 struct kiocb kiocb;
461 u64 addr;
462 u64 len;
463};
464
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700465struct io_connect {
466 struct file *file;
467 struct sockaddr __user *addr;
468 int addr_len;
469};
470
Jens Axboee47293f2019-12-20 08:58:21 -0700471struct io_sr_msg {
472 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700473 union {
Pavel Begunkov270a5942020-07-12 20:41:04 +0300474 struct user_msghdr __user *umsg;
Jens Axboefddafac2020-01-04 20:19:44 -0700475 void __user *buf;
476 };
Jens Axboee47293f2019-12-20 08:58:21 -0700477 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700478 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700479 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700480 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700481};
482
Jens Axboe15b71ab2019-12-11 11:20:36 -0700483struct io_open {
484 struct file *file;
485 int dfd;
Jens Axboe944d1442020-11-13 16:48:44 -0700486 bool ignore_nonblock;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700487 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700488 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600489 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700490};
491
Jens Axboe05f3fb32019-12-09 11:22:50 -0700492struct io_files_update {
493 struct file *file;
494 u64 arg;
495 u32 nr_args;
496 u32 offset;
497};
498
Jens Axboe4840e412019-12-25 22:03:45 -0700499struct io_fadvise {
500 struct file *file;
501 u64 offset;
502 u32 len;
503 u32 advice;
504};
505
Jens Axboec1ca7572019-12-25 22:18:28 -0700506struct io_madvise {
507 struct file *file;
508 u64 addr;
509 u32 len;
510 u32 advice;
511};
512
Jens Axboe3e4827b2020-01-08 15:18:09 -0700513struct io_epoll {
514 struct file *file;
515 int epfd;
516 int op;
517 int fd;
518 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700519};
520
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300521struct io_splice {
522 struct file *file_out;
523 struct file *file_in;
524 loff_t off_out;
525 loff_t off_in;
526 u64 len;
527 unsigned int flags;
528};
529
Jens Axboeddf0322d2020-02-23 16:41:33 -0700530struct io_provide_buf {
531 struct file *file;
532 __u64 addr;
533 __s32 len;
534 __u32 bgid;
535 __u16 nbufs;
536 __u16 bid;
537};
538
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700539struct io_statx {
540 struct file *file;
541 int dfd;
542 unsigned int mask;
543 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700544 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700545 struct statx __user *buffer;
546};
547
Jens Axboe36f4fa62020-09-05 11:14:22 -0600548struct io_shutdown {
549 struct file *file;
550 int how;
551};
552
Jens Axboe80a261f2020-09-28 14:23:58 -0600553struct io_rename {
554 struct file *file;
555 int old_dfd;
556 int new_dfd;
557 struct filename *oldpath;
558 struct filename *newpath;
559 int flags;
560};
561
Jens Axboe14a11432020-09-28 14:27:37 -0600562struct io_unlink {
563 struct file *file;
564 int dfd;
565 int flags;
566 struct filename *filename;
567};
568
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300569struct io_completion {
570 struct file *file;
571 struct list_head list;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +0300572 int cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300573};
574
Jens Axboef499a022019-12-02 16:28:46 -0700575struct io_async_connect {
576 struct sockaddr_storage address;
577};
578
Jens Axboe03b12302019-12-02 18:50:25 -0700579struct io_async_msghdr {
580 struct iovec fast_iov[UIO_FASTIOV];
581 struct iovec *iov;
582 struct sockaddr __user *uaddr;
583 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700584 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700585};
586
Jens Axboef67676d2019-12-02 11:03:47 -0700587struct io_async_rw {
588 struct iovec fast_iov[UIO_FASTIOV];
Jens Axboeff6165b2020-08-13 09:47:43 -0600589 const struct iovec *free_iovec;
590 struct iov_iter iter;
Jens Axboe227c0c92020-08-13 11:51:40 -0600591 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600592 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700593};
594
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300595enum {
596 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
597 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
598 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
599 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
600 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700601 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300602
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300603 REQ_F_FAIL_LINK_BIT,
604 REQ_F_INFLIGHT_BIT,
605 REQ_F_CUR_POS_BIT,
606 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300607 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300608 REQ_F_ISREG_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300609 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700610 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700611 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600612 REQ_F_NO_FILE_TABLE_BIT,
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800613 REQ_F_WORK_INITIALIZED_BIT,
Pavel Begunkov900fad42020-10-19 16:39:16 +0100614 REQ_F_LTIMEOUT_ACTIVE_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700615
616 /* not a real bit, just to check we're not overflowing the space */
617 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300618};
619
620enum {
621 /* ctx owns file */
622 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
623 /* drain existing IO first */
624 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
625 /* linked sqes */
626 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
627 /* doesn't sever on completion < 0 */
628 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
629 /* IOSQE_ASYNC */
630 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700631 /* IOSQE_BUFFER_SELECT */
632 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300633
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300634 /* fail rest of links */
635 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
636 /* on inflight list */
637 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
638 /* read/write uses file position */
639 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
640 /* must not punt to workers */
641 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100642 /* has or had linked timeout */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300643 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300644 /* regular file */
645 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300646 /* needs cleanup */
647 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700648 /* already went through poll handler */
649 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700650 /* buffer already selected */
651 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600652 /* doesn't need file table for this request */
653 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800654 /* io_wq_work is initialized */
655 REQ_F_WORK_INITIALIZED = BIT(REQ_F_WORK_INITIALIZED_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100656 /* linked timeout is active, i.e. prepared by link's head */
657 REQ_F_LTIMEOUT_ACTIVE = BIT(REQ_F_LTIMEOUT_ACTIVE_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700658};
659
660struct async_poll {
661 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600662 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300663};
664
Jens Axboe09bb8392019-03-13 12:39:28 -0600665/*
666 * NOTE! Each of the iocb union members has the file pointer
667 * as the first entry in their struct definition. So you can
668 * access the file pointer through any of the sub-structs,
669 * or directly as just 'ki_filp' in this struct.
670 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700671struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700672 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600673 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700674 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700675 struct io_poll_iocb poll;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000676 struct io_poll_remove poll_remove;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700677 struct io_accept accept;
678 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700679 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700680 struct io_timeout timeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100681 struct io_timeout_rem timeout_rem;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700682 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700683 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700684 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700685 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700686 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700687 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700688 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700689 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300690 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700691 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700692 struct io_statx statx;
Jens Axboe36f4fa62020-09-05 11:14:22 -0600693 struct io_shutdown shutdown;
Jens Axboe80a261f2020-09-28 14:23:58 -0600694 struct io_rename rename;
Jens Axboe14a11432020-09-28 14:27:37 -0600695 struct io_unlink unlink;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300696 /* use only after cleaning per-op data, see io_clean_op() */
697 struct io_completion compl;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700698 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700699
Jens Axboee8c2bc12020-08-15 18:44:09 -0700700 /* opcode allocated if it needs to store data for async defer */
701 void *async_data;
Jens Axboed625c6e2019-12-17 19:53:05 -0700702 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800703 /* polled IO has completed */
704 u8 iopoll_completed;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700705
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700706 u16 buf_index;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300707 u32 result;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700708
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300709 struct io_ring_ctx *ctx;
710 unsigned int flags;
711 refcount_t refs;
712 struct task_struct *task;
713 u64 user_data;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700714
Pavel Begunkovf2f87372020-10-27 23:25:37 +0000715 struct io_kiocb *link;
Pavel Begunkov04157672020-10-27 23:25:38 +0000716 struct percpu_ref *fixed_file_refs;
Jens Axboed7718a92020-02-14 22:23:12 -0700717
Pavel Begunkovd21ffe72020-07-13 23:37:10 +0300718 /*
719 * 1. used with ctx->iopoll_list with reads/writes
720 * 2. to track reqs with ->files (see io_op_def::file_table)
721 */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300722 struct list_head inflight_entry;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300723 struct callback_head task_work;
724 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
725 struct hlist_node hash_node;
726 struct async_poll *apoll;
727 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700728};
729
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300730struct io_defer_entry {
731 struct list_head list;
732 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300733 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300734};
735
Jens Axboedef596e2019-01-09 08:59:42 -0700736#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700737
Jens Axboe013538b2020-06-22 09:29:15 -0600738struct io_comp_state {
739 unsigned int nr;
740 struct list_head list;
741 struct io_ring_ctx *ctx;
742};
743
Jens Axboe9a56a232019-01-09 09:06:50 -0700744struct io_submit_state {
745 struct blk_plug plug;
746
747 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700748 * io_kiocb alloc cache
749 */
750 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300751 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700752
Jens Axboe27926b62020-10-28 09:33:23 -0600753 bool plug_started;
754
Jens Axboe2579f912019-01-09 09:10:43 -0700755 /*
Jens Axboe013538b2020-06-22 09:29:15 -0600756 * Batch completion logic
757 */
758 struct io_comp_state comp;
759
760 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700761 * File reference cache
762 */
763 struct file *file;
764 unsigned int fd;
765 unsigned int has_refs;
Jens Axboe9a56a232019-01-09 09:06:50 -0700766 unsigned int ios_left;
767};
768
Jens Axboed3656342019-12-18 09:50:26 -0700769struct io_op_def {
Jens Axboed3656342019-12-18 09:50:26 -0700770 /* needs req->file assigned */
771 unsigned needs_file : 1;
Jens Axboefd2206e2020-06-02 16:40:47 -0600772 /* don't fail if file grab fails */
773 unsigned needs_file_no_error : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700774 /* hash wq insertion if file is a regular file */
775 unsigned hash_reg_file : 1;
776 /* unbound wq insertion if file is a non-regular file */
777 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700778 /* opcode is not supported by this kernel */
779 unsigned not_supported : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700780 /* set if opcode supports polled "wait" */
781 unsigned pollin : 1;
782 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700783 /* op supports buffer selection */
784 unsigned buffer_select : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700785 /* must always have async data allocated */
786 unsigned needs_async_data : 1;
Jens Axboe27926b62020-10-28 09:33:23 -0600787 /* should block plug */
788 unsigned plug : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700789 /* size of async data needed, if any */
790 unsigned short async_size;
Jens Axboe0f203762020-10-14 09:23:55 -0600791 unsigned work_flags;
Jens Axboed3656342019-12-18 09:50:26 -0700792};
793
Jens Axboe09186822020-10-13 15:01:40 -0600794static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300795 [IORING_OP_NOP] = {},
796 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700797 .needs_file = 1,
798 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700799 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700800 .buffer_select = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700801 .needs_async_data = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600802 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700803 .async_size = sizeof(struct io_async_rw),
Jens Axboe0f203762020-10-14 09:23:55 -0600804 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700805 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300806 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700807 .needs_file = 1,
808 .hash_reg_file = 1,
809 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700810 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700811 .needs_async_data = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600812 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700813 .async_size = sizeof(struct io_async_rw),
Jens Axboe69228332020-10-20 14:28:41 -0600814 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
815 IO_WQ_WORK_FSIZE,
Jens Axboed3656342019-12-18 09:50:26 -0700816 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300817 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700818 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600819 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700820 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300821 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700822 .needs_file = 1,
823 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700824 .pollin = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600825 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700826 .async_size = sizeof(struct io_async_rw),
Jens Axboe4017eb92020-10-22 14:14:12 -0600827 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700828 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300829 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700830 .needs_file = 1,
831 .hash_reg_file = 1,
832 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700833 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600834 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700835 .async_size = sizeof(struct io_async_rw),
Jens Axboe4017eb92020-10-22 14:14:12 -0600836 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_FSIZE |
837 IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700838 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300839 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700840 .needs_file = 1,
841 .unbound_nonreg_file = 1,
842 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300843 [IORING_OP_POLL_REMOVE] = {},
844 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700845 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600846 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700847 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300848 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700849 .needs_file = 1,
850 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700851 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700852 .needs_async_data = 1,
853 .async_size = sizeof(struct io_async_msghdr),
Jens Axboe0f203762020-10-14 09:23:55 -0600854 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
855 IO_WQ_WORK_FS,
Jens Axboed3656342019-12-18 09:50:26 -0700856 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300857 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700858 .needs_file = 1,
859 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700860 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700861 .buffer_select = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700862 .needs_async_data = 1,
863 .async_size = sizeof(struct io_async_msghdr),
Jens Axboe0f203762020-10-14 09:23:55 -0600864 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
865 IO_WQ_WORK_FS,
Jens Axboed3656342019-12-18 09:50:26 -0700866 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300867 [IORING_OP_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700868 .needs_async_data = 1,
869 .async_size = sizeof(struct io_timeout_data),
Jens Axboe0f203762020-10-14 09:23:55 -0600870 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700871 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300872 [IORING_OP_TIMEOUT_REMOVE] = {},
873 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700874 .needs_file = 1,
875 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700876 .pollin = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600877 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES,
Jens Axboed3656342019-12-18 09:50:26 -0700878 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300879 [IORING_OP_ASYNC_CANCEL] = {},
880 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700881 .needs_async_data = 1,
882 .async_size = sizeof(struct io_timeout_data),
Jens Axboe0f203762020-10-14 09:23:55 -0600883 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700884 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300885 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700886 .needs_file = 1,
887 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700888 .pollout = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700889 .needs_async_data = 1,
890 .async_size = sizeof(struct io_async_connect),
Jens Axboe0f203762020-10-14 09:23:55 -0600891 .work_flags = IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700892 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300893 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700894 .needs_file = 1,
Jens Axboe69228332020-10-20 14:28:41 -0600895 .work_flags = IO_WQ_WORK_BLKCG | IO_WQ_WORK_FSIZE,
Jens Axboed3656342019-12-18 09:50:26 -0700896 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300897 [IORING_OP_OPENAT] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600898 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_BLKCG |
Jens Axboe14587a462020-09-05 11:36:08 -0600899 IO_WQ_WORK_FS | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700900 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300901 [IORING_OP_CLOSE] = {
Jens Axboefd2206e2020-06-02 16:40:47 -0600902 .needs_file = 1,
903 .needs_file_no_error = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600904 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700905 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300906 [IORING_OP_FILES_UPDATE] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600907 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_MM,
Jens Axboed3656342019-12-18 09:50:26 -0700908 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300909 [IORING_OP_STATX] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600910 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_MM |
911 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
Jens Axboed3656342019-12-18 09:50:26 -0700912 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300913 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700914 .needs_file = 1,
915 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700916 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700917 .buffer_select = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600918 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700919 .async_size = sizeof(struct io_async_rw),
Jens Axboe0f203762020-10-14 09:23:55 -0600920 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700921 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300922 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700923 .needs_file = 1,
924 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700925 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600926 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700927 .async_size = sizeof(struct io_async_rw),
Jens Axboe69228332020-10-20 14:28:41 -0600928 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG |
929 IO_WQ_WORK_FSIZE,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700930 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300931 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700932 .needs_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600933 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboe4840e412019-12-25 22:03:45 -0700934 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300935 [IORING_OP_MADVISE] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600936 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboec1ca7572019-12-25 22:18:28 -0700937 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300938 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700939 .needs_file = 1,
940 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700941 .pollout = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600942 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboefddafac2020-01-04 20:19:44 -0700943 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300944 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700945 .needs_file = 1,
946 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700947 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700948 .buffer_select = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600949 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG,
Jens Axboefddafac2020-01-04 20:19:44 -0700950 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300951 [IORING_OP_OPENAT2] = {
Jens Axboe0f203762020-10-14 09:23:55 -0600952 .work_flags = IO_WQ_WORK_FILES | IO_WQ_WORK_FS |
Jens Axboe14587a462020-09-05 11:36:08 -0600953 IO_WQ_WORK_BLKCG | IO_WQ_WORK_MM,
Jens Axboecebdb982020-01-08 17:59:24 -0700954 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700955 [IORING_OP_EPOLL_CTL] = {
956 .unbound_nonreg_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600957 .work_flags = IO_WQ_WORK_FILES,
Jens Axboe3e4827b2020-01-08 15:18:09 -0700958 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300959 [IORING_OP_SPLICE] = {
960 .needs_file = 1,
961 .hash_reg_file = 1,
962 .unbound_nonreg_file = 1,
Jens Axboe0f203762020-10-14 09:23:55 -0600963 .work_flags = IO_WQ_WORK_BLKCG,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700964 },
965 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700966 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +0300967 [IORING_OP_TEE] = {
968 .needs_file = 1,
969 .hash_reg_file = 1,
970 .unbound_nonreg_file = 1,
971 },
Jens Axboe36f4fa62020-09-05 11:14:22 -0600972 [IORING_OP_SHUTDOWN] = {
973 .needs_file = 1,
974 },
Jens Axboe80a261f2020-09-28 14:23:58 -0600975 [IORING_OP_RENAMEAT] = {
976 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES |
977 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
978 },
Jens Axboe14a11432020-09-28 14:27:37 -0600979 [IORING_OP_UNLINKAT] = {
980 .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_FILES |
981 IO_WQ_WORK_FS | IO_WQ_WORK_BLKCG,
982 },
Jens Axboed3656342019-12-18 09:50:26 -0700983};
984
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -0700985enum io_mem_account {
986 ACCT_LOCKED,
987 ACCT_PINNED,
988};
989
Pavel Begunkov81b68a52020-07-30 18:43:46 +0300990static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
991 struct io_comp_state *cs);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700992static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800993static void io_put_req(struct io_kiocb *req);
Pavel Begunkov216578e2020-10-13 09:44:00 +0100994static void io_put_req_deferred(struct io_kiocb *req, int nr);
Jens Axboec40f6372020-06-25 15:39:59 -0600995static void io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700996static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
Jens Axboe7271ef32020-08-10 09:55:22 -0600997static void __io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700998static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700999static int __io_sqe_files_update(struct io_ring_ctx *ctx,
1000 struct io_uring_files_update *ip,
1001 unsigned nr_args);
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001002static void __io_clean_op(struct io_kiocb *req);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01001003static struct file *io_file_get(struct io_submit_state *state,
1004 struct io_kiocb *req, int fd, bool fixed);
Pavel Begunkovc1379e22020-09-30 22:57:56 +03001005static void __io_queue_sqe(struct io_kiocb *req, struct io_comp_state *cs);
Jens Axboe4349f302020-07-09 15:07:01 -06001006static void io_file_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -06001007
Jens Axboeb63534c2020-06-04 11:28:00 -06001008static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1009 struct iovec **iovec, struct iov_iter *iter,
1010 bool needs_lock);
Jens Axboeff6165b2020-08-13 09:47:43 -06001011static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
1012 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06001013 struct iov_iter *iter, bool force);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001014
1015static struct kmem_cache *req_cachep;
1016
Jens Axboe09186822020-10-13 15:01:40 -06001017static const struct file_operations io_uring_fops;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001018
1019struct sock *io_uring_get_socket(struct file *file)
1020{
1021#if defined(CONFIG_UNIX)
1022 if (file->f_op == &io_uring_fops) {
1023 struct io_ring_ctx *ctx = file->private_data;
1024
1025 return ctx->ring_sock->sk;
1026 }
1027#endif
1028 return NULL;
1029}
1030EXPORT_SYMBOL(io_uring_get_socket);
1031
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001032#define io_for_each_link(pos, head) \
1033 for (pos = (head); pos; pos = pos->link)
1034
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001035static inline void io_clean_op(struct io_kiocb *req)
1036{
Pavel Begunkovbb175342020-08-20 11:33:35 +03001037 if (req->flags & (REQ_F_NEED_CLEANUP | REQ_F_BUFFER_SELECTED |
1038 REQ_F_INFLIGHT))
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001039 __io_clean_op(req);
1040}
1041
Jens Axboe28cea78a2020-09-14 10:51:17 -06001042static void io_sq_thread_drop_mm_files(void)
Jens Axboec40f6372020-06-25 15:39:59 -06001043{
Jens Axboe28cea78a2020-09-14 10:51:17 -06001044 struct files_struct *files = current->files;
Jens Axboec40f6372020-06-25 15:39:59 -06001045 struct mm_struct *mm = current->mm;
1046
1047 if (mm) {
1048 kthread_unuse_mm(mm);
1049 mmput(mm);
Jens Axboe4b70cf92020-11-02 10:39:05 -07001050 current->mm = NULL;
Jens Axboec40f6372020-06-25 15:39:59 -06001051 }
Jens Axboe28cea78a2020-09-14 10:51:17 -06001052 if (files) {
1053 struct nsproxy *nsproxy = current->nsproxy;
1054
1055 task_lock(current);
1056 current->files = NULL;
1057 current->nsproxy = NULL;
1058 task_unlock(current);
1059 put_files_struct(files);
1060 put_nsproxy(nsproxy);
1061 }
1062}
1063
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001064static int __io_sq_thread_acquire_files(struct io_ring_ctx *ctx)
Jens Axboe28cea78a2020-09-14 10:51:17 -06001065{
1066 if (!current->files) {
1067 struct files_struct *files;
1068 struct nsproxy *nsproxy;
1069
1070 task_lock(ctx->sqo_task);
1071 files = ctx->sqo_task->files;
1072 if (!files) {
1073 task_unlock(ctx->sqo_task);
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001074 return -EOWNERDEAD;
Jens Axboe28cea78a2020-09-14 10:51:17 -06001075 }
1076 atomic_inc(&files->count);
1077 get_nsproxy(ctx->sqo_task->nsproxy);
1078 nsproxy = ctx->sqo_task->nsproxy;
1079 task_unlock(ctx->sqo_task);
1080
1081 task_lock(current);
1082 current->files = files;
1083 current->nsproxy = nsproxy;
1084 task_unlock(current);
1085 }
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001086 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001087}
1088
1089static int __io_sq_thread_acquire_mm(struct io_ring_ctx *ctx)
1090{
Jens Axboe4b70cf92020-11-02 10:39:05 -07001091 struct mm_struct *mm;
1092
1093 if (current->mm)
1094 return 0;
1095
1096 /* Should never happen */
1097 if (unlikely(!(ctx->flags & IORING_SETUP_SQPOLL)))
1098 return -EFAULT;
1099
1100 task_lock(ctx->sqo_task);
1101 mm = ctx->sqo_task->mm;
1102 if (unlikely(!mm || !mmget_not_zero(mm)))
1103 mm = NULL;
1104 task_unlock(ctx->sqo_task);
1105
1106 if (mm) {
1107 kthread_use_mm(mm);
1108 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001109 }
1110
Jens Axboe4b70cf92020-11-02 10:39:05 -07001111 return -EFAULT;
Jens Axboec40f6372020-06-25 15:39:59 -06001112}
1113
Jens Axboe28cea78a2020-09-14 10:51:17 -06001114static int io_sq_thread_acquire_mm_files(struct io_ring_ctx *ctx,
1115 struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001116{
Jens Axboe28cea78a2020-09-14 10:51:17 -06001117 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001118 int ret;
Jens Axboe28cea78a2020-09-14 10:51:17 -06001119
1120 if (def->work_flags & IO_WQ_WORK_MM) {
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001121 ret = __io_sq_thread_acquire_mm(ctx);
Jens Axboe28cea78a2020-09-14 10:51:17 -06001122 if (unlikely(ret))
1123 return ret;
1124 }
1125
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00001126 if (def->needs_file || (def->work_flags & IO_WQ_WORK_FILES)) {
1127 ret = __io_sq_thread_acquire_files(ctx);
1128 if (unlikely(ret))
1129 return ret;
1130 }
Jens Axboe28cea78a2020-09-14 10:51:17 -06001131
1132 return 0;
Jens Axboec40f6372020-06-25 15:39:59 -06001133}
1134
Dennis Zhou91d8f512020-09-16 13:41:05 -07001135static void io_sq_thread_associate_blkcg(struct io_ring_ctx *ctx,
1136 struct cgroup_subsys_state **cur_css)
1137
1138{
1139#ifdef CONFIG_BLK_CGROUP
1140 /* puts the old one when swapping */
1141 if (*cur_css != ctx->sqo_blkcg_css) {
1142 kthread_associate_blkcg(ctx->sqo_blkcg_css);
1143 *cur_css = ctx->sqo_blkcg_css;
1144 }
1145#endif
1146}
1147
1148static void io_sq_thread_unassociate_blkcg(void)
1149{
1150#ifdef CONFIG_BLK_CGROUP
1151 kthread_associate_blkcg(NULL);
1152#endif
1153}
1154
Jens Axboec40f6372020-06-25 15:39:59 -06001155static inline void req_set_fail_links(struct io_kiocb *req)
1156{
1157 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1158 req->flags |= REQ_F_FAIL_LINK;
1159}
Jens Axboe4a38aed22020-05-14 17:21:15 -06001160
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001161/*
Jens Axboe1e6fa522020-10-15 08:46:24 -06001162 * None of these are dereferenced, they are simply used to check if any of
1163 * them have changed. If we're under current and check they are still the
1164 * same, we're fine to grab references to them for actual out-of-line use.
1165 */
1166static void io_init_identity(struct io_identity *id)
1167{
1168 id->files = current->files;
1169 id->mm = current->mm;
1170#ifdef CONFIG_BLK_CGROUP
1171 rcu_read_lock();
1172 id->blkcg_css = blkcg_css();
1173 rcu_read_unlock();
1174#endif
1175 id->creds = current_cred();
1176 id->nsproxy = current->nsproxy;
1177 id->fs = current->fs;
1178 id->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboe4ea33a92020-10-15 13:46:44 -06001179#ifdef CONFIG_AUDIT
1180 id->loginuid = current->loginuid;
1181 id->sessionid = current->sessionid;
1182#endif
Jens Axboe1e6fa522020-10-15 08:46:24 -06001183 refcount_set(&id->count, 1);
1184}
1185
Pavel Begunkovec99ca62020-10-18 10:17:38 +01001186static inline void __io_req_init_async(struct io_kiocb *req)
1187{
1188 memset(&req->work, 0, sizeof(req->work));
1189 req->flags |= REQ_F_WORK_INITIALIZED;
1190}
1191
Jens Axboe1e6fa522020-10-15 08:46:24 -06001192/*
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001193 * Note: must call io_req_init_async() for the first time you
1194 * touch any members of io_wq_work.
1195 */
1196static inline void io_req_init_async(struct io_kiocb *req)
1197{
Jens Axboe500a3732020-10-15 17:38:03 -06001198 struct io_uring_task *tctx = current->io_uring;
1199
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001200 if (req->flags & REQ_F_WORK_INITIALIZED)
1201 return;
1202
Pavel Begunkovec99ca62020-10-18 10:17:38 +01001203 __io_req_init_async(req);
Jens Axboe500a3732020-10-15 17:38:03 -06001204
1205 /* Grab a ref if this isn't our static identity */
1206 req->work.identity = tctx->identity;
1207 if (tctx->identity != &tctx->__identity)
1208 refcount_inc(&req->work.identity->count);
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001209}
1210
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03001211static inline bool io_async_submit(struct io_ring_ctx *ctx)
1212{
1213 return ctx->flags & IORING_SETUP_SQPOLL;
1214}
1215
Jens Axboe2b188cc2019-01-07 10:46:33 -07001216static void io_ring_ctx_ref_free(struct percpu_ref *ref)
1217{
1218 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1219
Jens Axboe0f158b42020-05-14 17:18:39 -06001220 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001221}
1222
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001223static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1224{
1225 return !req->timeout.off;
1226}
1227
Jens Axboe2b188cc2019-01-07 10:46:33 -07001228static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
1229{
1230 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001231 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001232
1233 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1234 if (!ctx)
1235 return NULL;
1236
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001237 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
1238 if (!ctx->fallback_req)
1239 goto err;
1240
Jens Axboe78076bb2019-12-04 19:56:40 -07001241 /*
1242 * Use 5 bits less than the max cq entries, that should give us around
1243 * 32 entries per hash list if totally full and uniformly spread.
1244 */
1245 hash_bits = ilog2(p->cq_entries);
1246 hash_bits -= 5;
1247 if (hash_bits <= 0)
1248 hash_bits = 1;
1249 ctx->cancel_hash_bits = hash_bits;
1250 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1251 GFP_KERNEL);
1252 if (!ctx->cancel_hash)
1253 goto err;
1254 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1255
Roman Gushchin21482892019-05-07 10:01:48 -07001256 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001257 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1258 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001259
1260 ctx->flags = p->flags;
Jens Axboe90554202020-09-03 12:12:41 -06001261 init_waitqueue_head(&ctx->sqo_sq_wait);
Jens Axboe69fb2132020-09-14 11:16:23 -06001262 INIT_LIST_HEAD(&ctx->sqd_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001263 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001264 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001265 init_completion(&ctx->ref_comp);
1266 init_completion(&ctx->sq_thread_comp);
Jens Axboe5a2e7452020-02-23 16:23:11 -07001267 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -07001268 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001269 mutex_init(&ctx->uring_lock);
1270 init_waitqueue_head(&ctx->wait);
1271 spin_lock_init(&ctx->completion_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03001272 INIT_LIST_HEAD(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001273 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001274 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -06001275 init_waitqueue_head(&ctx->inflight_wait);
1276 spin_lock_init(&ctx->inflight_lock);
1277 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe4a38aed22020-05-14 17:21:15 -06001278 INIT_DELAYED_WORK(&ctx->file_put_work, io_file_put_work);
1279 init_llist_head(&ctx->file_put_llist);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001280 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001281err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001282 if (ctx->fallback_req)
1283 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe78076bb2019-12-04 19:56:40 -07001284 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001285 kfree(ctx);
1286 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001287}
1288
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001289static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001290{
Jens Axboe2bc99302020-07-09 09:43:27 -06001291 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1292 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001293
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001294 return seq != ctx->cached_cq_tail
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001295 + READ_ONCE(ctx->cached_cq_overflow);
Jens Axboe2bc99302020-07-09 09:43:27 -06001296 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001297
Bob Liu9d858b22019-11-13 18:06:25 +08001298 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001299}
1300
Jens Axboede0617e2019-04-06 21:51:27 -06001301static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001302{
Hristo Venev75b28af2019-08-26 17:23:46 +00001303 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001304
Pavel Begunkov07910152020-01-17 03:52:46 +03001305 /* order cqe stores with ring update */
1306 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001307
Pavel Begunkov07910152020-01-17 03:52:46 +03001308 if (wq_has_sleeper(&ctx->cq_wait)) {
1309 wake_up_interruptible(&ctx->cq_wait);
1310 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001311 }
1312}
1313
Jens Axboe5c3462c2020-10-15 09:02:33 -06001314static void io_put_identity(struct io_uring_task *tctx, struct io_kiocb *req)
Jens Axboe1e6fa522020-10-15 08:46:24 -06001315{
Jens Axboe500a3732020-10-15 17:38:03 -06001316 if (req->work.identity == &tctx->__identity)
Jens Axboe1e6fa522020-10-15 08:46:24 -06001317 return;
1318 if (refcount_dec_and_test(&req->work.identity->count))
1319 kfree(req->work.identity);
1320}
1321
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001322static void io_req_clean_work(struct io_kiocb *req)
Jens Axboecccf0ee2020-01-27 16:34:48 -07001323{
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001324 if (!(req->flags & REQ_F_WORK_INITIALIZED))
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001325 return;
Jens Axboe51a4cc12020-08-10 10:55:56 -06001326
1327 req->flags &= ~REQ_F_WORK_INITIALIZED;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001328
Jens Axboedfead8a2020-10-14 10:12:37 -06001329 if (req->work.flags & IO_WQ_WORK_MM) {
Jens Axboe98447d62020-10-14 10:48:51 -06001330 mmdrop(req->work.identity->mm);
Jens Axboedfead8a2020-10-14 10:12:37 -06001331 req->work.flags &= ~IO_WQ_WORK_MM;
Jens Axboecccf0ee2020-01-27 16:34:48 -07001332 }
Dennis Zhou91d8f512020-09-16 13:41:05 -07001333#ifdef CONFIG_BLK_CGROUP
Jens Axboedfead8a2020-10-14 10:12:37 -06001334 if (req->work.flags & IO_WQ_WORK_BLKCG) {
Jens Axboe98447d62020-10-14 10:48:51 -06001335 css_put(req->work.identity->blkcg_css);
Jens Axboedfead8a2020-10-14 10:12:37 -06001336 req->work.flags &= ~IO_WQ_WORK_BLKCG;
Jens Axboecccf0ee2020-01-27 16:34:48 -07001337 }
Jens Axboedfead8a2020-10-14 10:12:37 -06001338#endif
1339 if (req->work.flags & IO_WQ_WORK_CREDS) {
Jens Axboe98447d62020-10-14 10:48:51 -06001340 put_cred(req->work.identity->creds);
Jens Axboedfead8a2020-10-14 10:12:37 -06001341 req->work.flags &= ~IO_WQ_WORK_CREDS;
1342 }
1343 if (req->work.flags & IO_WQ_WORK_FS) {
Jens Axboe98447d62020-10-14 10:48:51 -06001344 struct fs_struct *fs = req->work.identity->fs;
Jens Axboeff002b32020-02-07 16:05:21 -07001345
Jens Axboe98447d62020-10-14 10:48:51 -06001346 spin_lock(&req->work.identity->fs->lock);
Jens Axboeff002b32020-02-07 16:05:21 -07001347 if (--fs->users)
1348 fs = NULL;
Jens Axboe98447d62020-10-14 10:48:51 -06001349 spin_unlock(&req->work.identity->fs->lock);
Jens Axboeff002b32020-02-07 16:05:21 -07001350 if (fs)
1351 free_fs_struct(fs);
Jens Axboedfead8a2020-10-14 10:12:37 -06001352 req->work.flags &= ~IO_WQ_WORK_FS;
Jens Axboeff002b32020-02-07 16:05:21 -07001353 }
Jens Axboe51a4cc12020-08-10 10:55:56 -06001354
Jens Axboe5c3462c2020-10-15 09:02:33 -06001355 io_put_identity(req->task->io_uring, req);
Jens Axboe1e6fa522020-10-15 08:46:24 -06001356}
1357
1358/*
1359 * Create a private copy of io_identity, since some fields don't match
1360 * the current context.
1361 */
1362static bool io_identity_cow(struct io_kiocb *req)
1363{
Jens Axboe5c3462c2020-10-15 09:02:33 -06001364 struct io_uring_task *tctx = current->io_uring;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001365 const struct cred *creds = NULL;
1366 struct io_identity *id;
1367
1368 if (req->work.flags & IO_WQ_WORK_CREDS)
1369 creds = req->work.identity->creds;
1370
1371 id = kmemdup(req->work.identity, sizeof(*id), GFP_KERNEL);
1372 if (unlikely(!id)) {
1373 req->work.flags |= IO_WQ_WORK_CANCEL;
1374 return false;
1375 }
1376
1377 /*
1378 * We can safely just re-init the creds we copied Either the field
1379 * matches the current one, or we haven't grabbed it yet. The only
1380 * exception is ->creds, through registered personalities, so handle
1381 * that one separately.
1382 */
1383 io_init_identity(id);
1384 if (creds)
1385 req->work.identity->creds = creds;
1386
1387 /* add one for this request */
1388 refcount_inc(&id->count);
1389
Jens Axboecb8a8ae2020-11-03 12:19:07 -07001390 /* drop tctx and req identity references, if needed */
1391 if (tctx->identity != &tctx->__identity &&
1392 refcount_dec_and_test(&tctx->identity->count))
1393 kfree(tctx->identity);
1394 if (req->work.identity != &tctx->__identity &&
1395 refcount_dec_and_test(&req->work.identity->count))
Jens Axboe1e6fa522020-10-15 08:46:24 -06001396 kfree(req->work.identity);
1397
1398 req->work.identity = id;
Jens Axboe500a3732020-10-15 17:38:03 -06001399 tctx->identity = id;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001400 return true;
1401}
1402
1403static bool io_grab_identity(struct io_kiocb *req)
1404{
1405 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe5c3462c2020-10-15 09:02:33 -06001406 struct io_identity *id = req->work.identity;
Jens Axboe1e6fa522020-10-15 08:46:24 -06001407 struct io_ring_ctx *ctx = req->ctx;
1408
Jens Axboe69228332020-10-20 14:28:41 -06001409 if (def->work_flags & IO_WQ_WORK_FSIZE) {
1410 if (id->fsize != rlimit(RLIMIT_FSIZE))
1411 return false;
1412 req->work.flags |= IO_WQ_WORK_FSIZE;
1413 }
Jens Axboe1e6fa522020-10-15 08:46:24 -06001414
1415 if (!(req->work.flags & IO_WQ_WORK_FILES) &&
1416 (def->work_flags & IO_WQ_WORK_FILES) &&
1417 !(req->flags & REQ_F_NO_FILE_TABLE)) {
1418 if (id->files != current->files ||
1419 id->nsproxy != current->nsproxy)
1420 return false;
1421 atomic_inc(&id->files->count);
1422 get_nsproxy(id->nsproxy);
1423 req->flags |= REQ_F_INFLIGHT;
1424
1425 spin_lock_irq(&ctx->inflight_lock);
1426 list_add(&req->inflight_entry, &ctx->inflight_list);
1427 spin_unlock_irq(&ctx->inflight_lock);
1428 req->work.flags |= IO_WQ_WORK_FILES;
1429 }
1430#ifdef CONFIG_BLK_CGROUP
1431 if (!(req->work.flags & IO_WQ_WORK_BLKCG) &&
1432 (def->work_flags & IO_WQ_WORK_BLKCG)) {
1433 rcu_read_lock();
1434 if (id->blkcg_css != blkcg_css()) {
1435 rcu_read_unlock();
1436 return false;
1437 }
1438 /*
1439 * This should be rare, either the cgroup is dying or the task
1440 * is moving cgroups. Just punt to root for the handful of ios.
1441 */
1442 if (css_tryget_online(id->blkcg_css))
1443 req->work.flags |= IO_WQ_WORK_BLKCG;
1444 rcu_read_unlock();
1445 }
1446#endif
1447 if (!(req->work.flags & IO_WQ_WORK_CREDS)) {
1448 if (id->creds != current_cred())
1449 return false;
1450 get_cred(id->creds);
1451 req->work.flags |= IO_WQ_WORK_CREDS;
1452 }
Jens Axboe4ea33a92020-10-15 13:46:44 -06001453#ifdef CONFIG_AUDIT
1454 if (!uid_eq(current->loginuid, id->loginuid) ||
1455 current->sessionid != id->sessionid)
1456 return false;
1457#endif
Jens Axboe1e6fa522020-10-15 08:46:24 -06001458 if (!(req->work.flags & IO_WQ_WORK_FS) &&
1459 (def->work_flags & IO_WQ_WORK_FS)) {
1460 if (current->fs != id->fs)
1461 return false;
1462 spin_lock(&id->fs->lock);
1463 if (!id->fs->in_exec) {
1464 id->fs->users++;
1465 req->work.flags |= IO_WQ_WORK_FS;
1466 } else {
1467 req->work.flags |= IO_WQ_WORK_CANCEL;
1468 }
1469 spin_unlock(&current->fs->lock);
1470 }
1471
1472 return true;
Jens Axboe561fb042019-10-24 07:25:42 -06001473}
1474
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001475static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001476{
Jens Axboed3656342019-12-18 09:50:26 -07001477 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov23329512020-10-10 18:34:06 +01001478 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5c3462c2020-10-15 09:02:33 -06001479 struct io_identity *id;
Jens Axboe54a91f32019-09-10 09:15:04 -06001480
Pavel Begunkov16d59802020-07-12 16:16:47 +03001481 io_req_init_async(req);
Jens Axboe5c3462c2020-10-15 09:02:33 -06001482 id = req->work.identity;
Pavel Begunkov16d59802020-07-12 16:16:47 +03001483
Pavel Begunkovfeaadc42020-10-22 16:47:16 +01001484 if (req->flags & REQ_F_FORCE_ASYNC)
1485 req->work.flags |= IO_WQ_WORK_CONCURRENT;
1486
Jens Axboed3656342019-12-18 09:50:26 -07001487 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov23329512020-10-10 18:34:06 +01001488 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001489 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001490 } else {
1491 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001492 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001493 }
Pavel Begunkov23329512020-10-10 18:34:06 +01001494
Jens Axboe1e6fa522020-10-15 08:46:24 -06001495 /* ->mm can never change on us */
Jens Axboedfead8a2020-10-14 10:12:37 -06001496 if (!(req->work.flags & IO_WQ_WORK_MM) &&
1497 (def->work_flags & IO_WQ_WORK_MM)) {
Jens Axboe1e6fa522020-10-15 08:46:24 -06001498 mmgrab(id->mm);
Jens Axboedfead8a2020-10-14 10:12:37 -06001499 req->work.flags |= IO_WQ_WORK_MM;
Pavel Begunkov23329512020-10-10 18:34:06 +01001500 }
Jens Axboe1e6fa522020-10-15 08:46:24 -06001501
1502 /* if we fail grabbing identity, we must COW, regrab, and retry */
1503 if (io_grab_identity(req))
1504 return;
1505
1506 if (!io_identity_cow(req))
1507 return;
1508
1509 /* can't fail at this point */
1510 if (!io_grab_identity(req))
1511 WARN_ON(1);
Jens Axboe561fb042019-10-24 07:25:42 -06001512}
1513
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001514static void io_prep_async_link(struct io_kiocb *req)
1515{
1516 struct io_kiocb *cur;
1517
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001518 io_for_each_link(cur, req)
1519 io_prep_async_work(cur);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001520}
1521
Jens Axboe7271ef32020-08-10 09:55:22 -06001522static struct io_kiocb *__io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001523{
Jackie Liua197f662019-11-08 08:09:12 -07001524 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001525 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001526
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001527 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1528 &req->work, req->flags);
1529 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001530 return link;
Jens Axboe18d9be12019-09-10 09:13:05 -06001531}
1532
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001533static void io_queue_async_work(struct io_kiocb *req)
1534{
Jens Axboe7271ef32020-08-10 09:55:22 -06001535 struct io_kiocb *link;
1536
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001537 /* init ->work of the whole link before punting */
1538 io_prep_async_link(req);
Jens Axboe7271ef32020-08-10 09:55:22 -06001539 link = __io_queue_async_work(req);
1540
1541 if (link)
1542 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001543}
1544
Jens Axboe5262f562019-09-17 12:26:57 -06001545static void io_kill_timeout(struct io_kiocb *req)
1546{
Jens Axboee8c2bc12020-08-15 18:44:09 -07001547 struct io_timeout_data *io = req->async_data;
Jens Axboe5262f562019-09-17 12:26:57 -06001548 int ret;
1549
Jens Axboee8c2bc12020-08-15 18:44:09 -07001550 ret = hrtimer_try_to_cancel(&io->timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001551 if (ret != -1) {
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001552 atomic_set(&req->ctx->cq_timeouts,
1553 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001554 list_del_init(&req->timeout.list);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001555 io_cqring_fill_event(req, 0);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001556 io_put_req_deferred(req, 1);
Jens Axboe5262f562019-09-17 12:26:57 -06001557 }
1558}
1559
Jens Axboef3606e32020-09-22 08:18:24 -06001560static bool io_task_match(struct io_kiocb *req, struct task_struct *tsk)
1561{
1562 struct io_ring_ctx *ctx = req->ctx;
1563
1564 if (!tsk || req->task == tsk)
1565 return true;
Jens Axboe534ca6d2020-09-02 13:52:19 -06001566 if (ctx->flags & IORING_SETUP_SQPOLL) {
1567 if (ctx->sq_data && req->task == ctx->sq_data->thread)
1568 return true;
1569 }
Jens Axboef3606e32020-09-22 08:18:24 -06001570 return false;
1571}
1572
Jens Axboe76e1b642020-09-26 15:05:03 -06001573/*
1574 * Returns true if we found and killed one or more timeouts
1575 */
1576static bool io_kill_timeouts(struct io_ring_ctx *ctx, struct task_struct *tsk)
Jens Axboe5262f562019-09-17 12:26:57 -06001577{
1578 struct io_kiocb *req, *tmp;
Jens Axboe76e1b642020-09-26 15:05:03 -06001579 int canceled = 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001580
1581 spin_lock_irq(&ctx->completion_lock);
Jens Axboef3606e32020-09-22 08:18:24 -06001582 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Jens Axboe76e1b642020-09-26 15:05:03 -06001583 if (io_task_match(req, tsk)) {
Jens Axboef3606e32020-09-22 08:18:24 -06001584 io_kill_timeout(req);
Jens Axboe76e1b642020-09-26 15:05:03 -06001585 canceled++;
1586 }
Jens Axboef3606e32020-09-22 08:18:24 -06001587 }
Jens Axboe5262f562019-09-17 12:26:57 -06001588 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe76e1b642020-09-26 15:05:03 -06001589 return canceled != 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001590}
1591
Pavel Begunkov04518942020-05-26 20:34:05 +03001592static void __io_queue_deferred(struct io_ring_ctx *ctx)
1593{
1594 do {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001595 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1596 struct io_defer_entry, list);
Jens Axboe7271ef32020-08-10 09:55:22 -06001597 struct io_kiocb *link;
Pavel Begunkov04518942020-05-26 20:34:05 +03001598
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001599 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001600 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001601 list_del_init(&de->list);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001602 /* punt-init is done before queueing for defer */
Jens Axboe7271ef32020-08-10 09:55:22 -06001603 link = __io_queue_async_work(de->req);
1604 if (link) {
1605 __io_queue_linked_timeout(link);
1606 /* drop submission reference */
Pavel Begunkov216578e2020-10-13 09:44:00 +01001607 io_put_req_deferred(link, 1);
Jens Axboe7271ef32020-08-10 09:55:22 -06001608 }
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001609 kfree(de);
Pavel Begunkov04518942020-05-26 20:34:05 +03001610 } while (!list_empty(&ctx->defer_list));
1611}
1612
Pavel Begunkov360428f2020-05-30 14:54:17 +03001613static void io_flush_timeouts(struct io_ring_ctx *ctx)
1614{
1615 while (!list_empty(&ctx->timeout_list)) {
1616 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001617 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001618
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001619 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001620 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001621 if (req->timeout.target_seq != ctx->cached_cq_tail
1622 - atomic_read(&ctx->cq_timeouts))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001623 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001624
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001625 list_del_init(&req->timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001626 io_kill_timeout(req);
1627 }
1628}
1629
Jens Axboede0617e2019-04-06 21:51:27 -06001630static void io_commit_cqring(struct io_ring_ctx *ctx)
1631{
Pavel Begunkov360428f2020-05-30 14:54:17 +03001632 io_flush_timeouts(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001633 __io_commit_cqring(ctx);
1634
Pavel Begunkov04518942020-05-26 20:34:05 +03001635 if (unlikely(!list_empty(&ctx->defer_list)))
1636 __io_queue_deferred(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001637}
1638
Jens Axboe90554202020-09-03 12:12:41 -06001639static inline bool io_sqring_full(struct io_ring_ctx *ctx)
1640{
1641 struct io_rings *r = ctx->rings;
1642
1643 return READ_ONCE(r->sq.tail) - ctx->cached_sq_head == r->sq_ring_entries;
1644}
1645
Jens Axboe2b188cc2019-01-07 10:46:33 -07001646static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1647{
Hristo Venev75b28af2019-08-26 17:23:46 +00001648 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001649 unsigned tail;
1650
1651 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001652 /*
1653 * writes to the cq entry need to come after reading head; the
1654 * control dependency is enough as we're using WRITE_ONCE to
1655 * fill the cq entry
1656 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001657 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001658 return NULL;
1659
1660 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001661 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001662}
1663
Jens Axboef2842ab2020-01-08 11:04:00 -07001664static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1665{
Jens Axboef0b493e2020-02-01 21:30:11 -07001666 if (!ctx->cq_ev_fd)
1667 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001668 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1669 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001670 if (!ctx->eventfd_async)
1671 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001672 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001673}
1674
Jens Axboeb41e9852020-02-17 09:52:41 -07001675static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001676{
1677 if (waitqueue_active(&ctx->wait))
1678 wake_up(&ctx->wait);
Jens Axboe534ca6d2020-09-02 13:52:19 -06001679 if (ctx->sq_data && waitqueue_active(&ctx->sq_data->wait))
1680 wake_up(&ctx->sq_data->wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001681 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001682 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001683}
1684
Pavel Begunkov46930142020-07-30 18:43:49 +03001685static void io_cqring_mark_overflow(struct io_ring_ctx *ctx)
1686{
1687 if (list_empty(&ctx->cq_overflow_list)) {
1688 clear_bit(0, &ctx->sq_check_overflow);
1689 clear_bit(0, &ctx->cq_check_overflow);
1690 ctx->rings->sq_flags &= ~IORING_SQ_CQ_OVERFLOW;
1691 }
1692}
1693
Pavel Begunkov99b32802020-11-04 13:39:31 +00001694static inline bool __io_match_files(struct io_kiocb *req,
1695 struct files_struct *files)
Jens Axboee6c8aa92020-09-28 13:10:13 -06001696{
Pavel Begunkov99b32802020-11-04 13:39:31 +00001697 return ((req->flags & REQ_F_WORK_INITIALIZED) &&
1698 (req->work.flags & IO_WQ_WORK_FILES)) &&
1699 req->work.identity->files == files;
1700}
1701
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001702static bool io_match_files(struct io_kiocb *head, struct files_struct *files)
Pavel Begunkov99b32802020-11-04 13:39:31 +00001703{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001704 struct io_kiocb *req;
Pavel Begunkov99b32802020-11-04 13:39:31 +00001705
Jens Axboee6c8aa92020-09-28 13:10:13 -06001706 if (!files)
1707 return true;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001708 io_for_each_link(req, head) {
1709 if (__io_match_files(req, files))
1710 return true;
Pavel Begunkov99b32802020-11-04 13:39:31 +00001711 }
Jens Axboee6c8aa92020-09-28 13:10:13 -06001712 return false;
1713}
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;
1724 LIST_HEAD(list);
1725
1726 if (!force) {
1727 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001728 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001729 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1730 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001731 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001732 }
1733
1734 spin_lock_irqsave(&ctx->completion_lock, flags);
1735
1736 /* if force is set, the ring is going away. always drop after that */
1737 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001738 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001739
Jens Axboec4a2ed72019-11-21 21:01:26 -07001740 cqe = NULL;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001741 list_for_each_entry_safe(req, tmp, &ctx->cq_overflow_list, compl.list) {
1742 if (tsk && req->task != tsk)
1743 continue;
1744 if (!io_match_files(req, files))
1745 continue;
1746
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001747 cqe = io_get_cqring(ctx);
1748 if (!cqe && !force)
1749 break;
1750
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001751 list_move(&req->compl.list, &list);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001752 if (cqe) {
1753 WRITE_ONCE(cqe->user_data, req->user_data);
1754 WRITE_ONCE(cqe->res, req->result);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001755 WRITE_ONCE(cqe->flags, req->compl.cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001756 } else {
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001757 ctx->cached_cq_overflow++;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001758 WRITE_ONCE(ctx->rings->cq_overflow,
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001759 ctx->cached_cq_overflow);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001760 }
1761 }
1762
1763 io_commit_cqring(ctx);
Pavel Begunkov46930142020-07-30 18:43:49 +03001764 io_cqring_mark_overflow(ctx);
1765
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001766 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1767 io_cqring_ev_posted(ctx);
1768
1769 while (!list_empty(&list)) {
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001770 req = list_first_entry(&list, struct io_kiocb, compl.list);
1771 list_del(&req->compl.list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001772 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001773 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001774
1775 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001776}
1777
Jens Axboebcda7ba2020-02-23 16:42:51 -07001778static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001779{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001780 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001781 struct io_uring_cqe *cqe;
1782
Jens Axboe78e19bb2019-11-06 15:21:34 -07001783 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001784
Jens Axboe2b188cc2019-01-07 10:46:33 -07001785 /*
1786 * If we can't get a cq entry, userspace overflowed the
1787 * submission (by quite a lot). Increment the overflow count in
1788 * the ring.
1789 */
1790 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001791 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001792 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001793 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001794 WRITE_ONCE(cqe->flags, cflags);
Jens Axboefdaf0832020-10-30 09:37:30 -06001795 } else if (ctx->cq_overflow_flushed ||
1796 atomic_read(&req->task->io_uring->in_idle)) {
Jens Axboe0f212202020-09-13 13:09:39 -06001797 /*
1798 * If we're in ring overflow flush mode, or in task cancel mode,
1799 * then we cannot store the request for later flushing, we need
1800 * to drop it on the floor.
1801 */
Pavel Begunkov2c3bac6d2020-10-18 10:17:40 +01001802 ctx->cached_cq_overflow++;
1803 WRITE_ONCE(ctx->rings->cq_overflow, ctx->cached_cq_overflow);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001804 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001805 if (list_empty(&ctx->cq_overflow_list)) {
1806 set_bit(0, &ctx->sq_check_overflow);
1807 set_bit(0, &ctx->cq_check_overflow);
Xiaoguang Wang6d5f9042020-07-09 09:15:29 +08001808 ctx->rings->sq_flags |= IORING_SQ_CQ_OVERFLOW;
Jens Axboead3eb2c2019-12-18 17:12:20 -07001809 }
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001810 io_clean_op(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001811 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001812 req->compl.cflags = cflags;
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001813 refcount_inc(&req->refs);
1814 list_add_tail(&req->compl.list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001815 }
1816}
1817
Jens Axboebcda7ba2020-02-23 16:42:51 -07001818static void io_cqring_fill_event(struct io_kiocb *req, long res)
1819{
1820 __io_cqring_fill_event(req, res, 0);
1821}
1822
Jens Axboee1e16092020-06-22 09:17:17 -06001823static void io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001824{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001825 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001826 unsigned long flags;
1827
1828 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001829 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001830 io_commit_cqring(ctx);
1831 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1832
Jens Axboe8c838782019-03-12 15:48:16 -06001833 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001834}
1835
Jens Axboe229a7b62020-06-22 10:13:11 -06001836static void io_submit_flush_completions(struct io_comp_state *cs)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001837{
Jens Axboe229a7b62020-06-22 10:13:11 -06001838 struct io_ring_ctx *ctx = cs->ctx;
1839
1840 spin_lock_irq(&ctx->completion_lock);
1841 while (!list_empty(&cs->list)) {
1842 struct io_kiocb *req;
1843
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001844 req = list_first_entry(&cs->list, struct io_kiocb, compl.list);
1845 list_del(&req->compl.list);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001846 __io_cqring_fill_event(req, req->result, req->compl.cflags);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001847
1848 /*
1849 * io_free_req() doesn't care about completion_lock unless one
1850 * of these flags is set. REQ_F_WORK_INITIALIZED is in the list
1851 * because of a potential deadlock with req->work.fs->lock
1852 */
1853 if (req->flags & (REQ_F_FAIL_LINK|REQ_F_LINK_TIMEOUT
1854 |REQ_F_WORK_INITIALIZED)) {
Jens Axboe229a7b62020-06-22 10:13:11 -06001855 spin_unlock_irq(&ctx->completion_lock);
1856 io_put_req(req);
1857 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov216578e2020-10-13 09:44:00 +01001858 } else {
1859 io_put_req(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06001860 }
1861 }
1862 io_commit_cqring(ctx);
1863 spin_unlock_irq(&ctx->completion_lock);
1864
1865 io_cqring_ev_posted(ctx);
1866 cs->nr = 0;
1867}
1868
1869static void __io_req_complete(struct io_kiocb *req, long res, unsigned cflags,
1870 struct io_comp_state *cs)
1871{
1872 if (!cs) {
1873 io_cqring_add_event(req, res, cflags);
1874 io_put_req(req);
1875 } else {
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001876 io_clean_op(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06001877 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001878 req->compl.cflags = cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001879 list_add_tail(&req->compl.list, &cs->list);
Jens Axboe229a7b62020-06-22 10:13:11 -06001880 if (++cs->nr >= 32)
1881 io_submit_flush_completions(cs);
1882 }
Jens Axboee1e16092020-06-22 09:17:17 -06001883}
1884
1885static void io_req_complete(struct io_kiocb *req, long res)
1886{
Jens Axboe229a7b62020-06-22 10:13:11 -06001887 __io_req_complete(req, res, 0, NULL);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001888}
1889
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001890static inline bool io_is_fallback_req(struct io_kiocb *req)
1891{
1892 return req == (struct io_kiocb *)
1893 ((unsigned long) req->ctx->fallback_req & ~1UL);
1894}
1895
1896static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1897{
1898 struct io_kiocb *req;
1899
1900 req = ctx->fallback_req;
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001901 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001902 return req;
1903
1904 return NULL;
1905}
1906
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001907static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1908 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001909{
Pavel Begunkovf6b6c7d2020-06-21 13:09:53 +03001910 if (!state->free_reqs) {
Pavel Begunkov291b2822020-09-30 22:57:01 +03001911 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2579f912019-01-09 09:10:43 -07001912 size_t sz;
1913 int ret;
1914
1915 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001916 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1917
1918 /*
1919 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1920 * retry single alloc to be on the safe side.
1921 */
1922 if (unlikely(ret <= 0)) {
1923 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1924 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001925 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001926 ret = 1;
1927 }
Pavel Begunkov291b2822020-09-30 22:57:01 +03001928 state->free_reqs = ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001929 }
1930
Pavel Begunkov291b2822020-09-30 22:57:01 +03001931 state->free_reqs--;
1932 return state->reqs[state->free_reqs];
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001933fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001934 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001935}
1936
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001937static inline void io_put_file(struct io_kiocb *req, struct file *file,
1938 bool fixed)
1939{
1940 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001941 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001942 else
1943 fput(file);
1944}
1945
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001946static void io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001947{
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001948 io_clean_op(req);
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001949
Jens Axboee8c2bc12020-08-15 18:44:09 -07001950 if (req->async_data)
1951 kfree(req->async_data);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001952 if (req->file)
1953 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboefcb323c2019-10-24 12:39:47 -06001954
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001955 io_req_clean_work(req);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001956}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001957
Pavel Begunkov216578e2020-10-13 09:44:00 +01001958static void __io_free_req(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03001959{
Jens Axboe0f212202020-09-13 13:09:39 -06001960 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe51a4cc12020-08-10 10:55:56 -06001961 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001962
Pavel Begunkov216578e2020-10-13 09:44:00 +01001963 io_dismantle_req(req);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001964
Jens Axboed8a6df12020-10-15 16:24:45 -06001965 percpu_counter_dec(&tctx->inflight);
Jens Axboefdaf0832020-10-30 09:37:30 -06001966 if (atomic_read(&tctx->in_idle))
Jens Axboe0f212202020-09-13 13:09:39 -06001967 wake_up(&tctx->wait);
Jens Axboee3bc8e92020-09-24 08:45:57 -06001968 put_task_struct(req->task);
1969
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001970 if (likely(!io_is_fallback_req(req)))
1971 kmem_cache_free(req_cachep, req);
1972 else
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001973 clear_bit_unlock(0, (unsigned long *) &ctx->fallback_req);
1974 percpu_ref_put(&ctx->refs);
Jens Axboee65ef562019-03-12 10:16:44 -06001975}
1976
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001977static inline void io_remove_next_linked(struct io_kiocb *req)
1978{
1979 struct io_kiocb *nxt = req->link;
1980
1981 req->link = nxt->link;
1982 nxt->link = NULL;
1983}
1984
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001985static void io_kill_linked_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001986{
Jackie Liua197f662019-11-08 08:09:12 -07001987 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001988 struct io_kiocb *link;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001989 bool cancelled = false;
1990 unsigned long flags;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001991
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001992 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001993 link = req->link;
1994
Pavel Begunkov900fad42020-10-19 16:39:16 +01001995 /*
1996 * Can happen if a linked timeout fired and link had been like
1997 * req -> link t-out -> link t-out [-> ...]
1998 */
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01001999 if (link && (link->flags & REQ_F_LTIMEOUT_ACTIVE)) {
2000 struct io_timeout_data *io = link->async_data;
2001 int ret;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002002
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002003 io_remove_next_linked(req);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00002004 link->timeout.head = NULL;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002005 ret = hrtimer_try_to_cancel(&io->timer);
2006 if (ret != -1) {
2007 io_cqring_fill_event(link, -ECANCELED);
2008 io_commit_cqring(ctx);
2009 cancelled = true;
2010 }
2011 }
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002012 req->flags &= ~REQ_F_LINK_TIMEOUT;
Pavel Begunkov216578e2020-10-13 09:44:00 +01002013 spin_unlock_irqrestore(&ctx->completion_lock, flags);
Jens Axboeab0b6452020-06-30 08:43:15 -06002014
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002015 if (cancelled) {
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002016 io_cqring_ev_posted(ctx);
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002017 io_put_req(link);
2018 }
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002019}
2020
Jens Axboe4d7dd462019-11-20 13:03:52 -07002021
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002022static void io_fail_links(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002023{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002024 struct io_kiocb *link, *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07002025 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002026 unsigned long flags;
Jens Axboe9e645e112019-05-10 16:07:28 -06002027
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002028 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002029 link = req->link;
2030 req->link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06002031
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002032 while (link) {
2033 nxt = link->link;
2034 link->link = NULL;
2035
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002036 trace_io_uring_fail_link(req, link);
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002037 io_cqring_fill_event(link, -ECANCELED);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002038
2039 /*
2040 * It's ok to free under spinlock as they're not linked anymore,
2041 * but avoid REQ_F_WORK_INITIALIZED because it may deadlock on
2042 * work.fs->lock.
2043 */
2044 if (link->flags & REQ_F_WORK_INITIALIZED)
2045 io_put_req_deferred(link, 2);
2046 else
2047 io_double_put_req(link);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002048 link = nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06002049 }
Jens Axboe2665abf2019-11-05 12:40:47 -07002050 io_commit_cqring(ctx);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002051 spin_unlock_irqrestore(&ctx->completion_lock, flags);
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002052
Jens Axboe2665abf2019-11-05 12:40:47 -07002053 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06002054}
2055
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002056static struct io_kiocb *__io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002057{
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002058 if (req->flags & REQ_F_LINK_TIMEOUT)
2059 io_kill_linked_timeout(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07002060
Jens Axboe9e645e112019-05-10 16:07:28 -06002061 /*
2062 * If LINK is set, we have dependent requests in this chain. If we
2063 * didn't fail this request, queue the first one up, moving any other
2064 * dependencies to the next request. In case of failure, fail the rest
2065 * of the chain.
2066 */
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002067 if (likely(!(req->flags & REQ_F_FAIL_LINK))) {
2068 struct io_kiocb *nxt = req->link;
2069
2070 req->link = NULL;
2071 return nxt;
2072 }
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03002073 io_fail_links(req);
2074 return NULL;
Jens Axboe4d7dd462019-11-20 13:03:52 -07002075}
Jens Axboe2665abf2019-11-05 12:40:47 -07002076
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002077static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002078{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002079 if (likely(!(req->link) && !(req->flags & REQ_F_LINK_TIMEOUT)))
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002080 return NULL;
2081 return __io_req_find_next(req);
2082}
2083
Jens Axboe87c43112020-09-30 21:00:14 -06002084static int io_req_task_work_add(struct io_kiocb *req, bool twa_signal_ok)
Jens Axboec2c4c832020-07-01 15:37:11 -06002085{
2086 struct task_struct *tsk = req->task;
2087 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe91989c72020-10-16 09:02:26 -06002088 enum task_work_notify_mode notify;
2089 int ret;
Jens Axboec2c4c832020-07-01 15:37:11 -06002090
Jens Axboe6200b0a2020-09-13 14:38:30 -06002091 if (tsk->flags & PF_EXITING)
2092 return -ESRCH;
2093
Jens Axboec2c4c832020-07-01 15:37:11 -06002094 /*
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06002095 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
2096 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
2097 * processing task_work. There's no reliable way to tell if TWA_RESUME
2098 * will do the job.
Jens Axboec2c4c832020-07-01 15:37:11 -06002099 */
Jens Axboe91989c72020-10-16 09:02:26 -06002100 notify = TWA_NONE;
Jens Axboefd7d6de2020-08-23 11:00:37 -06002101 if (!(ctx->flags & IORING_SETUP_SQPOLL) && twa_signal_ok)
Jens Axboec2c4c832020-07-01 15:37:11 -06002102 notify = TWA_SIGNAL;
2103
Jens Axboe87c43112020-09-30 21:00:14 -06002104 ret = task_work_add(tsk, &req->task_work, notify);
Jens Axboec2c4c832020-07-01 15:37:11 -06002105 if (!ret)
2106 wake_up_process(tsk);
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06002107
Jens Axboec2c4c832020-07-01 15:37:11 -06002108 return ret;
2109}
2110
Jens Axboec40f6372020-06-25 15:39:59 -06002111static void __io_req_task_cancel(struct io_kiocb *req, int error)
2112{
2113 struct io_ring_ctx *ctx = req->ctx;
2114
2115 spin_lock_irq(&ctx->completion_lock);
2116 io_cqring_fill_event(req, error);
2117 io_commit_cqring(ctx);
2118 spin_unlock_irq(&ctx->completion_lock);
2119
2120 io_cqring_ev_posted(ctx);
2121 req_set_fail_links(req);
2122 io_double_put_req(req);
2123}
2124
2125static void io_req_task_cancel(struct callback_head *cb)
2126{
2127 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002128 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002129
2130 __io_req_task_cancel(req, -ECANCELED);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002131 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002132}
2133
2134static void __io_req_task_submit(struct io_kiocb *req)
2135{
2136 struct io_ring_ctx *ctx = req->ctx;
2137
Pavel Begunkov1a38ffc2020-11-08 12:55:55 +00002138 if (!__io_sq_thread_acquire_mm(ctx) &&
2139 !__io_sq_thread_acquire_files(ctx)) {
Jens Axboec40f6372020-06-25 15:39:59 -06002140 mutex_lock(&ctx->uring_lock);
Pavel Begunkovc1379e22020-09-30 22:57:56 +03002141 __io_queue_sqe(req, NULL);
Jens Axboec40f6372020-06-25 15:39:59 -06002142 mutex_unlock(&ctx->uring_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07002143 } else {
Jens Axboec40f6372020-06-25 15:39:59 -06002144 __io_req_task_cancel(req, -EFAULT);
Jens Axboe2665abf2019-11-05 12:40:47 -07002145 }
Jens Axboe9e645e112019-05-10 16:07:28 -06002146}
2147
Jens Axboec40f6372020-06-25 15:39:59 -06002148static void io_req_task_submit(struct callback_head *cb)
2149{
2150 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06002151 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002152
2153 __io_req_task_submit(req);
Jens Axboe6d816e02020-08-11 08:04:14 -06002154 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002155}
2156
2157static void io_req_task_queue(struct io_kiocb *req)
2158{
Jens Axboec40f6372020-06-25 15:39:59 -06002159 int ret;
2160
2161 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06002162 percpu_ref_get(&req->ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06002163
Jens Axboe87c43112020-09-30 21:00:14 -06002164 ret = io_req_task_work_add(req, true);
Jens Axboec40f6372020-06-25 15:39:59 -06002165 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06002166 struct task_struct *tsk;
2167
Jens Axboec40f6372020-06-25 15:39:59 -06002168 init_task_work(&req->task_work, io_req_task_cancel);
2169 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06002170 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboec2c4c832020-07-01 15:37:11 -06002171 wake_up_process(tsk);
Jens Axboec40f6372020-06-25 15:39:59 -06002172 }
Jens Axboec40f6372020-06-25 15:39:59 -06002173}
2174
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002175static inline void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08002176{
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03002177 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03002178
Pavel Begunkov906a8c32020-06-27 14:04:55 +03002179 if (nxt)
2180 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08002181}
2182
Jens Axboe9e645e112019-05-10 16:07:28 -06002183static void io_free_req(struct io_kiocb *req)
2184{
Pavel Begunkovc3524382020-06-28 12:52:32 +03002185 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06002186 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002187}
2188
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002189struct req_batch {
2190 void *reqs[IO_IOPOLL_BATCH];
2191 int to_free;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002192
2193 struct task_struct *task;
2194 int task_refs;
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002195};
2196
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002197static inline void io_init_req_batch(struct req_batch *rb)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002198{
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002199 rb->to_free = 0;
2200 rb->task_refs = 0;
2201 rb->task = NULL;
2202}
Pavel Begunkov8766dd52020-03-14 00:31:04 +03002203
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002204static void __io_req_free_batch_flush(struct io_ring_ctx *ctx,
2205 struct req_batch *rb)
2206{
2207 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
2208 percpu_ref_put_many(&ctx->refs, rb->to_free);
2209 rb->to_free = 0;
2210}
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002211
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002212static void io_req_free_batch_finish(struct io_ring_ctx *ctx,
2213 struct req_batch *rb)
2214{
2215 if (rb->to_free)
2216 __io_req_free_batch_flush(ctx, rb);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002217 if (rb->task) {
Jens Axboed8a6df12020-10-15 16:24:45 -06002218 struct io_uring_task *tctx = rb->task->io_uring;
2219
2220 percpu_counter_sub(&tctx->inflight, rb->task_refs);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002221 put_task_struct_many(rb->task, rb->task_refs);
2222 rb->task = NULL;
2223 }
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002224}
2225
2226static void io_req_free_batch(struct req_batch *rb, struct io_kiocb *req)
2227{
2228 if (unlikely(io_is_fallback_req(req))) {
2229 io_free_req(req);
2230 return;
2231 }
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002232 io_queue_next(req);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002233
Jens Axboee3bc8e92020-09-24 08:45:57 -06002234 if (req->task != rb->task) {
Jens Axboe0f212202020-09-13 13:09:39 -06002235 if (rb->task) {
Jens Axboed8a6df12020-10-15 16:24:45 -06002236 struct io_uring_task *tctx = rb->task->io_uring;
2237
2238 percpu_counter_sub(&tctx->inflight, rb->task_refs);
Jens Axboee3bc8e92020-09-24 08:45:57 -06002239 put_task_struct_many(rb->task, rb->task_refs);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002240 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06002241 rb->task = req->task;
2242 rb->task_refs = 0;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002243 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06002244 rb->task_refs++;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002245
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01002246 io_dismantle_req(req);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002247 rb->reqs[rb->to_free++] = req;
2248 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
2249 __io_req_free_batch_flush(req->ctx, rb);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002250}
2251
Jens Axboeba816ad2019-09-28 11:36:45 -06002252/*
2253 * Drop reference to request, return next in chain (if there is one) if this
2254 * was the last reference to this request.
2255 */
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03002256static struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06002257{
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03002258 struct io_kiocb *nxt = NULL;
2259
Jens Axboe2a44f462020-02-25 13:25:41 -07002260 if (refcount_dec_and_test(&req->refs)) {
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03002261 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07002262 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07002263 }
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03002264 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002265}
2266
Jens Axboe2b188cc2019-01-07 10:46:33 -07002267static void io_put_req(struct io_kiocb *req)
2268{
Jens Axboedef596e2019-01-09 08:59:42 -07002269 if (refcount_dec_and_test(&req->refs))
2270 io_free_req(req);
2271}
2272
Pavel Begunkov216578e2020-10-13 09:44:00 +01002273static void io_put_req_deferred_cb(struct callback_head *cb)
2274{
2275 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
2276
2277 io_free_req(req);
2278}
2279
2280static void io_free_req_deferred(struct io_kiocb *req)
2281{
2282 int ret;
2283
2284 init_task_work(&req->task_work, io_put_req_deferred_cb);
2285 ret = io_req_task_work_add(req, true);
2286 if (unlikely(ret)) {
2287 struct task_struct *tsk;
2288
2289 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06002290 task_work_add(tsk, &req->task_work, TWA_NONE);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002291 wake_up_process(tsk);
2292 }
2293}
2294
2295static inline void io_put_req_deferred(struct io_kiocb *req, int refs)
2296{
2297 if (refcount_sub_and_test(refs, &req->refs))
2298 io_free_req_deferred(req);
2299}
2300
Pavel Begunkovf4db7182020-06-25 18:20:54 +03002301static struct io_wq_work *io_steal_work(struct io_kiocb *req)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002302{
Pavel Begunkov6df1db62020-07-03 22:15:06 +03002303 struct io_kiocb *nxt;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002304
Pavel Begunkovf4db7182020-06-25 18:20:54 +03002305 /*
2306 * A ref is owned by io-wq in which context we're. So, if that's the
2307 * last one, it's safe to steal next work. False negatives are Ok,
2308 * it just will be re-punted async in io_put_work()
2309 */
2310 if (refcount_read(&req->refs) != 1)
2311 return NULL;
2312
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03002313 nxt = io_req_find_next(req);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03002314 return nxt ? &nxt->work : NULL;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002315}
2316
Jens Axboe978db572019-11-14 22:39:04 -07002317static void io_double_put_req(struct io_kiocb *req)
2318{
2319 /* drop both submit and complete references */
2320 if (refcount_sub_and_test(2, &req->refs))
2321 io_free_req(req);
2322}
2323
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002324static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06002325{
Jens Axboe84f97dc2019-11-06 11:27:53 -07002326 struct io_rings *rings = ctx->rings;
2327
Jens Axboead3eb2c2019-12-18 17:12:20 -07002328 if (test_bit(0, &ctx->cq_check_overflow)) {
2329 /*
2330 * noflush == true is from the waitqueue handler, just ensure
2331 * we wake up the task, and the next invocation will flush the
2332 * entries. We cannot safely to it from here.
2333 */
2334 if (noflush && !list_empty(&ctx->cq_overflow_list))
2335 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002336
Jens Axboee6c8aa92020-09-28 13:10:13 -06002337 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboead3eb2c2019-12-18 17:12:20 -07002338 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002339
Jens Axboea3a0e432019-08-20 11:03:11 -06002340 /* See comment at the top of this file */
2341 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07002342 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06002343}
2344
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002345static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2346{
2347 struct io_rings *rings = ctx->rings;
2348
2349 /* make sure SQ entry isn't read before tail */
2350 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2351}
2352
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002353static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002354{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002355 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002356
Jens Axboebcda7ba2020-02-23 16:42:51 -07002357 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2358 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002359 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002360 kfree(kbuf);
2361 return cflags;
2362}
2363
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002364static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2365{
2366 struct io_buffer *kbuf;
2367
2368 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2369 return io_put_kbuf(req, kbuf);
2370}
2371
Jens Axboe4c6e2772020-07-01 11:29:10 -06002372static inline bool io_run_task_work(void)
2373{
Jens Axboe6200b0a2020-09-13 14:38:30 -06002374 /*
2375 * Not safe to run on exiting task, and the task_work handling will
2376 * not add work to such a task.
2377 */
2378 if (unlikely(current->flags & PF_EXITING))
2379 return false;
Jens Axboe4c6e2772020-07-01 11:29:10 -06002380 if (current->task_works) {
2381 __set_current_state(TASK_RUNNING);
2382 task_work_run();
2383 return true;
2384 }
2385
2386 return false;
2387}
2388
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002389static void io_iopoll_queue(struct list_head *again)
2390{
2391 struct io_kiocb *req;
2392
2393 do {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002394 req = list_first_entry(again, struct io_kiocb, inflight_entry);
2395 list_del(&req->inflight_entry);
Pavel Begunkov81b68a52020-07-30 18:43:46 +03002396 __io_complete_rw(req, -EAGAIN, 0, NULL);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002397 } while (!list_empty(again));
2398}
2399
Jens Axboedef596e2019-01-09 08:59:42 -07002400/*
2401 * Find and free completed poll iocbs
2402 */
2403static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
2404 struct list_head *done)
2405{
Jens Axboe8237e042019-12-28 10:48:22 -07002406 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07002407 struct io_kiocb *req;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002408 LIST_HEAD(again);
2409
2410 /* order with ->result store in io_complete_rw_iopoll() */
2411 smp_rmb();
Jens Axboedef596e2019-01-09 08:59:42 -07002412
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002413 io_init_req_batch(&rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002414 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002415 int cflags = 0;
2416
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002417 req = list_first_entry(done, struct io_kiocb, inflight_entry);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002418 if (READ_ONCE(req->result) == -EAGAIN) {
Jens Axboe56450c22020-08-26 18:58:26 -06002419 req->result = 0;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002420 req->iopoll_completed = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002421 list_move_tail(&req->inflight_entry, &again);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002422 continue;
2423 }
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002424 list_del(&req->inflight_entry);
Jens Axboedef596e2019-01-09 08:59:42 -07002425
Jens Axboebcda7ba2020-02-23 16:42:51 -07002426 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002427 cflags = io_put_rw_kbuf(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002428
2429 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07002430 (*nr_events)++;
2431
Pavel Begunkovc3524382020-06-28 12:52:32 +03002432 if (refcount_dec_and_test(&req->refs))
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002433 io_req_free_batch(&rb, req);
Jens Axboedef596e2019-01-09 08:59:42 -07002434 }
Jens Axboedef596e2019-01-09 08:59:42 -07002435
Jens Axboe09bb8392019-03-13 12:39:28 -06002436 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08002437 if (ctx->flags & IORING_SETUP_SQPOLL)
2438 io_cqring_ev_posted(ctx);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002439 io_req_free_batch_finish(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002440
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002441 if (!list_empty(&again))
2442 io_iopoll_queue(&again);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002443}
2444
Jens Axboedef596e2019-01-09 08:59:42 -07002445static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
2446 long min)
2447{
2448 struct io_kiocb *req, *tmp;
2449 LIST_HEAD(done);
2450 bool spin;
2451 int ret;
2452
2453 /*
2454 * Only spin for completions if we don't have multiple devices hanging
2455 * off our complete list, and we're under the requested amount.
2456 */
2457 spin = !ctx->poll_multi_file && *nr_events < min;
2458
2459 ret = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002460 list_for_each_entry_safe(req, tmp, &ctx->iopoll_list, inflight_entry) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002461 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07002462
2463 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002464 * Move completed and retryable entries to our local lists.
2465 * If we find a request that requires polling, break out
2466 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002467 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002468 if (READ_ONCE(req->iopoll_completed)) {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002469 list_move_tail(&req->inflight_entry, &done);
Jens Axboedef596e2019-01-09 08:59:42 -07002470 continue;
2471 }
2472 if (!list_empty(&done))
2473 break;
2474
2475 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
2476 if (ret < 0)
2477 break;
2478
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002479 /* iopoll may have completed current req */
2480 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002481 list_move_tail(&req->inflight_entry, &done);
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002482
Jens Axboedef596e2019-01-09 08:59:42 -07002483 if (ret && spin)
2484 spin = false;
2485 ret = 0;
2486 }
2487
2488 if (!list_empty(&done))
2489 io_iopoll_complete(ctx, nr_events, &done);
2490
2491 return ret;
2492}
2493
2494/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08002495 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07002496 * non-spinning poll check - we'll still enter the driver poll loop, but only
2497 * as a non-spinning completion check.
2498 */
2499static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
2500 long min)
2501{
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002502 while (!list_empty(&ctx->iopoll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07002503 int ret;
2504
2505 ret = io_do_iopoll(ctx, nr_events, min);
2506 if (ret < 0)
2507 return ret;
Pavel Begunkoveba0a4d2020-07-06 17:59:30 +03002508 if (*nr_events >= min)
Jens Axboedef596e2019-01-09 08:59:42 -07002509 return 0;
2510 }
2511
2512 return 1;
2513}
2514
2515/*
2516 * We can't just wait for polled events to come to us, we have to actively
2517 * find and complete them.
2518 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002519static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002520{
2521 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2522 return;
2523
2524 mutex_lock(&ctx->uring_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002525 while (!list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002526 unsigned int nr_events = 0;
2527
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002528 io_do_iopoll(ctx, &nr_events, 0);
Jens Axboe08f54392019-08-21 22:19:11 -06002529
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002530 /* let it sleep and repeat later if can't complete a request */
2531 if (nr_events == 0)
2532 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002533 /*
2534 * Ensure we allow local-to-the-cpu processing to take place,
2535 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002536 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002537 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002538 if (need_resched()) {
2539 mutex_unlock(&ctx->uring_lock);
2540 cond_resched();
2541 mutex_lock(&ctx->uring_lock);
2542 }
Jens Axboedef596e2019-01-09 08:59:42 -07002543 }
2544 mutex_unlock(&ctx->uring_lock);
2545}
2546
Pavel Begunkov7668b922020-07-07 16:36:21 +03002547static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002548{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002549 unsigned int nr_events = 0;
Jens Axboe2b2ed972019-10-25 10:06:15 -06002550 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002551
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002552 /*
2553 * We disallow the app entering submit/complete with polling, but we
2554 * still need to lock the ring to prevent racing with polled issue
2555 * that got punted to a workqueue.
2556 */
2557 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002558 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002559 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06002560 * Don't enter poll loop if we already have events pending.
2561 * If we do, we can potentially be spinning for commands that
2562 * already triggered a CQE (eg in error).
2563 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002564 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06002565 break;
2566
2567 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06002568 * If a submit got punted to a workqueue, we can have the
2569 * application entering polling for a command before it gets
2570 * issued. That app will hold the uring_lock for the duration
2571 * of the poll right here, so we need to take a breather every
2572 * now and then to ensure that the issue has a chance to add
2573 * the poll to the issued list. Otherwise we can spin here
2574 * forever, while the workqueue is stuck trying to acquire the
2575 * very same mutex.
2576 */
2577 if (!(++iters & 7)) {
2578 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002579 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002580 mutex_lock(&ctx->uring_lock);
2581 }
2582
Pavel Begunkov7668b922020-07-07 16:36:21 +03002583 ret = io_iopoll_getevents(ctx, &nr_events, min);
Jens Axboedef596e2019-01-09 08:59:42 -07002584 if (ret <= 0)
2585 break;
2586 ret = 0;
Pavel Begunkov7668b922020-07-07 16:36:21 +03002587 } while (min && !nr_events && !need_resched());
Jens Axboedef596e2019-01-09 08:59:42 -07002588
Jens Axboe500f9fb2019-08-19 12:15:59 -06002589 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002590 return ret;
2591}
2592
Jens Axboe491381ce2019-10-17 09:20:46 -06002593static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002594{
Jens Axboe491381ce2019-10-17 09:20:46 -06002595 /*
2596 * Tell lockdep we inherited freeze protection from submission
2597 * thread.
2598 */
2599 if (req->flags & REQ_F_ISREG) {
2600 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002601
Jens Axboe491381ce2019-10-17 09:20:46 -06002602 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002603 }
Jens Axboe491381ce2019-10-17 09:20:46 -06002604 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002605}
2606
Jens Axboea1d7c392020-06-22 11:09:46 -06002607static void io_complete_rw_common(struct kiocb *kiocb, long res,
2608 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002609{
Jens Axboe9adbd452019-12-20 08:45:55 -07002610 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002611 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002612
Jens Axboe491381ce2019-10-17 09:20:46 -06002613 if (kiocb->ki_flags & IOCB_WRITE)
2614 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002615
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002616 if (res != req->result)
2617 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002618 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002619 cflags = io_put_rw_kbuf(req);
Jens Axboea1d7c392020-06-22 11:09:46 -06002620 __io_req_complete(req, res, cflags, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002621}
2622
Jens Axboeb63534c2020-06-04 11:28:00 -06002623#ifdef CONFIG_BLOCK
2624static bool io_resubmit_prep(struct io_kiocb *req, int error)
2625{
2626 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2627 ssize_t ret = -ECANCELED;
2628 struct iov_iter iter;
2629 int rw;
2630
2631 if (error) {
2632 ret = error;
2633 goto end_req;
2634 }
2635
2636 switch (req->opcode) {
2637 case IORING_OP_READV:
2638 case IORING_OP_READ_FIXED:
2639 case IORING_OP_READ:
2640 rw = READ;
2641 break;
2642 case IORING_OP_WRITEV:
2643 case IORING_OP_WRITE_FIXED:
2644 case IORING_OP_WRITE:
2645 rw = WRITE;
2646 break;
2647 default:
2648 printk_once(KERN_WARNING "io_uring: bad opcode in resubmit %d\n",
2649 req->opcode);
2650 goto end_req;
2651 }
2652
Jens Axboee8c2bc12020-08-15 18:44:09 -07002653 if (!req->async_data) {
Jens Axboe8f3d7492020-09-14 09:28:14 -06002654 ret = io_import_iovec(rw, req, &iovec, &iter, false);
2655 if (ret < 0)
2656 goto end_req;
2657 ret = io_setup_async_rw(req, iovec, inline_vecs, &iter, false);
2658 if (!ret)
2659 return true;
2660 kfree(iovec);
2661 } else {
Jens Axboeb63534c2020-06-04 11:28:00 -06002662 return true;
Jens Axboe8f3d7492020-09-14 09:28:14 -06002663 }
Jens Axboeb63534c2020-06-04 11:28:00 -06002664end_req:
Jens Axboeb63534c2020-06-04 11:28:00 -06002665 req_set_fail_links(req);
Jens Axboeb63534c2020-06-04 11:28:00 -06002666 return false;
2667}
Jens Axboeb63534c2020-06-04 11:28:00 -06002668#endif
2669
2670static bool io_rw_reissue(struct io_kiocb *req, long res)
2671{
2672#ifdef CONFIG_BLOCK
Jens Axboe355afae2020-09-02 09:30:31 -06002673 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboeb63534c2020-06-04 11:28:00 -06002674 int ret;
2675
Jens Axboe355afae2020-09-02 09:30:31 -06002676 if (!S_ISBLK(mode) && !S_ISREG(mode))
2677 return false;
Jens Axboeb63534c2020-06-04 11:28:00 -06002678 if ((res != -EAGAIN && res != -EOPNOTSUPP) || io_wq_current_is_worker())
2679 return false;
2680
Jens Axboe28cea78a2020-09-14 10:51:17 -06002681 ret = io_sq_thread_acquire_mm_files(req->ctx, req);
Jens Axboe6d816e02020-08-11 08:04:14 -06002682
Jens Axboefdee9462020-08-27 16:46:24 -06002683 if (io_resubmit_prep(req, ret)) {
2684 refcount_inc(&req->refs);
2685 io_queue_async_work(req);
Jens Axboeb63534c2020-06-04 11:28:00 -06002686 return true;
Jens Axboefdee9462020-08-27 16:46:24 -06002687 }
2688
Jens Axboeb63534c2020-06-04 11:28:00 -06002689#endif
2690 return false;
2691}
2692
Jens Axboea1d7c392020-06-22 11:09:46 -06002693static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2694 struct io_comp_state *cs)
2695{
2696 if (!io_rw_reissue(req, res))
2697 io_complete_rw_common(&req->rw.kiocb, res, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002698}
2699
2700static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2701{
Jens Axboe9adbd452019-12-20 08:45:55 -07002702 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002703
Jens Axboea1d7c392020-06-22 11:09:46 -06002704 __io_complete_rw(req, res, res2, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002705}
2706
Jens Axboedef596e2019-01-09 08:59:42 -07002707static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2708{
Jens Axboe9adbd452019-12-20 08:45:55 -07002709 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002710
Jens Axboe491381ce2019-10-17 09:20:46 -06002711 if (kiocb->ki_flags & IOCB_WRITE)
2712 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07002713
Xiaoguang Wang2d7d6792020-06-16 02:06:37 +08002714 if (res != -EAGAIN && res != req->result)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002715 req_set_fail_links(req);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002716
2717 WRITE_ONCE(req->result, res);
2718 /* order with io_poll_complete() checking ->result */
Pavel Begunkovcd664b02020-06-25 12:37:10 +03002719 smp_wmb();
2720 WRITE_ONCE(req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002721}
2722
2723/*
2724 * After the iocb has been issued, it's safe to be found on the poll list.
2725 * Adding the kiocb to the list AFTER submission ensures that we don't
2726 * find it from a io_iopoll_getevents() thread before the issuer is done
2727 * accessing the kiocb cookie.
2728 */
2729static void io_iopoll_req_issued(struct io_kiocb *req)
2730{
2731 struct io_ring_ctx *ctx = req->ctx;
2732
2733 /*
2734 * Track whether we have multiple files in our lists. This will impact
2735 * how we do polling eventually, not spinning if we're on potentially
2736 * different devices.
2737 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002738 if (list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002739 ctx->poll_multi_file = false;
2740 } else if (!ctx->poll_multi_file) {
2741 struct io_kiocb *list_req;
2742
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002743 list_req = list_first_entry(&ctx->iopoll_list, struct io_kiocb,
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002744 inflight_entry);
Jens Axboe9adbd452019-12-20 08:45:55 -07002745 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07002746 ctx->poll_multi_file = true;
2747 }
2748
2749 /*
2750 * For fast devices, IO may have already completed. If it has, add
2751 * it to the front so we find it first.
2752 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002753 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002754 list_add(&req->inflight_entry, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002755 else
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002756 list_add_tail(&req->inflight_entry, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002757
2758 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
Jens Axboe534ca6d2020-09-02 13:52:19 -06002759 wq_has_sleeper(&ctx->sq_data->wait))
2760 wake_up(&ctx->sq_data->wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002761}
2762
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002763static void __io_state_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002764{
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002765 if (state->has_refs)
2766 fput_many(state->file, state->has_refs);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002767 state->file = NULL;
2768}
2769
2770static inline void io_state_file_put(struct io_submit_state *state)
2771{
2772 if (state->file)
2773 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002774}
2775
2776/*
2777 * Get as many references to a file as we have IOs left in this submission,
2778 * assuming most submissions are for one file, or at least that each file
2779 * has more than one submission.
2780 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002781static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002782{
2783 if (!state)
2784 return fget(fd);
2785
2786 if (state->file) {
2787 if (state->fd == fd) {
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002788 state->has_refs--;
Jens Axboe9a56a232019-01-09 09:06:50 -07002789 return state->file;
2790 }
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002791 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002792 }
2793 state->file = fget_many(fd, state->ios_left);
2794 if (!state->file)
2795 return NULL;
2796
2797 state->fd = fd;
Pavel Begunkov71b547c2020-10-10 18:34:09 +01002798 state->has_refs = state->ios_left - 1;
Jens Axboe9a56a232019-01-09 09:06:50 -07002799 return state->file;
2800}
2801
Jens Axboe4503b762020-06-01 10:00:27 -06002802static bool io_bdev_nowait(struct block_device *bdev)
2803{
2804#ifdef CONFIG_BLOCK
Jeffle Xu9ba0d0c2020-10-19 16:59:42 +08002805 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
Jens Axboe4503b762020-06-01 10:00:27 -06002806#else
2807 return true;
2808#endif
2809}
2810
Jens Axboe2b188cc2019-01-07 10:46:33 -07002811/*
2812 * If we tracked the file through the SCM inflight mechanism, we could support
2813 * any file. For now, just ensure that anything potentially problematic is done
2814 * inline.
2815 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002816static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002817{
2818 umode_t mode = file_inode(file)->i_mode;
2819
Jens Axboe4503b762020-06-01 10:00:27 -06002820 if (S_ISBLK(mode)) {
2821 if (io_bdev_nowait(file->f_inode->i_bdev))
2822 return true;
2823 return false;
2824 }
2825 if (S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002826 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002827 if (S_ISREG(mode)) {
2828 if (io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
2829 file->f_op != &io_uring_fops)
2830 return true;
2831 return false;
2832 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002833
Jens Axboec5b85622020-06-09 19:23:05 -06002834 /* any ->read/write should understand O_NONBLOCK */
2835 if (file->f_flags & O_NONBLOCK)
2836 return true;
2837
Jens Axboeaf197f52020-04-28 13:15:06 -06002838 if (!(file->f_mode & FMODE_NOWAIT))
2839 return false;
2840
2841 if (rw == READ)
2842 return file->f_op->read_iter != NULL;
2843
2844 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002845}
2846
Pavel Begunkova88fc402020-09-30 22:57:53 +03002847static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002848{
Jens Axboedef596e2019-01-09 08:59:42 -07002849 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002850 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002851 unsigned ioprio;
2852 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002853
Jens Axboe491381ce2019-10-17 09:20:46 -06002854 if (S_ISREG(file_inode(req->file)->i_mode))
2855 req->flags |= REQ_F_ISREG;
2856
Jens Axboe2b188cc2019-01-07 10:46:33 -07002857 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002858 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2859 req->flags |= REQ_F_CUR_POS;
2860 kiocb->ki_pos = req->file->f_pos;
2861 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002862 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002863 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2864 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2865 if (unlikely(ret))
2866 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002867
2868 ioprio = READ_ONCE(sqe->ioprio);
2869 if (ioprio) {
2870 ret = ioprio_check_cap(ioprio);
2871 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002872 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002873
2874 kiocb->ki_ioprio = ioprio;
2875 } else
2876 kiocb->ki_ioprio = get_current_ioprio();
2877
Stefan Bühler8449eed2019-04-27 20:34:19 +02002878 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboec5b85622020-06-09 19:23:05 -06002879 if (kiocb->ki_flags & IOCB_NOWAIT)
Stefan Bühler8449eed2019-04-27 20:34:19 +02002880 req->flags |= REQ_F_NOWAIT;
2881
Jens Axboedef596e2019-01-09 08:59:42 -07002882 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002883 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2884 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002885 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002886
Jens Axboedef596e2019-01-09 08:59:42 -07002887 kiocb->ki_flags |= IOCB_HIPRI;
2888 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002889 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002890 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002891 if (kiocb->ki_flags & IOCB_HIPRI)
2892 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002893 kiocb->ki_complete = io_complete_rw;
2894 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002895
Jens Axboe3529d8c2019-12-19 18:24:38 -07002896 req->rw.addr = READ_ONCE(sqe->addr);
2897 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002898 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002899 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002900}
2901
2902static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2903{
2904 switch (ret) {
2905 case -EIOCBQUEUED:
2906 break;
2907 case -ERESTARTSYS:
2908 case -ERESTARTNOINTR:
2909 case -ERESTARTNOHAND:
2910 case -ERESTART_RESTARTBLOCK:
2911 /*
2912 * We can't just restart the syscall, since previously
2913 * submitted sqes may already be in progress. Just fail this
2914 * IO with EINTR.
2915 */
2916 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002917 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002918 default:
2919 kiocb->ki_complete(kiocb, ret, 0);
2920 }
2921}
2922
Jens Axboea1d7c392020-06-22 11:09:46 -06002923static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
2924 struct io_comp_state *cs)
Jens Axboeba816ad2019-09-28 11:36:45 -06002925{
Jens Axboeba042912019-12-25 16:33:42 -07002926 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboee8c2bc12020-08-15 18:44:09 -07002927 struct io_async_rw *io = req->async_data;
Jens Axboeba042912019-12-25 16:33:42 -07002928
Jens Axboe227c0c92020-08-13 11:51:40 -06002929 /* add previously done IO, if any */
Jens Axboee8c2bc12020-08-15 18:44:09 -07002930 if (io && io->bytes_done > 0) {
Jens Axboe227c0c92020-08-13 11:51:40 -06002931 if (ret < 0)
Jens Axboee8c2bc12020-08-15 18:44:09 -07002932 ret = io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002933 else
Jens Axboee8c2bc12020-08-15 18:44:09 -07002934 ret += io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002935 }
2936
Jens Axboeba042912019-12-25 16:33:42 -07002937 if (req->flags & REQ_F_CUR_POS)
2938 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002939 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboea1d7c392020-06-22 11:09:46 -06002940 __io_complete_rw(req, ret, 0, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002941 else
2942 io_rw_done(kiocb, ret);
2943}
2944
Jens Axboe9adbd452019-12-20 08:45:55 -07002945static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002946 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002947{
Jens Axboe9adbd452019-12-20 08:45:55 -07002948 struct io_ring_ctx *ctx = req->ctx;
2949 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002950 struct io_mapped_ubuf *imu;
Pavel Begunkov4be1c612020-09-06 00:45:48 +03002951 u16 index, buf_index = req->buf_index;
Jens Axboeedafcce2019-01-09 09:16:05 -07002952 size_t offset;
2953 u64 buf_addr;
2954
Jens Axboeedafcce2019-01-09 09:16:05 -07002955 if (unlikely(buf_index >= ctx->nr_user_bufs))
2956 return -EFAULT;
Jens Axboeedafcce2019-01-09 09:16:05 -07002957 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2958 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002959 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002960
2961 /* overflow */
2962 if (buf_addr + len < buf_addr)
2963 return -EFAULT;
2964 /* not inside the mapped region */
2965 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2966 return -EFAULT;
2967
2968 /*
2969 * May not be a start of buffer, set size appropriately
2970 * and advance us to the beginning.
2971 */
2972 offset = buf_addr - imu->ubuf;
2973 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002974
2975 if (offset) {
2976 /*
2977 * Don't use iov_iter_advance() here, as it's really slow for
2978 * using the latter parts of a big fixed buffer - it iterates
2979 * over each segment manually. We can cheat a bit here, because
2980 * we know that:
2981 *
2982 * 1) it's a BVEC iter, we set it up
2983 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2984 * first and last bvec
2985 *
2986 * So just find our index, and adjust the iterator afterwards.
2987 * If the offset is within the first bvec (or the whole first
2988 * bvec, just use iov_iter_advance(). This makes it easier
2989 * since we can just skip the first segment, which may not
2990 * be PAGE_SIZE aligned.
2991 */
2992 const struct bio_vec *bvec = imu->bvec;
2993
2994 if (offset <= bvec->bv_len) {
2995 iov_iter_advance(iter, offset);
2996 } else {
2997 unsigned long seg_skip;
2998
2999 /* skip first vec */
3000 offset -= bvec->bv_len;
3001 seg_skip = 1 + (offset >> PAGE_SHIFT);
3002
3003 iter->bvec = bvec + seg_skip;
3004 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02003005 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06003006 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06003007 }
3008 }
3009
Jens Axboe5e559562019-11-13 16:12:46 -07003010 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07003011}
3012
Jens Axboebcda7ba2020-02-23 16:42:51 -07003013static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
3014{
3015 if (needs_lock)
3016 mutex_unlock(&ctx->uring_lock);
3017}
3018
3019static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
3020{
3021 /*
3022 * "Normal" inline submissions always hold the uring_lock, since we
3023 * grab it from the system call. Same is true for the SQPOLL offload.
3024 * The only exception is when we've detached the request and issue it
3025 * from an async worker thread, grab the lock for that case.
3026 */
3027 if (needs_lock)
3028 mutex_lock(&ctx->uring_lock);
3029}
3030
3031static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
3032 int bgid, struct io_buffer *kbuf,
3033 bool needs_lock)
3034{
3035 struct io_buffer *head;
3036
3037 if (req->flags & REQ_F_BUFFER_SELECTED)
3038 return kbuf;
3039
3040 io_ring_submit_lock(req->ctx, needs_lock);
3041
3042 lockdep_assert_held(&req->ctx->uring_lock);
3043
3044 head = idr_find(&req->ctx->io_buffer_idr, bgid);
3045 if (head) {
3046 if (!list_empty(&head->list)) {
3047 kbuf = list_last_entry(&head->list, struct io_buffer,
3048 list);
3049 list_del(&kbuf->list);
3050 } else {
3051 kbuf = head;
3052 idr_remove(&req->ctx->io_buffer_idr, bgid);
3053 }
3054 if (*len > kbuf->len)
3055 *len = kbuf->len;
3056 } else {
3057 kbuf = ERR_PTR(-ENOBUFS);
3058 }
3059
3060 io_ring_submit_unlock(req->ctx, needs_lock);
3061
3062 return kbuf;
3063}
3064
Jens Axboe4d954c22020-02-27 07:31:19 -07003065static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
3066 bool needs_lock)
3067{
3068 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003069 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07003070
3071 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003072 bgid = req->buf_index;
Jens Axboe4d954c22020-02-27 07:31:19 -07003073 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
3074 if (IS_ERR(kbuf))
3075 return kbuf;
3076 req->rw.addr = (u64) (unsigned long) kbuf;
3077 req->flags |= REQ_F_BUFFER_SELECTED;
3078 return u64_to_user_ptr(kbuf->addr);
3079}
3080
3081#ifdef CONFIG_COMPAT
3082static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
3083 bool needs_lock)
3084{
3085 struct compat_iovec __user *uiov;
3086 compat_ssize_t clen;
3087 void __user *buf;
3088 ssize_t len;
3089
3090 uiov = u64_to_user_ptr(req->rw.addr);
3091 if (!access_ok(uiov, sizeof(*uiov)))
3092 return -EFAULT;
3093 if (__get_user(clen, &uiov->iov_len))
3094 return -EFAULT;
3095 if (clen < 0)
3096 return -EINVAL;
3097
3098 len = clen;
3099 buf = io_rw_buffer_select(req, &len, needs_lock);
3100 if (IS_ERR(buf))
3101 return PTR_ERR(buf);
3102 iov[0].iov_base = buf;
3103 iov[0].iov_len = (compat_size_t) len;
3104 return 0;
3105}
3106#endif
3107
3108static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3109 bool needs_lock)
3110{
3111 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
3112 void __user *buf;
3113 ssize_t len;
3114
3115 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3116 return -EFAULT;
3117
3118 len = iov[0].iov_len;
3119 if (len < 0)
3120 return -EINVAL;
3121 buf = io_rw_buffer_select(req, &len, needs_lock);
3122 if (IS_ERR(buf))
3123 return PTR_ERR(buf);
3124 iov[0].iov_base = buf;
3125 iov[0].iov_len = len;
3126 return 0;
3127}
3128
3129static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3130 bool needs_lock)
3131{
Jens Axboedddb3e22020-06-04 11:27:01 -06003132 if (req->flags & REQ_F_BUFFER_SELECTED) {
3133 struct io_buffer *kbuf;
3134
3135 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
3136 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3137 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003138 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06003139 }
Jens Axboe4d954c22020-02-27 07:31:19 -07003140 if (!req->rw.len)
3141 return 0;
3142 else if (req->rw.len > 1)
3143 return -EINVAL;
3144
3145#ifdef CONFIG_COMPAT
3146 if (req->ctx->compat)
3147 return io_compat_import(req, iov, needs_lock);
3148#endif
3149
3150 return __io_iov_buffer_select(req, iov, needs_lock);
3151}
3152
Pavel Begunkov2846c482020-11-07 13:16:27 +00003153static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboe8452fd02020-08-18 13:58:33 -07003154 struct iovec **iovec, struct iov_iter *iter,
3155 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003156{
Jens Axboe9adbd452019-12-20 08:45:55 -07003157 void __user *buf = u64_to_user_ptr(req->rw.addr);
3158 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003159 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07003160 u8 opcode;
3161
Jens Axboed625c6e2019-12-17 19:53:05 -07003162 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03003163 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07003164 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07003165 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07003166 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003167
Jens Axboebcda7ba2020-02-23 16:42:51 -07003168 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003169 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07003170 return -EINVAL;
3171
Jens Axboe3a6820f2019-12-22 15:19:35 -07003172 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07003173 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07003174 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03003175 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07003176 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003177 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003178 }
3179
Jens Axboe3a6820f2019-12-22 15:19:35 -07003180 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
3181 *iovec = NULL;
David Laight10fc72e2020-11-07 13:16:25 +00003182 return ret;
Jens Axboe3a6820f2019-12-22 15:19:35 -07003183 }
3184
Jens Axboe4d954c22020-02-27 07:31:19 -07003185 if (req->flags & REQ_F_BUFFER_SELECT) {
3186 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003187 if (!ret) {
3188 ret = (*iovec)->iov_len;
3189 iov_iter_init(iter, rw, *iovec, 1, ret);
3190 }
Jens Axboe4d954c22020-02-27 07:31:19 -07003191 *iovec = NULL;
3192 return ret;
3193 }
3194
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02003195 return __import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter,
3196 req->ctx->compat);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003197}
3198
Jens Axboe0fef9482020-08-26 10:36:20 -06003199static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3200{
Pavel Begunkov5b09e372020-09-30 22:57:15 +03003201 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
Jens Axboe0fef9482020-08-26 10:36:20 -06003202}
3203
Jens Axboe32960612019-09-23 11:05:34 -06003204/*
3205 * For files that don't have ->read_iter() and ->write_iter(), handle them
3206 * by looping over ->read() or ->write() manually.
3207 */
Jens Axboe4017eb92020-10-22 14:14:12 -06003208static ssize_t loop_rw_iter(int rw, struct io_kiocb *req, struct iov_iter *iter)
Jens Axboe32960612019-09-23 11:05:34 -06003209{
Jens Axboe4017eb92020-10-22 14:14:12 -06003210 struct kiocb *kiocb = &req->rw.kiocb;
3211 struct file *file = req->file;
Jens Axboe32960612019-09-23 11:05:34 -06003212 ssize_t ret = 0;
3213
3214 /*
3215 * Don't support polled IO through this interface, and we can't
3216 * support non-blocking either. For the latter, this just causes
3217 * the kiocb to be handled from an async context.
3218 */
3219 if (kiocb->ki_flags & IOCB_HIPRI)
3220 return -EOPNOTSUPP;
3221 if (kiocb->ki_flags & IOCB_NOWAIT)
3222 return -EAGAIN;
3223
3224 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003225 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06003226 ssize_t nr;
3227
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003228 if (!iov_iter_is_bvec(iter)) {
3229 iovec = iov_iter_iovec(iter);
3230 } else {
Jens Axboe4017eb92020-10-22 14:14:12 -06003231 iovec.iov_base = u64_to_user_ptr(req->rw.addr);
3232 iovec.iov_len = req->rw.len;
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003233 }
3234
Jens Axboe32960612019-09-23 11:05:34 -06003235 if (rw == READ) {
3236 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003237 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003238 } else {
3239 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003240 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003241 }
3242
3243 if (nr < 0) {
3244 if (!ret)
3245 ret = nr;
3246 break;
3247 }
3248 ret += nr;
3249 if (nr != iovec.iov_len)
3250 break;
Jens Axboe4017eb92020-10-22 14:14:12 -06003251 req->rw.len -= nr;
3252 req->rw.addr += nr;
Jens Axboe32960612019-09-23 11:05:34 -06003253 iov_iter_advance(iter, nr);
3254 }
3255
3256 return ret;
3257}
3258
Jens Axboeff6165b2020-08-13 09:47:43 -06003259static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3260 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07003261{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003262 struct io_async_rw *rw = req->async_data;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003263
Jens Axboeff6165b2020-08-13 09:47:43 -06003264 memcpy(&rw->iter, iter, sizeof(*iter));
Pavel Begunkovafb87652020-09-06 00:45:46 +03003265 rw->free_iovec = iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -06003266 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06003267 /* can only be fixed buffers, no need to do anything */
3268 if (iter->type == ITER_BVEC)
3269 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003270 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06003271 unsigned iov_off = 0;
3272
3273 rw->iter.iov = rw->fast_iov;
3274 if (iter->iov != fast_iov) {
3275 iov_off = iter->iov - fast_iov;
3276 rw->iter.iov += iov_off;
3277 }
3278 if (rw->fast_iov != fast_iov)
3279 memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08003280 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003281 } else {
3282 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07003283 }
3284}
3285
Jens Axboee8c2bc12020-08-15 18:44:09 -07003286static inline int __io_alloc_async_data(struct io_kiocb *req)
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003287{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003288 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3289 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
3290 return req->async_data == NULL;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003291}
3292
Jens Axboee8c2bc12020-08-15 18:44:09 -07003293static int io_alloc_async_data(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003294{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003295 if (!io_op_defs[req->opcode].needs_async_data)
Jens Axboed3656342019-12-18 09:50:26 -07003296 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003297
Jens Axboee8c2bc12020-08-15 18:44:09 -07003298 return __io_alloc_async_data(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003299}
3300
Jens Axboeff6165b2020-08-13 09:47:43 -06003301static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3302 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06003303 struct iov_iter *iter, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003304{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003305 if (!force && !io_op_defs[req->opcode].needs_async_data)
Jens Axboe74566df2020-01-13 19:23:24 -07003306 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003307 if (!req->async_data) {
3308 if (__io_alloc_async_data(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07003309 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003310
Jens Axboeff6165b2020-08-13 09:47:43 -06003311 io_req_map_rw(req, iovec, fast_iov, iter);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003312 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003313 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003314}
3315
Pavel Begunkov73debe62020-09-30 22:57:54 +03003316static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003317{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003318 struct io_async_rw *iorw = req->async_data;
Pavel Begunkovf4bff102020-09-06 00:45:45 +03003319 struct iovec *iov = iorw->fast_iov;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003320 ssize_t ret;
3321
Pavel Begunkov2846c482020-11-07 13:16:27 +00003322 ret = io_import_iovec(rw, req, &iov, &iorw->iter, false);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003323 if (unlikely(ret < 0))
3324 return ret;
3325
Pavel Begunkovab0b1962020-09-06 00:45:47 +03003326 iorw->bytes_done = 0;
3327 iorw->free_iovec = iov;
3328 if (iov)
3329 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003330 return 0;
3331}
3332
Pavel Begunkov73debe62020-09-30 22:57:54 +03003333static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003334{
3335 ssize_t ret;
3336
Pavel Begunkova88fc402020-09-30 22:57:53 +03003337 ret = io_prep_rw(req, sqe);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003338 if (ret)
3339 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003340
Jens Axboe3529d8c2019-12-19 18:24:38 -07003341 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3342 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003343
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003344 /* either don't need iovec imported or already have it */
Pavel Begunkov2d199892020-09-30 22:57:35 +03003345 if (!req->async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003346 return 0;
Pavel Begunkov73debe62020-09-30 22:57:54 +03003347 return io_rw_prep_async(req, READ);
Jens Axboef67676d2019-12-02 11:03:47 -07003348}
3349
Jens Axboec1dd91d2020-08-03 16:43:59 -06003350/*
3351 * This is our waitqueue callback handler, registered through lock_page_async()
3352 * when we initially tried to do the IO with the iocb armed our waitqueue.
3353 * This gets called when the page is unlocked, and we generally expect that to
3354 * happen when the page IO is completed and the page is now uptodate. This will
3355 * queue a task_work based retry of the operation, attempting to copy the data
3356 * again. If the latter fails because the page was NOT uptodate, then we will
3357 * do a thread based blocking retry of the operation. That's the unexpected
3358 * slow path.
3359 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003360static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3361 int sync, void *arg)
3362{
3363 struct wait_page_queue *wpq;
3364 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003365 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003366 int ret;
3367
3368 wpq = container_of(wait, struct wait_page_queue, wait);
3369
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003370 if (!wake_page_match(wpq, key))
3371 return 0;
3372
Hao Xuc8d317a2020-09-29 20:00:45 +08003373 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003374 list_del_init(&wait->entry);
3375
Pavel Begunkove7375122020-07-12 20:42:04 +03003376 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06003377 percpu_ref_get(&req->ctx->refs);
3378
Jens Axboebcf5a062020-05-22 09:24:42 -06003379 /* submit ref gets dropped, acquire a new one */
3380 refcount_inc(&req->refs);
Jens Axboe87c43112020-09-30 21:00:14 -06003381 ret = io_req_task_work_add(req, true);
Jens Axboebcf5a062020-05-22 09:24:42 -06003382 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06003383 struct task_struct *tsk;
3384
Jens Axboebcf5a062020-05-22 09:24:42 -06003385 /* queue just for cancelation */
Pavel Begunkove7375122020-07-12 20:42:04 +03003386 init_task_work(&req->task_work, io_req_task_cancel);
Jens Axboebcf5a062020-05-22 09:24:42 -06003387 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06003388 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboec2c4c832020-07-01 15:37:11 -06003389 wake_up_process(tsk);
Jens Axboebcf5a062020-05-22 09:24:42 -06003390 }
Jens Axboebcf5a062020-05-22 09:24:42 -06003391 return 1;
3392}
3393
Jens Axboec1dd91d2020-08-03 16:43:59 -06003394/*
3395 * This controls whether a given IO request should be armed for async page
3396 * based retry. If we return false here, the request is handed to the async
3397 * worker threads for retry. If we're doing buffered reads on a regular file,
3398 * we prepare a private wait_page_queue entry and retry the operation. This
3399 * will either succeed because the page is now uptodate and unlocked, or it
3400 * will register a callback when the page is unlocked at IO completion. Through
3401 * that callback, io_uring uses task_work to setup a retry of the operation.
3402 * That retry will attempt the buffered read again. The retry will generally
3403 * succeed, or in rare cases where it fails, we then fall back to using the
3404 * async worker threads for a blocking retry.
3405 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003406static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003407{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003408 struct io_async_rw *rw = req->async_data;
3409 struct wait_page_queue *wait = &rw->wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003410 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003411
3412 /* never retry for NOWAIT, we just complete with -EAGAIN */
3413 if (req->flags & REQ_F_NOWAIT)
3414 return false;
3415
Jens Axboe227c0c92020-08-13 11:51:40 -06003416 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003417 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003418 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003419
Jens Axboebcf5a062020-05-22 09:24:42 -06003420 /*
3421 * just use poll if we can, and don't attempt if the fs doesn't
3422 * support callback based unlocks
3423 */
3424 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3425 return false;
3426
Jens Axboe3b2a4432020-08-16 10:58:43 -07003427 wait->wait.func = io_async_buf_func;
3428 wait->wait.private = req;
3429 wait->wait.flags = 0;
3430 INIT_LIST_HEAD(&wait->wait.entry);
3431 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003432 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003433 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003434 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003435}
3436
3437static int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
3438{
3439 if (req->file->f_op->read_iter)
3440 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003441 else if (req->file->f_op->read)
Jens Axboe4017eb92020-10-22 14:14:12 -06003442 return loop_rw_iter(READ, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003443 else
3444 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003445}
3446
Jens Axboea1d7c392020-06-22 11:09:46 -06003447static int io_read(struct io_kiocb *req, bool force_nonblock,
3448 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003449{
3450 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003451 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003452 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003453 struct io_async_rw *rw = req->async_data;
Jens Axboe227c0c92020-08-13 11:51:40 -06003454 ssize_t io_size, ret, ret2;
Jens Axboef5cac8b2020-09-14 09:30:38 -06003455 bool no_async;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003456
Pavel Begunkov2846c482020-11-07 13:16:27 +00003457 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003458 iter = &rw->iter;
Pavel Begunkov2846c482020-11-07 13:16:27 +00003459 iovec = NULL;
3460 } else {
3461 ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
3462 if (ret < 0)
3463 return ret;
3464 }
Pavel Begunkov632546c2020-11-07 13:16:26 +00003465 io_size = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003466 req->result = io_size;
Jens Axboe227c0c92020-08-13 11:51:40 -06003467 ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003468
Jens Axboefd6c2e42019-12-18 12:19:41 -07003469 /* Ensure we clear previously set non-block flag */
3470 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003471 kiocb->ki_flags &= ~IOCB_NOWAIT;
Pavel Begunkova88fc402020-09-30 22:57:53 +03003472 else
3473 kiocb->ki_flags |= IOCB_NOWAIT;
3474
Jens Axboefd6c2e42019-12-18 12:19:41 -07003475
Pavel Begunkov24c74672020-06-21 13:09:51 +03003476 /* If the file doesn't support async, just async punt */
Jens Axboef5cac8b2020-09-14 09:30:38 -06003477 no_async = force_nonblock && !io_file_supports_async(req->file, READ);
3478 if (no_async)
Jens Axboef67676d2019-12-02 11:03:47 -07003479 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003480
Pavel Begunkov632546c2020-11-07 13:16:26 +00003481 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), io_size);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003482 if (unlikely(ret))
3483 goto out_free;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003484
Jens Axboe227c0c92020-08-13 11:51:40 -06003485 ret = io_iter_do_read(req, iter);
Jens Axboe32960612019-09-23 11:05:34 -06003486
Jens Axboe227c0c92020-08-13 11:51:40 -06003487 if (!ret) {
3488 goto done;
3489 } else if (ret == -EIOCBQUEUED) {
3490 ret = 0;
3491 goto out_free;
3492 } else if (ret == -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003493 /* IOPOLL retry should happen for io-wq threads */
3494 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003495 goto done;
Jens Axboe355afae2020-09-02 09:30:31 -06003496 /* no retry on NONBLOCK marked file */
3497 if (req->file->f_flags & O_NONBLOCK)
3498 goto done;
Jens Axboe84216312020-08-24 11:45:26 -06003499 /* some cases will consume bytes even on error returns */
Pavel Begunkov632546c2020-11-07 13:16:26 +00003500 iov_iter_revert(iter, io_size - iov_iter_count(iter));
Jens Axboef38c7e32020-09-25 15:23:43 -06003501 ret = 0;
3502 goto copy_iov;
Jens Axboe227c0c92020-08-13 11:51:40 -06003503 } else if (ret < 0) {
Jens Axboe00d23d52020-08-25 12:59:22 -06003504 /* make sure -ERESTARTSYS -> -EINTR is done */
3505 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003506 }
3507
3508 /* read it all, or we did blocking attempt. no retry. */
Jens Axboef91daf52020-08-15 15:58:42 -07003509 if (!iov_iter_count(iter) || !force_nonblock ||
3510 (req->file->f_flags & O_NONBLOCK))
Jens Axboe227c0c92020-08-13 11:51:40 -06003511 goto done;
3512
3513 io_size -= ret;
3514copy_iov:
3515 ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
3516 if (ret2) {
3517 ret = ret2;
3518 goto out_free;
3519 }
Jens Axboef5cac8b2020-09-14 09:30:38 -06003520 if (no_async)
3521 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003522 rw = req->async_data;
Jens Axboe227c0c92020-08-13 11:51:40 -06003523 /* it's copied and will be cleaned with ->io */
3524 iovec = NULL;
3525 /* now use our persistent iterator, if we aren't already */
Jens Axboee8c2bc12020-08-15 18:44:09 -07003526 iter = &rw->iter;
Jens Axboe227c0c92020-08-13 11:51:40 -06003527retry:
Jens Axboee8c2bc12020-08-15 18:44:09 -07003528 rw->bytes_done += ret;
Jens Axboe227c0c92020-08-13 11:51:40 -06003529 /* if we can retry, do so with the callbacks armed */
3530 if (!io_rw_should_retry(req)) {
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003531 kiocb->ki_flags &= ~IOCB_WAITQ;
3532 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003533 }
Jens Axboe227c0c92020-08-13 11:51:40 -06003534
3535 /*
3536 * Now retry read with the IOCB_WAITQ parts set in the iocb. If we
3537 * get -EIOCBQUEUED, then we'll get a notification when the desired
3538 * page gets unlocked. We can also get a partial read here, and if we
3539 * do, then just retry at the new offset.
3540 */
3541 ret = io_iter_do_read(req, iter);
3542 if (ret == -EIOCBQUEUED) {
3543 ret = 0;
3544 goto out_free;
3545 } else if (ret > 0 && ret < io_size) {
3546 /* we got some bytes, but not all. retry. */
3547 goto retry;
3548 }
3549done:
3550 kiocb_done(kiocb, ret, cs);
3551 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003552out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003553 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003554 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003555 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003556 return ret;
3557}
3558
Pavel Begunkov73debe62020-09-30 22:57:54 +03003559static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003560{
3561 ssize_t ret;
3562
Pavel Begunkova88fc402020-09-30 22:57:53 +03003563 ret = io_prep_rw(req, sqe);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003564 if (ret)
3565 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003566
Jens Axboe3529d8c2019-12-19 18:24:38 -07003567 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3568 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003569
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003570 /* either don't need iovec imported or already have it */
Pavel Begunkov2d199892020-09-30 22:57:35 +03003571 if (!req->async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003572 return 0;
Pavel Begunkov73debe62020-09-30 22:57:54 +03003573 return io_rw_prep_async(req, WRITE);
Jens Axboef67676d2019-12-02 11:03:47 -07003574}
3575
Jens Axboea1d7c392020-06-22 11:09:46 -06003576static int io_write(struct io_kiocb *req, bool force_nonblock,
3577 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003578{
3579 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003580 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003581 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003582 struct io_async_rw *rw = req->async_data;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003583 ssize_t ret, ret2, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003584
Pavel Begunkov2846c482020-11-07 13:16:27 +00003585 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003586 iter = &rw->iter;
Pavel Begunkov2846c482020-11-07 13:16:27 +00003587 iovec = NULL;
3588 } else {
3589 ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
3590 if (ret < 0)
3591 return ret;
3592 }
Pavel Begunkov632546c2020-11-07 13:16:26 +00003593 io_size = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003594 req->result = io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003595
Jens Axboefd6c2e42019-12-18 12:19:41 -07003596 /* Ensure we clear previously set non-block flag */
3597 if (!force_nonblock)
Pavel Begunkova88fc402020-09-30 22:57:53 +03003598 kiocb->ki_flags &= ~IOCB_NOWAIT;
3599 else
3600 kiocb->ki_flags |= IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003601
Pavel Begunkov24c74672020-06-21 13:09:51 +03003602 /* If the file doesn't support async, just async punt */
Jens Axboeaf197f52020-04-28 13:15:06 -06003603 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003604 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003605
Jens Axboe10d59342019-12-09 20:16:22 -07003606 /* file path doesn't support NOWAIT for non-direct_IO */
3607 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3608 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003609 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003610
Pavel Begunkov632546c2020-11-07 13:16:26 +00003611 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), io_size);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003612 if (unlikely(ret))
3613 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003614
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003615 /*
3616 * Open-code file_start_write here to grab freeze protection,
3617 * which will be released by another thread in
3618 * io_complete_rw(). Fool lockdep by telling it the lock got
3619 * released so that it doesn't complain about the held lock when
3620 * we return to userspace.
3621 */
3622 if (req->flags & REQ_F_ISREG) {
Darrick J. Wong8a3c84b2020-11-10 16:50:21 -08003623 sb_start_write(file_inode(req->file)->i_sb);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003624 __sb_writers_release(file_inode(req->file)->i_sb,
3625 SB_FREEZE_WRITE);
3626 }
3627 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003628
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003629 if (req->file->f_op->write_iter)
Jens Axboeff6165b2020-08-13 09:47:43 -06003630 ret2 = call_write_iter(req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003631 else if (req->file->f_op->write)
Jens Axboe4017eb92020-10-22 14:14:12 -06003632 ret2 = loop_rw_iter(WRITE, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003633 else
3634 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003635
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003636 /*
3637 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3638 * retry them without IOCB_NOWAIT.
3639 */
3640 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3641 ret2 = -EAGAIN;
Jens Axboe355afae2020-09-02 09:30:31 -06003642 /* no retry on NONBLOCK marked file */
3643 if (ret2 == -EAGAIN && (req->file->f_flags & O_NONBLOCK))
3644 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003645 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003646 /* IOPOLL retry should happen for io-wq threads */
3647 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3648 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003649done:
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003650 kiocb_done(kiocb, ret2, cs);
3651 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003652copy_iov:
Jens Axboe84216312020-08-24 11:45:26 -06003653 /* some cases will consume bytes even on error returns */
Pavel Begunkov632546c2020-11-07 13:16:26 +00003654 iov_iter_revert(iter, io_size - iov_iter_count(iter));
Jens Axboe227c0c92020-08-13 11:51:40 -06003655 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
Jens Axboeff6165b2020-08-13 09:47:43 -06003656 if (!ret)
3657 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003658 }
Jens Axboe31b51512019-01-18 22:56:34 -07003659out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003660 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003661 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003662 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003663 return ret;
3664}
3665
Jens Axboe80a261f2020-09-28 14:23:58 -06003666static int io_renameat_prep(struct io_kiocb *req,
3667 const struct io_uring_sqe *sqe)
3668{
3669 struct io_rename *ren = &req->rename;
3670 const char __user *oldf, *newf;
3671
3672 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3673 return -EBADF;
3674
3675 ren->old_dfd = READ_ONCE(sqe->fd);
3676 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3677 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3678 ren->new_dfd = READ_ONCE(sqe->len);
3679 ren->flags = READ_ONCE(sqe->rename_flags);
3680
3681 ren->oldpath = getname(oldf);
3682 if (IS_ERR(ren->oldpath))
3683 return PTR_ERR(ren->oldpath);
3684
3685 ren->newpath = getname(newf);
3686 if (IS_ERR(ren->newpath)) {
3687 putname(ren->oldpath);
3688 return PTR_ERR(ren->newpath);
3689 }
3690
3691 req->flags |= REQ_F_NEED_CLEANUP;
3692 return 0;
3693}
3694
3695static int io_renameat(struct io_kiocb *req, bool force_nonblock)
3696{
3697 struct io_rename *ren = &req->rename;
3698 int ret;
3699
3700 if (force_nonblock)
3701 return -EAGAIN;
3702
3703 ret = do_renameat2(ren->old_dfd, ren->oldpath, ren->new_dfd,
3704 ren->newpath, ren->flags);
3705
3706 req->flags &= ~REQ_F_NEED_CLEANUP;
3707 if (ret < 0)
3708 req_set_fail_links(req);
3709 io_req_complete(req, ret);
3710 return 0;
3711}
3712
Jens Axboe14a11432020-09-28 14:27:37 -06003713static int io_unlinkat_prep(struct io_kiocb *req,
3714 const struct io_uring_sqe *sqe)
3715{
3716 struct io_unlink *un = &req->unlink;
3717 const char __user *fname;
3718
3719 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3720 return -EBADF;
3721
3722 un->dfd = READ_ONCE(sqe->fd);
3723
3724 un->flags = READ_ONCE(sqe->unlink_flags);
3725 if (un->flags & ~AT_REMOVEDIR)
3726 return -EINVAL;
3727
3728 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3729 un->filename = getname(fname);
3730 if (IS_ERR(un->filename))
3731 return PTR_ERR(un->filename);
3732
3733 req->flags |= REQ_F_NEED_CLEANUP;
3734 return 0;
3735}
3736
3737static int io_unlinkat(struct io_kiocb *req, bool force_nonblock)
3738{
3739 struct io_unlink *un = &req->unlink;
3740 int ret;
3741
3742 if (force_nonblock)
3743 return -EAGAIN;
3744
3745 if (un->flags & AT_REMOVEDIR)
3746 ret = do_rmdir(un->dfd, un->filename);
3747 else
3748 ret = do_unlinkat(un->dfd, un->filename);
3749
3750 req->flags &= ~REQ_F_NEED_CLEANUP;
3751 if (ret < 0)
3752 req_set_fail_links(req);
3753 io_req_complete(req, ret);
3754 return 0;
3755}
3756
Jens Axboe36f4fa62020-09-05 11:14:22 -06003757static int io_shutdown_prep(struct io_kiocb *req,
3758 const struct io_uring_sqe *sqe)
3759{
3760#if defined(CONFIG_NET)
3761 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3762 return -EINVAL;
3763 if (sqe->ioprio || sqe->off || sqe->addr || sqe->rw_flags ||
3764 sqe->buf_index)
3765 return -EINVAL;
3766
3767 req->shutdown.how = READ_ONCE(sqe->len);
3768 return 0;
3769#else
3770 return -EOPNOTSUPP;
3771#endif
3772}
3773
3774static int io_shutdown(struct io_kiocb *req, bool force_nonblock)
3775{
3776#if defined(CONFIG_NET)
3777 struct socket *sock;
3778 int ret;
3779
3780 if (force_nonblock)
3781 return -EAGAIN;
3782
3783 sock = sock_from_file(req->file, &ret);
3784 if (unlikely(!sock))
3785 return ret;
3786
3787 ret = __sys_shutdown_sock(sock, req->shutdown.how);
3788 io_req_complete(req, ret);
3789 return 0;
3790#else
3791 return -EOPNOTSUPP;
3792#endif
3793}
3794
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003795static int __io_splice_prep(struct io_kiocb *req,
3796 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003797{
3798 struct io_splice* sp = &req->splice;
3799 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003800
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003801 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3802 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003803
3804 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003805 sp->len = READ_ONCE(sqe->len);
3806 sp->flags = READ_ONCE(sqe->splice_flags);
3807
3808 if (unlikely(sp->flags & ~valid_flags))
3809 return -EINVAL;
3810
Pavel Begunkov8371adf2020-10-10 18:34:08 +01003811 sp->file_in = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in),
3812 (sp->flags & SPLICE_F_FD_IN_FIXED));
3813 if (!sp->file_in)
3814 return -EBADF;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003815 req->flags |= REQ_F_NEED_CLEANUP;
3816
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003817 if (!S_ISREG(file_inode(sp->file_in)->i_mode)) {
3818 /*
3819 * Splice operation will be punted aync, and here need to
3820 * modify io_wq_work.flags, so initialize io_wq_work firstly.
3821 */
3822 io_req_init_async(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003823 req->work.flags |= IO_WQ_WORK_UNBOUND;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003824 }
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003825
3826 return 0;
3827}
3828
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003829static int io_tee_prep(struct io_kiocb *req,
3830 const struct io_uring_sqe *sqe)
3831{
3832 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3833 return -EINVAL;
3834 return __io_splice_prep(req, sqe);
3835}
3836
3837static int io_tee(struct io_kiocb *req, bool force_nonblock)
3838{
3839 struct io_splice *sp = &req->splice;
3840 struct file *in = sp->file_in;
3841 struct file *out = sp->file_out;
3842 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3843 long ret = 0;
3844
3845 if (force_nonblock)
3846 return -EAGAIN;
3847 if (sp->len)
3848 ret = do_tee(in, out, sp->len, flags);
3849
3850 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3851 req->flags &= ~REQ_F_NEED_CLEANUP;
3852
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003853 if (ret != sp->len)
3854 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003855 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003856 return 0;
3857}
3858
3859static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3860{
3861 struct io_splice* sp = &req->splice;
3862
3863 sp->off_in = READ_ONCE(sqe->splice_off_in);
3864 sp->off_out = READ_ONCE(sqe->off);
3865 return __io_splice_prep(req, sqe);
3866}
3867
Pavel Begunkov014db002020-03-03 21:33:12 +03003868static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003869{
3870 struct io_splice *sp = &req->splice;
3871 struct file *in = sp->file_in;
3872 struct file *out = sp->file_out;
3873 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3874 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003875 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003876
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03003877 if (force_nonblock)
3878 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003879
3880 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
3881 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003882
Jens Axboe948a7742020-05-17 14:21:38 -06003883 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03003884 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003885
3886 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3887 req->flags &= ~REQ_F_NEED_CLEANUP;
3888
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003889 if (ret != sp->len)
3890 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003891 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003892 return 0;
3893}
3894
Jens Axboe2b188cc2019-01-07 10:46:33 -07003895/*
3896 * IORING_OP_NOP just posts a completion event, nothing else.
3897 */
Jens Axboe229a7b62020-06-22 10:13:11 -06003898static int io_nop(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003899{
3900 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003901
Jens Axboedef596e2019-01-09 08:59:42 -07003902 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3903 return -EINVAL;
3904
Jens Axboe229a7b62020-06-22 10:13:11 -06003905 __io_req_complete(req, 0, 0, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003906 return 0;
3907}
3908
Jens Axboe3529d8c2019-12-19 18:24:38 -07003909static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003910{
Jens Axboe6b063142019-01-10 22:13:58 -07003911 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003912
Jens Axboe09bb8392019-03-13 12:39:28 -06003913 if (!req->file)
3914 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003915
Jens Axboe6b063142019-01-10 22:13:58 -07003916 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07003917 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07003918 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003919 return -EINVAL;
3920
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003921 req->sync.flags = READ_ONCE(sqe->fsync_flags);
3922 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
3923 return -EINVAL;
3924
3925 req->sync.off = READ_ONCE(sqe->off);
3926 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003927 return 0;
3928}
3929
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003930static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Jens Axboe78912932020-01-14 22:09:06 -07003931{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003932 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003933 int ret;
3934
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003935 /* fsync always requires a blocking context */
3936 if (force_nonblock)
3937 return -EAGAIN;
3938
Jens Axboe9adbd452019-12-20 08:45:55 -07003939 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003940 end > 0 ? end : LLONG_MAX,
3941 req->sync.flags & IORING_FSYNC_DATASYNC);
3942 if (ret < 0)
3943 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003944 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003945 return 0;
3946}
3947
Jens Axboed63d1b52019-12-10 10:38:56 -07003948static int io_fallocate_prep(struct io_kiocb *req,
3949 const struct io_uring_sqe *sqe)
3950{
3951 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
3952 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003953 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3954 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07003955
3956 req->sync.off = READ_ONCE(sqe->off);
3957 req->sync.len = READ_ONCE(sqe->addr);
3958 req->sync.mode = READ_ONCE(sqe->len);
3959 return 0;
3960}
3961
Pavel Begunkov014db002020-03-03 21:33:12 +03003962static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07003963{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003964 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07003965
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003966 /* fallocate always requiring blocking context */
3967 if (force_nonblock)
3968 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003969 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
3970 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003971 if (ret < 0)
3972 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003973 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07003974 return 0;
3975}
3976
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003977static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003978{
Jens Axboef8748882020-01-08 17:47:02 -07003979 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003980 int ret;
3981
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003982 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07003983 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003984 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07003985 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003986
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003987 /* open.how should be already initialised */
3988 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06003989 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003990
Pavel Begunkov25e72d12020-06-03 18:03:23 +03003991 req->open.dfd = READ_ONCE(sqe->fd);
3992 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07003993 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003994 if (IS_ERR(req->open.filename)) {
3995 ret = PTR_ERR(req->open.filename);
3996 req->open.filename = NULL;
3997 return ret;
3998 }
Jens Axboe4022e7a2020-03-19 19:23:18 -06003999 req->open.nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe944d1442020-11-13 16:48:44 -07004000 req->open.ignore_nonblock = false;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004001 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004002 return 0;
4003}
4004
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004005static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4006{
4007 u64 flags, mode;
4008
Jens Axboe14587a462020-09-05 11:36:08 -06004009 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe4eb8dde2020-09-18 19:36:24 -06004010 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004011 mode = READ_ONCE(sqe->len);
4012 flags = READ_ONCE(sqe->open_flags);
4013 req->open.how = build_open_how(flags, mode);
4014 return __io_openat_prep(req, sqe);
4015}
4016
Jens Axboecebdb982020-01-08 17:59:24 -07004017static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4018{
4019 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07004020 size_t len;
4021 int ret;
4022
Jens Axboe14587a462020-09-05 11:36:08 -06004023 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe4eb8dde2020-09-18 19:36:24 -06004024 return -EINVAL;
Jens Axboecebdb982020-01-08 17:59:24 -07004025 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4026 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07004027 if (len < OPEN_HOW_SIZE_VER0)
4028 return -EINVAL;
4029
4030 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
4031 len);
4032 if (ret)
4033 return ret;
4034
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004035 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07004036}
4037
Pavel Begunkov014db002020-03-03 21:33:12 +03004038static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004039{
4040 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004041 struct file *file;
4042 int ret;
4043
Jens Axboe944d1442020-11-13 16:48:44 -07004044 if (force_nonblock && !req->open.ignore_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004045 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004046
Jens Axboecebdb982020-01-08 17:59:24 -07004047 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004048 if (ret)
4049 goto err;
4050
Jens Axboe4022e7a2020-03-19 19:23:18 -06004051 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004052 if (ret < 0)
4053 goto err;
4054
4055 file = do_filp_open(req->open.dfd, req->open.filename, &op);
4056 if (IS_ERR(file)) {
4057 put_unused_fd(ret);
4058 ret = PTR_ERR(file);
Jens Axboe944d1442020-11-13 16:48:44 -07004059 /*
4060 * A work-around to ensure that /proc/self works that way
4061 * that it should - if we get -EOPNOTSUPP back, then assume
4062 * that proc_self_get_link() failed us because we're in async
4063 * context. We should be safe to retry this from the task
4064 * itself with force_nonblock == false set, as it should not
4065 * block on lookup. Would be nice to know this upfront and
4066 * avoid the async dance, but doesn't seem feasible.
4067 */
4068 if (ret == -EOPNOTSUPP && io_wq_current_is_worker()) {
4069 req->open.ignore_nonblock = true;
4070 refcount_inc(&req->refs);
4071 io_req_task_queue(req);
4072 return 0;
4073 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004074 } else {
4075 fsnotify_open(file);
4076 fd_install(ret, file);
4077 }
4078err:
4079 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004080 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004081 if (ret < 0)
4082 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004083 io_req_complete(req, ret);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004084 return 0;
4085}
4086
Pavel Begunkov014db002020-03-03 21:33:12 +03004087static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07004088{
Pavel Begunkov014db002020-03-03 21:33:12 +03004089 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07004090}
4091
Jens Axboe067524e2020-03-02 16:32:28 -07004092static int io_remove_buffers_prep(struct io_kiocb *req,
4093 const struct io_uring_sqe *sqe)
4094{
4095 struct io_provide_buf *p = &req->pbuf;
4096 u64 tmp;
4097
4098 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
4099 return -EINVAL;
4100
4101 tmp = READ_ONCE(sqe->fd);
4102 if (!tmp || tmp > USHRT_MAX)
4103 return -EINVAL;
4104
4105 memset(p, 0, sizeof(*p));
4106 p->nbufs = tmp;
4107 p->bgid = READ_ONCE(sqe->buf_group);
4108 return 0;
4109}
4110
4111static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
4112 int bgid, unsigned nbufs)
4113{
4114 unsigned i = 0;
4115
4116 /* shouldn't happen */
4117 if (!nbufs)
4118 return 0;
4119
4120 /* the head kbuf is the list itself */
4121 while (!list_empty(&buf->list)) {
4122 struct io_buffer *nxt;
4123
4124 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4125 list_del(&nxt->list);
4126 kfree(nxt);
4127 if (++i == nbufs)
4128 return i;
4129 }
4130 i++;
4131 kfree(buf);
4132 idr_remove(&ctx->io_buffer_idr, bgid);
4133
4134 return i;
4135}
4136
Jens Axboe229a7b62020-06-22 10:13:11 -06004137static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock,
4138 struct io_comp_state *cs)
Jens Axboe067524e2020-03-02 16:32:28 -07004139{
4140 struct io_provide_buf *p = &req->pbuf;
4141 struct io_ring_ctx *ctx = req->ctx;
4142 struct io_buffer *head;
4143 int ret = 0;
4144
4145 io_ring_submit_lock(ctx, !force_nonblock);
4146
4147 lockdep_assert_held(&ctx->uring_lock);
4148
4149 ret = -ENOENT;
4150 head = idr_find(&ctx->io_buffer_idr, p->bgid);
4151 if (head)
4152 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
4153
4154 io_ring_submit_lock(ctx, !force_nonblock);
4155 if (ret < 0)
4156 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004157 __io_req_complete(req, ret, 0, cs);
Jens Axboe067524e2020-03-02 16:32:28 -07004158 return 0;
4159}
4160
Jens Axboeddf0322d2020-02-23 16:41:33 -07004161static int io_provide_buffers_prep(struct io_kiocb *req,
4162 const struct io_uring_sqe *sqe)
4163{
4164 struct io_provide_buf *p = &req->pbuf;
4165 u64 tmp;
4166
4167 if (sqe->ioprio || sqe->rw_flags)
4168 return -EINVAL;
4169
4170 tmp = READ_ONCE(sqe->fd);
4171 if (!tmp || tmp > USHRT_MAX)
4172 return -E2BIG;
4173 p->nbufs = tmp;
4174 p->addr = READ_ONCE(sqe->addr);
4175 p->len = READ_ONCE(sqe->len);
4176
Bijan Mottahedehefe68c12020-06-04 18:01:52 -07004177 if (!access_ok(u64_to_user_ptr(p->addr), (p->len * p->nbufs)))
Jens Axboeddf0322d2020-02-23 16:41:33 -07004178 return -EFAULT;
4179
4180 p->bgid = READ_ONCE(sqe->buf_group);
4181 tmp = READ_ONCE(sqe->off);
4182 if (tmp > USHRT_MAX)
4183 return -E2BIG;
4184 p->bid = tmp;
4185 return 0;
4186}
4187
4188static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
4189{
4190 struct io_buffer *buf;
4191 u64 addr = pbuf->addr;
4192 int i, bid = pbuf->bid;
4193
4194 for (i = 0; i < pbuf->nbufs; i++) {
4195 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
4196 if (!buf)
4197 break;
4198
4199 buf->addr = addr;
4200 buf->len = pbuf->len;
4201 buf->bid = bid;
4202 addr += pbuf->len;
4203 bid++;
4204 if (!*head) {
4205 INIT_LIST_HEAD(&buf->list);
4206 *head = buf;
4207 } else {
4208 list_add_tail(&buf->list, &(*head)->list);
4209 }
4210 }
4211
4212 return i ? i : -ENOMEM;
4213}
4214
Jens Axboe229a7b62020-06-22 10:13:11 -06004215static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock,
4216 struct io_comp_state *cs)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004217{
4218 struct io_provide_buf *p = &req->pbuf;
4219 struct io_ring_ctx *ctx = req->ctx;
4220 struct io_buffer *head, *list;
4221 int ret = 0;
4222
4223 io_ring_submit_lock(ctx, !force_nonblock);
4224
4225 lockdep_assert_held(&ctx->uring_lock);
4226
4227 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
4228
4229 ret = io_add_buffers(p, &head);
4230 if (ret < 0)
4231 goto out;
4232
4233 if (!list) {
4234 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
4235 GFP_KERNEL);
4236 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07004237 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004238 goto out;
4239 }
4240 }
4241out:
4242 io_ring_submit_unlock(ctx, !force_nonblock);
4243 if (ret < 0)
4244 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004245 __io_req_complete(req, ret, 0, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004246 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004247}
4248
Jens Axboe3e4827b2020-01-08 15:18:09 -07004249static int io_epoll_ctl_prep(struct io_kiocb *req,
4250 const struct io_uring_sqe *sqe)
4251{
4252#if defined(CONFIG_EPOLL)
4253 if (sqe->ioprio || sqe->buf_index)
4254 return -EINVAL;
Jens Axboe6ca56f82020-09-18 16:51:19 -06004255 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004256 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004257
4258 req->epoll.epfd = READ_ONCE(sqe->fd);
4259 req->epoll.op = READ_ONCE(sqe->len);
4260 req->epoll.fd = READ_ONCE(sqe->off);
4261
4262 if (ep_op_has_event(req->epoll.op)) {
4263 struct epoll_event __user *ev;
4264
4265 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
4266 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
4267 return -EFAULT;
4268 }
4269
4270 return 0;
4271#else
4272 return -EOPNOTSUPP;
4273#endif
4274}
4275
Jens Axboe229a7b62020-06-22 10:13:11 -06004276static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock,
4277 struct io_comp_state *cs)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004278{
4279#if defined(CONFIG_EPOLL)
4280 struct io_epoll *ie = &req->epoll;
4281 int ret;
4282
4283 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
4284 if (force_nonblock && ret == -EAGAIN)
4285 return -EAGAIN;
4286
4287 if (ret < 0)
4288 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004289 __io_req_complete(req, ret, 0, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07004290 return 0;
4291#else
4292 return -EOPNOTSUPP;
4293#endif
4294}
4295
Jens Axboec1ca7572019-12-25 22:18:28 -07004296static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4297{
4298#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4299 if (sqe->ioprio || sqe->buf_index || sqe->off)
4300 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004301 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4302 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07004303
4304 req->madvise.addr = READ_ONCE(sqe->addr);
4305 req->madvise.len = READ_ONCE(sqe->len);
4306 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
4307 return 0;
4308#else
4309 return -EOPNOTSUPP;
4310#endif
4311}
4312
Pavel Begunkov014db002020-03-03 21:33:12 +03004313static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07004314{
4315#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4316 struct io_madvise *ma = &req->madvise;
4317 int ret;
4318
4319 if (force_nonblock)
4320 return -EAGAIN;
4321
Minchan Kim0726b012020-10-17 16:14:50 -07004322 ret = do_madvise(current->mm, ma->addr, ma->len, ma->advice);
Jens Axboec1ca7572019-12-25 22:18:28 -07004323 if (ret < 0)
4324 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004325 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07004326 return 0;
4327#else
4328 return -EOPNOTSUPP;
4329#endif
4330}
4331
Jens Axboe4840e412019-12-25 22:03:45 -07004332static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4333{
4334 if (sqe->ioprio || sqe->buf_index || sqe->addr)
4335 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004336 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4337 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07004338
4339 req->fadvise.offset = READ_ONCE(sqe->off);
4340 req->fadvise.len = READ_ONCE(sqe->len);
4341 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
4342 return 0;
4343}
4344
Pavel Begunkov014db002020-03-03 21:33:12 +03004345static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07004346{
4347 struct io_fadvise *fa = &req->fadvise;
4348 int ret;
4349
Jens Axboe3e694262020-02-01 09:22:49 -07004350 if (force_nonblock) {
4351 switch (fa->advice) {
4352 case POSIX_FADV_NORMAL:
4353 case POSIX_FADV_RANDOM:
4354 case POSIX_FADV_SEQUENTIAL:
4355 break;
4356 default:
4357 return -EAGAIN;
4358 }
4359 }
Jens Axboe4840e412019-12-25 22:03:45 -07004360
4361 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
4362 if (ret < 0)
4363 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004364 io_req_complete(req, ret);
Jens Axboe4840e412019-12-25 22:03:45 -07004365 return 0;
4366}
4367
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004368static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4369{
Jens Axboe6ca56f82020-09-18 16:51:19 -06004370 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004371 return -EINVAL;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004372 if (sqe->ioprio || sqe->buf_index)
4373 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004374 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004375 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004376
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004377 req->statx.dfd = READ_ONCE(sqe->fd);
4378 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004379 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004380 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4381 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004382
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004383 return 0;
4384}
4385
Pavel Begunkov014db002020-03-03 21:33:12 +03004386static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004387{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004388 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004389 int ret;
4390
Jens Axboe5b0bbee2020-04-27 10:41:22 -06004391 if (force_nonblock) {
4392 /* only need file table for an actual valid fd */
4393 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
4394 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004395 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06004396 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004397
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004398 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
4399 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004400
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004401 if (ret < 0)
4402 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004403 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004404 return 0;
4405}
4406
Jens Axboeb5dba592019-12-11 14:02:38 -07004407static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4408{
4409 /*
4410 * If we queue this for async, it must not be cancellable. That would
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08004411 * leave the 'file' in an undeterminate state, and here need to modify
4412 * io_wq_work.flags, so initialize io_wq_work firstly.
Jens Axboeb5dba592019-12-11 14:02:38 -07004413 */
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08004414 io_req_init_async(req);
Jens Axboeb5dba592019-12-11 14:02:38 -07004415 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
4416
Jens Axboe14587a462020-09-05 11:36:08 -06004417 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004418 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004419 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
4420 sqe->rw_flags || sqe->buf_index)
4421 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004422 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004423 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004424
4425 req->close.fd = READ_ONCE(sqe->fd);
Jens Axboe0f212202020-09-13 13:09:39 -06004426 if ((req->file && req->file->f_op == &io_uring_fops))
Jens Axboefd2206e2020-06-02 16:40:47 -06004427 return -EBADF;
4428
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004429 req->close.put_file = NULL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004430 return 0;
4431}
4432
Jens Axboe229a7b62020-06-22 10:13:11 -06004433static int io_close(struct io_kiocb *req, bool force_nonblock,
4434 struct io_comp_state *cs)
Jens Axboeb5dba592019-12-11 14:02:38 -07004435{
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004436 struct io_close *close = &req->close;
Jens Axboeb5dba592019-12-11 14:02:38 -07004437 int ret;
4438
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004439 /* might be already done during nonblock submission */
4440 if (!close->put_file) {
4441 ret = __close_fd_get_file(close->fd, &close->put_file);
4442 if (ret < 0)
4443 return (ret == -ENOENT) ? -EBADF : ret;
4444 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004445
4446 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004447 if (close->put_file->f_op->flush && force_nonblock) {
Pavel Begunkov24c74672020-06-21 13:09:51 +03004448 /* was never set, but play safe */
4449 req->flags &= ~REQ_F_NOWAIT;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004450 /* avoid grabbing files - we don't need the files */
Pavel Begunkov24c74672020-06-21 13:09:51 +03004451 req->flags |= REQ_F_NO_FILE_TABLE;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004452 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004453 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004454
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004455 /* No ->flush() or already async, safely close from here */
Jens Axboe98447d62020-10-14 10:48:51 -06004456 ret = filp_close(close->put_file, req->work.identity->files);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004457 if (ret < 0)
4458 req_set_fail_links(req);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004459 fput(close->put_file);
4460 close->put_file = NULL;
Jens Axboe229a7b62020-06-22 10:13:11 -06004461 __io_req_complete(req, ret, 0, cs);
Jens Axboe1a417f42020-01-31 17:16:48 -07004462 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004463}
4464
Jens Axboe3529d8c2019-12-19 18:24:38 -07004465static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004466{
4467 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004468
4469 if (!req->file)
4470 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004471
4472 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4473 return -EINVAL;
4474 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
4475 return -EINVAL;
4476
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004477 req->sync.off = READ_ONCE(sqe->off);
4478 req->sync.len = READ_ONCE(sqe->len);
4479 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004480 return 0;
4481}
4482
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004483static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004484{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004485 int ret;
4486
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004487 /* sync_file_range always requires a blocking context */
4488 if (force_nonblock)
4489 return -EAGAIN;
4490
Jens Axboe9adbd452019-12-20 08:45:55 -07004491 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004492 req->sync.flags);
4493 if (ret < 0)
4494 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004495 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004496 return 0;
4497}
4498
YueHaibing469956e2020-03-04 15:53:52 +08004499#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004500static int io_setup_async_msg(struct io_kiocb *req,
4501 struct io_async_msghdr *kmsg)
4502{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004503 struct io_async_msghdr *async_msg = req->async_data;
4504
4505 if (async_msg)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004506 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004507 if (io_alloc_async_data(req)) {
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004508 if (kmsg->iov != kmsg->fast_iov)
4509 kfree(kmsg->iov);
4510 return -ENOMEM;
4511 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004512 async_msg = req->async_data;
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004513 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004514 memcpy(async_msg, kmsg, sizeof(*kmsg));
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004515 return -EAGAIN;
4516}
4517
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004518static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4519 struct io_async_msghdr *iomsg)
4520{
4521 iomsg->iov = iomsg->fast_iov;
4522 iomsg->msg.msg_name = &iomsg->addr;
4523 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
4524 req->sr_msg.msg_flags, &iomsg->iov);
4525}
4526
Jens Axboe3529d8c2019-12-19 18:24:38 -07004527static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004528{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004529 struct io_async_msghdr *async_msg = req->async_data;
Jens Axboee47293f2019-12-20 08:58:21 -07004530 struct io_sr_msg *sr = &req->sr_msg;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004531 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004532
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004533 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4534 return -EINVAL;
4535
Jens Axboee47293f2019-12-20 08:58:21 -07004536 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004537 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004538 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004539
Jens Axboed8768362020-02-27 14:17:49 -07004540#ifdef CONFIG_COMPAT
4541 if (req->ctx->compat)
4542 sr->msg_flags |= MSG_CMSG_COMPAT;
4543#endif
4544
Jens Axboee8c2bc12020-08-15 18:44:09 -07004545 if (!async_msg || !io_op_defs[req->opcode].needs_async_data)
Jens Axboe3529d8c2019-12-19 18:24:38 -07004546 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004547 ret = io_sendmsg_copy_hdr(req, async_msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004548 if (!ret)
4549 req->flags |= REQ_F_NEED_CLEANUP;
4550 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004551}
4552
Jens Axboe229a7b62020-06-22 10:13:11 -06004553static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4554 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004555{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004556 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004557 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004558 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004559 int ret;
4560
Jens Axboe03b12302019-12-02 18:50:25 -07004561 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004562 if (unlikely(!sock))
4563 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004564
Jens Axboee8c2bc12020-08-15 18:44:09 -07004565 if (req->async_data) {
4566 kmsg = req->async_data;
4567 kmsg->msg.msg_name = &kmsg->addr;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004568 /* if iov is set, it's allocated already */
4569 if (!kmsg->iov)
4570 kmsg->iov = kmsg->fast_iov;
4571 kmsg->msg.msg_iter.iov = kmsg->iov;
4572 } else {
4573 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004574 if (ret)
4575 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004576 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004577 }
4578
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004579 flags = req->sr_msg.msg_flags;
4580 if (flags & MSG_DONTWAIT)
4581 req->flags |= REQ_F_NOWAIT;
4582 else if (force_nonblock)
4583 flags |= MSG_DONTWAIT;
4584
4585 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
4586 if (force_nonblock && ret == -EAGAIN)
4587 return io_setup_async_msg(req, kmsg);
4588 if (ret == -ERESTARTSYS)
4589 ret = -EINTR;
4590
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004591 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe03b12302019-12-02 18:50:25 -07004592 kfree(kmsg->iov);
4593 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07004594 if (ret < 0)
4595 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004596 __io_req_complete(req, ret, 0, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004597 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004598}
4599
Jens Axboe229a7b62020-06-22 10:13:11 -06004600static int io_send(struct io_kiocb *req, bool force_nonblock,
4601 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004602{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004603 struct io_sr_msg *sr = &req->sr_msg;
4604 struct msghdr msg;
4605 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004606 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004607 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004608 int ret;
4609
4610 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004611 if (unlikely(!sock))
4612 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004613
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004614 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4615 if (unlikely(ret))
Zheng Bin14db8412020-09-09 20:12:37 +08004616 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004617
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004618 msg.msg_name = NULL;
4619 msg.msg_control = NULL;
4620 msg.msg_controllen = 0;
4621 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004622
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004623 flags = req->sr_msg.msg_flags;
4624 if (flags & MSG_DONTWAIT)
4625 req->flags |= REQ_F_NOWAIT;
4626 else if (force_nonblock)
4627 flags |= MSG_DONTWAIT;
Jens Axboe03b12302019-12-02 18:50:25 -07004628
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004629 msg.msg_flags = flags;
4630 ret = sock_sendmsg(sock, &msg);
4631 if (force_nonblock && ret == -EAGAIN)
4632 return -EAGAIN;
4633 if (ret == -ERESTARTSYS)
4634 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004635
Jens Axboe03b12302019-12-02 18:50:25 -07004636 if (ret < 0)
4637 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004638 __io_req_complete(req, ret, 0, cs);
Jens Axboe03b12302019-12-02 18:50:25 -07004639 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004640}
4641
Pavel Begunkov1400e692020-07-12 20:41:05 +03004642static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4643 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004644{
4645 struct io_sr_msg *sr = &req->sr_msg;
4646 struct iovec __user *uiov;
4647 size_t iov_len;
4648 int ret;
4649
Pavel Begunkov1400e692020-07-12 20:41:05 +03004650 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4651 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004652 if (ret)
4653 return ret;
4654
4655 if (req->flags & REQ_F_BUFFER_SELECT) {
4656 if (iov_len > 1)
4657 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004658 if (copy_from_user(iomsg->iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004659 return -EFAULT;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004660 sr->len = iomsg->iov[0].iov_len;
4661 iov_iter_init(&iomsg->msg.msg_iter, READ, iomsg->iov, 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004662 sr->len);
Pavel Begunkov1400e692020-07-12 20:41:05 +03004663 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004664 } else {
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004665 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
4666 &iomsg->iov, &iomsg->msg.msg_iter,
4667 false);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004668 if (ret > 0)
4669 ret = 0;
4670 }
4671
4672 return ret;
4673}
4674
4675#ifdef CONFIG_COMPAT
4676static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004677 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004678{
4679 struct compat_msghdr __user *msg_compat;
4680 struct io_sr_msg *sr = &req->sr_msg;
4681 struct compat_iovec __user *uiov;
4682 compat_uptr_t ptr;
4683 compat_size_t len;
4684 int ret;
4685
Pavel Begunkov270a5942020-07-12 20:41:04 +03004686 msg_compat = (struct compat_msghdr __user *) sr->umsg;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004687 ret = __get_compat_msghdr(&iomsg->msg, msg_compat, &iomsg->uaddr,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004688 &ptr, &len);
4689 if (ret)
4690 return ret;
4691
4692 uiov = compat_ptr(ptr);
4693 if (req->flags & REQ_F_BUFFER_SELECT) {
4694 compat_ssize_t clen;
4695
4696 if (len > 1)
4697 return -EINVAL;
4698 if (!access_ok(uiov, sizeof(*uiov)))
4699 return -EFAULT;
4700 if (__get_user(clen, &uiov->iov_len))
4701 return -EFAULT;
4702 if (clen < 0)
4703 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004704 sr->len = iomsg->iov[0].iov_len;
4705 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004706 } else {
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004707 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
4708 UIO_FASTIOV, &iomsg->iov,
4709 &iomsg->msg.msg_iter, true);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004710 if (ret < 0)
4711 return ret;
4712 }
4713
4714 return 0;
4715}
Jens Axboe03b12302019-12-02 18:50:25 -07004716#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004717
Pavel Begunkov1400e692020-07-12 20:41:05 +03004718static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4719 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004720{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004721 iomsg->msg.msg_name = &iomsg->addr;
4722 iomsg->iov = iomsg->fast_iov;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004723
4724#ifdef CONFIG_COMPAT
4725 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004726 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004727#endif
4728
Pavel Begunkov1400e692020-07-12 20:41:05 +03004729 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004730}
4731
Jens Axboebcda7ba2020-02-23 16:42:51 -07004732static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004733 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004734{
4735 struct io_sr_msg *sr = &req->sr_msg;
4736 struct io_buffer *kbuf;
4737
Jens Axboebcda7ba2020-02-23 16:42:51 -07004738 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4739 if (IS_ERR(kbuf))
4740 return kbuf;
4741
4742 sr->kbuf = kbuf;
4743 req->flags |= REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004744 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07004745}
4746
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004747static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4748{
4749 return io_put_kbuf(req, req->sr_msg.kbuf);
4750}
4751
Jens Axboe3529d8c2019-12-19 18:24:38 -07004752static int io_recvmsg_prep(struct io_kiocb *req,
4753 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07004754{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004755 struct io_async_msghdr *async_msg = req->async_data;
Jens Axboee47293f2019-12-20 08:58:21 -07004756 struct io_sr_msg *sr = &req->sr_msg;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004757 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004758
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004759 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4760 return -EINVAL;
4761
Jens Axboe3529d8c2019-12-19 18:24:38 -07004762 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004763 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004764 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004765 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004766
Jens Axboed8768362020-02-27 14:17:49 -07004767#ifdef CONFIG_COMPAT
4768 if (req->ctx->compat)
4769 sr->msg_flags |= MSG_CMSG_COMPAT;
4770#endif
4771
Jens Axboee8c2bc12020-08-15 18:44:09 -07004772 if (!async_msg || !io_op_defs[req->opcode].needs_async_data)
Jens Axboe06b76d42019-12-19 14:44:26 -07004773 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004774 ret = io_recvmsg_copy_hdr(req, async_msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004775 if (!ret)
4776 req->flags |= REQ_F_NEED_CLEANUP;
4777 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004778}
4779
Jens Axboe229a7b62020-06-22 10:13:11 -06004780static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4781 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004782{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004783 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004784 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004785 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004786 unsigned flags;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004787 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004788
Jens Axboe0fa03c62019-04-19 13:34:07 -06004789 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004790 if (unlikely(!sock))
4791 return ret;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004792
Jens Axboee8c2bc12020-08-15 18:44:09 -07004793 if (req->async_data) {
4794 kmsg = req->async_data;
4795 kmsg->msg.msg_name = &kmsg->addr;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004796 /* if iov is set, it's allocated already */
4797 if (!kmsg->iov)
4798 kmsg->iov = kmsg->fast_iov;
4799 kmsg->msg.msg_iter.iov = kmsg->iov;
4800 } else {
4801 ret = io_recvmsg_copy_hdr(req, &iomsg);
4802 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004803 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004804 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004805 }
4806
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004807 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004808 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004809 if (IS_ERR(kbuf))
4810 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004811 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
4812 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
4813 1, req->sr_msg.len);
4814 }
4815
4816 flags = req->sr_msg.msg_flags;
4817 if (flags & MSG_DONTWAIT)
4818 req->flags |= REQ_F_NOWAIT;
4819 else if (force_nonblock)
4820 flags |= MSG_DONTWAIT;
4821
4822 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4823 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004824 if (force_nonblock && ret == -EAGAIN)
4825 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004826 if (ret == -ERESTARTSYS)
4827 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004828
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004829 if (req->flags & REQ_F_BUFFER_SELECTED)
4830 cflags = io_put_recv_kbuf(req);
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004831 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07004832 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004833 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004834 if (ret < 0)
4835 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004836 __io_req_complete(req, ret, cflags, cs);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004837 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004838}
4839
Jens Axboe229a7b62020-06-22 10:13:11 -06004840static int io_recv(struct io_kiocb *req, bool force_nonblock,
4841 struct io_comp_state *cs)
Jens Axboefddafac2020-01-04 20:19:44 -07004842{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004843 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004844 struct io_sr_msg *sr = &req->sr_msg;
4845 struct msghdr msg;
4846 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07004847 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004848 struct iovec iov;
4849 unsigned flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004850 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004851
Jens Axboefddafac2020-01-04 20:19:44 -07004852 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004853 if (unlikely(!sock))
4854 return ret;
Jens Axboefddafac2020-01-04 20:19:44 -07004855
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004856 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004857 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004858 if (IS_ERR(kbuf))
4859 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004860 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07004861 }
4862
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004863 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004864 if (unlikely(ret))
4865 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07004866
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004867 msg.msg_name = NULL;
4868 msg.msg_control = NULL;
4869 msg.msg_controllen = 0;
4870 msg.msg_namelen = 0;
4871 msg.msg_iocb = NULL;
4872 msg.msg_flags = 0;
4873
4874 flags = req->sr_msg.msg_flags;
4875 if (flags & MSG_DONTWAIT)
4876 req->flags |= REQ_F_NOWAIT;
4877 else if (force_nonblock)
4878 flags |= MSG_DONTWAIT;
4879
4880 ret = sock_recvmsg(sock, &msg, flags);
4881 if (force_nonblock && ret == -EAGAIN)
4882 return -EAGAIN;
4883 if (ret == -ERESTARTSYS)
4884 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004885out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004886 if (req->flags & REQ_F_BUFFER_SELECTED)
4887 cflags = io_put_recv_kbuf(req);
Jens Axboefddafac2020-01-04 20:19:44 -07004888 if (ret < 0)
4889 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004890 __io_req_complete(req, ret, cflags, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004891 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004892}
4893
Jens Axboe3529d8c2019-12-19 18:24:38 -07004894static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004895{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004896 struct io_accept *accept = &req->accept;
4897
Jens Axboe14587a462020-09-05 11:36:08 -06004898 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe17f2fe32019-10-17 14:42:58 -06004899 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05004900 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004901 return -EINVAL;
4902
Jens Axboed55e5f52019-12-11 16:12:15 -07004903 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4904 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004905 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06004906 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004907 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004908}
Jens Axboe17f2fe32019-10-17 14:42:58 -06004909
Jens Axboe229a7b62020-06-22 10:13:11 -06004910static int io_accept(struct io_kiocb *req, bool force_nonblock,
4911 struct io_comp_state *cs)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004912{
4913 struct io_accept *accept = &req->accept;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004914 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004915 int ret;
4916
Jiufei Xuee697dee2020-06-10 13:41:59 +08004917 if (req->file->f_flags & O_NONBLOCK)
4918 req->flags |= REQ_F_NOWAIT;
4919
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004920 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06004921 accept->addr_len, accept->flags,
4922 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004923 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004924 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004925 if (ret < 0) {
4926 if (ret == -ERESTARTSYS)
4927 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004928 req_set_fail_links(req);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004929 }
Jens Axboe229a7b62020-06-22 10:13:11 -06004930 __io_req_complete(req, ret, 0, cs);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004931 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004932}
4933
Jens Axboe3529d8c2019-12-19 18:24:38 -07004934static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004935{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004936 struct io_connect *conn = &req->connect;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004937 struct io_async_connect *io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07004938
Jens Axboe14587a462020-09-05 11:36:08 -06004939 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004940 return -EINVAL;
4941 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4942 return -EINVAL;
4943
Jens Axboe3529d8c2019-12-19 18:24:38 -07004944 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4945 conn->addr_len = READ_ONCE(sqe->addr2);
4946
4947 if (!io)
4948 return 0;
4949
4950 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07004951 &io->address);
Jens Axboef499a022019-12-02 16:28:46 -07004952}
4953
Jens Axboe229a7b62020-06-22 10:13:11 -06004954static int io_connect(struct io_kiocb *req, bool force_nonblock,
4955 struct io_comp_state *cs)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004956{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004957 struct io_async_connect __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004958 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004959 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004960
Jens Axboee8c2bc12020-08-15 18:44:09 -07004961 if (req->async_data) {
4962 io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07004963 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004964 ret = move_addr_to_kernel(req->connect.addr,
4965 req->connect.addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07004966 &__io.address);
Jens Axboef499a022019-12-02 16:28:46 -07004967 if (ret)
4968 goto out;
4969 io = &__io;
4970 }
4971
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004972 file_flags = force_nonblock ? O_NONBLOCK : 0;
4973
Jens Axboee8c2bc12020-08-15 18:44:09 -07004974 ret = __sys_connect_file(req->file, &io->address,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004975 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004976 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07004977 if (req->async_data)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004978 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004979 if (io_alloc_async_data(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004980 ret = -ENOMEM;
4981 goto out;
4982 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004983 io = req->async_data;
4984 memcpy(req->async_data, &__io, sizeof(__io));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004985 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004986 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004987 if (ret == -ERESTARTSYS)
4988 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004989out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004990 if (ret < 0)
4991 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004992 __io_req_complete(req, ret, 0, cs);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004993 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004994}
YueHaibing469956e2020-03-04 15:53:52 +08004995#else /* !CONFIG_NET */
4996static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4997{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004998 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004999}
5000
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005001static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
5002 struct io_comp_state *cs)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005003{
YueHaibing469956e2020-03-04 15:53:52 +08005004 return -EOPNOTSUPP;
5005}
5006
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005007static int io_send(struct io_kiocb *req, bool force_nonblock,
5008 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005009{
5010 return -EOPNOTSUPP;
5011}
5012
5013static int io_recvmsg_prep(struct io_kiocb *req,
5014 const struct io_uring_sqe *sqe)
5015{
5016 return -EOPNOTSUPP;
5017}
5018
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005019static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
5020 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005021{
5022 return -EOPNOTSUPP;
5023}
5024
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005025static int io_recv(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
5031static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5032{
5033 return -EOPNOTSUPP;
5034}
5035
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005036static int io_accept(struct io_kiocb *req, bool force_nonblock,
5037 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005038{
5039 return -EOPNOTSUPP;
5040}
5041
5042static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5043{
5044 return -EOPNOTSUPP;
5045}
5046
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07005047static int io_connect(struct io_kiocb *req, bool force_nonblock,
5048 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08005049{
5050 return -EOPNOTSUPP;
5051}
5052#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07005053
Jens Axboed7718a92020-02-14 22:23:12 -07005054struct io_poll_table {
5055 struct poll_table_struct pt;
5056 struct io_kiocb *req;
5057 int error;
5058};
5059
Jens Axboed7718a92020-02-14 22:23:12 -07005060static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
5061 __poll_t mask, task_work_func_t func)
5062{
Jens Axboefd7d6de2020-08-23 11:00:37 -06005063 bool twa_signal_ok;
Jens Axboeaa96bf82020-04-03 11:26:26 -06005064 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07005065
5066 /* for instances that support it check for an event match first: */
5067 if (mask && !(mask & poll->events))
5068 return 0;
5069
5070 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
5071
5072 list_del_init(&poll->wait.entry);
5073
Jens Axboed7718a92020-02-14 22:23:12 -07005074 req->result = mask;
5075 init_task_work(&req->task_work, func);
Jens Axboe6d816e02020-08-11 08:04:14 -06005076 percpu_ref_get(&req->ctx->refs);
5077
Jens Axboed7718a92020-02-14 22:23:12 -07005078 /*
Jens Axboefd7d6de2020-08-23 11:00:37 -06005079 * If we using the signalfd wait_queue_head for this wakeup, then
5080 * it's not safe to use TWA_SIGNAL as we could be recursing on the
5081 * tsk->sighand->siglock on doing the wakeup. Should not be needed
5082 * either, as the normal wakeup will suffice.
5083 */
5084 twa_signal_ok = (poll->head != &req->task->sighand->signalfd_wqh);
5085
5086 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06005087 * If this fails, then the task is exiting. When a task exits, the
5088 * work gets canceled, so just cancel this request as well instead
5089 * of executing it. We can't safely execute it anyway, as we may not
5090 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07005091 */
Jens Axboe87c43112020-09-30 21:00:14 -06005092 ret = io_req_task_work_add(req, twa_signal_ok);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005093 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06005094 struct task_struct *tsk;
5095
Jens Axboee3aabf92020-05-18 11:04:17 -06005096 WRITE_ONCE(poll->canceled, true);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005097 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboe91989c72020-10-16 09:02:26 -06005098 task_work_add(tsk, &req->task_work, TWA_NONE);
Jens Axboece593a62020-06-30 12:39:05 -06005099 wake_up_process(tsk);
Jens Axboeaa96bf82020-04-03 11:26:26 -06005100 }
Jens Axboed7718a92020-02-14 22:23:12 -07005101 return 1;
5102}
5103
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005104static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
5105 __acquires(&req->ctx->completion_lock)
5106{
5107 struct io_ring_ctx *ctx = req->ctx;
5108
5109 if (!req->result && !READ_ONCE(poll->canceled)) {
5110 struct poll_table_struct pt = { ._key = poll->events };
5111
5112 req->result = vfs_poll(req->file, &pt) & poll->events;
5113 }
5114
5115 spin_lock_irq(&ctx->completion_lock);
5116 if (!req->result && !READ_ONCE(poll->canceled)) {
5117 add_wait_queue(poll->head, &poll->wait);
5118 return true;
5119 }
5120
5121 return false;
5122}
5123
Jens Axboed4e7cd32020-08-15 11:44:50 -07005124static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06005125{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005126 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
Jens Axboed4e7cd32020-08-15 11:44:50 -07005127 if (req->opcode == IORING_OP_POLL_ADD)
Jens Axboee8c2bc12020-08-15 18:44:09 -07005128 return req->async_data;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005129 return req->apoll->double_poll;
5130}
5131
5132static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
5133{
5134 if (req->opcode == IORING_OP_POLL_ADD)
5135 return &req->poll;
5136 return &req->apoll->poll;
5137}
5138
5139static void io_poll_remove_double(struct io_kiocb *req)
5140{
5141 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005142
5143 lockdep_assert_held(&req->ctx->completion_lock);
5144
5145 if (poll && poll->head) {
5146 struct wait_queue_head *head = poll->head;
5147
5148 spin_lock(&head->lock);
5149 list_del_init(&poll->wait.entry);
5150 if (poll->wait.private)
5151 refcount_dec(&req->refs);
5152 poll->head = NULL;
5153 spin_unlock(&head->lock);
5154 }
5155}
5156
5157static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
5158{
5159 struct io_ring_ctx *ctx = req->ctx;
5160
Jens Axboed4e7cd32020-08-15 11:44:50 -07005161 io_poll_remove_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005162 req->poll.done = true;
5163 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
5164 io_commit_cqring(ctx);
5165}
5166
Jens Axboe18bceab2020-05-15 11:56:54 -06005167static void io_poll_task_func(struct callback_head *cb)
5168{
5169 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06005170 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005171 struct io_kiocb *nxt;
Jens Axboe18bceab2020-05-15 11:56:54 -06005172
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005173 if (io_poll_rewait(req, &req->poll)) {
5174 spin_unlock_irq(&ctx->completion_lock);
5175 } else {
5176 hash_del(&req->hash_node);
5177 io_poll_complete(req, req->result, 0);
5178 spin_unlock_irq(&ctx->completion_lock);
5179
5180 nxt = io_put_req_find_next(req);
5181 io_cqring_ev_posted(ctx);
5182 if (nxt)
5183 __io_req_task_submit(nxt);
5184 }
5185
Jens Axboe6d816e02020-08-11 08:04:14 -06005186 percpu_ref_put(&ctx->refs);
Jens Axboe18bceab2020-05-15 11:56:54 -06005187}
5188
5189static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
5190 int sync, void *key)
5191{
5192 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005193 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005194 __poll_t mask = key_to_poll(key);
5195
5196 /* for instances that support it check for an event match first: */
5197 if (mask && !(mask & poll->events))
5198 return 0;
5199
Jens Axboe8706e042020-09-28 08:38:54 -06005200 list_del_init(&wait->entry);
5201
Jens Axboe807abcb2020-07-17 17:09:27 -06005202 if (poll && poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005203 bool done;
5204
Jens Axboe807abcb2020-07-17 17:09:27 -06005205 spin_lock(&poll->head->lock);
5206 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06005207 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06005208 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005209 /* make sure double remove sees this as being gone */
5210 wait->private = NULL;
Jens Axboe807abcb2020-07-17 17:09:27 -06005211 spin_unlock(&poll->head->lock);
Jens Axboec8b5e262020-10-25 13:53:26 -06005212 if (!done) {
5213 /* use wait func handler, so it matches the rq type */
5214 poll->wait.func(&poll->wait, mode, sync, key);
5215 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005216 }
5217 refcount_dec(&req->refs);
5218 return 1;
5219}
5220
5221static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
5222 wait_queue_func_t wake_func)
5223{
5224 poll->head = NULL;
5225 poll->done = false;
5226 poll->canceled = false;
5227 poll->events = events;
5228 INIT_LIST_HEAD(&poll->wait.entry);
5229 init_waitqueue_func_entry(&poll->wait, wake_func);
5230}
5231
5232static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06005233 struct wait_queue_head *head,
5234 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06005235{
5236 struct io_kiocb *req = pt->req;
5237
5238 /*
5239 * If poll->head is already set, it's because the file being polled
5240 * uses multiple waitqueues for poll handling (eg one for read, one
5241 * for write). Setup a separate io_poll_iocb if this happens.
5242 */
5243 if (unlikely(poll->head)) {
Pavel Begunkov58852d42020-10-16 20:55:56 +01005244 struct io_poll_iocb *poll_one = poll;
5245
Jens Axboe18bceab2020-05-15 11:56:54 -06005246 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06005247 if (*poll_ptr) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005248 pt->error = -EINVAL;
5249 return;
5250 }
5251 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5252 if (!poll) {
5253 pt->error = -ENOMEM;
5254 return;
5255 }
Pavel Begunkov58852d42020-10-16 20:55:56 +01005256 io_init_poll_iocb(poll, poll_one->events, io_poll_double_wake);
Jens Axboe18bceab2020-05-15 11:56:54 -06005257 refcount_inc(&req->refs);
5258 poll->wait.private = req;
Jens Axboe807abcb2020-07-17 17:09:27 -06005259 *poll_ptr = poll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005260 }
5261
5262 pt->error = 0;
5263 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005264
5265 if (poll->events & EPOLLEXCLUSIVE)
5266 add_wait_queue_exclusive(head, &poll->wait);
5267 else
5268 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06005269}
5270
5271static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5272 struct poll_table_struct *p)
5273{
5274 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06005275 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005276
Jens Axboe807abcb2020-07-17 17:09:27 -06005277 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06005278}
5279
Jens Axboed7718a92020-02-14 22:23:12 -07005280static void io_async_task_func(struct callback_head *cb)
5281{
5282 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
5283 struct async_poll *apoll = req->apoll;
5284 struct io_ring_ctx *ctx = req->ctx;
5285
5286 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
5287
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005288 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07005289 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe6d816e02020-08-11 08:04:14 -06005290 percpu_ref_put(&ctx->refs);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005291 return;
Jens Axboed7718a92020-02-14 22:23:12 -07005292 }
5293
Jens Axboe31067252020-05-17 17:43:31 -06005294 /* If req is still hashed, it cannot have been canceled. Don't check. */
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005295 if (hash_hashed(&req->hash_node))
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005296 hash_del(&req->hash_node);
Jens Axboe2bae0472020-04-13 11:16:34 -06005297
Jens Axboed4e7cd32020-08-15 11:44:50 -07005298 io_poll_remove_double(req);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005299 spin_unlock_irq(&ctx->completion_lock);
5300
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005301 if (!READ_ONCE(apoll->poll.canceled))
5302 __io_req_task_submit(req);
5303 else
5304 __io_req_task_cancel(req, -ECANCELED);
Dan Carpenteraa340842020-07-08 21:47:11 +03005305
Jens Axboe6d816e02020-08-11 08:04:14 -06005306 percpu_ref_put(&ctx->refs);
Jens Axboe807abcb2020-07-17 17:09:27 -06005307 kfree(apoll->double_poll);
Jens Axboe31067252020-05-17 17:43:31 -06005308 kfree(apoll);
Jens Axboed7718a92020-02-14 22:23:12 -07005309}
5310
5311static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5312 void *key)
5313{
5314 struct io_kiocb *req = wait->private;
5315 struct io_poll_iocb *poll = &req->apoll->poll;
5316
5317 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
5318 key_to_poll(key));
5319
5320 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
5321}
5322
5323static void io_poll_req_insert(struct io_kiocb *req)
5324{
5325 struct io_ring_ctx *ctx = req->ctx;
5326 struct hlist_head *list;
5327
5328 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
5329 hlist_add_head(&req->hash_node, list);
5330}
5331
5332static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
5333 struct io_poll_iocb *poll,
5334 struct io_poll_table *ipt, __poll_t mask,
5335 wait_queue_func_t wake_func)
5336 __acquires(&ctx->completion_lock)
5337{
5338 struct io_ring_ctx *ctx = req->ctx;
5339 bool cancel = false;
5340
Pavel Begunkov4d52f332020-10-18 10:17:43 +01005341 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe18bceab2020-05-15 11:56:54 -06005342 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03005343 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06005344 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07005345
5346 ipt->pt._key = mask;
5347 ipt->req = req;
5348 ipt->error = -EINVAL;
5349
Jens Axboed7718a92020-02-14 22:23:12 -07005350 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
5351
5352 spin_lock_irq(&ctx->completion_lock);
5353 if (likely(poll->head)) {
5354 spin_lock(&poll->head->lock);
5355 if (unlikely(list_empty(&poll->wait.entry))) {
5356 if (ipt->error)
5357 cancel = true;
5358 ipt->error = 0;
5359 mask = 0;
5360 }
5361 if (mask || ipt->error)
5362 list_del_init(&poll->wait.entry);
5363 else if (cancel)
5364 WRITE_ONCE(poll->canceled, true);
5365 else if (!poll->done) /* actually waiting for an event */
5366 io_poll_req_insert(req);
5367 spin_unlock(&poll->head->lock);
5368 }
5369
5370 return mask;
5371}
5372
5373static bool io_arm_poll_handler(struct io_kiocb *req)
5374{
5375 const struct io_op_def *def = &io_op_defs[req->opcode];
5376 struct io_ring_ctx *ctx = req->ctx;
5377 struct async_poll *apoll;
5378 struct io_poll_table ipt;
5379 __poll_t mask, ret;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005380 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07005381
5382 if (!req->file || !file_can_poll(req->file))
5383 return false;
Pavel Begunkov24c74672020-06-21 13:09:51 +03005384 if (req->flags & REQ_F_POLLED)
Jens Axboed7718a92020-02-14 22:23:12 -07005385 return false;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005386 if (def->pollin)
5387 rw = READ;
5388 else if (def->pollout)
5389 rw = WRITE;
5390 else
5391 return false;
5392 /* if we can't nonblock try, then no point in arming a poll handler */
5393 if (!io_file_supports_async(req->file, rw))
Jens Axboed7718a92020-02-14 22:23:12 -07005394 return false;
5395
5396 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5397 if (unlikely(!apoll))
5398 return false;
Jens Axboe807abcb2020-07-17 17:09:27 -06005399 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005400
5401 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07005402 req->apoll = apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07005403
Nathan Chancellor8755d972020-03-02 16:01:19 -07005404 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07005405 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07005406 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07005407 if (def->pollout)
5408 mask |= POLLOUT | POLLWRNORM;
Luke Hsiao901341b2020-08-21 21:41:05 -07005409
5410 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
5411 if ((req->opcode == IORING_OP_RECVMSG) &&
5412 (req->sr_msg.msg_flags & MSG_ERRQUEUE))
5413 mask &= ~POLLIN;
5414
Jens Axboed7718a92020-02-14 22:23:12 -07005415 mask |= POLLERR | POLLPRI;
5416
5417 ipt.pt._qproc = io_async_queue_proc;
5418
5419 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
5420 io_async_wake);
Jens Axboea36da652020-08-11 09:50:19 -06005421 if (ret || ipt.error) {
Jens Axboed4e7cd32020-08-15 11:44:50 -07005422 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005423 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe807abcb2020-07-17 17:09:27 -06005424 kfree(apoll->double_poll);
Jens Axboed7718a92020-02-14 22:23:12 -07005425 kfree(apoll);
5426 return false;
5427 }
5428 spin_unlock_irq(&ctx->completion_lock);
5429 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
5430 apoll->poll.events);
5431 return true;
5432}
5433
5434static bool __io_poll_remove_one(struct io_kiocb *req,
5435 struct io_poll_iocb *poll)
5436{
Jens Axboeb41e9852020-02-17 09:52:41 -07005437 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005438
5439 spin_lock(&poll->head->lock);
5440 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005441 if (!list_empty(&poll->wait.entry)) {
5442 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005443 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005444 }
5445 spin_unlock(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005446 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005447 return do_complete;
5448}
5449
5450static bool io_poll_remove_one(struct io_kiocb *req)
5451{
5452 bool do_complete;
5453
Jens Axboed4e7cd32020-08-15 11:44:50 -07005454 io_poll_remove_double(req);
5455
Jens Axboed7718a92020-02-14 22:23:12 -07005456 if (req->opcode == IORING_OP_POLL_ADD) {
5457 do_complete = __io_poll_remove_one(req, &req->poll);
5458 } else {
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005459 struct async_poll *apoll = req->apoll;
5460
Jens Axboed7718a92020-02-14 22:23:12 -07005461 /* non-poll requests have submit ref still */
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005462 do_complete = __io_poll_remove_one(req, &apoll->poll);
5463 if (do_complete) {
Jens Axboed7718a92020-02-14 22:23:12 -07005464 io_put_req(req);
Jens Axboe807abcb2020-07-17 17:09:27 -06005465 kfree(apoll->double_poll);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005466 kfree(apoll);
5467 }
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08005468 }
5469
Jens Axboeb41e9852020-02-17 09:52:41 -07005470 if (do_complete) {
5471 io_cqring_fill_event(req, -ECANCELED);
5472 io_commit_cqring(req->ctx);
Jens Axboef254ac02020-08-12 17:33:30 -06005473 req_set_fail_links(req);
Pavel Begunkov216578e2020-10-13 09:44:00 +01005474 io_put_req_deferred(req, 1);
Jens Axboeb41e9852020-02-17 09:52:41 -07005475 }
5476
5477 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005478}
5479
Jens Axboe76e1b642020-09-26 15:05:03 -06005480/*
5481 * Returns true if we found and killed one or more poll requests
5482 */
5483static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005484{
Jens Axboe78076bb2019-12-04 19:56:40 -07005485 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005486 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005487 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005488
5489 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005490 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5491 struct hlist_head *list;
5492
5493 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005494 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
5495 if (io_task_match(req, tsk))
5496 posted += io_poll_remove_one(req);
5497 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005498 }
5499 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005500
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005501 if (posted)
5502 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005503
5504 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005505}
5506
Jens Axboe47f46762019-11-09 17:43:02 -07005507static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
5508{
Jens Axboe78076bb2019-12-04 19:56:40 -07005509 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005510 struct io_kiocb *req;
5511
Jens Axboe78076bb2019-12-04 19:56:40 -07005512 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5513 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005514 if (sqe_addr != req->user_data)
5515 continue;
5516 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07005517 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07005518 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07005519 }
5520
5521 return -ENOENT;
5522}
5523
Jens Axboe3529d8c2019-12-19 18:24:38 -07005524static int io_poll_remove_prep(struct io_kiocb *req,
5525 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005526{
Jens Axboe221c5eb2019-01-17 09:41:58 -07005527 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5528 return -EINVAL;
5529 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
5530 sqe->poll_events)
5531 return -EINVAL;
5532
Pavel Begunkov018043b2020-10-27 23:17:18 +00005533 req->poll_remove.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07005534 return 0;
5535}
5536
5537/*
5538 * Find a running poll command that matches one specified in sqe->addr,
5539 * and remove it if found.
5540 */
5541static int io_poll_remove(struct io_kiocb *req)
5542{
5543 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe0969e782019-12-17 18:40:57 -07005544 int ret;
5545
Jens Axboe221c5eb2019-01-17 09:41:58 -07005546 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov018043b2020-10-27 23:17:18 +00005547 ret = io_poll_cancel(ctx, req->poll_remove.addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005548 spin_unlock_irq(&ctx->completion_lock);
5549
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005550 if (ret < 0)
5551 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06005552 io_req_complete(req, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005553 return 0;
5554}
5555
Jens Axboe221c5eb2019-01-17 09:41:58 -07005556static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5557 void *key)
5558{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005559 struct io_kiocb *req = wait->private;
5560 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005561
Jens Axboed7718a92020-02-14 22:23:12 -07005562 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005563}
5564
Jens Axboe221c5eb2019-01-17 09:41:58 -07005565static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5566 struct poll_table_struct *p)
5567{
5568 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5569
Jens Axboee8c2bc12020-08-15 18:44:09 -07005570 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->async_data);
Jens Axboeeac406c2019-11-14 12:09:58 -07005571}
5572
Jens Axboe3529d8c2019-12-19 18:24:38 -07005573static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005574{
5575 struct io_poll_iocb *poll = &req->poll;
Jiufei Xue5769a352020-06-17 17:53:55 +08005576 u32 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005577
5578 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5579 return -EINVAL;
5580 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
5581 return -EINVAL;
5582
Jiufei Xue5769a352020-06-17 17:53:55 +08005583 events = READ_ONCE(sqe->poll32_events);
5584#ifdef __BIG_ENDIAN
5585 events = swahw32(events);
5586#endif
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005587 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP |
5588 (events & EPOLLEXCLUSIVE);
Jens Axboe0969e782019-12-17 18:40:57 -07005589 return 0;
5590}
5591
Pavel Begunkov014db002020-03-03 21:33:12 +03005592static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07005593{
5594 struct io_poll_iocb *poll = &req->poll;
5595 struct io_ring_ctx *ctx = req->ctx;
5596 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005597 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07005598
Jens Axboed7718a92020-02-14 22:23:12 -07005599 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005600
Jens Axboed7718a92020-02-14 22:23:12 -07005601 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5602 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005603
Jens Axboe8c838782019-03-12 15:48:16 -06005604 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005605 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005606 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06005607 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005608 spin_unlock_irq(&ctx->completion_lock);
5609
Jens Axboe8c838782019-03-12 15:48:16 -06005610 if (mask) {
5611 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03005612 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005613 }
Jens Axboe8c838782019-03-12 15:48:16 -06005614 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005615}
5616
Jens Axboe5262f562019-09-17 12:26:57 -06005617static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5618{
Jens Axboead8a48a2019-11-15 08:49:11 -07005619 struct io_timeout_data *data = container_of(timer,
5620 struct io_timeout_data, timer);
5621 struct io_kiocb *req = data->req;
5622 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005623 unsigned long flags;
5624
Jens Axboe5262f562019-09-17 12:26:57 -06005625 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkova71976f2020-10-10 18:34:11 +01005626 list_del_init(&req->timeout.list);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005627 atomic_set(&req->ctx->cq_timeouts,
5628 atomic_read(&req->ctx->cq_timeouts) + 1);
5629
Jens Axboe78e19bb2019-11-06 15:21:34 -07005630 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06005631 io_commit_cqring(ctx);
5632 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5633
5634 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005635 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005636 io_put_req(req);
5637 return HRTIMER_NORESTART;
5638}
5639
Jens Axboef254ac02020-08-12 17:33:30 -06005640static int __io_timeout_cancel(struct io_kiocb *req)
Jens Axboe47f46762019-11-09 17:43:02 -07005641{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005642 struct io_timeout_data *io = req->async_data;
Jens Axboef254ac02020-08-12 17:33:30 -06005643 int ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005644
Jens Axboee8c2bc12020-08-15 18:44:09 -07005645 ret = hrtimer_try_to_cancel(&io->timer);
Jens Axboe47f46762019-11-09 17:43:02 -07005646 if (ret == -1)
5647 return -EALREADY;
Pavel Begunkova71976f2020-10-10 18:34:11 +01005648 list_del_init(&req->timeout.list);
Jens Axboe47f46762019-11-09 17:43:02 -07005649
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005650 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005651 io_cqring_fill_event(req, -ECANCELED);
Pavel Begunkov216578e2020-10-13 09:44:00 +01005652 io_put_req_deferred(req, 1);
Jens Axboe47f46762019-11-09 17:43:02 -07005653 return 0;
5654}
5655
Jens Axboef254ac02020-08-12 17:33:30 -06005656static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
5657{
5658 struct io_kiocb *req;
5659 int ret = -ENOENT;
5660
5661 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
5662 if (user_data == req->user_data) {
5663 ret = 0;
5664 break;
5665 }
5666 }
5667
5668 if (ret == -ENOENT)
5669 return ret;
5670
5671 return __io_timeout_cancel(req);
5672}
5673
Jens Axboe3529d8c2019-12-19 18:24:38 -07005674static int io_timeout_remove_prep(struct io_kiocb *req,
5675 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07005676{
Jens Axboeb29472e2019-12-17 18:50:29 -07005677 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5678 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005679 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5680 return -EINVAL;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005681 if (sqe->ioprio || sqe->buf_index || sqe->len || sqe->timeout_flags)
Jens Axboeb29472e2019-12-17 18:50:29 -07005682 return -EINVAL;
5683
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005684 req->timeout_rem.addr = READ_ONCE(sqe->addr);
Jens Axboeb29472e2019-12-17 18:50:29 -07005685 return 0;
5686}
5687
Jens Axboe11365042019-10-16 09:08:32 -06005688/*
5689 * Remove or update an existing timeout command
5690 */
Jens Axboefc4df992019-12-10 14:38:45 -07005691static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06005692{
5693 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07005694 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06005695
Jens Axboe11365042019-10-16 09:08:32 -06005696 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +01005697 ret = io_timeout_cancel(ctx, req->timeout_rem.addr);
Jens Axboe11365042019-10-16 09:08:32 -06005698
Jens Axboe47f46762019-11-09 17:43:02 -07005699 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06005700 io_commit_cqring(ctx);
5701 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005702 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005703 if (ret < 0)
5704 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08005705 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06005706 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06005707}
5708
Jens Axboe3529d8c2019-12-19 18:24:38 -07005709static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07005710 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06005711{
Jens Axboead8a48a2019-11-15 08:49:11 -07005712 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06005713 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005714 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06005715
Jens Axboead8a48a2019-11-15 08:49:11 -07005716 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06005717 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07005718 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06005719 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005720 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07005721 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06005722 flags = READ_ONCE(sqe->timeout_flags);
5723 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06005724 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06005725
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005726 req->timeout.off = off;
Jens Axboe26a61672019-12-20 09:02:01 -07005727
Jens Axboee8c2bc12020-08-15 18:44:09 -07005728 if (!req->async_data && io_alloc_async_data(req))
Jens Axboe26a61672019-12-20 09:02:01 -07005729 return -ENOMEM;
5730
Jens Axboee8c2bc12020-08-15 18:44:09 -07005731 data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07005732 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07005733
5734 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06005735 return -EFAULT;
5736
Jens Axboe11365042019-10-16 09:08:32 -06005737 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07005738 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06005739 else
Jens Axboead8a48a2019-11-15 08:49:11 -07005740 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06005741
Jens Axboead8a48a2019-11-15 08:49:11 -07005742 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
5743 return 0;
5744}
5745
Jens Axboefc4df992019-12-10 14:38:45 -07005746static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07005747{
Jens Axboead8a48a2019-11-15 08:49:11 -07005748 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005749 struct io_timeout_data *data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07005750 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005751 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07005752
Pavel Begunkov733f5c92020-05-26 20:34:03 +03005753 spin_lock_irq(&ctx->completion_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07005754
Jens Axboe5262f562019-09-17 12:26:57 -06005755 /*
5756 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07005757 * timeout event to be satisfied. If it isn't set, then this is
5758 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06005759 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005760 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07005761 entry = ctx->timeout_list.prev;
5762 goto add;
5763 }
Jens Axboe5262f562019-09-17 12:26:57 -06005764
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005765 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
5766 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06005767
5768 /*
5769 * Insertion sort, ensuring the first entry in the list is always
5770 * the one we need first.
5771 */
Jens Axboe5262f562019-09-17 12:26:57 -06005772 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005773 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
5774 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06005775
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005776 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07005777 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005778 /* nxt.seq is behind @tail, otherwise would've been completed */
5779 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06005780 break;
5781 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07005782add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005783 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07005784 data->timer.function = io_timeout_fn;
5785 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06005786 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005787 return 0;
5788}
5789
Jens Axboe62755e32019-10-28 21:49:21 -06005790static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06005791{
Jens Axboe62755e32019-10-28 21:49:21 -06005792 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06005793
Jens Axboe62755e32019-10-28 21:49:21 -06005794 return req->user_data == (unsigned long) data;
5795}
5796
Jens Axboee977d6d2019-11-05 12:39:45 -07005797static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06005798{
Jens Axboe62755e32019-10-28 21:49:21 -06005799 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06005800 int ret = 0;
5801
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03005802 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr, false);
Jens Axboe62755e32019-10-28 21:49:21 -06005803 switch (cancel_ret) {
5804 case IO_WQ_CANCEL_OK:
5805 ret = 0;
5806 break;
5807 case IO_WQ_CANCEL_RUNNING:
5808 ret = -EALREADY;
5809 break;
5810 case IO_WQ_CANCEL_NOTFOUND:
5811 ret = -ENOENT;
5812 break;
5813 }
5814
Jens Axboee977d6d2019-11-05 12:39:45 -07005815 return ret;
5816}
5817
Jens Axboe47f46762019-11-09 17:43:02 -07005818static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
5819 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03005820 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07005821{
5822 unsigned long flags;
5823 int ret;
5824
5825 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
5826 if (ret != -ENOENT) {
5827 spin_lock_irqsave(&ctx->completion_lock, flags);
5828 goto done;
5829 }
5830
5831 spin_lock_irqsave(&ctx->completion_lock, flags);
5832 ret = io_timeout_cancel(ctx, sqe_addr);
5833 if (ret != -ENOENT)
5834 goto done;
5835 ret = io_poll_cancel(ctx, sqe_addr);
5836done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005837 if (!ret)
5838 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005839 io_cqring_fill_event(req, ret);
5840 io_commit_cqring(ctx);
5841 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5842 io_cqring_ev_posted(ctx);
5843
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005844 if (ret < 0)
5845 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03005846 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005847}
5848
Jens Axboe3529d8c2019-12-19 18:24:38 -07005849static int io_async_cancel_prep(struct io_kiocb *req,
5850 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07005851{
Jens Axboefbf23842019-12-17 18:45:56 -07005852 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07005853 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005854 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5855 return -EINVAL;
5856 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags)
Jens Axboee977d6d2019-11-05 12:39:45 -07005857 return -EINVAL;
5858
Jens Axboefbf23842019-12-17 18:45:56 -07005859 req->cancel.addr = READ_ONCE(sqe->addr);
5860 return 0;
5861}
5862
Pavel Begunkov014db002020-03-03 21:33:12 +03005863static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07005864{
5865 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07005866
Pavel Begunkov014db002020-03-03 21:33:12 +03005867 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06005868 return 0;
5869}
5870
Jens Axboe05f3fb32019-12-09 11:22:50 -07005871static int io_files_update_prep(struct io_kiocb *req,
5872 const struct io_uring_sqe *sqe)
5873{
Jens Axboe6ca56f82020-09-18 16:51:19 -06005874 if (unlikely(req->ctx->flags & IORING_SETUP_SQPOLL))
5875 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005876 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5877 return -EINVAL;
5878 if (sqe->ioprio || sqe->rw_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005879 return -EINVAL;
5880
5881 req->files_update.offset = READ_ONCE(sqe->off);
5882 req->files_update.nr_args = READ_ONCE(sqe->len);
5883 if (!req->files_update.nr_args)
5884 return -EINVAL;
5885 req->files_update.arg = READ_ONCE(sqe->addr);
5886 return 0;
5887}
5888
Jens Axboe229a7b62020-06-22 10:13:11 -06005889static int io_files_update(struct io_kiocb *req, bool force_nonblock,
5890 struct io_comp_state *cs)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005891{
5892 struct io_ring_ctx *ctx = req->ctx;
5893 struct io_uring_files_update up;
5894 int ret;
5895
Jens Axboef86cd202020-01-29 13:46:44 -07005896 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005897 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005898
5899 up.offset = req->files_update.offset;
5900 up.fds = req->files_update.arg;
5901
5902 mutex_lock(&ctx->uring_lock);
5903 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
5904 mutex_unlock(&ctx->uring_lock);
5905
5906 if (ret < 0)
5907 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06005908 __io_req_complete(req, ret, 0, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005909 return 0;
5910}
5911
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005912static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07005913{
Jens Axboed625c6e2019-12-17 19:53:05 -07005914 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07005915 case IORING_OP_NOP:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005916 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07005917 case IORING_OP_READV:
5918 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005919 case IORING_OP_READ:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005920 return io_read_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07005921 case IORING_OP_WRITEV:
5922 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005923 case IORING_OP_WRITE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005924 return io_write_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005925 case IORING_OP_POLL_ADD:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005926 return io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005927 case IORING_OP_POLL_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005928 return io_poll_remove_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005929 case IORING_OP_FSYNC:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005930 return io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005931 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005932 return io_prep_sfr(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005933 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005934 case IORING_OP_SEND:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005935 return io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005936 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005937 case IORING_OP_RECV:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005938 return io_recvmsg_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07005939 case IORING_OP_CONNECT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005940 return io_connect_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005941 case IORING_OP_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005942 return io_timeout_prep(req, sqe, false);
Jens Axboeb29472e2019-12-17 18:50:29 -07005943 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005944 return io_timeout_remove_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07005945 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005946 return io_async_cancel_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005947 case IORING_OP_LINK_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005948 return io_timeout_prep(req, sqe, true);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005949 case IORING_OP_ACCEPT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005950 return io_accept_prep(req, sqe);
Jens Axboed63d1b52019-12-10 10:38:56 -07005951 case IORING_OP_FALLOCATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005952 return io_fallocate_prep(req, sqe);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005953 case IORING_OP_OPENAT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005954 return io_openat_prep(req, sqe);
Jens Axboeb5dba592019-12-11 14:02:38 -07005955 case IORING_OP_CLOSE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005956 return io_close_prep(req, sqe);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005957 case IORING_OP_FILES_UPDATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005958 return io_files_update_prep(req, sqe);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005959 case IORING_OP_STATX:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005960 return io_statx_prep(req, sqe);
Jens Axboe4840e412019-12-25 22:03:45 -07005961 case IORING_OP_FADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005962 return io_fadvise_prep(req, sqe);
Jens Axboec1ca7572019-12-25 22:18:28 -07005963 case IORING_OP_MADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005964 return io_madvise_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07005965 case IORING_OP_OPENAT2:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005966 return io_openat2_prep(req, sqe);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005967 case IORING_OP_EPOLL_CTL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005968 return io_epoll_ctl_prep(req, sqe);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005969 case IORING_OP_SPLICE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005970 return io_splice_prep(req, sqe);
Jens Axboeddf0322d2020-02-23 16:41:33 -07005971 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005972 return io_provide_buffers_prep(req, sqe);
Jens Axboe067524e2020-03-02 16:32:28 -07005973 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005974 return io_remove_buffers_prep(req, sqe);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03005975 case IORING_OP_TEE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005976 return io_tee_prep(req, sqe);
Jens Axboe36f4fa62020-09-05 11:14:22 -06005977 case IORING_OP_SHUTDOWN:
5978 return io_shutdown_prep(req, sqe);
Jens Axboe80a261f2020-09-28 14:23:58 -06005979 case IORING_OP_RENAMEAT:
5980 return io_renameat_prep(req, sqe);
Jens Axboe14a11432020-09-28 14:27:37 -06005981 case IORING_OP_UNLINKAT:
5982 return io_unlinkat_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07005983 }
5984
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005985 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5986 req->opcode);
5987 return-EINVAL;
5988}
5989
Jens Axboedef596e2019-01-09 08:59:42 -07005990static int io_req_defer_prep(struct io_kiocb *req,
5991 const struct io_uring_sqe *sqe)
Jens Axboedef596e2019-01-09 08:59:42 -07005992{
Jens Axboedef596e2019-01-09 08:59:42 -07005993 if (!sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005994 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005995 if (io_alloc_async_data(req))
Jens Axboeb76da702019-11-20 13:05:32 -07005996 return -EAGAIN;
Pavel Begunkovbfe76552020-09-30 22:57:55 +03005997 return io_req_prep(req, sqe);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005998}
5999
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006000static u32 io_get_sequence(struct io_kiocb *req)
6001{
6002 struct io_kiocb *pos;
6003 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006004 u32 total_submitted, nr_reqs = 0;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006005
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006006 io_for_each_link(pos, req)
6007 nr_reqs++;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006008
6009 total_submitted = ctx->cached_sq_head - ctx->cached_sq_dropped;
6010 return total_submitted - nr_reqs;
6011}
6012
Jens Axboe3529d8c2019-12-19 18:24:38 -07006013static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006014{
6015 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006016 struct io_defer_entry *de;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006017 int ret;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006018 u32 seq;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006019
6020 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006021 if (likely(list_empty_careful(&ctx->defer_list) &&
6022 !(req->flags & REQ_F_IO_DRAIN)))
6023 return 0;
6024
6025 seq = io_get_sequence(req);
6026 /* Still a chance to pass the sequence check */
6027 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006028 return 0;
6029
Jens Axboee8c2bc12020-08-15 18:44:09 -07006030 if (!req->async_data) {
Pavel Begunkov650b5482020-05-17 14:02:11 +03006031 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006032 if (ret)
Pavel Begunkov650b5482020-05-17 14:02:11 +03006033 return ret;
6034 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03006035 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006036 de = kmalloc(sizeof(*de), GFP_KERNEL);
6037 if (!de)
6038 return -ENOMEM;
Jens Axboe31b51512019-01-18 22:56:34 -07006039
6040 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006041 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboe31b51512019-01-18 22:56:34 -07006042 spin_unlock_irq(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006043 kfree(de);
Pavel Begunkovae348172020-07-23 20:25:20 +03006044 io_queue_async_work(req);
6045 return -EIOCBQUEUED;
Jens Axboe31b51512019-01-18 22:56:34 -07006046 }
6047
6048 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006049 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006050 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006051 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboe31b51512019-01-18 22:56:34 -07006052 spin_unlock_irq(&ctx->completion_lock);
6053 return -EIOCBQUEUED;
6054}
Jens Axboeedafcce2019-01-09 09:16:05 -07006055
Jens Axboef573d382020-09-22 10:19:24 -06006056static void io_req_drop_files(struct io_kiocb *req)
6057{
6058 struct io_ring_ctx *ctx = req->ctx;
6059 unsigned long flags;
6060
6061 spin_lock_irqsave(&ctx->inflight_lock, flags);
6062 list_del(&req->inflight_entry);
6063 if (waitqueue_active(&ctx->inflight_wait))
6064 wake_up(&ctx->inflight_wait);
6065 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
6066 req->flags &= ~REQ_F_INFLIGHT;
Jens Axboe98447d62020-10-14 10:48:51 -06006067 put_files_struct(req->work.identity->files);
6068 put_nsproxy(req->work.identity->nsproxy);
Jens Axboedfead8a2020-10-14 10:12:37 -06006069 req->work.flags &= ~IO_WQ_WORK_FILES;
Jens Axboef573d382020-09-22 10:19:24 -06006070}
6071
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03006072static void __io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006073{
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006074 if (req->flags & REQ_F_BUFFER_SELECTED) {
6075 switch (req->opcode) {
6076 case IORING_OP_READV:
6077 case IORING_OP_READ_FIXED:
6078 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07006079 kfree((void *)(unsigned long)req->rw.addr);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006080 break;
6081 case IORING_OP_RECVMSG:
6082 case IORING_OP_RECV:
Jens Axboe52de1fe2020-02-27 10:15:42 -07006083 kfree(req->sr_msg.kbuf);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006084 break;
6085 }
6086 req->flags &= ~REQ_F_BUFFER_SELECTED;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006087 }
6088
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006089 if (req->flags & REQ_F_NEED_CLEANUP) {
6090 switch (req->opcode) {
6091 case IORING_OP_READV:
6092 case IORING_OP_READ_FIXED:
6093 case IORING_OP_READ:
6094 case IORING_OP_WRITEV:
6095 case IORING_OP_WRITE_FIXED:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006096 case IORING_OP_WRITE: {
6097 struct io_async_rw *io = req->async_data;
6098 if (io->free_iovec)
6099 kfree(io->free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006100 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006101 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006102 case IORING_OP_RECVMSG:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006103 case IORING_OP_SENDMSG: {
6104 struct io_async_msghdr *io = req->async_data;
6105 if (io->iov != io->fast_iov)
6106 kfree(io->iov);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006107 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006108 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006109 case IORING_OP_SPLICE:
6110 case IORING_OP_TEE:
6111 io_put_file(req, req->splice.file_in,
6112 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
6113 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06006114 case IORING_OP_OPENAT:
6115 case IORING_OP_OPENAT2:
6116 if (req->open.filename)
6117 putname(req->open.filename);
6118 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006119 case IORING_OP_RENAMEAT:
6120 putname(req->rename.oldpath);
6121 putname(req->rename.newpath);
6122 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006123 case IORING_OP_UNLINKAT:
6124 putname(req->unlink.filename);
6125 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006126 }
6127 req->flags &= ~REQ_F_NEED_CLEANUP;
6128 }
Pavel Begunkovbb175342020-08-20 11:33:35 +03006129
Jens Axboef573d382020-09-22 10:19:24 -06006130 if (req->flags & REQ_F_INFLIGHT)
6131 io_req_drop_files(req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006132}
6133
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006134static int io_issue_sqe(struct io_kiocb *req, bool force_nonblock,
6135 struct io_comp_state *cs)
Jens Axboeedafcce2019-01-09 09:16:05 -07006136{
Jens Axboeedafcce2019-01-09 09:16:05 -07006137 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07006138 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07006139
Jens Axboed625c6e2019-12-17 19:53:05 -07006140 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07006141 case IORING_OP_NOP:
Jens Axboe229a7b62020-06-22 10:13:11 -06006142 ret = io_nop(req, cs);
Jens Axboe31b51512019-01-18 22:56:34 -07006143 break;
6144 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07006145 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006146 case IORING_OP_READ:
Jens Axboea1d7c392020-06-22 11:09:46 -06006147 ret = io_read(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006148 break;
6149 case IORING_OP_WRITEV:
Jens Axboe2b188cc2019-01-07 10:46:33 -07006150 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006151 case IORING_OP_WRITE:
Jens Axboea1d7c392020-06-22 11:09:46 -06006152 ret = io_write(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006153 break;
6154 case IORING_OP_FSYNC:
Pavel Begunkov014db002020-03-03 21:33:12 +03006155 ret = io_fsync(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006156 break;
6157 case IORING_OP_POLL_ADD:
Pavel Begunkov014db002020-03-03 21:33:12 +03006158 ret = io_poll_add(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006159 break;
6160 case IORING_OP_POLL_REMOVE:
Jens Axboeb76da702019-11-20 13:05:32 -07006161 ret = io_poll_remove(req);
6162 break;
6163 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006164 ret = io_sync_file_range(req, force_nonblock);
Jens Axboeb76da702019-11-20 13:05:32 -07006165 break;
6166 case IORING_OP_SENDMSG:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006167 ret = io_sendmsg(req, force_nonblock, cs);
6168 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006169 case IORING_OP_SEND:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006170 ret = io_send(req, force_nonblock, cs);
Jens Axboeb76da702019-11-20 13:05:32 -07006171 break;
6172 case IORING_OP_RECVMSG:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006173 ret = io_recvmsg(req, force_nonblock, cs);
6174 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006175 case IORING_OP_RECV:
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006176 ret = io_recv(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006177 break;
6178 case IORING_OP_TIMEOUT:
6179 ret = io_timeout(req);
6180 break;
6181 case IORING_OP_TIMEOUT_REMOVE:
6182 ret = io_timeout_remove(req);
6183 break;
6184 case IORING_OP_ACCEPT:
Jens Axboe229a7b62020-06-22 10:13:11 -06006185 ret = io_accept(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006186 break;
6187 case IORING_OP_CONNECT:
Jens Axboe229a7b62020-06-22 10:13:11 -06006188 ret = io_connect(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006189 break;
6190 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkov014db002020-03-03 21:33:12 +03006191 ret = io_async_cancel(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006192 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07006193 case IORING_OP_FALLOCATE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006194 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07006195 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07006196 case IORING_OP_OPENAT:
Pavel Begunkov014db002020-03-03 21:33:12 +03006197 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006198 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07006199 case IORING_OP_CLOSE:
Jens Axboe229a7b62020-06-22 10:13:11 -06006200 ret = io_close(req, force_nonblock, cs);
Jens Axboeb5dba592019-12-11 14:02:38 -07006201 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006202 case IORING_OP_FILES_UPDATE:
Jens Axboe229a7b62020-06-22 10:13:11 -06006203 ret = io_files_update(req, force_nonblock, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006204 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006205 case IORING_OP_STATX:
Pavel Begunkov014db002020-03-03 21:33:12 +03006206 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006207 break;
Jens Axboe4840e412019-12-25 22:03:45 -07006208 case IORING_OP_FADVISE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006209 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07006210 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07006211 case IORING_OP_MADVISE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006212 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07006213 break;
Jens Axboecebdb982020-01-08 17:59:24 -07006214 case IORING_OP_OPENAT2:
Pavel Begunkov014db002020-03-03 21:33:12 +03006215 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07006216 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07006217 case IORING_OP_EPOLL_CTL:
Jens Axboe229a7b62020-06-22 10:13:11 -06006218 ret = io_epoll_ctl(req, force_nonblock, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006219 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006220 case IORING_OP_SPLICE:
Pavel Begunkov014db002020-03-03 21:33:12 +03006221 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006222 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07006223 case IORING_OP_PROVIDE_BUFFERS:
Jens Axboe229a7b62020-06-22 10:13:11 -06006224 ret = io_provide_buffers(req, force_nonblock, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006225 break;
Jens Axboe067524e2020-03-02 16:32:28 -07006226 case IORING_OP_REMOVE_BUFFERS:
Jens Axboe229a7b62020-06-22 10:13:11 -06006227 ret = io_remove_buffers(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006228 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006229 case IORING_OP_TEE:
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006230 ret = io_tee(req, force_nonblock);
6231 break;
Jens Axboe36f4fa62020-09-05 11:14:22 -06006232 case IORING_OP_SHUTDOWN:
6233 ret = io_shutdown(req, force_nonblock);
6234 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006235 case IORING_OP_RENAMEAT:
6236 ret = io_renameat(req, force_nonblock);
6237 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006238 case IORING_OP_UNLINKAT:
6239 ret = io_unlinkat(req, force_nonblock);
6240 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006241 default:
6242 ret = -EINVAL;
6243 break;
Jens Axboe31b51512019-01-18 22:56:34 -07006244 }
6245
6246 if (ret)
Jens Axboeedafcce2019-01-09 09:16:05 -07006247 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006248
Jens Axboeb5325762020-05-19 21:20:27 -06006249 /* If the op doesn't have a file, we're not polling for it */
6250 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file) {
Jens Axboe11ba8202020-01-15 21:51:17 -07006251 const bool in_async = io_wq_current_is_worker();
6252
Jens Axboe11ba8202020-01-15 21:51:17 -07006253 /* workqueue context doesn't hold uring_lock, grab it now */
6254 if (in_async)
6255 mutex_lock(&ctx->uring_lock);
6256
Jens Axboe2b188cc2019-01-07 10:46:33 -07006257 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07006258
6259 if (in_async)
6260 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006261 }
6262
6263 return 0;
6264}
6265
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006266static struct io_wq_work *io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006267{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006268 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006269 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06006270 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006271
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006272 timeout = io_prep_linked_timeout(req);
6273 if (timeout)
6274 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006275
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006276 /* if NO_CANCEL is set, we must still run the work */
6277 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
6278 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06006279 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006280 }
Jens Axboe31b51512019-01-18 22:56:34 -07006281
Jens Axboe561fb042019-10-24 07:25:42 -06006282 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006283 do {
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006284 ret = io_issue_sqe(req, false, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06006285 /*
6286 * We can get EAGAIN for polled IO even though we're
6287 * forcing a sync submission from here, since we can't
6288 * wait for request slots on the block side.
6289 */
6290 if (ret != -EAGAIN)
6291 break;
6292 cond_resched();
6293 } while (1);
6294 }
Jens Axboe31b51512019-01-18 22:56:34 -07006295
Jens Axboe561fb042019-10-24 07:25:42 -06006296 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006297 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006298 io_req_complete(req, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006299 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006300
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006301 return io_steal_work(req);
Jens Axboe31b51512019-01-18 22:56:34 -07006302}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006303
Jens Axboe65e19f52019-10-26 07:20:21 -06006304static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6305 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06006306{
Jens Axboe65e19f52019-10-26 07:20:21 -06006307 struct fixed_file_table *table;
6308
Jens Axboe05f3fb32019-12-09 11:22:50 -07006309 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08006310 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06006311}
6312
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006313static struct file *io_file_get(struct io_submit_state *state,
6314 struct io_kiocb *req, int fd, bool fixed)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006315{
6316 struct io_ring_ctx *ctx = req->ctx;
6317 struct file *file;
6318
6319 if (fixed) {
Pavel Begunkov479f5172020-10-10 18:34:07 +01006320 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006321 return NULL;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006322 fd = array_index_nospec(fd, ctx->nr_user_files);
6323 file = io_file_from_index(ctx, fd);
Jens Axboefd2206e2020-06-02 16:40:47 -06006324 if (file) {
Pavel Begunkovb2e96852020-10-10 18:34:16 +01006325 req->fixed_file_refs = &ctx->file_data->node->refs;
Jens Axboefd2206e2020-06-02 16:40:47 -06006326 percpu_ref_get(req->fixed_file_refs);
6327 }
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006328 } else {
6329 trace_io_uring_file_get(ctx, fd);
6330 file = __io_file_get(state, fd);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006331 }
6332
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006333 return file;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006334}
6335
Jens Axboe3529d8c2019-12-19 18:24:38 -07006336static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06006337 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06006338{
Jens Axboe28cea78a2020-09-14 10:51:17 -06006339 req->file = io_file_get(state, req, fd, req->flags & REQ_F_FIXED_FILE);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006340 if (req->file || io_op_defs[req->opcode].needs_file_no_error)
Jens Axboef86cd202020-01-29 13:46:44 -07006341 return 0;
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006342 return -EBADF;
Pavel Begunkovf56040b2020-07-23 20:25:21 +03006343}
6344
Jens Axboe2665abf2019-11-05 12:40:47 -07006345static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6346{
Jens Axboead8a48a2019-11-15 08:49:11 -07006347 struct io_timeout_data *data = container_of(timer,
6348 struct io_timeout_data, timer);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006349 struct io_kiocb *prev, *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006350 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07006351 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006352
6353 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006354 prev = req->timeout.head;
6355 req->timeout.head = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006356
6357 /*
6358 * We don't expect the list to be empty, that will only happen if we
6359 * race with the completion of the linked work.
6360 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006361 if (prev && refcount_inc_not_zero(&prev->refs))
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006362 io_remove_next_linked(prev);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006363 else
6364 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006365 spin_unlock_irqrestore(&ctx->completion_lock, flags);
6366
6367 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006368 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03006369 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07006370 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07006371 } else {
Jens Axboee1e16092020-06-22 09:17:17 -06006372 io_req_complete(req, -ETIME);
Jens Axboe2665abf2019-11-05 12:40:47 -07006373 }
Jens Axboe2665abf2019-11-05 12:40:47 -07006374 return HRTIMER_NORESTART;
6375}
6376
Jens Axboe7271ef32020-08-10 09:55:22 -06006377static void __io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006378{
Jens Axboe76a46e02019-11-10 23:34:16 -07006379 /*
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006380 * If the back reference is NULL, then our linked request finished
6381 * before we got a chance to setup the timer
Jens Axboe76a46e02019-11-10 23:34:16 -07006382 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006383 if (req->timeout.head) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006384 struct io_timeout_data *data = req->async_data;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006385
Jens Axboead8a48a2019-11-15 08:49:11 -07006386 data->timer.function = io_link_timeout_fn;
6387 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6388 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07006389 }
Jens Axboe7271ef32020-08-10 09:55:22 -06006390}
6391
6392static void io_queue_linked_timeout(struct io_kiocb *req)
6393{
6394 struct io_ring_ctx *ctx = req->ctx;
6395
6396 spin_lock_irq(&ctx->completion_lock);
6397 __io_queue_linked_timeout(req);
Jens Axboe76a46e02019-11-10 23:34:16 -07006398 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006399
Jens Axboe2665abf2019-11-05 12:40:47 -07006400 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006401 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006402}
6403
Jens Axboead8a48a2019-11-15 08:49:11 -07006404static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006405{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006406 struct io_kiocb *nxt = req->link;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006407
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006408 if (!nxt || (req->flags & REQ_F_LINK_TIMEOUT) ||
6409 nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07006410 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006411
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006412 nxt->timeout.head = req;
Pavel Begunkov900fad42020-10-19 16:39:16 +01006413 nxt->flags |= REQ_F_LTIMEOUT_ACTIVE;
Jens Axboe76a46e02019-11-10 23:34:16 -07006414 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07006415 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07006416}
6417
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006418static void __io_queue_sqe(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006419{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006420 struct io_kiocb *linked_timeout;
Jens Axboe193155c2020-02-22 23:22:19 -07006421 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006422 int ret;
6423
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006424again:
6425 linked_timeout = io_prep_linked_timeout(req);
6426
Pavel Begunkov2e5aa6c2020-10-18 10:17:37 +01006427 if ((req->flags & REQ_F_WORK_INITIALIZED) &&
6428 (req->work.flags & IO_WQ_WORK_CREDS) &&
Jens Axboe98447d62020-10-14 10:48:51 -06006429 req->work.identity->creds != current_cred()) {
Jens Axboe193155c2020-02-22 23:22:19 -07006430 if (old_creds)
6431 revert_creds(old_creds);
Jens Axboe98447d62020-10-14 10:48:51 -06006432 if (old_creds == req->work.identity->creds)
Jens Axboe193155c2020-02-22 23:22:19 -07006433 old_creds = NULL; /* restored original creds */
6434 else
Jens Axboe98447d62020-10-14 10:48:51 -06006435 old_creds = override_creds(req->work.identity->creds);
Jens Axboe193155c2020-02-22 23:22:19 -07006436 }
6437
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006438 ret = io_issue_sqe(req, true, cs);
Jens Axboe491381ce2019-10-17 09:20:46 -06006439
6440 /*
6441 * We async punt it if the file wasn't marked NOWAIT, or if the file
6442 * doesn't support non-blocking read/write attempts
6443 */
Pavel Begunkov24c74672020-06-21 13:09:51 +03006444 if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006445 if (!io_arm_poll_handler(req)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006446 /*
6447 * Queued up for async execution, worker will release
6448 * submit reference when the iocb is actually submitted.
6449 */
6450 io_queue_async_work(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006451 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03006452
Pavel Begunkovf063c542020-07-25 14:41:59 +03006453 if (linked_timeout)
6454 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006455 } else if (likely(!ret)) {
6456 /* drop submission reference */
6457 req = io_put_req_find_next(req);
6458 if (linked_timeout)
6459 io_queue_linked_timeout(linked_timeout);
Jens Axboee65ef562019-03-12 10:16:44 -06006460
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006461 if (req) {
6462 if (!(req->flags & REQ_F_FORCE_ASYNC))
6463 goto again;
6464 io_queue_async_work(req);
6465 }
6466 } else {
Pavel Begunkov652532a2020-07-03 22:15:07 +03006467 /* un-prep timeout, so it'll be killed as any other linked */
6468 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006469 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06006470 io_put_req(req);
Pavel Begunkov652532a2020-07-03 22:15:07 +03006471 io_req_complete(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06006472 }
Pavel Begunkov652532a2020-07-03 22:15:07 +03006473
Jens Axboe193155c2020-02-22 23:22:19 -07006474 if (old_creds)
6475 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006476}
6477
Jens Axboef13fad72020-06-22 09:34:30 -06006478static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6479 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006480{
6481 int ret;
6482
Jens Axboe3529d8c2019-12-19 18:24:38 -07006483 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006484 if (ret) {
6485 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03006486fail_req:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006487 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006488 io_put_req(req);
6489 io_req_complete(req, ret);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006490 }
Pavel Begunkov25508782019-12-30 21:24:47 +03006491 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006492 if (!req->async_data) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006493 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006494 if (unlikely(ret))
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006495 goto fail_req;
6496 }
Jens Axboece35a472019-12-17 08:04:44 -07006497 io_queue_async_work(req);
6498 } else {
Pavel Begunkovc1379e22020-09-30 22:57:56 +03006499 if (sqe) {
6500 ret = io_req_prep(req, sqe);
6501 if (unlikely(ret))
6502 goto fail_req;
6503 }
6504 __io_queue_sqe(req, cs);
Jens Axboece35a472019-12-17 08:04:44 -07006505 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006506}
6507
Jens Axboef13fad72020-06-22 09:34:30 -06006508static inline void io_queue_link_head(struct io_kiocb *req,
6509 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006510{
Jens Axboe94ae5e72019-11-14 19:39:52 -07006511 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Jens Axboee1e16092020-06-22 09:17:17 -06006512 io_put_req(req);
6513 io_req_complete(req, -ECANCELED);
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03006514 } else
Jens Axboef13fad72020-06-22 09:34:30 -06006515 io_queue_sqe(req, NULL, cs);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006516}
6517
Pavel Begunkov863e0562020-10-27 23:25:35 +00006518struct io_submit_link {
6519 struct io_kiocb *head;
6520 struct io_kiocb *last;
6521};
6522
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006523static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov863e0562020-10-27 23:25:35 +00006524 struct io_submit_link *link, struct io_comp_state *cs)
Jens Axboe9e645e112019-05-10 16:07:28 -06006525{
Jackie Liua197f662019-11-08 08:09:12 -07006526 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006527 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06006528
Jens Axboe9e645e112019-05-10 16:07:28 -06006529 /*
6530 * If we already have a head request, queue this one for async
6531 * submittal once the head completes. If we don't have a head but
6532 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
6533 * submitted sync once the chain is complete. If none of those
6534 * conditions are true (normal request), then just queue it.
6535 */
Pavel Begunkov863e0562020-10-27 23:25:35 +00006536 if (link->head) {
6537 struct io_kiocb *head = link->head;
Jens Axboe9e645e112019-05-10 16:07:28 -06006538
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03006539 /*
6540 * Taking sequential execution of a link, draining both sides
6541 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
6542 * requests in the link. So, it drains the head and the
6543 * next after the link request. The last one is done via
6544 * drain_next flag to persist the effect across calls.
6545 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006546 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006547 head->flags |= REQ_F_IO_DRAIN;
6548 ctx->drain_next = 1;
6549 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07006550 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006551 if (unlikely(ret)) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006552 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03006553 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006554 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07006555 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03006556 trace_io_uring_link(ctx, req, head);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006557 link->last->link = req;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006558 link->last = req;
Jens Axboe9e645e112019-05-10 16:07:28 -06006559
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006560 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006561 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Jens Axboef13fad72020-06-22 09:34:30 -06006562 io_queue_link_head(head, cs);
Pavel Begunkov863e0562020-10-27 23:25:35 +00006563 link->head = NULL;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006564 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006565 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03006566 if (unlikely(ctx->drain_next)) {
6567 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006568 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03006569 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006570 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006571 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006572 if (unlikely(ret))
Pavel Begunkov711be032020-01-17 03:57:59 +03006573 req->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006574 link->head = req;
6575 link->last = req;
Pavel Begunkov711be032020-01-17 03:57:59 +03006576 } else {
Jens Axboef13fad72020-06-22 09:34:30 -06006577 io_queue_sqe(req, sqe, cs);
Pavel Begunkov711be032020-01-17 03:57:59 +03006578 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006579 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03006580
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006581 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06006582}
6583
Jens Axboe9a56a232019-01-09 09:06:50 -07006584/*
6585 * Batched submission is done, ensure local IO is flushed out.
6586 */
6587static void io_submit_state_end(struct io_submit_state *state)
6588{
Jens Axboef13fad72020-06-22 09:34:30 -06006589 if (!list_empty(&state->comp.list))
6590 io_submit_flush_completions(&state->comp);
Jens Axboe27926b62020-10-28 09:33:23 -06006591 if (state->plug_started)
6592 blk_finish_plug(&state->plug);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03006593 io_state_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07006594 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03006595 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07006596}
6597
6598/*
6599 * Start submission side cache.
6600 */
6601static void io_submit_state_start(struct io_submit_state *state,
Jens Axboe013538b2020-06-22 09:29:15 -06006602 struct io_ring_ctx *ctx, unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07006603{
Jens Axboe27926b62020-10-28 09:33:23 -06006604 state->plug_started = false;
Jens Axboe013538b2020-06-22 09:29:15 -06006605 state->comp.nr = 0;
6606 INIT_LIST_HEAD(&state->comp.list);
6607 state->comp.ctx = ctx;
Jens Axboe2579f912019-01-09 09:10:43 -07006608 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07006609 state->file = NULL;
6610 state->ios_left = max_ios;
6611}
6612
Jens Axboe2b188cc2019-01-07 10:46:33 -07006613static void io_commit_sqring(struct io_ring_ctx *ctx)
6614{
Hristo Venev75b28af2019-08-26 17:23:46 +00006615 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006616
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03006617 /*
6618 * Ensure any loads from the SQEs are done at this point,
6619 * since once we write the new head, the application could
6620 * write new data to them.
6621 */
6622 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006623}
6624
6625/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07006626 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07006627 * that is mapped by userspace. This means that care needs to be taken to
6628 * ensure that reads are stable, as we cannot rely on userspace always
6629 * being a good citizen. If members of the sqe are validated and then later
6630 * used, it's important that those reads are done through READ_ONCE() to
6631 * prevent a re-load down the line.
6632 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03006633static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006634{
Hristo Venev75b28af2019-08-26 17:23:46 +00006635 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006636 unsigned head;
6637
6638 /*
6639 * The cached sq head (or cq tail) serves two purposes:
6640 *
6641 * 1) allows us to batch the cost of updating the user visible
6642 * head updates.
6643 * 2) allows the kernel side to track the head on its own, even
6644 * though the application is the one updating it.
6645 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006646 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006647 if (likely(head < ctx->sq_entries))
6648 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07006649
6650 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06006651 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006652 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006653 return NULL;
6654}
6655
6656static inline void io_consume_sqe(struct io_ring_ctx *ctx)
6657{
6658 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006659}
6660
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006661/*
6662 * Check SQE restrictions (opcode and flags).
6663 *
6664 * Returns 'true' if SQE is allowed, 'false' otherwise.
6665 */
6666static inline bool io_check_restriction(struct io_ring_ctx *ctx,
6667 struct io_kiocb *req,
6668 unsigned int sqe_flags)
6669{
6670 if (!ctx->restricted)
6671 return true;
6672
6673 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
6674 return false;
6675
6676 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
6677 ctx->restrictions.sqe_flags_required)
6678 return false;
6679
6680 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
6681 ctx->restrictions.sqe_flags_required))
6682 return false;
6683
6684 return true;
6685}
6686
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006687#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
6688 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
6689 IOSQE_BUFFER_SELECT)
6690
6691static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
6692 const struct io_uring_sqe *sqe,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006693 struct io_submit_state *state)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006694{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006695 unsigned int sqe_flags;
Pavel Begunkov71b547c2020-10-10 18:34:09 +01006696 int id, ret;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006697
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006698 req->opcode = READ_ONCE(sqe->opcode);
6699 req->user_data = READ_ONCE(sqe->user_data);
Jens Axboee8c2bc12020-08-15 18:44:09 -07006700 req->async_data = NULL;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006701 req->file = NULL;
6702 req->ctx = ctx;
6703 req->flags = 0;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006704 req->link = NULL;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006705 /* one is dropped after submission, the other at completion */
6706 refcount_set(&req->refs, 2);
Pavel Begunkov4dd28242020-06-15 10:33:13 +03006707 req->task = current;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006708 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006709
6710 if (unlikely(req->opcode >= IORING_OP_LAST))
6711 return -EINVAL;
6712
Jens Axboe28cea78a2020-09-14 10:51:17 -06006713 if (unlikely(io_sq_thread_acquire_mm_files(ctx, req)))
Jens Axboe9d8426a2020-06-16 18:42:49 -06006714 return -EFAULT;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006715
6716 sqe_flags = READ_ONCE(sqe->flags);
6717 /* enforce forwards compatibility on users */
6718 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
6719 return -EINVAL;
6720
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006721 if (unlikely(!io_check_restriction(ctx, req, sqe_flags)))
6722 return -EACCES;
6723
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006724 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
6725 !io_op_defs[req->opcode].buffer_select)
6726 return -EOPNOTSUPP;
6727
6728 id = READ_ONCE(sqe->personality);
6729 if (id) {
Jens Axboe1e6fa522020-10-15 08:46:24 -06006730 struct io_identity *iod;
6731
Jens Axboe1e6fa522020-10-15 08:46:24 -06006732 iod = idr_find(&ctx->personality_idr, id);
6733 if (unlikely(!iod))
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006734 return -EINVAL;
Jens Axboe1e6fa522020-10-15 08:46:24 -06006735 refcount_inc(&iod->count);
Pavel Begunkovec99ca62020-10-18 10:17:38 +01006736
6737 __io_req_init_async(req);
Jens Axboe1e6fa522020-10-15 08:46:24 -06006738 get_cred(iod->creds);
6739 req->work.identity = iod;
Jens Axboedfead8a2020-10-14 10:12:37 -06006740 req->work.flags |= IO_WQ_WORK_CREDS;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006741 }
6742
6743 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkovc11368a52020-05-17 14:13:42 +03006744 req->flags |= sqe_flags;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006745
Jens Axboe27926b62020-10-28 09:33:23 -06006746 /*
6747 * Plug now if we have more than 1 IO left after this, and the target
6748 * is potentially a read/write to block based storage.
6749 */
6750 if (!state->plug_started && state->ios_left > 1 &&
6751 io_op_defs[req->opcode].plug) {
6752 blk_start_plug(&state->plug);
6753 state->plug_started = true;
6754 }
6755
Jens Axboe63ff8222020-05-07 14:56:15 -06006756 if (!io_op_defs[req->opcode].needs_file)
6757 return 0;
6758
Pavel Begunkov71b547c2020-10-10 18:34:09 +01006759 ret = io_req_set_file(state, req, READ_ONCE(sqe->fd));
6760 state->ios_left--;
6761 return ret;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006762}
6763
Jens Axboe0f212202020-09-13 13:09:39 -06006764static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006765{
Jens Axboeac8691c2020-06-01 08:30:41 -06006766 struct io_submit_state state;
Pavel Begunkov863e0562020-10-27 23:25:35 +00006767 struct io_submit_link link;
Jens Axboe9e645e112019-05-10 16:07:28 -06006768 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006769
Jens Axboec4a2ed72019-11-21 21:01:26 -07006770 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07006771 if (test_bit(0, &ctx->sq_check_overflow)) {
6772 if (!list_empty(&ctx->cq_overflow_list) &&
Jens Axboee6c8aa92020-09-28 13:10:13 -06006773 !io_cqring_overflow_flush(ctx, false, NULL, NULL))
Jens Axboead3eb2c2019-12-18 17:12:20 -07006774 return -EBUSY;
6775 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006776
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006777 /* make sure SQ entry isn't read before tail */
6778 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03006779
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03006780 if (!percpu_ref_tryget_many(&ctx->refs, nr))
6781 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006782
Jens Axboed8a6df12020-10-15 16:24:45 -06006783 percpu_counter_add(&current->io_uring->inflight, nr);
Jens Axboefaf7b512020-10-07 12:48:53 -06006784 refcount_add(nr, &current->usage);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006785
Jens Axboe6c271ce2019-01-10 11:22:30 -07006786 io_submit_state_start(&state, ctx, nr);
Pavel Begunkov863e0562020-10-27 23:25:35 +00006787 link.head = NULL;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03006788
Jens Axboe6c271ce2019-01-10 11:22:30 -07006789 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07006790 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03006791 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006792 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006793
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03006794 sqe = io_get_sqe(ctx);
6795 if (unlikely(!sqe)) {
6796 io_consume_sqe(ctx);
6797 break;
6798 }
Jens Axboeac8691c2020-06-01 08:30:41 -06006799 req = io_alloc_req(ctx, &state);
Pavel Begunkov196be952019-11-07 01:41:06 +03006800 if (unlikely(!req)) {
6801 if (!submitted)
6802 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006803 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06006804 }
Pavel Begunkov709b3022020-04-08 08:58:43 +03006805 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07006806 /* will complete beyond this point, count as submitted */
6807 submitted++;
6808
Pavel Begunkov692d8362020-10-10 18:34:13 +01006809 err = io_init_req(ctx, req, sqe, &state);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006810 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006811fail_req:
Jens Axboee1e16092020-06-22 09:17:17 -06006812 io_put_req(req);
6813 io_req_complete(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07006814 break;
6815 }
6816
Jens Axboe354420f2020-01-08 18:55:15 -07006817 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006818 true, io_async_submit(ctx));
Jens Axboef13fad72020-06-22 09:34:30 -06006819 err = io_submit_sqe(req, sqe, &link, &state.comp);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006820 if (err)
6821 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006822 }
6823
Pavel Begunkov9466f432020-01-25 22:34:01 +03006824 if (unlikely(submitted != nr)) {
6825 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
Jens Axboed8a6df12020-10-15 16:24:45 -06006826 struct io_uring_task *tctx = current->io_uring;
6827 int unused = nr - ref_used;
Pavel Begunkov9466f432020-01-25 22:34:01 +03006828
Jens Axboed8a6df12020-10-15 16:24:45 -06006829 percpu_ref_put_many(&ctx->refs, unused);
6830 percpu_counter_sub(&tctx->inflight, unused);
6831 put_task_struct_many(current, unused);
Pavel Begunkov9466f432020-01-25 22:34:01 +03006832 }
Pavel Begunkov863e0562020-10-27 23:25:35 +00006833 if (link.head)
6834 io_queue_link_head(link.head, &state.comp);
Jens Axboeac8691c2020-06-01 08:30:41 -06006835 io_submit_state_end(&state);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006836
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006837 /* Commit SQ ring head once we've consumed and submitted all SQEs */
6838 io_commit_sqring(ctx);
6839
Jens Axboe6c271ce2019-01-10 11:22:30 -07006840 return submitted;
6841}
6842
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006843static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
6844{
6845 /* Tell userspace we may need a wakeup call */
6846 spin_lock_irq(&ctx->completion_lock);
6847 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
6848 spin_unlock_irq(&ctx->completion_lock);
6849}
6850
6851static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
6852{
6853 spin_lock_irq(&ctx->completion_lock);
6854 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6855 spin_unlock_irq(&ctx->completion_lock);
6856}
6857
Jens Axboe3f0e64d2020-09-02 12:42:47 -06006858static int io_sq_wake_function(struct wait_queue_entry *wqe, unsigned mode,
6859 int sync, void *key)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006860{
Jens Axboe3f0e64d2020-09-02 12:42:47 -06006861 struct io_ring_ctx *ctx = container_of(wqe, struct io_ring_ctx, sqo_wait_entry);
6862 int ret;
6863
6864 ret = autoremove_wake_function(wqe, mode, sync, key);
6865 if (ret) {
6866 unsigned long flags;
6867
6868 spin_lock_irqsave(&ctx->completion_lock, flags);
6869 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6870 spin_unlock_irqrestore(&ctx->completion_lock, flags);
6871 }
6872 return ret;
6873}
6874
Jens Axboec8d1ba52020-09-14 11:07:26 -06006875enum sq_ret {
6876 SQT_IDLE = 1,
6877 SQT_SPIN = 2,
6878 SQT_DID_WORK = 4,
6879};
6880
6881static enum sq_ret __io_sq_thread(struct io_ring_ctx *ctx,
Jens Axboee95eee22020-09-08 09:11:32 -06006882 unsigned long start_jiffies, bool cap_entries)
Jens Axboec8d1ba52020-09-14 11:07:26 -06006883{
6884 unsigned long timeout = start_jiffies + ctx->sq_thread_idle;
Jens Axboe534ca6d2020-09-02 13:52:19 -06006885 struct io_sq_data *sqd = ctx->sq_data;
Jens Axboec8d1ba52020-09-14 11:07:26 -06006886 unsigned int to_submit;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006887 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006888
Jens Axboec8d1ba52020-09-14 11:07:26 -06006889again:
6890 if (!list_empty(&ctx->iopoll_list)) {
6891 unsigned nr_events = 0;
Jackie Liua4c0b3d2019-07-08 13:41:12 +08006892
Jens Axboec8d1ba52020-09-14 11:07:26 -06006893 mutex_lock(&ctx->uring_lock);
6894 if (!list_empty(&ctx->iopoll_list) && !need_resched())
6895 io_do_iopoll(ctx, &nr_events, 0);
6896 mutex_unlock(&ctx->uring_lock);
6897 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006898
Jens Axboec8d1ba52020-09-14 11:07:26 -06006899 to_submit = io_sqring_entries(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006900
Jens Axboec8d1ba52020-09-14 11:07:26 -06006901 /*
6902 * If submit got -EBUSY, flag us as needing the application
6903 * to enter the kernel to reap and flush events.
6904 */
6905 if (!to_submit || ret == -EBUSY || need_resched()) {
6906 /*
6907 * Drop cur_mm before scheduling, we can't hold it for
6908 * long periods (or over schedule()). Do this before
6909 * adding ourselves to the waitqueue, as the unuse/drop
6910 * may sleep.
6911 */
Jens Axboe28cea78a2020-09-14 10:51:17 -06006912 io_sq_thread_drop_mm_files();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006913
Jens Axboec8d1ba52020-09-14 11:07:26 -06006914 /*
6915 * We're polling. If we're within the defined idle
6916 * period, then let us spin without work before going
6917 * to sleep. The exception is if we got EBUSY doing
6918 * more IO, we should wait for the application to
6919 * reap events and wake us up.
6920 */
6921 if (!list_empty(&ctx->iopoll_list) || need_resched() ||
6922 (!time_after(jiffies, timeout) && ret != -EBUSY &&
6923 !percpu_ref_is_dying(&ctx->refs)))
6924 return SQT_SPIN;
6925
Jens Axboe534ca6d2020-09-02 13:52:19 -06006926 prepare_to_wait(&sqd->wait, &ctx->sqo_wait_entry,
Jens Axboec8d1ba52020-09-14 11:07:26 -06006927 TASK_INTERRUPTIBLE);
6928
6929 /*
6930 * While doing polled IO, before going to sleep, we need
6931 * to check if there are new reqs added to iopoll_list,
6932 * it is because reqs may have been punted to io worker
6933 * and will be added to iopoll_list later, hence check
6934 * the iopoll_list again.
6935 */
6936 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6937 !list_empty_careful(&ctx->iopoll_list)) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06006938 finish_wait(&sqd->wait, &ctx->sqo_wait_entry);
Jens Axboec8d1ba52020-09-14 11:07:26 -06006939 goto again;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006940 }
6941
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006942 to_submit = io_sqring_entries(ctx);
Jens Axboec8d1ba52020-09-14 11:07:26 -06006943 if (!to_submit || ret == -EBUSY)
6944 return SQT_IDLE;
6945 }
6946
Jens Axboe534ca6d2020-09-02 13:52:19 -06006947 finish_wait(&sqd->wait, &ctx->sqo_wait_entry);
Jens Axboec8d1ba52020-09-14 11:07:26 -06006948 io_ring_clear_wakeup_flag(ctx);
6949
Jens Axboee95eee22020-09-08 09:11:32 -06006950 /* if we're handling multiple rings, cap submit size for fairness */
6951 if (cap_entries && to_submit > 8)
6952 to_submit = 8;
6953
Jens Axboec8d1ba52020-09-14 11:07:26 -06006954 mutex_lock(&ctx->uring_lock);
6955 if (likely(!percpu_ref_is_dying(&ctx->refs)))
6956 ret = io_submit_sqes(ctx, to_submit);
6957 mutex_unlock(&ctx->uring_lock);
Jens Axboe90554202020-09-03 12:12:41 -06006958
6959 if (!io_sqring_full(ctx) && wq_has_sleeper(&ctx->sqo_sq_wait))
6960 wake_up(&ctx->sqo_sq_wait);
6961
Jens Axboec8d1ba52020-09-14 11:07:26 -06006962 return SQT_DID_WORK;
6963}
6964
Jens Axboe69fb2132020-09-14 11:16:23 -06006965static void io_sqd_init_new(struct io_sq_data *sqd)
6966{
6967 struct io_ring_ctx *ctx;
6968
6969 while (!list_empty(&sqd->ctx_new_list)) {
6970 ctx = list_first_entry(&sqd->ctx_new_list, struct io_ring_ctx, sqd_list);
6971 init_wait(&ctx->sqo_wait_entry);
6972 ctx->sqo_wait_entry.func = io_sq_wake_function;
6973 list_move_tail(&ctx->sqd_list, &sqd->ctx_list);
6974 complete(&ctx->sq_thread_comp);
6975 }
6976}
6977
Jens Axboe6c271ce2019-01-10 11:22:30 -07006978static int io_sq_thread(void *data)
6979{
Dennis Zhou91d8f512020-09-16 13:41:05 -07006980 struct cgroup_subsys_state *cur_css = NULL;
Jens Axboe28cea78a2020-09-14 10:51:17 -06006981 struct files_struct *old_files = current->files;
6982 struct nsproxy *old_nsproxy = current->nsproxy;
Jens Axboe69fb2132020-09-14 11:16:23 -06006983 const struct cred *old_cred = NULL;
6984 struct io_sq_data *sqd = data;
6985 struct io_ring_ctx *ctx;
Jens Axboec8d1ba52020-09-14 11:07:26 -06006986 unsigned long start_jiffies;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006987
Jens Axboe28cea78a2020-09-14 10:51:17 -06006988 task_lock(current);
6989 current->files = NULL;
6990 current->nsproxy = NULL;
6991 task_unlock(current);
6992
Jens Axboec8d1ba52020-09-14 11:07:26 -06006993 start_jiffies = jiffies;
Jens Axboe69fb2132020-09-14 11:16:23 -06006994 while (!kthread_should_stop()) {
6995 enum sq_ret ret = 0;
Jens Axboee95eee22020-09-08 09:11:32 -06006996 bool cap_entries;
Jens Axboec1edbf52019-11-10 16:56:04 -07006997
6998 /*
Jens Axboe69fb2132020-09-14 11:16:23 -06006999 * Any changes to the sqd lists are synchronized through the
7000 * kthread parking. This synchronizes the thread vs users,
7001 * the users are synchronized on the sqd->ctx_lock.
Jens Axboec1edbf52019-11-10 16:56:04 -07007002 */
Jens Axboe69fb2132020-09-14 11:16:23 -06007003 if (kthread_should_park())
7004 kthread_parkme();
7005
7006 if (unlikely(!list_empty(&sqd->ctx_new_list)))
7007 io_sqd_init_new(sqd);
7008
Jens Axboee95eee22020-09-08 09:11:32 -06007009 cap_entries = !list_is_singular(&sqd->ctx_list);
7010
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
Jens Axboee95eee22020-09-08 09:11:32 -06007023 ret |= __io_sq_thread(ctx, start_jiffies, cap_entries);
Jens Axboe69fb2132020-09-14 11:16:23 -06007024
Jens Axboe28cea78a2020-09-14 10:51:17 -06007025 io_sq_thread_drop_mm_files();
Jens Axboe6c271ce2019-01-10 11:22:30 -07007026 }
7027
Jens Axboe69fb2132020-09-14 11:16:23 -06007028 if (ret & SQT_SPIN) {
Jens Axboec8d1ba52020-09-14 11:07:26 -06007029 io_run_task_work();
7030 cond_resched();
Jens Axboe69fb2132020-09-14 11:16:23 -06007031 } else if (ret == SQT_IDLE) {
7032 if (kthread_should_park())
7033 continue;
7034 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7035 io_ring_set_wakeup_flag(ctx);
7036 schedule();
7037 start_jiffies = jiffies;
7038 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7039 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007040 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007041 }
7042
Jens Axboe4c6e2772020-07-01 11:29:10 -06007043 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07007044
Dennis Zhou91d8f512020-09-16 13:41:05 -07007045 if (cur_css)
7046 io_sq_thread_unassociate_blkcg();
Jens Axboe69fb2132020-09-14 11:16:23 -06007047 if (old_cred)
7048 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06007049
Jens Axboe28cea78a2020-09-14 10:51:17 -06007050 task_lock(current);
7051 current->files = old_files;
7052 current->nsproxy = old_nsproxy;
7053 task_unlock(current);
7054
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02007055 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06007056
Jens Axboe6c271ce2019-01-10 11:22:30 -07007057 return 0;
7058}
7059
Jens Axboebda52162019-09-24 13:47:15 -06007060struct io_wait_queue {
7061 struct wait_queue_entry wq;
7062 struct io_ring_ctx *ctx;
7063 unsigned to_wait;
7064 unsigned nr_timeouts;
7065};
7066
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007067static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06007068{
7069 struct io_ring_ctx *ctx = iowq->ctx;
7070
7071 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08007072 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06007073 * started waiting. For timeouts, we always want to return to userspace,
7074 * regardless of event count.
7075 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007076 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06007077 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
7078}
7079
7080static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7081 int wake_flags, void *key)
7082{
7083 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7084 wq);
7085
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007086 /* use noflush == true, as we can't safely rely on locking context */
7087 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06007088 return -1;
7089
7090 return autoremove_wake_function(curr, mode, wake_flags, key);
7091}
7092
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007093static int io_run_task_work_sig(void)
7094{
7095 if (io_run_task_work())
7096 return 1;
7097 if (!signal_pending(current))
7098 return 0;
7099 if (current->jobctl & JOBCTL_TASK_WORK) {
7100 spin_lock_irq(&current->sighand->siglock);
7101 current->jobctl &= ~JOBCTL_TASK_WORK;
7102 recalc_sigpending();
7103 spin_unlock_irq(&current->sighand->siglock);
7104 return 1;
7105 }
7106 return -EINTR;
7107}
7108
Jens Axboe2b188cc2019-01-07 10:46:33 -07007109/*
7110 * Wait until events become available, if we don't already have some. The
7111 * application must reap them itself, as they reside on the shared cq ring.
7112 */
7113static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
Hao Xuc73ebb62020-11-03 10:54:37 +08007114 const sigset_t __user *sig, size_t sigsz,
7115 struct __kernel_timespec __user *uts)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007116{
Jens Axboebda52162019-09-24 13:47:15 -06007117 struct io_wait_queue iowq = {
7118 .wq = {
7119 .private = current,
7120 .func = io_wake_function,
7121 .entry = LIST_HEAD_INIT(iowq.wq.entry),
7122 },
7123 .ctx = ctx,
7124 .to_wait = min_events,
7125 };
Hristo Venev75b28af2019-08-26 17:23:46 +00007126 struct io_rings *rings = ctx->rings;
Hao Xuc73ebb62020-11-03 10:54:37 +08007127 struct timespec64 ts;
7128 signed long timeout = 0;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08007129 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007130
Jens Axboeb41e9852020-02-17 09:52:41 -07007131 do {
7132 if (io_cqring_events(ctx, false) >= min_events)
7133 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06007134 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07007135 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07007136 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007137
7138 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007139#ifdef CONFIG_COMPAT
7140 if (in_compat_syscall())
7141 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07007142 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007143 else
7144#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07007145 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007146
Jens Axboe2b188cc2019-01-07 10:46:33 -07007147 if (ret)
7148 return ret;
7149 }
7150
Hao Xuc73ebb62020-11-03 10:54:37 +08007151 if (uts) {
7152 if (get_timespec64(&ts, uts))
7153 return -EFAULT;
7154 timeout = timespec64_to_jiffies(&ts);
7155 }
7156
Jens Axboebda52162019-09-24 13:47:15 -06007157 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007158 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06007159 do {
7160 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
7161 TASK_INTERRUPTIBLE);
Jens Axboece593a62020-06-30 12:39:05 -06007162 /* make sure we run task_work before checking for signals */
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007163 ret = io_run_task_work_sig();
7164 if (ret > 0)
Jens Axboe4c6e2772020-07-01 11:29:10 -06007165 continue;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007166 else if (ret < 0)
Jens Axboece593a62020-06-30 12:39:05 -06007167 break;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07007168 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06007169 break;
Hao Xuc73ebb62020-11-03 10:54:37 +08007170 if (uts) {
7171 timeout = schedule_timeout(timeout);
7172 if (timeout == 0) {
7173 ret = -ETIME;
7174 break;
7175 }
7176 } else {
7177 schedule();
7178 }
Jens Axboebda52162019-09-24 13:47:15 -06007179 } while (1);
7180 finish_wait(&ctx->wait, &iowq.wq);
7181
Jens Axboeb7db41c2020-07-04 08:55:50 -06007182 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007183
Hristo Venev75b28af2019-08-26 17:23:46 +00007184 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007185}
7186
Jens Axboe6b063142019-01-10 22:13:58 -07007187static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
7188{
7189#if defined(CONFIG_UNIX)
7190 if (ctx->ring_sock) {
7191 struct sock *sock = ctx->ring_sock->sk;
7192 struct sk_buff *skb;
7193
7194 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7195 kfree_skb(skb);
7196 }
7197#else
7198 int i;
7199
Jens Axboe65e19f52019-10-26 07:20:21 -06007200 for (i = 0; i < ctx->nr_user_files; i++) {
7201 struct file *file;
7202
7203 file = io_file_from_index(ctx, i);
7204 if (file)
7205 fput(file);
7206 }
Jens Axboe6b063142019-01-10 22:13:58 -07007207#endif
7208}
7209
Jens Axboe05f3fb32019-12-09 11:22:50 -07007210static void io_file_ref_kill(struct percpu_ref *ref)
7211{
7212 struct fixed_file_data *data;
7213
7214 data = container_of(ref, struct fixed_file_data, refs);
7215 complete(&data->done);
7216}
7217
Jens Axboe6b063142019-01-10 22:13:58 -07007218static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7219{
Jens Axboe05f3fb32019-12-09 11:22:50 -07007220 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007221 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06007222 unsigned nr_tables, i;
7223
Jens Axboe05f3fb32019-12-09 11:22:50 -07007224 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07007225 return -ENXIO;
7226
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007227 spin_lock(&data->lock);
Pavel Begunkov1e5d7702020-11-18 14:56:25 +00007228 ref_node = data->node;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007229 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007230 if (ref_node)
7231 percpu_ref_kill(&ref_node->refs);
7232
7233 percpu_ref_kill(&data->refs);
7234
7235 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06007236 flush_delayed_work(&ctx->file_put_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07007237 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007238
Jens Axboe6b063142019-01-10 22:13:58 -07007239 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06007240 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
7241 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007242 kfree(data->table[i].files);
7243 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007244 percpu_ref_exit(&data->refs);
7245 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007246 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07007247 ctx->nr_user_files = 0;
7248 return 0;
7249}
7250
Jens Axboe534ca6d2020-09-02 13:52:19 -06007251static void io_put_sq_data(struct io_sq_data *sqd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007252{
Jens Axboe534ca6d2020-09-02 13:52:19 -06007253 if (refcount_dec_and_test(&sqd->refs)) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02007254 /*
7255 * The park is a bit of a work-around, without it we get
7256 * warning spews on shutdown with SQPOLL set and affinity
7257 * set to a single CPU.
7258 */
Jens Axboe534ca6d2020-09-02 13:52:19 -06007259 if (sqd->thread) {
7260 kthread_park(sqd->thread);
7261 kthread_stop(sqd->thread);
7262 }
7263
7264 kfree(sqd);
7265 }
7266}
7267
Jens Axboeaa061652020-09-02 14:50:27 -06007268static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7269{
7270 struct io_ring_ctx *ctx_attach;
7271 struct io_sq_data *sqd;
7272 struct fd f;
7273
7274 f = fdget(p->wq_fd);
7275 if (!f.file)
7276 return ERR_PTR(-ENXIO);
7277 if (f.file->f_op != &io_uring_fops) {
7278 fdput(f);
7279 return ERR_PTR(-EINVAL);
7280 }
7281
7282 ctx_attach = f.file->private_data;
7283 sqd = ctx_attach->sq_data;
7284 if (!sqd) {
7285 fdput(f);
7286 return ERR_PTR(-EINVAL);
7287 }
7288
7289 refcount_inc(&sqd->refs);
7290 fdput(f);
7291 return sqd;
7292}
7293
Jens Axboe534ca6d2020-09-02 13:52:19 -06007294static struct io_sq_data *io_get_sq_data(struct io_uring_params *p)
7295{
7296 struct io_sq_data *sqd;
7297
Jens Axboeaa061652020-09-02 14:50:27 -06007298 if (p->flags & IORING_SETUP_ATTACH_WQ)
7299 return io_attach_sq_data(p);
7300
Jens Axboe534ca6d2020-09-02 13:52:19 -06007301 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7302 if (!sqd)
7303 return ERR_PTR(-ENOMEM);
7304
7305 refcount_set(&sqd->refs, 1);
Jens Axboe69fb2132020-09-14 11:16:23 -06007306 INIT_LIST_HEAD(&sqd->ctx_list);
7307 INIT_LIST_HEAD(&sqd->ctx_new_list);
7308 mutex_init(&sqd->ctx_lock);
7309 mutex_init(&sqd->lock);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007310 init_waitqueue_head(&sqd->wait);
7311 return sqd;
7312}
7313
Jens Axboe69fb2132020-09-14 11:16:23 -06007314static void io_sq_thread_unpark(struct io_sq_data *sqd)
7315 __releases(&sqd->lock)
7316{
7317 if (!sqd->thread)
7318 return;
7319 kthread_unpark(sqd->thread);
7320 mutex_unlock(&sqd->lock);
7321}
7322
7323static void io_sq_thread_park(struct io_sq_data *sqd)
7324 __acquires(&sqd->lock)
7325{
7326 if (!sqd->thread)
7327 return;
7328 mutex_lock(&sqd->lock);
7329 kthread_park(sqd->thread);
7330}
7331
Jens Axboe534ca6d2020-09-02 13:52:19 -06007332static void io_sq_thread_stop(struct io_ring_ctx *ctx)
7333{
7334 struct io_sq_data *sqd = ctx->sq_data;
7335
7336 if (sqd) {
7337 if (sqd->thread) {
7338 /*
7339 * We may arrive here from the error branch in
7340 * io_sq_offload_create() where the kthread is created
7341 * without being waked up, thus wake it up now to make
7342 * sure the wait will complete.
7343 */
7344 wake_up_process(sqd->thread);
7345 wait_for_completion(&ctx->sq_thread_comp);
Jens Axboe69fb2132020-09-14 11:16:23 -06007346
7347 io_sq_thread_park(sqd);
7348 }
7349
7350 mutex_lock(&sqd->ctx_lock);
7351 list_del(&ctx->sqd_list);
7352 mutex_unlock(&sqd->ctx_lock);
7353
7354 if (sqd->thread) {
7355 finish_wait(&sqd->wait, &ctx->sqo_wait_entry);
7356 io_sq_thread_unpark(sqd);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007357 }
7358
7359 io_put_sq_data(sqd);
7360 ctx->sq_data = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007361 }
7362}
7363
Jens Axboe6b063142019-01-10 22:13:58 -07007364static void io_finish_async(struct io_ring_ctx *ctx)
7365{
Jens Axboe6c271ce2019-01-10 11:22:30 -07007366 io_sq_thread_stop(ctx);
7367
Jens Axboe561fb042019-10-24 07:25:42 -06007368 if (ctx->io_wq) {
7369 io_wq_destroy(ctx->io_wq);
7370 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07007371 }
7372}
7373
7374#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07007375/*
7376 * Ensure the UNIX gc is aware of our file set, so we are certain that
7377 * the io_uring can be safely unregistered on process exit, even if we have
7378 * loops in the file referencing.
7379 */
7380static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
7381{
7382 struct sock *sk = ctx->ring_sock->sk;
7383 struct scm_fp_list *fpl;
7384 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06007385 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07007386
Jens Axboe6b063142019-01-10 22:13:58 -07007387 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
7388 if (!fpl)
7389 return -ENOMEM;
7390
7391 skb = alloc_skb(0, GFP_KERNEL);
7392 if (!skb) {
7393 kfree(fpl);
7394 return -ENOMEM;
7395 }
7396
7397 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07007398
Jens Axboe08a45172019-10-03 08:11:03 -06007399 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07007400 fpl->user = get_uid(ctx->user);
7401 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007402 struct file *file = io_file_from_index(ctx, i + offset);
7403
7404 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06007405 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06007406 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06007407 unix_inflight(fpl->user, fpl->fp[nr_files]);
7408 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07007409 }
7410
Jens Axboe08a45172019-10-03 08:11:03 -06007411 if (nr_files) {
7412 fpl->max = SCM_MAX_FD;
7413 fpl->count = nr_files;
7414 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007415 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06007416 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
7417 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07007418
Jens Axboe08a45172019-10-03 08:11:03 -06007419 for (i = 0; i < nr_files; i++)
7420 fput(fpl->fp[i]);
7421 } else {
7422 kfree_skb(skb);
7423 kfree(fpl);
7424 }
Jens Axboe6b063142019-01-10 22:13:58 -07007425
7426 return 0;
7427}
7428
7429/*
7430 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
7431 * causes regular reference counting to break down. We rely on the UNIX
7432 * garbage collection to take care of this problem for us.
7433 */
7434static int io_sqe_files_scm(struct io_ring_ctx *ctx)
7435{
7436 unsigned left, total;
7437 int ret = 0;
7438
7439 total = 0;
7440 left = ctx->nr_user_files;
7441 while (left) {
7442 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07007443
7444 ret = __io_sqe_files_scm(ctx, this_files, total);
7445 if (ret)
7446 break;
7447 left -= this_files;
7448 total += this_files;
7449 }
7450
7451 if (!ret)
7452 return 0;
7453
7454 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007455 struct file *file = io_file_from_index(ctx, total);
7456
7457 if (file)
7458 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07007459 total++;
7460 }
7461
7462 return ret;
7463}
7464#else
7465static int io_sqe_files_scm(struct io_ring_ctx *ctx)
7466{
7467 return 0;
7468}
7469#endif
7470
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007471static int io_sqe_alloc_file_tables(struct fixed_file_data *file_data,
7472 unsigned nr_tables, unsigned nr_files)
Jens Axboe65e19f52019-10-26 07:20:21 -06007473{
7474 int i;
7475
7476 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007477 struct fixed_file_table *table = &file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007478 unsigned this_files;
7479
7480 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
7481 table->files = kcalloc(this_files, sizeof(struct file *),
7482 GFP_KERNEL);
7483 if (!table->files)
7484 break;
7485 nr_files -= this_files;
7486 }
7487
7488 if (i == nr_tables)
7489 return 0;
7490
7491 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007492 struct fixed_file_table *table = &file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007493 kfree(table->files);
7494 }
7495 return 1;
7496}
7497
Jens Axboe05f3fb32019-12-09 11:22:50 -07007498static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06007499{
7500#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06007501 struct sock *sock = ctx->ring_sock->sk;
7502 struct sk_buff_head list, *head = &sock->sk_receive_queue;
7503 struct sk_buff *skb;
7504 int i;
7505
7506 __skb_queue_head_init(&list);
7507
7508 /*
7509 * Find the skb that holds this file in its SCM_RIGHTS. When found,
7510 * remove this entry and rearrange the file array.
7511 */
7512 skb = skb_dequeue(head);
7513 while (skb) {
7514 struct scm_fp_list *fp;
7515
7516 fp = UNIXCB(skb).fp;
7517 for (i = 0; i < fp->count; i++) {
7518 int left;
7519
7520 if (fp->fp[i] != file)
7521 continue;
7522
7523 unix_notinflight(fp->user, fp->fp[i]);
7524 left = fp->count - 1 - i;
7525 if (left) {
7526 memmove(&fp->fp[i], &fp->fp[i + 1],
7527 left * sizeof(struct file *));
7528 }
7529 fp->count--;
7530 if (!fp->count) {
7531 kfree_skb(skb);
7532 skb = NULL;
7533 } else {
7534 __skb_queue_tail(&list, skb);
7535 }
7536 fput(file);
7537 file = NULL;
7538 break;
7539 }
7540
7541 if (!file)
7542 break;
7543
7544 __skb_queue_tail(&list, skb);
7545
7546 skb = skb_dequeue(head);
7547 }
7548
7549 if (skb_peek(&list)) {
7550 spin_lock_irq(&head->lock);
7551 while ((skb = __skb_dequeue(&list)) != NULL)
7552 __skb_queue_tail(head, skb);
7553 spin_unlock_irq(&head->lock);
7554 }
7555#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07007556 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007557#endif
7558}
7559
Jens Axboe05f3fb32019-12-09 11:22:50 -07007560struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08007561 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007562 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007563};
7564
Jens Axboe4a38aed22020-05-14 17:21:15 -06007565static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007566{
Jens Axboe4a38aed22020-05-14 17:21:15 -06007567 struct fixed_file_data *file_data = ref_node->file_data;
7568 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007569 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007570
7571 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007572 list_del(&pfile->list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007573 io_ring_file_put(ctx, pfile->file);
7574 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007575 }
7576
Xiaoguang Wang05589552020-03-31 14:05:18 +08007577 percpu_ref_exit(&ref_node->refs);
7578 kfree(ref_node);
7579 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007580}
7581
Jens Axboe4a38aed22020-05-14 17:21:15 -06007582static void io_file_put_work(struct work_struct *work)
7583{
7584 struct io_ring_ctx *ctx;
7585 struct llist_node *node;
7586
7587 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
7588 node = llist_del_all(&ctx->file_put_llist);
7589
7590 while (node) {
7591 struct fixed_file_ref_node *ref_node;
7592 struct llist_node *next = node->next;
7593
7594 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
7595 __io_file_put_work(ref_node);
7596 node = next;
7597 }
7598}
7599
Jens Axboe05f3fb32019-12-09 11:22:50 -07007600static void io_file_data_ref_zero(struct percpu_ref *ref)
7601{
Xiaoguang Wang05589552020-03-31 14:05:18 +08007602 struct fixed_file_ref_node *ref_node;
Pavel Begunkove2978222020-11-18 14:56:26 +00007603 struct fixed_file_data *data;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007604 struct io_ring_ctx *ctx;
Pavel Begunkove2978222020-11-18 14:56:26 +00007605 bool first_add = false;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007606 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007607
Xiaoguang Wang05589552020-03-31 14:05:18 +08007608 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Pavel Begunkove2978222020-11-18 14:56:26 +00007609 data = ref_node->file_data;
7610 ctx = data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007611
Pavel Begunkove2978222020-11-18 14:56:26 +00007612 spin_lock(&data->lock);
7613 ref_node->done = true;
7614
7615 while (!list_empty(&data->ref_list)) {
7616 ref_node = list_first_entry(&data->ref_list,
7617 struct fixed_file_ref_node, node);
7618 /* recycle ref nodes in order */
7619 if (!ref_node->done)
7620 break;
7621 list_del(&ref_node->node);
7622 first_add |= llist_add(&ref_node->llist, &ctx->file_put_llist);
7623 }
7624 spin_unlock(&data->lock);
7625
7626 if (percpu_ref_is_dying(&data->refs))
Jens Axboe4a38aed22020-05-14 17:21:15 -06007627 delay = 0;
7628
Jens Axboe4a38aed22020-05-14 17:21:15 -06007629 if (!delay)
7630 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
7631 else if (first_add)
7632 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007633}
7634
7635static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
7636 struct io_ring_ctx *ctx)
7637{
7638 struct fixed_file_ref_node *ref_node;
7639
7640 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7641 if (!ref_node)
7642 return ERR_PTR(-ENOMEM);
7643
7644 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
7645 0, GFP_KERNEL)) {
7646 kfree(ref_node);
7647 return ERR_PTR(-ENOMEM);
7648 }
7649 INIT_LIST_HEAD(&ref_node->node);
7650 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007651 ref_node->file_data = ctx->file_data;
Pavel Begunkove2978222020-11-18 14:56:26 +00007652 ref_node->done = false;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007653 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007654}
7655
7656static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
7657{
7658 percpu_ref_exit(&ref_node->refs);
7659 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007660}
7661
7662static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
7663 unsigned nr_args)
7664{
7665 __s32 __user *fds = (__s32 __user *) arg;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007666 unsigned nr_tables, i;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007667 struct file *file;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007668 int fd, ret = -ENOMEM;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007669 struct fixed_file_ref_node *ref_node;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007670 struct fixed_file_data *file_data;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007671
7672 if (ctx->file_data)
7673 return -EBUSY;
7674 if (!nr_args)
7675 return -EINVAL;
7676 if (nr_args > IORING_MAX_FIXED_FILES)
7677 return -EMFILE;
7678
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007679 file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
7680 if (!file_data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007681 return -ENOMEM;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007682 file_data->ctx = ctx;
7683 init_completion(&file_data->done);
7684 INIT_LIST_HEAD(&file_data->ref_list);
7685 spin_lock_init(&file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007686
7687 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
Colin Ian King035fbaf2020-10-12 15:03:41 +01007688 file_data->table = kcalloc(nr_tables, sizeof(*file_data->table),
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007689 GFP_KERNEL);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007690 if (!file_data->table)
7691 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007692
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007693 if (percpu_ref_init(&file_data->refs, io_file_ref_kill,
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007694 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
7695 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007696
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007697 if (io_sqe_alloc_file_tables(file_data, nr_tables, nr_args))
7698 goto out_ref;
Jens Axboe55cbc252020-10-14 07:35:57 -06007699 ctx->file_data = file_data;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007700
7701 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
7702 struct fixed_file_table *table;
7703 unsigned index;
7704
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007705 if (copy_from_user(&fd, &fds[i], sizeof(fd))) {
7706 ret = -EFAULT;
7707 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007708 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007709 /* allow sparse sets */
7710 if (fd == -1)
7711 continue;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007712
Jens Axboe05f3fb32019-12-09 11:22:50 -07007713 file = fget(fd);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007714 ret = -EBADF;
7715 if (!file)
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007716 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007717
7718 /*
7719 * Don't allow io_uring instances to be registered. If UNIX
7720 * isn't enabled, then this causes a reference cycle and this
7721 * instance can never get freed. If UNIX is enabled we'll
7722 * handle it just fine, but there's still no point in allowing
7723 * a ring fd as it doesn't support regular read/write anyway.
7724 */
7725 if (file->f_op == &io_uring_fops) {
7726 fput(file);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007727 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007728 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007729 table = &file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7730 index = i & IORING_FILE_TABLE_MASK;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007731 table->files[index] = file;
7732 }
7733
Jens Axboe05f3fb32019-12-09 11:22:50 -07007734 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007735 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007736 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007737 return ret;
7738 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007739
Xiaoguang Wang05589552020-03-31 14:05:18 +08007740 ref_node = alloc_fixed_file_ref_node(ctx);
7741 if (IS_ERR(ref_node)) {
7742 io_sqe_files_unregister(ctx);
7743 return PTR_ERR(ref_node);
7744 }
7745
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007746 file_data->node = ref_node;
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007747 spin_lock(&file_data->lock);
Pavel Begunkove2978222020-11-18 14:56:26 +00007748 list_add_tail(&ref_node->node, &file_data->ref_list);
Pavel Begunkov5398ae62020-10-10 18:34:14 +01007749 spin_unlock(&file_data->lock);
7750 percpu_ref_get(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007751 return ret;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01007752out_fput:
7753 for (i = 0; i < ctx->nr_user_files; i++) {
7754 file = io_file_from_index(ctx, i);
7755 if (file)
7756 fput(file);
7757 }
7758 for (i = 0; i < nr_tables; i++)
7759 kfree(file_data->table[i].files);
7760 ctx->nr_user_files = 0;
7761out_ref:
7762 percpu_ref_exit(&file_data->refs);
7763out_free:
7764 kfree(file_data->table);
7765 kfree(file_data);
Jens Axboe55cbc252020-10-14 07:35:57 -06007766 ctx->file_data = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007767 return ret;
7768}
7769
Jens Axboec3a31e62019-10-03 13:59:56 -06007770static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
7771 int index)
7772{
7773#if defined(CONFIG_UNIX)
7774 struct sock *sock = ctx->ring_sock->sk;
7775 struct sk_buff_head *head = &sock->sk_receive_queue;
7776 struct sk_buff *skb;
7777
7778 /*
7779 * See if we can merge this file into an existing skb SCM_RIGHTS
7780 * file set. If there's no room, fall back to allocating a new skb
7781 * and filling it in.
7782 */
7783 spin_lock_irq(&head->lock);
7784 skb = skb_peek(head);
7785 if (skb) {
7786 struct scm_fp_list *fpl = UNIXCB(skb).fp;
7787
7788 if (fpl->count < SCM_MAX_FD) {
7789 __skb_unlink(skb, head);
7790 spin_unlock_irq(&head->lock);
7791 fpl->fp[fpl->count] = get_file(file);
7792 unix_inflight(fpl->user, fpl->fp[fpl->count]);
7793 fpl->count++;
7794 spin_lock_irq(&head->lock);
7795 __skb_queue_head(head, skb);
7796 } else {
7797 skb = NULL;
7798 }
7799 }
7800 spin_unlock_irq(&head->lock);
7801
7802 if (skb) {
7803 fput(file);
7804 return 0;
7805 }
7806
7807 return __io_sqe_files_scm(ctx, 1, index);
7808#else
7809 return 0;
7810#endif
7811}
7812
Hillf Dantona5318d32020-03-23 17:47:15 +08007813static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08007814 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007815{
Hillf Dantona5318d32020-03-23 17:47:15 +08007816 struct io_file_put *pfile;
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007817 struct fixed_file_ref_node *ref_node = data->node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007818
Jens Axboe05f3fb32019-12-09 11:22:50 -07007819 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08007820 if (!pfile)
7821 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007822
7823 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007824 list_add(&pfile->list, &ref_node->file_list);
7825
Hillf Dantona5318d32020-03-23 17:47:15 +08007826 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007827}
7828
7829static int __io_sqe_files_update(struct io_ring_ctx *ctx,
7830 struct io_uring_files_update *up,
7831 unsigned nr_args)
7832{
7833 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007834 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007835 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007836 __s32 __user *fds;
7837 int fd, i, err;
7838 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007839 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06007840
Jens Axboe05f3fb32019-12-09 11:22:50 -07007841 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06007842 return -EOVERFLOW;
7843 if (done > ctx->nr_user_files)
7844 return -EINVAL;
7845
Xiaoguang Wang05589552020-03-31 14:05:18 +08007846 ref_node = alloc_fixed_file_ref_node(ctx);
7847 if (IS_ERR(ref_node))
7848 return PTR_ERR(ref_node);
7849
Jens Axboec3a31e62019-10-03 13:59:56 -06007850 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007851 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06007852 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007853 struct fixed_file_table *table;
7854 unsigned index;
7855
Jens Axboec3a31e62019-10-03 13:59:56 -06007856 err = 0;
7857 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
7858 err = -EFAULT;
7859 break;
7860 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007861 i = array_index_nospec(up->offset, ctx->nr_user_files);
7862 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06007863 index = i & IORING_FILE_TABLE_MASK;
7864 if (table->files[index]) {
Jiufei Xue98dfd502020-09-01 13:35:02 +08007865 file = table->files[index];
Hillf Dantona5318d32020-03-23 17:47:15 +08007866 err = io_queue_file_removal(data, file);
7867 if (err)
7868 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06007869 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007870 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06007871 }
7872 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06007873 file = fget(fd);
7874 if (!file) {
7875 err = -EBADF;
7876 break;
7877 }
7878 /*
7879 * Don't allow io_uring instances to be registered. If
7880 * UNIX isn't enabled, then this causes a reference
7881 * cycle and this instance can never get freed. If UNIX
7882 * is enabled we'll handle it just fine, but there's
7883 * still no point in allowing a ring fd as it doesn't
7884 * support regular read/write anyway.
7885 */
7886 if (file->f_op == &io_uring_fops) {
7887 fput(file);
7888 err = -EBADF;
7889 break;
7890 }
Jens Axboe65e19f52019-10-26 07:20:21 -06007891 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007892 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007893 if (err) {
Jiufei Xue95d1c8e2020-09-02 17:59:39 +08007894 table->files[index] = NULL;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007895 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007896 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007897 }
Jens Axboec3a31e62019-10-03 13:59:56 -06007898 }
7899 nr_args--;
7900 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007901 up->offset++;
7902 }
7903
Xiaoguang Wang05589552020-03-31 14:05:18 +08007904 if (needs_switch) {
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007905 percpu_ref_kill(&data->node->refs);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007906 spin_lock(&data->lock);
Pavel Begunkove2978222020-11-18 14:56:26 +00007907 list_add_tail(&ref_node->node, &data->ref_list);
Pavel Begunkovb2e96852020-10-10 18:34:16 +01007908 data->node = ref_node;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007909 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007910 percpu_ref_get(&ctx->file_data->refs);
7911 } else
7912 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06007913
7914 return done ? done : err;
7915}
Xiaoguang Wang05589552020-03-31 14:05:18 +08007916
Jens Axboe05f3fb32019-12-09 11:22:50 -07007917static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
7918 unsigned nr_args)
7919{
7920 struct io_uring_files_update up;
7921
7922 if (!ctx->file_data)
7923 return -ENXIO;
7924 if (!nr_args)
7925 return -EINVAL;
7926 if (copy_from_user(&up, arg, sizeof(up)))
7927 return -EFAULT;
7928 if (up.resv)
7929 return -EINVAL;
7930
7931 return __io_sqe_files_update(ctx, &up, nr_args);
7932}
Jens Axboec3a31e62019-10-03 13:59:56 -06007933
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007934static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07007935{
7936 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
7937
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007938 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07007939 io_put_req(req);
7940}
7941
Pavel Begunkov24369c22020-01-28 03:15:48 +03007942static int io_init_wq_offload(struct io_ring_ctx *ctx,
7943 struct io_uring_params *p)
7944{
7945 struct io_wq_data data;
7946 struct fd f;
7947 struct io_ring_ctx *ctx_attach;
7948 unsigned int concurrency;
7949 int ret = 0;
7950
7951 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007952 data.free_work = io_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03007953 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03007954
7955 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
7956 /* Do QD, or 4 * CPUS, whatever is smallest */
7957 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
7958
7959 ctx->io_wq = io_wq_create(concurrency, &data);
7960 if (IS_ERR(ctx->io_wq)) {
7961 ret = PTR_ERR(ctx->io_wq);
7962 ctx->io_wq = NULL;
7963 }
7964 return ret;
7965 }
7966
7967 f = fdget(p->wq_fd);
7968 if (!f.file)
7969 return -EBADF;
7970
7971 if (f.file->f_op != &io_uring_fops) {
7972 ret = -EINVAL;
7973 goto out_fput;
7974 }
7975
7976 ctx_attach = f.file->private_data;
7977 /* @io_wq is protected by holding the fd */
7978 if (!io_wq_get(ctx_attach->io_wq, &data)) {
7979 ret = -EINVAL;
7980 goto out_fput;
7981 }
7982
7983 ctx->io_wq = ctx_attach->io_wq;
7984out_fput:
7985 fdput(f);
7986 return ret;
7987}
7988
Jens Axboe0f212202020-09-13 13:09:39 -06007989static int io_uring_alloc_task_context(struct task_struct *task)
7990{
7991 struct io_uring_task *tctx;
Jens Axboed8a6df12020-10-15 16:24:45 -06007992 int ret;
Jens Axboe0f212202020-09-13 13:09:39 -06007993
7994 tctx = kmalloc(sizeof(*tctx), GFP_KERNEL);
7995 if (unlikely(!tctx))
7996 return -ENOMEM;
7997
Jens Axboed8a6df12020-10-15 16:24:45 -06007998 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
7999 if (unlikely(ret)) {
8000 kfree(tctx);
8001 return ret;
8002 }
8003
Jens Axboe0f212202020-09-13 13:09:39 -06008004 xa_init(&tctx->xa);
8005 init_waitqueue_head(&tctx->wait);
8006 tctx->last = NULL;
Jens Axboefdaf0832020-10-30 09:37:30 -06008007 atomic_set(&tctx->in_idle, 0);
8008 tctx->sqpoll = false;
Jens Axboe500a3732020-10-15 17:38:03 -06008009 io_init_identity(&tctx->__identity);
8010 tctx->identity = &tctx->__identity;
Jens Axboe0f212202020-09-13 13:09:39 -06008011 task->io_uring = tctx;
8012 return 0;
8013}
8014
8015void __io_uring_free(struct task_struct *tsk)
8016{
8017 struct io_uring_task *tctx = tsk->io_uring;
8018
8019 WARN_ON_ONCE(!xa_empty(&tctx->xa));
Jens Axboe500a3732020-10-15 17:38:03 -06008020 WARN_ON_ONCE(refcount_read(&tctx->identity->count) != 1);
8021 if (tctx->identity != &tctx->__identity)
8022 kfree(tctx->identity);
Jens Axboed8a6df12020-10-15 16:24:45 -06008023 percpu_counter_destroy(&tctx->inflight);
Jens Axboe0f212202020-09-13 13:09:39 -06008024 kfree(tctx);
8025 tsk->io_uring = NULL;
8026}
8027
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008028static int io_sq_offload_create(struct io_ring_ctx *ctx,
8029 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008030{
8031 int ret;
8032
Jens Axboe6c271ce2019-01-10 11:22:30 -07008033 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06008034 struct io_sq_data *sqd;
8035
Jens Axboe3ec482d2019-04-08 10:51:01 -06008036 ret = -EPERM;
Jens Axboece59fc62020-09-02 13:28:09 -06008037 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_NICE))
Jens Axboe3ec482d2019-04-08 10:51:01 -06008038 goto err;
8039
Jens Axboe534ca6d2020-09-02 13:52:19 -06008040 sqd = io_get_sq_data(p);
8041 if (IS_ERR(sqd)) {
8042 ret = PTR_ERR(sqd);
8043 goto err;
8044 }
Jens Axboe69fb2132020-09-14 11:16:23 -06008045
Jens Axboe534ca6d2020-09-02 13:52:19 -06008046 ctx->sq_data = sqd;
Jens Axboe69fb2132020-09-14 11:16:23 -06008047 io_sq_thread_park(sqd);
8048 mutex_lock(&sqd->ctx_lock);
8049 list_add(&ctx->sqd_list, &sqd->ctx_new_list);
8050 mutex_unlock(&sqd->ctx_lock);
8051 io_sq_thread_unpark(sqd);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008052
Jens Axboe917257d2019-04-13 09:28:55 -06008053 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8054 if (!ctx->sq_thread_idle)
8055 ctx->sq_thread_idle = HZ;
8056
Jens Axboeaa061652020-09-02 14:50:27 -06008057 if (sqd->thread)
8058 goto done;
8059
Jens Axboe6c271ce2019-01-10 11:22:30 -07008060 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06008061 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008062
Jens Axboe917257d2019-04-13 09:28:55 -06008063 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06008064 if (cpu >= nr_cpu_ids)
8065 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08008066 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06008067 goto err;
8068
Jens Axboe69fb2132020-09-14 11:16:23 -06008069 sqd->thread = kthread_create_on_cpu(io_sq_thread, sqd,
Jens Axboe534ca6d2020-09-02 13:52:19 -06008070 cpu, "io_uring-sq");
Jens Axboe6c271ce2019-01-10 11:22:30 -07008071 } else {
Jens Axboe69fb2132020-09-14 11:16:23 -06008072 sqd->thread = kthread_create(io_sq_thread, sqd,
Jens Axboe6c271ce2019-01-10 11:22:30 -07008073 "io_uring-sq");
8074 }
Jens Axboe534ca6d2020-09-02 13:52:19 -06008075 if (IS_ERR(sqd->thread)) {
8076 ret = PTR_ERR(sqd->thread);
8077 sqd->thread = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008078 goto err;
8079 }
Jens Axboe534ca6d2020-09-02 13:52:19 -06008080 ret = io_uring_alloc_task_context(sqd->thread);
Jens Axboe0f212202020-09-13 13:09:39 -06008081 if (ret)
8082 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008083 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8084 /* Can't have SQ_AFF without SQPOLL */
8085 ret = -EINVAL;
8086 goto err;
8087 }
8088
Jens Axboeaa061652020-09-02 14:50:27 -06008089done:
Pavel Begunkov24369c22020-01-28 03:15:48 +03008090 ret = io_init_wq_offload(ctx, p);
8091 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008092 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008093
8094 return 0;
8095err:
Jens Axboe54a91f32019-09-10 09:15:04 -06008096 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008097 return ret;
8098}
8099
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008100static void io_sq_offload_start(struct io_ring_ctx *ctx)
8101{
Jens Axboe534ca6d2020-09-02 13:52:19 -06008102 struct io_sq_data *sqd = ctx->sq_data;
8103
8104 if ((ctx->flags & IORING_SETUP_SQPOLL) && sqd->thread)
8105 wake_up_process(sqd->thread);
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008106}
8107
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008108static inline void __io_unaccount_mem(struct user_struct *user,
8109 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008110{
8111 atomic_long_sub(nr_pages, &user->locked_vm);
8112}
8113
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008114static inline int __io_account_mem(struct user_struct *user,
8115 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008116{
8117 unsigned long page_limit, cur_pages, new_pages;
8118
8119 /* Don't allow more pages than we can safely lock */
8120 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8121
8122 do {
8123 cur_pages = atomic_long_read(&user->locked_vm);
8124 new_pages = cur_pages + nr_pages;
8125 if (new_pages > page_limit)
8126 return -ENOMEM;
8127 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8128 new_pages) != cur_pages);
8129
8130 return 0;
8131}
8132
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008133static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
8134 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008135{
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008136 if (ctx->limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008137 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008138
Jens Axboe2aede0e2020-09-14 10:45:53 -06008139 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008140 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008141 ctx->mm_account->locked_vm -= nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008142 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008143 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008144 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008145}
8146
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008147static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
8148 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008149{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008150 int ret;
8151
8152 if (ctx->limit_mem) {
8153 ret = __io_account_mem(ctx->user, nr_pages);
8154 if (ret)
8155 return ret;
8156 }
8157
Jens Axboe2aede0e2020-09-14 10:45:53 -06008158 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008159 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008160 ctx->mm_account->locked_vm += nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008161 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06008162 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07008163 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008164
8165 return 0;
8166}
8167
Jens Axboe2b188cc2019-01-07 10:46:33 -07008168static void io_mem_free(void *ptr)
8169{
Mark Rutland52e04ef2019-04-30 17:30:21 +01008170 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008171
Mark Rutland52e04ef2019-04-30 17:30:21 +01008172 if (!ptr)
8173 return;
8174
8175 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008176 if (put_page_testzero(page))
8177 free_compound_page(page);
8178}
8179
8180static void *io_mem_alloc(size_t size)
8181{
8182 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
8183 __GFP_NORETRY;
8184
8185 return (void *) __get_free_pages(gfp_flags, get_order(size));
8186}
8187
Hristo Venev75b28af2019-08-26 17:23:46 +00008188static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
8189 size_t *sq_offset)
8190{
8191 struct io_rings *rings;
8192 size_t off, sq_array_size;
8193
8194 off = struct_size(rings, cqes, cq_entries);
8195 if (off == SIZE_MAX)
8196 return SIZE_MAX;
8197
8198#ifdef CONFIG_SMP
8199 off = ALIGN(off, SMP_CACHE_BYTES);
8200 if (off == 0)
8201 return SIZE_MAX;
8202#endif
8203
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02008204 if (sq_offset)
8205 *sq_offset = off;
8206
Hristo Venev75b28af2019-08-26 17:23:46 +00008207 sq_array_size = array_size(sizeof(u32), sq_entries);
8208 if (sq_array_size == SIZE_MAX)
8209 return SIZE_MAX;
8210
8211 if (check_add_overflow(off, sq_array_size, &off))
8212 return SIZE_MAX;
8213
Hristo Venev75b28af2019-08-26 17:23:46 +00008214 return off;
8215}
8216
Jens Axboe2b188cc2019-01-07 10:46:33 -07008217static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
8218{
Hristo Venev75b28af2019-08-26 17:23:46 +00008219 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008220
Hristo Venev75b28af2019-08-26 17:23:46 +00008221 pages = (size_t)1 << get_order(
8222 rings_size(sq_entries, cq_entries, NULL));
8223 pages += (size_t)1 << get_order(
8224 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008225
Hristo Venev75b28af2019-08-26 17:23:46 +00008226 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008227}
8228
Jens Axboeedafcce2019-01-09 09:16:05 -07008229static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
8230{
8231 int i, j;
8232
8233 if (!ctx->user_bufs)
8234 return -ENXIO;
8235
8236 for (i = 0; i < ctx->nr_user_bufs; i++) {
8237 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8238
8239 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08008240 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07008241
Jens Axboede293932020-09-17 16:19:16 -06008242 if (imu->acct_pages)
8243 io_unaccount_mem(ctx, imu->acct_pages, ACCT_PINNED);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008244 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07008245 imu->nr_bvecs = 0;
8246 }
8247
8248 kfree(ctx->user_bufs);
8249 ctx->user_bufs = NULL;
8250 ctx->nr_user_bufs = 0;
8251 return 0;
8252}
8253
8254static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8255 void __user *arg, unsigned index)
8256{
8257 struct iovec __user *src;
8258
8259#ifdef CONFIG_COMPAT
8260 if (ctx->compat) {
8261 struct compat_iovec __user *ciovs;
8262 struct compat_iovec ciov;
8263
8264 ciovs = (struct compat_iovec __user *) arg;
8265 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8266 return -EFAULT;
8267
Jens Axboed55e5f52019-12-11 16:12:15 -07008268 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07008269 dst->iov_len = ciov.iov_len;
8270 return 0;
8271 }
8272#endif
8273 src = (struct iovec __user *) arg;
8274 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8275 return -EFAULT;
8276 return 0;
8277}
8278
Jens Axboede293932020-09-17 16:19:16 -06008279/*
8280 * Not super efficient, but this is just a registration time. And we do cache
8281 * the last compound head, so generally we'll only do a full search if we don't
8282 * match that one.
8283 *
8284 * We check if the given compound head page has already been accounted, to
8285 * avoid double accounting it. This allows us to account the full size of the
8286 * page, not just the constituent pages of a huge page.
8287 */
8288static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8289 int nr_pages, struct page *hpage)
8290{
8291 int i, j;
8292
8293 /* check current page array */
8294 for (i = 0; i < nr_pages; i++) {
8295 if (!PageCompound(pages[i]))
8296 continue;
8297 if (compound_head(pages[i]) == hpage)
8298 return true;
8299 }
8300
8301 /* check previously registered pages */
8302 for (i = 0; i < ctx->nr_user_bufs; i++) {
8303 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8304
8305 for (j = 0; j < imu->nr_bvecs; j++) {
8306 if (!PageCompound(imu->bvec[j].bv_page))
8307 continue;
8308 if (compound_head(imu->bvec[j].bv_page) == hpage)
8309 return true;
8310 }
8311 }
8312
8313 return false;
8314}
8315
8316static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8317 int nr_pages, struct io_mapped_ubuf *imu,
8318 struct page **last_hpage)
8319{
8320 int i, ret;
8321
8322 for (i = 0; i < nr_pages; i++) {
8323 if (!PageCompound(pages[i])) {
8324 imu->acct_pages++;
8325 } else {
8326 struct page *hpage;
8327
8328 hpage = compound_head(pages[i]);
8329 if (hpage == *last_hpage)
8330 continue;
8331 *last_hpage = hpage;
8332 if (headpage_already_acct(ctx, pages, i, hpage))
8333 continue;
8334 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8335 }
8336 }
8337
8338 if (!imu->acct_pages)
8339 return 0;
8340
8341 ret = io_account_mem(ctx, imu->acct_pages, ACCT_PINNED);
8342 if (ret)
8343 imu->acct_pages = 0;
8344 return ret;
8345}
8346
Jens Axboeedafcce2019-01-09 09:16:05 -07008347static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
8348 unsigned nr_args)
8349{
8350 struct vm_area_struct **vmas = NULL;
8351 struct page **pages = NULL;
Jens Axboede293932020-09-17 16:19:16 -06008352 struct page *last_hpage = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008353 int i, j, got_pages = 0;
8354 int ret = -EINVAL;
8355
8356 if (ctx->user_bufs)
8357 return -EBUSY;
8358 if (!nr_args || nr_args > UIO_MAXIOV)
8359 return -EINVAL;
8360
8361 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
8362 GFP_KERNEL);
8363 if (!ctx->user_bufs)
8364 return -ENOMEM;
8365
8366 for (i = 0; i < nr_args; i++) {
8367 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
8368 unsigned long off, start, end, ubuf;
8369 int pret, nr_pages;
8370 struct iovec iov;
8371 size_t size;
8372
8373 ret = io_copy_iov(ctx, &iov, arg, i);
8374 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03008375 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07008376
8377 /*
8378 * Don't impose further limits on the size and buffer
8379 * constraints here, we'll -EINVAL later when IO is
8380 * submitted if they are wrong.
8381 */
8382 ret = -EFAULT;
8383 if (!iov.iov_base || !iov.iov_len)
8384 goto err;
8385
8386 /* arbitrary limit, but we need something */
8387 if (iov.iov_len > SZ_1G)
8388 goto err;
8389
8390 ubuf = (unsigned long) iov.iov_base;
8391 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
8392 start = ubuf >> PAGE_SHIFT;
8393 nr_pages = end - start;
8394
Jens Axboeedafcce2019-01-09 09:16:05 -07008395 ret = 0;
8396 if (!pages || nr_pages > got_pages) {
Denis Efremova8c73c12020-06-05 12:32:03 +03008397 kvfree(vmas);
8398 kvfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008399 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07008400 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008401 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07008402 sizeof(struct vm_area_struct *),
8403 GFP_KERNEL);
8404 if (!pages || !vmas) {
8405 ret = -ENOMEM;
Jens Axboeedafcce2019-01-09 09:16:05 -07008406 goto err;
8407 }
8408 got_pages = nr_pages;
8409 }
8410
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008411 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07008412 GFP_KERNEL);
8413 ret = -ENOMEM;
Jens Axboede293932020-09-17 16:19:16 -06008414 if (!imu->bvec)
Jens Axboeedafcce2019-01-09 09:16:05 -07008415 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07008416
8417 ret = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07008418 mmap_read_lock(current->mm);
John Hubbard2113b052020-01-30 22:13:13 -08008419 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07008420 FOLL_WRITE | FOLL_LONGTERM,
8421 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008422 if (pret == nr_pages) {
8423 /* don't support file backed memory */
8424 for (j = 0; j < nr_pages; j++) {
8425 struct vm_area_struct *vma = vmas[j];
8426
8427 if (vma->vm_file &&
8428 !is_file_hugepages(vma->vm_file)) {
8429 ret = -EOPNOTSUPP;
8430 break;
8431 }
8432 }
8433 } else {
8434 ret = pret < 0 ? pret : -EFAULT;
8435 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07008436 mmap_read_unlock(current->mm);
Jens Axboeedafcce2019-01-09 09:16:05 -07008437 if (ret) {
8438 /*
8439 * if we did partial map, or found file backed vmas,
8440 * release any pages we did get
8441 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07008442 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08008443 unpin_user_pages(pages, pret);
Jens Axboede293932020-09-17 16:19:16 -06008444 kvfree(imu->bvec);
8445 goto err;
8446 }
8447
8448 ret = io_buffer_account_pin(ctx, pages, pret, imu, &last_hpage);
8449 if (ret) {
8450 unpin_user_pages(pages, pret);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008451 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07008452 goto err;
8453 }
8454
8455 off = ubuf & ~PAGE_MASK;
8456 size = iov.iov_len;
8457 for (j = 0; j < nr_pages; j++) {
8458 size_t vec_len;
8459
8460 vec_len = min_t(size_t, size, PAGE_SIZE - off);
8461 imu->bvec[j].bv_page = pages[j];
8462 imu->bvec[j].bv_len = vec_len;
8463 imu->bvec[j].bv_offset = off;
8464 off = 0;
8465 size -= vec_len;
8466 }
8467 /* store original address for later verification */
8468 imu->ubuf = ubuf;
8469 imu->len = iov.iov_len;
8470 imu->nr_bvecs = nr_pages;
8471
8472 ctx->nr_user_bufs++;
8473 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008474 kvfree(pages);
8475 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008476 return 0;
8477err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01008478 kvfree(pages);
8479 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07008480 io_sqe_buffer_unregister(ctx);
8481 return ret;
8482}
8483
Jens Axboe9b402842019-04-11 11:45:41 -06008484static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
8485{
8486 __s32 __user *fds = arg;
8487 int fd;
8488
8489 if (ctx->cq_ev_fd)
8490 return -EBUSY;
8491
8492 if (copy_from_user(&fd, fds, sizeof(*fds)))
8493 return -EFAULT;
8494
8495 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
8496 if (IS_ERR(ctx->cq_ev_fd)) {
8497 int ret = PTR_ERR(ctx->cq_ev_fd);
8498 ctx->cq_ev_fd = NULL;
8499 return ret;
8500 }
8501
8502 return 0;
8503}
8504
8505static int io_eventfd_unregister(struct io_ring_ctx *ctx)
8506{
8507 if (ctx->cq_ev_fd) {
8508 eventfd_ctx_put(ctx->cq_ev_fd);
8509 ctx->cq_ev_fd = NULL;
8510 return 0;
8511 }
8512
8513 return -ENXIO;
8514}
8515
Jens Axboe5a2e7452020-02-23 16:23:11 -07008516static int __io_destroy_buffers(int id, void *p, void *data)
8517{
8518 struct io_ring_ctx *ctx = data;
8519 struct io_buffer *buf = p;
8520
Jens Axboe067524e2020-03-02 16:32:28 -07008521 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07008522 return 0;
8523}
8524
8525static void io_destroy_buffers(struct io_ring_ctx *ctx)
8526{
8527 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
8528 idr_destroy(&ctx->io_buffer_idr);
8529}
8530
Jens Axboe2b188cc2019-01-07 10:46:33 -07008531static void io_ring_ctx_free(struct io_ring_ctx *ctx)
8532{
Jens Axboe6b063142019-01-10 22:13:58 -07008533 io_finish_async(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07008534 io_sqe_buffer_unregister(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06008535
8536 if (ctx->sqo_task) {
8537 put_task_struct(ctx->sqo_task);
8538 ctx->sqo_task = NULL;
8539 mmdrop(ctx->mm_account);
8540 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008541 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008542
Dennis Zhou91d8f512020-09-16 13:41:05 -07008543#ifdef CONFIG_BLK_CGROUP
8544 if (ctx->sqo_blkcg_css)
8545 css_put(ctx->sqo_blkcg_css);
8546#endif
8547
Jens Axboe6b063142019-01-10 22:13:58 -07008548 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06008549 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07008550 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07008551 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07008552
Jens Axboe2b188cc2019-01-07 10:46:33 -07008553#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07008554 if (ctx->ring_sock) {
8555 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07008556 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07008557 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008558#endif
8559
Hristo Venev75b28af2019-08-26 17:23:46 +00008560 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008561 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008562
8563 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008564 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07008565 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07008566 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07008567 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008568 kfree(ctx);
8569}
8570
8571static __poll_t io_uring_poll(struct file *file, poll_table *wait)
8572{
8573 struct io_ring_ctx *ctx = file->private_data;
8574 __poll_t mask = 0;
8575
8576 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02008577 /*
8578 * synchronizes with barrier from wq_has_sleeper call in
8579 * io_commit_cqring
8580 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07008581 smp_rmb();
Jens Axboe90554202020-09-03 12:12:41 -06008582 if (!io_sqring_full(ctx))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008583 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01008584 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008585 mask |= EPOLLIN | EPOLLRDNORM;
8586
8587 return mask;
8588}
8589
8590static int io_uring_fasync(int fd, struct file *file, int on)
8591{
8592 struct io_ring_ctx *ctx = file->private_data;
8593
8594 return fasync_helper(fd, file, on, &ctx->cq_fasync);
8595}
8596
Jens Axboe071698e2020-01-28 10:04:42 -07008597static int io_remove_personalities(int id, void *p, void *data)
8598{
8599 struct io_ring_ctx *ctx = data;
Jens Axboe1e6fa522020-10-15 08:46:24 -06008600 struct io_identity *iod;
Jens Axboe071698e2020-01-28 10:04:42 -07008601
Jens Axboe1e6fa522020-10-15 08:46:24 -06008602 iod = idr_remove(&ctx->personality_idr, id);
8603 if (iod) {
8604 put_cred(iod->creds);
8605 if (refcount_dec_and_test(&iod->count))
8606 kfree(iod);
8607 }
Jens Axboe071698e2020-01-28 10:04:42 -07008608 return 0;
8609}
8610
Jens Axboe85faa7b2020-04-09 18:14:00 -06008611static void io_ring_exit_work(struct work_struct *work)
8612{
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008613 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
8614 exit_work);
Jens Axboe85faa7b2020-04-09 18:14:00 -06008615
Jens Axboe56952e92020-06-17 15:00:04 -06008616 /*
8617 * If we're doing polled IO and end up having requests being
8618 * submitted async (out-of-line), then completions can come in while
8619 * we're waiting for refs to drop. We need to reap these manually,
8620 * as nobody else will be looking for them.
8621 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008622 do {
Jens Axboe56952e92020-06-17 15:00:04 -06008623 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008624 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008625 io_iopoll_try_reap_events(ctx);
8626 } while (!wait_for_completion_timeout(&ctx->ref_comp, HZ/20));
Jens Axboe85faa7b2020-04-09 18:14:00 -06008627 io_ring_ctx_free(ctx);
8628}
8629
Jens Axboe2b188cc2019-01-07 10:46:33 -07008630static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
8631{
8632 mutex_lock(&ctx->uring_lock);
8633 percpu_ref_kill(&ctx->refs);
8634 mutex_unlock(&ctx->uring_lock);
8635
Jens Axboef3606e32020-09-22 08:18:24 -06008636 io_kill_timeouts(ctx, NULL);
8637 io_poll_remove_all(ctx, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06008638
8639 if (ctx->io_wq)
8640 io_wq_cancel_all(ctx->io_wq);
8641
Jens Axboe15dff282019-11-13 09:09:23 -07008642 /* if we failed setting up the ctx, we might not have any rings */
8643 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008644 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008645 io_iopoll_try_reap_events(ctx);
Jens Axboe071698e2020-01-28 10:04:42 -07008646 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06008647
8648 /*
8649 * Do this upfront, so we won't have a grace period where the ring
8650 * is closed but resources aren't reaped yet. This can cause
8651 * spurious failure in setting up a new ring.
8652 */
Jens Axboe760618f2020-07-24 12:53:31 -06008653 io_unaccount_mem(ctx, ring_pages(ctx->sq_entries, ctx->cq_entries),
8654 ACCT_LOCKED);
Jens Axboe309fc032020-07-10 09:13:34 -06008655
Jens Axboe85faa7b2020-04-09 18:14:00 -06008656 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06008657 /*
8658 * Use system_unbound_wq to avoid spawning tons of event kworkers
8659 * if we're exiting a ton of rings at the same time. It just adds
8660 * noise and overhead, there's no discernable change in runtime
8661 * over using system_wq.
8662 */
8663 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008664}
8665
8666static int io_uring_release(struct inode *inode, struct file *file)
8667{
8668 struct io_ring_ctx *ctx = file->private_data;
8669
8670 file->private_data = NULL;
8671 io_ring_ctx_wait_and_kill(ctx);
8672 return 0;
8673}
8674
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008675static bool io_wq_files_match(struct io_wq_work *work, void *data)
8676{
8677 struct files_struct *files = data;
8678
Jens Axboedfead8a2020-10-14 10:12:37 -06008679 return !files || ((work->flags & IO_WQ_WORK_FILES) &&
Jens Axboe98447d62020-10-14 10:48:51 -06008680 work->identity->files == files);
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008681}
8682
Jens Axboef254ac02020-08-12 17:33:30 -06008683/*
8684 * Returns true if 'preq' is the link parent of 'req'
8685 */
8686static bool io_match_link(struct io_kiocb *preq, struct io_kiocb *req)
8687{
8688 struct io_kiocb *link;
8689
Pavel Begunkovf2f87372020-10-27 23:25:37 +00008690 io_for_each_link(link, preq->link) {
Jens Axboef254ac02020-08-12 17:33:30 -06008691 if (link == req)
8692 return true;
8693 }
Jens Axboef254ac02020-08-12 17:33:30 -06008694 return false;
8695}
8696
8697/*
8698 * We're looking to cancel 'req' because it's holding on to our files, but
8699 * 'req' could be a link to another request. See if it is, and cancel that
8700 * parent request if so.
8701 */
8702static bool io_poll_remove_link(struct io_ring_ctx *ctx, struct io_kiocb *req)
8703{
8704 struct hlist_node *tmp;
8705 struct io_kiocb *preq;
8706 bool found = false;
8707 int i;
8708
8709 spin_lock_irq(&ctx->completion_lock);
8710 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
8711 struct hlist_head *list;
8712
8713 list = &ctx->cancel_hash[i];
8714 hlist_for_each_entry_safe(preq, tmp, list, hash_node) {
8715 found = io_match_link(preq, req);
8716 if (found) {
8717 io_poll_remove_one(preq);
8718 break;
8719 }
8720 }
8721 }
8722 spin_unlock_irq(&ctx->completion_lock);
8723 return found;
8724}
8725
8726static bool io_timeout_remove_link(struct io_ring_ctx *ctx,
8727 struct io_kiocb *req)
8728{
8729 struct io_kiocb *preq;
8730 bool found = false;
8731
8732 spin_lock_irq(&ctx->completion_lock);
8733 list_for_each_entry(preq, &ctx->timeout_list, timeout.list) {
8734 found = io_match_link(preq, req);
8735 if (found) {
8736 __io_timeout_cancel(preq);
8737 break;
8738 }
8739 }
8740 spin_unlock_irq(&ctx->completion_lock);
8741 return found;
8742}
8743
Jens Axboeb711d4e2020-08-16 08:23:05 -07008744static bool io_cancel_link_cb(struct io_wq_work *work, void *data)
8745{
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00008746 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
8747 bool ret;
8748
8749 if (req->flags & REQ_F_LINK_TIMEOUT) {
8750 unsigned long flags;
8751 struct io_ring_ctx *ctx = req->ctx;
8752
8753 /* protect against races with linked timeouts */
8754 spin_lock_irqsave(&ctx->completion_lock, flags);
8755 ret = io_match_link(req, data);
8756 spin_unlock_irqrestore(&ctx->completion_lock, flags);
8757 } else {
8758 ret = io_match_link(req, data);
8759 }
8760 return ret;
Jens Axboeb711d4e2020-08-16 08:23:05 -07008761}
8762
8763static void io_attempt_cancel(struct io_ring_ctx *ctx, struct io_kiocb *req)
8764{
8765 enum io_wq_cancel cret;
8766
8767 /* cancel this particular work, if it's running */
8768 cret = io_wq_cancel_work(ctx->io_wq, &req->work);
8769 if (cret != IO_WQ_CANCEL_NOTFOUND)
8770 return;
8771
8772 /* find links that hold this pending, cancel those */
8773 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_link_cb, req, true);
8774 if (cret != IO_WQ_CANCEL_NOTFOUND)
8775 return;
8776
8777 /* if we have a poll link holding this pending, cancel that */
8778 if (io_poll_remove_link(ctx, req))
8779 return;
8780
8781 /* final option, timeout link is holding this req pending */
8782 io_timeout_remove_link(ctx, req);
8783}
8784
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008785static void io_cancel_defer_files(struct io_ring_ctx *ctx,
Pavel Begunkovef9865a2020-11-05 14:06:19 +00008786 struct task_struct *task,
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008787 struct files_struct *files)
8788{
8789 struct io_defer_entry *de = NULL;
8790 LIST_HEAD(list);
8791
8792 spin_lock_irq(&ctx->completion_lock);
8793 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkovef9865a2020-11-05 14:06:19 +00008794 if (io_task_match(de->req, task) &&
8795 io_match_files(de->req, files)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008796 list_cut_position(&list, &ctx->defer_list, &de->list);
8797 break;
8798 }
8799 }
8800 spin_unlock_irq(&ctx->completion_lock);
8801
8802 while (!list_empty(&list)) {
8803 de = list_first_entry(&list, struct io_defer_entry, list);
8804 list_del_init(&de->list);
8805 req_set_fail_links(de->req);
8806 io_put_req(de->req);
8807 io_req_complete(de->req, -ECANCELED);
8808 kfree(de);
8809 }
8810}
8811
Jens Axboe76e1b642020-09-26 15:05:03 -06008812/*
8813 * Returns true if we found and killed one or more files pinning requests
8814 */
8815static bool io_uring_cancel_files(struct io_ring_ctx *ctx,
Jens Axboefcb323c2019-10-24 12:39:47 -06008816 struct files_struct *files)
8817{
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008818 if (list_empty_careful(&ctx->inflight_list))
Jens Axboe76e1b642020-09-26 15:05:03 -06008819 return false;
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008820
8821 /* cancel all at once, should be faster than doing it one by one*/
8822 io_wq_cancel_cb(ctx->io_wq, io_wq_files_match, files, true);
8823
Jens Axboefcb323c2019-10-24 12:39:47 -06008824 while (!list_empty_careful(&ctx->inflight_list)) {
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008825 struct io_kiocb *cancel_req = NULL, *req;
8826 DEFINE_WAIT(wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008827
8828 spin_lock_irq(&ctx->inflight_lock);
8829 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboedfead8a2020-10-14 10:12:37 -06008830 if (files && (req->work.flags & IO_WQ_WORK_FILES) &&
Jens Axboe98447d62020-10-14 10:48:51 -06008831 req->work.identity->files != files)
Jens Axboe768134d2019-11-10 20:30:53 -07008832 continue;
8833 /* req is being completed, ignore */
8834 if (!refcount_inc_not_zero(&req->refs))
8835 continue;
8836 cancel_req = req;
8837 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06008838 }
Jens Axboe768134d2019-11-10 20:30:53 -07008839 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06008840 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07008841 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06008842 spin_unlock_irq(&ctx->inflight_lock);
8843
Jens Axboe768134d2019-11-10 20:30:53 -07008844 /* We need to keep going until we don't find a matching req */
8845 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06008846 break;
Pavel Begunkovbb175342020-08-20 11:33:35 +03008847 /* cancel this request, or head link requests */
8848 io_attempt_cancel(ctx, cancel_req);
8849 io_put_req(cancel_req);
Jens Axboe6200b0a2020-09-13 14:38:30 -06008850 /* cancellations _may_ trigger task work */
8851 io_run_task_work();
Jens Axboefcb323c2019-10-24 12:39:47 -06008852 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008853 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008854 }
Jens Axboe76e1b642020-09-26 15:05:03 -06008855
8856 return true;
Jens Axboefcb323c2019-10-24 12:39:47 -06008857}
8858
Pavel Begunkov801dd572020-06-15 10:33:14 +03008859static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008860{
Pavel Begunkov801dd572020-06-15 10:33:14 +03008861 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
8862 struct task_struct *task = data;
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008863
Jens Axboef3606e32020-09-22 08:18:24 -06008864 return io_task_match(req, task);
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008865}
8866
Jens Axboe0f212202020-09-13 13:09:39 -06008867static bool __io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8868 struct task_struct *task,
8869 struct files_struct *files)
8870{
8871 bool ret;
8872
8873 ret = io_uring_cancel_files(ctx, files);
8874 if (!files) {
8875 enum io_wq_cancel cret;
8876
8877 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, task, true);
8878 if (cret != IO_WQ_CANCEL_NOTFOUND)
8879 ret = true;
8880
8881 /* SQPOLL thread does its own polling */
8882 if (!(ctx->flags & IORING_SETUP_SQPOLL)) {
8883 while (!list_empty_careful(&ctx->iopoll_list)) {
8884 io_iopoll_try_reap_events(ctx);
8885 ret = true;
8886 }
8887 }
8888
8889 ret |= io_poll_remove_all(ctx, task);
8890 ret |= io_kill_timeouts(ctx, task);
8891 }
8892
8893 return ret;
8894}
8895
8896/*
8897 * We need to iteratively cancel requests, in case a request has dependent
8898 * hard links. These persist even for failure of cancelations, hence keep
8899 * looping until none are found.
8900 */
8901static void io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8902 struct files_struct *files)
8903{
8904 struct task_struct *task = current;
8905
Jens Axboefdaf0832020-10-30 09:37:30 -06008906 if ((ctx->flags & IORING_SETUP_SQPOLL) && ctx->sq_data) {
Jens Axboe534ca6d2020-09-02 13:52:19 -06008907 task = ctx->sq_data->thread;
Jens Axboefdaf0832020-10-30 09:37:30 -06008908 atomic_inc(&task->io_uring->in_idle);
8909 io_sq_thread_park(ctx->sq_data);
8910 }
Jens Axboe0f212202020-09-13 13:09:39 -06008911
Pavel Begunkovef9865a2020-11-05 14:06:19 +00008912 if (files)
8913 io_cancel_defer_files(ctx, NULL, files);
8914 else
8915 io_cancel_defer_files(ctx, task, NULL);
8916
Jens Axboe0f212202020-09-13 13:09:39 -06008917 io_cqring_overflow_flush(ctx, true, task, files);
8918
8919 while (__io_uring_cancel_task_requests(ctx, task, files)) {
8920 io_run_task_work();
8921 cond_resched();
8922 }
Jens Axboefdaf0832020-10-30 09:37:30 -06008923
8924 if ((ctx->flags & IORING_SETUP_SQPOLL) && ctx->sq_data) {
8925 atomic_dec(&task->io_uring->in_idle);
8926 /*
8927 * If the files that are going away are the ones in the thread
8928 * identity, clear them out.
8929 */
8930 if (task->io_uring->identity->files == files)
8931 task->io_uring->identity->files = NULL;
8932 io_sq_thread_unpark(ctx->sq_data);
8933 }
Jens Axboe0f212202020-09-13 13:09:39 -06008934}
8935
8936/*
8937 * Note that this task has used io_uring. We use it for cancelation purposes.
8938 */
Jens Axboefdaf0832020-10-30 09:37:30 -06008939static int io_uring_add_task_file(struct io_ring_ctx *ctx, struct file *file)
Jens Axboe0f212202020-09-13 13:09:39 -06008940{
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008941 struct io_uring_task *tctx = current->io_uring;
8942
8943 if (unlikely(!tctx)) {
Jens Axboe0f212202020-09-13 13:09:39 -06008944 int ret;
8945
8946 ret = io_uring_alloc_task_context(current);
8947 if (unlikely(ret))
8948 return ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008949 tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06008950 }
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008951 if (tctx->last != file) {
8952 void *old = xa_load(&tctx->xa, (unsigned long)file);
Jens Axboe0f212202020-09-13 13:09:39 -06008953
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008954 if (!old) {
Jens Axboe0f212202020-09-13 13:09:39 -06008955 get_file(file);
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008956 xa_store(&tctx->xa, (unsigned long)file, file, GFP_KERNEL);
Jens Axboe0f212202020-09-13 13:09:39 -06008957 }
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01008958 tctx->last = file;
Jens Axboe0f212202020-09-13 13:09:39 -06008959 }
8960
Jens Axboefdaf0832020-10-30 09:37:30 -06008961 /*
8962 * This is race safe in that the task itself is doing this, hence it
8963 * cannot be going through the exit/cancel paths at the same time.
8964 * This cannot be modified while exit/cancel is running.
8965 */
8966 if (!tctx->sqpoll && (ctx->flags & IORING_SETUP_SQPOLL))
8967 tctx->sqpoll = true;
8968
Jens Axboe0f212202020-09-13 13:09:39 -06008969 return 0;
8970}
8971
8972/*
8973 * Remove this io_uring_file -> task mapping.
8974 */
8975static void io_uring_del_task_file(struct file *file)
8976{
8977 struct io_uring_task *tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06008978
8979 if (tctx->last == file)
8980 tctx->last = NULL;
Matthew Wilcox (Oracle)5e2ed8c2020-10-09 13:49:53 +01008981 file = xa_erase(&tctx->xa, (unsigned long)file);
Jens Axboe0f212202020-09-13 13:09:39 -06008982 if (file)
8983 fput(file);
8984}
8985
Jens Axboe0f212202020-09-13 13:09:39 -06008986/*
8987 * Drop task note for this file if we're the only ones that hold it after
8988 * pending fput()
8989 */
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008990static void io_uring_attempt_task_drop(struct file *file)
Jens Axboe0f212202020-09-13 13:09:39 -06008991{
8992 if (!current->io_uring)
8993 return;
8994 /*
8995 * fput() is pending, will be 2 if the only other ref is our potential
8996 * task file note. If the task is exiting, drop regardless of count.
8997 */
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01008998 if (fatal_signal_pending(current) || (current->flags & PF_EXITING) ||
8999 atomic_long_read(&file->f_count) == 2)
9000 io_uring_del_task_file(file);
Jens Axboe0f212202020-09-13 13:09:39 -06009001}
9002
9003void __io_uring_files_cancel(struct files_struct *files)
9004{
9005 struct io_uring_task *tctx = current->io_uring;
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01009006 struct file *file;
9007 unsigned long index;
Jens Axboe0f212202020-09-13 13:09:39 -06009008
9009 /* make sure overflow events are dropped */
Jens Axboefdaf0832020-10-30 09:37:30 -06009010 atomic_inc(&tctx->in_idle);
Jens Axboe0f212202020-09-13 13:09:39 -06009011
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01009012 xa_for_each(&tctx->xa, index, file) {
9013 struct io_ring_ctx *ctx = file->private_data;
Jens Axboe0f212202020-09-13 13:09:39 -06009014
9015 io_uring_cancel_task_requests(ctx, files);
9016 if (files)
9017 io_uring_del_task_file(file);
Matthew Wilcox (Oracle)ce765372020-10-09 13:49:51 +01009018 }
Jens Axboefdaf0832020-10-30 09:37:30 -06009019
9020 atomic_dec(&tctx->in_idle);
9021}
9022
9023static s64 tctx_inflight(struct io_uring_task *tctx)
9024{
9025 unsigned long index;
9026 struct file *file;
9027 s64 inflight;
9028
9029 inflight = percpu_counter_sum(&tctx->inflight);
9030 if (!tctx->sqpoll)
9031 return inflight;
9032
9033 /*
9034 * If we have SQPOLL rings, then we need to iterate and find them, and
9035 * add the pending count for those.
9036 */
9037 xa_for_each(&tctx->xa, index, file) {
9038 struct io_ring_ctx *ctx = file->private_data;
9039
9040 if (ctx->flags & IORING_SETUP_SQPOLL) {
9041 struct io_uring_task *__tctx = ctx->sqo_task->io_uring;
9042
9043 inflight += percpu_counter_sum(&__tctx->inflight);
9044 }
9045 }
9046
9047 return inflight;
Jens Axboe0f212202020-09-13 13:09:39 -06009048}
9049
Jens Axboe0f212202020-09-13 13:09:39 -06009050/*
9051 * Find any io_uring fd that this task has registered or done IO on, and cancel
9052 * requests.
9053 */
9054void __io_uring_task_cancel(void)
9055{
9056 struct io_uring_task *tctx = current->io_uring;
9057 DEFINE_WAIT(wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06009058 s64 inflight;
Jens Axboe0f212202020-09-13 13:09:39 -06009059
9060 /* make sure overflow events are dropped */
Jens Axboefdaf0832020-10-30 09:37:30 -06009061 atomic_inc(&tctx->in_idle);
Jens Axboe0f212202020-09-13 13:09:39 -06009062
Jens Axboed8a6df12020-10-15 16:24:45 -06009063 do {
Jens Axboe0f212202020-09-13 13:09:39 -06009064 /* read completions before cancelations */
Jens Axboefdaf0832020-10-30 09:37:30 -06009065 inflight = tctx_inflight(tctx);
Jens Axboed8a6df12020-10-15 16:24:45 -06009066 if (!inflight)
9067 break;
Jens Axboe0f212202020-09-13 13:09:39 -06009068 __io_uring_files_cancel(NULL);
9069
9070 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
9071
9072 /*
9073 * If we've seen completions, retry. This avoids a race where
9074 * a completion comes in before we did prepare_to_wait().
9075 */
Jens Axboefdaf0832020-10-30 09:37:30 -06009076 if (inflight != tctx_inflight(tctx))
Jens Axboe0f212202020-09-13 13:09:39 -06009077 continue;
Jens Axboe0f212202020-09-13 13:09:39 -06009078 schedule();
Jens Axboed8a6df12020-10-15 16:24:45 -06009079 } while (1);
Jens Axboe0f212202020-09-13 13:09:39 -06009080
9081 finish_wait(&tctx->wait, &wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06009082 atomic_dec(&tctx->in_idle);
Jens Axboefcb323c2019-10-24 12:39:47 -06009083}
9084
9085static int io_uring_flush(struct file *file, void *data)
9086{
Pavel Begunkovc8fb20b2020-10-22 16:38:27 +01009087 io_uring_attempt_task_drop(file);
Jens Axboefcb323c2019-10-24 12:39:47 -06009088 return 0;
9089}
9090
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009091static void *io_uring_validate_mmap_request(struct file *file,
9092 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009093{
Jens Axboe2b188cc2019-01-07 10:46:33 -07009094 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009095 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009096 struct page *page;
9097 void *ptr;
9098
9099 switch (offset) {
9100 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00009101 case IORING_OFF_CQ_RING:
9102 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009103 break;
9104 case IORING_OFF_SQES:
9105 ptr = ctx->sq_sqes;
9106 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009107 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009108 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009109 }
9110
9111 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07009112 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009113 return ERR_PTR(-EINVAL);
9114
9115 return ptr;
9116}
9117
9118#ifdef CONFIG_MMU
9119
9120static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9121{
9122 size_t sz = vma->vm_end - vma->vm_start;
9123 unsigned long pfn;
9124 void *ptr;
9125
9126 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
9127 if (IS_ERR(ptr))
9128 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009129
9130 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
9131 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
9132}
9133
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009134#else /* !CONFIG_MMU */
9135
9136static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9137{
9138 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
9139}
9140
9141static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
9142{
9143 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
9144}
9145
9146static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
9147 unsigned long addr, unsigned long len,
9148 unsigned long pgoff, unsigned long flags)
9149{
9150 void *ptr;
9151
9152 ptr = io_uring_validate_mmap_request(file, pgoff, len);
9153 if (IS_ERR(ptr))
9154 return PTR_ERR(ptr);
9155
9156 return (unsigned long) ptr;
9157}
9158
9159#endif /* !CONFIG_MMU */
9160
Jens Axboe90554202020-09-03 12:12:41 -06009161static void io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
9162{
9163 DEFINE_WAIT(wait);
9164
9165 do {
9166 if (!io_sqring_full(ctx))
9167 break;
9168
9169 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9170
9171 if (!io_sqring_full(ctx))
9172 break;
9173
9174 schedule();
9175 } while (!signal_pending(current));
9176
9177 finish_wait(&ctx->sqo_sq_wait, &wait);
9178}
9179
Hao Xuc73ebb62020-11-03 10:54:37 +08009180static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9181 struct __kernel_timespec __user **ts,
9182 const sigset_t __user **sig)
9183{
9184 struct io_uring_getevents_arg arg;
9185
9186 /*
9187 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9188 * is just a pointer to the sigset_t.
9189 */
9190 if (!(flags & IORING_ENTER_EXT_ARG)) {
9191 *sig = (const sigset_t __user *) argp;
9192 *ts = NULL;
9193 return 0;
9194 }
9195
9196 /*
9197 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9198 * timespec and sigset_t pointers if good.
9199 */
9200 if (*argsz != sizeof(arg))
9201 return -EINVAL;
9202 if (copy_from_user(&arg, argp, sizeof(arg)))
9203 return -EFAULT;
9204 *sig = u64_to_user_ptr(arg.sigmask);
9205 *argsz = arg.sigmask_sz;
9206 *ts = u64_to_user_ptr(arg.ts);
9207 return 0;
9208}
9209
Jens Axboe2b188cc2019-01-07 10:46:33 -07009210SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
Hao Xuc73ebb62020-11-03 10:54:37 +08009211 u32, min_complete, u32, flags, const void __user *, argp,
9212 size_t, argsz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009213{
9214 struct io_ring_ctx *ctx;
9215 long ret = -EBADF;
9216 int submitted = 0;
9217 struct fd f;
9218
Jens Axboe4c6e2772020-07-01 11:29:10 -06009219 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07009220
Jens Axboe90554202020-09-03 12:12:41 -06009221 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
Hao Xuc73ebb62020-11-03 10:54:37 +08009222 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009223 return -EINVAL;
9224
9225 f = fdget(fd);
9226 if (!f.file)
9227 return -EBADF;
9228
9229 ret = -EOPNOTSUPP;
9230 if (f.file->f_op != &io_uring_fops)
9231 goto out_fput;
9232
9233 ret = -ENXIO;
9234 ctx = f.file->private_data;
9235 if (!percpu_ref_tryget(&ctx->refs))
9236 goto out_fput;
9237
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009238 ret = -EBADFD;
9239 if (ctx->flags & IORING_SETUP_R_DISABLED)
9240 goto out;
9241
Jens Axboe6c271ce2019-01-10 11:22:30 -07009242 /*
9243 * For SQ polling, the thread will do all submissions and completions.
9244 * Just return the requested submit count, and wake the thread if
9245 * we were asked to.
9246 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009247 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07009248 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07009249 if (!list_empty_careful(&ctx->cq_overflow_list))
Jens Axboee6c8aa92020-09-28 13:10:13 -06009250 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboe6c271ce2019-01-10 11:22:30 -07009251 if (flags & IORING_ENTER_SQ_WAKEUP)
Jens Axboe534ca6d2020-09-02 13:52:19 -06009252 wake_up(&ctx->sq_data->wait);
Jens Axboe90554202020-09-03 12:12:41 -06009253 if (flags & IORING_ENTER_SQ_WAIT)
9254 io_sqpoll_wait_sq(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07009255 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009256 } else if (to_submit) {
Jens Axboefdaf0832020-10-30 09:37:30 -06009257 ret = io_uring_add_task_file(ctx, f.file);
Jens Axboe0f212202020-09-13 13:09:39 -06009258 if (unlikely(ret))
9259 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009260 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009261 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009262 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009263
9264 if (submitted != to_submit)
9265 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009266 }
9267 if (flags & IORING_ENTER_GETEVENTS) {
Hao Xuc73ebb62020-11-03 10:54:37 +08009268 const sigset_t __user *sig;
9269 struct __kernel_timespec __user *ts;
9270
9271 ret = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
9272 if (unlikely(ret))
9273 goto out;
9274
Jens Axboe2b188cc2019-01-07 10:46:33 -07009275 min_complete = min(min_complete, ctx->cq_entries);
9276
Xiaoguang Wang32b22442020-03-11 09:26:09 +08009277 /*
9278 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
9279 * space applications don't need to do io completion events
9280 * polling again, they can rely on io_sq_thread to do polling
9281 * work, which can reduce cpu usage and uring_lock contention.
9282 */
9283 if (ctx->flags & IORING_SETUP_IOPOLL &&
9284 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03009285 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07009286 } else {
Hao Xuc73ebb62020-11-03 10:54:37 +08009287 ret = io_cqring_wait(ctx, min_complete, sig, argsz, ts);
Jens Axboedef596e2019-01-09 08:59:42 -07009288 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009289 }
9290
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009291out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03009292 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009293out_fput:
9294 fdput(f);
9295 return submitted ? submitted : ret;
9296}
9297
Tobias Klauserbebdb652020-02-26 18:38:32 +01009298#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07009299static int io_uring_show_cred(int id, void *p, void *data)
9300{
Jens Axboe6b47ab82020-11-05 09:50:16 -07009301 struct io_identity *iod = p;
9302 const struct cred *cred = iod->creds;
Jens Axboe87ce9552020-01-30 08:25:34 -07009303 struct seq_file *m = data;
9304 struct user_namespace *uns = seq_user_ns(m);
9305 struct group_info *gi;
9306 kernel_cap_t cap;
9307 unsigned __capi;
9308 int g;
9309
9310 seq_printf(m, "%5d\n", id);
9311 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
9312 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
9313 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
9314 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
9315 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
9316 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
9317 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
9318 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
9319 seq_puts(m, "\n\tGroups:\t");
9320 gi = cred->group_info;
9321 for (g = 0; g < gi->ngroups; g++) {
9322 seq_put_decimal_ull(m, g ? " " : "",
9323 from_kgid_munged(uns, gi->gid[g]));
9324 }
9325 seq_puts(m, "\n\tCapEff:\t");
9326 cap = cred->cap_effective;
9327 CAP_FOR_EACH_U32(__capi)
9328 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
9329 seq_putc(m, '\n');
9330 return 0;
9331}
9332
9333static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
9334{
Joseph Qidbbe9c62020-09-29 09:01:22 -06009335 struct io_sq_data *sq = NULL;
Jens Axboefad8e0d2020-09-28 08:57:48 -06009336 bool has_lock;
Jens Axboe87ce9552020-01-30 08:25:34 -07009337 int i;
9338
Jens Axboefad8e0d2020-09-28 08:57:48 -06009339 /*
9340 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
9341 * since fdinfo case grabs it in the opposite direction of normal use
9342 * cases. If we fail to get the lock, we just don't iterate any
9343 * structures that could be going away outside the io_uring mutex.
9344 */
9345 has_lock = mutex_trylock(&ctx->uring_lock);
9346
Joseph Qidbbe9c62020-09-29 09:01:22 -06009347 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL))
9348 sq = ctx->sq_data;
9349
9350 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
9351 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
Jens Axboe87ce9552020-01-30 08:25:34 -07009352 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009353 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009354 struct fixed_file_table *table;
9355 struct file *f;
9356
9357 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
9358 f = table->files[i & IORING_FILE_TABLE_MASK];
9359 if (f)
9360 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
9361 else
9362 seq_printf(m, "%5u: <none>\n", i);
9363 }
9364 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009365 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009366 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
9367
9368 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
9369 (unsigned int) buf->len);
9370 }
Jens Axboefad8e0d2020-09-28 08:57:48 -06009371 if (has_lock && !idr_is_empty(&ctx->personality_idr)) {
Jens Axboe87ce9552020-01-30 08:25:34 -07009372 seq_printf(m, "Personalities:\n");
9373 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
9374 }
Jens Axboed7718a92020-02-14 22:23:12 -07009375 seq_printf(m, "PollList:\n");
9376 spin_lock_irq(&ctx->completion_lock);
9377 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
9378 struct hlist_head *list = &ctx->cancel_hash[i];
9379 struct io_kiocb *req;
9380
9381 hlist_for_each_entry(req, list, hash_node)
9382 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
9383 req->task->task_works != NULL);
9384 }
9385 spin_unlock_irq(&ctx->completion_lock);
Jens Axboefad8e0d2020-09-28 08:57:48 -06009386 if (has_lock)
9387 mutex_unlock(&ctx->uring_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07009388}
9389
9390static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
9391{
9392 struct io_ring_ctx *ctx = f->private_data;
9393
9394 if (percpu_ref_tryget(&ctx->refs)) {
9395 __io_uring_show_fdinfo(ctx, m);
9396 percpu_ref_put(&ctx->refs);
9397 }
9398}
Tobias Klauserbebdb652020-02-26 18:38:32 +01009399#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07009400
Jens Axboe2b188cc2019-01-07 10:46:33 -07009401static const struct file_operations io_uring_fops = {
9402 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06009403 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009404 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009405#ifndef CONFIG_MMU
9406 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
9407 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
9408#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07009409 .poll = io_uring_poll,
9410 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01009411#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07009412 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01009413#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07009414};
9415
9416static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
9417 struct io_uring_params *p)
9418{
Hristo Venev75b28af2019-08-26 17:23:46 +00009419 struct io_rings *rings;
9420 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009421
Jens Axboebd740482020-08-05 12:58:23 -06009422 /* make sure these are sane, as we already accounted them */
9423 ctx->sq_entries = p->sq_entries;
9424 ctx->cq_entries = p->cq_entries;
9425
Hristo Venev75b28af2019-08-26 17:23:46 +00009426 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
9427 if (size == SIZE_MAX)
9428 return -EOVERFLOW;
9429
9430 rings = io_mem_alloc(size);
9431 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009432 return -ENOMEM;
9433
Hristo Venev75b28af2019-08-26 17:23:46 +00009434 ctx->rings = rings;
9435 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
9436 rings->sq_ring_mask = p->sq_entries - 1;
9437 rings->cq_ring_mask = p->cq_entries - 1;
9438 rings->sq_ring_entries = p->sq_entries;
9439 rings->cq_ring_entries = p->cq_entries;
9440 ctx->sq_mask = rings->sq_ring_mask;
9441 ctx->cq_mask = rings->cq_ring_mask;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009442
9443 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07009444 if (size == SIZE_MAX) {
9445 io_mem_free(ctx->rings);
9446 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009447 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07009448 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009449
9450 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07009451 if (!ctx->sq_sqes) {
9452 io_mem_free(ctx->rings);
9453 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009454 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07009455 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009456
Jens Axboe2b188cc2019-01-07 10:46:33 -07009457 return 0;
9458}
9459
9460/*
9461 * Allocate an anonymous fd, this is what constitutes the application
9462 * visible backing of an io_uring instance. The application mmaps this
9463 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
9464 * we have to tie this fd to a socket for file garbage collection purposes.
9465 */
9466static int io_uring_get_fd(struct io_ring_ctx *ctx)
9467{
9468 struct file *file;
9469 int ret;
9470
9471#if defined(CONFIG_UNIX)
9472 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
9473 &ctx->ring_sock);
9474 if (ret)
9475 return ret;
9476#endif
9477
9478 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
9479 if (ret < 0)
9480 goto err;
9481
9482 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
9483 O_RDWR | O_CLOEXEC);
9484 if (IS_ERR(file)) {
Jens Axboe0f212202020-09-13 13:09:39 -06009485err_fd:
Jens Axboe2b188cc2019-01-07 10:46:33 -07009486 put_unused_fd(ret);
9487 ret = PTR_ERR(file);
9488 goto err;
9489 }
9490
9491#if defined(CONFIG_UNIX)
9492 ctx->ring_sock->file = file;
9493#endif
Jens Axboefdaf0832020-10-30 09:37:30 -06009494 if (unlikely(io_uring_add_task_file(ctx, file))) {
Jens Axboe0f212202020-09-13 13:09:39 -06009495 file = ERR_PTR(-ENOMEM);
9496 goto err_fd;
9497 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009498 fd_install(ret, file);
9499 return ret;
9500err:
9501#if defined(CONFIG_UNIX)
9502 sock_release(ctx->ring_sock);
9503 ctx->ring_sock = NULL;
9504#endif
9505 return ret;
9506}
9507
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009508static int io_uring_create(unsigned entries, struct io_uring_params *p,
9509 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009510{
9511 struct user_struct *user = NULL;
9512 struct io_ring_ctx *ctx;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009513 bool limit_mem;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009514 int ret;
9515
Jens Axboe8110c1a2019-12-28 15:39:54 -07009516 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009517 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07009518 if (entries > IORING_MAX_ENTRIES) {
9519 if (!(p->flags & IORING_SETUP_CLAMP))
9520 return -EINVAL;
9521 entries = IORING_MAX_ENTRIES;
9522 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009523
9524 /*
9525 * Use twice as many entries for the CQ ring. It's possible for the
9526 * application to drive a higher depth than the size of the SQ ring,
9527 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06009528 * some flexibility in overcommitting a bit. If the application has
9529 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
9530 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07009531 */
9532 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06009533 if (p->flags & IORING_SETUP_CQSIZE) {
9534 /*
9535 * If IORING_SETUP_CQSIZE is set, we do the same roundup
9536 * to a power-of-two, if it isn't already. We do NOT impose
9537 * any cq vs sq ring sizing.
9538 */
Jens Axboe88ec3212020-11-11 10:38:53 -07009539 p->cq_entries = roundup_pow_of_two(p->cq_entries);
Jens Axboe8110c1a2019-12-28 15:39:54 -07009540 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06009541 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07009542 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
9543 if (!(p->flags & IORING_SETUP_CLAMP))
9544 return -EINVAL;
9545 p->cq_entries = IORING_MAX_CQ_ENTRIES;
9546 }
Jens Axboe33a107f2019-10-04 12:10:03 -06009547 } else {
9548 p->cq_entries = 2 * p->sq_entries;
9549 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009550
9551 user = get_uid(current_user());
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009552 limit_mem = !capable(CAP_IPC_LOCK);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009553
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009554 if (limit_mem) {
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07009555 ret = __io_account_mem(user,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009556 ring_pages(p->sq_entries, p->cq_entries));
9557 if (ret) {
9558 free_uid(user);
9559 return ret;
9560 }
9561 }
9562
9563 ctx = io_ring_ctx_alloc(p);
9564 if (!ctx) {
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07009565 if (limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07009566 __io_unaccount_mem(user, ring_pages(p->sq_entries,
Jens Axboe2b188cc2019-01-07 10:46:33 -07009567 p->cq_entries));
9568 free_uid(user);
9569 return -ENOMEM;
9570 }
9571 ctx->compat = in_compat_syscall();
Jens Axboe2b188cc2019-01-07 10:46:33 -07009572 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07009573 ctx->creds = get_current_cred();
Jens Axboe4ea33a92020-10-15 13:46:44 -06009574#ifdef CONFIG_AUDIT
9575 ctx->loginuid = current->loginuid;
9576 ctx->sessionid = current->sessionid;
9577#endif
Jens Axboe2aede0e2020-09-14 10:45:53 -06009578 ctx->sqo_task = get_task_struct(current);
9579
9580 /*
9581 * This is just grabbed for accounting purposes. When a process exits,
9582 * the mm is exited and dropped before the files, hence we need to hang
9583 * on to this mm purely for the purposes of being able to unaccount
9584 * memory (locked/pinned vm). It's not used for anything else.
9585 */
Jens Axboe6b7898e2020-08-25 07:58:00 -06009586 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -06009587 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -06009588
Dennis Zhou91d8f512020-09-16 13:41:05 -07009589#ifdef CONFIG_BLK_CGROUP
9590 /*
9591 * The sq thread will belong to the original cgroup it was inited in.
9592 * If the cgroup goes offline (e.g. disabling the io controller), then
9593 * issued bios will be associated with the closest cgroup later in the
9594 * block layer.
9595 */
9596 rcu_read_lock();
9597 ctx->sqo_blkcg_css = blkcg_css();
9598 ret = css_tryget_online(ctx->sqo_blkcg_css);
9599 rcu_read_unlock();
9600 if (!ret) {
9601 /* don't init against a dying cgroup, have the user try again */
9602 ctx->sqo_blkcg_css = NULL;
9603 ret = -ENODEV;
9604 goto err;
9605 }
9606#endif
Jens Axboe6c271ce2019-01-10 11:22:30 -07009607
Jens Axboe2b188cc2019-01-07 10:46:33 -07009608 /*
9609 * Account memory _before_ installing the file descriptor. Once
9610 * the descriptor is installed, it can get closed at any time. Also
Jens Axboe2b188cc2019-01-07 10:46:33 -07009611 * do this before hitting the general error path, as ring freeing
Hristo Venev75b28af2019-08-26 17:23:46 +00009612 * will un-account as well.
9613 */
9614 io_account_mem(ctx, ring_pages(p->sq_entries, p->cq_entries),
9615 ACCT_LOCKED);
9616 ctx->limit_mem = limit_mem;
9617
9618 ret = io_allocate_scq_urings(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009619 if (ret)
9620 goto err;
Hristo Venev75b28af2019-08-26 17:23:46 +00009621
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009622 ret = io_sq_offload_create(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009623 if (ret)
9624 goto err;
9625
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009626 if (!(p->flags & IORING_SETUP_R_DISABLED))
9627 io_sq_offload_start(ctx);
9628
Jens Axboe2b188cc2019-01-07 10:46:33 -07009629 memset(&p->sq_off, 0, sizeof(p->sq_off));
9630 p->sq_off.head = offsetof(struct io_rings, sq.head);
9631 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
9632 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
9633 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
9634 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
9635 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
9636 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
9637
9638 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00009639 p->cq_off.head = offsetof(struct io_rings, cq.head);
9640 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
9641 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
9642 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
9643 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
9644 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +02009645 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -06009646
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009647 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
9648 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +08009649 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
Hao Xuc73ebb62020-11-03 10:54:37 +08009650 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
9651 IORING_FEAT_EXT_ARG;
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009652
9653 if (copy_to_user(params, p, sizeof(*p))) {
9654 ret = -EFAULT;
9655 goto err;
9656 }
Jens Axboed1719f72020-07-30 13:43:53 -06009657
9658 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -06009659 * Install ring fd as the very last thing, so we don't risk someone
9660 * having closed it before we finish setup
9661 */
9662 ret = io_uring_get_fd(ctx);
9663 if (ret < 0)
9664 goto err;
9665
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02009666 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009667 return ret;
9668err:
9669 io_ring_ctx_wait_and_kill(ctx);
9670 return ret;
9671}
9672
9673/*
9674 * Sets up an aio uring context, and returns the fd. Applications asks for a
9675 * ring size, we return the actual sq/cq ring sizes (among other things) in the
9676 * params structure passed in.
9677 */
9678static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
9679{
9680 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009681 int i;
9682
9683 if (copy_from_user(&p, params, sizeof(p)))
9684 return -EFAULT;
9685 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
9686 if (p.resv[i])
9687 return -EINVAL;
9688 }
9689
Jens Axboe6c271ce2019-01-10 11:22:30 -07009690 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07009691 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009692 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
9693 IORING_SETUP_R_DISABLED))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009694 return -EINVAL;
9695
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009696 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009697}
9698
9699SYSCALL_DEFINE2(io_uring_setup, u32, entries,
9700 struct io_uring_params __user *, params)
9701{
9702 return io_uring_setup(entries, params);
9703}
9704
Jens Axboe66f4af92020-01-16 15:36:52 -07009705static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
9706{
9707 struct io_uring_probe *p;
9708 size_t size;
9709 int i, ret;
9710
9711 size = struct_size(p, ops, nr_args);
9712 if (size == SIZE_MAX)
9713 return -EOVERFLOW;
9714 p = kzalloc(size, GFP_KERNEL);
9715 if (!p)
9716 return -ENOMEM;
9717
9718 ret = -EFAULT;
9719 if (copy_from_user(p, arg, size))
9720 goto out;
9721 ret = -EINVAL;
9722 if (memchr_inv(p, 0, size))
9723 goto out;
9724
9725 p->last_op = IORING_OP_LAST - 1;
9726 if (nr_args > IORING_OP_LAST)
9727 nr_args = IORING_OP_LAST;
9728
9729 for (i = 0; i < nr_args; i++) {
9730 p->ops[i].op = i;
9731 if (!io_op_defs[i].not_supported)
9732 p->ops[i].flags = IO_URING_OP_SUPPORTED;
9733 }
9734 p->ops_len = i;
9735
9736 ret = 0;
9737 if (copy_to_user(arg, p, size))
9738 ret = -EFAULT;
9739out:
9740 kfree(p);
9741 return ret;
9742}
9743
Jens Axboe071698e2020-01-28 10:04:42 -07009744static int io_register_personality(struct io_ring_ctx *ctx)
9745{
Jens Axboe1e6fa522020-10-15 08:46:24 -06009746 struct io_identity *id;
9747 int ret;
Jens Axboe071698e2020-01-28 10:04:42 -07009748
Jens Axboe1e6fa522020-10-15 08:46:24 -06009749 id = kmalloc(sizeof(*id), GFP_KERNEL);
9750 if (unlikely(!id))
9751 return -ENOMEM;
9752
9753 io_init_identity(id);
9754 id->creds = get_current_cred();
9755
9756 ret = idr_alloc_cyclic(&ctx->personality_idr, id, 1, USHRT_MAX, GFP_KERNEL);
9757 if (ret < 0) {
9758 put_cred(id->creds);
9759 kfree(id);
9760 }
9761 return ret;
Jens Axboe071698e2020-01-28 10:04:42 -07009762}
9763
9764static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
9765{
Jens Axboe1e6fa522020-10-15 08:46:24 -06009766 struct io_identity *iod;
Jens Axboe071698e2020-01-28 10:04:42 -07009767
Jens Axboe1e6fa522020-10-15 08:46:24 -06009768 iod = idr_remove(&ctx->personality_idr, id);
9769 if (iod) {
9770 put_cred(iod->creds);
9771 if (refcount_dec_and_test(&iod->count))
9772 kfree(iod);
Jens Axboe071698e2020-01-28 10:04:42 -07009773 return 0;
9774 }
9775
9776 return -EINVAL;
9777}
9778
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009779static int io_register_restrictions(struct io_ring_ctx *ctx, void __user *arg,
9780 unsigned int nr_args)
9781{
9782 struct io_uring_restriction *res;
9783 size_t size;
9784 int i, ret;
9785
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009786 /* Restrictions allowed only if rings started disabled */
9787 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
9788 return -EBADFD;
9789
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009790 /* We allow only a single restrictions registration */
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009791 if (ctx->restrictions.registered)
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009792 return -EBUSY;
9793
9794 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
9795 return -EINVAL;
9796
9797 size = array_size(nr_args, sizeof(*res));
9798 if (size == SIZE_MAX)
9799 return -EOVERFLOW;
9800
9801 res = memdup_user(arg, size);
9802 if (IS_ERR(res))
9803 return PTR_ERR(res);
9804
9805 ret = 0;
9806
9807 for (i = 0; i < nr_args; i++) {
9808 switch (res[i].opcode) {
9809 case IORING_RESTRICTION_REGISTER_OP:
9810 if (res[i].register_op >= IORING_REGISTER_LAST) {
9811 ret = -EINVAL;
9812 goto out;
9813 }
9814
9815 __set_bit(res[i].register_op,
9816 ctx->restrictions.register_op);
9817 break;
9818 case IORING_RESTRICTION_SQE_OP:
9819 if (res[i].sqe_op >= IORING_OP_LAST) {
9820 ret = -EINVAL;
9821 goto out;
9822 }
9823
9824 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
9825 break;
9826 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
9827 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
9828 break;
9829 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
9830 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
9831 break;
9832 default:
9833 ret = -EINVAL;
9834 goto out;
9835 }
9836 }
9837
9838out:
9839 /* Reset all restrictions if an error happened */
9840 if (ret != 0)
9841 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
9842 else
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009843 ctx->restrictions.registered = true;
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009844
9845 kfree(res);
9846 return ret;
9847}
9848
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009849static int io_register_enable_rings(struct io_ring_ctx *ctx)
9850{
9851 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
9852 return -EBADFD;
9853
9854 if (ctx->restrictions.registered)
9855 ctx->restricted = 1;
9856
9857 ctx->flags &= ~IORING_SETUP_R_DISABLED;
9858
9859 io_sq_offload_start(ctx);
9860
9861 return 0;
9862}
9863
Jens Axboe071698e2020-01-28 10:04:42 -07009864static bool io_register_op_must_quiesce(int op)
9865{
9866 switch (op) {
9867 case IORING_UNREGISTER_FILES:
9868 case IORING_REGISTER_FILES_UPDATE:
9869 case IORING_REGISTER_PROBE:
9870 case IORING_REGISTER_PERSONALITY:
9871 case IORING_UNREGISTER_PERSONALITY:
9872 return false;
9873 default:
9874 return true;
9875 }
9876}
9877
Jens Axboeedafcce2019-01-09 09:16:05 -07009878static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
9879 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06009880 __releases(ctx->uring_lock)
9881 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07009882{
9883 int ret;
9884
Jens Axboe35fa71a2019-04-22 10:23:23 -06009885 /*
9886 * We're inside the ring mutex, if the ref is already dying, then
9887 * someone else killed the ctx or is already going through
9888 * io_uring_register().
9889 */
9890 if (percpu_ref_is_dying(&ctx->refs))
9891 return -ENXIO;
9892
Jens Axboe071698e2020-01-28 10:04:42 -07009893 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009894 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06009895
Jens Axboe05f3fb32019-12-09 11:22:50 -07009896 /*
9897 * Drop uring mutex before waiting for references to exit. If
9898 * another thread is currently inside io_uring_enter() it might
9899 * need to grab the uring_lock to make progress. If we hold it
9900 * here across the drain wait, then we can deadlock. It's safe
9901 * to drop the mutex here, since no new references will come in
9902 * after we've killed the percpu ref.
9903 */
9904 mutex_unlock(&ctx->uring_lock);
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009905 do {
9906 ret = wait_for_completion_interruptible(&ctx->ref_comp);
9907 if (!ret)
9908 break;
Jens Axboeed6930c2020-10-08 19:09:46 -06009909 ret = io_run_task_work_sig();
9910 if (ret < 0)
9911 break;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009912 } while (1);
9913
Jens Axboe05f3fb32019-12-09 11:22:50 -07009914 mutex_lock(&ctx->uring_lock);
Jens Axboeaf9c1a42020-09-24 13:32:18 -06009915
Jens Axboec1503682020-01-08 08:26:07 -07009916 if (ret) {
9917 percpu_ref_resurrect(&ctx->refs);
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009918 goto out_quiesce;
9919 }
9920 }
9921
9922 if (ctx->restricted) {
9923 if (opcode >= IORING_REGISTER_LAST) {
9924 ret = -EINVAL;
9925 goto out;
9926 }
9927
9928 if (!test_bit(opcode, ctx->restrictions.register_op)) {
9929 ret = -EACCES;
Jens Axboec1503682020-01-08 08:26:07 -07009930 goto out;
9931 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07009932 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009933
9934 switch (opcode) {
9935 case IORING_REGISTER_BUFFERS:
9936 ret = io_sqe_buffer_register(ctx, arg, nr_args);
9937 break;
9938 case IORING_UNREGISTER_BUFFERS:
9939 ret = -EINVAL;
9940 if (arg || nr_args)
9941 break;
9942 ret = io_sqe_buffer_unregister(ctx);
9943 break;
Jens Axboe6b063142019-01-10 22:13:58 -07009944 case IORING_REGISTER_FILES:
9945 ret = io_sqe_files_register(ctx, arg, nr_args);
9946 break;
9947 case IORING_UNREGISTER_FILES:
9948 ret = -EINVAL;
9949 if (arg || nr_args)
9950 break;
9951 ret = io_sqe_files_unregister(ctx);
9952 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06009953 case IORING_REGISTER_FILES_UPDATE:
9954 ret = io_sqe_files_update(ctx, arg, nr_args);
9955 break;
Jens Axboe9b402842019-04-11 11:45:41 -06009956 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07009957 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06009958 ret = -EINVAL;
9959 if (nr_args != 1)
9960 break;
9961 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07009962 if (ret)
9963 break;
9964 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
9965 ctx->eventfd_async = 1;
9966 else
9967 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06009968 break;
9969 case IORING_UNREGISTER_EVENTFD:
9970 ret = -EINVAL;
9971 if (arg || nr_args)
9972 break;
9973 ret = io_eventfd_unregister(ctx);
9974 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07009975 case IORING_REGISTER_PROBE:
9976 ret = -EINVAL;
9977 if (!arg || nr_args > 256)
9978 break;
9979 ret = io_probe(ctx, arg, nr_args);
9980 break;
Jens Axboe071698e2020-01-28 10:04:42 -07009981 case IORING_REGISTER_PERSONALITY:
9982 ret = -EINVAL;
9983 if (arg || nr_args)
9984 break;
9985 ret = io_register_personality(ctx);
9986 break;
9987 case IORING_UNREGISTER_PERSONALITY:
9988 ret = -EINVAL;
9989 if (arg)
9990 break;
9991 ret = io_unregister_personality(ctx, nr_args);
9992 break;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009993 case IORING_REGISTER_ENABLE_RINGS:
9994 ret = -EINVAL;
9995 if (arg || nr_args)
9996 break;
9997 ret = io_register_enable_rings(ctx);
9998 break;
Stefano Garzarella21b55db2020-08-27 16:58:30 +02009999 case IORING_REGISTER_RESTRICTIONS:
10000 ret = io_register_restrictions(ctx, arg, nr_args);
10001 break;
Jens Axboeedafcce2019-01-09 09:16:05 -070010002 default:
10003 ret = -EINVAL;
10004 break;
10005 }
10006
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010007out:
Jens Axboe071698e2020-01-28 10:04:42 -070010008 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -070010009 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -070010010 percpu_ref_reinit(&ctx->refs);
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010011out_quiesce:
Jens Axboe0f158b42020-05-14 17:18:39 -060010012 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -070010013 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010014 return ret;
10015}
10016
10017SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
10018 void __user *, arg, unsigned int, nr_args)
10019{
10020 struct io_ring_ctx *ctx;
10021 long ret = -EBADF;
10022 struct fd f;
10023
10024 f = fdget(fd);
10025 if (!f.file)
10026 return -EBADF;
10027
10028 ret = -EOPNOTSUPP;
10029 if (f.file->f_op != &io_uring_fops)
10030 goto out_fput;
10031
10032 ctx = f.file->private_data;
10033
10034 mutex_lock(&ctx->uring_lock);
10035 ret = __io_uring_register(ctx, opcode, arg, nr_args);
10036 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010037 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
10038 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -070010039out_fput:
10040 fdput(f);
10041 return ret;
10042}
10043
Jens Axboe2b188cc2019-01-07 10:46:33 -070010044static int __init io_uring_init(void)
10045{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010046#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
10047 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
10048 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
10049} while (0)
10050
10051#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
10052 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
10053 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
10054 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
10055 BUILD_BUG_SQE_ELEM(1, __u8, flags);
10056 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
10057 BUILD_BUG_SQE_ELEM(4, __s32, fd);
10058 BUILD_BUG_SQE_ELEM(8, __u64, off);
10059 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
10060 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010061 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010062 BUILD_BUG_SQE_ELEM(24, __u32, len);
10063 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
10064 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
10065 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
10066 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +080010067 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
10068 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010069 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
10070 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
10071 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
10072 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
10073 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
10074 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
10075 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
10076 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010077 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010078 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
10079 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
10080 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010081 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010082
Jens Axboed3656342019-12-18 09:50:26 -070010083 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -070010084 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -070010085 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
10086 return 0;
10087};
10088__initcall(io_uring_init);