blob: 63e0448f3f8d956f416688663a8847eed0b1c903 [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>
47#include <linux/refcount.h>
48#include <linux/uio.h>
49
50#include <linux/sched/signal.h>
51#include <linux/fs.h>
52#include <linux/file.h>
53#include <linux/fdtable.h>
54#include <linux/mm.h>
55#include <linux/mman.h>
56#include <linux/mmu_context.h>
57#include <linux/percpu.h>
58#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070059#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070060#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070061#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/net.h>
63#include <net/sock.h>
64#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070065#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070066#include <linux/anon_inodes.h>
67#include <linux/sched/mm.h>
68#include <linux/uaccess.h>
69#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070070#include <linux/sizes.h>
71#include <linux/hugetlb.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070072
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020073#define CREATE_TRACE_POINTS
74#include <trace/events/io_uring.h>
75
Jens Axboe2b188cc2019-01-07 10:46:33 -070076#include <uapi/linux/io_uring.h>
77
78#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060079#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070080
Daniel Xu5277dea2019-09-14 14:23:45 -070081#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060082#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060083
84/*
85 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
86 */
87#define IORING_FILE_TABLE_SHIFT 9
88#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
89#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
90#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070091
92struct io_uring {
93 u32 head ____cacheline_aligned_in_smp;
94 u32 tail ____cacheline_aligned_in_smp;
95};
96
Stefan Bühler1e84b972019-04-24 23:54:16 +020097/*
Hristo Venev75b28af2019-08-26 17:23:46 +000098 * This data is shared with the application through the mmap at offsets
99 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200100 *
101 * The offsets to the member fields are published through struct
102 * io_sqring_offsets when calling io_uring_setup.
103 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000104struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200105 /*
106 * Head and tail offsets into the ring; the offsets need to be
107 * masked to get valid indices.
108 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000109 * The kernel controls head of the sq ring and the tail of the cq ring,
110 * and the application controls tail of the sq ring and the head of the
111 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200112 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000113 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200114 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000115 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200116 * ring_entries - 1)
117 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000118 u32 sq_ring_mask, cq_ring_mask;
119 /* Ring sizes (constant, power of 2) */
120 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200121 /*
122 * Number of invalid entries dropped by the kernel due to
123 * invalid index stored in array
124 *
125 * Written by the kernel, shouldn't be modified by the
126 * application (i.e. get number of "new events" by comparing to
127 * cached value).
128 *
129 * After a new SQ head value was read by the application this
130 * counter includes all submissions that were dropped reaching
131 * the new SQ head (and possibly more).
132 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000133 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200134 /*
135 * Runtime flags
136 *
137 * Written by the kernel, shouldn't be modified by the
138 * application.
139 *
140 * The application needs a full memory barrier before checking
141 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
142 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000143 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200144 /*
145 * Number of completion events lost because the queue was full;
146 * this should be avoided by the application by making sure
147 * there are not more requests pending thatn there is space in
148 * the completion queue.
149 *
150 * Written by the kernel, shouldn't be modified by the
151 * application (i.e. get number of "new events" by comparing to
152 * cached value).
153 *
154 * As completion events come in out of order this counter is not
155 * ordered with any other data.
156 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000157 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200158 /*
159 * Ring buffer of completion events.
160 *
161 * The kernel writes completion events fresh every time they are
162 * produced, so the application is allowed to modify pending
163 * entries.
164 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000165 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700166};
167
Jens Axboeedafcce2019-01-09 09:16:05 -0700168struct io_mapped_ubuf {
169 u64 ubuf;
170 size_t len;
171 struct bio_vec *bvec;
172 unsigned int nr_bvecs;
173};
174
Jens Axboe65e19f52019-10-26 07:20:21 -0600175struct fixed_file_table {
176 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700177};
178
Jens Axboe2b188cc2019-01-07 10:46:33 -0700179struct io_ring_ctx {
180 struct {
181 struct percpu_ref refs;
182 } ____cacheline_aligned_in_smp;
183
184 struct {
185 unsigned int flags;
186 bool compat;
187 bool account_mem;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700188 bool cq_overflow_flushed;
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300189 bool drain_next;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700190
Hristo Venev75b28af2019-08-26 17:23:46 +0000191 /*
192 * Ring buffer of indices into array of io_uring_sqe, which is
193 * mmapped by the application using the IORING_OFF_SQES offset.
194 *
195 * This indirection could e.g. be used to assign fixed
196 * io_uring_sqe entries to operations and only submit them to
197 * the queue when needed.
198 *
199 * The kernel modifies neither the indices array nor the entries
200 * array.
201 */
202 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700203 unsigned cached_sq_head;
204 unsigned sq_entries;
205 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700206 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600207 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700208 atomic_t cached_cq_overflow;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700209 struct io_uring_sqe *sq_sqes;
Jens Axboede0617e2019-04-06 21:51:27 -0600210
211 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600212 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700213 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700214
Jens Axboefcb323c2019-10-24 12:39:47 -0600215 wait_queue_head_t inflight_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700216 } ____cacheline_aligned_in_smp;
217
Hristo Venev75b28af2019-08-26 17:23:46 +0000218 struct io_rings *rings;
219
Jens Axboe2b188cc2019-01-07 10:46:33 -0700220 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600221 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700222 struct task_struct *sqo_thread; /* if using sq thread polling */
223 struct mm_struct *sqo_mm;
224 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700225
Jens Axboe6b063142019-01-10 22:13:58 -0700226 /*
227 * If used, fixed file set. Writers must ensure that ->refs is dead,
228 * readers must ensure that ->refs is alive as long as the file* is
229 * used. Only updated through io_uring_register(2).
230 */
Jens Axboe65e19f52019-10-26 07:20:21 -0600231 struct fixed_file_table *file_table;
Jens Axboe6b063142019-01-10 22:13:58 -0700232 unsigned nr_user_files;
233
Jens Axboeedafcce2019-01-09 09:16:05 -0700234 /* if used, fixed mapped user buffers */
235 unsigned nr_user_bufs;
236 struct io_mapped_ubuf *user_bufs;
237
Jens Axboe2b188cc2019-01-07 10:46:33 -0700238 struct user_struct *user;
239
Jens Axboe206aefd2019-11-07 18:27:42 -0700240 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
241 struct completion *completions;
242
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700243 /* if all else fails... */
244 struct io_kiocb *fallback_req;
245
Jens Axboe206aefd2019-11-07 18:27:42 -0700246#if defined(CONFIG_UNIX)
247 struct socket *ring_sock;
248#endif
249
250 struct {
251 unsigned cached_cq_tail;
252 unsigned cq_entries;
253 unsigned cq_mask;
254 atomic_t cq_timeouts;
255 struct wait_queue_head cq_wait;
256 struct fasync_struct *cq_fasync;
257 struct eventfd_ctx *cq_ev_fd;
258 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700259
260 struct {
261 struct mutex uring_lock;
262 wait_queue_head_t wait;
263 } ____cacheline_aligned_in_smp;
264
265 struct {
266 spinlock_t completion_lock;
Jens Axboedef596e2019-01-09 08:59:42 -0700267 bool poll_multi_file;
268 /*
269 * ->poll_list is protected by the ctx->uring_lock for
270 * io_uring instances that don't use IORING_SETUP_SQPOLL.
271 * For SQPOLL, only the single threaded io_sq_thread() will
272 * manipulate the list, hence no extra locking is needed there.
273 */
274 struct list_head poll_list;
Jens Axboeeac406c2019-11-14 12:09:58 -0700275 struct rb_root cancel_tree;
Jens Axboefcb323c2019-10-24 12:39:47 -0600276
277 spinlock_t inflight_lock;
278 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700279 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700280};
281
282struct sqe_submit {
283 const struct io_uring_sqe *sqe;
Jens Axboefcb323c2019-10-24 12:39:47 -0600284 struct file *ring_file;
285 int ring_fd;
Jackie Liu8776f3f2019-09-09 20:50:39 +0800286 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700287 bool has_user;
Jackie Liuba5290c2019-10-09 09:19:59 +0800288 bool in_async;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700289 bool needs_fixed_file;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700290};
291
Jens Axboe09bb8392019-03-13 12:39:28 -0600292/*
293 * First field must be the file pointer in all the
294 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
295 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700296struct io_poll_iocb {
297 struct file *file;
298 struct wait_queue_head *head;
299 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600300 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700301 bool canceled;
302 struct wait_queue_entry wait;
303};
304
Jens Axboead8a48a2019-11-15 08:49:11 -0700305struct io_timeout_data {
306 struct io_kiocb *req;
307 struct hrtimer timer;
308 struct timespec64 ts;
309 enum hrtimer_mode mode;
310};
311
Jens Axboe5262f562019-09-17 12:26:57 -0600312struct io_timeout {
313 struct file *file;
Jens Axboead8a48a2019-11-15 08:49:11 -0700314 struct io_timeout_data *data;
Jens Axboe5262f562019-09-17 12:26:57 -0600315};
316
Jens Axboe09bb8392019-03-13 12:39:28 -0600317/*
318 * NOTE! Each of the iocb union members has the file pointer
319 * as the first entry in their struct definition. So you can
320 * access the file pointer through any of the sub-structs,
321 * or directly as just 'ki_filp' in this struct.
322 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700323struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700324 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600325 struct file *file;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700326 struct kiocb rw;
327 struct io_poll_iocb poll;
Jens Axboe5262f562019-09-17 12:26:57 -0600328 struct io_timeout timeout;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700329 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700330
331 struct sqe_submit submit;
332
333 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700334 union {
335 struct list_head list;
336 struct rb_node rb_node;
337 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600338 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700339 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700340 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200341#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700342#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700343#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700344#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200345#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
346#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600347#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700348#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800349#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300350#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600351#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600352#define REQ_F_ISREG 2048 /* regular file */
353#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700354#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800355#define REQ_F_INFLIGHT 16384 /* on inflight list */
356#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe94ae5e72019-11-14 19:39:52 -0700357#define REQ_F_FREE_SQE 65536 /* free sqe if not async queued */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700358 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600359 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600360 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700361
Jens Axboefcb323c2019-10-24 12:39:47 -0600362 struct list_head inflight_entry;
363
Jens Axboe561fb042019-10-24 07:25:42 -0600364 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700365};
366
367#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700368#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700369
Jens Axboe9a56a232019-01-09 09:06:50 -0700370struct io_submit_state {
371 struct blk_plug plug;
372
373 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700374 * io_kiocb alloc cache
375 */
376 void *reqs[IO_IOPOLL_BATCH];
377 unsigned int free_reqs;
378 unsigned int cur_req;
379
380 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700381 * File reference cache
382 */
383 struct file *file;
384 unsigned int fd;
385 unsigned int has_refs;
386 unsigned int used_refs;
387 unsigned int ios_left;
388};
389
Jens Axboe561fb042019-10-24 07:25:42 -0600390static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700391static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liu4fe2c962019-09-09 20:50:40 +0800392static void __io_free_req(struct io_kiocb *req);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800393static void io_put_req(struct io_kiocb *req);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700394static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700395static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700396static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
397static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600398
Jens Axboe2b188cc2019-01-07 10:46:33 -0700399static struct kmem_cache *req_cachep;
400
401static const struct file_operations io_uring_fops;
402
403struct sock *io_uring_get_socket(struct file *file)
404{
405#if defined(CONFIG_UNIX)
406 if (file->f_op == &io_uring_fops) {
407 struct io_ring_ctx *ctx = file->private_data;
408
409 return ctx->ring_sock->sk;
410 }
411#endif
412 return NULL;
413}
414EXPORT_SYMBOL(io_uring_get_socket);
415
416static void io_ring_ctx_ref_free(struct percpu_ref *ref)
417{
418 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
419
Jens Axboe206aefd2019-11-07 18:27:42 -0700420 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700421}
422
423static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
424{
425 struct io_ring_ctx *ctx;
426
427 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
428 if (!ctx)
429 return NULL;
430
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700431 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
432 if (!ctx->fallback_req)
433 goto err;
434
Jens Axboe206aefd2019-11-07 18:27:42 -0700435 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
436 if (!ctx->completions)
437 goto err;
438
Roman Gushchin21482892019-05-07 10:01:48 -0700439 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700440 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
441 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700442
443 ctx->flags = p->flags;
444 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700445 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700446 init_completion(&ctx->completions[0]);
447 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700448 mutex_init(&ctx->uring_lock);
449 init_waitqueue_head(&ctx->wait);
450 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700451 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboeeac406c2019-11-14 12:09:58 -0700452 ctx->cancel_tree = RB_ROOT;
Jens Axboede0617e2019-04-06 21:51:27 -0600453 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600454 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600455 init_waitqueue_head(&ctx->inflight_wait);
456 spin_lock_init(&ctx->inflight_lock);
457 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700458 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700459err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700460 if (ctx->fallback_req)
461 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700462 kfree(ctx->completions);
463 kfree(ctx);
464 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700465}
466
Bob Liu9d858b22019-11-13 18:06:25 +0800467static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600468{
Jackie Liua197f662019-11-08 08:09:12 -0700469 struct io_ring_ctx *ctx = req->ctx;
470
Jens Axboe498ccd92019-10-25 10:04:25 -0600471 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
472 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600473}
474
Bob Liu9d858b22019-11-13 18:06:25 +0800475static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600476{
Bob Liu9d858b22019-11-13 18:06:25 +0800477 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
478 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600479
Bob Liu9d858b22019-11-13 18:06:25 +0800480 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600481}
482
483static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600484{
485 struct io_kiocb *req;
486
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600487 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800488 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600489 list_del_init(&req->list);
490 return req;
491 }
492
493 return NULL;
494}
495
Jens Axboe5262f562019-09-17 12:26:57 -0600496static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
497{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600498 struct io_kiocb *req;
499
500 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700501 if (req) {
502 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
503 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800504 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700505 list_del_init(&req->list);
506 return req;
507 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600508 }
509
510 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600511}
512
Jens Axboede0617e2019-04-06 21:51:27 -0600513static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700514{
Hristo Venev75b28af2019-08-26 17:23:46 +0000515 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700516
Hristo Venev75b28af2019-08-26 17:23:46 +0000517 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700518 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000519 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700520
Jens Axboe2b188cc2019-01-07 10:46:33 -0700521 if (wq_has_sleeper(&ctx->cq_wait)) {
522 wake_up_interruptible(&ctx->cq_wait);
523 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
524 }
525 }
526}
527
Jens Axboe561fb042019-10-24 07:25:42 -0600528static inline bool io_sqe_needs_user(const struct io_uring_sqe *sqe)
Jens Axboe18d9be12019-09-10 09:13:05 -0600529{
Jens Axboe561fb042019-10-24 07:25:42 -0600530 u8 opcode = READ_ONCE(sqe->opcode);
531
532 return !(opcode == IORING_OP_READ_FIXED ||
533 opcode == IORING_OP_WRITE_FIXED);
534}
535
Jens Axboe94ae5e72019-11-14 19:39:52 -0700536static inline bool io_prep_async_work(struct io_kiocb *req,
537 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600538{
539 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600540
Jens Axboe6cc47d12019-09-18 11:18:23 -0600541 if (req->submit.sqe) {
542 switch (req->submit.sqe->opcode) {
543 case IORING_OP_WRITEV:
544 case IORING_OP_WRITE_FIXED:
Jens Axboe561fb042019-10-24 07:25:42 -0600545 do_hashed = true;
Jens Axboe5f8fd2d32019-11-07 10:57:36 -0700546 /* fall-through */
547 case IORING_OP_READV:
548 case IORING_OP_READ_FIXED:
549 case IORING_OP_SENDMSG:
550 case IORING_OP_RECVMSG:
551 case IORING_OP_ACCEPT:
552 case IORING_OP_POLL_ADD:
553 /*
554 * We know REQ_F_ISREG is not set on some of these
555 * opcodes, but this enables us to keep the check in
556 * just one place.
557 */
558 if (!(req->flags & REQ_F_ISREG))
559 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe6cc47d12019-09-18 11:18:23 -0600560 break;
561 }
Jens Axboe561fb042019-10-24 07:25:42 -0600562 if (io_sqe_needs_user(req->submit.sqe))
563 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600564 }
565
Jens Axboe94ae5e72019-11-14 19:39:52 -0700566 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600567 return do_hashed;
568}
569
Jackie Liua197f662019-11-08 08:09:12 -0700570static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600571{
Jackie Liua197f662019-11-08 08:09:12 -0700572 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700573 struct io_kiocb *link;
574 bool do_hashed;
575
576 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600577
578 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
579 req->flags);
580 if (!do_hashed) {
581 io_wq_enqueue(ctx->io_wq, &req->work);
582 } else {
583 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
584 file_inode(req->file));
585 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700586
587 if (link)
588 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600589}
590
Jens Axboe5262f562019-09-17 12:26:57 -0600591static void io_kill_timeout(struct io_kiocb *req)
592{
593 int ret;
594
Jens Axboead8a48a2019-11-15 08:49:11 -0700595 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600596 if (ret != -1) {
597 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600598 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700599 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800600 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600601 }
602}
603
604static void io_kill_timeouts(struct io_ring_ctx *ctx)
605{
606 struct io_kiocb *req, *tmp;
607
608 spin_lock_irq(&ctx->completion_lock);
609 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
610 io_kill_timeout(req);
611 spin_unlock_irq(&ctx->completion_lock);
612}
613
Jens Axboede0617e2019-04-06 21:51:27 -0600614static void io_commit_cqring(struct io_ring_ctx *ctx)
615{
616 struct io_kiocb *req;
617
Jens Axboe5262f562019-09-17 12:26:57 -0600618 while ((req = io_get_timeout_req(ctx)) != NULL)
619 io_kill_timeout(req);
620
Jens Axboede0617e2019-04-06 21:51:27 -0600621 __io_commit_cqring(ctx);
622
623 while ((req = io_get_deferred_req(ctx)) != NULL) {
624 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700625 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600626 }
627}
628
Jens Axboe2b188cc2019-01-07 10:46:33 -0700629static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
630{
Hristo Venev75b28af2019-08-26 17:23:46 +0000631 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700632 unsigned tail;
633
634 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200635 /*
636 * writes to the cq entry need to come after reading head; the
637 * control dependency is enough as we're using WRITE_ONCE to
638 * fill the cq entry
639 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000640 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700641 return NULL;
642
643 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000644 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700645}
646
Jens Axboe8c838782019-03-12 15:48:16 -0600647static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
648{
649 if (waitqueue_active(&ctx->wait))
650 wake_up(&ctx->wait);
651 if (waitqueue_active(&ctx->sqo_wait))
652 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600653 if (ctx->cq_ev_fd)
654 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600655}
656
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700657static void io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700658{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700659 struct io_rings *rings = ctx->rings;
660 struct io_uring_cqe *cqe;
661 struct io_kiocb *req;
662 unsigned long flags;
663 LIST_HEAD(list);
664
665 if (!force) {
666 if (list_empty_careful(&ctx->cq_overflow_list))
667 return;
668 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
669 rings->cq_ring_entries))
670 return;
671 }
672
673 spin_lock_irqsave(&ctx->completion_lock, flags);
674
675 /* if force is set, the ring is going away. always drop after that */
676 if (force)
677 ctx->cq_overflow_flushed = true;
678
679 while (!list_empty(&ctx->cq_overflow_list)) {
680 cqe = io_get_cqring(ctx);
681 if (!cqe && !force)
682 break;
683
684 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
685 list);
686 list_move(&req->list, &list);
687 if (cqe) {
688 WRITE_ONCE(cqe->user_data, req->user_data);
689 WRITE_ONCE(cqe->res, req->result);
690 WRITE_ONCE(cqe->flags, 0);
691 } else {
692 WRITE_ONCE(ctx->rings->cq_overflow,
693 atomic_inc_return(&ctx->cached_cq_overflow));
694 }
695 }
696
697 io_commit_cqring(ctx);
698 spin_unlock_irqrestore(&ctx->completion_lock, flags);
699 io_cqring_ev_posted(ctx);
700
701 while (!list_empty(&list)) {
702 req = list_first_entry(&list, struct io_kiocb, list);
703 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800704 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700705 }
706}
707
Jens Axboe78e19bb2019-11-06 15:21:34 -0700708static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700709{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700710 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700711 struct io_uring_cqe *cqe;
712
Jens Axboe78e19bb2019-11-06 15:21:34 -0700713 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -0700714
Jens Axboe2b188cc2019-01-07 10:46:33 -0700715 /*
716 * If we can't get a cq entry, userspace overflowed the
717 * submission (by quite a lot). Increment the overflow count in
718 * the ring.
719 */
720 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700721 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700722 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700723 WRITE_ONCE(cqe->res, res);
724 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700725 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700726 WRITE_ONCE(ctx->rings->cq_overflow,
727 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700728 } else {
729 refcount_inc(&req->refs);
730 req->result = res;
731 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700732 }
733}
734
Jens Axboe78e19bb2019-11-06 15:21:34 -0700735static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700736{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700737 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700738 unsigned long flags;
739
740 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700741 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700742 io_commit_cqring(ctx);
743 spin_unlock_irqrestore(&ctx->completion_lock, flags);
744
Jens Axboe8c838782019-03-12 15:48:16 -0600745 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700746}
747
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700748static inline bool io_is_fallback_req(struct io_kiocb *req)
749{
750 return req == (struct io_kiocb *)
751 ((unsigned long) req->ctx->fallback_req & ~1UL);
752}
753
754static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
755{
756 struct io_kiocb *req;
757
758 req = ctx->fallback_req;
759 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
760 return req;
761
762 return NULL;
763}
764
Jens Axboe2579f912019-01-09 09:10:43 -0700765static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
766 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700767{
Jens Axboefd6fab22019-03-14 16:30:06 -0600768 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700769 struct io_kiocb *req;
770
771 if (!percpu_ref_tryget(&ctx->refs))
772 return NULL;
773
Jens Axboe2579f912019-01-09 09:10:43 -0700774 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -0600775 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -0700776 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700777 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -0700778 } else if (!state->free_reqs) {
779 size_t sz;
780 int ret;
781
782 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -0600783 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
784
785 /*
786 * Bulk alloc is all-or-nothing. If we fail to get a batch,
787 * retry single alloc to be on the safe side.
788 */
789 if (unlikely(ret <= 0)) {
790 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
791 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700792 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -0600793 ret = 1;
794 }
Jens Axboe2579f912019-01-09 09:10:43 -0700795 state->free_reqs = ret - 1;
796 state->cur_req = 1;
797 req = state->reqs[0];
798 } else {
799 req = state->reqs[state->cur_req];
800 state->free_reqs--;
801 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700802 }
803
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700804got_it:
Jens Axboe60c112b2019-06-21 10:20:18 -0600805 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -0700806 req->ctx = ctx;
807 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -0600808 /* one is dropped after submission, the other at completion */
809 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -0600810 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -0600811 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -0700812 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700813fallback:
814 req = io_get_fallback_req(ctx);
815 if (req)
816 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +0300817 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700818 return NULL;
819}
820
Jens Axboedef596e2019-01-09 08:59:42 -0700821static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
822{
823 if (*nr) {
824 kmem_cache_free_bulk(req_cachep, *nr, reqs);
Pavel Begunkov6805b322019-10-08 02:18:42 +0300825 percpu_ref_put_many(&ctx->refs, *nr);
Jens Axboedef596e2019-01-09 08:59:42 -0700826 *nr = 0;
827 }
828}
829
Jens Axboe9e645e112019-05-10 16:07:28 -0600830static void __io_free_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700831{
Jens Axboefcb323c2019-10-24 12:39:47 -0600832 struct io_ring_ctx *ctx = req->ctx;
833
Pavel Begunkovbbad27b2019-11-19 23:32:47 +0300834 if (req->flags & REQ_F_FREE_SQE)
835 kfree(req->submit.sqe);
Jens Axboe09bb8392019-03-13 12:39:28 -0600836 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
837 fput(req->file);
Jens Axboefcb323c2019-10-24 12:39:47 -0600838 if (req->flags & REQ_F_INFLIGHT) {
839 unsigned long flags;
840
841 spin_lock_irqsave(&ctx->inflight_lock, flags);
842 list_del(&req->inflight_entry);
843 if (waitqueue_active(&ctx->inflight_wait))
844 wake_up(&ctx->inflight_wait);
845 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
846 }
Jens Axboead8a48a2019-11-15 08:49:11 -0700847 if (req->flags & REQ_F_TIMEOUT)
848 kfree(req->timeout.data);
Jens Axboefcb323c2019-10-24 12:39:47 -0600849 percpu_ref_put(&ctx->refs);
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700850 if (likely(!io_is_fallback_req(req)))
851 kmem_cache_free(req_cachep, req);
852 else
853 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -0600854}
855
Jackie Liua197f662019-11-08 08:09:12 -0700856static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -0600857{
Jackie Liua197f662019-11-08 08:09:12 -0700858 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700859 int ret;
860
Jens Axboead8a48a2019-11-15 08:49:11 -0700861 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe2665abf2019-11-05 12:40:47 -0700862 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700863 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -0700864 io_commit_cqring(ctx);
865 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +0800866 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -0700867 return true;
868 }
869
870 return false;
871}
872
Jens Axboeba816ad2019-09-28 11:36:45 -0600873static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -0600874{
Jens Axboe2665abf2019-11-05 12:40:47 -0700875 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -0600876 struct io_kiocb *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -0700877 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -0600878
Jens Axboe4d7dd462019-11-20 13:03:52 -0700879 /* Already got next link */
880 if (req->flags & REQ_F_LINK_NEXT)
881 return;
882
Jens Axboe9e645e112019-05-10 16:07:28 -0600883 /*
884 * The list should never be empty when we are called here. But could
885 * potentially happen if the chain is messed up, check to be on the
886 * safe side.
887 */
888 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb, list);
Jens Axboe2665abf2019-11-05 12:40:47 -0700889 while (nxt) {
Jens Axboe76a46e02019-11-10 23:34:16 -0700890 list_del_init(&nxt->list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700891
892 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
893 (nxt->flags & REQ_F_TIMEOUT)) {
894 wake_ev |= io_link_cancel_timeout(nxt);
895 nxt = list_first_entry_or_null(&req->link_list,
896 struct io_kiocb, list);
897 req->flags &= ~REQ_F_LINK_TIMEOUT;
898 continue;
899 }
Jens Axboe9e645e112019-05-10 16:07:28 -0600900 if (!list_empty(&req->link_list)) {
901 INIT_LIST_HEAD(&nxt->link_list);
902 list_splice(&req->link_list, &nxt->link_list);
903 nxt->flags |= REQ_F_LINK;
904 }
905
Jens Axboeba816ad2019-09-28 11:36:45 -0600906 /*
907 * If we're in async work, we can continue processing the chain
908 * in this context instead of having to queue up new async work.
909 */
Jens Axboe94ae5e72019-11-14 19:39:52 -0700910 if (nxt) {
911 if (nxtptr && io_wq_current_is_worker())
912 *nxtptr = nxt;
913 else
914 io_queue_async_work(nxt);
Jens Axboe2665abf2019-11-05 12:40:47 -0700915 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700916 break;
Jens Axboe9e645e112019-05-10 16:07:28 -0600917 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700918
Jens Axboe4d7dd462019-11-20 13:03:52 -0700919 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -0700920 if (wake_ev)
921 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600922}
923
924/*
925 * Called if REQ_F_LINK is set, and we fail the head request
926 */
927static void io_fail_links(struct io_kiocb *req)
928{
Jens Axboe2665abf2019-11-05 12:40:47 -0700929 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -0600930 struct io_kiocb *link;
Jens Axboe2665abf2019-11-05 12:40:47 -0700931 unsigned long flags;
932
933 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -0600934
935 while (!list_empty(&req->link_list)) {
936 link = list_first_entry(&req->link_list, struct io_kiocb, list);
Jens Axboe2665abf2019-11-05 12:40:47 -0700937 list_del_init(&link->list);
Jens Axboe9e645e112019-05-10 16:07:28 -0600938
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +0200939 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700940
941 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
942 link->submit.sqe->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -0700943 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700944 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700945 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -0700946 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700947 }
Jens Axboe5d960722019-11-19 15:31:28 -0700948 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -0600949 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700950
951 io_commit_cqring(ctx);
952 spin_unlock_irqrestore(&ctx->completion_lock, flags);
953 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600954}
955
Jens Axboe4d7dd462019-11-20 13:03:52 -0700956static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -0600957{
Jens Axboe4d7dd462019-11-20 13:03:52 -0700958 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -0700959 return;
Jens Axboe2665abf2019-11-05 12:40:47 -0700960
Jens Axboe9e645e112019-05-10 16:07:28 -0600961 /*
962 * If LINK is set, we have dependent requests in this chain. If we
963 * didn't fail this request, queue the first one up, moving any other
964 * dependencies to the next request. In case of failure, fail the rest
965 * of the chain.
966 */
Jens Axboe2665abf2019-11-05 12:40:47 -0700967 if (req->flags & REQ_F_FAIL_LINK) {
968 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -0700969 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
970 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -0700971 struct io_ring_ctx *ctx = req->ctx;
972 unsigned long flags;
973
974 /*
975 * If this is a timeout link, we could be racing with the
976 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -0700977 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -0700978 */
979 spin_lock_irqsave(&ctx->completion_lock, flags);
980 io_req_link_next(req, nxt);
981 spin_unlock_irqrestore(&ctx->completion_lock, flags);
982 } else {
983 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -0600984 }
Jens Axboe4d7dd462019-11-20 13:03:52 -0700985}
Jens Axboe9e645e112019-05-10 16:07:28 -0600986
Jens Axboe4d7dd462019-11-20 13:03:52 -0700987static void io_free_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
988{
989 io_req_find_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -0600990 __io_free_req(req);
991}
992
Jackie Liuc69f8db2019-11-09 11:00:08 +0800993static void io_free_req(struct io_kiocb *req)
994{
995 io_free_req_find_next(req, NULL);
996}
997
Jens Axboeba816ad2019-09-28 11:36:45 -0600998/*
999 * Drop reference to request, return next in chain (if there is one) if this
1000 * was the last reference to this request.
1001 */
Jackie Liuec9c02a2019-11-08 23:50:36 +08001002static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001003{
Jens Axboeba816ad2019-09-28 11:36:45 -06001004 struct io_kiocb *nxt = NULL;
1005
Jens Axboe4d7dd462019-11-20 13:03:52 -07001006 io_req_find_next(req, &nxt);
1007
Jens Axboee65ef562019-03-12 10:16:44 -06001008 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001009 __io_free_req(req);
Jens Axboeba816ad2019-09-28 11:36:45 -06001010
Jens Axboeba816ad2019-09-28 11:36:45 -06001011 if (nxt) {
Jens Axboe561fb042019-10-24 07:25:42 -06001012 if (nxtptr)
Jens Axboeba816ad2019-09-28 11:36:45 -06001013 *nxtptr = nxt;
Jens Axboe561fb042019-10-24 07:25:42 -06001014 else
Jackie Liua197f662019-11-08 08:09:12 -07001015 io_queue_async_work(nxt);
Jens Axboeba816ad2019-09-28 11:36:45 -06001016 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001017}
1018
Jens Axboe2b188cc2019-01-07 10:46:33 -07001019static void io_put_req(struct io_kiocb *req)
1020{
Jens Axboedef596e2019-01-09 08:59:42 -07001021 if (refcount_dec_and_test(&req->refs))
1022 io_free_req(req);
1023}
1024
Jens Axboe978db572019-11-14 22:39:04 -07001025/*
1026 * Must only be used if we don't need to care about links, usually from
1027 * within the completion handling itself.
1028 */
1029static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001030{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001031 /* drop both submit and complete references */
1032 if (refcount_sub_and_test(2, &req->refs))
1033 __io_free_req(req);
1034}
1035
Jens Axboe978db572019-11-14 22:39:04 -07001036static void io_double_put_req(struct io_kiocb *req)
1037{
1038 /* drop both submit and complete references */
1039 if (refcount_sub_and_test(2, &req->refs))
1040 io_free_req(req);
1041}
1042
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001043static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001044{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001045 struct io_rings *rings = ctx->rings;
1046
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001047 /*
1048 * noflush == true is from the waitqueue handler, just ensure we wake
1049 * up the task, and the next invocation will flush the entries. We
1050 * cannot safely to it from here.
1051 */
1052 if (noflush && !list_empty(&ctx->cq_overflow_list))
1053 return -1U;
1054
1055 io_cqring_overflow_flush(ctx, false);
1056
Jens Axboea3a0e432019-08-20 11:03:11 -06001057 /* See comment at the top of this file */
1058 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00001059 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001060}
1061
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001062static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1063{
1064 struct io_rings *rings = ctx->rings;
1065
1066 /* make sure SQ entry isn't read before tail */
1067 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1068}
1069
Jens Axboedef596e2019-01-09 08:59:42 -07001070/*
1071 * Find and free completed poll iocbs
1072 */
1073static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1074 struct list_head *done)
1075{
1076 void *reqs[IO_IOPOLL_BATCH];
1077 struct io_kiocb *req;
Jens Axboe09bb8392019-03-13 12:39:28 -06001078 int to_free;
Jens Axboedef596e2019-01-09 08:59:42 -07001079
Jens Axboe09bb8392019-03-13 12:39:28 -06001080 to_free = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001081 while (!list_empty(done)) {
1082 req = list_first_entry(done, struct io_kiocb, list);
1083 list_del(&req->list);
1084
Jens Axboe78e19bb2019-11-06 15:21:34 -07001085 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001086 (*nr_events)++;
1087
Jens Axboe09bb8392019-03-13 12:39:28 -06001088 if (refcount_dec_and_test(&req->refs)) {
1089 /* If we're not using fixed files, we have to pair the
1090 * completion part with the file put. Use regular
1091 * completions for those, only batch free for fixed
Jens Axboe9e645e112019-05-10 16:07:28 -06001092 * file and non-linked commands.
Jens Axboe09bb8392019-03-13 12:39:28 -06001093 */
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03001094 if (((req->flags &
1095 (REQ_F_FIXED_FILE|REQ_F_LINK|REQ_F_FREE_SQE)) ==
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001096 REQ_F_FIXED_FILE) && !io_is_fallback_req(req)) {
Jens Axboe09bb8392019-03-13 12:39:28 -06001097 reqs[to_free++] = req;
1098 if (to_free == ARRAY_SIZE(reqs))
1099 io_free_req_many(ctx, reqs, &to_free);
Jens Axboe6b063142019-01-10 22:13:58 -07001100 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001101 io_free_req(req);
Jens Axboe6b063142019-01-10 22:13:58 -07001102 }
Jens Axboe9a56a232019-01-09 09:06:50 -07001103 }
Jens Axboedef596e2019-01-09 08:59:42 -07001104 }
Jens Axboedef596e2019-01-09 08:59:42 -07001105
Jens Axboe09bb8392019-03-13 12:39:28 -06001106 io_commit_cqring(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07001107 io_free_req_many(ctx, reqs, &to_free);
1108}
1109
1110static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1111 long min)
1112{
1113 struct io_kiocb *req, *tmp;
1114 LIST_HEAD(done);
1115 bool spin;
1116 int ret;
1117
1118 /*
1119 * Only spin for completions if we don't have multiple devices hanging
1120 * off our complete list, and we're under the requested amount.
1121 */
1122 spin = !ctx->poll_multi_file && *nr_events < min;
1123
1124 ret = 0;
1125 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
1126 struct kiocb *kiocb = &req->rw;
1127
1128 /*
1129 * Move completed entries to our local list. If we find a
1130 * request that requires polling, break out and complete
1131 * the done list first, if we have entries there.
1132 */
1133 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1134 list_move_tail(&req->list, &done);
1135 continue;
1136 }
1137 if (!list_empty(&done))
1138 break;
1139
1140 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1141 if (ret < 0)
1142 break;
1143
1144 if (ret && spin)
1145 spin = false;
1146 ret = 0;
1147 }
1148
1149 if (!list_empty(&done))
1150 io_iopoll_complete(ctx, nr_events, &done);
1151
1152 return ret;
1153}
1154
1155/*
1156 * Poll for a mininum of 'min' events. Note that if min == 0 we consider that a
1157 * non-spinning poll check - we'll still enter the driver poll loop, but only
1158 * as a non-spinning completion check.
1159 */
1160static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1161 long min)
1162{
Jens Axboe08f54392019-08-21 22:19:11 -06001163 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001164 int ret;
1165
1166 ret = io_do_iopoll(ctx, nr_events, min);
1167 if (ret < 0)
1168 return ret;
1169 if (!min || *nr_events >= min)
1170 return 0;
1171 }
1172
1173 return 1;
1174}
1175
1176/*
1177 * We can't just wait for polled events to come to us, we have to actively
1178 * find and complete them.
1179 */
1180static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1181{
1182 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1183 return;
1184
1185 mutex_lock(&ctx->uring_lock);
1186 while (!list_empty(&ctx->poll_list)) {
1187 unsigned int nr_events = 0;
1188
1189 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001190
1191 /*
1192 * Ensure we allow local-to-the-cpu processing to take place,
1193 * in this case we need to ensure that we reap all events.
1194 */
1195 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001196 }
1197 mutex_unlock(&ctx->uring_lock);
1198}
1199
Jens Axboe2b2ed972019-10-25 10:06:15 -06001200static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1201 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001202{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001203 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001204
1205 do {
1206 int tmin = 0;
1207
Jens Axboe500f9fb2019-08-19 12:15:59 -06001208 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001209 * Don't enter poll loop if we already have events pending.
1210 * If we do, we can potentially be spinning for commands that
1211 * already triggered a CQE (eg in error).
1212 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001213 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001214 break;
1215
1216 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001217 * If a submit got punted to a workqueue, we can have the
1218 * application entering polling for a command before it gets
1219 * issued. That app will hold the uring_lock for the duration
1220 * of the poll right here, so we need to take a breather every
1221 * now and then to ensure that the issue has a chance to add
1222 * the poll to the issued list. Otherwise we can spin here
1223 * forever, while the workqueue is stuck trying to acquire the
1224 * very same mutex.
1225 */
1226 if (!(++iters & 7)) {
1227 mutex_unlock(&ctx->uring_lock);
1228 mutex_lock(&ctx->uring_lock);
1229 }
1230
Jens Axboedef596e2019-01-09 08:59:42 -07001231 if (*nr_events < min)
1232 tmin = min - *nr_events;
1233
1234 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1235 if (ret <= 0)
1236 break;
1237 ret = 0;
1238 } while (min && !*nr_events && !need_resched());
1239
Jens Axboe2b2ed972019-10-25 10:06:15 -06001240 return ret;
1241}
1242
1243static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1244 long min)
1245{
1246 int ret;
1247
1248 /*
1249 * We disallow the app entering submit/complete with polling, but we
1250 * still need to lock the ring to prevent racing with polled issue
1251 * that got punted to a workqueue.
1252 */
1253 mutex_lock(&ctx->uring_lock);
1254 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001255 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001256 return ret;
1257}
1258
Jens Axboe491381ce2019-10-17 09:20:46 -06001259static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001260{
Jens Axboe491381ce2019-10-17 09:20:46 -06001261 /*
1262 * Tell lockdep we inherited freeze protection from submission
1263 * thread.
1264 */
1265 if (req->flags & REQ_F_ISREG) {
1266 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001267
Jens Axboe491381ce2019-10-17 09:20:46 -06001268 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001269 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001270 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001271}
1272
Jens Axboeba816ad2019-09-28 11:36:45 -06001273static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001274{
1275 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1276
Jens Axboe491381ce2019-10-17 09:20:46 -06001277 if (kiocb->ki_flags & IOCB_WRITE)
1278 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001279
Jens Axboe9e645e112019-05-10 16:07:28 -06001280 if ((req->flags & REQ_F_LINK) && res != req->result)
1281 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001282 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001283}
1284
1285static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1286{
1287 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1288
1289 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001290 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001291}
1292
Jens Axboeba816ad2019-09-28 11:36:45 -06001293static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1294{
1295 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001296 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001297
1298 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001299 io_put_req_find_next(req, &nxt);
1300
1301 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001302}
1303
Jens Axboedef596e2019-01-09 08:59:42 -07001304static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1305{
1306 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1307
Jens Axboe491381ce2019-10-17 09:20:46 -06001308 if (kiocb->ki_flags & IOCB_WRITE)
1309 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001310
Jens Axboe9e645e112019-05-10 16:07:28 -06001311 if ((req->flags & REQ_F_LINK) && res != req->result)
1312 req->flags |= REQ_F_FAIL_LINK;
1313 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001314 if (res != -EAGAIN)
1315 req->flags |= REQ_F_IOPOLL_COMPLETED;
1316}
1317
1318/*
1319 * After the iocb has been issued, it's safe to be found on the poll list.
1320 * Adding the kiocb to the list AFTER submission ensures that we don't
1321 * find it from a io_iopoll_getevents() thread before the issuer is done
1322 * accessing the kiocb cookie.
1323 */
1324static void io_iopoll_req_issued(struct io_kiocb *req)
1325{
1326 struct io_ring_ctx *ctx = req->ctx;
1327
1328 /*
1329 * Track whether we have multiple files in our lists. This will impact
1330 * how we do polling eventually, not spinning if we're on potentially
1331 * different devices.
1332 */
1333 if (list_empty(&ctx->poll_list)) {
1334 ctx->poll_multi_file = false;
1335 } else if (!ctx->poll_multi_file) {
1336 struct io_kiocb *list_req;
1337
1338 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1339 list);
1340 if (list_req->rw.ki_filp != req->rw.ki_filp)
1341 ctx->poll_multi_file = true;
1342 }
1343
1344 /*
1345 * For fast devices, IO may have already completed. If it has, add
1346 * it to the front so we find it first.
1347 */
1348 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1349 list_add(&req->list, &ctx->poll_list);
1350 else
1351 list_add_tail(&req->list, &ctx->poll_list);
1352}
1353
Jens Axboe3d6770f2019-04-13 11:50:54 -06001354static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001355{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001356 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001357 int diff = state->has_refs - state->used_refs;
1358
1359 if (diff)
1360 fput_many(state->file, diff);
1361 state->file = NULL;
1362 }
1363}
1364
1365/*
1366 * Get as many references to a file as we have IOs left in this submission,
1367 * assuming most submissions are for one file, or at least that each file
1368 * has more than one submission.
1369 */
1370static struct file *io_file_get(struct io_submit_state *state, int fd)
1371{
1372 if (!state)
1373 return fget(fd);
1374
1375 if (state->file) {
1376 if (state->fd == fd) {
1377 state->used_refs++;
1378 state->ios_left--;
1379 return state->file;
1380 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001381 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001382 }
1383 state->file = fget_many(fd, state->ios_left);
1384 if (!state->file)
1385 return NULL;
1386
1387 state->fd = fd;
1388 state->has_refs = state->ios_left;
1389 state->used_refs = 1;
1390 state->ios_left--;
1391 return state->file;
1392}
1393
Jens Axboe2b188cc2019-01-07 10:46:33 -07001394/*
1395 * If we tracked the file through the SCM inflight mechanism, we could support
1396 * any file. For now, just ensure that anything potentially problematic is done
1397 * inline.
1398 */
1399static bool io_file_supports_async(struct file *file)
1400{
1401 umode_t mode = file_inode(file)->i_mode;
1402
1403 if (S_ISBLK(mode) || S_ISCHR(mode))
1404 return true;
1405 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1406 return true;
1407
1408 return false;
1409}
1410
Pavel Begunkov267bc902019-11-07 01:41:08 +03001411static int io_prep_rw(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001412{
Pavel Begunkov267bc902019-11-07 01:41:08 +03001413 const struct io_uring_sqe *sqe = req->submit.sqe;
Jens Axboedef596e2019-01-09 08:59:42 -07001414 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001415 struct kiocb *kiocb = &req->rw;
Jens Axboe09bb8392019-03-13 12:39:28 -06001416 unsigned ioprio;
1417 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001418
Jens Axboe09bb8392019-03-13 12:39:28 -06001419 if (!req->file)
1420 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001421
Jens Axboe491381ce2019-10-17 09:20:46 -06001422 if (S_ISREG(file_inode(req->file)->i_mode))
1423 req->flags |= REQ_F_ISREG;
1424
1425 /*
1426 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1427 * we know to async punt it even if it was opened O_NONBLOCK
1428 */
1429 if (force_nonblock && !io_file_supports_async(req->file)) {
1430 req->flags |= REQ_F_MUST_PUNT;
1431 return -EAGAIN;
1432 }
Jens Axboe6b063142019-01-10 22:13:58 -07001433
Jens Axboe2b188cc2019-01-07 10:46:33 -07001434 kiocb->ki_pos = READ_ONCE(sqe->off);
1435 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1436 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1437
1438 ioprio = READ_ONCE(sqe->ioprio);
1439 if (ioprio) {
1440 ret = ioprio_check_cap(ioprio);
1441 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001442 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001443
1444 kiocb->ki_ioprio = ioprio;
1445 } else
1446 kiocb->ki_ioprio = get_current_ioprio();
1447
1448 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1449 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001450 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001451
1452 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001453 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1454 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001455 req->flags |= REQ_F_NOWAIT;
1456
1457 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001458 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001459
Jens Axboedef596e2019-01-09 08:59:42 -07001460 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001461 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1462 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001463 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001464
Jens Axboedef596e2019-01-09 08:59:42 -07001465 kiocb->ki_flags |= IOCB_HIPRI;
1466 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001467 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001468 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001469 if (kiocb->ki_flags & IOCB_HIPRI)
1470 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001471 kiocb->ki_complete = io_complete_rw;
1472 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001473 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001474}
1475
1476static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1477{
1478 switch (ret) {
1479 case -EIOCBQUEUED:
1480 break;
1481 case -ERESTARTSYS:
1482 case -ERESTARTNOINTR:
1483 case -ERESTARTNOHAND:
1484 case -ERESTART_RESTARTBLOCK:
1485 /*
1486 * We can't just restart the syscall, since previously
1487 * submitted sqes may already be in progress. Just fail this
1488 * IO with EINTR.
1489 */
1490 ret = -EINTR;
1491 /* fall through */
1492 default:
1493 kiocb->ki_complete(kiocb, ret, 0);
1494 }
1495}
1496
Jens Axboeba816ad2019-09-28 11:36:45 -06001497static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1498 bool in_async)
1499{
1500 if (in_async && ret >= 0 && nxt && kiocb->ki_complete == io_complete_rw)
1501 *nxt = __io_complete_rw(kiocb, ret);
1502 else
1503 io_rw_done(kiocb, ret);
1504}
1505
Jens Axboeedafcce2019-01-09 09:16:05 -07001506static int io_import_fixed(struct io_ring_ctx *ctx, int rw,
1507 const struct io_uring_sqe *sqe,
1508 struct iov_iter *iter)
1509{
1510 size_t len = READ_ONCE(sqe->len);
1511 struct io_mapped_ubuf *imu;
1512 unsigned index, buf_index;
1513 size_t offset;
1514 u64 buf_addr;
1515
1516 /* attempt to use fixed buffers without having provided iovecs */
1517 if (unlikely(!ctx->user_bufs))
1518 return -EFAULT;
1519
1520 buf_index = READ_ONCE(sqe->buf_index);
1521 if (unlikely(buf_index >= ctx->nr_user_bufs))
1522 return -EFAULT;
1523
1524 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1525 imu = &ctx->user_bufs[index];
1526 buf_addr = READ_ONCE(sqe->addr);
1527
1528 /* overflow */
1529 if (buf_addr + len < buf_addr)
1530 return -EFAULT;
1531 /* not inside the mapped region */
1532 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1533 return -EFAULT;
1534
1535 /*
1536 * May not be a start of buffer, set size appropriately
1537 * and advance us to the beginning.
1538 */
1539 offset = buf_addr - imu->ubuf;
1540 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001541
1542 if (offset) {
1543 /*
1544 * Don't use iov_iter_advance() here, as it's really slow for
1545 * using the latter parts of a big fixed buffer - it iterates
1546 * over each segment manually. We can cheat a bit here, because
1547 * we know that:
1548 *
1549 * 1) it's a BVEC iter, we set it up
1550 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1551 * first and last bvec
1552 *
1553 * So just find our index, and adjust the iterator afterwards.
1554 * If the offset is within the first bvec (or the whole first
1555 * bvec, just use iov_iter_advance(). This makes it easier
1556 * since we can just skip the first segment, which may not
1557 * be PAGE_SIZE aligned.
1558 */
1559 const struct bio_vec *bvec = imu->bvec;
1560
1561 if (offset <= bvec->bv_len) {
1562 iov_iter_advance(iter, offset);
1563 } else {
1564 unsigned long seg_skip;
1565
1566 /* skip first vec */
1567 offset -= bvec->bv_len;
1568 seg_skip = 1 + (offset >> PAGE_SHIFT);
1569
1570 iter->bvec = bvec + seg_skip;
1571 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001572 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001573 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001574 }
1575 }
1576
Jens Axboe5e559562019-11-13 16:12:46 -07001577 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001578}
1579
Jens Axboe87e5e6d2019-05-14 16:02:22 -06001580static ssize_t io_import_iovec(struct io_ring_ctx *ctx, int rw,
1581 const struct sqe_submit *s, struct iovec **iovec,
1582 struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001583{
1584 const struct io_uring_sqe *sqe = s->sqe;
1585 void __user *buf = u64_to_user_ptr(READ_ONCE(sqe->addr));
1586 size_t sqe_len = READ_ONCE(sqe->len);
Jens Axboeedafcce2019-01-09 09:16:05 -07001587 u8 opcode;
1588
1589 /*
1590 * We're reading ->opcode for the second time, but the first read
1591 * doesn't care whether it's _FIXED or not, so it doesn't matter
1592 * whether ->opcode changes concurrently. The first read does care
1593 * about whether it is a READ or a WRITE, so we don't trust this read
1594 * for that purpose and instead let the caller pass in the read/write
1595 * flag.
1596 */
1597 opcode = READ_ONCE(sqe->opcode);
1598 if (opcode == IORING_OP_READ_FIXED ||
1599 opcode == IORING_OP_WRITE_FIXED) {
Jens Axboe87e5e6d2019-05-14 16:02:22 -06001600 ssize_t ret = io_import_fixed(ctx, rw, sqe, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001601 *iovec = NULL;
1602 return ret;
1603 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001604
1605 if (!s->has_user)
1606 return -EFAULT;
1607
1608#ifdef CONFIG_COMPAT
1609 if (ctx->compat)
1610 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1611 iovec, iter);
1612#endif
1613
1614 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1615}
1616
Jens Axboe32960612019-09-23 11:05:34 -06001617/*
1618 * For files that don't have ->read_iter() and ->write_iter(), handle them
1619 * by looping over ->read() or ->write() manually.
1620 */
1621static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1622 struct iov_iter *iter)
1623{
1624 ssize_t ret = 0;
1625
1626 /*
1627 * Don't support polled IO through this interface, and we can't
1628 * support non-blocking either. For the latter, this just causes
1629 * the kiocb to be handled from an async context.
1630 */
1631 if (kiocb->ki_flags & IOCB_HIPRI)
1632 return -EOPNOTSUPP;
1633 if (kiocb->ki_flags & IOCB_NOWAIT)
1634 return -EAGAIN;
1635
1636 while (iov_iter_count(iter)) {
1637 struct iovec iovec = iov_iter_iovec(iter);
1638 ssize_t nr;
1639
1640 if (rw == READ) {
1641 nr = file->f_op->read(file, iovec.iov_base,
1642 iovec.iov_len, &kiocb->ki_pos);
1643 } else {
1644 nr = file->f_op->write(file, iovec.iov_base,
1645 iovec.iov_len, &kiocb->ki_pos);
1646 }
1647
1648 if (nr < 0) {
1649 if (!ret)
1650 ret = nr;
1651 break;
1652 }
1653 ret += nr;
1654 if (nr != iovec.iov_len)
1655 break;
1656 iov_iter_advance(iter, nr);
1657 }
1658
1659 return ret;
1660}
1661
Pavel Begunkov267bc902019-11-07 01:41:08 +03001662static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001663 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001664{
1665 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1666 struct kiocb *kiocb = &req->rw;
1667 struct iov_iter iter;
1668 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001669 size_t iov_count;
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001670 ssize_t read_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001671
Pavel Begunkov267bc902019-11-07 01:41:08 +03001672 ret = io_prep_rw(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001673 if (ret)
1674 return ret;
1675 file = kiocb->ki_filp;
1676
Jens Axboe2b188cc2019-01-07 10:46:33 -07001677 if (unlikely(!(file->f_mode & FMODE_READ)))
Jens Axboe09bb8392019-03-13 12:39:28 -06001678 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001679
Pavel Begunkov267bc902019-11-07 01:41:08 +03001680 ret = io_import_iovec(req->ctx, READ, &req->submit, &iovec, &iter);
Jens Axboe87e5e6d2019-05-14 16:02:22 -06001681 if (ret < 0)
Jens Axboe09bb8392019-03-13 12:39:28 -06001682 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001683
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001684 read_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001685 if (req->flags & REQ_F_LINK)
1686 req->result = read_size;
1687
Jens Axboe31b51512019-01-18 22:56:34 -07001688 iov_count = iov_iter_count(&iter);
1689 ret = rw_verify_area(READ, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001690 if (!ret) {
1691 ssize_t ret2;
1692
Jens Axboe32960612019-09-23 11:05:34 -06001693 if (file->f_op->read_iter)
1694 ret2 = call_read_iter(file, kiocb, &iter);
1695 else
1696 ret2 = loop_rw_iter(READ, file, kiocb, &iter);
1697
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001698 /*
1699 * In case of a short read, punt to async. This can happen
1700 * if we have data partially cached. Alternatively we can
1701 * return the short read, in which case the application will
1702 * need to issue another SQE and wait for it. That SQE will
1703 * need async punt anyway, so it's more efficient to do it
1704 * here.
1705 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001706 if (force_nonblock && !(req->flags & REQ_F_NOWAIT) &&
1707 (req->flags & REQ_F_ISREG) &&
1708 ret2 > 0 && ret2 < read_size)
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001709 ret2 = -EAGAIN;
1710 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboe561fb042019-10-24 07:25:42 -06001711 if (!force_nonblock || ret2 != -EAGAIN)
Pavel Begunkov267bc902019-11-07 01:41:08 +03001712 kiocb_done(kiocb, ret2, nxt, req->submit.in_async);
Jens Axboe561fb042019-10-24 07:25:42 -06001713 else
Jens Axboe2b188cc2019-01-07 10:46:33 -07001714 ret = -EAGAIN;
1715 }
1716 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001717 return ret;
1718}
1719
Pavel Begunkov267bc902019-11-07 01:41:08 +03001720static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001721 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001722{
1723 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1724 struct kiocb *kiocb = &req->rw;
1725 struct iov_iter iter;
1726 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001727 size_t iov_count;
Jens Axboe87e5e6d2019-05-14 16:02:22 -06001728 ssize_t ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001729
Pavel Begunkov267bc902019-11-07 01:41:08 +03001730 ret = io_prep_rw(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001731 if (ret)
1732 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001733
Jens Axboe2b188cc2019-01-07 10:46:33 -07001734 file = kiocb->ki_filp;
1735 if (unlikely(!(file->f_mode & FMODE_WRITE)))
Jens Axboe09bb8392019-03-13 12:39:28 -06001736 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001737
Pavel Begunkov267bc902019-11-07 01:41:08 +03001738 ret = io_import_iovec(req->ctx, WRITE, &req->submit, &iovec, &iter);
Jens Axboe87e5e6d2019-05-14 16:02:22 -06001739 if (ret < 0)
Jens Axboe09bb8392019-03-13 12:39:28 -06001740 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001741
Jens Axboe9e645e112019-05-10 16:07:28 -06001742 if (req->flags & REQ_F_LINK)
1743 req->result = ret;
1744
Jens Axboe31b51512019-01-18 22:56:34 -07001745 iov_count = iov_iter_count(&iter);
1746
1747 ret = -EAGAIN;
Jens Axboe561fb042019-10-24 07:25:42 -06001748 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT))
Jens Axboe31b51512019-01-18 22:56:34 -07001749 goto out_free;
Jens Axboe31b51512019-01-18 22:56:34 -07001750
1751 ret = rw_verify_area(WRITE, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001752 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01001753 ssize_t ret2;
1754
Jens Axboe2b188cc2019-01-07 10:46:33 -07001755 /*
1756 * Open-code file_start_write here to grab freeze protection,
1757 * which will be released by another thread in
1758 * io_complete_rw(). Fool lockdep by telling it the lock got
1759 * released so that it doesn't complain about the held lock when
1760 * we return to userspace.
1761 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001762 if (req->flags & REQ_F_ISREG) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001763 __sb_start_write(file_inode(file)->i_sb,
1764 SB_FREEZE_WRITE, true);
1765 __sb_writers_release(file_inode(file)->i_sb,
1766 SB_FREEZE_WRITE);
1767 }
1768 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01001769
Jens Axboe32960612019-09-23 11:05:34 -06001770 if (file->f_op->write_iter)
1771 ret2 = call_write_iter(file, kiocb, &iter);
1772 else
1773 ret2 = loop_rw_iter(WRITE, file, kiocb, &iter);
Jens Axboe561fb042019-10-24 07:25:42 -06001774 if (!force_nonblock || ret2 != -EAGAIN)
Pavel Begunkov267bc902019-11-07 01:41:08 +03001775 kiocb_done(kiocb, ret2, nxt, req->submit.in_async);
Jens Axboe561fb042019-10-24 07:25:42 -06001776 else
Roman Penyaev9bf79332019-03-25 20:09:24 +01001777 ret = -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001778 }
Jens Axboe31b51512019-01-18 22:56:34 -07001779out_free:
Jens Axboe2b188cc2019-01-07 10:46:33 -07001780 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001781 return ret;
1782}
1783
1784/*
1785 * IORING_OP_NOP just posts a completion event, nothing else.
1786 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07001787static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001788{
1789 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001790
Jens Axboedef596e2019-01-09 08:59:42 -07001791 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1792 return -EINVAL;
1793
Jens Axboe78e19bb2019-11-06 15:21:34 -07001794 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06001795 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001796 return 0;
1797}
1798
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001799static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1800{
Jens Axboe6b063142019-01-10 22:13:58 -07001801 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001802
Jens Axboe09bb8392019-03-13 12:39:28 -06001803 if (!req->file)
1804 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001805
Jens Axboe6b063142019-01-10 22:13:58 -07001806 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07001807 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07001808 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001809 return -EINVAL;
1810
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001811 return 0;
1812}
1813
1814static int io_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001815 struct io_kiocb **nxt, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001816{
1817 loff_t sqe_off = READ_ONCE(sqe->off);
1818 loff_t sqe_len = READ_ONCE(sqe->len);
1819 loff_t end = sqe_off + sqe_len;
1820 unsigned fsync_flags;
1821 int ret;
1822
1823 fsync_flags = READ_ONCE(sqe->fsync_flags);
1824 if (unlikely(fsync_flags & ~IORING_FSYNC_DATASYNC))
1825 return -EINVAL;
1826
1827 ret = io_prep_fsync(req, sqe);
1828 if (ret)
1829 return ret;
1830
1831 /* fsync always requires a blocking context */
1832 if (force_nonblock)
1833 return -EAGAIN;
1834
1835 ret = vfs_fsync_range(req->rw.ki_filp, sqe_off,
1836 end > 0 ? end : LLONG_MAX,
1837 fsync_flags & IORING_FSYNC_DATASYNC);
1838
Jens Axboe9e645e112019-05-10 16:07:28 -06001839 if (ret < 0 && (req->flags & REQ_F_LINK))
1840 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001841 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001842 io_put_req_find_next(req, nxt);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001843 return 0;
1844}
1845
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001846static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1847{
1848 struct io_ring_ctx *ctx = req->ctx;
1849 int ret = 0;
1850
1851 if (!req->file)
1852 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001853
1854 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1855 return -EINVAL;
1856 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
1857 return -EINVAL;
1858
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001859 return ret;
1860}
1861
1862static int io_sync_file_range(struct io_kiocb *req,
1863 const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001864 struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001865 bool force_nonblock)
1866{
1867 loff_t sqe_off;
1868 loff_t sqe_len;
1869 unsigned flags;
1870 int ret;
1871
1872 ret = io_prep_sfr(req, sqe);
1873 if (ret)
1874 return ret;
1875
1876 /* sync_file_range always requires a blocking context */
1877 if (force_nonblock)
1878 return -EAGAIN;
1879
1880 sqe_off = READ_ONCE(sqe->off);
1881 sqe_len = READ_ONCE(sqe->len);
1882 flags = READ_ONCE(sqe->sync_range_flags);
1883
1884 ret = sync_file_range(req->rw.ki_filp, sqe_off, sqe_len, flags);
1885
Jens Axboe9e645e112019-05-10 16:07:28 -06001886 if (ret < 0 && (req->flags & REQ_F_LINK))
1887 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001888 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001889 io_put_req_find_next(req, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001890 return 0;
1891}
1892
Jens Axboe0fa03c62019-04-19 13:34:07 -06001893#if defined(CONFIG_NET)
Jens Axboeaa1fa282019-04-19 13:38:09 -06001894static int io_send_recvmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001895 struct io_kiocb **nxt, bool force_nonblock,
Jens Axboeaa1fa282019-04-19 13:38:09 -06001896 long (*fn)(struct socket *, struct user_msghdr __user *,
1897 unsigned int))
1898{
Jens Axboe0fa03c62019-04-19 13:34:07 -06001899 struct socket *sock;
1900 int ret;
1901
1902 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
1903 return -EINVAL;
1904
1905 sock = sock_from_file(req->file, &ret);
1906 if (sock) {
1907 struct user_msghdr __user *msg;
1908 unsigned flags;
1909
1910 flags = READ_ONCE(sqe->msg_flags);
1911 if (flags & MSG_DONTWAIT)
1912 req->flags |= REQ_F_NOWAIT;
1913 else if (force_nonblock)
1914 flags |= MSG_DONTWAIT;
1915
1916 msg = (struct user_msghdr __user *) (unsigned long)
1917 READ_ONCE(sqe->addr);
1918
Jens Axboeaa1fa282019-04-19 13:38:09 -06001919 ret = fn(sock, msg, flags);
Jens Axboe0fa03c62019-04-19 13:34:07 -06001920 if (force_nonblock && ret == -EAGAIN)
1921 return ret;
1922 }
1923
Jens Axboe78e19bb2019-11-06 15:21:34 -07001924 io_cqring_add_event(req, ret);
Jens Axboef1f40852019-11-05 20:33:16 -07001925 if (ret < 0 && (req->flags & REQ_F_LINK))
1926 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001927 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06001928 return 0;
Jens Axboeaa1fa282019-04-19 13:38:09 -06001929}
1930#endif
1931
1932static int io_sendmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001933 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboeaa1fa282019-04-19 13:38:09 -06001934{
1935#if defined(CONFIG_NET)
Jens Axboeba816ad2019-09-28 11:36:45 -06001936 return io_send_recvmsg(req, sqe, nxt, force_nonblock,
1937 __sys_sendmsg_sock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06001938#else
1939 return -EOPNOTSUPP;
1940#endif
1941}
1942
1943static int io_recvmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001944 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboeaa1fa282019-04-19 13:38:09 -06001945{
1946#if defined(CONFIG_NET)
Jens Axboeba816ad2019-09-28 11:36:45 -06001947 return io_send_recvmsg(req, sqe, nxt, force_nonblock,
1948 __sys_recvmsg_sock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06001949#else
1950 return -EOPNOTSUPP;
1951#endif
1952}
1953
Jens Axboe17f2fe32019-10-17 14:42:58 -06001954static int io_accept(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1955 struct io_kiocb **nxt, bool force_nonblock)
1956{
1957#if defined(CONFIG_NET)
1958 struct sockaddr __user *addr;
1959 int __user *addr_len;
1960 unsigned file_flags;
1961 int flags, ret;
1962
1963 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
1964 return -EINVAL;
1965 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
1966 return -EINVAL;
1967
1968 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
1969 addr_len = (int __user *) (unsigned long) READ_ONCE(sqe->addr2);
1970 flags = READ_ONCE(sqe->accept_flags);
1971 file_flags = force_nonblock ? O_NONBLOCK : 0;
1972
1973 ret = __sys_accept4_file(req->file, file_flags, addr, addr_len, flags);
1974 if (ret == -EAGAIN && force_nonblock) {
1975 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
1976 return -EAGAIN;
1977 }
Jens Axboe8e3cca12019-11-09 19:52:33 -07001978 if (ret == -ERESTARTSYS)
1979 ret = -EINTR;
Jens Axboe17f2fe32019-10-17 14:42:58 -06001980 if (ret < 0 && (req->flags & REQ_F_LINK))
1981 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001982 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001983 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06001984 return 0;
1985#else
1986 return -EOPNOTSUPP;
1987#endif
1988}
1989
Jens Axboeeac406c2019-11-14 12:09:58 -07001990static inline void io_poll_remove_req(struct io_kiocb *req)
1991{
1992 if (!RB_EMPTY_NODE(&req->rb_node)) {
1993 rb_erase(&req->rb_node, &req->ctx->cancel_tree);
1994 RB_CLEAR_NODE(&req->rb_node);
1995 }
1996}
1997
Jens Axboe221c5eb2019-01-17 09:41:58 -07001998static void io_poll_remove_one(struct io_kiocb *req)
1999{
2000 struct io_poll_iocb *poll = &req->poll;
2001
2002 spin_lock(&poll->head->lock);
2003 WRITE_ONCE(poll->canceled, true);
2004 if (!list_empty(&poll->wait.entry)) {
2005 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07002006 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002007 }
2008 spin_unlock(&poll->head->lock);
Jens Axboeeac406c2019-11-14 12:09:58 -07002009 io_poll_remove_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002010}
2011
2012static void io_poll_remove_all(struct io_ring_ctx *ctx)
2013{
Jens Axboeeac406c2019-11-14 12:09:58 -07002014 struct rb_node *node;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002015 struct io_kiocb *req;
2016
2017 spin_lock_irq(&ctx->completion_lock);
Jens Axboeeac406c2019-11-14 12:09:58 -07002018 while ((node = rb_first(&ctx->cancel_tree)) != NULL) {
2019 req = rb_entry(node, struct io_kiocb, rb_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002020 io_poll_remove_one(req);
2021 }
2022 spin_unlock_irq(&ctx->completion_lock);
2023}
2024
Jens Axboe47f46762019-11-09 17:43:02 -07002025static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2026{
Jens Axboeeac406c2019-11-14 12:09:58 -07002027 struct rb_node *p, *parent = NULL;
Jens Axboe47f46762019-11-09 17:43:02 -07002028 struct io_kiocb *req;
2029
Jens Axboeeac406c2019-11-14 12:09:58 -07002030 p = ctx->cancel_tree.rb_node;
2031 while (p) {
2032 parent = p;
2033 req = rb_entry(parent, struct io_kiocb, rb_node);
2034 if (sqe_addr < req->user_data) {
2035 p = p->rb_left;
2036 } else if (sqe_addr > req->user_data) {
2037 p = p->rb_right;
2038 } else {
2039 io_poll_remove_one(req);
2040 return 0;
2041 }
Jens Axboe47f46762019-11-09 17:43:02 -07002042 }
2043
2044 return -ENOENT;
2045}
2046
Jens Axboe221c5eb2019-01-17 09:41:58 -07002047/*
2048 * Find a running poll command that matches one specified in sqe->addr,
2049 * and remove it if found.
2050 */
2051static int io_poll_remove(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2052{
2053 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07002054 int ret;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002055
2056 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2057 return -EINVAL;
2058 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2059 sqe->poll_events)
2060 return -EINVAL;
2061
2062 spin_lock_irq(&ctx->completion_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07002063 ret = io_poll_cancel(ctx, READ_ONCE(sqe->addr));
Jens Axboe221c5eb2019-01-17 09:41:58 -07002064 spin_unlock_irq(&ctx->completion_lock);
2065
Jens Axboe78e19bb2019-11-06 15:21:34 -07002066 io_cqring_add_event(req, ret);
Jens Axboef1f40852019-11-05 20:33:16 -07002067 if (ret < 0 && (req->flags & REQ_F_LINK))
2068 req->flags |= REQ_F_FAIL_LINK;
Jens Axboee65ef562019-03-12 10:16:44 -06002069 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002070 return 0;
2071}
2072
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002073static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002074{
Jackie Liua197f662019-11-08 08:09:12 -07002075 struct io_ring_ctx *ctx = req->ctx;
2076
Jens Axboe8c838782019-03-12 15:48:16 -06002077 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002078 if (error)
2079 io_cqring_fill_event(req, error);
2080 else
2081 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06002082 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002083}
2084
Jens Axboe561fb042019-10-24 07:25:42 -06002085static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002086{
Jens Axboe561fb042019-10-24 07:25:42 -06002087 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002088 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2089 struct io_poll_iocb *poll = &req->poll;
2090 struct poll_table_struct pt = { ._key = poll->events };
2091 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07002092 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002093 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002094 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002095
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002096 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06002097 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002098 ret = -ECANCELED;
2099 } else if (READ_ONCE(poll->canceled)) {
2100 ret = -ECANCELED;
2101 }
Jens Axboe561fb042019-10-24 07:25:42 -06002102
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002103 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002104 mask = vfs_poll(poll->file, &pt) & poll->events;
2105
2106 /*
2107 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2108 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2109 * synchronize with them. In the cancellation case the list_del_init
2110 * itself is not actually needed, but harmless so we keep it in to
2111 * avoid further branches in the fast path.
2112 */
2113 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002114 if (!mask && ret != -ECANCELED) {
Jens Axboe221c5eb2019-01-17 09:41:58 -07002115 add_wait_queue(poll->head, &poll->wait);
2116 spin_unlock_irq(&ctx->completion_lock);
2117 return;
2118 }
Jens Axboeeac406c2019-11-14 12:09:58 -07002119 io_poll_remove_req(req);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002120 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002121 spin_unlock_irq(&ctx->completion_lock);
2122
Jens Axboe8c838782019-03-12 15:48:16 -06002123 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07002124
Jens Axboefba38c22019-11-18 12:27:57 -07002125 if (ret < 0 && req->flags & REQ_F_LINK)
2126 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002127 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07002128 if (nxt)
2129 *workptr = &nxt->work;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002130}
2131
2132static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2133 void *key)
2134{
2135 struct io_poll_iocb *poll = container_of(wait, struct io_poll_iocb,
2136 wait);
2137 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2138 struct io_ring_ctx *ctx = req->ctx;
2139 __poll_t mask = key_to_poll(key);
Jens Axboe8c838782019-03-12 15:48:16 -06002140 unsigned long flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002141
2142 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06002143 if (mask && !(mask & poll->events))
2144 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002145
2146 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002147
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002148 /*
2149 * Run completion inline if we can. We're using trylock here because
2150 * we are violating the completion_lock -> poll wq lock ordering.
2151 * If we have a link timeout we're going to need the completion_lock
2152 * for finalizing the request, mark us as having grabbed that already.
2153 */
Jens Axboe8c838782019-03-12 15:48:16 -06002154 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboeeac406c2019-11-14 12:09:58 -07002155 io_poll_remove_req(req);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002156 io_poll_complete(req, mask, 0);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002157 req->flags |= REQ_F_COMP_LOCKED;
2158 io_put_req(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002159 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2160
2161 io_cqring_ev_posted(ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06002162 } else {
Jackie Liua197f662019-11-08 08:09:12 -07002163 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002164 }
2165
Jens Axboe221c5eb2019-01-17 09:41:58 -07002166 return 1;
2167}
2168
2169struct io_poll_table {
2170 struct poll_table_struct pt;
2171 struct io_kiocb *req;
2172 int error;
2173};
2174
2175static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2176 struct poll_table_struct *p)
2177{
2178 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2179
2180 if (unlikely(pt->req->poll.head)) {
2181 pt->error = -EINVAL;
2182 return;
2183 }
2184
2185 pt->error = 0;
2186 pt->req->poll.head = head;
2187 add_wait_queue(head, &pt->req->poll.wait);
2188}
2189
Jens Axboeeac406c2019-11-14 12:09:58 -07002190static void io_poll_req_insert(struct io_kiocb *req)
2191{
2192 struct io_ring_ctx *ctx = req->ctx;
2193 struct rb_node **p = &ctx->cancel_tree.rb_node;
2194 struct rb_node *parent = NULL;
2195 struct io_kiocb *tmp;
2196
2197 while (*p) {
2198 parent = *p;
2199 tmp = rb_entry(parent, struct io_kiocb, rb_node);
2200 if (req->user_data < tmp->user_data)
2201 p = &(*p)->rb_left;
2202 else
2203 p = &(*p)->rb_right;
2204 }
2205 rb_link_node(&req->rb_node, parent, p);
2206 rb_insert_color(&req->rb_node, &ctx->cancel_tree);
2207}
2208
Jens Axboe89723d02019-11-05 15:32:58 -07002209static int io_poll_add(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2210 struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002211{
2212 struct io_poll_iocb *poll = &req->poll;
2213 struct io_ring_ctx *ctx = req->ctx;
2214 struct io_poll_table ipt;
Jens Axboe8c838782019-03-12 15:48:16 -06002215 bool cancel = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002216 __poll_t mask;
2217 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002218
2219 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2220 return -EINVAL;
2221 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2222 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06002223 if (!poll->file)
2224 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002225
Jens Axboe6cc47d12019-09-18 11:18:23 -06002226 req->submit.sqe = NULL;
Jens Axboe561fb042019-10-24 07:25:42 -06002227 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002228 events = READ_ONCE(sqe->poll_events);
2229 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeeac406c2019-11-14 12:09:58 -07002230 RB_CLEAR_NODE(&req->rb_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002231
Jens Axboe221c5eb2019-01-17 09:41:58 -07002232 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06002233 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002234 poll->canceled = false;
2235
2236 ipt.pt._qproc = io_poll_queue_proc;
2237 ipt.pt._key = poll->events;
2238 ipt.req = req;
2239 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2240
2241 /* initialized the list so that we can do list_empty checks */
2242 INIT_LIST_HEAD(&poll->wait.entry);
2243 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
2244
Jens Axboe36703242019-07-25 10:20:18 -06002245 INIT_LIST_HEAD(&req->list);
2246
Jens Axboe221c5eb2019-01-17 09:41:58 -07002247 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002248
2249 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06002250 if (likely(poll->head)) {
2251 spin_lock(&poll->head->lock);
2252 if (unlikely(list_empty(&poll->wait.entry))) {
2253 if (ipt.error)
2254 cancel = true;
2255 ipt.error = 0;
2256 mask = 0;
2257 }
2258 if (mask || ipt.error)
2259 list_del_init(&poll->wait.entry);
2260 else if (cancel)
2261 WRITE_ONCE(poll->canceled, true);
2262 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07002263 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002264 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002265 }
Jens Axboe8c838782019-03-12 15:48:16 -06002266 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06002267 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002268 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06002269 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07002270 spin_unlock_irq(&ctx->completion_lock);
2271
Jens Axboe8c838782019-03-12 15:48:16 -06002272 if (mask) {
2273 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002274 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002275 }
Jens Axboe8c838782019-03-12 15:48:16 -06002276 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002277}
2278
Jens Axboe5262f562019-09-17 12:26:57 -06002279static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2280{
Jens Axboead8a48a2019-11-15 08:49:11 -07002281 struct io_timeout_data *data = container_of(timer,
2282 struct io_timeout_data, timer);
2283 struct io_kiocb *req = data->req;
2284 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06002285 unsigned long flags;
2286
Jens Axboe5262f562019-09-17 12:26:57 -06002287 atomic_inc(&ctx->cq_timeouts);
2288
2289 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08002290 /*
Jens Axboe11365042019-10-16 09:08:32 -06002291 * We could be racing with timeout deletion. If the list is empty,
2292 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08002293 */
Jens Axboe842f9612019-10-29 12:34:10 -06002294 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06002295 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06002296
Jens Axboe11365042019-10-16 09:08:32 -06002297 /*
2298 * Adjust the reqs sequence before the current one because it
2299 * will consume a slot in the cq_ring and the the cq_tail
2300 * pointer will be increased, otherwise other timeout reqs may
2301 * return in advance without waiting for enough wait_nr.
2302 */
2303 prev = req;
2304 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2305 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06002306 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06002307 }
Jens Axboe842f9612019-10-29 12:34:10 -06002308
Jens Axboe78e19bb2019-11-06 15:21:34 -07002309 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06002310 io_commit_cqring(ctx);
2311 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2312
2313 io_cqring_ev_posted(ctx);
Jens Axboef1f40852019-11-05 20:33:16 -07002314 if (req->flags & REQ_F_LINK)
2315 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe5262f562019-09-17 12:26:57 -06002316 io_put_req(req);
2317 return HRTIMER_NORESTART;
2318}
2319
Jens Axboe47f46762019-11-09 17:43:02 -07002320static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2321{
2322 struct io_kiocb *req;
2323 int ret = -ENOENT;
2324
2325 list_for_each_entry(req, &ctx->timeout_list, list) {
2326 if (user_data == req->user_data) {
2327 list_del_init(&req->list);
2328 ret = 0;
2329 break;
2330 }
2331 }
2332
2333 if (ret == -ENOENT)
2334 return ret;
2335
Jens Axboead8a48a2019-11-15 08:49:11 -07002336 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe47f46762019-11-09 17:43:02 -07002337 if (ret == -1)
2338 return -EALREADY;
2339
Jens Axboefba38c22019-11-18 12:27:57 -07002340 if (req->flags & REQ_F_LINK)
2341 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe47f46762019-11-09 17:43:02 -07002342 io_cqring_fill_event(req, -ECANCELED);
2343 io_put_req(req);
2344 return 0;
2345}
2346
Jens Axboe11365042019-10-16 09:08:32 -06002347/*
2348 * Remove or update an existing timeout command
2349 */
2350static int io_timeout_remove(struct io_kiocb *req,
2351 const struct io_uring_sqe *sqe)
2352{
2353 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe11365042019-10-16 09:08:32 -06002354 unsigned flags;
Jens Axboe47f46762019-11-09 17:43:02 -07002355 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06002356
2357 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2358 return -EINVAL;
2359 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2360 return -EINVAL;
2361 flags = READ_ONCE(sqe->timeout_flags);
2362 if (flags)
2363 return -EINVAL;
2364
Jens Axboe11365042019-10-16 09:08:32 -06002365 spin_lock_irq(&ctx->completion_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07002366 ret = io_timeout_cancel(ctx, READ_ONCE(sqe->addr));
Jens Axboe11365042019-10-16 09:08:32 -06002367
Jens Axboe47f46762019-11-09 17:43:02 -07002368 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06002369 io_commit_cqring(ctx);
2370 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002371 io_cqring_ev_posted(ctx);
Jens Axboe47f46762019-11-09 17:43:02 -07002372 if (ret < 0 && req->flags & REQ_F_LINK)
2373 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002374 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06002375 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06002376}
2377
Jens Axboead8a48a2019-11-15 08:49:11 -07002378static int io_timeout_setup(struct io_kiocb *req)
Jens Axboe5262f562019-09-17 12:26:57 -06002379{
Jens Axboead8a48a2019-11-15 08:49:11 -07002380 const struct io_uring_sqe *sqe = req->submit.sqe;
2381 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06002382 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06002383
Jens Axboead8a48a2019-11-15 08:49:11 -07002384 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06002385 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002386 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06002387 return -EINVAL;
2388 flags = READ_ONCE(sqe->timeout_flags);
2389 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06002390 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06002391
Jens Axboead8a48a2019-11-15 08:49:11 -07002392 data = kzalloc(sizeof(struct io_timeout_data), GFP_KERNEL);
2393 if (!data)
2394 return -ENOMEM;
2395 data->req = req;
2396 req->timeout.data = data;
2397 req->flags |= REQ_F_TIMEOUT;
2398
2399 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06002400 return -EFAULT;
2401
Jens Axboe11365042019-10-16 09:08:32 -06002402 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07002403 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06002404 else
Jens Axboead8a48a2019-11-15 08:49:11 -07002405 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06002406
Jens Axboead8a48a2019-11-15 08:49:11 -07002407 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
2408 return 0;
2409}
2410
2411static int io_timeout(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2412{
2413 unsigned count;
2414 struct io_ring_ctx *ctx = req->ctx;
2415 struct io_timeout_data *data;
2416 struct list_head *entry;
2417 unsigned span = 0;
2418 int ret;
2419
2420 ret = io_timeout_setup(req);
2421 /* common setup allows flags (like links) set, we don't */
2422 if (!ret && sqe->flags)
2423 ret = -EINVAL;
2424 if (ret)
2425 return ret;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002426
Jens Axboe5262f562019-09-17 12:26:57 -06002427 /*
2428 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07002429 * timeout event to be satisfied. If it isn't set, then this is
2430 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06002431 */
2432 count = READ_ONCE(sqe->off);
Jens Axboe93bd25b2019-11-11 23:34:31 -07002433 if (!count) {
2434 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2435 spin_lock_irq(&ctx->completion_lock);
2436 entry = ctx->timeout_list.prev;
2437 goto add;
2438 }
Jens Axboe5262f562019-09-17 12:26:57 -06002439
2440 req->sequence = ctx->cached_sq_head + count - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08002441 /* reuse it to store the count */
2442 req->submit.sequence = count;
Jens Axboe5262f562019-09-17 12:26:57 -06002443
2444 /*
2445 * Insertion sort, ensuring the first entry in the list is always
2446 * the one we need first.
2447 */
Jens Axboe5262f562019-09-17 12:26:57 -06002448 spin_lock_irq(&ctx->completion_lock);
2449 list_for_each_prev(entry, &ctx->timeout_list) {
2450 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08002451 unsigned nxt_sq_head;
2452 long long tmp, tmp_nxt;
Jens Axboe5262f562019-09-17 12:26:57 -06002453
Jens Axboe93bd25b2019-11-11 23:34:31 -07002454 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2455 continue;
2456
yangerkun5da0fb12019-10-15 21:59:29 +08002457 /*
2458 * Since cached_sq_head + count - 1 can overflow, use type long
2459 * long to store it.
2460 */
2461 tmp = (long long)ctx->cached_sq_head + count - 1;
2462 nxt_sq_head = nxt->sequence - nxt->submit.sequence + 1;
2463 tmp_nxt = (long long)nxt_sq_head + nxt->submit.sequence - 1;
2464
2465 /*
2466 * cached_sq_head may overflow, and it will never overflow twice
2467 * once there is some timeout req still be valid.
2468 */
2469 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08002470 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08002471
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002472 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06002473 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002474
2475 /*
2476 * Sequence of reqs after the insert one and itself should
2477 * be adjusted because each timeout req consumes a slot.
2478 */
2479 span++;
2480 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06002481 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002482 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002483add:
Jens Axboe5262f562019-09-17 12:26:57 -06002484 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07002485 data = req->timeout.data;
2486 data->timer.function = io_timeout_fn;
2487 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06002488 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002489 return 0;
2490}
2491
Jens Axboe62755e32019-10-28 21:49:21 -06002492static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06002493{
Jens Axboe62755e32019-10-28 21:49:21 -06002494 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06002495
Jens Axboe62755e32019-10-28 21:49:21 -06002496 return req->user_data == (unsigned long) data;
2497}
2498
Jens Axboee977d6d2019-11-05 12:39:45 -07002499static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06002500{
Jens Axboe62755e32019-10-28 21:49:21 -06002501 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06002502 int ret = 0;
2503
Jens Axboe62755e32019-10-28 21:49:21 -06002504 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
2505 switch (cancel_ret) {
2506 case IO_WQ_CANCEL_OK:
2507 ret = 0;
2508 break;
2509 case IO_WQ_CANCEL_RUNNING:
2510 ret = -EALREADY;
2511 break;
2512 case IO_WQ_CANCEL_NOTFOUND:
2513 ret = -ENOENT;
2514 break;
2515 }
2516
Jens Axboee977d6d2019-11-05 12:39:45 -07002517 return ret;
2518}
2519
Jens Axboe47f46762019-11-09 17:43:02 -07002520static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
2521 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002522 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07002523{
2524 unsigned long flags;
2525 int ret;
2526
2527 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
2528 if (ret != -ENOENT) {
2529 spin_lock_irqsave(&ctx->completion_lock, flags);
2530 goto done;
2531 }
2532
2533 spin_lock_irqsave(&ctx->completion_lock, flags);
2534 ret = io_timeout_cancel(ctx, sqe_addr);
2535 if (ret != -ENOENT)
2536 goto done;
2537 ret = io_poll_cancel(ctx, sqe_addr);
2538done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002539 if (!ret)
2540 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07002541 io_cqring_fill_event(req, ret);
2542 io_commit_cqring(ctx);
2543 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2544 io_cqring_ev_posted(ctx);
2545
2546 if (ret < 0 && (req->flags & REQ_F_LINK))
2547 req->flags |= REQ_F_FAIL_LINK;
2548 io_put_req_find_next(req, nxt);
2549}
2550
Jens Axboee977d6d2019-11-05 12:39:45 -07002551static int io_async_cancel(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2552 struct io_kiocb **nxt)
2553{
2554 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee977d6d2019-11-05 12:39:45 -07002555
2556 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2557 return -EINVAL;
2558 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
2559 sqe->cancel_flags)
2560 return -EINVAL;
2561
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002562 io_async_find_and_cancel(ctx, req, READ_ONCE(sqe->addr), nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06002563 return 0;
2564}
2565
Jackie Liua197f662019-11-08 08:09:12 -07002566static int io_req_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -06002567{
Pavel Begunkov267bc902019-11-07 01:41:08 +03002568 const struct io_uring_sqe *sqe = req->submit.sqe;
Jens Axboede0617e2019-04-06 21:51:27 -06002569 struct io_uring_sqe *sqe_copy;
Jackie Liua197f662019-11-08 08:09:12 -07002570 struct io_ring_ctx *ctx = req->ctx;
Jens Axboede0617e2019-04-06 21:51:27 -06002571
Bob Liu9d858b22019-11-13 18:06:25 +08002572 /* Still need defer if there is pending req in defer list. */
2573 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06002574 return 0;
2575
2576 sqe_copy = kmalloc(sizeof(*sqe_copy), GFP_KERNEL);
2577 if (!sqe_copy)
2578 return -EAGAIN;
2579
2580 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08002581 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06002582 spin_unlock_irq(&ctx->completion_lock);
2583 kfree(sqe_copy);
2584 return 0;
2585 }
2586
2587 memcpy(sqe_copy, sqe, sizeof(*sqe_copy));
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03002588 req->flags |= REQ_F_FREE_SQE;
Jens Axboede0617e2019-04-06 21:51:27 -06002589 req->submit.sqe = sqe_copy;
2590
Jens Axboe915967f2019-11-21 09:01:20 -07002591 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06002592 list_add_tail(&req->list, &ctx->defer_list);
2593 spin_unlock_irq(&ctx->completion_lock);
2594 return -EIOCBQUEUED;
2595}
2596
Pavel Begunkovd7324472019-11-21 21:24:36 +03002597static int io_issue_sqe(struct io_kiocb *req, struct io_kiocb **nxt,
2598 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002599{
Jens Axboee0c5c572019-03-12 10:18:47 -06002600 int ret, opcode;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002601 struct sqe_submit *s = &req->submit;
Jackie Liua197f662019-11-08 08:09:12 -07002602 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002603
2604 opcode = READ_ONCE(s->sqe->opcode);
2605 switch (opcode) {
2606 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07002607 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002608 break;
2609 case IORING_OP_READV:
Jens Axboeedafcce2019-01-09 09:16:05 -07002610 if (unlikely(s->sqe->buf_index))
2611 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002612 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002613 break;
2614 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07002615 if (unlikely(s->sqe->buf_index))
2616 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002617 ret = io_write(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07002618 break;
2619 case IORING_OP_READ_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03002620 ret = io_read(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07002621 break;
2622 case IORING_OP_WRITE_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03002623 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002624 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002625 case IORING_OP_FSYNC:
Jens Axboeba816ad2019-09-28 11:36:45 -06002626 ret = io_fsync(req, s->sqe, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002627 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002628 case IORING_OP_POLL_ADD:
Jens Axboe89723d02019-11-05 15:32:58 -07002629 ret = io_poll_add(req, s->sqe, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002630 break;
2631 case IORING_OP_POLL_REMOVE:
2632 ret = io_poll_remove(req, s->sqe);
2633 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002634 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboeba816ad2019-09-28 11:36:45 -06002635 ret = io_sync_file_range(req, s->sqe, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002636 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002637 case IORING_OP_SENDMSG:
Jens Axboeba816ad2019-09-28 11:36:45 -06002638 ret = io_sendmsg(req, s->sqe, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002639 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06002640 case IORING_OP_RECVMSG:
Jens Axboeba816ad2019-09-28 11:36:45 -06002641 ret = io_recvmsg(req, s->sqe, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002642 break;
Jens Axboe5262f562019-09-17 12:26:57 -06002643 case IORING_OP_TIMEOUT:
2644 ret = io_timeout(req, s->sqe);
2645 break;
Jens Axboe11365042019-10-16 09:08:32 -06002646 case IORING_OP_TIMEOUT_REMOVE:
2647 ret = io_timeout_remove(req, s->sqe);
2648 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002649 case IORING_OP_ACCEPT:
2650 ret = io_accept(req, s->sqe, nxt, force_nonblock);
2651 break;
Jens Axboe62755e32019-10-28 21:49:21 -06002652 case IORING_OP_ASYNC_CANCEL:
2653 ret = io_async_cancel(req, s->sqe, nxt);
2654 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002655 default:
2656 ret = -EINVAL;
2657 break;
2658 }
2659
Jens Axboedef596e2019-01-09 08:59:42 -07002660 if (ret)
2661 return ret;
2662
2663 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe9e645e112019-05-10 16:07:28 -06002664 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07002665 return -EAGAIN;
2666
2667 /* workqueue context doesn't hold uring_lock, grab it now */
Jackie Liuba5290c2019-10-09 09:19:59 +08002668 if (s->in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002669 mutex_lock(&ctx->uring_lock);
2670 io_iopoll_req_issued(req);
Jackie Liuba5290c2019-10-09 09:19:59 +08002671 if (s->in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002672 mutex_unlock(&ctx->uring_lock);
2673 }
2674
2675 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002676}
2677
Jens Axboeb76da702019-11-20 13:05:32 -07002678static void io_link_work_cb(struct io_wq_work **workptr)
2679{
2680 struct io_wq_work *work = *workptr;
2681 struct io_kiocb *link = work->data;
2682
2683 io_queue_linked_timeout(link);
2684 work->func = io_wq_submit_work;
2685}
2686
Jens Axboe561fb042019-10-24 07:25:42 -06002687static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07002688{
Jens Axboe561fb042019-10-24 07:25:42 -06002689 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002690 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06002691 struct sqe_submit *s = &req->submit;
Jens Axboe561fb042019-10-24 07:25:42 -06002692 struct io_kiocb *nxt = NULL;
2693 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002694
Jens Axboe561fb042019-10-24 07:25:42 -06002695 /* Ensure we clear previously set non-block flag */
2696 req->rw.ki_flags &= ~IOCB_NOWAIT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002697
Jens Axboe561fb042019-10-24 07:25:42 -06002698 if (work->flags & IO_WQ_WORK_CANCEL)
2699 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07002700
Jens Axboe561fb042019-10-24 07:25:42 -06002701 if (!ret) {
2702 s->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
2703 s->in_async = true;
2704 do {
Pavel Begunkovd7324472019-11-21 21:24:36 +03002705 ret = io_issue_sqe(req, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06002706 /*
2707 * We can get EAGAIN for polled IO even though we're
2708 * forcing a sync submission from here, since we can't
2709 * wait for request slots on the block side.
2710 */
2711 if (ret != -EAGAIN)
2712 break;
2713 cond_resched();
2714 } while (1);
2715 }
Jens Axboe31b51512019-01-18 22:56:34 -07002716
Jens Axboe561fb042019-10-24 07:25:42 -06002717 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08002718 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06002719
Jens Axboe561fb042019-10-24 07:25:42 -06002720 if (ret) {
Jens Axboef1f40852019-11-05 20:33:16 -07002721 if (req->flags & REQ_F_LINK)
2722 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07002723 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06002724 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07002725 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002726
Jens Axboe561fb042019-10-24 07:25:42 -06002727 /* if a dependent link is ready, pass it back */
2728 if (!ret && nxt) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07002729 struct io_kiocb *link;
2730
2731 io_prep_async_work(nxt, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06002732 *workptr = &nxt->work;
Jens Axboeb76da702019-11-20 13:05:32 -07002733 if (link) {
2734 nxt->work.flags |= IO_WQ_WORK_CB;
2735 nxt->work.func = io_link_work_cb;
2736 nxt->work.data = link;
2737 }
Jens Axboeedafcce2019-01-09 09:16:05 -07002738 }
Jens Axboe31b51512019-01-18 22:56:34 -07002739}
Jens Axboe2b188cc2019-01-07 10:46:33 -07002740
Jens Axboe09bb8392019-03-13 12:39:28 -06002741static bool io_op_needs_file(const struct io_uring_sqe *sqe)
2742{
2743 int op = READ_ONCE(sqe->opcode);
2744
2745 switch (op) {
2746 case IORING_OP_NOP:
2747 case IORING_OP_POLL_REMOVE:
Pavel Begunkov5683e542019-11-14 00:59:19 +03002748 case IORING_OP_TIMEOUT:
Pavel Begunkova320e9f2019-11-14 00:11:01 +03002749 case IORING_OP_TIMEOUT_REMOVE:
2750 case IORING_OP_ASYNC_CANCEL:
2751 case IORING_OP_LINK_TIMEOUT:
Jens Axboe09bb8392019-03-13 12:39:28 -06002752 return false;
2753 default:
2754 return true;
2755 }
2756}
2757
Jens Axboe65e19f52019-10-26 07:20:21 -06002758static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
2759 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06002760{
Jens Axboe65e19f52019-10-26 07:20:21 -06002761 struct fixed_file_table *table;
2762
2763 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
2764 return table->files[index & IORING_FILE_TABLE_MASK];
2765}
2766
Jackie Liua197f662019-11-08 08:09:12 -07002767static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06002768{
Pavel Begunkov267bc902019-11-07 01:41:08 +03002769 struct sqe_submit *s = &req->submit;
Jackie Liua197f662019-11-08 08:09:12 -07002770 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06002771 unsigned flags;
2772 int fd;
2773
2774 flags = READ_ONCE(s->sqe->flags);
2775 fd = READ_ONCE(s->sqe->fd);
2776
Jackie Liu4fe2c962019-09-09 20:50:40 +08002777 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06002778 req->flags |= REQ_F_IO_DRAIN;
Jackie Liu4fe2c962019-09-09 20:50:40 +08002779 /*
2780 * All io need record the previous position, if LINK vs DARIN,
2781 * it can be used to mark the position of the first IO in the
2782 * link list.
2783 */
2784 req->sequence = s->sequence;
Jens Axboede0617e2019-04-06 21:51:27 -06002785
Jens Axboe60c112b2019-06-21 10:20:18 -06002786 if (!io_op_needs_file(s->sqe))
Jens Axboe09bb8392019-03-13 12:39:28 -06002787 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06002788
2789 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe65e19f52019-10-26 07:20:21 -06002790 if (unlikely(!ctx->file_table ||
Jens Axboe09bb8392019-03-13 12:39:28 -06002791 (unsigned) fd >= ctx->nr_user_files))
2792 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06002793 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06002794 req->file = io_file_from_index(ctx, fd);
2795 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06002796 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06002797 req->flags |= REQ_F_FIXED_FILE;
2798 } else {
2799 if (s->needs_fixed_file)
2800 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002801 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06002802 req->file = io_file_get(state, fd);
2803 if (unlikely(!req->file))
2804 return -EBADF;
2805 }
2806
2807 return 0;
2808}
2809
Jackie Liua197f662019-11-08 08:09:12 -07002810static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002811{
Jens Axboefcb323c2019-10-24 12:39:47 -06002812 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07002813 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06002814
2815 rcu_read_lock();
2816 spin_lock_irq(&ctx->inflight_lock);
2817 /*
2818 * We use the f_ops->flush() handler to ensure that we can flush
2819 * out work accessing these files if the fd is closed. Check if
2820 * the fd has changed since we started down this path, and disallow
2821 * this operation if it has.
2822 */
2823 if (fcheck(req->submit.ring_fd) == req->submit.ring_file) {
2824 list_add(&req->inflight_entry, &ctx->inflight_list);
2825 req->flags |= REQ_F_INFLIGHT;
2826 req->work.files = current->files;
2827 ret = 0;
2828 }
2829 spin_unlock_irq(&ctx->inflight_lock);
2830 rcu_read_unlock();
2831
2832 return ret;
2833}
2834
Jens Axboe2665abf2019-11-05 12:40:47 -07002835static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
2836{
Jens Axboead8a48a2019-11-15 08:49:11 -07002837 struct io_timeout_data *data = container_of(timer,
2838 struct io_timeout_data, timer);
2839 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07002840 struct io_ring_ctx *ctx = req->ctx;
2841 struct io_kiocb *prev = NULL;
2842 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07002843
2844 spin_lock_irqsave(&ctx->completion_lock, flags);
2845
2846 /*
2847 * We don't expect the list to be empty, that will only happen if we
2848 * race with the completion of the linked work.
2849 */
2850 if (!list_empty(&req->list)) {
2851 prev = list_entry(req->list.prev, struct io_kiocb, link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07002852 if (refcount_inc_not_zero(&prev->refs)) {
Jens Axboe76a46e02019-11-10 23:34:16 -07002853 list_del_init(&req->list);
Jens Axboe5d960722019-11-19 15:31:28 -07002854 prev->flags &= ~REQ_F_LINK_TIMEOUT;
2855 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07002856 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07002857 }
2858
2859 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2860
2861 if (prev) {
Jens Axboefba38c22019-11-18 12:27:57 -07002862 if (prev->flags & REQ_F_LINK)
2863 prev->flags |= REQ_F_FAIL_LINK;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002864 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
2865 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07002866 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07002867 } else {
2868 io_cqring_add_event(req, -ETIME);
2869 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07002870 }
Jens Axboe2665abf2019-11-05 12:40:47 -07002871 return HRTIMER_NORESTART;
2872}
2873
Jens Axboead8a48a2019-11-15 08:49:11 -07002874static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07002875{
Jens Axboe76a46e02019-11-10 23:34:16 -07002876 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07002877
Jens Axboe76a46e02019-11-10 23:34:16 -07002878 /*
2879 * If the list is now empty, then our linked request finished before
2880 * we got a chance to setup the timer
2881 */
2882 spin_lock_irq(&ctx->completion_lock);
2883 if (!list_empty(&req->list)) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07002884 struct io_timeout_data *data = req->timeout.data;
2885
Jens Axboead8a48a2019-11-15 08:49:11 -07002886 data->timer.function = io_link_timeout_fn;
2887 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
2888 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07002889 }
Jens Axboe76a46e02019-11-10 23:34:16 -07002890 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07002891
Jens Axboe2665abf2019-11-05 12:40:47 -07002892 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07002893 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07002894}
2895
Jens Axboead8a48a2019-11-15 08:49:11 -07002896static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07002897{
2898 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002899
Jens Axboe2665abf2019-11-05 12:40:47 -07002900 if (!(req->flags & REQ_F_LINK))
2901 return NULL;
2902
2903 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb, list);
Jens Axboe76a46e02019-11-10 23:34:16 -07002904 if (!nxt || nxt->submit.sqe->opcode != IORING_OP_LINK_TIMEOUT)
2905 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07002906
Jens Axboe76a46e02019-11-10 23:34:16 -07002907 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07002908 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07002909}
2910
Jens Axboe0e0702d2019-11-14 21:42:10 -07002911static void __io_queue_sqe(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002912{
Jens Axboe94ae5e72019-11-14 19:39:52 -07002913 struct io_kiocb *nxt = io_prep_linked_timeout(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002914 int ret;
2915
Pavel Begunkovd7324472019-11-21 21:24:36 +03002916 ret = io_issue_sqe(req, NULL, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06002917
2918 /*
2919 * We async punt it if the file wasn't marked NOWAIT, or if the file
2920 * doesn't support non-blocking read/write attempts
2921 */
2922 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
2923 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkov267bc902019-11-07 01:41:08 +03002924 struct sqe_submit *s = &req->submit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002925 struct io_uring_sqe *sqe_copy;
2926
Jackie Liu954dab12019-09-18 10:37:52 +08002927 sqe_copy = kmemdup(s->sqe, sizeof(*sqe_copy), GFP_KERNEL);
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03002928 if (!sqe_copy)
2929 goto err;
Jens Axboee65ef562019-03-12 10:16:44 -06002930
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03002931 s->sqe = sqe_copy;
2932 req->flags |= REQ_F_FREE_SQE;
2933
2934 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
2935 ret = io_grab_files(req);
2936 if (ret)
2937 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002938 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03002939
2940 /*
2941 * Queued up for async execution, worker will release
2942 * submit reference when the iocb is actually submitted.
2943 */
2944 io_queue_async_work(req);
2945 return;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002946 }
Jens Axboee65ef562019-03-12 10:16:44 -06002947
Jens Axboefcb323c2019-10-24 12:39:47 -06002948err:
Jens Axboee65ef562019-03-12 10:16:44 -06002949 /* drop submission reference */
2950 io_put_req(req);
2951
Jens Axboe76a46e02019-11-10 23:34:16 -07002952 if (nxt) {
2953 if (!ret)
Jens Axboead8a48a2019-11-15 08:49:11 -07002954 io_queue_linked_timeout(nxt);
Jens Axboe76a46e02019-11-10 23:34:16 -07002955 else
2956 io_put_req(nxt);
2957 }
2958
Jens Axboee65ef562019-03-12 10:16:44 -06002959 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06002960 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07002961 io_cqring_add_event(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06002962 if (req->flags & REQ_F_LINK)
2963 req->flags |= REQ_F_FAIL_LINK;
Jens Axboee65ef562019-03-12 10:16:44 -06002964 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06002965 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002966}
2967
Jens Axboe0e0702d2019-11-14 21:42:10 -07002968static void io_queue_sqe(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08002969{
2970 int ret;
2971
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03002972 if (unlikely(req->ctx->drain_next)) {
2973 req->flags |= REQ_F_IO_DRAIN;
2974 req->ctx->drain_next = false;
2975 }
2976 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
2977
Jackie Liua197f662019-11-08 08:09:12 -07002978 ret = io_req_defer(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08002979 if (ret) {
2980 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07002981 io_cqring_add_event(req, ret);
Pavel Begunkovd3b357962019-11-19 23:32:48 +03002982 if (req->flags & REQ_F_LINK)
2983 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07002984 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08002985 }
Jens Axboe0e0702d2019-11-14 21:42:10 -07002986 } else
2987 __io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08002988}
2989
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03002990static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08002991{
Jens Axboe94ae5e72019-11-14 19:39:52 -07002992 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03002993 io_cqring_add_event(req, -ECANCELED);
2994 io_double_put_req(req);
2995 } else
Jens Axboe0e0702d2019-11-14 21:42:10 -07002996 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08002997}
2998
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03002999
Jens Axboe9e645e112019-05-10 16:07:28 -06003000#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK)
3001
Jackie Liua197f662019-11-08 08:09:12 -07003002static void io_submit_sqe(struct io_kiocb *req, struct io_submit_state *state,
3003 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06003004{
Pavel Begunkov267bc902019-11-07 01:41:08 +03003005 struct sqe_submit *s = &req->submit;
Jackie Liua197f662019-11-08 08:09:12 -07003006 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06003007 int ret;
3008
Jens Axboe78e19bb2019-11-06 15:21:34 -07003009 req->user_data = s->sqe->user_data;
3010
Jens Axboe9e645e112019-05-10 16:07:28 -06003011 /* enforce forwards compatibility on users */
3012 if (unlikely(s->sqe->flags & ~SQE_VALID_FLAGS)) {
3013 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03003014 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06003015 }
3016
Jackie Liua197f662019-11-08 08:09:12 -07003017 ret = io_req_set_file(state, req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003018 if (unlikely(ret)) {
3019err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003020 io_cqring_add_event(req, ret);
3021 io_double_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003022 return;
3023 }
3024
Jens Axboe9e645e112019-05-10 16:07:28 -06003025 /*
3026 * If we already have a head request, queue this one for async
3027 * submittal once the head completes. If we don't have a head but
3028 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3029 * submitted sync once the chain is complete. If none of those
3030 * conditions are true (normal request), then just queue it.
3031 */
3032 if (*link) {
3033 struct io_kiocb *prev = *link;
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003034 struct io_uring_sqe *sqe_copy;
Jens Axboe9e645e112019-05-10 16:07:28 -06003035
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003036 if (s->sqe->flags & IOSQE_IO_DRAIN)
3037 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3038
Jens Axboe94ae5e72019-11-14 19:39:52 -07003039 if (READ_ONCE(s->sqe->opcode) == IORING_OP_LINK_TIMEOUT) {
3040 ret = io_timeout_setup(req);
3041 /* common setup allows offset being set, we don't */
3042 if (!ret && s->sqe->off)
3043 ret = -EINVAL;
3044 if (ret) {
3045 prev->flags |= REQ_F_FAIL_LINK;
3046 goto err_req;
3047 }
3048 }
3049
Jens Axboe9e645e112019-05-10 16:07:28 -06003050 sqe_copy = kmemdup(s->sqe, sizeof(*sqe_copy), GFP_KERNEL);
3051 if (!sqe_copy) {
3052 ret = -EAGAIN;
3053 goto err_req;
3054 }
3055
3056 s->sqe = sqe_copy;
Jens Axboe94ae5e72019-11-14 19:39:52 -07003057 req->flags |= REQ_F_FREE_SQE;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003058 trace_io_uring_link(ctx, req, prev);
Jens Axboe9e645e112019-05-10 16:07:28 -06003059 list_add_tail(&req->list, &prev->link_list);
3060 } else if (s->sqe->flags & IOSQE_IO_LINK) {
3061 req->flags |= REQ_F_LINK;
3062
Jens Axboe9e645e112019-05-10 16:07:28 -06003063 INIT_LIST_HEAD(&req->link_list);
3064 *link = req;
3065 } else {
Jackie Liua197f662019-11-08 08:09:12 -07003066 io_queue_sqe(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003067 }
3068}
3069
Jens Axboe9a56a232019-01-09 09:06:50 -07003070/*
3071 * Batched submission is done, ensure local IO is flushed out.
3072 */
3073static void io_submit_state_end(struct io_submit_state *state)
3074{
3075 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06003076 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07003077 if (state->free_reqs)
3078 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3079 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07003080}
3081
3082/*
3083 * Start submission side cache.
3084 */
3085static void io_submit_state_start(struct io_submit_state *state,
3086 struct io_ring_ctx *ctx, unsigned max_ios)
3087{
3088 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07003089 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07003090 state->file = NULL;
3091 state->ios_left = max_ios;
3092}
3093
Jens Axboe2b188cc2019-01-07 10:46:33 -07003094static void io_commit_sqring(struct io_ring_ctx *ctx)
3095{
Hristo Venev75b28af2019-08-26 17:23:46 +00003096 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003097
Hristo Venev75b28af2019-08-26 17:23:46 +00003098 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003099 /*
3100 * Ensure any loads from the SQEs are done at this point,
3101 * since once we write the new head, the application could
3102 * write new data to them.
3103 */
Hristo Venev75b28af2019-08-26 17:23:46 +00003104 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003105 }
3106}
3107
3108/*
Jens Axboe2b188cc2019-01-07 10:46:33 -07003109 * Fetch an sqe, if one is available. Note that s->sqe will point to memory
3110 * that is mapped by userspace. This means that care needs to be taken to
3111 * ensure that reads are stable, as we cannot rely on userspace always
3112 * being a good citizen. If members of the sqe are validated and then later
3113 * used, it's important that those reads are done through READ_ONCE() to
3114 * prevent a re-load down the line.
3115 */
3116static bool io_get_sqring(struct io_ring_ctx *ctx, struct sqe_submit *s)
3117{
Hristo Venev75b28af2019-08-26 17:23:46 +00003118 struct io_rings *rings = ctx->rings;
3119 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003120 unsigned head;
3121
3122 /*
3123 * The cached sq head (or cq tail) serves two purposes:
3124 *
3125 * 1) allows us to batch the cost of updating the user visible
3126 * head updates.
3127 * 2) allows the kernel side to track the head on its own, even
3128 * though the application is the one updating it.
3129 */
3130 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02003131 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003132 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07003133 return false;
3134
Hristo Venev75b28af2019-08-26 17:23:46 +00003135 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003136 if (likely(head < ctx->sq_entries)) {
Jens Axboefcb323c2019-10-24 12:39:47 -06003137 s->ring_file = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003138 s->sqe = &ctx->sq_sqes[head];
Jackie Liu8776f3f2019-09-09 20:50:39 +08003139 s->sequence = ctx->cached_sq_head;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003140 ctx->cached_sq_head++;
3141 return true;
3142 }
3143
3144 /* drop invalid entries */
3145 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06003146 ctx->cached_sq_dropped++;
3147 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003148 return false;
3149}
3150
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003151static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003152 struct file *ring_file, int ring_fd,
3153 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07003154{
3155 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003156 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003157 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003158 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003159
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003160 if (!list_empty(&ctx->cq_overflow_list)) {
3161 io_cqring_overflow_flush(ctx, false);
3162 return -EBUSY;
3163 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003164
3165 if (nr > IO_PLUG_THRESHOLD) {
3166 io_submit_state_start(&state, ctx, nr);
3167 statep = &state;
3168 }
3169
3170 for (i = 0; i < nr; i++) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003171 struct io_kiocb *req;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003172 unsigned int sqe_flags;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003173
Pavel Begunkov196be952019-11-07 01:41:06 +03003174 req = io_get_req(ctx, statep);
3175 if (unlikely(!req)) {
3176 if (!submitted)
3177 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003178 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06003179 }
Pavel Begunkov50585b92019-11-07 01:41:07 +03003180 if (!io_get_sqring(ctx, &req->submit)) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003181 __io_free_req(req);
3182 break;
3183 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003184
Pavel Begunkov50585b92019-11-07 01:41:07 +03003185 if (io_sqe_needs_user(req->submit.sqe) && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003186 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3187 if (!mm_fault) {
3188 use_mm(ctx->sqo_mm);
3189 *mm = ctx->sqo_mm;
3190 }
3191 }
3192
Pavel Begunkov50585b92019-11-07 01:41:07 +03003193 sqe_flags = req->submit.sqe->flags;
3194
Pavel Begunkov50585b92019-11-07 01:41:07 +03003195 req->submit.ring_file = ring_file;
3196 req->submit.ring_fd = ring_fd;
3197 req->submit.has_user = *mm != NULL;
3198 req->submit.in_async = async;
3199 req->submit.needs_fixed_file = async;
3200 trace_io_uring_submit_sqe(ctx, req->submit.sqe->user_data,
3201 true, async);
Jackie Liua197f662019-11-08 08:09:12 -07003202 io_submit_sqe(req, statep, &link);
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003203 submitted++;
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003204
3205 /*
3206 * If previous wasn't linked and we have a linked command,
3207 * that's the end of the chain. Submit the previous link.
3208 */
Pavel Begunkov50585b92019-11-07 01:41:07 +03003209 if (!(sqe_flags & IOSQE_IO_LINK) && link) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003210 io_queue_link_head(link);
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003211 link = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003212 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003213 }
3214
Jens Axboe9e645e112019-05-10 16:07:28 -06003215 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003216 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003217 if (statep)
3218 io_submit_state_end(&state);
3219
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003220 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3221 io_commit_sqring(ctx);
3222
Jens Axboe6c271ce2019-01-10 11:22:30 -07003223 return submitted;
3224}
3225
3226static int io_sq_thread(void *data)
3227{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003228 struct io_ring_ctx *ctx = data;
3229 struct mm_struct *cur_mm = NULL;
3230 mm_segment_t old_fs;
3231 DEFINE_WAIT(wait);
3232 unsigned inflight;
3233 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07003234 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003235
Jens Axboe206aefd2019-11-07 18:27:42 -07003236 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08003237
Jens Axboe6c271ce2019-01-10 11:22:30 -07003238 old_fs = get_fs();
3239 set_fs(USER_DS);
3240
Jens Axboec1edbf52019-11-10 16:56:04 -07003241 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003242 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003243 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003244
3245 if (inflight) {
3246 unsigned nr_events = 0;
3247
3248 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06003249 /*
3250 * inflight is the count of the maximum possible
3251 * entries we submitted, but it can be smaller
3252 * if we dropped some of them. If we don't have
3253 * poll entries available, then we know that we
3254 * have nothing left to poll for. Reset the
3255 * inflight count to zero in that case.
3256 */
3257 mutex_lock(&ctx->uring_lock);
3258 if (!list_empty(&ctx->poll_list))
3259 __io_iopoll_check(ctx, &nr_events, 0);
3260 else
3261 inflight = 0;
3262 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003263 } else {
3264 /*
3265 * Normal IO, just pretend everything completed.
3266 * We don't have to poll completions for that.
3267 */
3268 nr_events = inflight;
3269 }
3270
3271 inflight -= nr_events;
3272 if (!inflight)
3273 timeout = jiffies + ctx->sq_thread_idle;
3274 }
3275
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003276 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003277
3278 /*
3279 * If submit got -EBUSY, flag us as needing the application
3280 * to enter the kernel to reap and flush events.
3281 */
3282 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003283 /*
3284 * We're polling. If we're within the defined idle
3285 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07003286 * to sleep. The exception is if we got EBUSY doing
3287 * more IO, we should wait for the application to
3288 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07003289 */
Jens Axboec1edbf52019-11-10 16:56:04 -07003290 if (inflight ||
3291 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06003292 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003293 continue;
3294 }
3295
3296 /*
3297 * Drop cur_mm before scheduling, we can't hold it for
3298 * long periods (or over schedule()). Do this before
3299 * adding ourselves to the waitqueue, as the unuse/drop
3300 * may sleep.
3301 */
3302 if (cur_mm) {
3303 unuse_mm(cur_mm);
3304 mmput(cur_mm);
3305 cur_mm = NULL;
3306 }
3307
3308 prepare_to_wait(&ctx->sqo_wait, &wait,
3309 TASK_INTERRUPTIBLE);
3310
3311 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00003312 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02003313 /* make sure to read SQ tail after writing flags */
3314 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003315
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003316 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003317 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003318 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003319 finish_wait(&ctx->sqo_wait, &wait);
3320 break;
3321 }
3322 if (signal_pending(current))
3323 flush_signals(current);
3324 schedule();
3325 finish_wait(&ctx->sqo_wait, &wait);
3326
Hristo Venev75b28af2019-08-26 17:23:46 +00003327 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003328 continue;
3329 }
3330 finish_wait(&ctx->sqo_wait, &wait);
3331
Hristo Venev75b28af2019-08-26 17:23:46 +00003332 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003333 }
3334
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003335 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003336 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
3337 if (ret > 0)
3338 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003339 }
3340
3341 set_fs(old_fs);
3342 if (cur_mm) {
3343 unuse_mm(cur_mm);
3344 mmput(cur_mm);
3345 }
Jens Axboe06058632019-04-13 09:26:03 -06003346
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003347 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06003348
Jens Axboe6c271ce2019-01-10 11:22:30 -07003349 return 0;
3350}
3351
Jens Axboebda52162019-09-24 13:47:15 -06003352struct io_wait_queue {
3353 struct wait_queue_entry wq;
3354 struct io_ring_ctx *ctx;
3355 unsigned to_wait;
3356 unsigned nr_timeouts;
3357};
3358
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003359static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06003360{
3361 struct io_ring_ctx *ctx = iowq->ctx;
3362
3363 /*
3364 * Wake up if we have enough events, or if a timeout occured since we
3365 * started waiting. For timeouts, we always want to return to userspace,
3366 * regardless of event count.
3367 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003368 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06003369 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3370}
3371
3372static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3373 int wake_flags, void *key)
3374{
3375 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3376 wq);
3377
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003378 /* use noflush == true, as we can't safely rely on locking context */
3379 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06003380 return -1;
3381
3382 return autoremove_wake_function(curr, mode, wake_flags, key);
3383}
3384
Jens Axboe2b188cc2019-01-07 10:46:33 -07003385/*
3386 * Wait until events become available, if we don't already have some. The
3387 * application must reap them itself, as they reside on the shared cq ring.
3388 */
3389static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3390 const sigset_t __user *sig, size_t sigsz)
3391{
Jens Axboebda52162019-09-24 13:47:15 -06003392 struct io_wait_queue iowq = {
3393 .wq = {
3394 .private = current,
3395 .func = io_wake_function,
3396 .entry = LIST_HEAD_INIT(iowq.wq.entry),
3397 },
3398 .ctx = ctx,
3399 .to_wait = min_events,
3400 };
Hristo Venev75b28af2019-08-26 17:23:46 +00003401 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003402 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003403
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003404 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003405 return 0;
3406
3407 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003408#ifdef CONFIG_COMPAT
3409 if (in_compat_syscall())
3410 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07003411 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003412 else
3413#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07003414 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003415
Jens Axboe2b188cc2019-01-07 10:46:33 -07003416 if (ret)
3417 return ret;
3418 }
3419
Jens Axboebda52162019-09-24 13:47:15 -06003420 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003421 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06003422 do {
3423 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
3424 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003425 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06003426 break;
3427 schedule();
3428 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003429 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06003430 break;
3431 }
3432 } while (1);
3433 finish_wait(&ctx->wait, &iowq.wq);
3434
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003435 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003436
Hristo Venev75b28af2019-08-26 17:23:46 +00003437 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003438}
3439
Jens Axboe6b063142019-01-10 22:13:58 -07003440static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
3441{
3442#if defined(CONFIG_UNIX)
3443 if (ctx->ring_sock) {
3444 struct sock *sock = ctx->ring_sock->sk;
3445 struct sk_buff *skb;
3446
3447 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
3448 kfree_skb(skb);
3449 }
3450#else
3451 int i;
3452
Jens Axboe65e19f52019-10-26 07:20:21 -06003453 for (i = 0; i < ctx->nr_user_files; i++) {
3454 struct file *file;
3455
3456 file = io_file_from_index(ctx, i);
3457 if (file)
3458 fput(file);
3459 }
Jens Axboe6b063142019-01-10 22:13:58 -07003460#endif
3461}
3462
3463static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
3464{
Jens Axboe65e19f52019-10-26 07:20:21 -06003465 unsigned nr_tables, i;
3466
3467 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003468 return -ENXIO;
3469
3470 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06003471 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
3472 for (i = 0; i < nr_tables; i++)
3473 kfree(ctx->file_table[i].files);
3474 kfree(ctx->file_table);
3475 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003476 ctx->nr_user_files = 0;
3477 return 0;
3478}
3479
Jens Axboe6c271ce2019-01-10 11:22:30 -07003480static void io_sq_thread_stop(struct io_ring_ctx *ctx)
3481{
3482 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07003483 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003484 /*
3485 * The park is a bit of a work-around, without it we get
3486 * warning spews on shutdown with SQPOLL set and affinity
3487 * set to a single CPU.
3488 */
Jens Axboe06058632019-04-13 09:26:03 -06003489 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003490 kthread_stop(ctx->sqo_thread);
3491 ctx->sqo_thread = NULL;
3492 }
3493}
3494
Jens Axboe6b063142019-01-10 22:13:58 -07003495static void io_finish_async(struct io_ring_ctx *ctx)
3496{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003497 io_sq_thread_stop(ctx);
3498
Jens Axboe561fb042019-10-24 07:25:42 -06003499 if (ctx->io_wq) {
3500 io_wq_destroy(ctx->io_wq);
3501 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003502 }
3503}
3504
3505#if defined(CONFIG_UNIX)
3506static void io_destruct_skb(struct sk_buff *skb)
3507{
3508 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
3509
Jens Axboe561fb042019-10-24 07:25:42 -06003510 if (ctx->io_wq)
3511 io_wq_flush(ctx->io_wq);
Jens Axboe8a997342019-10-09 14:40:13 -06003512
Jens Axboe6b063142019-01-10 22:13:58 -07003513 unix_destruct_scm(skb);
3514}
3515
3516/*
3517 * Ensure the UNIX gc is aware of our file set, so we are certain that
3518 * the io_uring can be safely unregistered on process exit, even if we have
3519 * loops in the file referencing.
3520 */
3521static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
3522{
3523 struct sock *sk = ctx->ring_sock->sk;
3524 struct scm_fp_list *fpl;
3525 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06003526 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07003527
3528 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
3529 unsigned long inflight = ctx->user->unix_inflight + nr;
3530
3531 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
3532 return -EMFILE;
3533 }
3534
3535 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
3536 if (!fpl)
3537 return -ENOMEM;
3538
3539 skb = alloc_skb(0, GFP_KERNEL);
3540 if (!skb) {
3541 kfree(fpl);
3542 return -ENOMEM;
3543 }
3544
3545 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07003546
Jens Axboe08a45172019-10-03 08:11:03 -06003547 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07003548 fpl->user = get_uid(ctx->user);
3549 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003550 struct file *file = io_file_from_index(ctx, i + offset);
3551
3552 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06003553 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06003554 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06003555 unix_inflight(fpl->user, fpl->fp[nr_files]);
3556 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07003557 }
3558
Jens Axboe08a45172019-10-03 08:11:03 -06003559 if (nr_files) {
3560 fpl->max = SCM_MAX_FD;
3561 fpl->count = nr_files;
3562 UNIXCB(skb).fp = fpl;
3563 skb->destructor = io_destruct_skb;
3564 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
3565 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07003566
Jens Axboe08a45172019-10-03 08:11:03 -06003567 for (i = 0; i < nr_files; i++)
3568 fput(fpl->fp[i]);
3569 } else {
3570 kfree_skb(skb);
3571 kfree(fpl);
3572 }
Jens Axboe6b063142019-01-10 22:13:58 -07003573
3574 return 0;
3575}
3576
3577/*
3578 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
3579 * causes regular reference counting to break down. We rely on the UNIX
3580 * garbage collection to take care of this problem for us.
3581 */
3582static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3583{
3584 unsigned left, total;
3585 int ret = 0;
3586
3587 total = 0;
3588 left = ctx->nr_user_files;
3589 while (left) {
3590 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07003591
3592 ret = __io_sqe_files_scm(ctx, this_files, total);
3593 if (ret)
3594 break;
3595 left -= this_files;
3596 total += this_files;
3597 }
3598
3599 if (!ret)
3600 return 0;
3601
3602 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003603 struct file *file = io_file_from_index(ctx, total);
3604
3605 if (file)
3606 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07003607 total++;
3608 }
3609
3610 return ret;
3611}
3612#else
3613static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3614{
3615 return 0;
3616}
3617#endif
3618
Jens Axboe65e19f52019-10-26 07:20:21 -06003619static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
3620 unsigned nr_files)
3621{
3622 int i;
3623
3624 for (i = 0; i < nr_tables; i++) {
3625 struct fixed_file_table *table = &ctx->file_table[i];
3626 unsigned this_files;
3627
3628 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
3629 table->files = kcalloc(this_files, sizeof(struct file *),
3630 GFP_KERNEL);
3631 if (!table->files)
3632 break;
3633 nr_files -= this_files;
3634 }
3635
3636 if (i == nr_tables)
3637 return 0;
3638
3639 for (i = 0; i < nr_tables; i++) {
3640 struct fixed_file_table *table = &ctx->file_table[i];
3641 kfree(table->files);
3642 }
3643 return 1;
3644}
3645
Jens Axboe6b063142019-01-10 22:13:58 -07003646static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
3647 unsigned nr_args)
3648{
3649 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe65e19f52019-10-26 07:20:21 -06003650 unsigned nr_tables;
Jens Axboe6b063142019-01-10 22:13:58 -07003651 int fd, ret = 0;
3652 unsigned i;
3653
Jens Axboe65e19f52019-10-26 07:20:21 -06003654 if (ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003655 return -EBUSY;
3656 if (!nr_args)
3657 return -EINVAL;
3658 if (nr_args > IORING_MAX_FIXED_FILES)
3659 return -EMFILE;
3660
Jens Axboe65e19f52019-10-26 07:20:21 -06003661 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
3662 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
3663 GFP_KERNEL);
3664 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003665 return -ENOMEM;
3666
Jens Axboe65e19f52019-10-26 07:20:21 -06003667 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
3668 kfree(ctx->file_table);
Jens Axboe46568e92019-11-10 08:40:53 -07003669 ctx->file_table = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06003670 return -ENOMEM;
3671 }
3672
Jens Axboe08a45172019-10-03 08:11:03 -06003673 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003674 struct fixed_file_table *table;
3675 unsigned index;
3676
Jens Axboe6b063142019-01-10 22:13:58 -07003677 ret = -EFAULT;
3678 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
3679 break;
Jens Axboe08a45172019-10-03 08:11:03 -06003680 /* allow sparse sets */
3681 if (fd == -1) {
3682 ret = 0;
3683 continue;
3684 }
Jens Axboe6b063142019-01-10 22:13:58 -07003685
Jens Axboe65e19f52019-10-26 07:20:21 -06003686 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
3687 index = i & IORING_FILE_TABLE_MASK;
3688 table->files[index] = fget(fd);
Jens Axboe6b063142019-01-10 22:13:58 -07003689
3690 ret = -EBADF;
Jens Axboe65e19f52019-10-26 07:20:21 -06003691 if (!table->files[index])
Jens Axboe6b063142019-01-10 22:13:58 -07003692 break;
3693 /*
3694 * Don't allow io_uring instances to be registered. If UNIX
3695 * isn't enabled, then this causes a reference cycle and this
3696 * instance can never get freed. If UNIX is enabled we'll
3697 * handle it just fine, but there's still no point in allowing
3698 * a ring fd as it doesn't support regular read/write anyway.
3699 */
Jens Axboe65e19f52019-10-26 07:20:21 -06003700 if (table->files[index]->f_op == &io_uring_fops) {
3701 fput(table->files[index]);
Jens Axboe6b063142019-01-10 22:13:58 -07003702 break;
3703 }
Jens Axboe6b063142019-01-10 22:13:58 -07003704 ret = 0;
3705 }
3706
3707 if (ret) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003708 for (i = 0; i < ctx->nr_user_files; i++) {
3709 struct file *file;
Jens Axboe6b063142019-01-10 22:13:58 -07003710
Jens Axboe65e19f52019-10-26 07:20:21 -06003711 file = io_file_from_index(ctx, i);
3712 if (file)
3713 fput(file);
3714 }
3715 for (i = 0; i < nr_tables; i++)
3716 kfree(ctx->file_table[i].files);
3717
3718 kfree(ctx->file_table);
3719 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003720 ctx->nr_user_files = 0;
3721 return ret;
3722 }
3723
3724 ret = io_sqe_files_scm(ctx);
3725 if (ret)
3726 io_sqe_files_unregister(ctx);
3727
3728 return ret;
3729}
3730
Jens Axboec3a31e62019-10-03 13:59:56 -06003731static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
3732{
3733#if defined(CONFIG_UNIX)
Jens Axboe65e19f52019-10-26 07:20:21 -06003734 struct file *file = io_file_from_index(ctx, index);
Jens Axboec3a31e62019-10-03 13:59:56 -06003735 struct sock *sock = ctx->ring_sock->sk;
3736 struct sk_buff_head list, *head = &sock->sk_receive_queue;
3737 struct sk_buff *skb;
3738 int i;
3739
3740 __skb_queue_head_init(&list);
3741
3742 /*
3743 * Find the skb that holds this file in its SCM_RIGHTS. When found,
3744 * remove this entry and rearrange the file array.
3745 */
3746 skb = skb_dequeue(head);
3747 while (skb) {
3748 struct scm_fp_list *fp;
3749
3750 fp = UNIXCB(skb).fp;
3751 for (i = 0; i < fp->count; i++) {
3752 int left;
3753
3754 if (fp->fp[i] != file)
3755 continue;
3756
3757 unix_notinflight(fp->user, fp->fp[i]);
3758 left = fp->count - 1 - i;
3759 if (left) {
3760 memmove(&fp->fp[i], &fp->fp[i + 1],
3761 left * sizeof(struct file *));
3762 }
3763 fp->count--;
3764 if (!fp->count) {
3765 kfree_skb(skb);
3766 skb = NULL;
3767 } else {
3768 __skb_queue_tail(&list, skb);
3769 }
3770 fput(file);
3771 file = NULL;
3772 break;
3773 }
3774
3775 if (!file)
3776 break;
3777
3778 __skb_queue_tail(&list, skb);
3779
3780 skb = skb_dequeue(head);
3781 }
3782
3783 if (skb_peek(&list)) {
3784 spin_lock_irq(&head->lock);
3785 while ((skb = __skb_dequeue(&list)) != NULL)
3786 __skb_queue_tail(head, skb);
3787 spin_unlock_irq(&head->lock);
3788 }
3789#else
Jens Axboe65e19f52019-10-26 07:20:21 -06003790 fput(io_file_from_index(ctx, index));
Jens Axboec3a31e62019-10-03 13:59:56 -06003791#endif
3792}
3793
3794static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
3795 int index)
3796{
3797#if defined(CONFIG_UNIX)
3798 struct sock *sock = ctx->ring_sock->sk;
3799 struct sk_buff_head *head = &sock->sk_receive_queue;
3800 struct sk_buff *skb;
3801
3802 /*
3803 * See if we can merge this file into an existing skb SCM_RIGHTS
3804 * file set. If there's no room, fall back to allocating a new skb
3805 * and filling it in.
3806 */
3807 spin_lock_irq(&head->lock);
3808 skb = skb_peek(head);
3809 if (skb) {
3810 struct scm_fp_list *fpl = UNIXCB(skb).fp;
3811
3812 if (fpl->count < SCM_MAX_FD) {
3813 __skb_unlink(skb, head);
3814 spin_unlock_irq(&head->lock);
3815 fpl->fp[fpl->count] = get_file(file);
3816 unix_inflight(fpl->user, fpl->fp[fpl->count]);
3817 fpl->count++;
3818 spin_lock_irq(&head->lock);
3819 __skb_queue_head(head, skb);
3820 } else {
3821 skb = NULL;
3822 }
3823 }
3824 spin_unlock_irq(&head->lock);
3825
3826 if (skb) {
3827 fput(file);
3828 return 0;
3829 }
3830
3831 return __io_sqe_files_scm(ctx, 1, index);
3832#else
3833 return 0;
3834#endif
3835}
3836
3837static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
3838 unsigned nr_args)
3839{
3840 struct io_uring_files_update up;
3841 __s32 __user *fds;
3842 int fd, i, err;
3843 __u32 done;
3844
Jens Axboe65e19f52019-10-26 07:20:21 -06003845 if (!ctx->file_table)
Jens Axboec3a31e62019-10-03 13:59:56 -06003846 return -ENXIO;
3847 if (!nr_args)
3848 return -EINVAL;
3849 if (copy_from_user(&up, arg, sizeof(up)))
3850 return -EFAULT;
3851 if (check_add_overflow(up.offset, nr_args, &done))
3852 return -EOVERFLOW;
3853 if (done > ctx->nr_user_files)
3854 return -EINVAL;
3855
3856 done = 0;
3857 fds = (__s32 __user *) up.fds;
3858 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003859 struct fixed_file_table *table;
3860 unsigned index;
3861
Jens Axboec3a31e62019-10-03 13:59:56 -06003862 err = 0;
3863 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
3864 err = -EFAULT;
3865 break;
3866 }
3867 i = array_index_nospec(up.offset, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06003868 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
3869 index = i & IORING_FILE_TABLE_MASK;
3870 if (table->files[index]) {
Jens Axboec3a31e62019-10-03 13:59:56 -06003871 io_sqe_file_unregister(ctx, i);
Jens Axboe65e19f52019-10-26 07:20:21 -06003872 table->files[index] = NULL;
Jens Axboec3a31e62019-10-03 13:59:56 -06003873 }
3874 if (fd != -1) {
3875 struct file *file;
3876
3877 file = fget(fd);
3878 if (!file) {
3879 err = -EBADF;
3880 break;
3881 }
3882 /*
3883 * Don't allow io_uring instances to be registered. If
3884 * UNIX isn't enabled, then this causes a reference
3885 * cycle and this instance can never get freed. If UNIX
3886 * is enabled we'll handle it just fine, but there's
3887 * still no point in allowing a ring fd as it doesn't
3888 * support regular read/write anyway.
3889 */
3890 if (file->f_op == &io_uring_fops) {
3891 fput(file);
3892 err = -EBADF;
3893 break;
3894 }
Jens Axboe65e19f52019-10-26 07:20:21 -06003895 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06003896 err = io_sqe_file_register(ctx, file, i);
3897 if (err)
3898 break;
3899 }
3900 nr_args--;
3901 done++;
3902 up.offset++;
3903 }
3904
3905 return done ? done : err;
3906}
3907
Jens Axboe7d723062019-11-12 22:31:31 -07003908static void io_put_work(struct io_wq_work *work)
3909{
3910 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3911
3912 io_put_req(req);
3913}
3914
3915static void io_get_work(struct io_wq_work *work)
3916{
3917 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3918
3919 refcount_inc(&req->refs);
3920}
3921
Jens Axboe6c271ce2019-01-10 11:22:30 -07003922static int io_sq_offload_start(struct io_ring_ctx *ctx,
3923 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003924{
Jens Axboe561fb042019-10-24 07:25:42 -06003925 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003926 int ret;
3927
Jens Axboe6c271ce2019-01-10 11:22:30 -07003928 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003929 mmgrab(current->mm);
3930 ctx->sqo_mm = current->mm;
3931
Jens Axboe6c271ce2019-01-10 11:22:30 -07003932 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06003933 ret = -EPERM;
3934 if (!capable(CAP_SYS_ADMIN))
3935 goto err;
3936
Jens Axboe917257d2019-04-13 09:28:55 -06003937 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
3938 if (!ctx->sq_thread_idle)
3939 ctx->sq_thread_idle = HZ;
3940
Jens Axboe6c271ce2019-01-10 11:22:30 -07003941 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06003942 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003943
Jens Axboe917257d2019-04-13 09:28:55 -06003944 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06003945 if (cpu >= nr_cpu_ids)
3946 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08003947 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06003948 goto err;
3949
Jens Axboe6c271ce2019-01-10 11:22:30 -07003950 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
3951 ctx, cpu,
3952 "io_uring-sq");
3953 } else {
3954 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
3955 "io_uring-sq");
3956 }
3957 if (IS_ERR(ctx->sqo_thread)) {
3958 ret = PTR_ERR(ctx->sqo_thread);
3959 ctx->sqo_thread = NULL;
3960 goto err;
3961 }
3962 wake_up_process(ctx->sqo_thread);
3963 } else if (p->flags & IORING_SETUP_SQ_AFF) {
3964 /* Can't have SQ_AFF without SQPOLL */
3965 ret = -EINVAL;
3966 goto err;
3967 }
3968
Jens Axboe561fb042019-10-24 07:25:42 -06003969 /* Do QD, or 4 * CPUS, whatever is smallest */
3970 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe7d723062019-11-12 22:31:31 -07003971 ctx->io_wq = io_wq_create(concurrency, ctx->sqo_mm, ctx->user,
3972 io_get_work, io_put_work);
Jens Axboe975c99a52019-10-30 08:42:56 -06003973 if (IS_ERR(ctx->io_wq)) {
3974 ret = PTR_ERR(ctx->io_wq);
3975 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003976 goto err;
3977 }
3978
3979 return 0;
3980err:
Jens Axboe54a91f32019-09-10 09:15:04 -06003981 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003982 mmdrop(ctx->sqo_mm);
3983 ctx->sqo_mm = NULL;
3984 return ret;
3985}
3986
3987static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
3988{
3989 atomic_long_sub(nr_pages, &user->locked_vm);
3990}
3991
3992static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
3993{
3994 unsigned long page_limit, cur_pages, new_pages;
3995
3996 /* Don't allow more pages than we can safely lock */
3997 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
3998
3999 do {
4000 cur_pages = atomic_long_read(&user->locked_vm);
4001 new_pages = cur_pages + nr_pages;
4002 if (new_pages > page_limit)
4003 return -ENOMEM;
4004 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4005 new_pages) != cur_pages);
4006
4007 return 0;
4008}
4009
4010static void io_mem_free(void *ptr)
4011{
Mark Rutland52e04ef2019-04-30 17:30:21 +01004012 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004013
Mark Rutland52e04ef2019-04-30 17:30:21 +01004014 if (!ptr)
4015 return;
4016
4017 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004018 if (put_page_testzero(page))
4019 free_compound_page(page);
4020}
4021
4022static void *io_mem_alloc(size_t size)
4023{
4024 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4025 __GFP_NORETRY;
4026
4027 return (void *) __get_free_pages(gfp_flags, get_order(size));
4028}
4029
Hristo Venev75b28af2019-08-26 17:23:46 +00004030static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4031 size_t *sq_offset)
4032{
4033 struct io_rings *rings;
4034 size_t off, sq_array_size;
4035
4036 off = struct_size(rings, cqes, cq_entries);
4037 if (off == SIZE_MAX)
4038 return SIZE_MAX;
4039
4040#ifdef CONFIG_SMP
4041 off = ALIGN(off, SMP_CACHE_BYTES);
4042 if (off == 0)
4043 return SIZE_MAX;
4044#endif
4045
4046 sq_array_size = array_size(sizeof(u32), sq_entries);
4047 if (sq_array_size == SIZE_MAX)
4048 return SIZE_MAX;
4049
4050 if (check_add_overflow(off, sq_array_size, &off))
4051 return SIZE_MAX;
4052
4053 if (sq_offset)
4054 *sq_offset = off;
4055
4056 return off;
4057}
4058
Jens Axboe2b188cc2019-01-07 10:46:33 -07004059static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4060{
Hristo Venev75b28af2019-08-26 17:23:46 +00004061 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004062
Hristo Venev75b28af2019-08-26 17:23:46 +00004063 pages = (size_t)1 << get_order(
4064 rings_size(sq_entries, cq_entries, NULL));
4065 pages += (size_t)1 << get_order(
4066 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07004067
Hristo Venev75b28af2019-08-26 17:23:46 +00004068 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004069}
4070
Jens Axboeedafcce2019-01-09 09:16:05 -07004071static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4072{
4073 int i, j;
4074
4075 if (!ctx->user_bufs)
4076 return -ENXIO;
4077
4078 for (i = 0; i < ctx->nr_user_bufs; i++) {
4079 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4080
4081 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07004082 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07004083
4084 if (ctx->account_mem)
4085 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004086 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004087 imu->nr_bvecs = 0;
4088 }
4089
4090 kfree(ctx->user_bufs);
4091 ctx->user_bufs = NULL;
4092 ctx->nr_user_bufs = 0;
4093 return 0;
4094}
4095
4096static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4097 void __user *arg, unsigned index)
4098{
4099 struct iovec __user *src;
4100
4101#ifdef CONFIG_COMPAT
4102 if (ctx->compat) {
4103 struct compat_iovec __user *ciovs;
4104 struct compat_iovec ciov;
4105
4106 ciovs = (struct compat_iovec __user *) arg;
4107 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4108 return -EFAULT;
4109
4110 dst->iov_base = (void __user *) (unsigned long) ciov.iov_base;
4111 dst->iov_len = ciov.iov_len;
4112 return 0;
4113 }
4114#endif
4115 src = (struct iovec __user *) arg;
4116 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4117 return -EFAULT;
4118 return 0;
4119}
4120
4121static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4122 unsigned nr_args)
4123{
4124 struct vm_area_struct **vmas = NULL;
4125 struct page **pages = NULL;
4126 int i, j, got_pages = 0;
4127 int ret = -EINVAL;
4128
4129 if (ctx->user_bufs)
4130 return -EBUSY;
4131 if (!nr_args || nr_args > UIO_MAXIOV)
4132 return -EINVAL;
4133
4134 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4135 GFP_KERNEL);
4136 if (!ctx->user_bufs)
4137 return -ENOMEM;
4138
4139 for (i = 0; i < nr_args; i++) {
4140 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4141 unsigned long off, start, end, ubuf;
4142 int pret, nr_pages;
4143 struct iovec iov;
4144 size_t size;
4145
4146 ret = io_copy_iov(ctx, &iov, arg, i);
4147 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03004148 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07004149
4150 /*
4151 * Don't impose further limits on the size and buffer
4152 * constraints here, we'll -EINVAL later when IO is
4153 * submitted if they are wrong.
4154 */
4155 ret = -EFAULT;
4156 if (!iov.iov_base || !iov.iov_len)
4157 goto err;
4158
4159 /* arbitrary limit, but we need something */
4160 if (iov.iov_len > SZ_1G)
4161 goto err;
4162
4163 ubuf = (unsigned long) iov.iov_base;
4164 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4165 start = ubuf >> PAGE_SHIFT;
4166 nr_pages = end - start;
4167
4168 if (ctx->account_mem) {
4169 ret = io_account_mem(ctx->user, nr_pages);
4170 if (ret)
4171 goto err;
4172 }
4173
4174 ret = 0;
4175 if (!pages || nr_pages > got_pages) {
4176 kfree(vmas);
4177 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004178 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07004179 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004180 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07004181 sizeof(struct vm_area_struct *),
4182 GFP_KERNEL);
4183 if (!pages || !vmas) {
4184 ret = -ENOMEM;
4185 if (ctx->account_mem)
4186 io_unaccount_mem(ctx->user, nr_pages);
4187 goto err;
4188 }
4189 got_pages = nr_pages;
4190 }
4191
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004192 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07004193 GFP_KERNEL);
4194 ret = -ENOMEM;
4195 if (!imu->bvec) {
4196 if (ctx->account_mem)
4197 io_unaccount_mem(ctx->user, nr_pages);
4198 goto err;
4199 }
4200
4201 ret = 0;
4202 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07004203 pret = get_user_pages(ubuf, nr_pages,
4204 FOLL_WRITE | FOLL_LONGTERM,
4205 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004206 if (pret == nr_pages) {
4207 /* don't support file backed memory */
4208 for (j = 0; j < nr_pages; j++) {
4209 struct vm_area_struct *vma = vmas[j];
4210
4211 if (vma->vm_file &&
4212 !is_file_hugepages(vma->vm_file)) {
4213 ret = -EOPNOTSUPP;
4214 break;
4215 }
4216 }
4217 } else {
4218 ret = pret < 0 ? pret : -EFAULT;
4219 }
4220 up_read(&current->mm->mmap_sem);
4221 if (ret) {
4222 /*
4223 * if we did partial map, or found file backed vmas,
4224 * release any pages we did get
4225 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07004226 if (pret > 0)
4227 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004228 if (ctx->account_mem)
4229 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004230 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004231 goto err;
4232 }
4233
4234 off = ubuf & ~PAGE_MASK;
4235 size = iov.iov_len;
4236 for (j = 0; j < nr_pages; j++) {
4237 size_t vec_len;
4238
4239 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4240 imu->bvec[j].bv_page = pages[j];
4241 imu->bvec[j].bv_len = vec_len;
4242 imu->bvec[j].bv_offset = off;
4243 off = 0;
4244 size -= vec_len;
4245 }
4246 /* store original address for later verification */
4247 imu->ubuf = ubuf;
4248 imu->len = iov.iov_len;
4249 imu->nr_bvecs = nr_pages;
4250
4251 ctx->nr_user_bufs++;
4252 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004253 kvfree(pages);
4254 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004255 return 0;
4256err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004257 kvfree(pages);
4258 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004259 io_sqe_buffer_unregister(ctx);
4260 return ret;
4261}
4262
Jens Axboe9b402842019-04-11 11:45:41 -06004263static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4264{
4265 __s32 __user *fds = arg;
4266 int fd;
4267
4268 if (ctx->cq_ev_fd)
4269 return -EBUSY;
4270
4271 if (copy_from_user(&fd, fds, sizeof(*fds)))
4272 return -EFAULT;
4273
4274 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4275 if (IS_ERR(ctx->cq_ev_fd)) {
4276 int ret = PTR_ERR(ctx->cq_ev_fd);
4277 ctx->cq_ev_fd = NULL;
4278 return ret;
4279 }
4280
4281 return 0;
4282}
4283
4284static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4285{
4286 if (ctx->cq_ev_fd) {
4287 eventfd_ctx_put(ctx->cq_ev_fd);
4288 ctx->cq_ev_fd = NULL;
4289 return 0;
4290 }
4291
4292 return -ENXIO;
4293}
4294
Jens Axboe2b188cc2019-01-07 10:46:33 -07004295static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4296{
Jens Axboe6b063142019-01-10 22:13:58 -07004297 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004298 if (ctx->sqo_mm)
4299 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07004300
4301 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07004302 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07004303 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06004304 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07004305
Jens Axboe2b188cc2019-01-07 10:46:33 -07004306#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07004307 if (ctx->ring_sock) {
4308 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004309 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07004310 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004311#endif
4312
Hristo Venev75b28af2019-08-26 17:23:46 +00004313 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004314 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004315
4316 percpu_ref_exit(&ctx->refs);
4317 if (ctx->account_mem)
4318 io_unaccount_mem(ctx->user,
4319 ring_pages(ctx->sq_entries, ctx->cq_entries));
4320 free_uid(ctx->user);
Jens Axboe206aefd2019-11-07 18:27:42 -07004321 kfree(ctx->completions);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07004322 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004323 kfree(ctx);
4324}
4325
4326static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4327{
4328 struct io_ring_ctx *ctx = file->private_data;
4329 __poll_t mask = 0;
4330
4331 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02004332 /*
4333 * synchronizes with barrier from wq_has_sleeper call in
4334 * io_commit_cqring
4335 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004336 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00004337 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4338 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004339 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08004340 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004341 mask |= EPOLLIN | EPOLLRDNORM;
4342
4343 return mask;
4344}
4345
4346static int io_uring_fasync(int fd, struct file *file, int on)
4347{
4348 struct io_ring_ctx *ctx = file->private_data;
4349
4350 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4351}
4352
4353static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4354{
4355 mutex_lock(&ctx->uring_lock);
4356 percpu_ref_kill(&ctx->refs);
4357 mutex_unlock(&ctx->uring_lock);
4358
Jens Axboe5262f562019-09-17 12:26:57 -06004359 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004360 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06004361
4362 if (ctx->io_wq)
4363 io_wq_cancel_all(ctx->io_wq);
4364
Jens Axboedef596e2019-01-09 08:59:42 -07004365 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07004366 /* if we failed setting up the ctx, we might not have any rings */
4367 if (ctx->rings)
4368 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07004369 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004370 io_ring_ctx_free(ctx);
4371}
4372
4373static int io_uring_release(struct inode *inode, struct file *file)
4374{
4375 struct io_ring_ctx *ctx = file->private_data;
4376
4377 file->private_data = NULL;
4378 io_ring_ctx_wait_and_kill(ctx);
4379 return 0;
4380}
4381
Jens Axboefcb323c2019-10-24 12:39:47 -06004382static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4383 struct files_struct *files)
4384{
4385 struct io_kiocb *req;
4386 DEFINE_WAIT(wait);
4387
4388 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07004389 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06004390
4391 spin_lock_irq(&ctx->inflight_lock);
4392 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07004393 if (req->work.files != files)
4394 continue;
4395 /* req is being completed, ignore */
4396 if (!refcount_inc_not_zero(&req->refs))
4397 continue;
4398 cancel_req = req;
4399 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06004400 }
Jens Axboe768134d2019-11-10 20:30:53 -07004401 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004402 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07004403 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06004404 spin_unlock_irq(&ctx->inflight_lock);
4405
Jens Axboe768134d2019-11-10 20:30:53 -07004406 /* We need to keep going until we don't find a matching req */
4407 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004408 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08004409
4410 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
4411 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06004412 schedule();
4413 }
Jens Axboe768134d2019-11-10 20:30:53 -07004414 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06004415}
4416
4417static int io_uring_flush(struct file *file, void *data)
4418{
4419 struct io_ring_ctx *ctx = file->private_data;
4420
4421 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004422 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
4423 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06004424 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004425 }
Jens Axboefcb323c2019-10-24 12:39:47 -06004426 return 0;
4427}
4428
Jens Axboe2b188cc2019-01-07 10:46:33 -07004429static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4430{
4431 loff_t offset = (loff_t) vma->vm_pgoff << PAGE_SHIFT;
4432 unsigned long sz = vma->vm_end - vma->vm_start;
4433 struct io_ring_ctx *ctx = file->private_data;
4434 unsigned long pfn;
4435 struct page *page;
4436 void *ptr;
4437
4438 switch (offset) {
4439 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00004440 case IORING_OFF_CQ_RING:
4441 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004442 break;
4443 case IORING_OFF_SQES:
4444 ptr = ctx->sq_sqes;
4445 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004446 default:
4447 return -EINVAL;
4448 }
4449
4450 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07004451 if (sz > page_size(page))
Jens Axboe2b188cc2019-01-07 10:46:33 -07004452 return -EINVAL;
4453
4454 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
4455 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
4456}
4457
4458SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
4459 u32, min_complete, u32, flags, const sigset_t __user *, sig,
4460 size_t, sigsz)
4461{
4462 struct io_ring_ctx *ctx;
4463 long ret = -EBADF;
4464 int submitted = 0;
4465 struct fd f;
4466
Jens Axboe6c271ce2019-01-10 11:22:30 -07004467 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07004468 return -EINVAL;
4469
4470 f = fdget(fd);
4471 if (!f.file)
4472 return -EBADF;
4473
4474 ret = -EOPNOTSUPP;
4475 if (f.file->f_op != &io_uring_fops)
4476 goto out_fput;
4477
4478 ret = -ENXIO;
4479 ctx = f.file->private_data;
4480 if (!percpu_ref_tryget(&ctx->refs))
4481 goto out_fput;
4482
Jens Axboe6c271ce2019-01-10 11:22:30 -07004483 /*
4484 * For SQ polling, the thread will do all submissions and completions.
4485 * Just return the requested submit count, and wake the thread if
4486 * we were asked to.
4487 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06004488 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004489 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07004490 if (!list_empty_careful(&ctx->cq_overflow_list))
4491 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004492 if (flags & IORING_ENTER_SQ_WAKEUP)
4493 wake_up(&ctx->sqo_wait);
4494 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06004495 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004496 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004497
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004498 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004499 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004500 /* already have mm, so io_submit_sqes() won't try to grab it */
4501 cur_mm = ctx->sqo_mm;
4502 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
4503 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004504 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004505 }
4506 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07004507 unsigned nr_events = 0;
4508
Jens Axboe2b188cc2019-01-07 10:46:33 -07004509 min_complete = min(min_complete, ctx->cq_entries);
4510
Jens Axboedef596e2019-01-09 08:59:42 -07004511 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07004512 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07004513 } else {
4514 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
4515 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004516 }
4517
Pavel Begunkov6805b322019-10-08 02:18:42 +03004518 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004519out_fput:
4520 fdput(f);
4521 return submitted ? submitted : ret;
4522}
4523
4524static const struct file_operations io_uring_fops = {
4525 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06004526 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07004527 .mmap = io_uring_mmap,
4528 .poll = io_uring_poll,
4529 .fasync = io_uring_fasync,
4530};
4531
4532static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
4533 struct io_uring_params *p)
4534{
Hristo Venev75b28af2019-08-26 17:23:46 +00004535 struct io_rings *rings;
4536 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004537
Hristo Venev75b28af2019-08-26 17:23:46 +00004538 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
4539 if (size == SIZE_MAX)
4540 return -EOVERFLOW;
4541
4542 rings = io_mem_alloc(size);
4543 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004544 return -ENOMEM;
4545
Hristo Venev75b28af2019-08-26 17:23:46 +00004546 ctx->rings = rings;
4547 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
4548 rings->sq_ring_mask = p->sq_entries - 1;
4549 rings->cq_ring_mask = p->cq_entries - 1;
4550 rings->sq_ring_entries = p->sq_entries;
4551 rings->cq_ring_entries = p->cq_entries;
4552 ctx->sq_mask = rings->sq_ring_mask;
4553 ctx->cq_mask = rings->cq_ring_mask;
4554 ctx->sq_entries = rings->sq_ring_entries;
4555 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004556
4557 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07004558 if (size == SIZE_MAX) {
4559 io_mem_free(ctx->rings);
4560 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004561 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07004562 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004563
4564 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07004565 if (!ctx->sq_sqes) {
4566 io_mem_free(ctx->rings);
4567 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004568 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07004569 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004570
Jens Axboe2b188cc2019-01-07 10:46:33 -07004571 return 0;
4572}
4573
4574/*
4575 * Allocate an anonymous fd, this is what constitutes the application
4576 * visible backing of an io_uring instance. The application mmaps this
4577 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
4578 * we have to tie this fd to a socket for file garbage collection purposes.
4579 */
4580static int io_uring_get_fd(struct io_ring_ctx *ctx)
4581{
4582 struct file *file;
4583 int ret;
4584
4585#if defined(CONFIG_UNIX)
4586 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
4587 &ctx->ring_sock);
4588 if (ret)
4589 return ret;
4590#endif
4591
4592 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
4593 if (ret < 0)
4594 goto err;
4595
4596 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
4597 O_RDWR | O_CLOEXEC);
4598 if (IS_ERR(file)) {
4599 put_unused_fd(ret);
4600 ret = PTR_ERR(file);
4601 goto err;
4602 }
4603
4604#if defined(CONFIG_UNIX)
4605 ctx->ring_sock->file = file;
Jens Axboe6b063142019-01-10 22:13:58 -07004606 ctx->ring_sock->sk->sk_user_data = ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004607#endif
4608 fd_install(ret, file);
4609 return ret;
4610err:
4611#if defined(CONFIG_UNIX)
4612 sock_release(ctx->ring_sock);
4613 ctx->ring_sock = NULL;
4614#endif
4615 return ret;
4616}
4617
4618static int io_uring_create(unsigned entries, struct io_uring_params *p)
4619{
4620 struct user_struct *user = NULL;
4621 struct io_ring_ctx *ctx;
4622 bool account_mem;
4623 int ret;
4624
4625 if (!entries || entries > IORING_MAX_ENTRIES)
4626 return -EINVAL;
4627
4628 /*
4629 * Use twice as many entries for the CQ ring. It's possible for the
4630 * application to drive a higher depth than the size of the SQ ring,
4631 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06004632 * some flexibility in overcommitting a bit. If the application has
4633 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
4634 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07004635 */
4636 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06004637 if (p->flags & IORING_SETUP_CQSIZE) {
4638 /*
4639 * If IORING_SETUP_CQSIZE is set, we do the same roundup
4640 * to a power-of-two, if it isn't already. We do NOT impose
4641 * any cq vs sq ring sizing.
4642 */
4643 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
4644 return -EINVAL;
4645 p->cq_entries = roundup_pow_of_two(p->cq_entries);
4646 } else {
4647 p->cq_entries = 2 * p->sq_entries;
4648 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004649
4650 user = get_uid(current_user());
4651 account_mem = !capable(CAP_IPC_LOCK);
4652
4653 if (account_mem) {
4654 ret = io_account_mem(user,
4655 ring_pages(p->sq_entries, p->cq_entries));
4656 if (ret) {
4657 free_uid(user);
4658 return ret;
4659 }
4660 }
4661
4662 ctx = io_ring_ctx_alloc(p);
4663 if (!ctx) {
4664 if (account_mem)
4665 io_unaccount_mem(user, ring_pages(p->sq_entries,
4666 p->cq_entries));
4667 free_uid(user);
4668 return -ENOMEM;
4669 }
4670 ctx->compat = in_compat_syscall();
4671 ctx->account_mem = account_mem;
4672 ctx->user = user;
4673
4674 ret = io_allocate_scq_urings(ctx, p);
4675 if (ret)
4676 goto err;
4677
Jens Axboe6c271ce2019-01-10 11:22:30 -07004678 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004679 if (ret)
4680 goto err;
4681
Jens Axboe2b188cc2019-01-07 10:46:33 -07004682 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00004683 p->sq_off.head = offsetof(struct io_rings, sq.head);
4684 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
4685 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
4686 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
4687 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
4688 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
4689 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004690
4691 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00004692 p->cq_off.head = offsetof(struct io_rings, cq.head);
4693 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
4694 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
4695 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
4696 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
4697 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06004698
Jens Axboe044c1ab2019-10-28 09:15:33 -06004699 /*
4700 * Install ring fd as the very last thing, so we don't risk someone
4701 * having closed it before we finish setup
4702 */
4703 ret = io_uring_get_fd(ctx);
4704 if (ret < 0)
4705 goto err;
4706
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004707 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004708 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004709 return ret;
4710err:
4711 io_ring_ctx_wait_and_kill(ctx);
4712 return ret;
4713}
4714
4715/*
4716 * Sets up an aio uring context, and returns the fd. Applications asks for a
4717 * ring size, we return the actual sq/cq ring sizes (among other things) in the
4718 * params structure passed in.
4719 */
4720static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
4721{
4722 struct io_uring_params p;
4723 long ret;
4724 int i;
4725
4726 if (copy_from_user(&p, params, sizeof(p)))
4727 return -EFAULT;
4728 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
4729 if (p.resv[i])
4730 return -EINVAL;
4731 }
4732
Jens Axboe6c271ce2019-01-10 11:22:30 -07004733 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe33a107f2019-10-04 12:10:03 -06004734 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
Jens Axboe2b188cc2019-01-07 10:46:33 -07004735 return -EINVAL;
4736
4737 ret = io_uring_create(entries, &p);
4738 if (ret < 0)
4739 return ret;
4740
4741 if (copy_to_user(params, &p, sizeof(p)))
4742 return -EFAULT;
4743
4744 return ret;
4745}
4746
4747SYSCALL_DEFINE2(io_uring_setup, u32, entries,
4748 struct io_uring_params __user *, params)
4749{
4750 return io_uring_setup(entries, params);
4751}
4752
Jens Axboeedafcce2019-01-09 09:16:05 -07004753static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
4754 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06004755 __releases(ctx->uring_lock)
4756 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07004757{
4758 int ret;
4759
Jens Axboe35fa71a2019-04-22 10:23:23 -06004760 /*
4761 * We're inside the ring mutex, if the ref is already dying, then
4762 * someone else killed the ctx or is already going through
4763 * io_uring_register().
4764 */
4765 if (percpu_ref_is_dying(&ctx->refs))
4766 return -ENXIO;
4767
Jens Axboeedafcce2019-01-09 09:16:05 -07004768 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06004769
4770 /*
4771 * Drop uring mutex before waiting for references to exit. If another
4772 * thread is currently inside io_uring_enter() it might need to grab
4773 * the uring_lock to make progress. If we hold it here across the drain
4774 * wait, then we can deadlock. It's safe to drop the mutex here, since
4775 * no new references will come in after we've killed the percpu ref.
4776 */
4777 mutex_unlock(&ctx->uring_lock);
Jens Axboe206aefd2019-11-07 18:27:42 -07004778 wait_for_completion(&ctx->completions[0]);
Jens Axboeb19062a2019-04-15 10:49:38 -06004779 mutex_lock(&ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07004780
4781 switch (opcode) {
4782 case IORING_REGISTER_BUFFERS:
4783 ret = io_sqe_buffer_register(ctx, arg, nr_args);
4784 break;
4785 case IORING_UNREGISTER_BUFFERS:
4786 ret = -EINVAL;
4787 if (arg || nr_args)
4788 break;
4789 ret = io_sqe_buffer_unregister(ctx);
4790 break;
Jens Axboe6b063142019-01-10 22:13:58 -07004791 case IORING_REGISTER_FILES:
4792 ret = io_sqe_files_register(ctx, arg, nr_args);
4793 break;
4794 case IORING_UNREGISTER_FILES:
4795 ret = -EINVAL;
4796 if (arg || nr_args)
4797 break;
4798 ret = io_sqe_files_unregister(ctx);
4799 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06004800 case IORING_REGISTER_FILES_UPDATE:
4801 ret = io_sqe_files_update(ctx, arg, nr_args);
4802 break;
Jens Axboe9b402842019-04-11 11:45:41 -06004803 case IORING_REGISTER_EVENTFD:
4804 ret = -EINVAL;
4805 if (nr_args != 1)
4806 break;
4807 ret = io_eventfd_register(ctx, arg);
4808 break;
4809 case IORING_UNREGISTER_EVENTFD:
4810 ret = -EINVAL;
4811 if (arg || nr_args)
4812 break;
4813 ret = io_eventfd_unregister(ctx);
4814 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07004815 default:
4816 ret = -EINVAL;
4817 break;
4818 }
4819
4820 /* bring the ctx back to life */
Jens Axboe206aefd2019-11-07 18:27:42 -07004821 reinit_completion(&ctx->completions[0]);
Jens Axboeedafcce2019-01-09 09:16:05 -07004822 percpu_ref_reinit(&ctx->refs);
4823 return ret;
4824}
4825
4826SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
4827 void __user *, arg, unsigned int, nr_args)
4828{
4829 struct io_ring_ctx *ctx;
4830 long ret = -EBADF;
4831 struct fd f;
4832
4833 f = fdget(fd);
4834 if (!f.file)
4835 return -EBADF;
4836
4837 ret = -EOPNOTSUPP;
4838 if (f.file->f_op != &io_uring_fops)
4839 goto out_fput;
4840
4841 ctx = f.file->private_data;
4842
4843 mutex_lock(&ctx->uring_lock);
4844 ret = __io_uring_register(ctx, opcode, arg, nr_args);
4845 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004846 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
4847 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004848out_fput:
4849 fdput(f);
4850 return ret;
4851}
4852
Jens Axboe2b188cc2019-01-07 10:46:33 -07004853static int __init io_uring_init(void)
4854{
4855 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
4856 return 0;
4857};
4858__initcall(io_uring_init);