blob: ee75ba7113cfe21fd6b79e63e8e1ba6435446462 [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>
Jens Axboe2b188cc2019-01-07 10:46:33 -070083
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020084#define CREATE_TRACE_POINTS
85#include <trace/events/io_uring.h>
86
Jens Axboe2b188cc2019-01-07 10:46:33 -070087#include <uapi/linux/io_uring.h>
88
89#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060090#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070091
Daniel Xu5277dea2019-09-14 14:23:45 -070092#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060093#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060094
95/*
96 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
97 */
98#define IORING_FILE_TABLE_SHIFT 9
99#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
100#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
101#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700102
103struct io_uring {
104 u32 head ____cacheline_aligned_in_smp;
105 u32 tail ____cacheline_aligned_in_smp;
106};
107
Stefan Bühler1e84b972019-04-24 23:54:16 +0200108/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000109 * This data is shared with the application through the mmap at offsets
110 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200111 *
112 * The offsets to the member fields are published through struct
113 * io_sqring_offsets when calling io_uring_setup.
114 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000115struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200116 /*
117 * Head and tail offsets into the ring; the offsets need to be
118 * masked to get valid indices.
119 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000120 * The kernel controls head of the sq ring and the tail of the cq ring,
121 * and the application controls tail of the sq ring and the head of the
122 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200123 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000124 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200125 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000126 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200127 * ring_entries - 1)
128 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000129 u32 sq_ring_mask, cq_ring_mask;
130 /* Ring sizes (constant, power of 2) */
131 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200132 /*
133 * Number of invalid entries dropped by the kernel due to
134 * invalid index stored in array
135 *
136 * Written by the kernel, shouldn't be modified by the
137 * application (i.e. get number of "new events" by comparing to
138 * cached value).
139 *
140 * After a new SQ head value was read by the application this
141 * counter includes all submissions that were dropped reaching
142 * the new SQ head (and possibly more).
143 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000144 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200145 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200146 * Runtime SQ flags
Stefan Bühler1e84b972019-04-24 23:54:16 +0200147 *
148 * Written by the kernel, shouldn't be modified by the
149 * application.
150 *
151 * The application needs a full memory barrier before checking
152 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
153 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000154 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200155 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200156 * Runtime CQ flags
157 *
158 * Written by the application, shouldn't be modified by the
159 * kernel.
160 */
161 u32 cq_flags;
162 /*
Stefan Bühler1e84b972019-04-24 23:54:16 +0200163 * Number of completion events lost because the queue was full;
164 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800165 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200166 * the completion queue.
167 *
168 * Written by the kernel, shouldn't be modified by the
169 * application (i.e. get number of "new events" by comparing to
170 * cached value).
171 *
172 * As completion events come in out of order this counter is not
173 * ordered with any other data.
174 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000175 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200176 /*
177 * Ring buffer of completion events.
178 *
179 * The kernel writes completion events fresh every time they are
180 * produced, so the application is allowed to modify pending
181 * entries.
182 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000183 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700184};
185
Jens Axboeedafcce2019-01-09 09:16:05 -0700186struct io_mapped_ubuf {
187 u64 ubuf;
188 size_t len;
189 struct bio_vec *bvec;
190 unsigned int nr_bvecs;
191};
192
Jens Axboe65e19f52019-10-26 07:20:21 -0600193struct fixed_file_table {
194 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700195};
196
Xiaoguang Wang05589552020-03-31 14:05:18 +0800197struct fixed_file_ref_node {
198 struct percpu_ref refs;
199 struct list_head node;
200 struct list_head file_list;
201 struct fixed_file_data *file_data;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600202 struct llist_node llist;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800203};
204
Jens Axboe05f3fb32019-12-09 11:22:50 -0700205struct fixed_file_data {
206 struct fixed_file_table *table;
207 struct io_ring_ctx *ctx;
208
Xiaoguang Wang05589552020-03-31 14:05:18 +0800209 struct percpu_ref *cur_refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700210 struct percpu_ref refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700211 struct completion done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800212 struct list_head ref_list;
213 spinlock_t lock;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700214};
215
Jens Axboe5a2e7452020-02-23 16:23:11 -0700216struct io_buffer {
217 struct list_head list;
218 __u64 addr;
219 __s32 len;
220 __u16 bid;
221};
222
Jens Axboe2b188cc2019-01-07 10:46:33 -0700223struct io_ring_ctx {
224 struct {
225 struct percpu_ref refs;
226 } ____cacheline_aligned_in_smp;
227
228 struct {
229 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800230 unsigned int compat: 1;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -0700231 unsigned int limit_mem: 1;
Randy Dunlape1d85332020-02-05 20:57:10 -0800232 unsigned int cq_overflow_flushed: 1;
233 unsigned int drain_next: 1;
234 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700235
Hristo Venev75b28af2019-08-26 17:23:46 +0000236 /*
237 * Ring buffer of indices into array of io_uring_sqe, which is
238 * mmapped by the application using the IORING_OFF_SQES offset.
239 *
240 * This indirection could e.g. be used to assign fixed
241 * io_uring_sqe entries to operations and only submit them to
242 * the queue when needed.
243 *
244 * The kernel modifies neither the indices array nor the entries
245 * array.
246 */
247 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700248 unsigned cached_sq_head;
249 unsigned sq_entries;
250 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700251 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600252 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700253 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700254 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600255
256 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600257 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700258 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700259
Jens Axboefcb323c2019-10-24 12:39:47 -0600260 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700261 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700262 } ____cacheline_aligned_in_smp;
263
Hristo Venev75b28af2019-08-26 17:23:46 +0000264 struct io_rings *rings;
265
Jens Axboe2b188cc2019-01-07 10:46:33 -0700266 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600267 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700268 struct task_struct *sqo_thread; /* if using sq thread polling */
Jens Axboe2aede0e2020-09-14 10:45:53 -0600269
270 /*
271 * For SQPOLL usage - we hold a reference to the parent task, so we
272 * have access to the ->files
273 */
274 struct task_struct *sqo_task;
275
276 /* Only used for accounting purposes */
277 struct mm_struct *mm_account;
278
Jens Axboe2b188cc2019-01-07 10:46:33 -0700279 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700280
Jens Axboe6b063142019-01-10 22:13:58 -0700281 /*
282 * If used, fixed file set. Writers must ensure that ->refs is dead,
283 * readers must ensure that ->refs is alive as long as the file* is
284 * used. Only updated through io_uring_register(2).
285 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700286 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700287 unsigned nr_user_files;
288
Jens Axboeedafcce2019-01-09 09:16:05 -0700289 /* if used, fixed mapped user buffers */
290 unsigned nr_user_bufs;
291 struct io_mapped_ubuf *user_bufs;
292
Jens Axboe2b188cc2019-01-07 10:46:33 -0700293 struct user_struct *user;
294
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700295 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700296
Jens Axboe0f158b42020-05-14 17:18:39 -0600297 struct completion ref_comp;
298 struct completion sq_thread_comp;
Jens Axboe206aefd2019-11-07 18:27:42 -0700299
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700300 /* if all else fails... */
301 struct io_kiocb *fallback_req;
302
Jens Axboe206aefd2019-11-07 18:27:42 -0700303#if defined(CONFIG_UNIX)
304 struct socket *ring_sock;
305#endif
306
Jens Axboe5a2e7452020-02-23 16:23:11 -0700307 struct idr io_buffer_idr;
308
Jens Axboe071698e2020-01-28 10:04:42 -0700309 struct idr personality_idr;
310
Jens Axboe206aefd2019-11-07 18:27:42 -0700311 struct {
312 unsigned cached_cq_tail;
313 unsigned cq_entries;
314 unsigned cq_mask;
315 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700316 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700317 struct wait_queue_head cq_wait;
318 struct fasync_struct *cq_fasync;
319 struct eventfd_ctx *cq_ev_fd;
320 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700321
322 struct {
323 struct mutex uring_lock;
324 wait_queue_head_t wait;
325 } ____cacheline_aligned_in_smp;
326
327 struct {
328 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700329
Jens Axboedef596e2019-01-09 08:59:42 -0700330 /*
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300331 * ->iopoll_list is protected by the ctx->uring_lock for
Jens Axboedef596e2019-01-09 08:59:42 -0700332 * io_uring instances that don't use IORING_SETUP_SQPOLL.
333 * For SQPOLL, only the single threaded io_sq_thread() will
334 * manipulate the list, hence no extra locking is needed there.
335 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300336 struct list_head iopoll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700337 struct hlist_head *cancel_hash;
338 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700339 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600340
341 spinlock_t inflight_lock;
342 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700343 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600344
Jens Axboe4a38aed22020-05-14 17:21:15 -0600345 struct delayed_work file_put_work;
346 struct llist_head file_put_llist;
347
Jens Axboe85faa7b2020-04-09 18:14:00 -0600348 struct work_struct exit_work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700349};
350
Jens Axboe09bb8392019-03-13 12:39:28 -0600351/*
352 * First field must be the file pointer in all the
353 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
354 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700355struct io_poll_iocb {
356 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700357 union {
358 struct wait_queue_head *head;
359 u64 addr;
360 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700361 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600362 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700363 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700364 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700365};
366
Jens Axboeb5dba592019-12-11 14:02:38 -0700367struct io_close {
368 struct file *file;
369 struct file *put_file;
370 int fd;
371};
372
Jens Axboead8a48a2019-11-15 08:49:11 -0700373struct io_timeout_data {
374 struct io_kiocb *req;
375 struct hrtimer timer;
376 struct timespec64 ts;
377 enum hrtimer_mode mode;
378};
379
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700380struct io_accept {
381 struct file *file;
382 struct sockaddr __user *addr;
383 int __user *addr_len;
384 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600385 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700386};
387
388struct io_sync {
389 struct file *file;
390 loff_t len;
391 loff_t off;
392 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700393 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700394};
395
Jens Axboefbf23842019-12-17 18:45:56 -0700396struct io_cancel {
397 struct file *file;
398 u64 addr;
399};
400
Jens Axboeb29472e2019-12-17 18:50:29 -0700401struct io_timeout {
402 struct file *file;
403 u64 addr;
404 int flags;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +0300405 u32 off;
406 u32 target_seq;
Pavel Begunkov135fcde2020-07-13 23:37:12 +0300407 struct list_head list;
Jens Axboeb29472e2019-12-17 18:50:29 -0700408};
409
Jens Axboe9adbd452019-12-20 08:45:55 -0700410struct io_rw {
411 /* NOTE: kiocb has the file as the first member, so don't do it here */
412 struct kiocb kiocb;
413 u64 addr;
414 u64 len;
415};
416
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700417struct io_connect {
418 struct file *file;
419 struct sockaddr __user *addr;
420 int addr_len;
421};
422
Jens Axboee47293f2019-12-20 08:58:21 -0700423struct io_sr_msg {
424 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700425 union {
Pavel Begunkov270a5942020-07-12 20:41:04 +0300426 struct user_msghdr __user *umsg;
Jens Axboefddafac2020-01-04 20:19:44 -0700427 void __user *buf;
428 };
Jens Axboee47293f2019-12-20 08:58:21 -0700429 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700430 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700431 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700432 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700433};
434
Jens Axboe15b71ab2019-12-11 11:20:36 -0700435struct io_open {
436 struct file *file;
437 int dfd;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700438 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700439 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600440 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700441};
442
Jens Axboe05f3fb32019-12-09 11:22:50 -0700443struct io_files_update {
444 struct file *file;
445 u64 arg;
446 u32 nr_args;
447 u32 offset;
448};
449
Jens Axboe4840e412019-12-25 22:03:45 -0700450struct io_fadvise {
451 struct file *file;
452 u64 offset;
453 u32 len;
454 u32 advice;
455};
456
Jens Axboec1ca7572019-12-25 22:18:28 -0700457struct io_madvise {
458 struct file *file;
459 u64 addr;
460 u32 len;
461 u32 advice;
462};
463
Jens Axboe3e4827b2020-01-08 15:18:09 -0700464struct io_epoll {
465 struct file *file;
466 int epfd;
467 int op;
468 int fd;
469 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700470};
471
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300472struct io_splice {
473 struct file *file_out;
474 struct file *file_in;
475 loff_t off_out;
476 loff_t off_in;
477 u64 len;
478 unsigned int flags;
479};
480
Jens Axboeddf0322d2020-02-23 16:41:33 -0700481struct io_provide_buf {
482 struct file *file;
483 __u64 addr;
484 __s32 len;
485 __u32 bgid;
486 __u16 nbufs;
487 __u16 bid;
488};
489
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700490struct io_statx {
491 struct file *file;
492 int dfd;
493 unsigned int mask;
494 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700495 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700496 struct statx __user *buffer;
497};
498
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300499struct io_completion {
500 struct file *file;
501 struct list_head list;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +0300502 int cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300503};
504
Jens Axboef499a022019-12-02 16:28:46 -0700505struct io_async_connect {
506 struct sockaddr_storage address;
507};
508
Jens Axboe03b12302019-12-02 18:50:25 -0700509struct io_async_msghdr {
510 struct iovec fast_iov[UIO_FASTIOV];
511 struct iovec *iov;
512 struct sockaddr __user *uaddr;
513 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700514 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700515};
516
Jens Axboef67676d2019-12-02 11:03:47 -0700517struct io_async_rw {
518 struct iovec fast_iov[UIO_FASTIOV];
Jens Axboeff6165b2020-08-13 09:47:43 -0600519 const struct iovec *free_iovec;
520 struct iov_iter iter;
Jens Axboe227c0c92020-08-13 11:51:40 -0600521 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600522 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700523};
524
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700525struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700526 union {
527 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700528 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700529 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700530 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700531 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700532};
533
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300534enum {
535 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
536 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
537 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
538 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
539 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700540 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300541
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300542 REQ_F_LINK_HEAD_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300543 REQ_F_FAIL_LINK_BIT,
544 REQ_F_INFLIGHT_BIT,
545 REQ_F_CUR_POS_BIT,
546 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300547 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300548 REQ_F_ISREG_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300549 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300550 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700551 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700552 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600553 REQ_F_NO_FILE_TABLE_BIT,
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800554 REQ_F_WORK_INITIALIZED_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700555
556 /* not a real bit, just to check we're not overflowing the space */
557 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300558};
559
560enum {
561 /* ctx owns file */
562 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
563 /* drain existing IO first */
564 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
565 /* linked sqes */
566 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
567 /* doesn't sever on completion < 0 */
568 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
569 /* IOSQE_ASYNC */
570 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700571 /* IOSQE_BUFFER_SELECT */
572 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300573
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300574 /* head of a link */
575 REQ_F_LINK_HEAD = BIT(REQ_F_LINK_HEAD_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300576 /* fail rest of links */
577 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
578 /* on inflight list */
579 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
580 /* read/write uses file position */
581 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
582 /* must not punt to workers */
583 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300584 /* has linked timeout */
585 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300586 /* regular file */
587 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300588 /* completion under lock */
589 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300590 /* needs cleanup */
591 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700592 /* already went through poll handler */
593 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700594 /* buffer already selected */
595 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600596 /* doesn't need file table for this request */
597 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800598 /* io_wq_work is initialized */
599 REQ_F_WORK_INITIALIZED = BIT(REQ_F_WORK_INITIALIZED_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700600};
601
602struct async_poll {
603 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600604 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300605};
606
Jens Axboe09bb8392019-03-13 12:39:28 -0600607/*
608 * NOTE! Each of the iocb union members has the file pointer
609 * as the first entry in their struct definition. So you can
610 * access the file pointer through any of the sub-structs,
611 * or directly as just 'ki_filp' in this struct.
612 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700613struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700614 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600615 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700616 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700617 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700618 struct io_accept accept;
619 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700620 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700621 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700622 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700623 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700624 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700625 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700626 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700627 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700628 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700629 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300630 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700631 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700632 struct io_statx statx;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300633 /* use only after cleaning per-op data, see io_clean_op() */
634 struct io_completion compl;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700635 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700636
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700637 struct io_async_ctx *io;
Jens Axboed625c6e2019-12-17 19:53:05 -0700638 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800639 /* polled IO has completed */
640 u8 iopoll_completed;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700641
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700642 u16 buf_index;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300643 u32 result;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700644
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300645 struct io_ring_ctx *ctx;
646 unsigned int flags;
647 refcount_t refs;
648 struct task_struct *task;
649 u64 user_data;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700650
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300651 struct list_head link_list;
Jens Axboed7718a92020-02-14 22:23:12 -0700652
Pavel Begunkovd21ffe72020-07-13 23:37:10 +0300653 /*
654 * 1. used with ctx->iopoll_list with reads/writes
655 * 2. to track reqs with ->files (see io_op_def::file_table)
656 */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300657 struct list_head inflight_entry;
Jens Axboefcb323c2019-10-24 12:39:47 -0600658
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300659 struct percpu_ref *fixed_file_refs;
660 struct callback_head task_work;
661 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
662 struct hlist_node hash_node;
663 struct async_poll *apoll;
664 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700665};
666
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300667struct io_defer_entry {
668 struct list_head list;
669 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300670 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300671};
672
Jens Axboedef596e2019-01-09 08:59:42 -0700673#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700674
Jens Axboe013538b2020-06-22 09:29:15 -0600675struct io_comp_state {
676 unsigned int nr;
677 struct list_head list;
678 struct io_ring_ctx *ctx;
679};
680
Jens Axboe9a56a232019-01-09 09:06:50 -0700681struct io_submit_state {
682 struct blk_plug plug;
683
684 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700685 * io_kiocb alloc cache
686 */
687 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300688 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700689
690 /*
Jens Axboe013538b2020-06-22 09:29:15 -0600691 * Batch completion logic
692 */
693 struct io_comp_state comp;
694
695 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700696 * File reference cache
697 */
698 struct file *file;
699 unsigned int fd;
700 unsigned int has_refs;
Jens Axboe9a56a232019-01-09 09:06:50 -0700701 unsigned int ios_left;
702};
703
Jens Axboed3656342019-12-18 09:50:26 -0700704struct io_op_def {
705 /* needs req->io allocated for deferral/async */
706 unsigned async_ctx : 1;
707 /* needs current->mm setup, does mm access */
708 unsigned needs_mm : 1;
709 /* needs req->file assigned */
710 unsigned needs_file : 1;
Jens Axboefd2206e2020-06-02 16:40:47 -0600711 /* don't fail if file grab fails */
712 unsigned needs_file_no_error : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700713 /* hash wq insertion if file is a regular file */
714 unsigned hash_reg_file : 1;
715 /* unbound wq insertion if file is a non-regular file */
716 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700717 /* opcode is not supported by this kernel */
718 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700719 /* needs file table */
720 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700721 /* needs ->fs */
722 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700723 /* set if opcode supports polled "wait" */
724 unsigned pollin : 1;
725 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700726 /* op supports buffer selection */
727 unsigned buffer_select : 1;
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300728 unsigned needs_fsize : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700729};
730
731static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300732 [IORING_OP_NOP] = {},
733 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700734 .async_ctx = 1,
735 .needs_mm = 1,
736 .needs_file = 1,
737 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700738 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700739 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700740 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300741 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700742 .async_ctx = 1,
743 .needs_mm = 1,
744 .needs_file = 1,
745 .hash_reg_file = 1,
746 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700747 .pollout = 1,
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300748 .needs_fsize = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700749 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300750 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700751 .needs_file = 1,
752 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300753 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700754 .needs_file = 1,
755 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700756 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700757 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300758 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700759 .needs_file = 1,
760 .hash_reg_file = 1,
761 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700762 .pollout = 1,
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300763 .needs_fsize = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700764 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300765 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700766 .needs_file = 1,
767 .unbound_nonreg_file = 1,
768 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300769 [IORING_OP_POLL_REMOVE] = {},
770 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700771 .needs_file = 1,
772 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300773 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700774 .async_ctx = 1,
775 .needs_mm = 1,
776 .needs_file = 1,
777 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700778 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700779 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700780 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300781 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700782 .async_ctx = 1,
783 .needs_mm = 1,
784 .needs_file = 1,
785 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700786 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700787 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700788 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700789 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300790 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700791 .async_ctx = 1,
792 .needs_mm = 1,
793 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300794 [IORING_OP_TIMEOUT_REMOVE] = {},
795 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700796 .needs_mm = 1,
797 .needs_file = 1,
798 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700799 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700800 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700801 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300802 [IORING_OP_ASYNC_CANCEL] = {},
803 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700804 .async_ctx = 1,
805 .needs_mm = 1,
806 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300807 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700808 .async_ctx = 1,
809 .needs_mm = 1,
810 .needs_file = 1,
811 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700812 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700813 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300814 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700815 .needs_file = 1,
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300816 .needs_fsize = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700817 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300818 [IORING_OP_OPENAT] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700819 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700820 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700821 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300822 [IORING_OP_CLOSE] = {
Jens Axboefd2206e2020-06-02 16:40:47 -0600823 .needs_file = 1,
824 .needs_file_no_error = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700825 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700826 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300827 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700828 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700829 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700830 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300831 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700832 .needs_mm = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700833 .needs_fs = 1,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600834 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700835 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300836 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700837 .needs_mm = 1,
838 .needs_file = 1,
839 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700840 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700841 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700842 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300843 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700844 .needs_mm = 1,
845 .needs_file = 1,
846 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700847 .pollout = 1,
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300848 .needs_fsize = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700849 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300850 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700851 .needs_file = 1,
852 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300853 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700854 .needs_mm = 1,
855 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300856 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700857 .needs_mm = 1,
858 .needs_file = 1,
859 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700860 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700861 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300862 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700863 .needs_mm = 1,
864 .needs_file = 1,
865 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700866 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700867 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700868 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300869 [IORING_OP_OPENAT2] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700870 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700871 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700872 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700873 [IORING_OP_EPOLL_CTL] = {
874 .unbound_nonreg_file = 1,
875 .file_table = 1,
876 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300877 [IORING_OP_SPLICE] = {
878 .needs_file = 1,
879 .hash_reg_file = 1,
880 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700881 },
882 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700883 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +0300884 [IORING_OP_TEE] = {
885 .needs_file = 1,
886 .hash_reg_file = 1,
887 .unbound_nonreg_file = 1,
888 },
Jens Axboed3656342019-12-18 09:50:26 -0700889};
890
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -0700891enum io_mem_account {
892 ACCT_LOCKED,
893 ACCT_PINNED,
894};
895
Pavel Begunkov81b68a52020-07-30 18:43:46 +0300896static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
897 struct io_comp_state *cs);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700898static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800899static void io_put_req(struct io_kiocb *req);
Jens Axboec40f6372020-06-25 15:39:59 -0600900static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700901static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700902static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
Jens Axboe7271ef32020-08-10 09:55:22 -0600903static void __io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700904static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700905static int __io_sqe_files_update(struct io_ring_ctx *ctx,
906 struct io_uring_files_update *ip,
907 unsigned nr_args);
Pavel Begunkovf56040b2020-07-23 20:25:21 +0300908static int io_prep_work_files(struct io_kiocb *req);
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300909static void __io_clean_op(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700910static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
911 int fd, struct file **out_file, bool fixed);
912static void __io_queue_sqe(struct io_kiocb *req,
Jens Axboef13fad72020-06-22 09:34:30 -0600913 const struct io_uring_sqe *sqe,
914 struct io_comp_state *cs);
Jens Axboe4349f302020-07-09 15:07:01 -0600915static void io_file_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -0600916
Jens Axboeb63534c2020-06-04 11:28:00 -0600917static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
918 struct iovec **iovec, struct iov_iter *iter,
919 bool needs_lock);
Jens Axboeff6165b2020-08-13 09:47:43 -0600920static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
921 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -0600922 struct iov_iter *iter, bool force);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700923
924static struct kmem_cache *req_cachep;
925
926static const struct file_operations io_uring_fops;
927
928struct sock *io_uring_get_socket(struct file *file)
929{
930#if defined(CONFIG_UNIX)
931 if (file->f_op == &io_uring_fops) {
932 struct io_ring_ctx *ctx = file->private_data;
933
934 return ctx->ring_sock->sk;
935 }
936#endif
937 return NULL;
938}
939EXPORT_SYMBOL(io_uring_get_socket);
940
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300941static inline void io_clean_op(struct io_kiocb *req)
942{
Pavel Begunkovbb175342020-08-20 11:33:35 +0300943 if (req->flags & (REQ_F_NEED_CLEANUP | REQ_F_BUFFER_SELECTED |
944 REQ_F_INFLIGHT))
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300945 __io_clean_op(req);
946}
947
Jens Axboe4349f302020-07-09 15:07:01 -0600948static void io_sq_thread_drop_mm(void)
Jens Axboec40f6372020-06-25 15:39:59 -0600949{
950 struct mm_struct *mm = current->mm;
951
952 if (mm) {
953 kthread_unuse_mm(mm);
954 mmput(mm);
955 }
956}
957
958static int __io_sq_thread_acquire_mm(struct io_ring_ctx *ctx)
959{
960 if (!current->mm) {
Pavel Begunkovcbcf7212020-07-18 11:31:21 +0300961 if (unlikely(!(ctx->flags & IORING_SETUP_SQPOLL) ||
Jens Axboe2aede0e2020-09-14 10:45:53 -0600962 !ctx->sqo_task->mm ||
963 !mmget_not_zero(ctx->sqo_task->mm)))
Jens Axboec40f6372020-06-25 15:39:59 -0600964 return -EFAULT;
Jens Axboe2aede0e2020-09-14 10:45:53 -0600965 kthread_use_mm(ctx->sqo_task->mm);
Jens Axboec40f6372020-06-25 15:39:59 -0600966 }
967
968 return 0;
969}
970
971static int io_sq_thread_acquire_mm(struct io_ring_ctx *ctx,
972 struct io_kiocb *req)
973{
974 if (!io_op_defs[req->opcode].needs_mm)
975 return 0;
976 return __io_sq_thread_acquire_mm(ctx);
977}
978
979static inline void req_set_fail_links(struct io_kiocb *req)
980{
981 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
982 req->flags |= REQ_F_FAIL_LINK;
983}
Jens Axboe4a38aed22020-05-14 17:21:15 -0600984
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800985/*
986 * Note: must call io_req_init_async() for the first time you
987 * touch any members of io_wq_work.
988 */
989static inline void io_req_init_async(struct io_kiocb *req)
990{
991 if (req->flags & REQ_F_WORK_INITIALIZED)
992 return;
993
994 memset(&req->work, 0, sizeof(req->work));
995 req->flags |= REQ_F_WORK_INITIALIZED;
996}
997
Pavel Begunkov0cdaf762020-05-17 14:13:40 +0300998static inline bool io_async_submit(struct io_ring_ctx *ctx)
999{
1000 return ctx->flags & IORING_SETUP_SQPOLL;
1001}
1002
Jens Axboe2b188cc2019-01-07 10:46:33 -07001003static void io_ring_ctx_ref_free(struct percpu_ref *ref)
1004{
1005 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1006
Jens Axboe0f158b42020-05-14 17:18:39 -06001007 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001008}
1009
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001010static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1011{
1012 return !req->timeout.off;
1013}
1014
Jens Axboe2b188cc2019-01-07 10:46:33 -07001015static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
1016{
1017 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001018 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001019
1020 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1021 if (!ctx)
1022 return NULL;
1023
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001024 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
1025 if (!ctx->fallback_req)
1026 goto err;
1027
Jens Axboe78076bb2019-12-04 19:56:40 -07001028 /*
1029 * Use 5 bits less than the max cq entries, that should give us around
1030 * 32 entries per hash list if totally full and uniformly spread.
1031 */
1032 hash_bits = ilog2(p->cq_entries);
1033 hash_bits -= 5;
1034 if (hash_bits <= 0)
1035 hash_bits = 1;
1036 ctx->cancel_hash_bits = hash_bits;
1037 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1038 GFP_KERNEL);
1039 if (!ctx->cancel_hash)
1040 goto err;
1041 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1042
Roman Gushchin21482892019-05-07 10:01:48 -07001043 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001044 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1045 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001046
1047 ctx->flags = p->flags;
Jens Axboe583863e2020-05-17 09:20:00 -06001048 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001049 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001050 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001051 init_completion(&ctx->ref_comp);
1052 init_completion(&ctx->sq_thread_comp);
Jens Axboe5a2e7452020-02-23 16:23:11 -07001053 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -07001054 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001055 mutex_init(&ctx->uring_lock);
1056 init_waitqueue_head(&ctx->wait);
1057 spin_lock_init(&ctx->completion_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03001058 INIT_LIST_HEAD(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001059 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001060 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -06001061 init_waitqueue_head(&ctx->inflight_wait);
1062 spin_lock_init(&ctx->inflight_lock);
1063 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe4a38aed22020-05-14 17:21:15 -06001064 INIT_DELAYED_WORK(&ctx->file_put_work, io_file_put_work);
1065 init_llist_head(&ctx->file_put_llist);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001066 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001067err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001068 if (ctx->fallback_req)
1069 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe78076bb2019-12-04 19:56:40 -07001070 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001071 kfree(ctx);
1072 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001073}
1074
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001075static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001076{
Jens Axboe2bc99302020-07-09 09:43:27 -06001077 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1078 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001079
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001080 return seq != ctx->cached_cq_tail
Pavel Begunkov31af27c2020-04-15 00:39:50 +03001081 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboe2bc99302020-07-09 09:43:27 -06001082 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001083
Bob Liu9d858b22019-11-13 18:06:25 +08001084 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001085}
1086
Jens Axboede0617e2019-04-06 21:51:27 -06001087static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001088{
Hristo Venev75b28af2019-08-26 17:23:46 +00001089 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001090
Pavel Begunkov07910152020-01-17 03:52:46 +03001091 /* order cqe stores with ring update */
1092 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001093
Pavel Begunkov07910152020-01-17 03:52:46 +03001094 if (wq_has_sleeper(&ctx->cq_wait)) {
1095 wake_up_interruptible(&ctx->cq_wait);
1096 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001097 }
1098}
1099
Jens Axboe51a4cc12020-08-10 10:55:56 -06001100/*
1101 * Returns true if we need to defer file table putting. This can only happen
1102 * from the error path with REQ_F_COMP_LOCKED set.
1103 */
1104static bool io_req_clean_work(struct io_kiocb *req)
Jens Axboecccf0ee2020-01-27 16:34:48 -07001105{
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001106 if (!(req->flags & REQ_F_WORK_INITIALIZED))
Jens Axboe51a4cc12020-08-10 10:55:56 -06001107 return false;
1108
1109 req->flags &= ~REQ_F_WORK_INITIALIZED;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001110
Jens Axboecccf0ee2020-01-27 16:34:48 -07001111 if (req->work.mm) {
1112 mmdrop(req->work.mm);
1113 req->work.mm = NULL;
1114 }
1115 if (req->work.creds) {
1116 put_cred(req->work.creds);
1117 req->work.creds = NULL;
1118 }
Jens Axboeff002b32020-02-07 16:05:21 -07001119 if (req->work.fs) {
1120 struct fs_struct *fs = req->work.fs;
1121
Jens Axboe51a4cc12020-08-10 10:55:56 -06001122 if (req->flags & REQ_F_COMP_LOCKED)
1123 return true;
1124
Jens Axboeff002b32020-02-07 16:05:21 -07001125 spin_lock(&req->work.fs->lock);
1126 if (--fs->users)
1127 fs = NULL;
1128 spin_unlock(&req->work.fs->lock);
1129 if (fs)
1130 free_fs_struct(fs);
Pavel Begunkovb65e0dd2020-07-25 14:41:58 +03001131 req->work.fs = NULL;
Jens Axboeff002b32020-02-07 16:05:21 -07001132 }
Jens Axboe51a4cc12020-08-10 10:55:56 -06001133
1134 return false;
Jens Axboe561fb042019-10-24 07:25:42 -06001135}
1136
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001137static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001138{
Jens Axboed3656342019-12-18 09:50:26 -07001139 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001140
Pavel Begunkov16d59802020-07-12 16:16:47 +03001141 io_req_init_async(req);
1142
Jens Axboed3656342019-12-18 09:50:26 -07001143 if (req->flags & REQ_F_ISREG) {
Jens Axboeeefdf302020-08-27 16:40:19 -06001144 if (def->hash_reg_file || (req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001145 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001146 } else {
1147 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001148 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001149 }
Pavel Begunkovdca9cf82020-07-15 12:46:49 +03001150 if (!req->work.mm && def->needs_mm) {
1151 mmgrab(current->mm);
1152 req->work.mm = current->mm;
1153 }
1154 if (!req->work.creds)
1155 req->work.creds = get_current_cred();
1156 if (!req->work.fs && def->needs_fs) {
1157 spin_lock(&current->fs->lock);
1158 if (!current->fs->in_exec) {
1159 req->work.fs = current->fs;
1160 req->work.fs->users++;
1161 } else {
1162 req->work.flags |= IO_WQ_WORK_CANCEL;
1163 }
1164 spin_unlock(&current->fs->lock);
1165 }
Pavel Begunkov57f1a642020-07-15 12:46:52 +03001166 if (def->needs_fsize)
1167 req->work.fsize = rlimit(RLIMIT_FSIZE);
1168 else
1169 req->work.fsize = RLIM_INFINITY;
Jens Axboe561fb042019-10-24 07:25:42 -06001170}
1171
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001172static void io_prep_async_link(struct io_kiocb *req)
1173{
1174 struct io_kiocb *cur;
1175
1176 io_prep_async_work(req);
1177 if (req->flags & REQ_F_LINK_HEAD)
1178 list_for_each_entry(cur, &req->link_list, link_list)
1179 io_prep_async_work(cur);
1180}
1181
Jens Axboe7271ef32020-08-10 09:55:22 -06001182static struct io_kiocb *__io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001183{
Jackie Liua197f662019-11-08 08:09:12 -07001184 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001185 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001186
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001187 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1188 &req->work, req->flags);
1189 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001190 return link;
Jens Axboe18d9be12019-09-10 09:13:05 -06001191}
1192
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001193static void io_queue_async_work(struct io_kiocb *req)
1194{
Jens Axboe7271ef32020-08-10 09:55:22 -06001195 struct io_kiocb *link;
1196
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001197 /* init ->work of the whole link before punting */
1198 io_prep_async_link(req);
Jens Axboe7271ef32020-08-10 09:55:22 -06001199 link = __io_queue_async_work(req);
1200
1201 if (link)
1202 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001203}
1204
Jens Axboe5262f562019-09-17 12:26:57 -06001205static void io_kill_timeout(struct io_kiocb *req)
1206{
1207 int ret;
1208
Jens Axboe2d283902019-12-04 11:08:05 -07001209 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001210 if (ret != -1) {
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001211 atomic_set(&req->ctx->cq_timeouts,
1212 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001213 list_del_init(&req->timeout.list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001214 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001215 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001216 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001217 }
1218}
1219
Jens Axboef3606e32020-09-22 08:18:24 -06001220static bool io_task_match(struct io_kiocb *req, struct task_struct *tsk)
1221{
1222 struct io_ring_ctx *ctx = req->ctx;
1223
1224 if (!tsk || req->task == tsk)
1225 return true;
1226 if ((ctx->flags & IORING_SETUP_SQPOLL) && req->task == ctx->sqo_thread)
1227 return true;
1228 return false;
1229}
1230
Jens Axboe76e1b642020-09-26 15:05:03 -06001231/*
1232 * Returns true if we found and killed one or more timeouts
1233 */
1234static bool io_kill_timeouts(struct io_ring_ctx *ctx, struct task_struct *tsk)
Jens Axboe5262f562019-09-17 12:26:57 -06001235{
1236 struct io_kiocb *req, *tmp;
Jens Axboe76e1b642020-09-26 15:05:03 -06001237 int canceled = 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001238
1239 spin_lock_irq(&ctx->completion_lock);
Jens Axboef3606e32020-09-22 08:18:24 -06001240 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Jens Axboe76e1b642020-09-26 15:05:03 -06001241 if (io_task_match(req, tsk)) {
Jens Axboef3606e32020-09-22 08:18:24 -06001242 io_kill_timeout(req);
Jens Axboe76e1b642020-09-26 15:05:03 -06001243 canceled++;
1244 }
Jens Axboef3606e32020-09-22 08:18:24 -06001245 }
Jens Axboe5262f562019-09-17 12:26:57 -06001246 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe76e1b642020-09-26 15:05:03 -06001247 return canceled != 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001248}
1249
Pavel Begunkov04518942020-05-26 20:34:05 +03001250static void __io_queue_deferred(struct io_ring_ctx *ctx)
1251{
1252 do {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001253 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1254 struct io_defer_entry, list);
Jens Axboe7271ef32020-08-10 09:55:22 -06001255 struct io_kiocb *link;
Pavel Begunkov04518942020-05-26 20:34:05 +03001256
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001257 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001258 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001259 list_del_init(&de->list);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001260 /* punt-init is done before queueing for defer */
Jens Axboe7271ef32020-08-10 09:55:22 -06001261 link = __io_queue_async_work(de->req);
1262 if (link) {
1263 __io_queue_linked_timeout(link);
1264 /* drop submission reference */
1265 link->flags |= REQ_F_COMP_LOCKED;
1266 io_put_req(link);
1267 }
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001268 kfree(de);
Pavel Begunkov04518942020-05-26 20:34:05 +03001269 } while (!list_empty(&ctx->defer_list));
1270}
1271
Pavel Begunkov360428f2020-05-30 14:54:17 +03001272static void io_flush_timeouts(struct io_ring_ctx *ctx)
1273{
1274 while (!list_empty(&ctx->timeout_list)) {
1275 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001276 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001277
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001278 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001279 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001280 if (req->timeout.target_seq != ctx->cached_cq_tail
1281 - atomic_read(&ctx->cq_timeouts))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001282 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001283
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001284 list_del_init(&req->timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001285 io_kill_timeout(req);
1286 }
1287}
1288
Jens Axboede0617e2019-04-06 21:51:27 -06001289static void io_commit_cqring(struct io_ring_ctx *ctx)
1290{
Pavel Begunkov360428f2020-05-30 14:54:17 +03001291 io_flush_timeouts(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001292 __io_commit_cqring(ctx);
1293
Pavel Begunkov04518942020-05-26 20:34:05 +03001294 if (unlikely(!list_empty(&ctx->defer_list)))
1295 __io_queue_deferred(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001296}
1297
Jens Axboe2b188cc2019-01-07 10:46:33 -07001298static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1299{
Hristo Venev75b28af2019-08-26 17:23:46 +00001300 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001301 unsigned tail;
1302
1303 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001304 /*
1305 * writes to the cq entry need to come after reading head; the
1306 * control dependency is enough as we're using WRITE_ONCE to
1307 * fill the cq entry
1308 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001309 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001310 return NULL;
1311
1312 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001313 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001314}
1315
Jens Axboef2842ab2020-01-08 11:04:00 -07001316static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1317{
Jens Axboef0b493e2020-02-01 21:30:11 -07001318 if (!ctx->cq_ev_fd)
1319 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001320 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1321 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001322 if (!ctx->eventfd_async)
1323 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001324 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001325}
1326
Jens Axboeb41e9852020-02-17 09:52:41 -07001327static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001328{
1329 if (waitqueue_active(&ctx->wait))
1330 wake_up(&ctx->wait);
1331 if (waitqueue_active(&ctx->sqo_wait))
1332 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001333 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001334 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001335}
1336
Pavel Begunkov46930142020-07-30 18:43:49 +03001337static void io_cqring_mark_overflow(struct io_ring_ctx *ctx)
1338{
1339 if (list_empty(&ctx->cq_overflow_list)) {
1340 clear_bit(0, &ctx->sq_check_overflow);
1341 clear_bit(0, &ctx->cq_check_overflow);
1342 ctx->rings->sq_flags &= ~IORING_SQ_CQ_OVERFLOW;
1343 }
1344}
1345
Jens Axboee6c8aa92020-09-28 13:10:13 -06001346static inline bool io_match_files(struct io_kiocb *req,
1347 struct files_struct *files)
1348{
1349 if (!files)
1350 return true;
1351 if (req->flags & REQ_F_WORK_INITIALIZED)
1352 return req->work.files == files;
1353 return false;
1354}
1355
Jens Axboec4a2ed72019-11-21 21:01:26 -07001356/* Returns true if there are no backlogged entries after the flush */
Jens Axboee6c8aa92020-09-28 13:10:13 -06001357static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force,
1358 struct task_struct *tsk,
1359 struct files_struct *files)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001360{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001361 struct io_rings *rings = ctx->rings;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001362 struct io_kiocb *req, *tmp;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001363 struct io_uring_cqe *cqe;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001364 unsigned long flags;
1365 LIST_HEAD(list);
1366
1367 if (!force) {
1368 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001369 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001370 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1371 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001372 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001373 }
1374
1375 spin_lock_irqsave(&ctx->completion_lock, flags);
1376
1377 /* if force is set, the ring is going away. always drop after that */
1378 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001379 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001380
Jens Axboec4a2ed72019-11-21 21:01:26 -07001381 cqe = NULL;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001382 list_for_each_entry_safe(req, tmp, &ctx->cq_overflow_list, compl.list) {
1383 if (tsk && req->task != tsk)
1384 continue;
1385 if (!io_match_files(req, files))
1386 continue;
1387
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001388 cqe = io_get_cqring(ctx);
1389 if (!cqe && !force)
1390 break;
1391
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001392 list_move(&req->compl.list, &list);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001393 if (cqe) {
1394 WRITE_ONCE(cqe->user_data, req->user_data);
1395 WRITE_ONCE(cqe->res, req->result);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001396 WRITE_ONCE(cqe->flags, req->compl.cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001397 } else {
1398 WRITE_ONCE(ctx->rings->cq_overflow,
1399 atomic_inc_return(&ctx->cached_cq_overflow));
1400 }
1401 }
1402
1403 io_commit_cqring(ctx);
Pavel Begunkov46930142020-07-30 18:43:49 +03001404 io_cqring_mark_overflow(ctx);
1405
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001406 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1407 io_cqring_ev_posted(ctx);
1408
1409 while (!list_empty(&list)) {
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001410 req = list_first_entry(&list, struct io_kiocb, compl.list);
1411 list_del(&req->compl.list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001412 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001413 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001414
1415 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001416}
1417
Jens Axboebcda7ba2020-02-23 16:42:51 -07001418static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001419{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001420 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001421 struct io_uring_cqe *cqe;
1422
Jens Axboe78e19bb2019-11-06 15:21:34 -07001423 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001424
Jens Axboe2b188cc2019-01-07 10:46:33 -07001425 /*
1426 * If we can't get a cq entry, userspace overflowed the
1427 * submission (by quite a lot). Increment the overflow count in
1428 * the ring.
1429 */
1430 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001431 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001432 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001433 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001434 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe0f212202020-09-13 13:09:39 -06001435 } else if (ctx->cq_overflow_flushed || req->task->io_uring->in_idle) {
1436 /*
1437 * If we're in ring overflow flush mode, or in task cancel mode,
1438 * then we cannot store the request for later flushing, we need
1439 * to drop it on the floor.
1440 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07001441 WRITE_ONCE(ctx->rings->cq_overflow,
1442 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001443 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001444 if (list_empty(&ctx->cq_overflow_list)) {
1445 set_bit(0, &ctx->sq_check_overflow);
1446 set_bit(0, &ctx->cq_check_overflow);
Xiaoguang Wang6d5f9042020-07-09 09:15:29 +08001447 ctx->rings->sq_flags |= IORING_SQ_CQ_OVERFLOW;
Jens Axboead3eb2c2019-12-18 17:12:20 -07001448 }
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001449 io_clean_op(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001450 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001451 req->compl.cflags = cflags;
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001452 refcount_inc(&req->refs);
1453 list_add_tail(&req->compl.list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001454 }
1455}
1456
Jens Axboebcda7ba2020-02-23 16:42:51 -07001457static void io_cqring_fill_event(struct io_kiocb *req, long res)
1458{
1459 __io_cqring_fill_event(req, res, 0);
1460}
1461
Jens Axboee1e16092020-06-22 09:17:17 -06001462static void io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001463{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001464 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001465 unsigned long flags;
1466
1467 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001468 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001469 io_commit_cqring(ctx);
1470 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1471
Jens Axboe8c838782019-03-12 15:48:16 -06001472 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001473}
1474
Jens Axboe229a7b62020-06-22 10:13:11 -06001475static void io_submit_flush_completions(struct io_comp_state *cs)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001476{
Jens Axboe229a7b62020-06-22 10:13:11 -06001477 struct io_ring_ctx *ctx = cs->ctx;
1478
1479 spin_lock_irq(&ctx->completion_lock);
1480 while (!list_empty(&cs->list)) {
1481 struct io_kiocb *req;
1482
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001483 req = list_first_entry(&cs->list, struct io_kiocb, compl.list);
1484 list_del(&req->compl.list);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001485 __io_cqring_fill_event(req, req->result, req->compl.cflags);
Jens Axboe229a7b62020-06-22 10:13:11 -06001486 if (!(req->flags & REQ_F_LINK_HEAD)) {
1487 req->flags |= REQ_F_COMP_LOCKED;
1488 io_put_req(req);
1489 } else {
1490 spin_unlock_irq(&ctx->completion_lock);
1491 io_put_req(req);
1492 spin_lock_irq(&ctx->completion_lock);
1493 }
1494 }
1495 io_commit_cqring(ctx);
1496 spin_unlock_irq(&ctx->completion_lock);
1497
1498 io_cqring_ev_posted(ctx);
1499 cs->nr = 0;
1500}
1501
1502static void __io_req_complete(struct io_kiocb *req, long res, unsigned cflags,
1503 struct io_comp_state *cs)
1504{
1505 if (!cs) {
1506 io_cqring_add_event(req, res, cflags);
1507 io_put_req(req);
1508 } else {
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001509 io_clean_op(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06001510 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001511 req->compl.cflags = cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001512 list_add_tail(&req->compl.list, &cs->list);
Jens Axboe229a7b62020-06-22 10:13:11 -06001513 if (++cs->nr >= 32)
1514 io_submit_flush_completions(cs);
1515 }
Jens Axboee1e16092020-06-22 09:17:17 -06001516}
1517
1518static void io_req_complete(struct io_kiocb *req, long res)
1519{
Jens Axboe229a7b62020-06-22 10:13:11 -06001520 __io_req_complete(req, res, 0, NULL);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001521}
1522
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001523static inline bool io_is_fallback_req(struct io_kiocb *req)
1524{
1525 return req == (struct io_kiocb *)
1526 ((unsigned long) req->ctx->fallback_req & ~1UL);
1527}
1528
1529static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1530{
1531 struct io_kiocb *req;
1532
1533 req = ctx->fallback_req;
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001534 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001535 return req;
1536
1537 return NULL;
1538}
1539
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001540static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1541 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001542{
Jens Axboefd6fab22019-03-14 16:30:06 -06001543 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001544 struct io_kiocb *req;
1545
Pavel Begunkovf6b6c7d2020-06-21 13:09:53 +03001546 if (!state->free_reqs) {
Jens Axboe2579f912019-01-09 09:10:43 -07001547 size_t sz;
1548 int ret;
1549
1550 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001551 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1552
1553 /*
1554 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1555 * retry single alloc to be on the safe side.
1556 */
1557 if (unlikely(ret <= 0)) {
1558 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1559 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001560 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001561 ret = 1;
1562 }
Jens Axboe2579f912019-01-09 09:10:43 -07001563 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001564 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001565 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001566 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001567 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001568 }
1569
Jens Axboe2579f912019-01-09 09:10:43 -07001570 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001571fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001572 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001573}
1574
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001575static inline void io_put_file(struct io_kiocb *req, struct file *file,
1576 bool fixed)
1577{
1578 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001579 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001580 else
1581 fput(file);
1582}
1583
Jens Axboe51a4cc12020-08-10 10:55:56 -06001584static bool io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001585{
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001586 io_clean_op(req);
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001587
Jens Axboe5acbbc82020-07-08 15:15:26 -06001588 if (req->io)
1589 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001590 if (req->file)
1591 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboefcb323c2019-10-24 12:39:47 -06001592
Jens Axboe51a4cc12020-08-10 10:55:56 -06001593 return io_req_clean_work(req);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001594}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001595
Jens Axboe51a4cc12020-08-10 10:55:56 -06001596static void __io_free_req_finish(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03001597{
Jens Axboe0f212202020-09-13 13:09:39 -06001598 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe51a4cc12020-08-10 10:55:56 -06001599 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001600
Jens Axboe0f212202020-09-13 13:09:39 -06001601 atomic_long_inc(&tctx->req_complete);
1602 if (tctx->in_idle)
1603 wake_up(&tctx->wait);
Jens Axboee3bc8e92020-09-24 08:45:57 -06001604 put_task_struct(req->task);
1605
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001606 if (likely(!io_is_fallback_req(req)))
1607 kmem_cache_free(req_cachep, req);
1608 else
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001609 clear_bit_unlock(0, (unsigned long *) &ctx->fallback_req);
1610 percpu_ref_put(&ctx->refs);
Jens Axboee65ef562019-03-12 10:16:44 -06001611}
1612
Jens Axboe51a4cc12020-08-10 10:55:56 -06001613static void io_req_task_file_table_put(struct callback_head *cb)
1614{
1615 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
1616 struct fs_struct *fs = req->work.fs;
1617
1618 spin_lock(&req->work.fs->lock);
1619 if (--fs->users)
1620 fs = NULL;
1621 spin_unlock(&req->work.fs->lock);
1622 if (fs)
1623 free_fs_struct(fs);
1624 req->work.fs = NULL;
1625 __io_free_req_finish(req);
1626}
1627
1628static void __io_free_req(struct io_kiocb *req)
1629{
1630 if (!io_dismantle_req(req)) {
1631 __io_free_req_finish(req);
1632 } else {
1633 int ret;
1634
1635 init_task_work(&req->task_work, io_req_task_file_table_put);
1636 ret = task_work_add(req->task, &req->task_work, TWA_RESUME);
1637 if (unlikely(ret)) {
1638 struct task_struct *tsk;
1639
1640 tsk = io_wq_get_task(req->ctx->io_wq);
1641 task_work_add(tsk, &req->task_work, 0);
1642 }
1643 }
1644}
1645
Jackie Liua197f662019-11-08 08:09:12 -07001646static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001647{
Jackie Liua197f662019-11-08 08:09:12 -07001648 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001649 int ret;
1650
Jens Axboe2d283902019-12-04 11:08:05 -07001651 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001652 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001653 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001654 io_commit_cqring(ctx);
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001655 req->flags &= ~REQ_F_LINK_HEAD;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001656 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001657 return true;
1658 }
1659
1660 return false;
1661}
1662
Jens Axboeab0b6452020-06-30 08:43:15 -06001663static bool __io_kill_linked_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001664{
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001665 struct io_kiocb *link;
Jens Axboeab0b6452020-06-30 08:43:15 -06001666 bool wake_ev;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001667
1668 if (list_empty(&req->link_list))
Jens Axboeab0b6452020-06-30 08:43:15 -06001669 return false;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001670 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
1671 if (link->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboeab0b6452020-06-30 08:43:15 -06001672 return false;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001673
1674 list_del_init(&link->link_list);
Jens Axboe9b7adba2020-08-10 10:54:02 -06001675 link->flags |= REQ_F_COMP_LOCKED;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001676 wake_ev = io_link_cancel_timeout(link);
1677 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboeab0b6452020-06-30 08:43:15 -06001678 return wake_ev;
1679}
1680
1681static void io_kill_linked_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001682{
Jens Axboe2665abf2019-11-05 12:40:47 -07001683 struct io_ring_ctx *ctx = req->ctx;
Jens Axboeab0b6452020-06-30 08:43:15 -06001684 bool wake_ev;
Jens Axboe9e645e112019-05-10 16:07:28 -06001685
Jens Axboeab0b6452020-06-30 08:43:15 -06001686 if (!(req->flags & REQ_F_COMP_LOCKED)) {
1687 unsigned long flags;
1688
1689 spin_lock_irqsave(&ctx->completion_lock, flags);
1690 wake_ev = __io_kill_linked_timeout(req);
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001691 spin_unlock_irqrestore(&ctx->completion_lock, flags);
Jens Axboeab0b6452020-06-30 08:43:15 -06001692 } else {
1693 wake_ev = __io_kill_linked_timeout(req);
1694 }
1695
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001696 if (wake_ev)
1697 io_cqring_ev_posted(ctx);
1698}
1699
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001700static struct io_kiocb *io_req_link_next(struct io_kiocb *req)
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001701{
1702 struct io_kiocb *nxt;
Jens Axboe4d7dd462019-11-20 13:03:52 -07001703
Jens Axboe9e645e112019-05-10 16:07:28 -06001704 /*
1705 * The list should never be empty when we are called here. But could
1706 * potentially happen if the chain is messed up, check to be on the
1707 * safe side.
1708 */
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001709 if (unlikely(list_empty(&req->link_list)))
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001710 return NULL;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001711
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001712 nxt = list_first_entry(&req->link_list, struct io_kiocb, link_list);
1713 list_del_init(&req->link_list);
1714 if (!list_empty(&nxt->link_list))
1715 nxt->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001716 return nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06001717}
1718
1719/*
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001720 * Called if REQ_F_LINK_HEAD is set, and we fail the head request
Jens Axboe9e645e112019-05-10 16:07:28 -06001721 */
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001722static void __io_fail_links(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001723{
Jens Axboe2665abf2019-11-05 12:40:47 -07001724 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06001725
1726 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001727 struct io_kiocb *link = list_first_entry(&req->link_list,
1728 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001729
Pavel Begunkov44932332019-12-05 16:16:35 +03001730 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001731 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001732
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001733 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe9b7adba2020-08-10 10:54:02 -06001734 link->flags |= REQ_F_COMP_LOCKED;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001735 __io_double_put_req(link);
Jens Axboe5d960722019-11-19 15:31:28 -07001736 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001737 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001738
1739 io_commit_cqring(ctx);
Jens Axboe2665abf2019-11-05 12:40:47 -07001740 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001741}
1742
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001743static void io_fail_links(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001744{
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001745 struct io_ring_ctx *ctx = req->ctx;
1746
1747 if (!(req->flags & REQ_F_COMP_LOCKED)) {
1748 unsigned long flags;
1749
1750 spin_lock_irqsave(&ctx->completion_lock, flags);
1751 __io_fail_links(req);
1752 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1753 } else {
1754 __io_fail_links(req);
1755 }
1756
Jens Axboe9e645e112019-05-10 16:07:28 -06001757 io_cqring_ev_posted(ctx);
1758}
1759
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03001760static struct io_kiocb *__io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001761{
Pavel Begunkov9b0d9112020-06-28 12:52:34 +03001762 req->flags &= ~REQ_F_LINK_HEAD;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001763 if (req->flags & REQ_F_LINK_TIMEOUT)
1764 io_kill_linked_timeout(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001765
Jens Axboe9e645e112019-05-10 16:07:28 -06001766 /*
1767 * If LINK is set, we have dependent requests in this chain. If we
1768 * didn't fail this request, queue the first one up, moving any other
1769 * dependencies to the next request. In case of failure, fail the rest
1770 * of the chain.
1771 */
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001772 if (likely(!(req->flags & REQ_F_FAIL_LINK)))
1773 return io_req_link_next(req);
1774 io_fail_links(req);
1775 return NULL;
Jens Axboe4d7dd462019-11-20 13:03:52 -07001776}
Jens Axboe2665abf2019-11-05 12:40:47 -07001777
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03001778static struct io_kiocb *io_req_find_next(struct io_kiocb *req)
1779{
1780 if (likely(!(req->flags & REQ_F_LINK_HEAD)))
1781 return NULL;
1782 return __io_req_find_next(req);
1783}
1784
Jens Axboefd7d6de2020-08-23 11:00:37 -06001785static int io_req_task_work_add(struct io_kiocb *req, struct callback_head *cb,
1786 bool twa_signal_ok)
Jens Axboec2c4c832020-07-01 15:37:11 -06001787{
1788 struct task_struct *tsk = req->task;
1789 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06001790 int ret, notify;
Jens Axboec2c4c832020-07-01 15:37:11 -06001791
Jens Axboe6200b0a2020-09-13 14:38:30 -06001792 if (tsk->flags & PF_EXITING)
1793 return -ESRCH;
1794
Jens Axboec2c4c832020-07-01 15:37:11 -06001795 /*
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06001796 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
1797 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
1798 * processing task_work. There's no reliable way to tell if TWA_RESUME
1799 * will do the job.
Jens Axboec2c4c832020-07-01 15:37:11 -06001800 */
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06001801 notify = 0;
Jens Axboefd7d6de2020-08-23 11:00:37 -06001802 if (!(ctx->flags & IORING_SETUP_SQPOLL) && twa_signal_ok)
Jens Axboec2c4c832020-07-01 15:37:11 -06001803 notify = TWA_SIGNAL;
1804
1805 ret = task_work_add(tsk, cb, notify);
1806 if (!ret)
1807 wake_up_process(tsk);
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06001808
Jens Axboec2c4c832020-07-01 15:37:11 -06001809 return ret;
1810}
1811
Jens Axboec40f6372020-06-25 15:39:59 -06001812static void __io_req_task_cancel(struct io_kiocb *req, int error)
1813{
1814 struct io_ring_ctx *ctx = req->ctx;
1815
1816 spin_lock_irq(&ctx->completion_lock);
1817 io_cqring_fill_event(req, error);
1818 io_commit_cqring(ctx);
1819 spin_unlock_irq(&ctx->completion_lock);
1820
1821 io_cqring_ev_posted(ctx);
1822 req_set_fail_links(req);
1823 io_double_put_req(req);
1824}
1825
1826static void io_req_task_cancel(struct callback_head *cb)
1827{
1828 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06001829 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06001830
1831 __io_req_task_cancel(req, -ECANCELED);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06001832 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06001833}
1834
1835static void __io_req_task_submit(struct io_kiocb *req)
1836{
1837 struct io_ring_ctx *ctx = req->ctx;
1838
Jens Axboec40f6372020-06-25 15:39:59 -06001839 if (!__io_sq_thread_acquire_mm(ctx)) {
1840 mutex_lock(&ctx->uring_lock);
1841 __io_queue_sqe(req, NULL, NULL);
1842 mutex_unlock(&ctx->uring_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07001843 } else {
Jens Axboec40f6372020-06-25 15:39:59 -06001844 __io_req_task_cancel(req, -EFAULT);
Jens Axboe2665abf2019-11-05 12:40:47 -07001845 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001846}
1847
Jens Axboec40f6372020-06-25 15:39:59 -06001848static void io_req_task_submit(struct callback_head *cb)
1849{
1850 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06001851 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06001852
1853 __io_req_task_submit(req);
Jens Axboe6d816e02020-08-11 08:04:14 -06001854 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06001855}
1856
1857static void io_req_task_queue(struct io_kiocb *req)
1858{
Jens Axboec40f6372020-06-25 15:39:59 -06001859 int ret;
1860
1861 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06001862 percpu_ref_get(&req->ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06001863
Jens Axboefd7d6de2020-08-23 11:00:37 -06001864 ret = io_req_task_work_add(req, &req->task_work, true);
Jens Axboec40f6372020-06-25 15:39:59 -06001865 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06001866 struct task_struct *tsk;
1867
Jens Axboec40f6372020-06-25 15:39:59 -06001868 init_task_work(&req->task_work, io_req_task_cancel);
1869 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboec2c4c832020-07-01 15:37:11 -06001870 task_work_add(tsk, &req->task_work, 0);
1871 wake_up_process(tsk);
Jens Axboec40f6372020-06-25 15:39:59 -06001872 }
Jens Axboec40f6372020-06-25 15:39:59 -06001873}
1874
Pavel Begunkovc3524382020-06-28 12:52:32 +03001875static void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08001876{
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001877 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001878
Pavel Begunkov906a8c32020-06-27 14:04:55 +03001879 if (nxt)
1880 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001881}
1882
Jens Axboe9e645e112019-05-10 16:07:28 -06001883static void io_free_req(struct io_kiocb *req)
1884{
Pavel Begunkovc3524382020-06-28 12:52:32 +03001885 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001886 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001887}
1888
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001889struct req_batch {
1890 void *reqs[IO_IOPOLL_BATCH];
1891 int to_free;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001892
1893 struct task_struct *task;
1894 int task_refs;
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001895};
1896
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001897static inline void io_init_req_batch(struct req_batch *rb)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001898{
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001899 rb->to_free = 0;
1900 rb->task_refs = 0;
1901 rb->task = NULL;
1902}
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001903
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001904static void __io_req_free_batch_flush(struct io_ring_ctx *ctx,
1905 struct req_batch *rb)
1906{
1907 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1908 percpu_ref_put_many(&ctx->refs, rb->to_free);
1909 rb->to_free = 0;
1910}
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001911
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001912static void io_req_free_batch_finish(struct io_ring_ctx *ctx,
1913 struct req_batch *rb)
1914{
1915 if (rb->to_free)
1916 __io_req_free_batch_flush(ctx, rb);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001917 if (rb->task) {
Jens Axboe0f212202020-09-13 13:09:39 -06001918 atomic_long_add(rb->task_refs, &rb->task->io_uring->req_complete);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001919 put_task_struct_many(rb->task, rb->task_refs);
1920 rb->task = NULL;
1921 }
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001922}
1923
1924static void io_req_free_batch(struct req_batch *rb, struct io_kiocb *req)
1925{
1926 if (unlikely(io_is_fallback_req(req))) {
1927 io_free_req(req);
1928 return;
1929 }
1930 if (req->flags & REQ_F_LINK_HEAD)
1931 io_queue_next(req);
1932
Jens Axboee3bc8e92020-09-24 08:45:57 -06001933 if (req->task != rb->task) {
Jens Axboe0f212202020-09-13 13:09:39 -06001934 if (rb->task) {
1935 atomic_long_add(rb->task_refs, &rb->task->io_uring->req_complete);
Jens Axboee3bc8e92020-09-24 08:45:57 -06001936 put_task_struct_many(rb->task, rb->task_refs);
Jens Axboe0f212202020-09-13 13:09:39 -06001937 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06001938 rb->task = req->task;
1939 rb->task_refs = 0;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001940 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06001941 rb->task_refs++;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001942
Jens Axboe51a4cc12020-08-10 10:55:56 -06001943 WARN_ON_ONCE(io_dismantle_req(req));
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001944 rb->reqs[rb->to_free++] = req;
1945 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1946 __io_req_free_batch_flush(req->ctx, rb);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001947}
1948
Jens Axboeba816ad2019-09-28 11:36:45 -06001949/*
1950 * Drop reference to request, return next in chain (if there is one) if this
1951 * was the last reference to this request.
1952 */
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001953static struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06001954{
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001955 struct io_kiocb *nxt = NULL;
1956
Jens Axboe2a44f462020-02-25 13:25:41 -07001957 if (refcount_dec_and_test(&req->refs)) {
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001958 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001959 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001960 }
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001961 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001962}
1963
Jens Axboe2b188cc2019-01-07 10:46:33 -07001964static void io_put_req(struct io_kiocb *req)
1965{
Jens Axboedef596e2019-01-09 08:59:42 -07001966 if (refcount_dec_and_test(&req->refs))
1967 io_free_req(req);
1968}
1969
Pavel Begunkovf4db7182020-06-25 18:20:54 +03001970static struct io_wq_work *io_steal_work(struct io_kiocb *req)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001971{
Pavel Begunkov6df1db62020-07-03 22:15:06 +03001972 struct io_kiocb *nxt;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001973
Pavel Begunkovf4db7182020-06-25 18:20:54 +03001974 /*
1975 * A ref is owned by io-wq in which context we're. So, if that's the
1976 * last one, it's safe to steal next work. False negatives are Ok,
1977 * it just will be re-punted async in io_put_work()
1978 */
1979 if (refcount_read(&req->refs) != 1)
1980 return NULL;
1981
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001982 nxt = io_req_find_next(req);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03001983 return nxt ? &nxt->work : NULL;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001984}
1985
Jens Axboe978db572019-11-14 22:39:04 -07001986/*
1987 * Must only be used if we don't need to care about links, usually from
1988 * within the completion handling itself.
1989 */
1990static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001991{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001992 /* drop both submit and complete references */
1993 if (refcount_sub_and_test(2, &req->refs))
1994 __io_free_req(req);
1995}
1996
Jens Axboe978db572019-11-14 22:39:04 -07001997static void io_double_put_req(struct io_kiocb *req)
1998{
1999 /* drop both submit and complete references */
2000 if (refcount_sub_and_test(2, &req->refs))
2001 io_free_req(req);
2002}
2003
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002004static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06002005{
Jens Axboe84f97dc2019-11-06 11:27:53 -07002006 struct io_rings *rings = ctx->rings;
2007
Jens Axboead3eb2c2019-12-18 17:12:20 -07002008 if (test_bit(0, &ctx->cq_check_overflow)) {
2009 /*
2010 * noflush == true is from the waitqueue handler, just ensure
2011 * we wake up the task, and the next invocation will flush the
2012 * entries. We cannot safely to it from here.
2013 */
2014 if (noflush && !list_empty(&ctx->cq_overflow_list))
2015 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002016
Jens Axboee6c8aa92020-09-28 13:10:13 -06002017 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboead3eb2c2019-12-18 17:12:20 -07002018 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002019
Jens Axboea3a0e432019-08-20 11:03:11 -06002020 /* See comment at the top of this file */
2021 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07002022 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06002023}
2024
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002025static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2026{
2027 struct io_rings *rings = ctx->rings;
2028
2029 /* make sure SQ entry isn't read before tail */
2030 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2031}
2032
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002033static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002034{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002035 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002036
Jens Axboebcda7ba2020-02-23 16:42:51 -07002037 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2038 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002039 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002040 kfree(kbuf);
2041 return cflags;
2042}
2043
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002044static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2045{
2046 struct io_buffer *kbuf;
2047
2048 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2049 return io_put_kbuf(req, kbuf);
2050}
2051
Jens Axboe4c6e2772020-07-01 11:29:10 -06002052static inline bool io_run_task_work(void)
2053{
Jens Axboe6200b0a2020-09-13 14:38:30 -06002054 /*
2055 * Not safe to run on exiting task, and the task_work handling will
2056 * not add work to such a task.
2057 */
2058 if (unlikely(current->flags & PF_EXITING))
2059 return false;
Jens Axboe4c6e2772020-07-01 11:29:10 -06002060 if (current->task_works) {
2061 __set_current_state(TASK_RUNNING);
2062 task_work_run();
2063 return true;
2064 }
2065
2066 return false;
2067}
2068
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002069static void io_iopoll_queue(struct list_head *again)
2070{
2071 struct io_kiocb *req;
2072
2073 do {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002074 req = list_first_entry(again, struct io_kiocb, inflight_entry);
2075 list_del(&req->inflight_entry);
Pavel Begunkov81b68a52020-07-30 18:43:46 +03002076 __io_complete_rw(req, -EAGAIN, 0, NULL);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002077 } while (!list_empty(again));
2078}
2079
Jens Axboedef596e2019-01-09 08:59:42 -07002080/*
2081 * Find and free completed poll iocbs
2082 */
2083static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
2084 struct list_head *done)
2085{
Jens Axboe8237e042019-12-28 10:48:22 -07002086 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07002087 struct io_kiocb *req;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002088 LIST_HEAD(again);
2089
2090 /* order with ->result store in io_complete_rw_iopoll() */
2091 smp_rmb();
Jens Axboedef596e2019-01-09 08:59:42 -07002092
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002093 io_init_req_batch(&rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002094 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002095 int cflags = 0;
2096
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002097 req = list_first_entry(done, struct io_kiocb, inflight_entry);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002098 if (READ_ONCE(req->result) == -EAGAIN) {
Jens Axboe56450c22020-08-26 18:58:26 -06002099 req->result = 0;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002100 req->iopoll_completed = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002101 list_move_tail(&req->inflight_entry, &again);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002102 continue;
2103 }
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002104 list_del(&req->inflight_entry);
Jens Axboedef596e2019-01-09 08:59:42 -07002105
Jens Axboebcda7ba2020-02-23 16:42:51 -07002106 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002107 cflags = io_put_rw_kbuf(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002108
2109 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07002110 (*nr_events)++;
2111
Pavel Begunkovc3524382020-06-28 12:52:32 +03002112 if (refcount_dec_and_test(&req->refs))
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002113 io_req_free_batch(&rb, req);
Jens Axboedef596e2019-01-09 08:59:42 -07002114 }
Jens Axboedef596e2019-01-09 08:59:42 -07002115
Jens Axboe09bb8392019-03-13 12:39:28 -06002116 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08002117 if (ctx->flags & IORING_SETUP_SQPOLL)
2118 io_cqring_ev_posted(ctx);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002119 io_req_free_batch_finish(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002120
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002121 if (!list_empty(&again))
2122 io_iopoll_queue(&again);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002123}
2124
Jens Axboedef596e2019-01-09 08:59:42 -07002125static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
2126 long min)
2127{
2128 struct io_kiocb *req, *tmp;
2129 LIST_HEAD(done);
2130 bool spin;
2131 int ret;
2132
2133 /*
2134 * Only spin for completions if we don't have multiple devices hanging
2135 * off our complete list, and we're under the requested amount.
2136 */
2137 spin = !ctx->poll_multi_file && *nr_events < min;
2138
2139 ret = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002140 list_for_each_entry_safe(req, tmp, &ctx->iopoll_list, inflight_entry) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002141 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07002142
2143 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002144 * Move completed and retryable entries to our local lists.
2145 * If we find a request that requires polling, break out
2146 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002147 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002148 if (READ_ONCE(req->iopoll_completed)) {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002149 list_move_tail(&req->inflight_entry, &done);
Jens Axboedef596e2019-01-09 08:59:42 -07002150 continue;
2151 }
2152 if (!list_empty(&done))
2153 break;
2154
2155 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
2156 if (ret < 0)
2157 break;
2158
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002159 /* iopoll may have completed current req */
2160 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002161 list_move_tail(&req->inflight_entry, &done);
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002162
Jens Axboedef596e2019-01-09 08:59:42 -07002163 if (ret && spin)
2164 spin = false;
2165 ret = 0;
2166 }
2167
2168 if (!list_empty(&done))
2169 io_iopoll_complete(ctx, nr_events, &done);
2170
2171 return ret;
2172}
2173
2174/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08002175 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07002176 * non-spinning poll check - we'll still enter the driver poll loop, but only
2177 * as a non-spinning completion check.
2178 */
2179static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
2180 long min)
2181{
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002182 while (!list_empty(&ctx->iopoll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07002183 int ret;
2184
2185 ret = io_do_iopoll(ctx, nr_events, min);
2186 if (ret < 0)
2187 return ret;
Pavel Begunkoveba0a4d2020-07-06 17:59:30 +03002188 if (*nr_events >= min)
Jens Axboedef596e2019-01-09 08:59:42 -07002189 return 0;
2190 }
2191
2192 return 1;
2193}
2194
2195/*
2196 * We can't just wait for polled events to come to us, we have to actively
2197 * find and complete them.
2198 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002199static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002200{
2201 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2202 return;
2203
2204 mutex_lock(&ctx->uring_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002205 while (!list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002206 unsigned int nr_events = 0;
2207
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002208 io_do_iopoll(ctx, &nr_events, 0);
Jens Axboe08f54392019-08-21 22:19:11 -06002209
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002210 /* let it sleep and repeat later if can't complete a request */
2211 if (nr_events == 0)
2212 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002213 /*
2214 * Ensure we allow local-to-the-cpu processing to take place,
2215 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002216 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002217 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002218 if (need_resched()) {
2219 mutex_unlock(&ctx->uring_lock);
2220 cond_resched();
2221 mutex_lock(&ctx->uring_lock);
2222 }
Jens Axboedef596e2019-01-09 08:59:42 -07002223 }
2224 mutex_unlock(&ctx->uring_lock);
2225}
2226
Pavel Begunkov7668b922020-07-07 16:36:21 +03002227static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002228{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002229 unsigned int nr_events = 0;
Jens Axboe2b2ed972019-10-25 10:06:15 -06002230 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002231
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002232 /*
2233 * We disallow the app entering submit/complete with polling, but we
2234 * still need to lock the ring to prevent racing with polled issue
2235 * that got punted to a workqueue.
2236 */
2237 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002238 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002239 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06002240 * Don't enter poll loop if we already have events pending.
2241 * If we do, we can potentially be spinning for commands that
2242 * already triggered a CQE (eg in error).
2243 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002244 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06002245 break;
2246
2247 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06002248 * If a submit got punted to a workqueue, we can have the
2249 * application entering polling for a command before it gets
2250 * issued. That app will hold the uring_lock for the duration
2251 * of the poll right here, so we need to take a breather every
2252 * now and then to ensure that the issue has a chance to add
2253 * the poll to the issued list. Otherwise we can spin here
2254 * forever, while the workqueue is stuck trying to acquire the
2255 * very same mutex.
2256 */
2257 if (!(++iters & 7)) {
2258 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002259 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002260 mutex_lock(&ctx->uring_lock);
2261 }
2262
Pavel Begunkov7668b922020-07-07 16:36:21 +03002263 ret = io_iopoll_getevents(ctx, &nr_events, min);
Jens Axboedef596e2019-01-09 08:59:42 -07002264 if (ret <= 0)
2265 break;
2266 ret = 0;
Pavel Begunkov7668b922020-07-07 16:36:21 +03002267 } while (min && !nr_events && !need_resched());
Jens Axboedef596e2019-01-09 08:59:42 -07002268
Jens Axboe500f9fb2019-08-19 12:15:59 -06002269 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002270 return ret;
2271}
2272
Jens Axboe491381ce2019-10-17 09:20:46 -06002273static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002274{
Jens Axboe491381ce2019-10-17 09:20:46 -06002275 /*
2276 * Tell lockdep we inherited freeze protection from submission
2277 * thread.
2278 */
2279 if (req->flags & REQ_F_ISREG) {
2280 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002281
Jens Axboe491381ce2019-10-17 09:20:46 -06002282 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002283 }
Jens Axboe491381ce2019-10-17 09:20:46 -06002284 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002285}
2286
Jens Axboea1d7c392020-06-22 11:09:46 -06002287static void io_complete_rw_common(struct kiocb *kiocb, long res,
2288 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002289{
Jens Axboe9adbd452019-12-20 08:45:55 -07002290 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002291 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002292
Jens Axboe491381ce2019-10-17 09:20:46 -06002293 if (kiocb->ki_flags & IOCB_WRITE)
2294 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002295
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002296 if (res != req->result)
2297 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002298 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002299 cflags = io_put_rw_kbuf(req);
Jens Axboea1d7c392020-06-22 11:09:46 -06002300 __io_req_complete(req, res, cflags, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002301}
2302
Jens Axboeb63534c2020-06-04 11:28:00 -06002303#ifdef CONFIG_BLOCK
2304static bool io_resubmit_prep(struct io_kiocb *req, int error)
2305{
2306 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2307 ssize_t ret = -ECANCELED;
2308 struct iov_iter iter;
2309 int rw;
2310
2311 if (error) {
2312 ret = error;
2313 goto end_req;
2314 }
2315
2316 switch (req->opcode) {
2317 case IORING_OP_READV:
2318 case IORING_OP_READ_FIXED:
2319 case IORING_OP_READ:
2320 rw = READ;
2321 break;
2322 case IORING_OP_WRITEV:
2323 case IORING_OP_WRITE_FIXED:
2324 case IORING_OP_WRITE:
2325 rw = WRITE;
2326 break;
2327 default:
2328 printk_once(KERN_WARNING "io_uring: bad opcode in resubmit %d\n",
2329 req->opcode);
2330 goto end_req;
2331 }
2332
Jens Axboe8f3d7492020-09-14 09:28:14 -06002333 if (!req->io) {
2334 ret = io_import_iovec(rw, req, &iovec, &iter, false);
2335 if (ret < 0)
2336 goto end_req;
2337 ret = io_setup_async_rw(req, iovec, inline_vecs, &iter, false);
2338 if (!ret)
2339 return true;
2340 kfree(iovec);
2341 } else {
Jens Axboeb63534c2020-06-04 11:28:00 -06002342 return true;
Jens Axboe8f3d7492020-09-14 09:28:14 -06002343 }
Jens Axboeb63534c2020-06-04 11:28:00 -06002344end_req:
Jens Axboeb63534c2020-06-04 11:28:00 -06002345 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06002346 io_req_complete(req, ret);
Jens Axboeb63534c2020-06-04 11:28:00 -06002347 return false;
2348}
Jens Axboeb63534c2020-06-04 11:28:00 -06002349#endif
2350
2351static bool io_rw_reissue(struct io_kiocb *req, long res)
2352{
2353#ifdef CONFIG_BLOCK
Jens Axboe355afae2020-09-02 09:30:31 -06002354 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboeb63534c2020-06-04 11:28:00 -06002355 int ret;
2356
Jens Axboe355afae2020-09-02 09:30:31 -06002357 if (!S_ISBLK(mode) && !S_ISREG(mode))
2358 return false;
Jens Axboeb63534c2020-06-04 11:28:00 -06002359 if ((res != -EAGAIN && res != -EOPNOTSUPP) || io_wq_current_is_worker())
2360 return false;
2361
Jens Axboefdee9462020-08-27 16:46:24 -06002362 ret = io_sq_thread_acquire_mm(req->ctx, req);
Jens Axboe6d816e02020-08-11 08:04:14 -06002363
Jens Axboefdee9462020-08-27 16:46:24 -06002364 if (io_resubmit_prep(req, ret)) {
2365 refcount_inc(&req->refs);
2366 io_queue_async_work(req);
Jens Axboeb63534c2020-06-04 11:28:00 -06002367 return true;
Jens Axboefdee9462020-08-27 16:46:24 -06002368 }
2369
Jens Axboeb63534c2020-06-04 11:28:00 -06002370#endif
2371 return false;
2372}
2373
Jens Axboea1d7c392020-06-22 11:09:46 -06002374static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2375 struct io_comp_state *cs)
2376{
2377 if (!io_rw_reissue(req, res))
2378 io_complete_rw_common(&req->rw.kiocb, res, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002379}
2380
2381static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2382{
Jens Axboe9adbd452019-12-20 08:45:55 -07002383 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002384
Jens Axboea1d7c392020-06-22 11:09:46 -06002385 __io_complete_rw(req, res, res2, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002386}
2387
Jens Axboedef596e2019-01-09 08:59:42 -07002388static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2389{
Jens Axboe9adbd452019-12-20 08:45:55 -07002390 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002391
Jens Axboe491381ce2019-10-17 09:20:46 -06002392 if (kiocb->ki_flags & IOCB_WRITE)
2393 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07002394
Xiaoguang Wang2d7d6792020-06-16 02:06:37 +08002395 if (res != -EAGAIN && res != req->result)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002396 req_set_fail_links(req);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002397
2398 WRITE_ONCE(req->result, res);
2399 /* order with io_poll_complete() checking ->result */
Pavel Begunkovcd664b02020-06-25 12:37:10 +03002400 smp_wmb();
2401 WRITE_ONCE(req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002402}
2403
2404/*
2405 * After the iocb has been issued, it's safe to be found on the poll list.
2406 * Adding the kiocb to the list AFTER submission ensures that we don't
2407 * find it from a io_iopoll_getevents() thread before the issuer is done
2408 * accessing the kiocb cookie.
2409 */
2410static void io_iopoll_req_issued(struct io_kiocb *req)
2411{
2412 struct io_ring_ctx *ctx = req->ctx;
2413
2414 /*
2415 * Track whether we have multiple files in our lists. This will impact
2416 * how we do polling eventually, not spinning if we're on potentially
2417 * different devices.
2418 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002419 if (list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002420 ctx->poll_multi_file = false;
2421 } else if (!ctx->poll_multi_file) {
2422 struct io_kiocb *list_req;
2423
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002424 list_req = list_first_entry(&ctx->iopoll_list, struct io_kiocb,
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002425 inflight_entry);
Jens Axboe9adbd452019-12-20 08:45:55 -07002426 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07002427 ctx->poll_multi_file = true;
2428 }
2429
2430 /*
2431 * For fast devices, IO may have already completed. If it has, add
2432 * it to the front so we find it first.
2433 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002434 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002435 list_add(&req->inflight_entry, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002436 else
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002437 list_add_tail(&req->inflight_entry, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002438
2439 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2440 wq_has_sleeper(&ctx->sqo_wait))
2441 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002442}
2443
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002444static void __io_state_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002445{
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002446 if (state->has_refs)
2447 fput_many(state->file, state->has_refs);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002448 state->file = NULL;
2449}
2450
2451static inline void io_state_file_put(struct io_submit_state *state)
2452{
2453 if (state->file)
2454 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002455}
2456
2457/*
2458 * Get as many references to a file as we have IOs left in this submission,
2459 * assuming most submissions are for one file, or at least that each file
2460 * has more than one submission.
2461 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002462static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002463{
2464 if (!state)
2465 return fget(fd);
2466
2467 if (state->file) {
2468 if (state->fd == fd) {
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002469 state->has_refs--;
Jens Axboe9a56a232019-01-09 09:06:50 -07002470 state->ios_left--;
2471 return state->file;
2472 }
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002473 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002474 }
2475 state->file = fget_many(fd, state->ios_left);
2476 if (!state->file)
2477 return NULL;
2478
2479 state->fd = fd;
Jens Axboe9a56a232019-01-09 09:06:50 -07002480 state->ios_left--;
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002481 state->has_refs = state->ios_left;
Jens Axboe9a56a232019-01-09 09:06:50 -07002482 return state->file;
2483}
2484
Jens Axboe4503b762020-06-01 10:00:27 -06002485static bool io_bdev_nowait(struct block_device *bdev)
2486{
2487#ifdef CONFIG_BLOCK
2488 return !bdev || queue_is_mq(bdev_get_queue(bdev));
2489#else
2490 return true;
2491#endif
2492}
2493
Jens Axboe2b188cc2019-01-07 10:46:33 -07002494/*
2495 * If we tracked the file through the SCM inflight mechanism, we could support
2496 * any file. For now, just ensure that anything potentially problematic is done
2497 * inline.
2498 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002499static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002500{
2501 umode_t mode = file_inode(file)->i_mode;
2502
Jens Axboe4503b762020-06-01 10:00:27 -06002503 if (S_ISBLK(mode)) {
2504 if (io_bdev_nowait(file->f_inode->i_bdev))
2505 return true;
2506 return false;
2507 }
2508 if (S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002509 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002510 if (S_ISREG(mode)) {
2511 if (io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
2512 file->f_op != &io_uring_fops)
2513 return true;
2514 return false;
2515 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002516
Jens Axboec5b85622020-06-09 19:23:05 -06002517 /* any ->read/write should understand O_NONBLOCK */
2518 if (file->f_flags & O_NONBLOCK)
2519 return true;
2520
Jens Axboeaf197f52020-04-28 13:15:06 -06002521 if (!(file->f_mode & FMODE_NOWAIT))
2522 return false;
2523
2524 if (rw == READ)
2525 return file->f_op->read_iter != NULL;
2526
2527 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002528}
2529
Jens Axboe3529d8c2019-12-19 18:24:38 -07002530static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2531 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002532{
Jens Axboedef596e2019-01-09 08:59:42 -07002533 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002534 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002535 unsigned ioprio;
2536 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002537
Jens Axboe491381ce2019-10-17 09:20:46 -06002538 if (S_ISREG(file_inode(req->file)->i_mode))
2539 req->flags |= REQ_F_ISREG;
2540
Jens Axboe2b188cc2019-01-07 10:46:33 -07002541 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002542 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2543 req->flags |= REQ_F_CUR_POS;
2544 kiocb->ki_pos = req->file->f_pos;
2545 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002546 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002547 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2548 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2549 if (unlikely(ret))
2550 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002551
2552 ioprio = READ_ONCE(sqe->ioprio);
2553 if (ioprio) {
2554 ret = ioprio_check_cap(ioprio);
2555 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002556 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002557
2558 kiocb->ki_ioprio = ioprio;
2559 } else
2560 kiocb->ki_ioprio = get_current_ioprio();
2561
Stefan Bühler8449eed2019-04-27 20:34:19 +02002562 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboec5b85622020-06-09 19:23:05 -06002563 if (kiocb->ki_flags & IOCB_NOWAIT)
Stefan Bühler8449eed2019-04-27 20:34:19 +02002564 req->flags |= REQ_F_NOWAIT;
2565
2566 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002567 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002568
Jens Axboedef596e2019-01-09 08:59:42 -07002569 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002570 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2571 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002572 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002573
Jens Axboedef596e2019-01-09 08:59:42 -07002574 kiocb->ki_flags |= IOCB_HIPRI;
2575 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002576 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002577 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002578 if (kiocb->ki_flags & IOCB_HIPRI)
2579 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002580 kiocb->ki_complete = io_complete_rw;
2581 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002582
Jens Axboe3529d8c2019-12-19 18:24:38 -07002583 req->rw.addr = READ_ONCE(sqe->addr);
2584 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002585 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002586 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002587}
2588
2589static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2590{
2591 switch (ret) {
2592 case -EIOCBQUEUED:
2593 break;
2594 case -ERESTARTSYS:
2595 case -ERESTARTNOINTR:
2596 case -ERESTARTNOHAND:
2597 case -ERESTART_RESTARTBLOCK:
2598 /*
2599 * We can't just restart the syscall, since previously
2600 * submitted sqes may already be in progress. Just fail this
2601 * IO with EINTR.
2602 */
2603 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002604 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002605 default:
2606 kiocb->ki_complete(kiocb, ret, 0);
2607 }
2608}
2609
Jens Axboea1d7c392020-06-22 11:09:46 -06002610static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
2611 struct io_comp_state *cs)
Jens Axboeba816ad2019-09-28 11:36:45 -06002612{
Jens Axboeba042912019-12-25 16:33:42 -07002613 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2614
Jens Axboe227c0c92020-08-13 11:51:40 -06002615 /* add previously done IO, if any */
2616 if (req->io && req->io->rw.bytes_done > 0) {
2617 if (ret < 0)
2618 ret = req->io->rw.bytes_done;
2619 else
2620 ret += req->io->rw.bytes_done;
2621 }
2622
Jens Axboeba042912019-12-25 16:33:42 -07002623 if (req->flags & REQ_F_CUR_POS)
2624 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002625 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboea1d7c392020-06-22 11:09:46 -06002626 __io_complete_rw(req, ret, 0, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002627 else
2628 io_rw_done(kiocb, ret);
2629}
2630
Jens Axboe9adbd452019-12-20 08:45:55 -07002631static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002632 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002633{
Jens Axboe9adbd452019-12-20 08:45:55 -07002634 struct io_ring_ctx *ctx = req->ctx;
2635 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002636 struct io_mapped_ubuf *imu;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002637 u16 index, buf_index;
Jens Axboeedafcce2019-01-09 09:16:05 -07002638 size_t offset;
2639 u64 buf_addr;
2640
2641 /* attempt to use fixed buffers without having provided iovecs */
2642 if (unlikely(!ctx->user_bufs))
2643 return -EFAULT;
2644
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002645 buf_index = req->buf_index;
Jens Axboeedafcce2019-01-09 09:16:05 -07002646 if (unlikely(buf_index >= ctx->nr_user_bufs))
2647 return -EFAULT;
2648
2649 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2650 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002651 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002652
2653 /* overflow */
2654 if (buf_addr + len < buf_addr)
2655 return -EFAULT;
2656 /* not inside the mapped region */
2657 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2658 return -EFAULT;
2659
2660 /*
2661 * May not be a start of buffer, set size appropriately
2662 * and advance us to the beginning.
2663 */
2664 offset = buf_addr - imu->ubuf;
2665 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002666
2667 if (offset) {
2668 /*
2669 * Don't use iov_iter_advance() here, as it's really slow for
2670 * using the latter parts of a big fixed buffer - it iterates
2671 * over each segment manually. We can cheat a bit here, because
2672 * we know that:
2673 *
2674 * 1) it's a BVEC iter, we set it up
2675 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2676 * first and last bvec
2677 *
2678 * So just find our index, and adjust the iterator afterwards.
2679 * If the offset is within the first bvec (or the whole first
2680 * bvec, just use iov_iter_advance(). This makes it easier
2681 * since we can just skip the first segment, which may not
2682 * be PAGE_SIZE aligned.
2683 */
2684 const struct bio_vec *bvec = imu->bvec;
2685
2686 if (offset <= bvec->bv_len) {
2687 iov_iter_advance(iter, offset);
2688 } else {
2689 unsigned long seg_skip;
2690
2691 /* skip first vec */
2692 offset -= bvec->bv_len;
2693 seg_skip = 1 + (offset >> PAGE_SHIFT);
2694
2695 iter->bvec = bvec + seg_skip;
2696 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002697 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002698 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002699 }
2700 }
2701
Jens Axboe5e559562019-11-13 16:12:46 -07002702 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002703}
2704
Jens Axboebcda7ba2020-02-23 16:42:51 -07002705static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2706{
2707 if (needs_lock)
2708 mutex_unlock(&ctx->uring_lock);
2709}
2710
2711static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2712{
2713 /*
2714 * "Normal" inline submissions always hold the uring_lock, since we
2715 * grab it from the system call. Same is true for the SQPOLL offload.
2716 * The only exception is when we've detached the request and issue it
2717 * from an async worker thread, grab the lock for that case.
2718 */
2719 if (needs_lock)
2720 mutex_lock(&ctx->uring_lock);
2721}
2722
2723static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2724 int bgid, struct io_buffer *kbuf,
2725 bool needs_lock)
2726{
2727 struct io_buffer *head;
2728
2729 if (req->flags & REQ_F_BUFFER_SELECTED)
2730 return kbuf;
2731
2732 io_ring_submit_lock(req->ctx, needs_lock);
2733
2734 lockdep_assert_held(&req->ctx->uring_lock);
2735
2736 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2737 if (head) {
2738 if (!list_empty(&head->list)) {
2739 kbuf = list_last_entry(&head->list, struct io_buffer,
2740 list);
2741 list_del(&kbuf->list);
2742 } else {
2743 kbuf = head;
2744 idr_remove(&req->ctx->io_buffer_idr, bgid);
2745 }
2746 if (*len > kbuf->len)
2747 *len = kbuf->len;
2748 } else {
2749 kbuf = ERR_PTR(-ENOBUFS);
2750 }
2751
2752 io_ring_submit_unlock(req->ctx, needs_lock);
2753
2754 return kbuf;
2755}
2756
Jens Axboe4d954c22020-02-27 07:31:19 -07002757static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2758 bool needs_lock)
2759{
2760 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002761 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07002762
2763 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002764 bgid = req->buf_index;
Jens Axboe4d954c22020-02-27 07:31:19 -07002765 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2766 if (IS_ERR(kbuf))
2767 return kbuf;
2768 req->rw.addr = (u64) (unsigned long) kbuf;
2769 req->flags |= REQ_F_BUFFER_SELECTED;
2770 return u64_to_user_ptr(kbuf->addr);
2771}
2772
2773#ifdef CONFIG_COMPAT
2774static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2775 bool needs_lock)
2776{
2777 struct compat_iovec __user *uiov;
2778 compat_ssize_t clen;
2779 void __user *buf;
2780 ssize_t len;
2781
2782 uiov = u64_to_user_ptr(req->rw.addr);
2783 if (!access_ok(uiov, sizeof(*uiov)))
2784 return -EFAULT;
2785 if (__get_user(clen, &uiov->iov_len))
2786 return -EFAULT;
2787 if (clen < 0)
2788 return -EINVAL;
2789
2790 len = clen;
2791 buf = io_rw_buffer_select(req, &len, needs_lock);
2792 if (IS_ERR(buf))
2793 return PTR_ERR(buf);
2794 iov[0].iov_base = buf;
2795 iov[0].iov_len = (compat_size_t) len;
2796 return 0;
2797}
2798#endif
2799
2800static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2801 bool needs_lock)
2802{
2803 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2804 void __user *buf;
2805 ssize_t len;
2806
2807 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2808 return -EFAULT;
2809
2810 len = iov[0].iov_len;
2811 if (len < 0)
2812 return -EINVAL;
2813 buf = io_rw_buffer_select(req, &len, needs_lock);
2814 if (IS_ERR(buf))
2815 return PTR_ERR(buf);
2816 iov[0].iov_base = buf;
2817 iov[0].iov_len = len;
2818 return 0;
2819}
2820
2821static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2822 bool needs_lock)
2823{
Jens Axboedddb3e22020-06-04 11:27:01 -06002824 if (req->flags & REQ_F_BUFFER_SELECTED) {
2825 struct io_buffer *kbuf;
2826
2827 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2828 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
2829 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002830 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06002831 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002832 if (!req->rw.len)
2833 return 0;
2834 else if (req->rw.len > 1)
2835 return -EINVAL;
2836
2837#ifdef CONFIG_COMPAT
2838 if (req->ctx->compat)
2839 return io_compat_import(req, iov, needs_lock);
2840#endif
2841
2842 return __io_iov_buffer_select(req, iov, needs_lock);
2843}
2844
Jens Axboe8452fd02020-08-18 13:58:33 -07002845static ssize_t __io_import_iovec(int rw, struct io_kiocb *req,
2846 struct iovec **iovec, struct iov_iter *iter,
2847 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002848{
Jens Axboe9adbd452019-12-20 08:45:55 -07002849 void __user *buf = u64_to_user_ptr(req->rw.addr);
2850 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002851 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002852 u8 opcode;
2853
Jens Axboed625c6e2019-12-17 19:53:05 -07002854 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002855 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002856 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002857 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002858 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002859
Jens Axboebcda7ba2020-02-23 16:42:51 -07002860 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002861 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002862 return -EINVAL;
2863
Jens Axboe3a6820f2019-12-22 15:19:35 -07002864 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002865 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002866 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03002867 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07002868 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002869 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002870 }
2871
Jens Axboe3a6820f2019-12-22 15:19:35 -07002872 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2873 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002874 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002875 }
2876
Jens Axboe4d954c22020-02-27 07:31:19 -07002877 if (req->flags & REQ_F_BUFFER_SELECT) {
2878 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002879 if (!ret) {
2880 ret = (*iovec)->iov_len;
2881 iov_iter_init(iter, rw, *iovec, 1, ret);
2882 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002883 *iovec = NULL;
2884 return ret;
2885 }
2886
Jens Axboe2b188cc2019-01-07 10:46:33 -07002887#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002888 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002889 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2890 iovec, iter);
2891#endif
2892
2893 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2894}
2895
Jens Axboe8452fd02020-08-18 13:58:33 -07002896static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
2897 struct iovec **iovec, struct iov_iter *iter,
2898 bool needs_lock)
2899{
2900 if (!req->io)
2901 return __io_import_iovec(rw, req, iovec, iter, needs_lock);
2902 *iovec = NULL;
2903 return iov_iter_count(&req->io->rw.iter);
2904}
2905
Jens Axboe0fef9482020-08-26 10:36:20 -06002906static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
2907{
2908 return kiocb->ki_filp->f_mode & FMODE_STREAM ? NULL : &kiocb->ki_pos;
2909}
2910
Jens Axboe32960612019-09-23 11:05:34 -06002911/*
2912 * For files that don't have ->read_iter() and ->write_iter(), handle them
2913 * by looping over ->read() or ->write() manually.
2914 */
2915static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2916 struct iov_iter *iter)
2917{
2918 ssize_t ret = 0;
2919
2920 /*
2921 * Don't support polled IO through this interface, and we can't
2922 * support non-blocking either. For the latter, this just causes
2923 * the kiocb to be handled from an async context.
2924 */
2925 if (kiocb->ki_flags & IOCB_HIPRI)
2926 return -EOPNOTSUPP;
2927 if (kiocb->ki_flags & IOCB_NOWAIT)
2928 return -EAGAIN;
2929
2930 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002931 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002932 ssize_t nr;
2933
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002934 if (!iov_iter_is_bvec(iter)) {
2935 iovec = iov_iter_iovec(iter);
2936 } else {
2937 /* fixed buffers import bvec */
2938 iovec.iov_base = kmap(iter->bvec->bv_page)
2939 + iter->iov_offset;
2940 iovec.iov_len = min(iter->count,
2941 iter->bvec->bv_len - iter->iov_offset);
2942 }
2943
Jens Axboe32960612019-09-23 11:05:34 -06002944 if (rw == READ) {
2945 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06002946 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06002947 } else {
2948 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06002949 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06002950 }
2951
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002952 if (iov_iter_is_bvec(iter))
2953 kunmap(iter->bvec->bv_page);
2954
Jens Axboe32960612019-09-23 11:05:34 -06002955 if (nr < 0) {
2956 if (!ret)
2957 ret = nr;
2958 break;
2959 }
2960 ret += nr;
2961 if (nr != iovec.iov_len)
2962 break;
2963 iov_iter_advance(iter, nr);
2964 }
2965
2966 return ret;
2967}
2968
Jens Axboeff6165b2020-08-13 09:47:43 -06002969static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
2970 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07002971{
Pavel Begunkovb64e3442020-07-13 22:59:18 +03002972 struct io_async_rw *rw = &req->io->rw;
2973
Jens Axboeff6165b2020-08-13 09:47:43 -06002974 memcpy(&rw->iter, iter, sizeof(*iter));
2975 rw->free_iovec = NULL;
Jens Axboe227c0c92020-08-13 11:51:40 -06002976 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06002977 /* can only be fixed buffers, no need to do anything */
2978 if (iter->type == ITER_BVEC)
2979 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03002980 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06002981 unsigned iov_off = 0;
2982
2983 rw->iter.iov = rw->fast_iov;
2984 if (iter->iov != fast_iov) {
2985 iov_off = iter->iov - fast_iov;
2986 rw->iter.iov += iov_off;
2987 }
2988 if (rw->fast_iov != fast_iov)
2989 memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002990 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002991 } else {
Jens Axboeff6165b2020-08-13 09:47:43 -06002992 rw->free_iovec = iovec;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002993 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002994 }
2995}
2996
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002997static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2998{
2999 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
3000 return req->io == NULL;
3001}
3002
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003003static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003004{
Jens Axboed3656342019-12-18 09:50:26 -07003005 if (!io_op_defs[req->opcode].async_ctx)
3006 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003007
3008 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003009}
3010
Jens Axboeff6165b2020-08-13 09:47:43 -06003011static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3012 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06003013 struct iov_iter *iter, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003014{
Jens Axboe227c0c92020-08-13 11:51:40 -06003015 if (!force && !io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07003016 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07003017 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003018 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07003019 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003020
Jens Axboeff6165b2020-08-13 09:47:43 -06003021 io_req_map_rw(req, iovec, fast_iov, iter);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003022 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003023 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003024}
3025
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003026static inline int io_rw_prep_async(struct io_kiocb *req, int rw,
3027 bool force_nonblock)
3028{
Jens Axboeff6165b2020-08-13 09:47:43 -06003029 struct io_async_rw *iorw = &req->io->rw;
Jens Axboec183edf2020-09-04 22:36:52 -06003030 struct iovec *iov;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003031 ssize_t ret;
3032
Jens Axboec183edf2020-09-04 22:36:52 -06003033 iorw->iter.iov = iov = iorw->fast_iov;
3034 ret = __io_import_iovec(rw, req, &iov, &iorw->iter, !force_nonblock);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003035 if (unlikely(ret < 0))
3036 return ret;
3037
Jens Axboec183edf2020-09-04 22:36:52 -06003038 iorw->iter.iov = iov;
Jens Axboeff6165b2020-08-13 09:47:43 -06003039 io_req_map_rw(req, iorw->iter.iov, iorw->fast_iov, &iorw->iter);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003040 return 0;
3041}
3042
Jens Axboe3529d8c2019-12-19 18:24:38 -07003043static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3044 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07003045{
3046 ssize_t ret;
3047
Jens Axboe3529d8c2019-12-19 18:24:38 -07003048 ret = io_prep_rw(req, sqe, force_nonblock);
3049 if (ret)
3050 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003051
Jens Axboe3529d8c2019-12-19 18:24:38 -07003052 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3053 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003054
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003055 /* either don't need iovec imported or already have it */
3056 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003057 return 0;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003058 return io_rw_prep_async(req, READ, force_nonblock);
Jens Axboef67676d2019-12-02 11:03:47 -07003059}
3060
Jens Axboec1dd91d2020-08-03 16:43:59 -06003061/*
3062 * This is our waitqueue callback handler, registered through lock_page_async()
3063 * when we initially tried to do the IO with the iocb armed our waitqueue.
3064 * This gets called when the page is unlocked, and we generally expect that to
3065 * happen when the page IO is completed and the page is now uptodate. This will
3066 * queue a task_work based retry of the operation, attempting to copy the data
3067 * again. If the latter fails because the page was NOT uptodate, then we will
3068 * do a thread based blocking retry of the operation. That's the unexpected
3069 * slow path.
3070 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003071static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3072 int sync, void *arg)
3073{
3074 struct wait_page_queue *wpq;
3075 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003076 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003077 int ret;
3078
3079 wpq = container_of(wait, struct wait_page_queue, wait);
3080
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003081 if (!wake_page_match(wpq, key))
3082 return 0;
3083
Hao Xuc8d317a2020-09-29 20:00:45 +08003084 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003085 list_del_init(&wait->entry);
3086
Pavel Begunkove7375122020-07-12 20:42:04 +03003087 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06003088 percpu_ref_get(&req->ctx->refs);
3089
Jens Axboebcf5a062020-05-22 09:24:42 -06003090 /* submit ref gets dropped, acquire a new one */
3091 refcount_inc(&req->refs);
Jens Axboefd7d6de2020-08-23 11:00:37 -06003092 ret = io_req_task_work_add(req, &req->task_work, true);
Jens Axboebcf5a062020-05-22 09:24:42 -06003093 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06003094 struct task_struct *tsk;
3095
Jens Axboebcf5a062020-05-22 09:24:42 -06003096 /* queue just for cancelation */
Pavel Begunkove7375122020-07-12 20:42:04 +03003097 init_task_work(&req->task_work, io_req_task_cancel);
Jens Axboebcf5a062020-05-22 09:24:42 -06003098 tsk = io_wq_get_task(req->ctx->io_wq);
Pavel Begunkove7375122020-07-12 20:42:04 +03003099 task_work_add(tsk, &req->task_work, 0);
Jens Axboec2c4c832020-07-01 15:37:11 -06003100 wake_up_process(tsk);
Jens Axboebcf5a062020-05-22 09:24:42 -06003101 }
Jens Axboebcf5a062020-05-22 09:24:42 -06003102 return 1;
3103}
3104
Jens Axboec1dd91d2020-08-03 16:43:59 -06003105/*
3106 * This controls whether a given IO request should be armed for async page
3107 * based retry. If we return false here, the request is handed to the async
3108 * worker threads for retry. If we're doing buffered reads on a regular file,
3109 * we prepare a private wait_page_queue entry and retry the operation. This
3110 * will either succeed because the page is now uptodate and unlocked, or it
3111 * will register a callback when the page is unlocked at IO completion. Through
3112 * that callback, io_uring uses task_work to setup a retry of the operation.
3113 * That retry will attempt the buffered read again. The retry will generally
3114 * succeed, or in rare cases where it fails, we then fall back to using the
3115 * async worker threads for a blocking retry.
3116 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003117static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003118{
Jens Axboe3b2a4432020-08-16 10:58:43 -07003119 struct wait_page_queue *wait = &req->io->rw.wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003120 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003121
3122 /* never retry for NOWAIT, we just complete with -EAGAIN */
3123 if (req->flags & REQ_F_NOWAIT)
3124 return false;
3125
Jens Axboe227c0c92020-08-13 11:51:40 -06003126 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003127 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003128 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003129
Jens Axboebcf5a062020-05-22 09:24:42 -06003130 /*
3131 * just use poll if we can, and don't attempt if the fs doesn't
3132 * support callback based unlocks
3133 */
3134 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3135 return false;
3136
Jens Axboe3b2a4432020-08-16 10:58:43 -07003137 wait->wait.func = io_async_buf_func;
3138 wait->wait.private = req;
3139 wait->wait.flags = 0;
3140 INIT_LIST_HEAD(&wait->wait.entry);
3141 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003142 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003143 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003144 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003145}
3146
3147static int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
3148{
3149 if (req->file->f_op->read_iter)
3150 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003151 else if (req->file->f_op->read)
3152 return loop_rw_iter(READ, req->file, &req->rw.kiocb, iter);
3153 else
3154 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003155}
3156
Jens Axboea1d7c392020-06-22 11:09:46 -06003157static int io_read(struct io_kiocb *req, bool force_nonblock,
3158 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003159{
3160 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003161 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003162 struct iov_iter __iter, *iter = &__iter;
Jens Axboe227c0c92020-08-13 11:51:40 -06003163 ssize_t io_size, ret, ret2;
Jens Axboe31b51512019-01-18 22:56:34 -07003164 size_t iov_count;
Jens Axboef5cac8b2020-09-14 09:30:38 -06003165 bool no_async;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003166
Jens Axboeff6165b2020-08-13 09:47:43 -06003167 if (req->io)
3168 iter = &req->io->rw.iter;
3169
3170 ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07003171 if (ret < 0)
3172 return ret;
Jens Axboeeefdf302020-08-27 16:40:19 -06003173 iov_count = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003174 io_size = ret;
3175 req->result = io_size;
Jens Axboe227c0c92020-08-13 11:51:40 -06003176 ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003177
Jens Axboefd6c2e42019-12-18 12:19:41 -07003178 /* Ensure we clear previously set non-block flag */
3179 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003180 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003181
Pavel Begunkov24c74672020-06-21 13:09:51 +03003182 /* If the file doesn't support async, just async punt */
Jens Axboef5cac8b2020-09-14 09:30:38 -06003183 no_async = force_nonblock && !io_file_supports_async(req->file, READ);
3184 if (no_async)
Jens Axboef67676d2019-12-02 11:03:47 -07003185 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003186
Jens Axboe0fef9482020-08-26 10:36:20 -06003187 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), iov_count);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003188 if (unlikely(ret))
3189 goto out_free;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003190
Jens Axboe227c0c92020-08-13 11:51:40 -06003191 ret = io_iter_do_read(req, iter);
Jens Axboe32960612019-09-23 11:05:34 -06003192
Jens Axboe227c0c92020-08-13 11:51:40 -06003193 if (!ret) {
3194 goto done;
3195 } else if (ret == -EIOCBQUEUED) {
3196 ret = 0;
3197 goto out_free;
3198 } else if (ret == -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003199 /* IOPOLL retry should happen for io-wq threads */
3200 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003201 goto done;
Jens Axboe355afae2020-09-02 09:30:31 -06003202 /* no retry on NONBLOCK marked file */
3203 if (req->file->f_flags & O_NONBLOCK)
3204 goto done;
Jens Axboe84216312020-08-24 11:45:26 -06003205 /* some cases will consume bytes even on error returns */
3206 iov_iter_revert(iter, iov_count - iov_iter_count(iter));
Jens Axboef38c7e32020-09-25 15:23:43 -06003207 ret = 0;
3208 goto copy_iov;
Jens Axboe227c0c92020-08-13 11:51:40 -06003209 } else if (ret < 0) {
Jens Axboe00d23d52020-08-25 12:59:22 -06003210 /* make sure -ERESTARTSYS -> -EINTR is done */
3211 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003212 }
3213
3214 /* read it all, or we did blocking attempt. no retry. */
Jens Axboef91daf52020-08-15 15:58:42 -07003215 if (!iov_iter_count(iter) || !force_nonblock ||
3216 (req->file->f_flags & O_NONBLOCK))
Jens Axboe227c0c92020-08-13 11:51:40 -06003217 goto done;
3218
3219 io_size -= ret;
3220copy_iov:
3221 ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
3222 if (ret2) {
3223 ret = ret2;
3224 goto out_free;
3225 }
Jens Axboef5cac8b2020-09-14 09:30:38 -06003226 if (no_async)
3227 return -EAGAIN;
Jens Axboe227c0c92020-08-13 11:51:40 -06003228 /* it's copied and will be cleaned with ->io */
3229 iovec = NULL;
3230 /* now use our persistent iterator, if we aren't already */
3231 iter = &req->io->rw.iter;
3232retry:
3233 req->io->rw.bytes_done += ret;
3234 /* if we can retry, do so with the callbacks armed */
3235 if (!io_rw_should_retry(req)) {
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003236 kiocb->ki_flags &= ~IOCB_WAITQ;
3237 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003238 }
Jens Axboe227c0c92020-08-13 11:51:40 -06003239
3240 /*
3241 * Now retry read with the IOCB_WAITQ parts set in the iocb. If we
3242 * get -EIOCBQUEUED, then we'll get a notification when the desired
3243 * page gets unlocked. We can also get a partial read here, and if we
3244 * do, then just retry at the new offset.
3245 */
3246 ret = io_iter_do_read(req, iter);
3247 if (ret == -EIOCBQUEUED) {
3248 ret = 0;
3249 goto out_free;
3250 } else if (ret > 0 && ret < io_size) {
3251 /* we got some bytes, but not all. retry. */
3252 goto retry;
3253 }
3254done:
3255 kiocb_done(kiocb, ret, cs);
3256 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003257out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003258 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003259 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003260 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003261 return ret;
3262}
3263
Jens Axboe3529d8c2019-12-19 18:24:38 -07003264static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3265 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07003266{
3267 ssize_t ret;
3268
Jens Axboe3529d8c2019-12-19 18:24:38 -07003269 ret = io_prep_rw(req, sqe, force_nonblock);
3270 if (ret)
3271 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003272
Jens Axboe3529d8c2019-12-19 18:24:38 -07003273 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3274 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003275
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003276 /* either don't need iovec imported or already have it */
3277 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003278 return 0;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003279 return io_rw_prep_async(req, WRITE, force_nonblock);
Jens Axboef67676d2019-12-02 11:03:47 -07003280}
3281
Jens Axboea1d7c392020-06-22 11:09:46 -06003282static int io_write(struct io_kiocb *req, bool force_nonblock,
3283 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003284{
3285 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003286 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003287 struct iov_iter __iter, *iter = &__iter;
Jens Axboe31b51512019-01-18 22:56:34 -07003288 size_t iov_count;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003289 ssize_t ret, ret2, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003290
Jens Axboeff6165b2020-08-13 09:47:43 -06003291 if (req->io)
3292 iter = &req->io->rw.iter;
3293
3294 ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07003295 if (ret < 0)
3296 return ret;
Jens Axboeeefdf302020-08-27 16:40:19 -06003297 iov_count = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003298 io_size = ret;
3299 req->result = io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003300
Jens Axboefd6c2e42019-12-18 12:19:41 -07003301 /* Ensure we clear previously set non-block flag */
3302 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07003303 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003304
Pavel Begunkov24c74672020-06-21 13:09:51 +03003305 /* If the file doesn't support async, just async punt */
Jens Axboeaf197f52020-04-28 13:15:06 -06003306 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003307 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003308
Jens Axboe10d59342019-12-09 20:16:22 -07003309 /* file path doesn't support NOWAIT for non-direct_IO */
3310 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3311 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003312 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003313
Jens Axboe0fef9482020-08-26 10:36:20 -06003314 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), iov_count);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003315 if (unlikely(ret))
3316 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003317
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003318 /*
3319 * Open-code file_start_write here to grab freeze protection,
3320 * which will be released by another thread in
3321 * io_complete_rw(). Fool lockdep by telling it the lock got
3322 * released so that it doesn't complain about the held lock when
3323 * we return to userspace.
3324 */
3325 if (req->flags & REQ_F_ISREG) {
3326 __sb_start_write(file_inode(req->file)->i_sb,
3327 SB_FREEZE_WRITE, true);
3328 __sb_writers_release(file_inode(req->file)->i_sb,
3329 SB_FREEZE_WRITE);
3330 }
3331 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003332
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003333 if (req->file->f_op->write_iter)
Jens Axboeff6165b2020-08-13 09:47:43 -06003334 ret2 = call_write_iter(req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003335 else if (req->file->f_op->write)
Jens Axboeff6165b2020-08-13 09:47:43 -06003336 ret2 = loop_rw_iter(WRITE, req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003337 else
3338 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003339
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003340 /*
3341 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3342 * retry them without IOCB_NOWAIT.
3343 */
3344 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3345 ret2 = -EAGAIN;
Jens Axboe355afae2020-09-02 09:30:31 -06003346 /* no retry on NONBLOCK marked file */
3347 if (ret2 == -EAGAIN && (req->file->f_flags & O_NONBLOCK))
3348 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003349 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003350 /* IOPOLL retry should happen for io-wq threads */
3351 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3352 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003353done:
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003354 kiocb_done(kiocb, ret2, cs);
3355 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003356copy_iov:
Jens Axboe84216312020-08-24 11:45:26 -06003357 /* some cases will consume bytes even on error returns */
3358 iov_iter_revert(iter, iov_count - iov_iter_count(iter));
Jens Axboe227c0c92020-08-13 11:51:40 -06003359 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
Jens Axboeff6165b2020-08-13 09:47:43 -06003360 if (!ret)
3361 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003362 }
Jens Axboe31b51512019-01-18 22:56:34 -07003363out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003364 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003365 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003366 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003367 return ret;
3368}
3369
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003370static int __io_splice_prep(struct io_kiocb *req,
3371 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003372{
3373 struct io_splice* sp = &req->splice;
3374 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
3375 int ret;
3376
3377 if (req->flags & REQ_F_NEED_CLEANUP)
3378 return 0;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003379 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3380 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003381
3382 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003383 sp->len = READ_ONCE(sqe->len);
3384 sp->flags = READ_ONCE(sqe->splice_flags);
3385
3386 if (unlikely(sp->flags & ~valid_flags))
3387 return -EINVAL;
3388
3389 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
3390 (sp->flags & SPLICE_F_FD_IN_FIXED));
3391 if (ret)
3392 return ret;
3393 req->flags |= REQ_F_NEED_CLEANUP;
3394
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003395 if (!S_ISREG(file_inode(sp->file_in)->i_mode)) {
3396 /*
3397 * Splice operation will be punted aync, and here need to
3398 * modify io_wq_work.flags, so initialize io_wq_work firstly.
3399 */
3400 io_req_init_async(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003401 req->work.flags |= IO_WQ_WORK_UNBOUND;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003402 }
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003403
3404 return 0;
3405}
3406
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003407static int io_tee_prep(struct io_kiocb *req,
3408 const struct io_uring_sqe *sqe)
3409{
3410 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3411 return -EINVAL;
3412 return __io_splice_prep(req, sqe);
3413}
3414
3415static int io_tee(struct io_kiocb *req, bool force_nonblock)
3416{
3417 struct io_splice *sp = &req->splice;
3418 struct file *in = sp->file_in;
3419 struct file *out = sp->file_out;
3420 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3421 long ret = 0;
3422
3423 if (force_nonblock)
3424 return -EAGAIN;
3425 if (sp->len)
3426 ret = do_tee(in, out, sp->len, flags);
3427
3428 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3429 req->flags &= ~REQ_F_NEED_CLEANUP;
3430
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003431 if (ret != sp->len)
3432 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003433 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003434 return 0;
3435}
3436
3437static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3438{
3439 struct io_splice* sp = &req->splice;
3440
3441 sp->off_in = READ_ONCE(sqe->splice_off_in);
3442 sp->off_out = READ_ONCE(sqe->off);
3443 return __io_splice_prep(req, sqe);
3444}
3445
Pavel Begunkov014db002020-03-03 21:33:12 +03003446static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003447{
3448 struct io_splice *sp = &req->splice;
3449 struct file *in = sp->file_in;
3450 struct file *out = sp->file_out;
3451 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3452 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003453 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003454
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03003455 if (force_nonblock)
3456 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003457
3458 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
3459 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003460
Jens Axboe948a7742020-05-17 14:21:38 -06003461 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03003462 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003463
3464 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3465 req->flags &= ~REQ_F_NEED_CLEANUP;
3466
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003467 if (ret != sp->len)
3468 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003469 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003470 return 0;
3471}
3472
Jens Axboe2b188cc2019-01-07 10:46:33 -07003473/*
3474 * IORING_OP_NOP just posts a completion event, nothing else.
3475 */
Jens Axboe229a7b62020-06-22 10:13:11 -06003476static int io_nop(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003477{
3478 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003479
Jens Axboedef596e2019-01-09 08:59:42 -07003480 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3481 return -EINVAL;
3482
Jens Axboe229a7b62020-06-22 10:13:11 -06003483 __io_req_complete(req, 0, 0, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003484 return 0;
3485}
3486
Jens Axboe3529d8c2019-12-19 18:24:38 -07003487static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003488{
Jens Axboe6b063142019-01-10 22:13:58 -07003489 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003490
Jens Axboe09bb8392019-03-13 12:39:28 -06003491 if (!req->file)
3492 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003493
Jens Axboe6b063142019-01-10 22:13:58 -07003494 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07003495 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07003496 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003497 return -EINVAL;
3498
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003499 req->sync.flags = READ_ONCE(sqe->fsync_flags);
3500 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
3501 return -EINVAL;
3502
3503 req->sync.off = READ_ONCE(sqe->off);
3504 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003505 return 0;
3506}
3507
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003508static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Jens Axboe78912932020-01-14 22:09:06 -07003509{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003510 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003511 int ret;
3512
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003513 /* fsync always requires a blocking context */
3514 if (force_nonblock)
3515 return -EAGAIN;
3516
Jens Axboe9adbd452019-12-20 08:45:55 -07003517 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003518 end > 0 ? end : LLONG_MAX,
3519 req->sync.flags & IORING_FSYNC_DATASYNC);
3520 if (ret < 0)
3521 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003522 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003523 return 0;
3524}
3525
Jens Axboed63d1b52019-12-10 10:38:56 -07003526static int io_fallocate_prep(struct io_kiocb *req,
3527 const struct io_uring_sqe *sqe)
3528{
3529 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
3530 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003531 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3532 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07003533
3534 req->sync.off = READ_ONCE(sqe->off);
3535 req->sync.len = READ_ONCE(sqe->addr);
3536 req->sync.mode = READ_ONCE(sqe->len);
3537 return 0;
3538}
3539
Pavel Begunkov014db002020-03-03 21:33:12 +03003540static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07003541{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003542 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07003543
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003544 /* fallocate always requiring blocking context */
3545 if (force_nonblock)
3546 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003547 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
3548 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003549 if (ret < 0)
3550 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003551 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07003552 return 0;
3553}
3554
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003555static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003556{
Jens Axboef8748882020-01-08 17:47:02 -07003557 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003558 int ret;
3559
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003560 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07003561 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003562 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07003563 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003564
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003565 /* open.how should be already initialised */
3566 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06003567 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003568
Pavel Begunkov25e72d12020-06-03 18:03:23 +03003569 req->open.dfd = READ_ONCE(sqe->fd);
3570 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07003571 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003572 if (IS_ERR(req->open.filename)) {
3573 ret = PTR_ERR(req->open.filename);
3574 req->open.filename = NULL;
3575 return ret;
3576 }
Jens Axboe4022e7a2020-03-19 19:23:18 -06003577 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003578 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003579 return 0;
3580}
3581
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003582static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3583{
3584 u64 flags, mode;
3585
Jens Axboe4eb8dde2020-09-18 19:36:24 -06003586 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3587 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003588 if (req->flags & REQ_F_NEED_CLEANUP)
3589 return 0;
3590 mode = READ_ONCE(sqe->len);
3591 flags = READ_ONCE(sqe->open_flags);
3592 req->open.how = build_open_how(flags, mode);
3593 return __io_openat_prep(req, sqe);
3594}
3595
Jens Axboecebdb982020-01-08 17:59:24 -07003596static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3597{
3598 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07003599 size_t len;
3600 int ret;
3601
Jens Axboe4eb8dde2020-09-18 19:36:24 -06003602 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3603 return -EINVAL;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003604 if (req->flags & REQ_F_NEED_CLEANUP)
3605 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07003606 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3607 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07003608 if (len < OPEN_HOW_SIZE_VER0)
3609 return -EINVAL;
3610
3611 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
3612 len);
3613 if (ret)
3614 return ret;
3615
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003616 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07003617}
3618
Pavel Begunkov014db002020-03-03 21:33:12 +03003619static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003620{
3621 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003622 struct file *file;
3623 int ret;
3624
Jens Axboef86cd202020-01-29 13:46:44 -07003625 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003626 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003627
Jens Axboecebdb982020-01-08 17:59:24 -07003628 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003629 if (ret)
3630 goto err;
3631
Jens Axboe4022e7a2020-03-19 19:23:18 -06003632 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003633 if (ret < 0)
3634 goto err;
3635
3636 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3637 if (IS_ERR(file)) {
3638 put_unused_fd(ret);
3639 ret = PTR_ERR(file);
3640 } else {
3641 fsnotify_open(file);
3642 fd_install(ret, file);
3643 }
3644err:
3645 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003646 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003647 if (ret < 0)
3648 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003649 io_req_complete(req, ret);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003650 return 0;
3651}
3652
Pavel Begunkov014db002020-03-03 21:33:12 +03003653static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003654{
Pavel Begunkov014db002020-03-03 21:33:12 +03003655 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003656}
3657
Jens Axboe067524e2020-03-02 16:32:28 -07003658static int io_remove_buffers_prep(struct io_kiocb *req,
3659 const struct io_uring_sqe *sqe)
3660{
3661 struct io_provide_buf *p = &req->pbuf;
3662 u64 tmp;
3663
3664 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3665 return -EINVAL;
3666
3667 tmp = READ_ONCE(sqe->fd);
3668 if (!tmp || tmp > USHRT_MAX)
3669 return -EINVAL;
3670
3671 memset(p, 0, sizeof(*p));
3672 p->nbufs = tmp;
3673 p->bgid = READ_ONCE(sqe->buf_group);
3674 return 0;
3675}
3676
3677static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3678 int bgid, unsigned nbufs)
3679{
3680 unsigned i = 0;
3681
3682 /* shouldn't happen */
3683 if (!nbufs)
3684 return 0;
3685
3686 /* the head kbuf is the list itself */
3687 while (!list_empty(&buf->list)) {
3688 struct io_buffer *nxt;
3689
3690 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3691 list_del(&nxt->list);
3692 kfree(nxt);
3693 if (++i == nbufs)
3694 return i;
3695 }
3696 i++;
3697 kfree(buf);
3698 idr_remove(&ctx->io_buffer_idr, bgid);
3699
3700 return i;
3701}
3702
Jens Axboe229a7b62020-06-22 10:13:11 -06003703static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock,
3704 struct io_comp_state *cs)
Jens Axboe067524e2020-03-02 16:32:28 -07003705{
3706 struct io_provide_buf *p = &req->pbuf;
3707 struct io_ring_ctx *ctx = req->ctx;
3708 struct io_buffer *head;
3709 int ret = 0;
3710
3711 io_ring_submit_lock(ctx, !force_nonblock);
3712
3713 lockdep_assert_held(&ctx->uring_lock);
3714
3715 ret = -ENOENT;
3716 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3717 if (head)
3718 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3719
3720 io_ring_submit_lock(ctx, !force_nonblock);
3721 if (ret < 0)
3722 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06003723 __io_req_complete(req, ret, 0, cs);
Jens Axboe067524e2020-03-02 16:32:28 -07003724 return 0;
3725}
3726
Jens Axboeddf0322d2020-02-23 16:41:33 -07003727static int io_provide_buffers_prep(struct io_kiocb *req,
3728 const struct io_uring_sqe *sqe)
3729{
3730 struct io_provide_buf *p = &req->pbuf;
3731 u64 tmp;
3732
3733 if (sqe->ioprio || sqe->rw_flags)
3734 return -EINVAL;
3735
3736 tmp = READ_ONCE(sqe->fd);
3737 if (!tmp || tmp > USHRT_MAX)
3738 return -E2BIG;
3739 p->nbufs = tmp;
3740 p->addr = READ_ONCE(sqe->addr);
3741 p->len = READ_ONCE(sqe->len);
3742
Bijan Mottahedehefe68c12020-06-04 18:01:52 -07003743 if (!access_ok(u64_to_user_ptr(p->addr), (p->len * p->nbufs)))
Jens Axboeddf0322d2020-02-23 16:41:33 -07003744 return -EFAULT;
3745
3746 p->bgid = READ_ONCE(sqe->buf_group);
3747 tmp = READ_ONCE(sqe->off);
3748 if (tmp > USHRT_MAX)
3749 return -E2BIG;
3750 p->bid = tmp;
3751 return 0;
3752}
3753
3754static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3755{
3756 struct io_buffer *buf;
3757 u64 addr = pbuf->addr;
3758 int i, bid = pbuf->bid;
3759
3760 for (i = 0; i < pbuf->nbufs; i++) {
3761 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3762 if (!buf)
3763 break;
3764
3765 buf->addr = addr;
3766 buf->len = pbuf->len;
3767 buf->bid = bid;
3768 addr += pbuf->len;
3769 bid++;
3770 if (!*head) {
3771 INIT_LIST_HEAD(&buf->list);
3772 *head = buf;
3773 } else {
3774 list_add_tail(&buf->list, &(*head)->list);
3775 }
3776 }
3777
3778 return i ? i : -ENOMEM;
3779}
3780
Jens Axboe229a7b62020-06-22 10:13:11 -06003781static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock,
3782 struct io_comp_state *cs)
Jens Axboeddf0322d2020-02-23 16:41:33 -07003783{
3784 struct io_provide_buf *p = &req->pbuf;
3785 struct io_ring_ctx *ctx = req->ctx;
3786 struct io_buffer *head, *list;
3787 int ret = 0;
3788
3789 io_ring_submit_lock(ctx, !force_nonblock);
3790
3791 lockdep_assert_held(&ctx->uring_lock);
3792
3793 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3794
3795 ret = io_add_buffers(p, &head);
3796 if (ret < 0)
3797 goto out;
3798
3799 if (!list) {
3800 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3801 GFP_KERNEL);
3802 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003803 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003804 goto out;
3805 }
3806 }
3807out:
3808 io_ring_submit_unlock(ctx, !force_nonblock);
3809 if (ret < 0)
3810 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06003811 __io_req_complete(req, ret, 0, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003812 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003813}
3814
Jens Axboe3e4827b2020-01-08 15:18:09 -07003815static int io_epoll_ctl_prep(struct io_kiocb *req,
3816 const struct io_uring_sqe *sqe)
3817{
3818#if defined(CONFIG_EPOLL)
3819 if (sqe->ioprio || sqe->buf_index)
3820 return -EINVAL;
Jens Axboe6ca56f82020-09-18 16:51:19 -06003821 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003822 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07003823
3824 req->epoll.epfd = READ_ONCE(sqe->fd);
3825 req->epoll.op = READ_ONCE(sqe->len);
3826 req->epoll.fd = READ_ONCE(sqe->off);
3827
3828 if (ep_op_has_event(req->epoll.op)) {
3829 struct epoll_event __user *ev;
3830
3831 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3832 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3833 return -EFAULT;
3834 }
3835
3836 return 0;
3837#else
3838 return -EOPNOTSUPP;
3839#endif
3840}
3841
Jens Axboe229a7b62020-06-22 10:13:11 -06003842static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock,
3843 struct io_comp_state *cs)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003844{
3845#if defined(CONFIG_EPOLL)
3846 struct io_epoll *ie = &req->epoll;
3847 int ret;
3848
3849 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3850 if (force_nonblock && ret == -EAGAIN)
3851 return -EAGAIN;
3852
3853 if (ret < 0)
3854 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06003855 __io_req_complete(req, ret, 0, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003856 return 0;
3857#else
3858 return -EOPNOTSUPP;
3859#endif
3860}
3861
Jens Axboec1ca7572019-12-25 22:18:28 -07003862static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3863{
3864#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3865 if (sqe->ioprio || sqe->buf_index || sqe->off)
3866 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003867 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3868 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07003869
3870 req->madvise.addr = READ_ONCE(sqe->addr);
3871 req->madvise.len = READ_ONCE(sqe->len);
3872 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3873 return 0;
3874#else
3875 return -EOPNOTSUPP;
3876#endif
3877}
3878
Pavel Begunkov014db002020-03-03 21:33:12 +03003879static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003880{
3881#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3882 struct io_madvise *ma = &req->madvise;
3883 int ret;
3884
3885 if (force_nonblock)
3886 return -EAGAIN;
3887
3888 ret = do_madvise(ma->addr, ma->len, ma->advice);
3889 if (ret < 0)
3890 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003891 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07003892 return 0;
3893#else
3894 return -EOPNOTSUPP;
3895#endif
3896}
3897
Jens Axboe4840e412019-12-25 22:03:45 -07003898static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3899{
3900 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3901 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003902 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3903 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07003904
3905 req->fadvise.offset = READ_ONCE(sqe->off);
3906 req->fadvise.len = READ_ONCE(sqe->len);
3907 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3908 return 0;
3909}
3910
Pavel Begunkov014db002020-03-03 21:33:12 +03003911static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003912{
3913 struct io_fadvise *fa = &req->fadvise;
3914 int ret;
3915
Jens Axboe3e694262020-02-01 09:22:49 -07003916 if (force_nonblock) {
3917 switch (fa->advice) {
3918 case POSIX_FADV_NORMAL:
3919 case POSIX_FADV_RANDOM:
3920 case POSIX_FADV_SEQUENTIAL:
3921 break;
3922 default:
3923 return -EAGAIN;
3924 }
3925 }
Jens Axboe4840e412019-12-25 22:03:45 -07003926
3927 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3928 if (ret < 0)
3929 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003930 io_req_complete(req, ret);
Jens Axboe4840e412019-12-25 22:03:45 -07003931 return 0;
3932}
3933
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003934static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3935{
Jens Axboe6ca56f82020-09-18 16:51:19 -06003936 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003937 return -EINVAL;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003938 if (sqe->ioprio || sqe->buf_index)
3939 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003940 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003941 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003942
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07003943 req->statx.dfd = READ_ONCE(sqe->fd);
3944 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07003945 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07003946 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3947 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003948
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003949 return 0;
3950}
3951
Pavel Begunkov014db002020-03-03 21:33:12 +03003952static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003953{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07003954 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003955 int ret;
3956
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003957 if (force_nonblock) {
3958 /* only need file table for an actual valid fd */
3959 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
3960 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003961 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003962 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003963
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07003964 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
3965 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003966
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003967 if (ret < 0)
3968 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003969 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003970 return 0;
3971}
3972
Jens Axboeb5dba592019-12-11 14:02:38 -07003973static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3974{
3975 /*
3976 * If we queue this for async, it must not be cancellable. That would
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003977 * leave the 'file' in an undeterminate state, and here need to modify
3978 * io_wq_work.flags, so initialize io_wq_work firstly.
Jens Axboeb5dba592019-12-11 14:02:38 -07003979 */
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003980 io_req_init_async(req);
Jens Axboeb5dba592019-12-11 14:02:38 -07003981 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3982
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003983 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3984 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07003985 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3986 sqe->rw_flags || sqe->buf_index)
3987 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003988 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003989 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003990
3991 req->close.fd = READ_ONCE(sqe->fd);
Jens Axboe0f212202020-09-13 13:09:39 -06003992 if ((req->file && req->file->f_op == &io_uring_fops))
Jens Axboefd2206e2020-06-02 16:40:47 -06003993 return -EBADF;
3994
Pavel Begunkov3af73b22020-06-08 21:08:17 +03003995 req->close.put_file = NULL;
Jens Axboeb5dba592019-12-11 14:02:38 -07003996 return 0;
3997}
3998
Jens Axboe229a7b62020-06-22 10:13:11 -06003999static int io_close(struct io_kiocb *req, bool force_nonblock,
4000 struct io_comp_state *cs)
Jens Axboeb5dba592019-12-11 14:02:38 -07004001{
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004002 struct io_close *close = &req->close;
Jens Axboeb5dba592019-12-11 14:02:38 -07004003 int ret;
4004
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004005 /* might be already done during nonblock submission */
4006 if (!close->put_file) {
4007 ret = __close_fd_get_file(close->fd, &close->put_file);
4008 if (ret < 0)
4009 return (ret == -ENOENT) ? -EBADF : ret;
4010 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004011
4012 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004013 if (close->put_file->f_op->flush && force_nonblock) {
Pavel Begunkov24c74672020-06-21 13:09:51 +03004014 /* was never set, but play safe */
4015 req->flags &= ~REQ_F_NOWAIT;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004016 /* avoid grabbing files - we don't need the files */
Pavel Begunkov24c74672020-06-21 13:09:51 +03004017 req->flags |= REQ_F_NO_FILE_TABLE;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004018 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004019 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004020
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004021 /* No ->flush() or already async, safely close from here */
4022 ret = filp_close(close->put_file, req->work.files);
4023 if (ret < 0)
4024 req_set_fail_links(req);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004025 fput(close->put_file);
4026 close->put_file = NULL;
Jens Axboe229a7b62020-06-22 10:13:11 -06004027 __io_req_complete(req, ret, 0, cs);
Jens Axboe1a417f42020-01-31 17:16:48 -07004028 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004029}
4030
Jens Axboe3529d8c2019-12-19 18:24:38 -07004031static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004032{
4033 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004034
4035 if (!req->file)
4036 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004037
4038 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4039 return -EINVAL;
4040 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
4041 return -EINVAL;
4042
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004043 req->sync.off = READ_ONCE(sqe->off);
4044 req->sync.len = READ_ONCE(sqe->len);
4045 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004046 return 0;
4047}
4048
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004049static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004050{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004051 int ret;
4052
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004053 /* sync_file_range always requires a blocking context */
4054 if (force_nonblock)
4055 return -EAGAIN;
4056
Jens Axboe9adbd452019-12-20 08:45:55 -07004057 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004058 req->sync.flags);
4059 if (ret < 0)
4060 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004061 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004062 return 0;
4063}
4064
YueHaibing469956e2020-03-04 15:53:52 +08004065#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004066static int io_setup_async_msg(struct io_kiocb *req,
4067 struct io_async_msghdr *kmsg)
4068{
4069 if (req->io)
4070 return -EAGAIN;
4071 if (io_alloc_async_ctx(req)) {
4072 if (kmsg->iov != kmsg->fast_iov)
4073 kfree(kmsg->iov);
4074 return -ENOMEM;
4075 }
4076 req->flags |= REQ_F_NEED_CLEANUP;
4077 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
4078 return -EAGAIN;
4079}
4080
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004081static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4082 struct io_async_msghdr *iomsg)
4083{
4084 iomsg->iov = iomsg->fast_iov;
4085 iomsg->msg.msg_name = &iomsg->addr;
4086 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
4087 req->sr_msg.msg_flags, &iomsg->iov);
4088}
4089
Jens Axboe3529d8c2019-12-19 18:24:38 -07004090static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004091{
Jens Axboee47293f2019-12-20 08:58:21 -07004092 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004093 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004094 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004095
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004096 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4097 return -EINVAL;
4098
Jens Axboee47293f2019-12-20 08:58:21 -07004099 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004100 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004101 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004102
Jens Axboed8768362020-02-27 14:17:49 -07004103#ifdef CONFIG_COMPAT
4104 if (req->ctx->compat)
4105 sr->msg_flags |= MSG_CMSG_COMPAT;
4106#endif
4107
Jens Axboefddafac2020-01-04 20:19:44 -07004108 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07004109 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03004110 /* iovec is already imported */
4111 if (req->flags & REQ_F_NEED_CLEANUP)
4112 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004113
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004114 ret = io_sendmsg_copy_hdr(req, &io->msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004115 if (!ret)
4116 req->flags |= REQ_F_NEED_CLEANUP;
4117 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004118}
4119
Jens Axboe229a7b62020-06-22 10:13:11 -06004120static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4121 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004122{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004123 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004124 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004125 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004126 int ret;
4127
Jens Axboe03b12302019-12-02 18:50:25 -07004128 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004129 if (unlikely(!sock))
4130 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004131
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004132 if (req->io) {
4133 kmsg = &req->io->msg;
4134 kmsg->msg.msg_name = &req->io->msg.addr;
4135 /* if iov is set, it's allocated already */
4136 if (!kmsg->iov)
4137 kmsg->iov = kmsg->fast_iov;
4138 kmsg->msg.msg_iter.iov = kmsg->iov;
4139 } else {
4140 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004141 if (ret)
4142 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004143 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004144 }
4145
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004146 flags = req->sr_msg.msg_flags;
4147 if (flags & MSG_DONTWAIT)
4148 req->flags |= REQ_F_NOWAIT;
4149 else if (force_nonblock)
4150 flags |= MSG_DONTWAIT;
4151
4152 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
4153 if (force_nonblock && ret == -EAGAIN)
4154 return io_setup_async_msg(req, kmsg);
4155 if (ret == -ERESTARTSYS)
4156 ret = -EINTR;
4157
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004158 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe03b12302019-12-02 18:50:25 -07004159 kfree(kmsg->iov);
4160 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07004161 if (ret < 0)
4162 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004163 __io_req_complete(req, ret, 0, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004164 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004165}
4166
Jens Axboe229a7b62020-06-22 10:13:11 -06004167static int io_send(struct io_kiocb *req, bool force_nonblock,
4168 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004169{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004170 struct io_sr_msg *sr = &req->sr_msg;
4171 struct msghdr msg;
4172 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004173 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004174 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004175 int ret;
4176
4177 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004178 if (unlikely(!sock))
4179 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004180
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004181 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4182 if (unlikely(ret))
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004183 return ret;;
Jens Axboe03b12302019-12-02 18:50:25 -07004184
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004185 msg.msg_name = NULL;
4186 msg.msg_control = NULL;
4187 msg.msg_controllen = 0;
4188 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004189
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004190 flags = req->sr_msg.msg_flags;
4191 if (flags & MSG_DONTWAIT)
4192 req->flags |= REQ_F_NOWAIT;
4193 else if (force_nonblock)
4194 flags |= MSG_DONTWAIT;
Jens Axboe03b12302019-12-02 18:50:25 -07004195
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004196 msg.msg_flags = flags;
4197 ret = sock_sendmsg(sock, &msg);
4198 if (force_nonblock && ret == -EAGAIN)
4199 return -EAGAIN;
4200 if (ret == -ERESTARTSYS)
4201 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004202
Jens Axboe03b12302019-12-02 18:50:25 -07004203 if (ret < 0)
4204 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004205 __io_req_complete(req, ret, 0, cs);
Jens Axboe03b12302019-12-02 18:50:25 -07004206 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004207}
4208
Pavel Begunkov1400e692020-07-12 20:41:05 +03004209static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4210 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004211{
4212 struct io_sr_msg *sr = &req->sr_msg;
4213 struct iovec __user *uiov;
4214 size_t iov_len;
4215 int ret;
4216
Pavel Begunkov1400e692020-07-12 20:41:05 +03004217 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4218 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004219 if (ret)
4220 return ret;
4221
4222 if (req->flags & REQ_F_BUFFER_SELECT) {
4223 if (iov_len > 1)
4224 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004225 if (copy_from_user(iomsg->iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004226 return -EFAULT;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004227 sr->len = iomsg->iov[0].iov_len;
4228 iov_iter_init(&iomsg->msg.msg_iter, READ, iomsg->iov, 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004229 sr->len);
Pavel Begunkov1400e692020-07-12 20:41:05 +03004230 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004231 } else {
4232 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004233 &iomsg->iov, &iomsg->msg.msg_iter);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004234 if (ret > 0)
4235 ret = 0;
4236 }
4237
4238 return ret;
4239}
4240
4241#ifdef CONFIG_COMPAT
4242static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004243 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004244{
4245 struct compat_msghdr __user *msg_compat;
4246 struct io_sr_msg *sr = &req->sr_msg;
4247 struct compat_iovec __user *uiov;
4248 compat_uptr_t ptr;
4249 compat_size_t len;
4250 int ret;
4251
Pavel Begunkov270a5942020-07-12 20:41:04 +03004252 msg_compat = (struct compat_msghdr __user *) sr->umsg;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004253 ret = __get_compat_msghdr(&iomsg->msg, msg_compat, &iomsg->uaddr,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004254 &ptr, &len);
4255 if (ret)
4256 return ret;
4257
4258 uiov = compat_ptr(ptr);
4259 if (req->flags & REQ_F_BUFFER_SELECT) {
4260 compat_ssize_t clen;
4261
4262 if (len > 1)
4263 return -EINVAL;
4264 if (!access_ok(uiov, sizeof(*uiov)))
4265 return -EFAULT;
4266 if (__get_user(clen, &uiov->iov_len))
4267 return -EFAULT;
4268 if (clen < 0)
4269 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004270 sr->len = iomsg->iov[0].iov_len;
4271 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004272 } else {
4273 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004274 &iomsg->iov,
4275 &iomsg->msg.msg_iter);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004276 if (ret < 0)
4277 return ret;
4278 }
4279
4280 return 0;
4281}
Jens Axboe03b12302019-12-02 18:50:25 -07004282#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004283
Pavel Begunkov1400e692020-07-12 20:41:05 +03004284static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4285 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004286{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004287 iomsg->msg.msg_name = &iomsg->addr;
4288 iomsg->iov = iomsg->fast_iov;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004289
4290#ifdef CONFIG_COMPAT
4291 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004292 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004293#endif
4294
Pavel Begunkov1400e692020-07-12 20:41:05 +03004295 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004296}
4297
Jens Axboebcda7ba2020-02-23 16:42:51 -07004298static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004299 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004300{
4301 struct io_sr_msg *sr = &req->sr_msg;
4302 struct io_buffer *kbuf;
4303
Jens Axboebcda7ba2020-02-23 16:42:51 -07004304 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4305 if (IS_ERR(kbuf))
4306 return kbuf;
4307
4308 sr->kbuf = kbuf;
4309 req->flags |= REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004310 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07004311}
4312
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004313static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4314{
4315 return io_put_kbuf(req, req->sr_msg.kbuf);
4316}
4317
Jens Axboe3529d8c2019-12-19 18:24:38 -07004318static int io_recvmsg_prep(struct io_kiocb *req,
4319 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07004320{
Jens Axboee47293f2019-12-20 08:58:21 -07004321 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004322 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004323 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004324
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004325 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4326 return -EINVAL;
4327
Jens Axboe3529d8c2019-12-19 18:24:38 -07004328 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004329 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004330 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004331 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004332
Jens Axboed8768362020-02-27 14:17:49 -07004333#ifdef CONFIG_COMPAT
4334 if (req->ctx->compat)
4335 sr->msg_flags |= MSG_CMSG_COMPAT;
4336#endif
4337
Jens Axboefddafac2020-01-04 20:19:44 -07004338 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07004339 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03004340 /* iovec is already imported */
4341 if (req->flags & REQ_F_NEED_CLEANUP)
4342 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004343
Pavel Begunkov1400e692020-07-12 20:41:05 +03004344 ret = io_recvmsg_copy_hdr(req, &io->msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004345 if (!ret)
4346 req->flags |= REQ_F_NEED_CLEANUP;
4347 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004348}
4349
Jens Axboe229a7b62020-06-22 10:13:11 -06004350static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4351 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004352{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004353 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004354 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004355 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004356 unsigned flags;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004357 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004358
Jens Axboe0fa03c62019-04-19 13:34:07 -06004359 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004360 if (unlikely(!sock))
4361 return ret;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004362
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004363 if (req->io) {
4364 kmsg = &req->io->msg;
4365 kmsg->msg.msg_name = &req->io->msg.addr;
4366 /* if iov is set, it's allocated already */
4367 if (!kmsg->iov)
4368 kmsg->iov = kmsg->fast_iov;
4369 kmsg->msg.msg_iter.iov = kmsg->iov;
4370 } else {
4371 ret = io_recvmsg_copy_hdr(req, &iomsg);
4372 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004373 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004374 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004375 }
4376
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004377 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004378 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004379 if (IS_ERR(kbuf))
4380 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004381 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
4382 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
4383 1, req->sr_msg.len);
4384 }
4385
4386 flags = req->sr_msg.msg_flags;
4387 if (flags & MSG_DONTWAIT)
4388 req->flags |= REQ_F_NOWAIT;
4389 else if (force_nonblock)
4390 flags |= MSG_DONTWAIT;
4391
4392 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4393 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004394 if (force_nonblock && ret == -EAGAIN)
4395 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004396 if (ret == -ERESTARTSYS)
4397 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004398
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004399 if (req->flags & REQ_F_BUFFER_SELECTED)
4400 cflags = io_put_recv_kbuf(req);
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004401 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07004402 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004403 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004404 if (ret < 0)
4405 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004406 __io_req_complete(req, ret, cflags, cs);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004407 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004408}
4409
Jens Axboe229a7b62020-06-22 10:13:11 -06004410static int io_recv(struct io_kiocb *req, bool force_nonblock,
4411 struct io_comp_state *cs)
Jens Axboefddafac2020-01-04 20:19:44 -07004412{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004413 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004414 struct io_sr_msg *sr = &req->sr_msg;
4415 struct msghdr msg;
4416 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07004417 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004418 struct iovec iov;
4419 unsigned flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004420 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004421
Jens Axboefddafac2020-01-04 20:19:44 -07004422 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004423 if (unlikely(!sock))
4424 return ret;
Jens Axboefddafac2020-01-04 20:19:44 -07004425
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004426 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004427 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004428 if (IS_ERR(kbuf))
4429 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004430 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07004431 }
4432
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004433 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004434 if (unlikely(ret))
4435 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07004436
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004437 msg.msg_name = NULL;
4438 msg.msg_control = NULL;
4439 msg.msg_controllen = 0;
4440 msg.msg_namelen = 0;
4441 msg.msg_iocb = NULL;
4442 msg.msg_flags = 0;
4443
4444 flags = req->sr_msg.msg_flags;
4445 if (flags & MSG_DONTWAIT)
4446 req->flags |= REQ_F_NOWAIT;
4447 else if (force_nonblock)
4448 flags |= MSG_DONTWAIT;
4449
4450 ret = sock_recvmsg(sock, &msg, flags);
4451 if (force_nonblock && ret == -EAGAIN)
4452 return -EAGAIN;
4453 if (ret == -ERESTARTSYS)
4454 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004455out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004456 if (req->flags & REQ_F_BUFFER_SELECTED)
4457 cflags = io_put_recv_kbuf(req);
Jens Axboefddafac2020-01-04 20:19:44 -07004458 if (ret < 0)
4459 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004460 __io_req_complete(req, ret, cflags, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004461 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004462}
4463
Jens Axboe3529d8c2019-12-19 18:24:38 -07004464static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004465{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004466 struct io_accept *accept = &req->accept;
4467
Jens Axboe17f2fe32019-10-17 14:42:58 -06004468 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4469 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05004470 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004471 return -EINVAL;
4472
Jens Axboed55e5f52019-12-11 16:12:15 -07004473 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4474 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004475 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06004476 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004477 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004478}
Jens Axboe17f2fe32019-10-17 14:42:58 -06004479
Jens Axboe229a7b62020-06-22 10:13:11 -06004480static int io_accept(struct io_kiocb *req, bool force_nonblock,
4481 struct io_comp_state *cs)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004482{
4483 struct io_accept *accept = &req->accept;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004484 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004485 int ret;
4486
Jiufei Xuee697dee2020-06-10 13:41:59 +08004487 if (req->file->f_flags & O_NONBLOCK)
4488 req->flags |= REQ_F_NOWAIT;
4489
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004490 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06004491 accept->addr_len, accept->flags,
4492 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004493 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004494 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004495 if (ret < 0) {
4496 if (ret == -ERESTARTSYS)
4497 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004498 req_set_fail_links(req);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004499 }
Jens Axboe229a7b62020-06-22 10:13:11 -06004500 __io_req_complete(req, ret, 0, cs);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004501 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004502}
4503
Jens Axboe3529d8c2019-12-19 18:24:38 -07004504static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004505{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004506 struct io_connect *conn = &req->connect;
4507 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07004508
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004509 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4510 return -EINVAL;
4511 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4512 return -EINVAL;
4513
Jens Axboe3529d8c2019-12-19 18:24:38 -07004514 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4515 conn->addr_len = READ_ONCE(sqe->addr2);
4516
4517 if (!io)
4518 return 0;
4519
4520 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004521 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004522}
4523
Jens Axboe229a7b62020-06-22 10:13:11 -06004524static int io_connect(struct io_kiocb *req, bool force_nonblock,
4525 struct io_comp_state *cs)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004526{
Jens Axboef499a022019-12-02 16:28:46 -07004527 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004528 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004529 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004530
Jens Axboef499a022019-12-02 16:28:46 -07004531 if (req->io) {
4532 io = req->io;
4533 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004534 ret = move_addr_to_kernel(req->connect.addr,
4535 req->connect.addr_len,
4536 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004537 if (ret)
4538 goto out;
4539 io = &__io;
4540 }
4541
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004542 file_flags = force_nonblock ? O_NONBLOCK : 0;
4543
4544 ret = __sys_connect_file(req->file, &io->connect.address,
4545 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004546 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004547 if (req->io)
4548 return -EAGAIN;
4549 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004550 ret = -ENOMEM;
4551 goto out;
4552 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004553 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004554 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004555 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004556 if (ret == -ERESTARTSYS)
4557 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004558out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004559 if (ret < 0)
4560 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004561 __io_req_complete(req, ret, 0, cs);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004562 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004563}
YueHaibing469956e2020-03-04 15:53:52 +08004564#else /* !CONFIG_NET */
4565static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4566{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004567 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004568}
4569
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004570static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4571 struct io_comp_state *cs)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004572{
YueHaibing469956e2020-03-04 15:53:52 +08004573 return -EOPNOTSUPP;
4574}
4575
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004576static int io_send(struct io_kiocb *req, bool force_nonblock,
4577 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004578{
4579 return -EOPNOTSUPP;
4580}
4581
4582static int io_recvmsg_prep(struct io_kiocb *req,
4583 const struct io_uring_sqe *sqe)
4584{
4585 return -EOPNOTSUPP;
4586}
4587
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004588static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4589 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004590{
4591 return -EOPNOTSUPP;
4592}
4593
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004594static int io_recv(struct io_kiocb *req, bool force_nonblock,
4595 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004596{
4597 return -EOPNOTSUPP;
4598}
4599
4600static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4601{
4602 return -EOPNOTSUPP;
4603}
4604
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004605static int io_accept(struct io_kiocb *req, bool force_nonblock,
4606 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004607{
4608 return -EOPNOTSUPP;
4609}
4610
4611static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4612{
4613 return -EOPNOTSUPP;
4614}
4615
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004616static int io_connect(struct io_kiocb *req, bool force_nonblock,
4617 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004618{
4619 return -EOPNOTSUPP;
4620}
4621#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004622
Jens Axboed7718a92020-02-14 22:23:12 -07004623struct io_poll_table {
4624 struct poll_table_struct pt;
4625 struct io_kiocb *req;
4626 int error;
4627};
4628
Jens Axboed7718a92020-02-14 22:23:12 -07004629static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4630 __poll_t mask, task_work_func_t func)
4631{
Jens Axboefd7d6de2020-08-23 11:00:37 -06004632 bool twa_signal_ok;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004633 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004634
4635 /* for instances that support it check for an event match first: */
4636 if (mask && !(mask & poll->events))
4637 return 0;
4638
4639 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4640
4641 list_del_init(&poll->wait.entry);
4642
Jens Axboed7718a92020-02-14 22:23:12 -07004643 req->result = mask;
4644 init_task_work(&req->task_work, func);
Jens Axboe6d816e02020-08-11 08:04:14 -06004645 percpu_ref_get(&req->ctx->refs);
4646
Jens Axboed7718a92020-02-14 22:23:12 -07004647 /*
Jens Axboefd7d6de2020-08-23 11:00:37 -06004648 * If we using the signalfd wait_queue_head for this wakeup, then
4649 * it's not safe to use TWA_SIGNAL as we could be recursing on the
4650 * tsk->sighand->siglock on doing the wakeup. Should not be needed
4651 * either, as the normal wakeup will suffice.
4652 */
4653 twa_signal_ok = (poll->head != &req->task->sighand->signalfd_wqh);
4654
4655 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06004656 * If this fails, then the task is exiting. When a task exits, the
4657 * work gets canceled, so just cancel this request as well instead
4658 * of executing it. We can't safely execute it anyway, as we may not
4659 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07004660 */
Jens Axboefd7d6de2020-08-23 11:00:37 -06004661 ret = io_req_task_work_add(req, &req->task_work, twa_signal_ok);
Jens Axboeaa96bf82020-04-03 11:26:26 -06004662 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06004663 struct task_struct *tsk;
4664
Jens Axboee3aabf92020-05-18 11:04:17 -06004665 WRITE_ONCE(poll->canceled, true);
Jens Axboeaa96bf82020-04-03 11:26:26 -06004666 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboece593a62020-06-30 12:39:05 -06004667 task_work_add(tsk, &req->task_work, 0);
4668 wake_up_process(tsk);
Jens Axboeaa96bf82020-04-03 11:26:26 -06004669 }
Jens Axboed7718a92020-02-14 22:23:12 -07004670 return 1;
4671}
4672
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004673static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4674 __acquires(&req->ctx->completion_lock)
4675{
4676 struct io_ring_ctx *ctx = req->ctx;
4677
4678 if (!req->result && !READ_ONCE(poll->canceled)) {
4679 struct poll_table_struct pt = { ._key = poll->events };
4680
4681 req->result = vfs_poll(req->file, &pt) & poll->events;
4682 }
4683
4684 spin_lock_irq(&ctx->completion_lock);
4685 if (!req->result && !READ_ONCE(poll->canceled)) {
4686 add_wait_queue(poll->head, &poll->wait);
4687 return true;
4688 }
4689
4690 return false;
4691}
4692
Jens Axboed4e7cd32020-08-15 11:44:50 -07004693static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06004694{
Jens Axboed4e7cd32020-08-15 11:44:50 -07004695 /* pure poll stashes this in ->io, poll driven retry elsewhere */
4696 if (req->opcode == IORING_OP_POLL_ADD)
4697 return (struct io_poll_iocb *) req->io;
4698 return req->apoll->double_poll;
4699}
4700
4701static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
4702{
4703 if (req->opcode == IORING_OP_POLL_ADD)
4704 return &req->poll;
4705 return &req->apoll->poll;
4706}
4707
4708static void io_poll_remove_double(struct io_kiocb *req)
4709{
4710 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06004711
4712 lockdep_assert_held(&req->ctx->completion_lock);
4713
4714 if (poll && poll->head) {
4715 struct wait_queue_head *head = poll->head;
4716
4717 spin_lock(&head->lock);
4718 list_del_init(&poll->wait.entry);
4719 if (poll->wait.private)
4720 refcount_dec(&req->refs);
4721 poll->head = NULL;
4722 spin_unlock(&head->lock);
4723 }
4724}
4725
4726static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
4727{
4728 struct io_ring_ctx *ctx = req->ctx;
4729
Jens Axboed4e7cd32020-08-15 11:44:50 -07004730 io_poll_remove_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06004731 req->poll.done = true;
4732 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
4733 io_commit_cqring(ctx);
4734}
4735
4736static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
4737{
4738 struct io_ring_ctx *ctx = req->ctx;
4739
4740 if (io_poll_rewait(req, &req->poll)) {
4741 spin_unlock_irq(&ctx->completion_lock);
4742 return;
4743 }
4744
4745 hash_del(&req->hash_node);
4746 io_poll_complete(req, req->result, 0);
4747 req->flags |= REQ_F_COMP_LOCKED;
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03004748 *nxt = io_put_req_find_next(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06004749 spin_unlock_irq(&ctx->completion_lock);
4750
4751 io_cqring_ev_posted(ctx);
4752}
4753
4754static void io_poll_task_func(struct callback_head *cb)
4755{
4756 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06004757 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe18bceab2020-05-15 11:56:54 -06004758 struct io_kiocb *nxt = NULL;
4759
4760 io_poll_task_handler(req, &nxt);
Pavel Begunkovea1164e2020-06-30 15:20:41 +03004761 if (nxt)
4762 __io_req_task_submit(nxt);
Jens Axboe6d816e02020-08-11 08:04:14 -06004763 percpu_ref_put(&ctx->refs);
Jens Axboe18bceab2020-05-15 11:56:54 -06004764}
4765
4766static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
4767 int sync, void *key)
4768{
4769 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07004770 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06004771 __poll_t mask = key_to_poll(key);
4772
4773 /* for instances that support it check for an event match first: */
4774 if (mask && !(mask & poll->events))
4775 return 0;
4776
Jens Axboe8706e042020-09-28 08:38:54 -06004777 list_del_init(&wait->entry);
4778
Jens Axboe807abcb2020-07-17 17:09:27 -06004779 if (poll && poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06004780 bool done;
4781
Jens Axboe807abcb2020-07-17 17:09:27 -06004782 spin_lock(&poll->head->lock);
4783 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06004784 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06004785 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07004786 /* make sure double remove sees this as being gone */
4787 wait->private = NULL;
Jens Axboe807abcb2020-07-17 17:09:27 -06004788 spin_unlock(&poll->head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06004789 if (!done)
4790 __io_async_wake(req, poll, mask, io_poll_task_func);
4791 }
4792 refcount_dec(&req->refs);
4793 return 1;
4794}
4795
4796static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
4797 wait_queue_func_t wake_func)
4798{
4799 poll->head = NULL;
4800 poll->done = false;
4801 poll->canceled = false;
4802 poll->events = events;
4803 INIT_LIST_HEAD(&poll->wait.entry);
4804 init_waitqueue_func_entry(&poll->wait, wake_func);
4805}
4806
4807static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06004808 struct wait_queue_head *head,
4809 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06004810{
4811 struct io_kiocb *req = pt->req;
4812
4813 /*
4814 * If poll->head is already set, it's because the file being polled
4815 * uses multiple waitqueues for poll handling (eg one for read, one
4816 * for write). Setup a separate io_poll_iocb if this happens.
4817 */
4818 if (unlikely(poll->head)) {
4819 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06004820 if (*poll_ptr) {
Jens Axboe18bceab2020-05-15 11:56:54 -06004821 pt->error = -EINVAL;
4822 return;
4823 }
4824 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
4825 if (!poll) {
4826 pt->error = -ENOMEM;
4827 return;
4828 }
4829 io_init_poll_iocb(poll, req->poll.events, io_poll_double_wake);
4830 refcount_inc(&req->refs);
4831 poll->wait.private = req;
Jens Axboe807abcb2020-07-17 17:09:27 -06004832 *poll_ptr = poll;
Jens Axboe18bceab2020-05-15 11:56:54 -06004833 }
4834
4835 pt->error = 0;
4836 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08004837
4838 if (poll->events & EPOLLEXCLUSIVE)
4839 add_wait_queue_exclusive(head, &poll->wait);
4840 else
4841 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06004842}
4843
4844static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4845 struct poll_table_struct *p)
4846{
4847 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06004848 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06004849
Jens Axboe807abcb2020-07-17 17:09:27 -06004850 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06004851}
4852
Jens Axboed7718a92020-02-14 22:23:12 -07004853static void io_async_task_func(struct callback_head *cb)
4854{
4855 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4856 struct async_poll *apoll = req->apoll;
4857 struct io_ring_ctx *ctx = req->ctx;
4858
4859 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4860
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004861 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07004862 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe6d816e02020-08-11 08:04:14 -06004863 percpu_ref_put(&ctx->refs);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004864 return;
Jens Axboed7718a92020-02-14 22:23:12 -07004865 }
4866
Jens Axboe31067252020-05-17 17:43:31 -06004867 /* If req is still hashed, it cannot have been canceled. Don't check. */
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03004868 if (hash_hashed(&req->hash_node))
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004869 hash_del(&req->hash_node);
Jens Axboe2bae0472020-04-13 11:16:34 -06004870
Jens Axboed4e7cd32020-08-15 11:44:50 -07004871 io_poll_remove_double(req);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004872 spin_unlock_irq(&ctx->completion_lock);
4873
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03004874 if (!READ_ONCE(apoll->poll.canceled))
4875 __io_req_task_submit(req);
4876 else
4877 __io_req_task_cancel(req, -ECANCELED);
Dan Carpenteraa340842020-07-08 21:47:11 +03004878
Jens Axboe6d816e02020-08-11 08:04:14 -06004879 percpu_ref_put(&ctx->refs);
Jens Axboe807abcb2020-07-17 17:09:27 -06004880 kfree(apoll->double_poll);
Jens Axboe31067252020-05-17 17:43:31 -06004881 kfree(apoll);
Jens Axboed7718a92020-02-14 22:23:12 -07004882}
4883
4884static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4885 void *key)
4886{
4887 struct io_kiocb *req = wait->private;
4888 struct io_poll_iocb *poll = &req->apoll->poll;
4889
4890 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4891 key_to_poll(key));
4892
4893 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4894}
4895
4896static void io_poll_req_insert(struct io_kiocb *req)
4897{
4898 struct io_ring_ctx *ctx = req->ctx;
4899 struct hlist_head *list;
4900
4901 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4902 hlist_add_head(&req->hash_node, list);
4903}
4904
4905static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4906 struct io_poll_iocb *poll,
4907 struct io_poll_table *ipt, __poll_t mask,
4908 wait_queue_func_t wake_func)
4909 __acquires(&ctx->completion_lock)
4910{
4911 struct io_ring_ctx *ctx = req->ctx;
4912 bool cancel = false;
4913
Jens Axboe18bceab2020-05-15 11:56:54 -06004914 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03004915 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06004916 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07004917
4918 ipt->pt._key = mask;
4919 ipt->req = req;
4920 ipt->error = -EINVAL;
4921
Jens Axboed7718a92020-02-14 22:23:12 -07004922 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4923
4924 spin_lock_irq(&ctx->completion_lock);
4925 if (likely(poll->head)) {
4926 spin_lock(&poll->head->lock);
4927 if (unlikely(list_empty(&poll->wait.entry))) {
4928 if (ipt->error)
4929 cancel = true;
4930 ipt->error = 0;
4931 mask = 0;
4932 }
4933 if (mask || ipt->error)
4934 list_del_init(&poll->wait.entry);
4935 else if (cancel)
4936 WRITE_ONCE(poll->canceled, true);
4937 else if (!poll->done) /* actually waiting for an event */
4938 io_poll_req_insert(req);
4939 spin_unlock(&poll->head->lock);
4940 }
4941
4942 return mask;
4943}
4944
4945static bool io_arm_poll_handler(struct io_kiocb *req)
4946{
4947 const struct io_op_def *def = &io_op_defs[req->opcode];
4948 struct io_ring_ctx *ctx = req->ctx;
4949 struct async_poll *apoll;
4950 struct io_poll_table ipt;
4951 __poll_t mask, ret;
Jens Axboe9dab14b2020-08-25 12:27:50 -06004952 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07004953
4954 if (!req->file || !file_can_poll(req->file))
4955 return false;
Pavel Begunkov24c74672020-06-21 13:09:51 +03004956 if (req->flags & REQ_F_POLLED)
Jens Axboed7718a92020-02-14 22:23:12 -07004957 return false;
Jens Axboe9dab14b2020-08-25 12:27:50 -06004958 if (def->pollin)
4959 rw = READ;
4960 else if (def->pollout)
4961 rw = WRITE;
4962 else
4963 return false;
4964 /* if we can't nonblock try, then no point in arming a poll handler */
4965 if (!io_file_supports_async(req->file, rw))
Jens Axboed7718a92020-02-14 22:23:12 -07004966 return false;
4967
4968 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4969 if (unlikely(!apoll))
4970 return false;
Jens Axboe807abcb2020-07-17 17:09:27 -06004971 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004972
4973 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07004974 req->apoll = apoll;
4975 INIT_HLIST_NODE(&req->hash_node);
4976
Nathan Chancellor8755d972020-03-02 16:01:19 -07004977 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004978 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004979 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004980 if (def->pollout)
4981 mask |= POLLOUT | POLLWRNORM;
4982 mask |= POLLERR | POLLPRI;
4983
4984 ipt.pt._qproc = io_async_queue_proc;
4985
4986 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4987 io_async_wake);
Jens Axboea36da652020-08-11 09:50:19 -06004988 if (ret || ipt.error) {
Jens Axboed4e7cd32020-08-15 11:44:50 -07004989 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07004990 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe807abcb2020-07-17 17:09:27 -06004991 kfree(apoll->double_poll);
Jens Axboed7718a92020-02-14 22:23:12 -07004992 kfree(apoll);
4993 return false;
4994 }
4995 spin_unlock_irq(&ctx->completion_lock);
4996 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4997 apoll->poll.events);
4998 return true;
4999}
5000
5001static bool __io_poll_remove_one(struct io_kiocb *req,
5002 struct io_poll_iocb *poll)
5003{
Jens Axboeb41e9852020-02-17 09:52:41 -07005004 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005005
5006 spin_lock(&poll->head->lock);
5007 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005008 if (!list_empty(&poll->wait.entry)) {
5009 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005010 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005011 }
5012 spin_unlock(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005013 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005014 return do_complete;
5015}
5016
5017static bool io_poll_remove_one(struct io_kiocb *req)
5018{
5019 bool do_complete;
5020
Jens Axboed4e7cd32020-08-15 11:44:50 -07005021 io_poll_remove_double(req);
5022
Jens Axboed7718a92020-02-14 22:23:12 -07005023 if (req->opcode == IORING_OP_POLL_ADD) {
5024 do_complete = __io_poll_remove_one(req, &req->poll);
5025 } else {
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005026 struct async_poll *apoll = req->apoll;
5027
Jens Axboed7718a92020-02-14 22:23:12 -07005028 /* non-poll requests have submit ref still */
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005029 do_complete = __io_poll_remove_one(req, &apoll->poll);
5030 if (do_complete) {
Jens Axboed7718a92020-02-14 22:23:12 -07005031 io_put_req(req);
Jens Axboe807abcb2020-07-17 17:09:27 -06005032 kfree(apoll->double_poll);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005033 kfree(apoll);
5034 }
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08005035 }
5036
Jens Axboeb41e9852020-02-17 09:52:41 -07005037 if (do_complete) {
5038 io_cqring_fill_event(req, -ECANCELED);
5039 io_commit_cqring(req->ctx);
5040 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboef254ac02020-08-12 17:33:30 -06005041 req_set_fail_links(req);
Jens Axboeb41e9852020-02-17 09:52:41 -07005042 io_put_req(req);
5043 }
5044
5045 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005046}
5047
Jens Axboe76e1b642020-09-26 15:05:03 -06005048/*
5049 * Returns true if we found and killed one or more poll requests
5050 */
5051static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005052{
Jens Axboe78076bb2019-12-04 19:56:40 -07005053 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005054 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005055 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005056
5057 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005058 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5059 struct hlist_head *list;
5060
5061 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005062 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
5063 if (io_task_match(req, tsk))
5064 posted += io_poll_remove_one(req);
5065 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005066 }
5067 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005068
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005069 if (posted)
5070 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005071
5072 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005073}
5074
Jens Axboe47f46762019-11-09 17:43:02 -07005075static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
5076{
Jens Axboe78076bb2019-12-04 19:56:40 -07005077 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005078 struct io_kiocb *req;
5079
Jens Axboe78076bb2019-12-04 19:56:40 -07005080 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5081 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005082 if (sqe_addr != req->user_data)
5083 continue;
5084 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07005085 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07005086 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07005087 }
5088
5089 return -ENOENT;
5090}
5091
Jens Axboe3529d8c2019-12-19 18:24:38 -07005092static int io_poll_remove_prep(struct io_kiocb *req,
5093 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005094{
Jens Axboe221c5eb2019-01-17 09:41:58 -07005095 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5096 return -EINVAL;
5097 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
5098 sqe->poll_events)
5099 return -EINVAL;
5100
Jens Axboe0969e782019-12-17 18:40:57 -07005101 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07005102 return 0;
5103}
5104
5105/*
5106 * Find a running poll command that matches one specified in sqe->addr,
5107 * and remove it if found.
5108 */
5109static int io_poll_remove(struct io_kiocb *req)
5110{
5111 struct io_ring_ctx *ctx = req->ctx;
5112 u64 addr;
5113 int ret;
5114
Jens Axboe0969e782019-12-17 18:40:57 -07005115 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005116 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07005117 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005118 spin_unlock_irq(&ctx->completion_lock);
5119
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005120 if (ret < 0)
5121 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06005122 io_req_complete(req, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005123 return 0;
5124}
5125
Jens Axboe221c5eb2019-01-17 09:41:58 -07005126static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5127 void *key)
5128{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005129 struct io_kiocb *req = wait->private;
5130 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005131
Jens Axboed7718a92020-02-14 22:23:12 -07005132 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005133}
5134
Jens Axboe221c5eb2019-01-17 09:41:58 -07005135static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5136 struct poll_table_struct *p)
5137{
5138 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5139
Jens Axboe807abcb2020-07-17 17:09:27 -06005140 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->io);
Jens Axboeeac406c2019-11-14 12:09:58 -07005141}
5142
Jens Axboe3529d8c2019-12-19 18:24:38 -07005143static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005144{
5145 struct io_poll_iocb *poll = &req->poll;
Jiufei Xue5769a352020-06-17 17:53:55 +08005146 u32 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005147
5148 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5149 return -EINVAL;
5150 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
5151 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06005152 if (!poll->file)
5153 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005154
Jiufei Xue5769a352020-06-17 17:53:55 +08005155 events = READ_ONCE(sqe->poll32_events);
5156#ifdef __BIG_ENDIAN
5157 events = swahw32(events);
5158#endif
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005159 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP |
5160 (events & EPOLLEXCLUSIVE);
Jens Axboe0969e782019-12-17 18:40:57 -07005161 return 0;
5162}
5163
Pavel Begunkov014db002020-03-03 21:33:12 +03005164static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07005165{
5166 struct io_poll_iocb *poll = &req->poll;
5167 struct io_ring_ctx *ctx = req->ctx;
5168 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005169 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07005170
Jens Axboe78076bb2019-12-04 19:56:40 -07005171 INIT_HLIST_NODE(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005172 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005173
Jens Axboed7718a92020-02-14 22:23:12 -07005174 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5175 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005176
Jens Axboe8c838782019-03-12 15:48:16 -06005177 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005178 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005179 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06005180 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005181 spin_unlock_irq(&ctx->completion_lock);
5182
Jens Axboe8c838782019-03-12 15:48:16 -06005183 if (mask) {
5184 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03005185 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005186 }
Jens Axboe8c838782019-03-12 15:48:16 -06005187 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005188}
5189
Jens Axboe5262f562019-09-17 12:26:57 -06005190static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5191{
Jens Axboead8a48a2019-11-15 08:49:11 -07005192 struct io_timeout_data *data = container_of(timer,
5193 struct io_timeout_data, timer);
5194 struct io_kiocb *req = data->req;
5195 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005196 unsigned long flags;
5197
Jens Axboe5262f562019-09-17 12:26:57 -06005198 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005199 atomic_set(&req->ctx->cq_timeouts,
5200 atomic_read(&req->ctx->cq_timeouts) + 1);
5201
zhangyi (F)ef036812019-10-23 15:10:08 +08005202 /*
Jens Axboe11365042019-10-16 09:08:32 -06005203 * We could be racing with timeout deletion. If the list is empty,
5204 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08005205 */
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005206 if (!list_empty(&req->timeout.list))
5207 list_del_init(&req->timeout.list);
Jens Axboe842f9612019-10-29 12:34:10 -06005208
Jens Axboe78e19bb2019-11-06 15:21:34 -07005209 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06005210 io_commit_cqring(ctx);
5211 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5212
5213 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005214 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005215 io_put_req(req);
5216 return HRTIMER_NORESTART;
5217}
5218
Jens Axboef254ac02020-08-12 17:33:30 -06005219static int __io_timeout_cancel(struct io_kiocb *req)
Jens Axboe47f46762019-11-09 17:43:02 -07005220{
Jens Axboef254ac02020-08-12 17:33:30 -06005221 int ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005222
Jens Axboef254ac02020-08-12 17:33:30 -06005223 list_del_init(&req->timeout.list);
Jens Axboe47f46762019-11-09 17:43:02 -07005224
Jens Axboe2d283902019-12-04 11:08:05 -07005225 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07005226 if (ret == -1)
5227 return -EALREADY;
5228
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005229 req_set_fail_links(req);
Jens Axboe9b7adba2020-08-10 10:54:02 -06005230 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe47f46762019-11-09 17:43:02 -07005231 io_cqring_fill_event(req, -ECANCELED);
5232 io_put_req(req);
5233 return 0;
5234}
5235
Jens Axboef254ac02020-08-12 17:33:30 -06005236static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
5237{
5238 struct io_kiocb *req;
5239 int ret = -ENOENT;
5240
5241 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
5242 if (user_data == req->user_data) {
5243 ret = 0;
5244 break;
5245 }
5246 }
5247
5248 if (ret == -ENOENT)
5249 return ret;
5250
5251 return __io_timeout_cancel(req);
5252}
5253
Jens Axboe3529d8c2019-12-19 18:24:38 -07005254static int io_timeout_remove_prep(struct io_kiocb *req,
5255 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07005256{
Jens Axboeb29472e2019-12-17 18:50:29 -07005257 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5258 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005259 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5260 return -EINVAL;
5261 if (sqe->ioprio || sqe->buf_index || sqe->len)
Jens Axboeb29472e2019-12-17 18:50:29 -07005262 return -EINVAL;
5263
5264 req->timeout.addr = READ_ONCE(sqe->addr);
5265 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
5266 if (req->timeout.flags)
5267 return -EINVAL;
5268
Jens Axboeb29472e2019-12-17 18:50:29 -07005269 return 0;
5270}
5271
Jens Axboe11365042019-10-16 09:08:32 -06005272/*
5273 * Remove or update an existing timeout command
5274 */
Jens Axboefc4df992019-12-10 14:38:45 -07005275static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06005276{
5277 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07005278 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06005279
Jens Axboe11365042019-10-16 09:08:32 -06005280 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07005281 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06005282
Jens Axboe47f46762019-11-09 17:43:02 -07005283 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06005284 io_commit_cqring(ctx);
5285 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005286 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005287 if (ret < 0)
5288 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08005289 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06005290 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06005291}
5292
Jens Axboe3529d8c2019-12-19 18:24:38 -07005293static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07005294 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06005295{
Jens Axboead8a48a2019-11-15 08:49:11 -07005296 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06005297 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005298 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06005299
Jens Axboead8a48a2019-11-15 08:49:11 -07005300 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06005301 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07005302 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06005303 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005304 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07005305 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06005306 flags = READ_ONCE(sqe->timeout_flags);
5307 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06005308 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06005309
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005310 req->timeout.off = off;
Jens Axboe26a61672019-12-20 09:02:01 -07005311
Jens Axboe3529d8c2019-12-19 18:24:38 -07005312 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07005313 return -ENOMEM;
5314
5315 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07005316 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07005317
5318 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06005319 return -EFAULT;
5320
Jens Axboe11365042019-10-16 09:08:32 -06005321 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07005322 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06005323 else
Jens Axboead8a48a2019-11-15 08:49:11 -07005324 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06005325
Jens Axboead8a48a2019-11-15 08:49:11 -07005326 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
5327 return 0;
5328}
5329
Jens Axboefc4df992019-12-10 14:38:45 -07005330static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07005331{
Jens Axboead8a48a2019-11-15 08:49:11 -07005332 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005333 struct io_timeout_data *data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07005334 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005335 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07005336
Pavel Begunkov733f5c92020-05-26 20:34:03 +03005337 spin_lock_irq(&ctx->completion_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07005338
Jens Axboe5262f562019-09-17 12:26:57 -06005339 /*
5340 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07005341 * timeout event to be satisfied. If it isn't set, then this is
5342 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06005343 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005344 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07005345 entry = ctx->timeout_list.prev;
5346 goto add;
5347 }
Jens Axboe5262f562019-09-17 12:26:57 -06005348
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005349 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
5350 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06005351
5352 /*
5353 * Insertion sort, ensuring the first entry in the list is always
5354 * the one we need first.
5355 */
Jens Axboe5262f562019-09-17 12:26:57 -06005356 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005357 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
5358 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06005359
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005360 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07005361 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005362 /* nxt.seq is behind @tail, otherwise would've been completed */
5363 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06005364 break;
5365 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07005366add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005367 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07005368 data->timer.function = io_timeout_fn;
5369 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06005370 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005371 return 0;
5372}
5373
Jens Axboe62755e32019-10-28 21:49:21 -06005374static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06005375{
Jens Axboe62755e32019-10-28 21:49:21 -06005376 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06005377
Jens Axboe62755e32019-10-28 21:49:21 -06005378 return req->user_data == (unsigned long) data;
5379}
5380
Jens Axboee977d6d2019-11-05 12:39:45 -07005381static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06005382{
Jens Axboe62755e32019-10-28 21:49:21 -06005383 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06005384 int ret = 0;
5385
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03005386 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr, false);
Jens Axboe62755e32019-10-28 21:49:21 -06005387 switch (cancel_ret) {
5388 case IO_WQ_CANCEL_OK:
5389 ret = 0;
5390 break;
5391 case IO_WQ_CANCEL_RUNNING:
5392 ret = -EALREADY;
5393 break;
5394 case IO_WQ_CANCEL_NOTFOUND:
5395 ret = -ENOENT;
5396 break;
5397 }
5398
Jens Axboee977d6d2019-11-05 12:39:45 -07005399 return ret;
5400}
5401
Jens Axboe47f46762019-11-09 17:43:02 -07005402static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
5403 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03005404 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07005405{
5406 unsigned long flags;
5407 int ret;
5408
5409 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
5410 if (ret != -ENOENT) {
5411 spin_lock_irqsave(&ctx->completion_lock, flags);
5412 goto done;
5413 }
5414
5415 spin_lock_irqsave(&ctx->completion_lock, flags);
5416 ret = io_timeout_cancel(ctx, sqe_addr);
5417 if (ret != -ENOENT)
5418 goto done;
5419 ret = io_poll_cancel(ctx, sqe_addr);
5420done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005421 if (!ret)
5422 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005423 io_cqring_fill_event(req, ret);
5424 io_commit_cqring(ctx);
5425 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5426 io_cqring_ev_posted(ctx);
5427
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005428 if (ret < 0)
5429 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03005430 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005431}
5432
Jens Axboe3529d8c2019-12-19 18:24:38 -07005433static int io_async_cancel_prep(struct io_kiocb *req,
5434 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07005435{
Jens Axboefbf23842019-12-17 18:45:56 -07005436 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07005437 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005438 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5439 return -EINVAL;
5440 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags)
Jens Axboee977d6d2019-11-05 12:39:45 -07005441 return -EINVAL;
5442
Jens Axboefbf23842019-12-17 18:45:56 -07005443 req->cancel.addr = READ_ONCE(sqe->addr);
5444 return 0;
5445}
5446
Pavel Begunkov014db002020-03-03 21:33:12 +03005447static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07005448{
5449 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07005450
Pavel Begunkov014db002020-03-03 21:33:12 +03005451 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06005452 return 0;
5453}
5454
Jens Axboe05f3fb32019-12-09 11:22:50 -07005455static int io_files_update_prep(struct io_kiocb *req,
5456 const struct io_uring_sqe *sqe)
5457{
Jens Axboe6ca56f82020-09-18 16:51:19 -06005458 if (unlikely(req->ctx->flags & IORING_SETUP_SQPOLL))
5459 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005460 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5461 return -EINVAL;
5462 if (sqe->ioprio || sqe->rw_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005463 return -EINVAL;
5464
5465 req->files_update.offset = READ_ONCE(sqe->off);
5466 req->files_update.nr_args = READ_ONCE(sqe->len);
5467 if (!req->files_update.nr_args)
5468 return -EINVAL;
5469 req->files_update.arg = READ_ONCE(sqe->addr);
5470 return 0;
5471}
5472
Jens Axboe229a7b62020-06-22 10:13:11 -06005473static int io_files_update(struct io_kiocb *req, bool force_nonblock,
5474 struct io_comp_state *cs)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005475{
5476 struct io_ring_ctx *ctx = req->ctx;
5477 struct io_uring_files_update up;
5478 int ret;
5479
Jens Axboef86cd202020-01-29 13:46:44 -07005480 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005481 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005482
5483 up.offset = req->files_update.offset;
5484 up.fds = req->files_update.arg;
5485
5486 mutex_lock(&ctx->uring_lock);
5487 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
5488 mutex_unlock(&ctx->uring_lock);
5489
5490 if (ret < 0)
5491 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06005492 __io_req_complete(req, ret, 0, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005493 return 0;
5494}
5495
Jens Axboe3529d8c2019-12-19 18:24:38 -07005496static int io_req_defer_prep(struct io_kiocb *req,
5497 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07005498{
Jens Axboee7815732019-12-17 19:45:06 -07005499 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07005500
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005501 if (!sqe)
5502 return 0;
5503
Pavel Begunkov327d6d92020-07-15 12:46:51 +03005504 if (io_alloc_async_ctx(req))
5505 return -EAGAIN;
Pavel Begunkovf56040b2020-07-23 20:25:21 +03005506 ret = io_prep_work_files(req);
5507 if (unlikely(ret))
5508 return ret;
Jens Axboecccf0ee2020-01-27 16:34:48 -07005509
Jens Axboe202700e12020-09-12 13:18:10 -06005510 io_prep_async_work(req);
5511
Jens Axboed625c6e2019-12-17 19:53:05 -07005512 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07005513 case IORING_OP_NOP:
5514 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005515 case IORING_OP_READV:
5516 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005517 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005518 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07005519 break;
5520 case IORING_OP_WRITEV:
5521 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005522 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005523 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07005524 break;
Jens Axboe0969e782019-12-17 18:40:57 -07005525 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005526 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005527 break;
5528 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005529 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005530 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005531 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005532 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005533 break;
5534 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005535 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005536 break;
Jens Axboe03b12302019-12-02 18:50:25 -07005537 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005538 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005539 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005540 break;
5541 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005542 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005543 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005544 break;
Jens Axboef499a022019-12-02 16:28:46 -07005545 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005546 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07005547 break;
Jens Axboe2d283902019-12-04 11:08:05 -07005548 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005549 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005550 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07005551 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005552 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07005553 break;
Jens Axboefbf23842019-12-17 18:45:56 -07005554 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005555 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07005556 break;
Jens Axboe2d283902019-12-04 11:08:05 -07005557 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005558 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005559 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005560 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005561 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005562 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005563 case IORING_OP_FALLOCATE:
5564 ret = io_fallocate_prep(req, sqe);
5565 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005566 case IORING_OP_OPENAT:
5567 ret = io_openat_prep(req, sqe);
5568 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005569 case IORING_OP_CLOSE:
5570 ret = io_close_prep(req, sqe);
5571 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005572 case IORING_OP_FILES_UPDATE:
5573 ret = io_files_update_prep(req, sqe);
5574 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005575 case IORING_OP_STATX:
5576 ret = io_statx_prep(req, sqe);
5577 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005578 case IORING_OP_FADVISE:
5579 ret = io_fadvise_prep(req, sqe);
5580 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005581 case IORING_OP_MADVISE:
5582 ret = io_madvise_prep(req, sqe);
5583 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005584 case IORING_OP_OPENAT2:
5585 ret = io_openat2_prep(req, sqe);
5586 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005587 case IORING_OP_EPOLL_CTL:
5588 ret = io_epoll_ctl_prep(req, sqe);
5589 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005590 case IORING_OP_SPLICE:
5591 ret = io_splice_prep(req, sqe);
5592 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005593 case IORING_OP_PROVIDE_BUFFERS:
5594 ret = io_provide_buffers_prep(req, sqe);
5595 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005596 case IORING_OP_REMOVE_BUFFERS:
5597 ret = io_remove_buffers_prep(req, sqe);
5598 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03005599 case IORING_OP_TEE:
5600 ret = io_tee_prep(req, sqe);
5601 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005602 default:
Jens Axboee7815732019-12-17 19:45:06 -07005603 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5604 req->opcode);
5605 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005606 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005607 }
5608
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005609 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07005610}
5611
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005612static u32 io_get_sequence(struct io_kiocb *req)
5613{
5614 struct io_kiocb *pos;
5615 struct io_ring_ctx *ctx = req->ctx;
5616 u32 total_submitted, nr_reqs = 1;
5617
5618 if (req->flags & REQ_F_LINK_HEAD)
5619 list_for_each_entry(pos, &req->link_list, link_list)
5620 nr_reqs++;
5621
5622 total_submitted = ctx->cached_sq_head - ctx->cached_sq_dropped;
5623 return total_submitted - nr_reqs;
5624}
5625
Jens Axboe3529d8c2019-12-19 18:24:38 -07005626static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06005627{
Jackie Liua197f662019-11-08 08:09:12 -07005628 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005629 struct io_defer_entry *de;
Jens Axboef67676d2019-12-02 11:03:47 -07005630 int ret;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005631 u32 seq;
Jens Axboede0617e2019-04-06 21:51:27 -06005632
Bob Liu9d858b22019-11-13 18:06:25 +08005633 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005634 if (likely(list_empty_careful(&ctx->defer_list) &&
5635 !(req->flags & REQ_F_IO_DRAIN)))
5636 return 0;
5637
5638 seq = io_get_sequence(req);
5639 /* Still a chance to pass the sequence check */
5640 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06005641 return 0;
5642
Pavel Begunkov650b5482020-05-17 14:02:11 +03005643 if (!req->io) {
Pavel Begunkov650b5482020-05-17 14:02:11 +03005644 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03005645 if (ret)
Pavel Begunkov650b5482020-05-17 14:02:11 +03005646 return ret;
5647 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03005648 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005649 de = kmalloc(sizeof(*de), GFP_KERNEL);
5650 if (!de)
5651 return -ENOMEM;
Jens Axboe2d283902019-12-04 11:08:05 -07005652
Jens Axboede0617e2019-04-06 21:51:27 -06005653 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005654 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005655 spin_unlock_irq(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005656 kfree(de);
Pavel Begunkovae348172020-07-23 20:25:20 +03005657 io_queue_async_work(req);
5658 return -EIOCBQUEUED;
Jens Axboede0617e2019-04-06 21:51:27 -06005659 }
5660
Jens Axboe915967f2019-11-21 09:01:20 -07005661 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005662 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005663 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005664 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboede0617e2019-04-06 21:51:27 -06005665 spin_unlock_irq(&ctx->completion_lock);
5666 return -EIOCBQUEUED;
5667}
5668
Jens Axboef573d382020-09-22 10:19:24 -06005669static void io_req_drop_files(struct io_kiocb *req)
5670{
5671 struct io_ring_ctx *ctx = req->ctx;
5672 unsigned long flags;
5673
5674 spin_lock_irqsave(&ctx->inflight_lock, flags);
5675 list_del(&req->inflight_entry);
5676 if (waitqueue_active(&ctx->inflight_wait))
5677 wake_up(&ctx->inflight_wait);
5678 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
5679 req->flags &= ~REQ_F_INFLIGHT;
Jens Axboe0f212202020-09-13 13:09:39 -06005680 put_files_struct(req->work.files);
Jens Axboef573d382020-09-22 10:19:24 -06005681 req->work.files = NULL;
5682}
5683
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03005684static void __io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005685{
5686 struct io_async_ctx *io = req->io;
5687
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005688 if (req->flags & REQ_F_BUFFER_SELECTED) {
5689 switch (req->opcode) {
5690 case IORING_OP_READV:
5691 case IORING_OP_READ_FIXED:
5692 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005693 kfree((void *)(unsigned long)req->rw.addr);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005694 break;
5695 case IORING_OP_RECVMSG:
5696 case IORING_OP_RECV:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005697 kfree(req->sr_msg.kbuf);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005698 break;
5699 }
5700 req->flags &= ~REQ_F_BUFFER_SELECTED;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005701 }
5702
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005703 if (req->flags & REQ_F_NEED_CLEANUP) {
5704 switch (req->opcode) {
5705 case IORING_OP_READV:
5706 case IORING_OP_READ_FIXED:
5707 case IORING_OP_READ:
5708 case IORING_OP_WRITEV:
5709 case IORING_OP_WRITE_FIXED:
5710 case IORING_OP_WRITE:
Jens Axboeff6165b2020-08-13 09:47:43 -06005711 if (io->rw.free_iovec)
5712 kfree(io->rw.free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005713 break;
5714 case IORING_OP_RECVMSG:
5715 case IORING_OP_SENDMSG:
5716 if (io->msg.iov != io->msg.fast_iov)
5717 kfree(io->msg.iov);
5718 break;
5719 case IORING_OP_SPLICE:
5720 case IORING_OP_TEE:
5721 io_put_file(req, req->splice.file_in,
5722 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5723 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06005724 case IORING_OP_OPENAT:
5725 case IORING_OP_OPENAT2:
5726 if (req->open.filename)
5727 putname(req->open.filename);
5728 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005729 }
5730 req->flags &= ~REQ_F_NEED_CLEANUP;
5731 }
Pavel Begunkovbb175342020-08-20 11:33:35 +03005732
Jens Axboef573d382020-09-22 10:19:24 -06005733 if (req->flags & REQ_F_INFLIGHT)
5734 io_req_drop_files(req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005735}
5736
Jens Axboe3529d8c2019-12-19 18:24:38 -07005737static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboef13fad72020-06-22 09:34:30 -06005738 bool force_nonblock, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005739{
Jackie Liua197f662019-11-08 08:09:12 -07005740 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005741 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005742
Jens Axboed625c6e2019-12-17 19:53:05 -07005743 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005744 case IORING_OP_NOP:
Jens Axboe229a7b62020-06-22 10:13:11 -06005745 ret = io_nop(req, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005746 break;
5747 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005748 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005749 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005750 if (sqe) {
5751 ret = io_read_prep(req, sqe, force_nonblock);
5752 if (ret < 0)
5753 break;
5754 }
Jens Axboea1d7c392020-06-22 11:09:46 -06005755 ret = io_read(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005756 break;
5757 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005758 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005759 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005760 if (sqe) {
5761 ret = io_write_prep(req, sqe, force_nonblock);
5762 if (ret < 0)
5763 break;
5764 }
Jens Axboea1d7c392020-06-22 11:09:46 -06005765 ret = io_write(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005766 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005767 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005768 if (sqe) {
5769 ret = io_prep_fsync(req, sqe);
5770 if (ret < 0)
5771 break;
5772 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005773 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005774 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005775 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005776 if (sqe) {
5777 ret = io_poll_add_prep(req, sqe);
5778 if (ret)
5779 break;
5780 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005781 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005782 break;
5783 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005784 if (sqe) {
5785 ret = io_poll_remove_prep(req, sqe);
5786 if (ret < 0)
5787 break;
5788 }
Jens Axboefc4df992019-12-10 14:38:45 -07005789 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005790 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005791 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005792 if (sqe) {
5793 ret = io_prep_sfr(req, sqe);
5794 if (ret < 0)
5795 break;
5796 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005797 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005798 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005799 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005800 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005801 if (sqe) {
5802 ret = io_sendmsg_prep(req, sqe);
5803 if (ret < 0)
5804 break;
5805 }
Jens Axboefddafac2020-01-04 20:19:44 -07005806 if (req->opcode == IORING_OP_SENDMSG)
Jens Axboe229a7b62020-06-22 10:13:11 -06005807 ret = io_sendmsg(req, force_nonblock, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07005808 else
Jens Axboe229a7b62020-06-22 10:13:11 -06005809 ret = io_send(req, force_nonblock, cs);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005810 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005811 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005812 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005813 if (sqe) {
5814 ret = io_recvmsg_prep(req, sqe);
5815 if (ret)
5816 break;
5817 }
Jens Axboefddafac2020-01-04 20:19:44 -07005818 if (req->opcode == IORING_OP_RECVMSG)
Jens Axboe229a7b62020-06-22 10:13:11 -06005819 ret = io_recvmsg(req, force_nonblock, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07005820 else
Jens Axboe229a7b62020-06-22 10:13:11 -06005821 ret = io_recv(req, force_nonblock, cs);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005822 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005823 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005824 if (sqe) {
5825 ret = io_timeout_prep(req, sqe, false);
5826 if (ret)
5827 break;
5828 }
Jens Axboefc4df992019-12-10 14:38:45 -07005829 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005830 break;
Jens Axboe11365042019-10-16 09:08:32 -06005831 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005832 if (sqe) {
5833 ret = io_timeout_remove_prep(req, sqe);
5834 if (ret)
5835 break;
5836 }
Jens Axboefc4df992019-12-10 14:38:45 -07005837 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005838 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005839 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005840 if (sqe) {
5841 ret = io_accept_prep(req, sqe);
5842 if (ret)
5843 break;
5844 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005845 ret = io_accept(req, force_nonblock, cs);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005846 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005847 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005848 if (sqe) {
5849 ret = io_connect_prep(req, sqe);
5850 if (ret)
5851 break;
5852 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005853 ret = io_connect(req, force_nonblock, cs);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005854 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005855 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005856 if (sqe) {
5857 ret = io_async_cancel_prep(req, sqe);
5858 if (ret)
5859 break;
5860 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005861 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005862 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005863 case IORING_OP_FALLOCATE:
5864 if (sqe) {
5865 ret = io_fallocate_prep(req, sqe);
5866 if (ret)
5867 break;
5868 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005869 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005870 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005871 case IORING_OP_OPENAT:
5872 if (sqe) {
5873 ret = io_openat_prep(req, sqe);
5874 if (ret)
5875 break;
5876 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005877 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005878 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005879 case IORING_OP_CLOSE:
5880 if (sqe) {
5881 ret = io_close_prep(req, sqe);
5882 if (ret)
5883 break;
5884 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005885 ret = io_close(req, force_nonblock, cs);
Jens Axboeb5dba592019-12-11 14:02:38 -07005886 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005887 case IORING_OP_FILES_UPDATE:
5888 if (sqe) {
5889 ret = io_files_update_prep(req, sqe);
5890 if (ret)
5891 break;
5892 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005893 ret = io_files_update(req, force_nonblock, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005894 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005895 case IORING_OP_STATX:
5896 if (sqe) {
5897 ret = io_statx_prep(req, sqe);
5898 if (ret)
5899 break;
5900 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005901 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005902 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005903 case IORING_OP_FADVISE:
5904 if (sqe) {
5905 ret = io_fadvise_prep(req, sqe);
5906 if (ret)
5907 break;
5908 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005909 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005910 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005911 case IORING_OP_MADVISE:
5912 if (sqe) {
5913 ret = io_madvise_prep(req, sqe);
5914 if (ret)
5915 break;
5916 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005917 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005918 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005919 case IORING_OP_OPENAT2:
5920 if (sqe) {
5921 ret = io_openat2_prep(req, sqe);
5922 if (ret)
5923 break;
5924 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005925 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005926 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005927 case IORING_OP_EPOLL_CTL:
5928 if (sqe) {
5929 ret = io_epoll_ctl_prep(req, sqe);
5930 if (ret)
5931 break;
5932 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005933 ret = io_epoll_ctl(req, force_nonblock, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005934 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005935 case IORING_OP_SPLICE:
5936 if (sqe) {
5937 ret = io_splice_prep(req, sqe);
5938 if (ret < 0)
5939 break;
5940 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005941 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005942 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005943 case IORING_OP_PROVIDE_BUFFERS:
5944 if (sqe) {
5945 ret = io_provide_buffers_prep(req, sqe);
5946 if (ret)
5947 break;
5948 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005949 ret = io_provide_buffers(req, force_nonblock, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07005950 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005951 case IORING_OP_REMOVE_BUFFERS:
5952 if (sqe) {
5953 ret = io_remove_buffers_prep(req, sqe);
5954 if (ret)
5955 break;
5956 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005957 ret = io_remove_buffers(req, force_nonblock, cs);
Jens Axboe31b51512019-01-18 22:56:34 -07005958 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03005959 case IORING_OP_TEE:
5960 if (sqe) {
5961 ret = io_tee_prep(req, sqe);
5962 if (ret < 0)
5963 break;
5964 }
5965 ret = io_tee(req, force_nonblock);
5966 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005967 default:
5968 ret = -EINVAL;
5969 break;
5970 }
5971
5972 if (ret)
5973 return ret;
5974
Jens Axboeb5325762020-05-19 21:20:27 -06005975 /* If the op doesn't have a file, we're not polling for it */
5976 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005977 const bool in_async = io_wq_current_is_worker();
5978
Jens Axboe11ba8202020-01-15 21:51:17 -07005979 /* workqueue context doesn't hold uring_lock, grab it now */
5980 if (in_async)
5981 mutex_lock(&ctx->uring_lock);
5982
Jens Axboe2b188cc2019-01-07 10:46:33 -07005983 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005984
5985 if (in_async)
5986 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07005987 }
5988
5989 return 0;
5990}
5991
Pavel Begunkovf4db7182020-06-25 18:20:54 +03005992static struct io_wq_work *io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03005993{
Jens Axboe2b188cc2019-01-07 10:46:33 -07005994 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03005995 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06005996 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005997
Pavel Begunkov6df1db62020-07-03 22:15:06 +03005998 timeout = io_prep_linked_timeout(req);
5999 if (timeout)
6000 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006001
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006002 /* if NO_CANCEL is set, we must still run the work */
6003 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
6004 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06006005 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006006 }
Jens Axboe31b51512019-01-18 22:56:34 -07006007
Jens Axboe561fb042019-10-24 07:25:42 -06006008 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006009 do {
Jens Axboef13fad72020-06-22 09:34:30 -06006010 ret = io_issue_sqe(req, NULL, false, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06006011 /*
6012 * We can get EAGAIN for polled IO even though we're
6013 * forcing a sync submission from here, since we can't
6014 * wait for request slots on the block side.
6015 */
6016 if (ret != -EAGAIN)
6017 break;
6018 cond_resched();
6019 } while (1);
6020 }
Jens Axboe31b51512019-01-18 22:56:34 -07006021
Jens Axboe561fb042019-10-24 07:25:42 -06006022 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006023 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006024 io_req_complete(req, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006025 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006026
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006027 return io_steal_work(req);
Jens Axboe31b51512019-01-18 22:56:34 -07006028}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006029
Jens Axboe65e19f52019-10-26 07:20:21 -06006030static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6031 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06006032{
Jens Axboe65e19f52019-10-26 07:20:21 -06006033 struct fixed_file_table *table;
6034
Jens Axboe05f3fb32019-12-09 11:22:50 -07006035 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08006036 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06006037}
6038
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006039static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
6040 int fd, struct file **out_file, bool fixed)
6041{
6042 struct io_ring_ctx *ctx = req->ctx;
6043 struct file *file;
6044
6045 if (fixed) {
6046 if (unlikely(!ctx->file_data ||
6047 (unsigned) fd >= ctx->nr_user_files))
6048 return -EBADF;
6049 fd = array_index_nospec(fd, ctx->nr_user_files);
6050 file = io_file_from_index(ctx, fd);
Jens Axboefd2206e2020-06-02 16:40:47 -06006051 if (file) {
6052 req->fixed_file_refs = ctx->file_data->cur_refs;
6053 percpu_ref_get(req->fixed_file_refs);
6054 }
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006055 } else {
6056 trace_io_uring_file_get(ctx, fd);
6057 file = __io_file_get(state, fd);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006058 }
6059
Jens Axboefd2206e2020-06-02 16:40:47 -06006060 if (file || io_op_defs[req->opcode].needs_file_no_error) {
6061 *out_file = file;
6062 return 0;
6063 }
6064 return -EBADF;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006065}
6066
Jens Axboe3529d8c2019-12-19 18:24:38 -07006067static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06006068 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06006069{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006070 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06006071
Jens Axboe63ff8222020-05-07 14:56:15 -06006072 fixed = (req->flags & REQ_F_FIXED_FILE) != 0;
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006073 if (unlikely(!fixed && io_async_submit(req->ctx)))
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006074 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06006075
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006076 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06006077}
6078
Jackie Liua197f662019-11-08 08:09:12 -07006079static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006080{
Jackie Liua197f662019-11-08 08:09:12 -07006081 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06006082
Pavel Begunkovf56040b2020-07-23 20:25:21 +03006083 io_req_init_async(req);
6084
Jens Axboe5b0bbee2020-04-27 10:41:22 -06006085 if (req->work.files || (req->flags & REQ_F_NO_FILE_TABLE))
Jens Axboef86cd202020-01-29 13:46:44 -07006086 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07006087
Jens Axboe0f212202020-09-13 13:09:39 -06006088 req->work.files = get_files_struct(current);
6089 req->flags |= REQ_F_INFLIGHT;
6090
Jens Axboefcb323c2019-10-24 12:39:47 -06006091 spin_lock_irq(&ctx->inflight_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06006092 list_add(&req->inflight_entry, &ctx->inflight_list);
Jens Axboefcb323c2019-10-24 12:39:47 -06006093 spin_unlock_irq(&ctx->inflight_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06006094 return 0;
Jens Axboefcb323c2019-10-24 12:39:47 -06006095}
6096
Pavel Begunkovf56040b2020-07-23 20:25:21 +03006097static inline int io_prep_work_files(struct io_kiocb *req)
6098{
6099 if (!io_op_defs[req->opcode].file_table)
6100 return 0;
6101 return io_grab_files(req);
6102}
6103
Jens Axboe2665abf2019-11-05 12:40:47 -07006104static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6105{
Jens Axboead8a48a2019-11-15 08:49:11 -07006106 struct io_timeout_data *data = container_of(timer,
6107 struct io_timeout_data, timer);
6108 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006109 struct io_ring_ctx *ctx = req->ctx;
6110 struct io_kiocb *prev = NULL;
6111 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006112
6113 spin_lock_irqsave(&ctx->completion_lock, flags);
6114
6115 /*
6116 * We don't expect the list to be empty, that will only happen if we
6117 * race with the completion of the linked work.
6118 */
Pavel Begunkov44932332019-12-05 16:16:35 +03006119 if (!list_empty(&req->link_list)) {
6120 prev = list_entry(req->link_list.prev, struct io_kiocb,
6121 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07006122 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03006123 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07006124 prev->flags &= ~REQ_F_LINK_TIMEOUT;
6125 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07006126 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006127 }
6128
6129 spin_unlock_irqrestore(&ctx->completion_lock, flags);
6130
6131 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006132 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03006133 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07006134 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07006135 } else {
Jens Axboee1e16092020-06-22 09:17:17 -06006136 io_req_complete(req, -ETIME);
Jens Axboe2665abf2019-11-05 12:40:47 -07006137 }
Jens Axboe2665abf2019-11-05 12:40:47 -07006138 return HRTIMER_NORESTART;
6139}
6140
Jens Axboe7271ef32020-08-10 09:55:22 -06006141static void __io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006142{
Jens Axboe76a46e02019-11-10 23:34:16 -07006143 /*
6144 * If the list is now empty, then our linked request finished before
6145 * we got a chance to setup the timer
6146 */
Pavel Begunkov44932332019-12-05 16:16:35 +03006147 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07006148 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006149
Jens Axboead8a48a2019-11-15 08:49:11 -07006150 data->timer.function = io_link_timeout_fn;
6151 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6152 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07006153 }
Jens Axboe7271ef32020-08-10 09:55:22 -06006154}
6155
6156static void io_queue_linked_timeout(struct io_kiocb *req)
6157{
6158 struct io_ring_ctx *ctx = req->ctx;
6159
6160 spin_lock_irq(&ctx->completion_lock);
6161 __io_queue_linked_timeout(req);
Jens Axboe76a46e02019-11-10 23:34:16 -07006162 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006163
Jens Axboe2665abf2019-11-05 12:40:47 -07006164 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006165 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006166}
6167
Jens Axboead8a48a2019-11-15 08:49:11 -07006168static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006169{
6170 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006171
Pavel Begunkovdea3b492020-04-12 02:05:04 +03006172 if (!(req->flags & REQ_F_LINK_HEAD))
Jens Axboe2665abf2019-11-05 12:40:47 -07006173 return NULL;
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006174 if (req->flags & REQ_F_LINK_TIMEOUT)
Jens Axboed7718a92020-02-14 22:23:12 -07006175 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006176
Pavel Begunkov44932332019-12-05 16:16:35 +03006177 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
6178 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07006179 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07006180 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006181
Jens Axboe76a46e02019-11-10 23:34:16 -07006182 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07006183 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07006184}
6185
Jens Axboef13fad72020-06-22 09:34:30 -06006186static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6187 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006188{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006189 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03006190 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07006191 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006192 int ret;
6193
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006194again:
6195 linked_timeout = io_prep_linked_timeout(req);
6196
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08006197 if ((req->flags & REQ_F_WORK_INITIALIZED) && req->work.creds &&
6198 req->work.creds != current_cred()) {
Jens Axboe193155c2020-02-22 23:22:19 -07006199 if (old_creds)
6200 revert_creds(old_creds);
6201 if (old_creds == req->work.creds)
6202 old_creds = NULL; /* restored original creds */
6203 else
6204 old_creds = override_creds(req->work.creds);
6205 }
6206
Jens Axboef13fad72020-06-22 09:34:30 -06006207 ret = io_issue_sqe(req, sqe, true, cs);
Jens Axboe491381ce2019-10-17 09:20:46 -06006208
6209 /*
6210 * We async punt it if the file wasn't marked NOWAIT, or if the file
6211 * doesn't support non-blocking read/write attempts
6212 */
Pavel Begunkov24c74672020-06-21 13:09:51 +03006213 if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006214 if (!io_arm_poll_handler(req)) {
Pavel Begunkov86a761f2020-01-22 23:09:36 +03006215punt:
Pavel Begunkovf063c542020-07-25 14:41:59 +03006216 ret = io_prep_work_files(req);
6217 if (unlikely(ret))
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03006218 goto err;
Pavel Begunkovf063c542020-07-25 14:41:59 +03006219 /*
6220 * Queued up for async execution, worker will release
6221 * submit reference when the iocb is actually submitted.
6222 */
6223 io_queue_async_work(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006224 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03006225
Pavel Begunkovf063c542020-07-25 14:41:59 +03006226 if (linked_timeout)
6227 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03006228 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006229 }
Jens Axboee65ef562019-03-12 10:16:44 -06006230
Pavel Begunkov652532a2020-07-03 22:15:07 +03006231 if (unlikely(ret)) {
Jens Axboefcb323c2019-10-24 12:39:47 -06006232err:
Pavel Begunkov652532a2020-07-03 22:15:07 +03006233 /* un-prep timeout, so it'll be killed as any other linked */
6234 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006235 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06006236 io_put_req(req);
Pavel Begunkov652532a2020-07-03 22:15:07 +03006237 io_req_complete(req, ret);
6238 goto exit;
Jens Axboe9e645e112019-05-10 16:07:28 -06006239 }
Pavel Begunkov652532a2020-07-03 22:15:07 +03006240
Jens Axboe6c271ce2019-01-10 11:22:30 -07006241 /* drop submission reference */
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03006242 nxt = io_put_req_find_next(req);
Pavel Begunkov652532a2020-07-03 22:15:07 +03006243 if (linked_timeout)
6244 io_queue_linked_timeout(linked_timeout);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006245
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006246 if (nxt) {
6247 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03006248
6249 if (req->flags & REQ_F_FORCE_ASYNC)
6250 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006251 goto again;
6252 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03006253exit:
Jens Axboe193155c2020-02-22 23:22:19 -07006254 if (old_creds)
6255 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006256}
6257
Jens Axboef13fad72020-06-22 09:34:30 -06006258static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6259 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006260{
6261 int ret;
6262
Jens Axboe3529d8c2019-12-19 18:24:38 -07006263 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006264 if (ret) {
6265 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03006266fail_req:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006267 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006268 io_put_req(req);
6269 io_req_complete(req, ret);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006270 }
Pavel Begunkov25508782019-12-30 21:24:47 +03006271 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006272 if (!req->io) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006273 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006274 if (unlikely(ret))
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006275 goto fail_req;
6276 }
6277
Jens Axboece35a472019-12-17 08:04:44 -07006278 /*
6279 * Never try inline submit of IOSQE_ASYNC is set, go straight
6280 * to async execution.
6281 */
Pavel Begunkov3e863ea2020-07-23 20:17:20 +03006282 io_req_init_async(req);
Jens Axboece35a472019-12-17 08:04:44 -07006283 req->work.flags |= IO_WQ_WORK_CONCURRENT;
6284 io_queue_async_work(req);
6285 } else {
Jens Axboef13fad72020-06-22 09:34:30 -06006286 __io_queue_sqe(req, sqe, cs);
Jens Axboece35a472019-12-17 08:04:44 -07006287 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006288}
6289
Jens Axboef13fad72020-06-22 09:34:30 -06006290static inline void io_queue_link_head(struct io_kiocb *req,
6291 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006292{
Jens Axboe94ae5e72019-11-14 19:39:52 -07006293 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Jens Axboee1e16092020-06-22 09:17:17 -06006294 io_put_req(req);
6295 io_req_complete(req, -ECANCELED);
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03006296 } else
Jens Axboef13fad72020-06-22 09:34:30 -06006297 io_queue_sqe(req, NULL, cs);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006298}
6299
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006300static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboef13fad72020-06-22 09:34:30 -06006301 struct io_kiocb **link, struct io_comp_state *cs)
Jens Axboe9e645e112019-05-10 16:07:28 -06006302{
Jackie Liua197f662019-11-08 08:09:12 -07006303 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006304 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06006305
Jens Axboe9e645e112019-05-10 16:07:28 -06006306 /*
6307 * If we already have a head request, queue this one for async
6308 * submittal once the head completes. If we don't have a head but
6309 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
6310 * submitted sync once the chain is complete. If none of those
6311 * conditions are true (normal request), then just queue it.
6312 */
6313 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03006314 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06006315
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03006316 /*
6317 * Taking sequential execution of a link, draining both sides
6318 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
6319 * requests in the link. So, it drains the head and the
6320 * next after the link request. The last one is done via
6321 * drain_next flag to persist the effect across calls.
6322 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006323 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006324 head->flags |= REQ_F_IO_DRAIN;
6325 ctx->drain_next = 1;
6326 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07006327 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006328 if (unlikely(ret)) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006329 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03006330 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006331 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07006332 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03006333 trace_io_uring_link(ctx, req, head);
6334 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06006335
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006336 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006337 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Jens Axboef13fad72020-06-22 09:34:30 -06006338 io_queue_link_head(head, cs);
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006339 *link = NULL;
6340 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006341 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03006342 if (unlikely(ctx->drain_next)) {
6343 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006344 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03006345 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006346 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkovdea3b492020-04-12 02:05:04 +03006347 req->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov711be032020-01-17 03:57:59 +03006348 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03006349
Pavel Begunkov711be032020-01-17 03:57:59 +03006350 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006351 if (unlikely(ret))
Pavel Begunkov711be032020-01-17 03:57:59 +03006352 req->flags |= REQ_F_FAIL_LINK;
6353 *link = req;
6354 } else {
Jens Axboef13fad72020-06-22 09:34:30 -06006355 io_queue_sqe(req, sqe, cs);
Pavel Begunkov711be032020-01-17 03:57:59 +03006356 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006357 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03006358
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006359 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06006360}
6361
Jens Axboe9a56a232019-01-09 09:06:50 -07006362/*
6363 * Batched submission is done, ensure local IO is flushed out.
6364 */
6365static void io_submit_state_end(struct io_submit_state *state)
6366{
Jens Axboef13fad72020-06-22 09:34:30 -06006367 if (!list_empty(&state->comp.list))
6368 io_submit_flush_completions(&state->comp);
Jens Axboe9a56a232019-01-09 09:06:50 -07006369 blk_finish_plug(&state->plug);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03006370 io_state_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07006371 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03006372 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07006373}
6374
6375/*
6376 * Start submission side cache.
6377 */
6378static void io_submit_state_start(struct io_submit_state *state,
Jens Axboe013538b2020-06-22 09:29:15 -06006379 struct io_ring_ctx *ctx, unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07006380{
6381 blk_start_plug(&state->plug);
Jens Axboe013538b2020-06-22 09:29:15 -06006382 state->comp.nr = 0;
6383 INIT_LIST_HEAD(&state->comp.list);
6384 state->comp.ctx = ctx;
Jens Axboe2579f912019-01-09 09:10:43 -07006385 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07006386 state->file = NULL;
6387 state->ios_left = max_ios;
6388}
6389
Jens Axboe2b188cc2019-01-07 10:46:33 -07006390static void io_commit_sqring(struct io_ring_ctx *ctx)
6391{
Hristo Venev75b28af2019-08-26 17:23:46 +00006392 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006393
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03006394 /*
6395 * Ensure any loads from the SQEs are done at this point,
6396 * since once we write the new head, the application could
6397 * write new data to them.
6398 */
6399 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006400}
6401
6402/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07006403 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07006404 * that is mapped by userspace. This means that care needs to be taken to
6405 * ensure that reads are stable, as we cannot rely on userspace always
6406 * being a good citizen. If members of the sqe are validated and then later
6407 * used, it's important that those reads are done through READ_ONCE() to
6408 * prevent a re-load down the line.
6409 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03006410static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006411{
Hristo Venev75b28af2019-08-26 17:23:46 +00006412 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006413 unsigned head;
6414
6415 /*
6416 * The cached sq head (or cq tail) serves two purposes:
6417 *
6418 * 1) allows us to batch the cost of updating the user visible
6419 * head updates.
6420 * 2) allows the kernel side to track the head on its own, even
6421 * though the application is the one updating it.
6422 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006423 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006424 if (likely(head < ctx->sq_entries))
6425 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07006426
6427 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06006428 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006429 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006430 return NULL;
6431}
6432
6433static inline void io_consume_sqe(struct io_ring_ctx *ctx)
6434{
6435 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006436}
6437
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006438#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
6439 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
6440 IOSQE_BUFFER_SELECT)
6441
6442static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
6443 const struct io_uring_sqe *sqe,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006444 struct io_submit_state *state)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006445{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006446 unsigned int sqe_flags;
Jens Axboe63ff8222020-05-07 14:56:15 -06006447 int id;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006448
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006449 req->opcode = READ_ONCE(sqe->opcode);
6450 req->user_data = READ_ONCE(sqe->user_data);
6451 req->io = NULL;
6452 req->file = NULL;
6453 req->ctx = ctx;
6454 req->flags = 0;
6455 /* one is dropped after submission, the other at completion */
6456 refcount_set(&req->refs, 2);
Pavel Begunkov4dd28242020-06-15 10:33:13 +03006457 req->task = current;
Jens Axboee3bc8e92020-09-24 08:45:57 -06006458 get_task_struct(req->task);
Jens Axboe0f212202020-09-13 13:09:39 -06006459 atomic_long_inc(&req->task->io_uring->req_issue);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006460 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006461
6462 if (unlikely(req->opcode >= IORING_OP_LAST))
6463 return -EINVAL;
6464
Jens Axboe9d8426a2020-06-16 18:42:49 -06006465 if (unlikely(io_sq_thread_acquire_mm(ctx, req)))
6466 return -EFAULT;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006467
6468 sqe_flags = READ_ONCE(sqe->flags);
6469 /* enforce forwards compatibility on users */
6470 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
6471 return -EINVAL;
6472
6473 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
6474 !io_op_defs[req->opcode].buffer_select)
6475 return -EOPNOTSUPP;
6476
6477 id = READ_ONCE(sqe->personality);
6478 if (id) {
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08006479 io_req_init_async(req);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006480 req->work.creds = idr_find(&ctx->personality_idr, id);
6481 if (unlikely(!req->work.creds))
6482 return -EINVAL;
6483 get_cred(req->work.creds);
6484 }
6485
6486 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkovc11368a52020-05-17 14:13:42 +03006487 req->flags |= sqe_flags;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006488
Jens Axboe63ff8222020-05-07 14:56:15 -06006489 if (!io_op_defs[req->opcode].needs_file)
6490 return 0;
6491
6492 return io_req_set_file(state, req, READ_ONCE(sqe->fd));
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006493}
6494
Jens Axboe0f212202020-09-13 13:09:39 -06006495static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006496{
Jens Axboeac8691c2020-06-01 08:30:41 -06006497 struct io_submit_state state;
Jens Axboe9e645e112019-05-10 16:07:28 -06006498 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06006499 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006500
Jens Axboec4a2ed72019-11-21 21:01:26 -07006501 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07006502 if (test_bit(0, &ctx->sq_check_overflow)) {
6503 if (!list_empty(&ctx->cq_overflow_list) &&
Jens Axboee6c8aa92020-09-28 13:10:13 -06006504 !io_cqring_overflow_flush(ctx, false, NULL, NULL))
Jens Axboead3eb2c2019-12-18 17:12:20 -07006505 return -EBUSY;
6506 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006507
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006508 /* make sure SQ entry isn't read before tail */
6509 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03006510
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03006511 if (!percpu_ref_tryget_many(&ctx->refs, nr))
6512 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006513
Jens Axboe013538b2020-06-22 09:29:15 -06006514 io_submit_state_start(&state, ctx, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006515
6516 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07006517 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03006518 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006519 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006520
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03006521 sqe = io_get_sqe(ctx);
6522 if (unlikely(!sqe)) {
6523 io_consume_sqe(ctx);
6524 break;
6525 }
Jens Axboeac8691c2020-06-01 08:30:41 -06006526 req = io_alloc_req(ctx, &state);
Pavel Begunkov196be952019-11-07 01:41:06 +03006527 if (unlikely(!req)) {
6528 if (!submitted)
6529 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006530 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06006531 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006532
Jens Axboeac8691c2020-06-01 08:30:41 -06006533 err = io_init_req(ctx, req, sqe, &state);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006534 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07006535 /* will complete beyond this point, count as submitted */
6536 submitted++;
6537
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006538 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006539fail_req:
Jens Axboee1e16092020-06-22 09:17:17 -06006540 io_put_req(req);
6541 io_req_complete(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07006542 break;
6543 }
6544
Jens Axboe354420f2020-01-08 18:55:15 -07006545 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006546 true, io_async_submit(ctx));
Jens Axboef13fad72020-06-22 09:34:30 -06006547 err = io_submit_sqe(req, sqe, &link, &state.comp);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006548 if (err)
6549 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006550 }
6551
Pavel Begunkov9466f432020-01-25 22:34:01 +03006552 if (unlikely(submitted != nr)) {
6553 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
6554
6555 percpu_ref_put_many(&ctx->refs, nr - ref_used);
6556 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006557 if (link)
Jens Axboef13fad72020-06-22 09:34:30 -06006558 io_queue_link_head(link, &state.comp);
Jens Axboeac8691c2020-06-01 08:30:41 -06006559 io_submit_state_end(&state);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006560
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006561 /* Commit SQ ring head once we've consumed and submitted all SQEs */
6562 io_commit_sqring(ctx);
6563
Jens Axboe6c271ce2019-01-10 11:22:30 -07006564 return submitted;
6565}
6566
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006567static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
6568{
6569 /* Tell userspace we may need a wakeup call */
6570 spin_lock_irq(&ctx->completion_lock);
6571 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
6572 spin_unlock_irq(&ctx->completion_lock);
6573}
6574
6575static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
6576{
6577 spin_lock_irq(&ctx->completion_lock);
6578 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6579 spin_unlock_irq(&ctx->completion_lock);
6580}
6581
Jens Axboe6c271ce2019-01-10 11:22:30 -07006582static int io_sq_thread(void *data)
6583{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006584 struct io_ring_ctx *ctx = data;
Jens Axboe181e4482019-11-25 08:52:30 -07006585 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006586 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006587 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006588 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006589
Jens Axboe0f158b42020-05-14 17:18:39 -06006590 complete(&ctx->sq_thread_comp);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08006591
Jens Axboe181e4482019-11-25 08:52:30 -07006592 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006593
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006594 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006595 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006596 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006597
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006598 if (!list_empty(&ctx->iopoll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006599 unsigned nr_events = 0;
6600
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006601 mutex_lock(&ctx->uring_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006602 if (!list_empty(&ctx->iopoll_list) && !need_resched())
Pavel Begunkov9dedd562020-07-07 16:36:20 +03006603 io_do_iopoll(ctx, &nr_events, 0);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006604 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07006605 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006606 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006607 }
6608
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006609 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006610
6611 /*
6612 * If submit got -EBUSY, flag us as needing the application
6613 * to enter the kernel to reap and flush events.
6614 */
Xuan Zhuob772f072020-06-23 19:34:06 +08006615 if (!to_submit || ret == -EBUSY || need_resched()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006616 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006617 * Drop cur_mm before scheduling, we can't hold it for
6618 * long periods (or over schedule()). Do this before
6619 * adding ourselves to the waitqueue, as the unuse/drop
6620 * may sleep.
6621 */
Jens Axboe4349f302020-07-09 15:07:01 -06006622 io_sq_thread_drop_mm();
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006623
6624 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07006625 * We're polling. If we're within the defined idle
6626 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07006627 * to sleep. The exception is if we got EBUSY doing
6628 * more IO, we should wait for the application to
6629 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07006630 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006631 if (!list_empty(&ctx->iopoll_list) || need_resched() ||
Jens Axboedf069d82020-02-04 16:48:34 -07006632 (!time_after(jiffies, timeout) && ret != -EBUSY &&
6633 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboe4c6e2772020-07-01 11:29:10 -06006634 io_run_task_work();
Jens Axboe9831a902019-09-19 09:48:55 -06006635 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006636 continue;
6637 }
6638
Jens Axboe6c271ce2019-01-10 11:22:30 -07006639 prepare_to_wait(&ctx->sqo_wait, &wait,
6640 TASK_INTERRUPTIBLE);
6641
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006642 /*
6643 * While doing polled IO, before going to sleep, we need
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006644 * to check if there are new reqs added to iopoll_list,
6645 * it is because reqs may have been punted to io worker
6646 * and will be added to iopoll_list later, hence check
6647 * the iopoll_list again.
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006648 */
6649 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006650 !list_empty_careful(&ctx->iopoll_list)) {
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006651 finish_wait(&ctx->sqo_wait, &wait);
6652 continue;
6653 }
6654
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006655 io_ring_set_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006656
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006657 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006658 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006659 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006660 finish_wait(&ctx->sqo_wait, &wait);
6661 break;
6662 }
Jens Axboe4c6e2772020-07-01 11:29:10 -06006663 if (io_run_task_work()) {
Hillf Danton10bea962020-04-01 17:19:33 +08006664 finish_wait(&ctx->sqo_wait, &wait);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006665 io_ring_clear_wakeup_flag(ctx);
Jens Axboeb41e9852020-02-17 09:52:41 -07006666 continue;
6667 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006668 if (signal_pending(current))
6669 flush_signals(current);
6670 schedule();
6671 finish_wait(&ctx->sqo_wait, &wait);
6672
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006673 io_ring_clear_wakeup_flag(ctx);
Xiaoguang Wangd4ae2712020-05-20 21:24:35 +08006674 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006675 continue;
6676 }
6677 finish_wait(&ctx->sqo_wait, &wait);
6678
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006679 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006680 }
6681
Jens Axboe8a4955f2019-12-09 14:52:35 -07006682 mutex_lock(&ctx->uring_lock);
Xiaoguang Wang6b668c92020-05-20 15:35:03 +08006683 if (likely(!percpu_ref_is_dying(&ctx->refs)))
Jens Axboe0f212202020-09-13 13:09:39 -06006684 ret = io_submit_sqes(ctx, to_submit);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006685 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006686 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006687 }
6688
Jens Axboe4c6e2772020-07-01 11:29:10 -06006689 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07006690
Jens Axboe4349f302020-07-09 15:07:01 -06006691 io_sq_thread_drop_mm();
Jens Axboe181e4482019-11-25 08:52:30 -07006692 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006693
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006694 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006695
Jens Axboe6c271ce2019-01-10 11:22:30 -07006696 return 0;
6697}
6698
Jens Axboebda52162019-09-24 13:47:15 -06006699struct io_wait_queue {
6700 struct wait_queue_entry wq;
6701 struct io_ring_ctx *ctx;
6702 unsigned to_wait;
6703 unsigned nr_timeouts;
6704};
6705
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006706static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006707{
6708 struct io_ring_ctx *ctx = iowq->ctx;
6709
6710 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006711 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006712 * started waiting. For timeouts, we always want to return to userspace,
6713 * regardless of event count.
6714 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006715 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006716 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6717}
6718
6719static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6720 int wake_flags, void *key)
6721{
6722 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6723 wq);
6724
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006725 /* use noflush == true, as we can't safely rely on locking context */
6726 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006727 return -1;
6728
6729 return autoremove_wake_function(curr, mode, wake_flags, key);
6730}
6731
Jens Axboe2b188cc2019-01-07 10:46:33 -07006732/*
6733 * Wait until events become available, if we don't already have some. The
6734 * application must reap them itself, as they reside on the shared cq ring.
6735 */
6736static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6737 const sigset_t __user *sig, size_t sigsz)
6738{
Jens Axboebda52162019-09-24 13:47:15 -06006739 struct io_wait_queue iowq = {
6740 .wq = {
6741 .private = current,
6742 .func = io_wake_function,
6743 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6744 },
6745 .ctx = ctx,
6746 .to_wait = min_events,
6747 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006748 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006749 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006750
Jens Axboeb41e9852020-02-17 09:52:41 -07006751 do {
6752 if (io_cqring_events(ctx, false) >= min_events)
6753 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06006754 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07006755 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07006756 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006757
6758 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006759#ifdef CONFIG_COMPAT
6760 if (in_compat_syscall())
6761 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006762 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006763 else
6764#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006765 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006766
Jens Axboe2b188cc2019-01-07 10:46:33 -07006767 if (ret)
6768 return ret;
6769 }
6770
Jens Axboebda52162019-09-24 13:47:15 -06006771 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006772 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006773 do {
6774 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6775 TASK_INTERRUPTIBLE);
Jens Axboece593a62020-06-30 12:39:05 -06006776 /* make sure we run task_work before checking for signals */
Jens Axboe4c6e2772020-07-01 11:29:10 -06006777 if (io_run_task_work())
6778 continue;
Jens Axboece593a62020-06-30 12:39:05 -06006779 if (signal_pending(current)) {
Jens Axboeb7db41c2020-07-04 08:55:50 -06006780 if (current->jobctl & JOBCTL_TASK_WORK) {
6781 spin_lock_irq(&current->sighand->siglock);
6782 current->jobctl &= ~JOBCTL_TASK_WORK;
6783 recalc_sigpending();
6784 spin_unlock_irq(&current->sighand->siglock);
6785 continue;
6786 }
6787 ret = -EINTR;
Jens Axboece593a62020-06-30 12:39:05 -06006788 break;
6789 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006790 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006791 break;
6792 schedule();
Jens Axboebda52162019-09-24 13:47:15 -06006793 } while (1);
6794 finish_wait(&ctx->wait, &iowq.wq);
6795
Jens Axboeb7db41c2020-07-04 08:55:50 -06006796 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006797
Hristo Venev75b28af2019-08-26 17:23:46 +00006798 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006799}
6800
Jens Axboe6b063142019-01-10 22:13:58 -07006801static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6802{
6803#if defined(CONFIG_UNIX)
6804 if (ctx->ring_sock) {
6805 struct sock *sock = ctx->ring_sock->sk;
6806 struct sk_buff *skb;
6807
6808 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6809 kfree_skb(skb);
6810 }
6811#else
6812 int i;
6813
Jens Axboe65e19f52019-10-26 07:20:21 -06006814 for (i = 0; i < ctx->nr_user_files; i++) {
6815 struct file *file;
6816
6817 file = io_file_from_index(ctx, i);
6818 if (file)
6819 fput(file);
6820 }
Jens Axboe6b063142019-01-10 22:13:58 -07006821#endif
6822}
6823
Jens Axboe05f3fb32019-12-09 11:22:50 -07006824static void io_file_ref_kill(struct percpu_ref *ref)
6825{
6826 struct fixed_file_data *data;
6827
6828 data = container_of(ref, struct fixed_file_data, refs);
6829 complete(&data->done);
6830}
6831
Jens Axboe6b063142019-01-10 22:13:58 -07006832static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6833{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006834 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006835 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006836 unsigned nr_tables, i;
6837
Jens Axboe05f3fb32019-12-09 11:22:50 -07006838 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006839 return -ENXIO;
6840
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006841 spin_lock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006842 if (!list_empty(&data->ref_list))
6843 ref_node = list_first_entry(&data->ref_list,
6844 struct fixed_file_ref_node, node);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006845 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006846 if (ref_node)
6847 percpu_ref_kill(&ref_node->refs);
6848
6849 percpu_ref_kill(&data->refs);
6850
6851 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06006852 flush_delayed_work(&ctx->file_put_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07006853 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006854
Jens Axboe6b063142019-01-10 22:13:58 -07006855 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006856 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6857 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006858 kfree(data->table[i].files);
6859 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006860 percpu_ref_exit(&data->refs);
6861 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006862 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006863 ctx->nr_user_files = 0;
6864 return 0;
6865}
6866
Jens Axboe6c271ce2019-01-10 11:22:30 -07006867static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6868{
6869 if (ctx->sqo_thread) {
Jens Axboe0f158b42020-05-14 17:18:39 -06006870 wait_for_completion(&ctx->sq_thread_comp);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006871 /*
6872 * The park is a bit of a work-around, without it we get
6873 * warning spews on shutdown with SQPOLL set and affinity
6874 * set to a single CPU.
6875 */
Jens Axboe06058632019-04-13 09:26:03 -06006876 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006877 kthread_stop(ctx->sqo_thread);
6878 ctx->sqo_thread = NULL;
6879 }
6880}
6881
Jens Axboe6b063142019-01-10 22:13:58 -07006882static void io_finish_async(struct io_ring_ctx *ctx)
6883{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006884 io_sq_thread_stop(ctx);
6885
Jens Axboe561fb042019-10-24 07:25:42 -06006886 if (ctx->io_wq) {
6887 io_wq_destroy(ctx->io_wq);
6888 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006889 }
6890}
6891
6892#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006893/*
6894 * Ensure the UNIX gc is aware of our file set, so we are certain that
6895 * the io_uring can be safely unregistered on process exit, even if we have
6896 * loops in the file referencing.
6897 */
6898static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6899{
6900 struct sock *sk = ctx->ring_sock->sk;
6901 struct scm_fp_list *fpl;
6902 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006903 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006904
Jens Axboe6b063142019-01-10 22:13:58 -07006905 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6906 if (!fpl)
6907 return -ENOMEM;
6908
6909 skb = alloc_skb(0, GFP_KERNEL);
6910 if (!skb) {
6911 kfree(fpl);
6912 return -ENOMEM;
6913 }
6914
6915 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006916
Jens Axboe08a45172019-10-03 08:11:03 -06006917 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006918 fpl->user = get_uid(ctx->user);
6919 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006920 struct file *file = io_file_from_index(ctx, i + offset);
6921
6922 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006923 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006924 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006925 unix_inflight(fpl->user, fpl->fp[nr_files]);
6926 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006927 }
6928
Jens Axboe08a45172019-10-03 08:11:03 -06006929 if (nr_files) {
6930 fpl->max = SCM_MAX_FD;
6931 fpl->count = nr_files;
6932 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006933 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006934 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6935 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006936
Jens Axboe08a45172019-10-03 08:11:03 -06006937 for (i = 0; i < nr_files; i++)
6938 fput(fpl->fp[i]);
6939 } else {
6940 kfree_skb(skb);
6941 kfree(fpl);
6942 }
Jens Axboe6b063142019-01-10 22:13:58 -07006943
6944 return 0;
6945}
6946
6947/*
6948 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6949 * causes regular reference counting to break down. We rely on the UNIX
6950 * garbage collection to take care of this problem for us.
6951 */
6952static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6953{
6954 unsigned left, total;
6955 int ret = 0;
6956
6957 total = 0;
6958 left = ctx->nr_user_files;
6959 while (left) {
6960 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006961
6962 ret = __io_sqe_files_scm(ctx, this_files, total);
6963 if (ret)
6964 break;
6965 left -= this_files;
6966 total += this_files;
6967 }
6968
6969 if (!ret)
6970 return 0;
6971
6972 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006973 struct file *file = io_file_from_index(ctx, total);
6974
6975 if (file)
6976 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006977 total++;
6978 }
6979
6980 return ret;
6981}
6982#else
6983static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6984{
6985 return 0;
6986}
6987#endif
6988
Jens Axboe65e19f52019-10-26 07:20:21 -06006989static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6990 unsigned nr_files)
6991{
6992 int i;
6993
6994 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006995 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006996 unsigned this_files;
6997
6998 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6999 table->files = kcalloc(this_files, sizeof(struct file *),
7000 GFP_KERNEL);
7001 if (!table->files)
7002 break;
7003 nr_files -= this_files;
7004 }
7005
7006 if (i == nr_tables)
7007 return 0;
7008
7009 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007010 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007011 kfree(table->files);
7012 }
7013 return 1;
7014}
7015
Jens Axboe05f3fb32019-12-09 11:22:50 -07007016static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06007017{
7018#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06007019 struct sock *sock = ctx->ring_sock->sk;
7020 struct sk_buff_head list, *head = &sock->sk_receive_queue;
7021 struct sk_buff *skb;
7022 int i;
7023
7024 __skb_queue_head_init(&list);
7025
7026 /*
7027 * Find the skb that holds this file in its SCM_RIGHTS. When found,
7028 * remove this entry and rearrange the file array.
7029 */
7030 skb = skb_dequeue(head);
7031 while (skb) {
7032 struct scm_fp_list *fp;
7033
7034 fp = UNIXCB(skb).fp;
7035 for (i = 0; i < fp->count; i++) {
7036 int left;
7037
7038 if (fp->fp[i] != file)
7039 continue;
7040
7041 unix_notinflight(fp->user, fp->fp[i]);
7042 left = fp->count - 1 - i;
7043 if (left) {
7044 memmove(&fp->fp[i], &fp->fp[i + 1],
7045 left * sizeof(struct file *));
7046 }
7047 fp->count--;
7048 if (!fp->count) {
7049 kfree_skb(skb);
7050 skb = NULL;
7051 } else {
7052 __skb_queue_tail(&list, skb);
7053 }
7054 fput(file);
7055 file = NULL;
7056 break;
7057 }
7058
7059 if (!file)
7060 break;
7061
7062 __skb_queue_tail(&list, skb);
7063
7064 skb = skb_dequeue(head);
7065 }
7066
7067 if (skb_peek(&list)) {
7068 spin_lock_irq(&head->lock);
7069 while ((skb = __skb_dequeue(&list)) != NULL)
7070 __skb_queue_tail(head, skb);
7071 spin_unlock_irq(&head->lock);
7072 }
7073#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07007074 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007075#endif
7076}
7077
Jens Axboe05f3fb32019-12-09 11:22:50 -07007078struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08007079 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007080 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007081};
7082
Jens Axboe4a38aed22020-05-14 17:21:15 -06007083static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007084{
Jens Axboe4a38aed22020-05-14 17:21:15 -06007085 struct fixed_file_data *file_data = ref_node->file_data;
7086 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007087 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007088
7089 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007090 list_del(&pfile->list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007091 io_ring_file_put(ctx, pfile->file);
7092 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007093 }
7094
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007095 spin_lock(&file_data->lock);
7096 list_del(&ref_node->node);
7097 spin_unlock(&file_data->lock);
Jens Axboe2faf8522020-02-04 19:54:55 -07007098
Xiaoguang Wang05589552020-03-31 14:05:18 +08007099 percpu_ref_exit(&ref_node->refs);
7100 kfree(ref_node);
7101 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007102}
7103
Jens Axboe4a38aed22020-05-14 17:21:15 -06007104static void io_file_put_work(struct work_struct *work)
7105{
7106 struct io_ring_ctx *ctx;
7107 struct llist_node *node;
7108
7109 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
7110 node = llist_del_all(&ctx->file_put_llist);
7111
7112 while (node) {
7113 struct fixed_file_ref_node *ref_node;
7114 struct llist_node *next = node->next;
7115
7116 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
7117 __io_file_put_work(ref_node);
7118 node = next;
7119 }
7120}
7121
Jens Axboe05f3fb32019-12-09 11:22:50 -07007122static void io_file_data_ref_zero(struct percpu_ref *ref)
7123{
Xiaoguang Wang05589552020-03-31 14:05:18 +08007124 struct fixed_file_ref_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007125 struct io_ring_ctx *ctx;
7126 bool first_add;
7127 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007128
Xiaoguang Wang05589552020-03-31 14:05:18 +08007129 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe4a38aed22020-05-14 17:21:15 -06007130 ctx = ref_node->file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007131
Jens Axboe4a38aed22020-05-14 17:21:15 -06007132 if (percpu_ref_is_dying(&ctx->file_data->refs))
7133 delay = 0;
7134
7135 first_add = llist_add(&ref_node->llist, &ctx->file_put_llist);
7136 if (!delay)
7137 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
7138 else if (first_add)
7139 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007140}
7141
7142static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
7143 struct io_ring_ctx *ctx)
7144{
7145 struct fixed_file_ref_node *ref_node;
7146
7147 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7148 if (!ref_node)
7149 return ERR_PTR(-ENOMEM);
7150
7151 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
7152 0, GFP_KERNEL)) {
7153 kfree(ref_node);
7154 return ERR_PTR(-ENOMEM);
7155 }
7156 INIT_LIST_HEAD(&ref_node->node);
7157 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007158 ref_node->file_data = ctx->file_data;
7159 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007160}
7161
7162static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
7163{
7164 percpu_ref_exit(&ref_node->refs);
7165 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007166}
7167
7168static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
7169 unsigned nr_args)
7170{
7171 __s32 __user *fds = (__s32 __user *) arg;
7172 unsigned nr_tables;
7173 struct file *file;
7174 int fd, ret = 0;
7175 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007176 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007177
7178 if (ctx->file_data)
7179 return -EBUSY;
7180 if (!nr_args)
7181 return -EINVAL;
7182 if (nr_args > IORING_MAX_FIXED_FILES)
7183 return -EMFILE;
7184
7185 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
7186 if (!ctx->file_data)
7187 return -ENOMEM;
7188 ctx->file_data->ctx = ctx;
7189 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007190 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08007191 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007192
7193 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
7194 ctx->file_data->table = kcalloc(nr_tables,
7195 sizeof(struct fixed_file_table),
7196 GFP_KERNEL);
7197 if (!ctx->file_data->table) {
7198 kfree(ctx->file_data);
7199 ctx->file_data = NULL;
7200 return -ENOMEM;
7201 }
7202
Xiaoguang Wang05589552020-03-31 14:05:18 +08007203 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07007204 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
7205 kfree(ctx->file_data->table);
7206 kfree(ctx->file_data);
7207 ctx->file_data = NULL;
7208 return -ENOMEM;
7209 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007210
7211 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
7212 percpu_ref_exit(&ctx->file_data->refs);
7213 kfree(ctx->file_data->table);
7214 kfree(ctx->file_data);
7215 ctx->file_data = NULL;
7216 return -ENOMEM;
7217 }
7218
7219 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
7220 struct fixed_file_table *table;
7221 unsigned index;
7222
7223 ret = -EFAULT;
7224 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
7225 break;
7226 /* allow sparse sets */
7227 if (fd == -1) {
7228 ret = 0;
7229 continue;
7230 }
7231
7232 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7233 index = i & IORING_FILE_TABLE_MASK;
7234 file = fget(fd);
7235
7236 ret = -EBADF;
7237 if (!file)
7238 break;
7239
7240 /*
7241 * Don't allow io_uring instances to be registered. If UNIX
7242 * isn't enabled, then this causes a reference cycle and this
7243 * instance can never get freed. If UNIX is enabled we'll
7244 * handle it just fine, but there's still no point in allowing
7245 * a ring fd as it doesn't support regular read/write anyway.
7246 */
7247 if (file->f_op == &io_uring_fops) {
7248 fput(file);
7249 break;
7250 }
7251 ret = 0;
7252 table->files[index] = file;
7253 }
7254
7255 if (ret) {
7256 for (i = 0; i < ctx->nr_user_files; i++) {
7257 file = io_file_from_index(ctx, i);
7258 if (file)
7259 fput(file);
7260 }
7261 for (i = 0; i < nr_tables; i++)
7262 kfree(ctx->file_data->table[i].files);
7263
Yang Yingliang667e57d2020-07-10 14:14:20 +00007264 percpu_ref_exit(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007265 kfree(ctx->file_data->table);
7266 kfree(ctx->file_data);
7267 ctx->file_data = NULL;
7268 ctx->nr_user_files = 0;
7269 return ret;
7270 }
7271
7272 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007273 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007274 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007275 return ret;
7276 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007277
Xiaoguang Wang05589552020-03-31 14:05:18 +08007278 ref_node = alloc_fixed_file_ref_node(ctx);
7279 if (IS_ERR(ref_node)) {
7280 io_sqe_files_unregister(ctx);
7281 return PTR_ERR(ref_node);
7282 }
7283
7284 ctx->file_data->cur_refs = &ref_node->refs;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007285 spin_lock(&ctx->file_data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007286 list_add(&ref_node->node, &ctx->file_data->ref_list);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007287 spin_unlock(&ctx->file_data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007288 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007289 return ret;
7290}
7291
Jens Axboec3a31e62019-10-03 13:59:56 -06007292static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
7293 int index)
7294{
7295#if defined(CONFIG_UNIX)
7296 struct sock *sock = ctx->ring_sock->sk;
7297 struct sk_buff_head *head = &sock->sk_receive_queue;
7298 struct sk_buff *skb;
7299
7300 /*
7301 * See if we can merge this file into an existing skb SCM_RIGHTS
7302 * file set. If there's no room, fall back to allocating a new skb
7303 * and filling it in.
7304 */
7305 spin_lock_irq(&head->lock);
7306 skb = skb_peek(head);
7307 if (skb) {
7308 struct scm_fp_list *fpl = UNIXCB(skb).fp;
7309
7310 if (fpl->count < SCM_MAX_FD) {
7311 __skb_unlink(skb, head);
7312 spin_unlock_irq(&head->lock);
7313 fpl->fp[fpl->count] = get_file(file);
7314 unix_inflight(fpl->user, fpl->fp[fpl->count]);
7315 fpl->count++;
7316 spin_lock_irq(&head->lock);
7317 __skb_queue_head(head, skb);
7318 } else {
7319 skb = NULL;
7320 }
7321 }
7322 spin_unlock_irq(&head->lock);
7323
7324 if (skb) {
7325 fput(file);
7326 return 0;
7327 }
7328
7329 return __io_sqe_files_scm(ctx, 1, index);
7330#else
7331 return 0;
7332#endif
7333}
7334
Hillf Dantona5318d32020-03-23 17:47:15 +08007335static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08007336 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007337{
Hillf Dantona5318d32020-03-23 17:47:15 +08007338 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007339 struct percpu_ref *refs = data->cur_refs;
7340 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007341
Jens Axboe05f3fb32019-12-09 11:22:50 -07007342 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08007343 if (!pfile)
7344 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007345
Xiaoguang Wang05589552020-03-31 14:05:18 +08007346 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007347 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007348 list_add(&pfile->list, &ref_node->file_list);
7349
Hillf Dantona5318d32020-03-23 17:47:15 +08007350 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007351}
7352
7353static int __io_sqe_files_update(struct io_ring_ctx *ctx,
7354 struct io_uring_files_update *up,
7355 unsigned nr_args)
7356{
7357 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007358 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007359 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007360 __s32 __user *fds;
7361 int fd, i, err;
7362 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007363 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06007364
Jens Axboe05f3fb32019-12-09 11:22:50 -07007365 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06007366 return -EOVERFLOW;
7367 if (done > ctx->nr_user_files)
7368 return -EINVAL;
7369
Xiaoguang Wang05589552020-03-31 14:05:18 +08007370 ref_node = alloc_fixed_file_ref_node(ctx);
7371 if (IS_ERR(ref_node))
7372 return PTR_ERR(ref_node);
7373
Jens Axboec3a31e62019-10-03 13:59:56 -06007374 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007375 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06007376 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007377 struct fixed_file_table *table;
7378 unsigned index;
7379
Jens Axboec3a31e62019-10-03 13:59:56 -06007380 err = 0;
7381 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
7382 err = -EFAULT;
7383 break;
7384 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007385 i = array_index_nospec(up->offset, ctx->nr_user_files);
7386 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06007387 index = i & IORING_FILE_TABLE_MASK;
7388 if (table->files[index]) {
Jiufei Xue98dfd502020-09-01 13:35:02 +08007389 file = table->files[index];
Hillf Dantona5318d32020-03-23 17:47:15 +08007390 err = io_queue_file_removal(data, file);
7391 if (err)
7392 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06007393 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007394 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06007395 }
7396 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06007397 file = fget(fd);
7398 if (!file) {
7399 err = -EBADF;
7400 break;
7401 }
7402 /*
7403 * Don't allow io_uring instances to be registered. If
7404 * UNIX isn't enabled, then this causes a reference
7405 * cycle and this instance can never get freed. If UNIX
7406 * is enabled we'll handle it just fine, but there's
7407 * still no point in allowing a ring fd as it doesn't
7408 * support regular read/write anyway.
7409 */
7410 if (file->f_op == &io_uring_fops) {
7411 fput(file);
7412 err = -EBADF;
7413 break;
7414 }
Jens Axboe65e19f52019-10-26 07:20:21 -06007415 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007416 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007417 if (err) {
Jiufei Xue95d1c8e2020-09-02 17:59:39 +08007418 table->files[index] = NULL;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007419 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007420 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007421 }
Jens Axboec3a31e62019-10-03 13:59:56 -06007422 }
7423 nr_args--;
7424 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007425 up->offset++;
7426 }
7427
Xiaoguang Wang05589552020-03-31 14:05:18 +08007428 if (needs_switch) {
7429 percpu_ref_kill(data->cur_refs);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007430 spin_lock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007431 list_add(&ref_node->node, &data->ref_list);
7432 data->cur_refs = &ref_node->refs;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007433 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007434 percpu_ref_get(&ctx->file_data->refs);
7435 } else
7436 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06007437
7438 return done ? done : err;
7439}
Xiaoguang Wang05589552020-03-31 14:05:18 +08007440
Jens Axboe05f3fb32019-12-09 11:22:50 -07007441static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
7442 unsigned nr_args)
7443{
7444 struct io_uring_files_update up;
7445
7446 if (!ctx->file_data)
7447 return -ENXIO;
7448 if (!nr_args)
7449 return -EINVAL;
7450 if (copy_from_user(&up, arg, sizeof(up)))
7451 return -EFAULT;
7452 if (up.resv)
7453 return -EINVAL;
7454
7455 return __io_sqe_files_update(ctx, &up, nr_args);
7456}
Jens Axboec3a31e62019-10-03 13:59:56 -06007457
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007458static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07007459{
7460 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
7461
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007462 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07007463 io_put_req(req);
7464}
7465
Pavel Begunkov24369c22020-01-28 03:15:48 +03007466static int io_init_wq_offload(struct io_ring_ctx *ctx,
7467 struct io_uring_params *p)
7468{
7469 struct io_wq_data data;
7470 struct fd f;
7471 struct io_ring_ctx *ctx_attach;
7472 unsigned int concurrency;
7473 int ret = 0;
7474
7475 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007476 data.free_work = io_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03007477 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03007478
7479 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
7480 /* Do QD, or 4 * CPUS, whatever is smallest */
7481 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
7482
7483 ctx->io_wq = io_wq_create(concurrency, &data);
7484 if (IS_ERR(ctx->io_wq)) {
7485 ret = PTR_ERR(ctx->io_wq);
7486 ctx->io_wq = NULL;
7487 }
7488 return ret;
7489 }
7490
7491 f = fdget(p->wq_fd);
7492 if (!f.file)
7493 return -EBADF;
7494
7495 if (f.file->f_op != &io_uring_fops) {
7496 ret = -EINVAL;
7497 goto out_fput;
7498 }
7499
7500 ctx_attach = f.file->private_data;
7501 /* @io_wq is protected by holding the fd */
7502 if (!io_wq_get(ctx_attach->io_wq, &data)) {
7503 ret = -EINVAL;
7504 goto out_fput;
7505 }
7506
7507 ctx->io_wq = ctx_attach->io_wq;
7508out_fput:
7509 fdput(f);
7510 return ret;
7511}
7512
Jens Axboe0f212202020-09-13 13:09:39 -06007513static int io_uring_alloc_task_context(struct task_struct *task)
7514{
7515 struct io_uring_task *tctx;
7516
7517 tctx = kmalloc(sizeof(*tctx), GFP_KERNEL);
7518 if (unlikely(!tctx))
7519 return -ENOMEM;
7520
7521 xa_init(&tctx->xa);
7522 init_waitqueue_head(&tctx->wait);
7523 tctx->last = NULL;
7524 tctx->in_idle = 0;
7525 atomic_long_set(&tctx->req_issue, 0);
7526 atomic_long_set(&tctx->req_complete, 0);
7527 task->io_uring = tctx;
7528 return 0;
7529}
7530
7531void __io_uring_free(struct task_struct *tsk)
7532{
7533 struct io_uring_task *tctx = tsk->io_uring;
7534
7535 WARN_ON_ONCE(!xa_empty(&tctx->xa));
7536 xa_destroy(&tctx->xa);
7537 kfree(tctx);
7538 tsk->io_uring = NULL;
7539}
7540
Jens Axboe6c271ce2019-01-10 11:22:30 -07007541static int io_sq_offload_start(struct io_ring_ctx *ctx,
7542 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007543{
7544 int ret;
7545
Jens Axboe6c271ce2019-01-10 11:22:30 -07007546 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06007547 ret = -EPERM;
7548 if (!capable(CAP_SYS_ADMIN))
7549 goto err;
7550
Jens Axboe917257d2019-04-13 09:28:55 -06007551 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
7552 if (!ctx->sq_thread_idle)
7553 ctx->sq_thread_idle = HZ;
7554
Jens Axboe6c271ce2019-01-10 11:22:30 -07007555 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06007556 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007557
Jens Axboe917257d2019-04-13 09:28:55 -06007558 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06007559 if (cpu >= nr_cpu_ids)
7560 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08007561 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06007562 goto err;
7563
Jens Axboe6c271ce2019-01-10 11:22:30 -07007564 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
7565 ctx, cpu,
7566 "io_uring-sq");
7567 } else {
7568 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
7569 "io_uring-sq");
7570 }
7571 if (IS_ERR(ctx->sqo_thread)) {
7572 ret = PTR_ERR(ctx->sqo_thread);
7573 ctx->sqo_thread = NULL;
7574 goto err;
7575 }
Jens Axboe0f212202020-09-13 13:09:39 -06007576 ret = io_uring_alloc_task_context(ctx->sqo_thread);
7577 if (ret)
7578 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007579 wake_up_process(ctx->sqo_thread);
7580 } else if (p->flags & IORING_SETUP_SQ_AFF) {
7581 /* Can't have SQ_AFF without SQPOLL */
7582 ret = -EINVAL;
7583 goto err;
7584 }
7585
Pavel Begunkov24369c22020-01-28 03:15:48 +03007586 ret = io_init_wq_offload(ctx, p);
7587 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007588 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007589
7590 return 0;
7591err:
Jens Axboe54a91f32019-09-10 09:15:04 -06007592 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007593 return ret;
7594}
7595
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007596static inline void __io_unaccount_mem(struct user_struct *user,
7597 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007598{
7599 atomic_long_sub(nr_pages, &user->locked_vm);
7600}
7601
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007602static inline int __io_account_mem(struct user_struct *user,
7603 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007604{
7605 unsigned long page_limit, cur_pages, new_pages;
7606
7607 /* Don't allow more pages than we can safely lock */
7608 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
7609
7610 do {
7611 cur_pages = atomic_long_read(&user->locked_vm);
7612 new_pages = cur_pages + nr_pages;
7613 if (new_pages > page_limit)
7614 return -ENOMEM;
7615 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
7616 new_pages) != cur_pages);
7617
7618 return 0;
7619}
7620
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007621static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
7622 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007623{
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07007624 if (ctx->limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007625 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07007626
Jens Axboe2aede0e2020-09-14 10:45:53 -06007627 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007628 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06007629 ctx->mm_account->locked_vm -= nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007630 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06007631 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007632 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007633}
7634
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007635static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
7636 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007637{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07007638 int ret;
7639
7640 if (ctx->limit_mem) {
7641 ret = __io_account_mem(ctx->user, nr_pages);
7642 if (ret)
7643 return ret;
7644 }
7645
Jens Axboe2aede0e2020-09-14 10:45:53 -06007646 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007647 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06007648 ctx->mm_account->locked_vm += nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007649 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06007650 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007651 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007652
7653 return 0;
7654}
7655
Jens Axboe2b188cc2019-01-07 10:46:33 -07007656static void io_mem_free(void *ptr)
7657{
Mark Rutland52e04ef2019-04-30 17:30:21 +01007658 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007659
Mark Rutland52e04ef2019-04-30 17:30:21 +01007660 if (!ptr)
7661 return;
7662
7663 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007664 if (put_page_testzero(page))
7665 free_compound_page(page);
7666}
7667
7668static void *io_mem_alloc(size_t size)
7669{
7670 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
7671 __GFP_NORETRY;
7672
7673 return (void *) __get_free_pages(gfp_flags, get_order(size));
7674}
7675
Hristo Venev75b28af2019-08-26 17:23:46 +00007676static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
7677 size_t *sq_offset)
7678{
7679 struct io_rings *rings;
7680 size_t off, sq_array_size;
7681
7682 off = struct_size(rings, cqes, cq_entries);
7683 if (off == SIZE_MAX)
7684 return SIZE_MAX;
7685
7686#ifdef CONFIG_SMP
7687 off = ALIGN(off, SMP_CACHE_BYTES);
7688 if (off == 0)
7689 return SIZE_MAX;
7690#endif
7691
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02007692 if (sq_offset)
7693 *sq_offset = off;
7694
Hristo Venev75b28af2019-08-26 17:23:46 +00007695 sq_array_size = array_size(sizeof(u32), sq_entries);
7696 if (sq_array_size == SIZE_MAX)
7697 return SIZE_MAX;
7698
7699 if (check_add_overflow(off, sq_array_size, &off))
7700 return SIZE_MAX;
7701
Hristo Venev75b28af2019-08-26 17:23:46 +00007702 return off;
7703}
7704
Jens Axboe2b188cc2019-01-07 10:46:33 -07007705static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
7706{
Hristo Venev75b28af2019-08-26 17:23:46 +00007707 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007708
Hristo Venev75b28af2019-08-26 17:23:46 +00007709 pages = (size_t)1 << get_order(
7710 rings_size(sq_entries, cq_entries, NULL));
7711 pages += (size_t)1 << get_order(
7712 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07007713
Hristo Venev75b28af2019-08-26 17:23:46 +00007714 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007715}
7716
Jens Axboeedafcce2019-01-09 09:16:05 -07007717static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
7718{
7719 int i, j;
7720
7721 if (!ctx->user_bufs)
7722 return -ENXIO;
7723
7724 for (i = 0; i < ctx->nr_user_bufs; i++) {
7725 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7726
7727 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007728 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07007729
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007730 io_unaccount_mem(ctx, imu->nr_bvecs, ACCT_PINNED);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007731 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007732 imu->nr_bvecs = 0;
7733 }
7734
7735 kfree(ctx->user_bufs);
7736 ctx->user_bufs = NULL;
7737 ctx->nr_user_bufs = 0;
7738 return 0;
7739}
7740
7741static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7742 void __user *arg, unsigned index)
7743{
7744 struct iovec __user *src;
7745
7746#ifdef CONFIG_COMPAT
7747 if (ctx->compat) {
7748 struct compat_iovec __user *ciovs;
7749 struct compat_iovec ciov;
7750
7751 ciovs = (struct compat_iovec __user *) arg;
7752 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7753 return -EFAULT;
7754
Jens Axboed55e5f52019-12-11 16:12:15 -07007755 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007756 dst->iov_len = ciov.iov_len;
7757 return 0;
7758 }
7759#endif
7760 src = (struct iovec __user *) arg;
7761 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7762 return -EFAULT;
7763 return 0;
7764}
7765
7766static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7767 unsigned nr_args)
7768{
7769 struct vm_area_struct **vmas = NULL;
7770 struct page **pages = NULL;
7771 int i, j, got_pages = 0;
7772 int ret = -EINVAL;
7773
7774 if (ctx->user_bufs)
7775 return -EBUSY;
7776 if (!nr_args || nr_args > UIO_MAXIOV)
7777 return -EINVAL;
7778
7779 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7780 GFP_KERNEL);
7781 if (!ctx->user_bufs)
7782 return -ENOMEM;
7783
7784 for (i = 0; i < nr_args; i++) {
7785 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7786 unsigned long off, start, end, ubuf;
7787 int pret, nr_pages;
7788 struct iovec iov;
7789 size_t size;
7790
7791 ret = io_copy_iov(ctx, &iov, arg, i);
7792 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007793 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007794
7795 /*
7796 * Don't impose further limits on the size and buffer
7797 * constraints here, we'll -EINVAL later when IO is
7798 * submitted if they are wrong.
7799 */
7800 ret = -EFAULT;
7801 if (!iov.iov_base || !iov.iov_len)
7802 goto err;
7803
7804 /* arbitrary limit, but we need something */
7805 if (iov.iov_len > SZ_1G)
7806 goto err;
7807
7808 ubuf = (unsigned long) iov.iov_base;
7809 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7810 start = ubuf >> PAGE_SHIFT;
7811 nr_pages = end - start;
7812
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007813 ret = io_account_mem(ctx, nr_pages, ACCT_PINNED);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007814 if (ret)
7815 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007816
7817 ret = 0;
7818 if (!pages || nr_pages > got_pages) {
Denis Efremova8c73c12020-06-05 12:32:03 +03007819 kvfree(vmas);
7820 kvfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007821 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007822 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007823 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007824 sizeof(struct vm_area_struct *),
7825 GFP_KERNEL);
7826 if (!pages || !vmas) {
7827 ret = -ENOMEM;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007828 io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
Jens Axboeedafcce2019-01-09 09:16:05 -07007829 goto err;
7830 }
7831 got_pages = nr_pages;
7832 }
7833
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007834 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007835 GFP_KERNEL);
7836 ret = -ENOMEM;
7837 if (!imu->bvec) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007838 io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
Jens Axboeedafcce2019-01-09 09:16:05 -07007839 goto err;
7840 }
7841
7842 ret = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07007843 mmap_read_lock(current->mm);
John Hubbard2113b052020-01-30 22:13:13 -08007844 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007845 FOLL_WRITE | FOLL_LONGTERM,
7846 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007847 if (pret == nr_pages) {
7848 /* don't support file backed memory */
7849 for (j = 0; j < nr_pages; j++) {
7850 struct vm_area_struct *vma = vmas[j];
7851
7852 if (vma->vm_file &&
7853 !is_file_hugepages(vma->vm_file)) {
7854 ret = -EOPNOTSUPP;
7855 break;
7856 }
7857 }
7858 } else {
7859 ret = pret < 0 ? pret : -EFAULT;
7860 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07007861 mmap_read_unlock(current->mm);
Jens Axboeedafcce2019-01-09 09:16:05 -07007862 if (ret) {
7863 /*
7864 * if we did partial map, or found file backed vmas,
7865 * release any pages we did get
7866 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007867 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007868 unpin_user_pages(pages, pret);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007869 io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007870 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007871 goto err;
7872 }
7873
7874 off = ubuf & ~PAGE_MASK;
7875 size = iov.iov_len;
7876 for (j = 0; j < nr_pages; j++) {
7877 size_t vec_len;
7878
7879 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7880 imu->bvec[j].bv_page = pages[j];
7881 imu->bvec[j].bv_len = vec_len;
7882 imu->bvec[j].bv_offset = off;
7883 off = 0;
7884 size -= vec_len;
7885 }
7886 /* store original address for later verification */
7887 imu->ubuf = ubuf;
7888 imu->len = iov.iov_len;
7889 imu->nr_bvecs = nr_pages;
7890
7891 ctx->nr_user_bufs++;
7892 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007893 kvfree(pages);
7894 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007895 return 0;
7896err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007897 kvfree(pages);
7898 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007899 io_sqe_buffer_unregister(ctx);
7900 return ret;
7901}
7902
Jens Axboe9b402842019-04-11 11:45:41 -06007903static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7904{
7905 __s32 __user *fds = arg;
7906 int fd;
7907
7908 if (ctx->cq_ev_fd)
7909 return -EBUSY;
7910
7911 if (copy_from_user(&fd, fds, sizeof(*fds)))
7912 return -EFAULT;
7913
7914 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7915 if (IS_ERR(ctx->cq_ev_fd)) {
7916 int ret = PTR_ERR(ctx->cq_ev_fd);
7917 ctx->cq_ev_fd = NULL;
7918 return ret;
7919 }
7920
7921 return 0;
7922}
7923
7924static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7925{
7926 if (ctx->cq_ev_fd) {
7927 eventfd_ctx_put(ctx->cq_ev_fd);
7928 ctx->cq_ev_fd = NULL;
7929 return 0;
7930 }
7931
7932 return -ENXIO;
7933}
7934
Jens Axboe5a2e7452020-02-23 16:23:11 -07007935static int __io_destroy_buffers(int id, void *p, void *data)
7936{
7937 struct io_ring_ctx *ctx = data;
7938 struct io_buffer *buf = p;
7939
Jens Axboe067524e2020-03-02 16:32:28 -07007940 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007941 return 0;
7942}
7943
7944static void io_destroy_buffers(struct io_ring_ctx *ctx)
7945{
7946 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7947 idr_destroy(&ctx->io_buffer_idr);
7948}
7949
Jens Axboe2b188cc2019-01-07 10:46:33 -07007950static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7951{
Jens Axboe6b063142019-01-10 22:13:58 -07007952 io_finish_async(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007953 io_sqe_buffer_unregister(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06007954
7955 if (ctx->sqo_task) {
7956 put_task_struct(ctx->sqo_task);
7957 ctx->sqo_task = NULL;
7958 mmdrop(ctx->mm_account);
7959 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07007960 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007961
Jens Axboe6b063142019-01-10 22:13:58 -07007962 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007963 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007964 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007965 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007966
Jens Axboe2b188cc2019-01-07 10:46:33 -07007967#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007968 if (ctx->ring_sock) {
7969 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007970 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007971 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007972#endif
7973
Hristo Venev75b28af2019-08-26 17:23:46 +00007974 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007975 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007976
7977 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007978 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007979 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07007980 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007981 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007982 kfree(ctx);
7983}
7984
7985static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7986{
7987 struct io_ring_ctx *ctx = file->private_data;
7988 __poll_t mask = 0;
7989
7990 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007991 /*
7992 * synchronizes with barrier from wq_has_sleeper call in
7993 * io_commit_cqring
7994 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007995 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007996 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7997 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007998 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007999 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008000 mask |= EPOLLIN | EPOLLRDNORM;
8001
8002 return mask;
8003}
8004
8005static int io_uring_fasync(int fd, struct file *file, int on)
8006{
8007 struct io_ring_ctx *ctx = file->private_data;
8008
8009 return fasync_helper(fd, file, on, &ctx->cq_fasync);
8010}
8011
Jens Axboe071698e2020-01-28 10:04:42 -07008012static int io_remove_personalities(int id, void *p, void *data)
8013{
8014 struct io_ring_ctx *ctx = data;
8015 const struct cred *cred;
8016
8017 cred = idr_remove(&ctx->personality_idr, id);
8018 if (cred)
8019 put_cred(cred);
8020 return 0;
8021}
8022
Jens Axboe85faa7b2020-04-09 18:14:00 -06008023static void io_ring_exit_work(struct work_struct *work)
8024{
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008025 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
8026 exit_work);
Jens Axboe85faa7b2020-04-09 18:14:00 -06008027
Jens Axboe56952e92020-06-17 15:00:04 -06008028 /*
8029 * If we're doing polled IO and end up having requests being
8030 * submitted async (out-of-line), then completions can come in while
8031 * we're waiting for refs to drop. We need to reap these manually,
8032 * as nobody else will be looking for them.
8033 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008034 do {
Jens Axboe56952e92020-06-17 15:00:04 -06008035 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008036 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008037 io_iopoll_try_reap_events(ctx);
8038 } while (!wait_for_completion_timeout(&ctx->ref_comp, HZ/20));
Jens Axboe85faa7b2020-04-09 18:14:00 -06008039 io_ring_ctx_free(ctx);
8040}
8041
Jens Axboe2b188cc2019-01-07 10:46:33 -07008042static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
8043{
8044 mutex_lock(&ctx->uring_lock);
8045 percpu_ref_kill(&ctx->refs);
8046 mutex_unlock(&ctx->uring_lock);
8047
Jens Axboef3606e32020-09-22 08:18:24 -06008048 io_kill_timeouts(ctx, NULL);
8049 io_poll_remove_all(ctx, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06008050
8051 if (ctx->io_wq)
8052 io_wq_cancel_all(ctx->io_wq);
8053
Jens Axboe15dff282019-11-13 09:09:23 -07008054 /* if we failed setting up the ctx, we might not have any rings */
8055 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008056 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008057 io_iopoll_try_reap_events(ctx);
Jens Axboe071698e2020-01-28 10:04:42 -07008058 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06008059
8060 /*
8061 * Do this upfront, so we won't have a grace period where the ring
8062 * is closed but resources aren't reaped yet. This can cause
8063 * spurious failure in setting up a new ring.
8064 */
Jens Axboe760618f2020-07-24 12:53:31 -06008065 io_unaccount_mem(ctx, ring_pages(ctx->sq_entries, ctx->cq_entries),
8066 ACCT_LOCKED);
Jens Axboe309fc032020-07-10 09:13:34 -06008067
Jens Axboe85faa7b2020-04-09 18:14:00 -06008068 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06008069 /*
8070 * Use system_unbound_wq to avoid spawning tons of event kworkers
8071 * if we're exiting a ton of rings at the same time. It just adds
8072 * noise and overhead, there's no discernable change in runtime
8073 * over using system_wq.
8074 */
8075 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008076}
8077
8078static int io_uring_release(struct inode *inode, struct file *file)
8079{
8080 struct io_ring_ctx *ctx = file->private_data;
8081
8082 file->private_data = NULL;
8083 io_ring_ctx_wait_and_kill(ctx);
8084 return 0;
8085}
8086
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008087static bool io_wq_files_match(struct io_wq_work *work, void *data)
8088{
8089 struct files_struct *files = data;
8090
Jens Axboe0f212202020-09-13 13:09:39 -06008091 return !files || work->files == files;
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008092}
8093
Jens Axboef254ac02020-08-12 17:33:30 -06008094/*
8095 * Returns true if 'preq' is the link parent of 'req'
8096 */
8097static bool io_match_link(struct io_kiocb *preq, struct io_kiocb *req)
8098{
8099 struct io_kiocb *link;
8100
8101 if (!(preq->flags & REQ_F_LINK_HEAD))
8102 return false;
8103
8104 list_for_each_entry(link, &preq->link_list, link_list) {
8105 if (link == req)
8106 return true;
8107 }
8108
8109 return false;
8110}
8111
Pavel Begunkovc127a2a2020-09-06 00:45:15 +03008112static bool io_match_link_files(struct io_kiocb *req,
8113 struct files_struct *files)
8114{
8115 struct io_kiocb *link;
8116
8117 if (io_match_files(req, files))
8118 return true;
8119 if (req->flags & REQ_F_LINK_HEAD) {
8120 list_for_each_entry(link, &req->link_list, link_list) {
8121 if (io_match_files(link, files))
8122 return true;
8123 }
8124 }
8125 return false;
8126}
8127
Jens Axboef254ac02020-08-12 17:33:30 -06008128/*
8129 * We're looking to cancel 'req' because it's holding on to our files, but
8130 * 'req' could be a link to another request. See if it is, and cancel that
8131 * parent request if so.
8132 */
8133static bool io_poll_remove_link(struct io_ring_ctx *ctx, struct io_kiocb *req)
8134{
8135 struct hlist_node *tmp;
8136 struct io_kiocb *preq;
8137 bool found = false;
8138 int i;
8139
8140 spin_lock_irq(&ctx->completion_lock);
8141 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
8142 struct hlist_head *list;
8143
8144 list = &ctx->cancel_hash[i];
8145 hlist_for_each_entry_safe(preq, tmp, list, hash_node) {
8146 found = io_match_link(preq, req);
8147 if (found) {
8148 io_poll_remove_one(preq);
8149 break;
8150 }
8151 }
8152 }
8153 spin_unlock_irq(&ctx->completion_lock);
8154 return found;
8155}
8156
8157static bool io_timeout_remove_link(struct io_ring_ctx *ctx,
8158 struct io_kiocb *req)
8159{
8160 struct io_kiocb *preq;
8161 bool found = false;
8162
8163 spin_lock_irq(&ctx->completion_lock);
8164 list_for_each_entry(preq, &ctx->timeout_list, timeout.list) {
8165 found = io_match_link(preq, req);
8166 if (found) {
8167 __io_timeout_cancel(preq);
8168 break;
8169 }
8170 }
8171 spin_unlock_irq(&ctx->completion_lock);
8172 return found;
8173}
8174
Jens Axboeb711d4e2020-08-16 08:23:05 -07008175static bool io_cancel_link_cb(struct io_wq_work *work, void *data)
8176{
8177 return io_match_link(container_of(work, struct io_kiocb, work), data);
8178}
8179
8180static void io_attempt_cancel(struct io_ring_ctx *ctx, struct io_kiocb *req)
8181{
8182 enum io_wq_cancel cret;
8183
8184 /* cancel this particular work, if it's running */
8185 cret = io_wq_cancel_work(ctx->io_wq, &req->work);
8186 if (cret != IO_WQ_CANCEL_NOTFOUND)
8187 return;
8188
8189 /* find links that hold this pending, cancel those */
8190 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_link_cb, req, true);
8191 if (cret != IO_WQ_CANCEL_NOTFOUND)
8192 return;
8193
8194 /* if we have a poll link holding this pending, cancel that */
8195 if (io_poll_remove_link(ctx, req))
8196 return;
8197
8198 /* final option, timeout link is holding this req pending */
8199 io_timeout_remove_link(ctx, req);
8200}
8201
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008202static void io_cancel_defer_files(struct io_ring_ctx *ctx,
8203 struct files_struct *files)
8204{
8205 struct io_defer_entry *de = NULL;
8206 LIST_HEAD(list);
8207
8208 spin_lock_irq(&ctx->completion_lock);
8209 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkovc127a2a2020-09-06 00:45:15 +03008210 if (io_match_link_files(de->req, files)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008211 list_cut_position(&list, &ctx->defer_list, &de->list);
8212 break;
8213 }
8214 }
8215 spin_unlock_irq(&ctx->completion_lock);
8216
8217 while (!list_empty(&list)) {
8218 de = list_first_entry(&list, struct io_defer_entry, list);
8219 list_del_init(&de->list);
8220 req_set_fail_links(de->req);
8221 io_put_req(de->req);
8222 io_req_complete(de->req, -ECANCELED);
8223 kfree(de);
8224 }
8225}
8226
Jens Axboe76e1b642020-09-26 15:05:03 -06008227/*
8228 * Returns true if we found and killed one or more files pinning requests
8229 */
8230static bool io_uring_cancel_files(struct io_ring_ctx *ctx,
Jens Axboefcb323c2019-10-24 12:39:47 -06008231 struct files_struct *files)
8232{
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008233 if (list_empty_careful(&ctx->inflight_list))
Jens Axboe76e1b642020-09-26 15:05:03 -06008234 return false;
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008235
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008236 io_cancel_defer_files(ctx, files);
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008237 /* cancel all at once, should be faster than doing it one by one*/
8238 io_wq_cancel_cb(ctx->io_wq, io_wq_files_match, files, true);
8239
Jens Axboefcb323c2019-10-24 12:39:47 -06008240 while (!list_empty_careful(&ctx->inflight_list)) {
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008241 struct io_kiocb *cancel_req = NULL, *req;
8242 DEFINE_WAIT(wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008243
8244 spin_lock_irq(&ctx->inflight_lock);
8245 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe0f212202020-09-13 13:09:39 -06008246 if (files && req->work.files != files)
Jens Axboe768134d2019-11-10 20:30:53 -07008247 continue;
8248 /* req is being completed, ignore */
8249 if (!refcount_inc_not_zero(&req->refs))
8250 continue;
8251 cancel_req = req;
8252 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06008253 }
Jens Axboe768134d2019-11-10 20:30:53 -07008254 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06008255 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07008256 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06008257 spin_unlock_irq(&ctx->inflight_lock);
8258
Jens Axboe768134d2019-11-10 20:30:53 -07008259 /* We need to keep going until we don't find a matching req */
8260 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06008261 break;
Pavel Begunkovbb175342020-08-20 11:33:35 +03008262 /* cancel this request, or head link requests */
8263 io_attempt_cancel(ctx, cancel_req);
8264 io_put_req(cancel_req);
Jens Axboe6200b0a2020-09-13 14:38:30 -06008265 /* cancellations _may_ trigger task work */
8266 io_run_task_work();
Jens Axboefcb323c2019-10-24 12:39:47 -06008267 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008268 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008269 }
Jens Axboe76e1b642020-09-26 15:05:03 -06008270
8271 return true;
Jens Axboefcb323c2019-10-24 12:39:47 -06008272}
8273
Pavel Begunkov801dd572020-06-15 10:33:14 +03008274static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008275{
Pavel Begunkov801dd572020-06-15 10:33:14 +03008276 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
8277 struct task_struct *task = data;
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008278
Jens Axboef3606e32020-09-22 08:18:24 -06008279 return io_task_match(req, task);
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008280}
8281
Jens Axboe0f212202020-09-13 13:09:39 -06008282static bool __io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8283 struct task_struct *task,
8284 struct files_struct *files)
8285{
8286 bool ret;
8287
8288 ret = io_uring_cancel_files(ctx, files);
8289 if (!files) {
8290 enum io_wq_cancel cret;
8291
8292 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, task, true);
8293 if (cret != IO_WQ_CANCEL_NOTFOUND)
8294 ret = true;
8295
8296 /* SQPOLL thread does its own polling */
8297 if (!(ctx->flags & IORING_SETUP_SQPOLL)) {
8298 while (!list_empty_careful(&ctx->iopoll_list)) {
8299 io_iopoll_try_reap_events(ctx);
8300 ret = true;
8301 }
8302 }
8303
8304 ret |= io_poll_remove_all(ctx, task);
8305 ret |= io_kill_timeouts(ctx, task);
8306 }
8307
8308 return ret;
8309}
8310
8311/*
8312 * We need to iteratively cancel requests, in case a request has dependent
8313 * hard links. These persist even for failure of cancelations, hence keep
8314 * looping until none are found.
8315 */
8316static void io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8317 struct files_struct *files)
8318{
8319 struct task_struct *task = current;
8320
8321 if (ctx->flags & IORING_SETUP_SQPOLL)
8322 task = ctx->sqo_thread;
8323
8324 io_cqring_overflow_flush(ctx, true, task, files);
8325
8326 while (__io_uring_cancel_task_requests(ctx, task, files)) {
8327 io_run_task_work();
8328 cond_resched();
8329 }
8330}
8331
8332/*
8333 * Note that this task has used io_uring. We use it for cancelation purposes.
8334 */
8335static int io_uring_add_task_file(struct file *file)
8336{
8337 if (unlikely(!current->io_uring)) {
8338 int ret;
8339
8340 ret = io_uring_alloc_task_context(current);
8341 if (unlikely(ret))
8342 return ret;
8343 }
8344 if (current->io_uring->last != file) {
8345 XA_STATE(xas, &current->io_uring->xa, (unsigned long) file);
8346 void *old;
8347
8348 rcu_read_lock();
8349 old = xas_load(&xas);
8350 if (old != file) {
8351 get_file(file);
8352 xas_lock(&xas);
8353 xas_store(&xas, file);
8354 xas_unlock(&xas);
8355 }
8356 rcu_read_unlock();
8357 current->io_uring->last = file;
8358 }
8359
8360 return 0;
8361}
8362
8363/*
8364 * Remove this io_uring_file -> task mapping.
8365 */
8366static void io_uring_del_task_file(struct file *file)
8367{
8368 struct io_uring_task *tctx = current->io_uring;
8369 XA_STATE(xas, &tctx->xa, (unsigned long) file);
8370
8371 if (tctx->last == file)
8372 tctx->last = NULL;
8373
8374 xas_lock(&xas);
8375 file = xas_store(&xas, NULL);
8376 xas_unlock(&xas);
8377
8378 if (file)
8379 fput(file);
8380}
8381
8382static void __io_uring_attempt_task_drop(struct file *file)
8383{
8384 XA_STATE(xas, &current->io_uring->xa, (unsigned long) file);
8385 struct file *old;
8386
8387 rcu_read_lock();
8388 old = xas_load(&xas);
8389 rcu_read_unlock();
8390
8391 if (old == file)
8392 io_uring_del_task_file(file);
8393}
8394
8395/*
8396 * Drop task note for this file if we're the only ones that hold it after
8397 * pending fput()
8398 */
8399static void io_uring_attempt_task_drop(struct file *file, bool exiting)
8400{
8401 if (!current->io_uring)
8402 return;
8403 /*
8404 * fput() is pending, will be 2 if the only other ref is our potential
8405 * task file note. If the task is exiting, drop regardless of count.
8406 */
8407 if (!exiting && atomic_long_read(&file->f_count) != 2)
8408 return;
8409
8410 __io_uring_attempt_task_drop(file);
8411}
8412
8413void __io_uring_files_cancel(struct files_struct *files)
8414{
8415 struct io_uring_task *tctx = current->io_uring;
8416 XA_STATE(xas, &tctx->xa, 0);
8417
8418 /* make sure overflow events are dropped */
8419 tctx->in_idle = true;
8420
8421 do {
8422 struct io_ring_ctx *ctx;
8423 struct file *file;
8424
8425 xas_lock(&xas);
8426 file = xas_next_entry(&xas, ULONG_MAX);
8427 xas_unlock(&xas);
8428
8429 if (!file)
8430 break;
8431
8432 ctx = file->private_data;
8433
8434 io_uring_cancel_task_requests(ctx, files);
8435 if (files)
8436 io_uring_del_task_file(file);
8437 } while (1);
8438}
8439
8440static inline bool io_uring_task_idle(struct io_uring_task *tctx)
8441{
8442 return atomic_long_read(&tctx->req_issue) ==
8443 atomic_long_read(&tctx->req_complete);
8444}
8445
8446/*
8447 * Find any io_uring fd that this task has registered or done IO on, and cancel
8448 * requests.
8449 */
8450void __io_uring_task_cancel(void)
8451{
8452 struct io_uring_task *tctx = current->io_uring;
8453 DEFINE_WAIT(wait);
8454 long completions;
8455
8456 /* make sure overflow events are dropped */
8457 tctx->in_idle = true;
8458
8459 while (!io_uring_task_idle(tctx)) {
8460 /* read completions before cancelations */
8461 completions = atomic_long_read(&tctx->req_complete);
8462 __io_uring_files_cancel(NULL);
8463
8464 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
8465
8466 /*
8467 * If we've seen completions, retry. This avoids a race where
8468 * a completion comes in before we did prepare_to_wait().
8469 */
8470 if (completions != atomic_long_read(&tctx->req_complete))
8471 continue;
8472 if (io_uring_task_idle(tctx))
8473 break;
8474 schedule();
8475 }
8476
8477 finish_wait(&tctx->wait, &wait);
8478 tctx->in_idle = false;
8479}
8480
Jens Axboefcb323c2019-10-24 12:39:47 -06008481static int io_uring_flush(struct file *file, void *data)
8482{
8483 struct io_ring_ctx *ctx = file->private_data;
8484
Jens Axboe6ab23142020-02-08 20:23:59 -07008485 /*
8486 * If the task is going away, cancel work it may have pending
8487 */
Pavel Begunkov801dd572020-06-15 10:33:14 +03008488 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
Jens Axboe0f212202020-09-13 13:09:39 -06008489 data = NULL;
Jens Axboe6ab23142020-02-08 20:23:59 -07008490
Jens Axboe0f212202020-09-13 13:09:39 -06008491 io_uring_cancel_task_requests(ctx, data);
8492 io_uring_attempt_task_drop(file, !data);
Jens Axboefcb323c2019-10-24 12:39:47 -06008493 return 0;
8494}
8495
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008496static void *io_uring_validate_mmap_request(struct file *file,
8497 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008498{
Jens Axboe2b188cc2019-01-07 10:46:33 -07008499 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008500 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008501 struct page *page;
8502 void *ptr;
8503
8504 switch (offset) {
8505 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00008506 case IORING_OFF_CQ_RING:
8507 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008508 break;
8509 case IORING_OFF_SQES:
8510 ptr = ctx->sq_sqes;
8511 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008512 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008513 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008514 }
8515
8516 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07008517 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008518 return ERR_PTR(-EINVAL);
8519
8520 return ptr;
8521}
8522
8523#ifdef CONFIG_MMU
8524
8525static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8526{
8527 size_t sz = vma->vm_end - vma->vm_start;
8528 unsigned long pfn;
8529 void *ptr;
8530
8531 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
8532 if (IS_ERR(ptr))
8533 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008534
8535 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
8536 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
8537}
8538
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008539#else /* !CONFIG_MMU */
8540
8541static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8542{
8543 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
8544}
8545
8546static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
8547{
8548 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
8549}
8550
8551static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
8552 unsigned long addr, unsigned long len,
8553 unsigned long pgoff, unsigned long flags)
8554{
8555 void *ptr;
8556
8557 ptr = io_uring_validate_mmap_request(file, pgoff, len);
8558 if (IS_ERR(ptr))
8559 return PTR_ERR(ptr);
8560
8561 return (unsigned long) ptr;
8562}
8563
8564#endif /* !CONFIG_MMU */
8565
Jens Axboe2b188cc2019-01-07 10:46:33 -07008566SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
8567 u32, min_complete, u32, flags, const sigset_t __user *, sig,
8568 size_t, sigsz)
8569{
8570 struct io_ring_ctx *ctx;
8571 long ret = -EBADF;
8572 int submitted = 0;
8573 struct fd f;
8574
Jens Axboe4c6e2772020-07-01 11:29:10 -06008575 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07008576
Jens Axboe6c271ce2019-01-10 11:22:30 -07008577 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008578 return -EINVAL;
8579
8580 f = fdget(fd);
8581 if (!f.file)
8582 return -EBADF;
8583
8584 ret = -EOPNOTSUPP;
8585 if (f.file->f_op != &io_uring_fops)
8586 goto out_fput;
8587
8588 ret = -ENXIO;
8589 ctx = f.file->private_data;
8590 if (!percpu_ref_tryget(&ctx->refs))
8591 goto out_fput;
8592
Jens Axboe6c271ce2019-01-10 11:22:30 -07008593 /*
8594 * For SQ polling, the thread will do all submissions and completions.
8595 * Just return the requested submit count, and wake the thread if
8596 * we were asked to.
8597 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06008598 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008599 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07008600 if (!list_empty_careful(&ctx->cq_overflow_list))
Jens Axboee6c8aa92020-09-28 13:10:13 -06008601 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboe6c271ce2019-01-10 11:22:30 -07008602 if (flags & IORING_ENTER_SQ_WAKEUP)
8603 wake_up(&ctx->sqo_wait);
8604 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06008605 } else if (to_submit) {
Jens Axboe0f212202020-09-13 13:09:39 -06008606 ret = io_uring_add_task_file(f.file);
8607 if (unlikely(ret))
8608 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008609 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06008610 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008611 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03008612
8613 if (submitted != to_submit)
8614 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008615 }
8616 if (flags & IORING_ENTER_GETEVENTS) {
8617 min_complete = min(min_complete, ctx->cq_entries);
8618
Xiaoguang Wang32b22442020-03-11 09:26:09 +08008619 /*
8620 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
8621 * space applications don't need to do io completion events
8622 * polling again, they can rely on io_sq_thread to do polling
8623 * work, which can reduce cpu usage and uring_lock contention.
8624 */
8625 if (ctx->flags & IORING_SETUP_IOPOLL &&
8626 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03008627 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07008628 } else {
8629 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
8630 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008631 }
8632
Pavel Begunkov7c504e652019-12-18 19:53:45 +03008633out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03008634 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008635out_fput:
8636 fdput(f);
8637 return submitted ? submitted : ret;
8638}
8639
Tobias Klauserbebdb652020-02-26 18:38:32 +01008640#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07008641static int io_uring_show_cred(int id, void *p, void *data)
8642{
8643 const struct cred *cred = p;
8644 struct seq_file *m = data;
8645 struct user_namespace *uns = seq_user_ns(m);
8646 struct group_info *gi;
8647 kernel_cap_t cap;
8648 unsigned __capi;
8649 int g;
8650
8651 seq_printf(m, "%5d\n", id);
8652 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
8653 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
8654 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
8655 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
8656 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
8657 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
8658 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
8659 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
8660 seq_puts(m, "\n\tGroups:\t");
8661 gi = cred->group_info;
8662 for (g = 0; g < gi->ngroups; g++) {
8663 seq_put_decimal_ull(m, g ? " " : "",
8664 from_kgid_munged(uns, gi->gid[g]));
8665 }
8666 seq_puts(m, "\n\tCapEff:\t");
8667 cap = cred->cap_effective;
8668 CAP_FOR_EACH_U32(__capi)
8669 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
8670 seq_putc(m, '\n');
8671 return 0;
8672}
8673
8674static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
8675{
Jens Axboefad8e0d2020-09-28 08:57:48 -06008676 bool has_lock;
Jens Axboe87ce9552020-01-30 08:25:34 -07008677 int i;
8678
Jens Axboefad8e0d2020-09-28 08:57:48 -06008679 /*
8680 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
8681 * since fdinfo case grabs it in the opposite direction of normal use
8682 * cases. If we fail to get the lock, we just don't iterate any
8683 * structures that could be going away outside the io_uring mutex.
8684 */
8685 has_lock = mutex_trylock(&ctx->uring_lock);
8686
Jens Axboe87ce9552020-01-30 08:25:34 -07008687 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -06008688 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07008689 struct fixed_file_table *table;
8690 struct file *f;
8691
8692 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
8693 f = table->files[i & IORING_FILE_TABLE_MASK];
8694 if (f)
8695 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
8696 else
8697 seq_printf(m, "%5u: <none>\n", i);
8698 }
8699 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -06008700 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07008701 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
8702
8703 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
8704 (unsigned int) buf->len);
8705 }
Jens Axboefad8e0d2020-09-28 08:57:48 -06008706 if (has_lock && !idr_is_empty(&ctx->personality_idr)) {
Jens Axboe87ce9552020-01-30 08:25:34 -07008707 seq_printf(m, "Personalities:\n");
8708 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
8709 }
Jens Axboed7718a92020-02-14 22:23:12 -07008710 seq_printf(m, "PollList:\n");
8711 spin_lock_irq(&ctx->completion_lock);
8712 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
8713 struct hlist_head *list = &ctx->cancel_hash[i];
8714 struct io_kiocb *req;
8715
8716 hlist_for_each_entry(req, list, hash_node)
8717 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
8718 req->task->task_works != NULL);
8719 }
8720 spin_unlock_irq(&ctx->completion_lock);
Jens Axboefad8e0d2020-09-28 08:57:48 -06008721 if (has_lock)
8722 mutex_unlock(&ctx->uring_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07008723}
8724
8725static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
8726{
8727 struct io_ring_ctx *ctx = f->private_data;
8728
8729 if (percpu_ref_tryget(&ctx->refs)) {
8730 __io_uring_show_fdinfo(ctx, m);
8731 percpu_ref_put(&ctx->refs);
8732 }
8733}
Tobias Klauserbebdb652020-02-26 18:38:32 +01008734#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07008735
Jens Axboe2b188cc2019-01-07 10:46:33 -07008736static const struct file_operations io_uring_fops = {
8737 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06008738 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07008739 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008740#ifndef CONFIG_MMU
8741 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
8742 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
8743#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07008744 .poll = io_uring_poll,
8745 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01008746#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07008747 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01008748#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07008749};
8750
8751static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
8752 struct io_uring_params *p)
8753{
Hristo Venev75b28af2019-08-26 17:23:46 +00008754 struct io_rings *rings;
8755 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008756
Jens Axboebd740482020-08-05 12:58:23 -06008757 /* make sure these are sane, as we already accounted them */
8758 ctx->sq_entries = p->sq_entries;
8759 ctx->cq_entries = p->cq_entries;
8760
Hristo Venev75b28af2019-08-26 17:23:46 +00008761 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
8762 if (size == SIZE_MAX)
8763 return -EOVERFLOW;
8764
8765 rings = io_mem_alloc(size);
8766 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008767 return -ENOMEM;
8768
Hristo Venev75b28af2019-08-26 17:23:46 +00008769 ctx->rings = rings;
8770 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
8771 rings->sq_ring_mask = p->sq_entries - 1;
8772 rings->cq_ring_mask = p->cq_entries - 1;
8773 rings->sq_ring_entries = p->sq_entries;
8774 rings->cq_ring_entries = p->cq_entries;
8775 ctx->sq_mask = rings->sq_ring_mask;
8776 ctx->cq_mask = rings->cq_ring_mask;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008777
8778 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07008779 if (size == SIZE_MAX) {
8780 io_mem_free(ctx->rings);
8781 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008782 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07008783 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008784
8785 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07008786 if (!ctx->sq_sqes) {
8787 io_mem_free(ctx->rings);
8788 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008789 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07008790 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008791
Jens Axboe2b188cc2019-01-07 10:46:33 -07008792 return 0;
8793}
8794
8795/*
8796 * Allocate an anonymous fd, this is what constitutes the application
8797 * visible backing of an io_uring instance. The application mmaps this
8798 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
8799 * we have to tie this fd to a socket for file garbage collection purposes.
8800 */
8801static int io_uring_get_fd(struct io_ring_ctx *ctx)
8802{
8803 struct file *file;
8804 int ret;
8805
8806#if defined(CONFIG_UNIX)
8807 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
8808 &ctx->ring_sock);
8809 if (ret)
8810 return ret;
8811#endif
8812
8813 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
8814 if (ret < 0)
8815 goto err;
8816
8817 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
8818 O_RDWR | O_CLOEXEC);
8819 if (IS_ERR(file)) {
Jens Axboe0f212202020-09-13 13:09:39 -06008820err_fd:
Jens Axboe2b188cc2019-01-07 10:46:33 -07008821 put_unused_fd(ret);
8822 ret = PTR_ERR(file);
8823 goto err;
8824 }
8825
8826#if defined(CONFIG_UNIX)
8827 ctx->ring_sock->file = file;
8828#endif
Jens Axboe0f212202020-09-13 13:09:39 -06008829 if (unlikely(io_uring_add_task_file(file))) {
8830 file = ERR_PTR(-ENOMEM);
8831 goto err_fd;
8832 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008833 fd_install(ret, file);
8834 return ret;
8835err:
8836#if defined(CONFIG_UNIX)
8837 sock_release(ctx->ring_sock);
8838 ctx->ring_sock = NULL;
8839#endif
8840 return ret;
8841}
8842
Xiaoguang Wang7f136572020-05-05 16:28:53 +08008843static int io_uring_create(unsigned entries, struct io_uring_params *p,
8844 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008845{
8846 struct user_struct *user = NULL;
8847 struct io_ring_ctx *ctx;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008848 bool limit_mem;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008849 int ret;
8850
Jens Axboe8110c1a2019-12-28 15:39:54 -07008851 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008852 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07008853 if (entries > IORING_MAX_ENTRIES) {
8854 if (!(p->flags & IORING_SETUP_CLAMP))
8855 return -EINVAL;
8856 entries = IORING_MAX_ENTRIES;
8857 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008858
8859 /*
8860 * Use twice as many entries for the CQ ring. It's possible for the
8861 * application to drive a higher depth than the size of the SQ ring,
8862 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06008863 * some flexibility in overcommitting a bit. If the application has
8864 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
8865 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07008866 */
8867 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06008868 if (p->flags & IORING_SETUP_CQSIZE) {
8869 /*
8870 * If IORING_SETUP_CQSIZE is set, we do the same roundup
8871 * to a power-of-two, if it isn't already. We do NOT impose
8872 * any cq vs sq ring sizing.
8873 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07008874 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06008875 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07008876 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
8877 if (!(p->flags & IORING_SETUP_CLAMP))
8878 return -EINVAL;
8879 p->cq_entries = IORING_MAX_CQ_ENTRIES;
8880 }
Jens Axboe33a107f2019-10-04 12:10:03 -06008881 p->cq_entries = roundup_pow_of_two(p->cq_entries);
8882 } else {
8883 p->cq_entries = 2 * p->sq_entries;
8884 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008885
8886 user = get_uid(current_user());
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008887 limit_mem = !capable(CAP_IPC_LOCK);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008888
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008889 if (limit_mem) {
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008890 ret = __io_account_mem(user,
Jens Axboe2b188cc2019-01-07 10:46:33 -07008891 ring_pages(p->sq_entries, p->cq_entries));
8892 if (ret) {
8893 free_uid(user);
8894 return ret;
8895 }
8896 }
8897
8898 ctx = io_ring_ctx_alloc(p);
8899 if (!ctx) {
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008900 if (limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008901 __io_unaccount_mem(user, ring_pages(p->sq_entries,
Jens Axboe2b188cc2019-01-07 10:46:33 -07008902 p->cq_entries));
8903 free_uid(user);
8904 return -ENOMEM;
8905 }
8906 ctx->compat = in_compat_syscall();
Jens Axboe2b188cc2019-01-07 10:46:33 -07008907 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07008908 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07008909
Jens Axboe2aede0e2020-09-14 10:45:53 -06008910 ctx->sqo_task = get_task_struct(current);
8911
8912 /*
8913 * This is just grabbed for accounting purposes. When a process exits,
8914 * the mm is exited and dropped before the files, hence we need to hang
8915 * on to this mm purely for the purposes of being able to unaccount
8916 * memory (locked/pinned vm). It's not used for anything else.
8917 */
Jens Axboe6b7898e2020-08-25 07:58:00 -06008918 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -06008919 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -06008920
Jens Axboef74441e2020-08-05 13:00:44 -06008921 /*
8922 * Account memory _before_ installing the file descriptor. Once
8923 * the descriptor is installed, it can get closed at any time. Also
8924 * do this before hitting the general error path, as ring freeing
8925 * will un-account as well.
8926 */
8927 io_account_mem(ctx, ring_pages(p->sq_entries, p->cq_entries),
8928 ACCT_LOCKED);
8929 ctx->limit_mem = limit_mem;
8930
Jens Axboe2b188cc2019-01-07 10:46:33 -07008931 ret = io_allocate_scq_urings(ctx, p);
8932 if (ret)
8933 goto err;
8934
Jens Axboe6c271ce2019-01-10 11:22:30 -07008935 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008936 if (ret)
8937 goto err;
8938
Jens Axboe2b188cc2019-01-07 10:46:33 -07008939 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00008940 p->sq_off.head = offsetof(struct io_rings, sq.head);
8941 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
8942 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
8943 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
8944 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
8945 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
8946 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008947
8948 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00008949 p->cq_off.head = offsetof(struct io_rings, cq.head);
8950 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
8951 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
8952 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
8953 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
8954 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +02008955 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -06008956
Xiaoguang Wang7f136572020-05-05 16:28:53 +08008957 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
8958 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +08008959 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
8960 IORING_FEAT_POLL_32BITS;
Xiaoguang Wang7f136572020-05-05 16:28:53 +08008961
8962 if (copy_to_user(params, p, sizeof(*p))) {
8963 ret = -EFAULT;
8964 goto err;
8965 }
Jens Axboed1719f72020-07-30 13:43:53 -06008966
8967 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -06008968 * Install ring fd as the very last thing, so we don't risk someone
8969 * having closed it before we finish setup
8970 */
8971 ret = io_uring_get_fd(ctx);
8972 if (ret < 0)
8973 goto err;
8974
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008975 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008976 return ret;
8977err:
8978 io_ring_ctx_wait_and_kill(ctx);
8979 return ret;
8980}
8981
8982/*
8983 * Sets up an aio uring context, and returns the fd. Applications asks for a
8984 * ring size, we return the actual sq/cq ring sizes (among other things) in the
8985 * params structure passed in.
8986 */
8987static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
8988{
8989 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008990 int i;
8991
8992 if (copy_from_user(&p, params, sizeof(p)))
8993 return -EFAULT;
8994 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
8995 if (p.resv[i])
8996 return -EINVAL;
8997 }
8998
Jens Axboe6c271ce2019-01-10 11:22:30 -07008999 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07009000 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03009001 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009002 return -EINVAL;
9003
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009004 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009005}
9006
9007SYSCALL_DEFINE2(io_uring_setup, u32, entries,
9008 struct io_uring_params __user *, params)
9009{
9010 return io_uring_setup(entries, params);
9011}
9012
Jens Axboe66f4af92020-01-16 15:36:52 -07009013static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
9014{
9015 struct io_uring_probe *p;
9016 size_t size;
9017 int i, ret;
9018
9019 size = struct_size(p, ops, nr_args);
9020 if (size == SIZE_MAX)
9021 return -EOVERFLOW;
9022 p = kzalloc(size, GFP_KERNEL);
9023 if (!p)
9024 return -ENOMEM;
9025
9026 ret = -EFAULT;
9027 if (copy_from_user(p, arg, size))
9028 goto out;
9029 ret = -EINVAL;
9030 if (memchr_inv(p, 0, size))
9031 goto out;
9032
9033 p->last_op = IORING_OP_LAST - 1;
9034 if (nr_args > IORING_OP_LAST)
9035 nr_args = IORING_OP_LAST;
9036
9037 for (i = 0; i < nr_args; i++) {
9038 p->ops[i].op = i;
9039 if (!io_op_defs[i].not_supported)
9040 p->ops[i].flags = IO_URING_OP_SUPPORTED;
9041 }
9042 p->ops_len = i;
9043
9044 ret = 0;
9045 if (copy_to_user(arg, p, size))
9046 ret = -EFAULT;
9047out:
9048 kfree(p);
9049 return ret;
9050}
9051
Jens Axboe071698e2020-01-28 10:04:42 -07009052static int io_register_personality(struct io_ring_ctx *ctx)
9053{
9054 const struct cred *creds = get_current_cred();
9055 int id;
9056
9057 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
9058 USHRT_MAX, GFP_KERNEL);
9059 if (id < 0)
9060 put_cred(creds);
9061 return id;
9062}
9063
9064static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
9065{
9066 const struct cred *old_creds;
9067
9068 old_creds = idr_remove(&ctx->personality_idr, id);
9069 if (old_creds) {
9070 put_cred(old_creds);
9071 return 0;
9072 }
9073
9074 return -EINVAL;
9075}
9076
9077static bool io_register_op_must_quiesce(int op)
9078{
9079 switch (op) {
9080 case IORING_UNREGISTER_FILES:
9081 case IORING_REGISTER_FILES_UPDATE:
9082 case IORING_REGISTER_PROBE:
9083 case IORING_REGISTER_PERSONALITY:
9084 case IORING_UNREGISTER_PERSONALITY:
9085 return false;
9086 default:
9087 return true;
9088 }
9089}
9090
Jens Axboeedafcce2019-01-09 09:16:05 -07009091static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
9092 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06009093 __releases(ctx->uring_lock)
9094 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07009095{
9096 int ret;
9097
Jens Axboe35fa71a2019-04-22 10:23:23 -06009098 /*
9099 * We're inside the ring mutex, if the ref is already dying, then
9100 * someone else killed the ctx or is already going through
9101 * io_uring_register().
9102 */
9103 if (percpu_ref_is_dying(&ctx->refs))
9104 return -ENXIO;
9105
Jens Axboe071698e2020-01-28 10:04:42 -07009106 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009107 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06009108
Jens Axboe05f3fb32019-12-09 11:22:50 -07009109 /*
9110 * Drop uring mutex before waiting for references to exit. If
9111 * another thread is currently inside io_uring_enter() it might
9112 * need to grab the uring_lock to make progress. If we hold it
9113 * here across the drain wait, then we can deadlock. It's safe
9114 * to drop the mutex here, since no new references will come in
9115 * after we've killed the percpu ref.
9116 */
9117 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f158b42020-05-14 17:18:39 -06009118 ret = wait_for_completion_interruptible(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07009119 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07009120 if (ret) {
9121 percpu_ref_resurrect(&ctx->refs);
9122 ret = -EINTR;
9123 goto out;
9124 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07009125 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009126
9127 switch (opcode) {
9128 case IORING_REGISTER_BUFFERS:
9129 ret = io_sqe_buffer_register(ctx, arg, nr_args);
9130 break;
9131 case IORING_UNREGISTER_BUFFERS:
9132 ret = -EINVAL;
9133 if (arg || nr_args)
9134 break;
9135 ret = io_sqe_buffer_unregister(ctx);
9136 break;
Jens Axboe6b063142019-01-10 22:13:58 -07009137 case IORING_REGISTER_FILES:
9138 ret = io_sqe_files_register(ctx, arg, nr_args);
9139 break;
9140 case IORING_UNREGISTER_FILES:
9141 ret = -EINVAL;
9142 if (arg || nr_args)
9143 break;
9144 ret = io_sqe_files_unregister(ctx);
9145 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06009146 case IORING_REGISTER_FILES_UPDATE:
9147 ret = io_sqe_files_update(ctx, arg, nr_args);
9148 break;
Jens Axboe9b402842019-04-11 11:45:41 -06009149 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07009150 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06009151 ret = -EINVAL;
9152 if (nr_args != 1)
9153 break;
9154 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07009155 if (ret)
9156 break;
9157 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
9158 ctx->eventfd_async = 1;
9159 else
9160 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06009161 break;
9162 case IORING_UNREGISTER_EVENTFD:
9163 ret = -EINVAL;
9164 if (arg || nr_args)
9165 break;
9166 ret = io_eventfd_unregister(ctx);
9167 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07009168 case IORING_REGISTER_PROBE:
9169 ret = -EINVAL;
9170 if (!arg || nr_args > 256)
9171 break;
9172 ret = io_probe(ctx, arg, nr_args);
9173 break;
Jens Axboe071698e2020-01-28 10:04:42 -07009174 case IORING_REGISTER_PERSONALITY:
9175 ret = -EINVAL;
9176 if (arg || nr_args)
9177 break;
9178 ret = io_register_personality(ctx);
9179 break;
9180 case IORING_UNREGISTER_PERSONALITY:
9181 ret = -EINVAL;
9182 if (arg)
9183 break;
9184 ret = io_unregister_personality(ctx, nr_args);
9185 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009186 default:
9187 ret = -EINVAL;
9188 break;
9189 }
9190
Jens Axboe071698e2020-01-28 10:04:42 -07009191 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009192 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07009193 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07009194out:
Jens Axboe0f158b42020-05-14 17:18:39 -06009195 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07009196 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009197 return ret;
9198}
9199
9200SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
9201 void __user *, arg, unsigned int, nr_args)
9202{
9203 struct io_ring_ctx *ctx;
9204 long ret = -EBADF;
9205 struct fd f;
9206
9207 f = fdget(fd);
9208 if (!f.file)
9209 return -EBADF;
9210
9211 ret = -EOPNOTSUPP;
9212 if (f.file->f_op != &io_uring_fops)
9213 goto out_fput;
9214
9215 ctx = f.file->private_data;
9216
9217 mutex_lock(&ctx->uring_lock);
9218 ret = __io_uring_register(ctx, opcode, arg, nr_args);
9219 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02009220 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
9221 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07009222out_fput:
9223 fdput(f);
9224 return ret;
9225}
9226
Jens Axboe2b188cc2019-01-07 10:46:33 -07009227static int __init io_uring_init(void)
9228{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009229#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
9230 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
9231 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
9232} while (0)
9233
9234#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
9235 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
9236 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
9237 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
9238 BUILD_BUG_SQE_ELEM(1, __u8, flags);
9239 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
9240 BUILD_BUG_SQE_ELEM(4, __s32, fd);
9241 BUILD_BUG_SQE_ELEM(8, __u64, off);
9242 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
9243 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009244 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009245 BUILD_BUG_SQE_ELEM(24, __u32, len);
9246 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
9247 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
9248 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
9249 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +08009250 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
9251 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009252 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
9253 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
9254 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
9255 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
9256 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
9257 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
9258 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
9259 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009260 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009261 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
9262 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
9263 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009264 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009265
Jens Axboed3656342019-12-18 09:50:26 -07009266 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07009267 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009268 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
9269 return 0;
9270};
9271__initcall(io_uring_init);