blob: 1689aea55527f7c905765de74a4dbb79413b4bbf [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 Axboeaa4c3962019-11-29 10:14:00 -070072#include <linux/highmem.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070073
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020074#define CREATE_TRACE_POINTS
75#include <trace/events/io_uring.h>
76
Jens Axboe2b188cc2019-01-07 10:46:33 -070077#include <uapi/linux/io_uring.h>
78
79#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060080#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070081
Daniel Xu5277dea2019-09-14 14:23:45 -070082#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060083#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060084
85/*
86 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
87 */
88#define IORING_FILE_TABLE_SHIFT 9
89#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
90#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
91#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070092
93struct io_uring {
94 u32 head ____cacheline_aligned_in_smp;
95 u32 tail ____cacheline_aligned_in_smp;
96};
97
Stefan Bühler1e84b972019-04-24 23:54:16 +020098/*
Hristo Venev75b28af2019-08-26 17:23:46 +000099 * This data is shared with the application through the mmap at offsets
100 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200101 *
102 * The offsets to the member fields are published through struct
103 * io_sqring_offsets when calling io_uring_setup.
104 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000105struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200106 /*
107 * Head and tail offsets into the ring; the offsets need to be
108 * masked to get valid indices.
109 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000110 * The kernel controls head of the sq ring and the tail of the cq ring,
111 * and the application controls tail of the sq ring and the head of the
112 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200113 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000114 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000116 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200117 * ring_entries - 1)
118 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 u32 sq_ring_mask, cq_ring_mask;
120 /* Ring sizes (constant, power of 2) */
121 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 /*
123 * Number of invalid entries dropped by the kernel due to
124 * invalid index stored in array
125 *
126 * Written by the kernel, shouldn't be modified by the
127 * application (i.e. get number of "new events" by comparing to
128 * cached value).
129 *
130 * After a new SQ head value was read by the application this
131 * counter includes all submissions that were dropped reaching
132 * the new SQ head (and possibly more).
133 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000134 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200135 /*
136 * Runtime flags
137 *
138 * Written by the kernel, shouldn't be modified by the
139 * application.
140 *
141 * The application needs a full memory barrier before checking
142 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
143 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000144 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200145 /*
146 * Number of completion events lost because the queue was full;
147 * this should be avoided by the application by making sure
148 * there are not more requests pending thatn there is space in
149 * the completion queue.
150 *
151 * Written by the kernel, shouldn't be modified by the
152 * application (i.e. get number of "new events" by comparing to
153 * cached value).
154 *
155 * As completion events come in out of order this counter is not
156 * ordered with any other data.
157 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000158 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200159 /*
160 * Ring buffer of completion events.
161 *
162 * The kernel writes completion events fresh every time they are
163 * produced, so the application is allowed to modify pending
164 * entries.
165 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000166 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700167};
168
Jens Axboeedafcce2019-01-09 09:16:05 -0700169struct io_mapped_ubuf {
170 u64 ubuf;
171 size_t len;
172 struct bio_vec *bvec;
173 unsigned int nr_bvecs;
174};
175
Jens Axboe65e19f52019-10-26 07:20:21 -0600176struct fixed_file_table {
177 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700178};
179
Jens Axboe2b188cc2019-01-07 10:46:33 -0700180struct io_ring_ctx {
181 struct {
182 struct percpu_ref refs;
183 } ____cacheline_aligned_in_smp;
184
185 struct {
186 unsigned int flags;
187 bool compat;
188 bool account_mem;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700189 bool cq_overflow_flushed;
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300190 bool drain_next;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700191
Hristo Venev75b28af2019-08-26 17:23:46 +0000192 /*
193 * Ring buffer of indices into array of io_uring_sqe, which is
194 * mmapped by the application using the IORING_OFF_SQES offset.
195 *
196 * This indirection could e.g. be used to assign fixed
197 * io_uring_sqe entries to operations and only submit them to
198 * the queue when needed.
199 *
200 * The kernel modifies neither the indices array nor the entries
201 * array.
202 */
203 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700204 unsigned cached_sq_head;
205 unsigned sq_entries;
206 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700207 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600208 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700209 atomic_t cached_cq_overflow;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700210 struct io_uring_sqe *sq_sqes;
Jens Axboede0617e2019-04-06 21:51:27 -0600211
212 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600213 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700214 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700215
Jens Axboefcb323c2019-10-24 12:39:47 -0600216 wait_queue_head_t inflight_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700217 } ____cacheline_aligned_in_smp;
218
Hristo Venev75b28af2019-08-26 17:23:46 +0000219 struct io_rings *rings;
220
Jens Axboe2b188cc2019-01-07 10:46:33 -0700221 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600222 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700223 struct task_struct *sqo_thread; /* if using sq thread polling */
224 struct mm_struct *sqo_mm;
225 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700226
Jens Axboe6b063142019-01-10 22:13:58 -0700227 /*
228 * If used, fixed file set. Writers must ensure that ->refs is dead,
229 * readers must ensure that ->refs is alive as long as the file* is
230 * used. Only updated through io_uring_register(2).
231 */
Jens Axboe65e19f52019-10-26 07:20:21 -0600232 struct fixed_file_table *file_table;
Jens Axboe6b063142019-01-10 22:13:58 -0700233 unsigned nr_user_files;
234
Jens Axboeedafcce2019-01-09 09:16:05 -0700235 /* if used, fixed mapped user buffers */
236 unsigned nr_user_bufs;
237 struct io_mapped_ubuf *user_bufs;
238
Jens Axboe2b188cc2019-01-07 10:46:33 -0700239 struct user_struct *user;
240
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700241 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700242
Jens Axboe206aefd2019-11-07 18:27:42 -0700243 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
244 struct completion *completions;
245
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700246 /* if all else fails... */
247 struct io_kiocb *fallback_req;
248
Jens Axboe206aefd2019-11-07 18:27:42 -0700249#if defined(CONFIG_UNIX)
250 struct socket *ring_sock;
251#endif
252
253 struct {
254 unsigned cached_cq_tail;
255 unsigned cq_entries;
256 unsigned cq_mask;
257 atomic_t cq_timeouts;
258 struct wait_queue_head cq_wait;
259 struct fasync_struct *cq_fasync;
260 struct eventfd_ctx *cq_ev_fd;
261 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700262
263 struct {
264 struct mutex uring_lock;
265 wait_queue_head_t wait;
266 } ____cacheline_aligned_in_smp;
267
268 struct {
269 spinlock_t completion_lock;
Jens Axboedef596e2019-01-09 08:59:42 -0700270 bool poll_multi_file;
271 /*
272 * ->poll_list is protected by the ctx->uring_lock for
273 * io_uring instances that don't use IORING_SETUP_SQPOLL.
274 * For SQPOLL, only the single threaded io_sq_thread() will
275 * manipulate the list, hence no extra locking is needed there.
276 */
277 struct list_head poll_list;
Jens Axboeeac406c2019-11-14 12:09:58 -0700278 struct rb_root cancel_tree;
Jens Axboefcb323c2019-10-24 12:39:47 -0600279
280 spinlock_t inflight_lock;
281 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700282 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700283};
284
Jens Axboe09bb8392019-03-13 12:39:28 -0600285/*
286 * First field must be the file pointer in all the
287 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
288 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700289struct io_poll_iocb {
290 struct file *file;
291 struct wait_queue_head *head;
292 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600293 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700294 bool canceled;
Jens Axboee9444752019-11-26 15:02:04 -0700295 struct wait_queue_entry *wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700296};
297
Jens Axboead8a48a2019-11-15 08:49:11 -0700298struct io_timeout_data {
299 struct io_kiocb *req;
300 struct hrtimer timer;
301 struct timespec64 ts;
302 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300303 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700304};
305
Jens Axboe5262f562019-09-17 12:26:57 -0600306struct io_timeout {
307 struct file *file;
Jens Axboead8a48a2019-11-15 08:49:11 -0700308 struct io_timeout_data *data;
Jens Axboe5262f562019-09-17 12:26:57 -0600309};
310
Jens Axboef67676d2019-12-02 11:03:47 -0700311struct io_async_rw {
312 struct iovec fast_iov[UIO_FASTIOV];
313 struct iovec *iov;
314 ssize_t nr_segs;
315 ssize_t size;
316};
317
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700318struct io_async_ctx {
319 struct io_uring_sqe sqe;
Jens Axboef67676d2019-12-02 11:03:47 -0700320 union {
321 struct io_async_rw rw;
322 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700323};
324
Jens Axboe09bb8392019-03-13 12:39:28 -0600325/*
326 * NOTE! Each of the iocb union members has the file pointer
327 * as the first entry in their struct definition. So you can
328 * access the file pointer through any of the sub-structs,
329 * or directly as just 'ki_filp' in this struct.
330 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700331struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700332 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600333 struct file *file;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700334 struct kiocb rw;
335 struct io_poll_iocb poll;
Jens Axboe5262f562019-09-17 12:26:57 -0600336 struct io_timeout timeout;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700337 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700338
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300339 const struct io_uring_sqe *sqe;
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700340 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300341 struct file *ring_file;
342 int ring_fd;
343 bool has_user;
344 bool in_async;
345 bool needs_fixed_file;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700346
347 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700348 union {
349 struct list_head list;
350 struct rb_node rb_node;
351 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600352 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700353 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700354 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200355#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700356#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700357#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700358#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200359#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
360#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600361#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700362#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800363#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300364#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600365#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600366#define REQ_F_ISREG 2048 /* regular file */
367#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700368#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800369#define REQ_F_INFLIGHT 16384 /* on inflight list */
370#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700371 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600372 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600373 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700374
Jens Axboefcb323c2019-10-24 12:39:47 -0600375 struct list_head inflight_entry;
376
Jens Axboe561fb042019-10-24 07:25:42 -0600377 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700378};
379
380#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700381#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700382
Jens Axboe9a56a232019-01-09 09:06:50 -0700383struct io_submit_state {
384 struct blk_plug plug;
385
386 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700387 * io_kiocb alloc cache
388 */
389 void *reqs[IO_IOPOLL_BATCH];
390 unsigned int free_reqs;
391 unsigned int cur_req;
392
393 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700394 * File reference cache
395 */
396 struct file *file;
397 unsigned int fd;
398 unsigned int has_refs;
399 unsigned int used_refs;
400 unsigned int ios_left;
401};
402
Jens Axboe561fb042019-10-24 07:25:42 -0600403static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700404static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liu4fe2c962019-09-09 20:50:40 +0800405static void __io_free_req(struct io_kiocb *req);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800406static void io_put_req(struct io_kiocb *req);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700407static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700408static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700409static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
410static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600411
Jens Axboe2b188cc2019-01-07 10:46:33 -0700412static struct kmem_cache *req_cachep;
413
414static const struct file_operations io_uring_fops;
415
416struct sock *io_uring_get_socket(struct file *file)
417{
418#if defined(CONFIG_UNIX)
419 if (file->f_op == &io_uring_fops) {
420 struct io_ring_ctx *ctx = file->private_data;
421
422 return ctx->ring_sock->sk;
423 }
424#endif
425 return NULL;
426}
427EXPORT_SYMBOL(io_uring_get_socket);
428
429static void io_ring_ctx_ref_free(struct percpu_ref *ref)
430{
431 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
432
Jens Axboe206aefd2019-11-07 18:27:42 -0700433 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700434}
435
436static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
437{
438 struct io_ring_ctx *ctx;
439
440 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
441 if (!ctx)
442 return NULL;
443
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700444 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
445 if (!ctx->fallback_req)
446 goto err;
447
Jens Axboe206aefd2019-11-07 18:27:42 -0700448 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
449 if (!ctx->completions)
450 goto err;
451
Roman Gushchin21482892019-05-07 10:01:48 -0700452 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700453 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
454 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700455
456 ctx->flags = p->flags;
457 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700458 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700459 init_completion(&ctx->completions[0]);
460 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700461 mutex_init(&ctx->uring_lock);
462 init_waitqueue_head(&ctx->wait);
463 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700464 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboeeac406c2019-11-14 12:09:58 -0700465 ctx->cancel_tree = RB_ROOT;
Jens Axboede0617e2019-04-06 21:51:27 -0600466 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600467 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600468 init_waitqueue_head(&ctx->inflight_wait);
469 spin_lock_init(&ctx->inflight_lock);
470 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700471 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700472err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700473 if (ctx->fallback_req)
474 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700475 kfree(ctx->completions);
476 kfree(ctx);
477 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700478}
479
Bob Liu9d858b22019-11-13 18:06:25 +0800480static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600481{
Jackie Liua197f662019-11-08 08:09:12 -0700482 struct io_ring_ctx *ctx = req->ctx;
483
Jens Axboe498ccd92019-10-25 10:04:25 -0600484 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
485 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600486}
487
Bob Liu9d858b22019-11-13 18:06:25 +0800488static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600489{
Bob Liu9d858b22019-11-13 18:06:25 +0800490 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
491 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600492
Bob Liu9d858b22019-11-13 18:06:25 +0800493 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600494}
495
496static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600497{
498 struct io_kiocb *req;
499
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600500 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800501 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600502 list_del_init(&req->list);
503 return req;
504 }
505
506 return NULL;
507}
508
Jens Axboe5262f562019-09-17 12:26:57 -0600509static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
510{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600511 struct io_kiocb *req;
512
513 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700514 if (req) {
515 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
516 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800517 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700518 list_del_init(&req->list);
519 return req;
520 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600521 }
522
523 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600524}
525
Jens Axboede0617e2019-04-06 21:51:27 -0600526static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700527{
Hristo Venev75b28af2019-08-26 17:23:46 +0000528 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700529
Hristo Venev75b28af2019-08-26 17:23:46 +0000530 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700531 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000532 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700533
Jens Axboe2b188cc2019-01-07 10:46:33 -0700534 if (wq_has_sleeper(&ctx->cq_wait)) {
535 wake_up_interruptible(&ctx->cq_wait);
536 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
537 }
538 }
539}
540
Jens Axboe561fb042019-10-24 07:25:42 -0600541static inline bool io_sqe_needs_user(const struct io_uring_sqe *sqe)
Jens Axboe18d9be12019-09-10 09:13:05 -0600542{
Jens Axboe561fb042019-10-24 07:25:42 -0600543 u8 opcode = READ_ONCE(sqe->opcode);
544
545 return !(opcode == IORING_OP_READ_FIXED ||
546 opcode == IORING_OP_WRITE_FIXED);
547}
548
Jens Axboe94ae5e72019-11-14 19:39:52 -0700549static inline bool io_prep_async_work(struct io_kiocb *req,
550 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600551{
552 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600553
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300554 if (req->sqe) {
555 switch (req->sqe->opcode) {
Jens Axboe6cc47d12019-09-18 11:18:23 -0600556 case IORING_OP_WRITEV:
557 case IORING_OP_WRITE_FIXED:
Jens Axboe561fb042019-10-24 07:25:42 -0600558 do_hashed = true;
Jens Axboe5f8fd2d32019-11-07 10:57:36 -0700559 /* fall-through */
560 case IORING_OP_READV:
561 case IORING_OP_READ_FIXED:
562 case IORING_OP_SENDMSG:
563 case IORING_OP_RECVMSG:
564 case IORING_OP_ACCEPT:
565 case IORING_OP_POLL_ADD:
Jens Axboef8e85cf2019-11-23 14:24:24 -0700566 case IORING_OP_CONNECT:
Jens Axboe5f8fd2d32019-11-07 10:57:36 -0700567 /*
568 * We know REQ_F_ISREG is not set on some of these
569 * opcodes, but this enables us to keep the check in
570 * just one place.
571 */
572 if (!(req->flags & REQ_F_ISREG))
573 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe6cc47d12019-09-18 11:18:23 -0600574 break;
575 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300576 if (io_sqe_needs_user(req->sqe))
Jens Axboe561fb042019-10-24 07:25:42 -0600577 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600578 }
579
Jens Axboe94ae5e72019-11-14 19:39:52 -0700580 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600581 return do_hashed;
582}
583
Jackie Liua197f662019-11-08 08:09:12 -0700584static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600585{
Jackie Liua197f662019-11-08 08:09:12 -0700586 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700587 struct io_kiocb *link;
588 bool do_hashed;
589
590 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600591
592 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
593 req->flags);
594 if (!do_hashed) {
595 io_wq_enqueue(ctx->io_wq, &req->work);
596 } else {
597 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
598 file_inode(req->file));
599 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700600
601 if (link)
602 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600603}
604
Jens Axboe5262f562019-09-17 12:26:57 -0600605static void io_kill_timeout(struct io_kiocb *req)
606{
607 int ret;
608
Jens Axboead8a48a2019-11-15 08:49:11 -0700609 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600610 if (ret != -1) {
611 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600612 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700613 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800614 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600615 }
616}
617
618static void io_kill_timeouts(struct io_ring_ctx *ctx)
619{
620 struct io_kiocb *req, *tmp;
621
622 spin_lock_irq(&ctx->completion_lock);
623 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
624 io_kill_timeout(req);
625 spin_unlock_irq(&ctx->completion_lock);
626}
627
Jens Axboede0617e2019-04-06 21:51:27 -0600628static void io_commit_cqring(struct io_ring_ctx *ctx)
629{
630 struct io_kiocb *req;
631
Jens Axboe5262f562019-09-17 12:26:57 -0600632 while ((req = io_get_timeout_req(ctx)) != NULL)
633 io_kill_timeout(req);
634
Jens Axboede0617e2019-04-06 21:51:27 -0600635 __io_commit_cqring(ctx);
636
637 while ((req = io_get_deferred_req(ctx)) != NULL) {
638 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700639 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600640 }
641}
642
Jens Axboe2b188cc2019-01-07 10:46:33 -0700643static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
644{
Hristo Venev75b28af2019-08-26 17:23:46 +0000645 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700646 unsigned tail;
647
648 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200649 /*
650 * writes to the cq entry need to come after reading head; the
651 * control dependency is enough as we're using WRITE_ONCE to
652 * fill the cq entry
653 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000654 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700655 return NULL;
656
657 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000658 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700659}
660
Jens Axboe8c838782019-03-12 15:48:16 -0600661static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
662{
663 if (waitqueue_active(&ctx->wait))
664 wake_up(&ctx->wait);
665 if (waitqueue_active(&ctx->sqo_wait))
666 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600667 if (ctx->cq_ev_fd)
668 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600669}
670
Jens Axboec4a2ed72019-11-21 21:01:26 -0700671/* Returns true if there are no backlogged entries after the flush */
672static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700673{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700674 struct io_rings *rings = ctx->rings;
675 struct io_uring_cqe *cqe;
676 struct io_kiocb *req;
677 unsigned long flags;
678 LIST_HEAD(list);
679
680 if (!force) {
681 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700682 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700683 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
684 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700685 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700686 }
687
688 spin_lock_irqsave(&ctx->completion_lock, flags);
689
690 /* if force is set, the ring is going away. always drop after that */
691 if (force)
692 ctx->cq_overflow_flushed = true;
693
Jens Axboec4a2ed72019-11-21 21:01:26 -0700694 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700695 while (!list_empty(&ctx->cq_overflow_list)) {
696 cqe = io_get_cqring(ctx);
697 if (!cqe && !force)
698 break;
699
700 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
701 list);
702 list_move(&req->list, &list);
703 if (cqe) {
704 WRITE_ONCE(cqe->user_data, req->user_data);
705 WRITE_ONCE(cqe->res, req->result);
706 WRITE_ONCE(cqe->flags, 0);
707 } else {
708 WRITE_ONCE(ctx->rings->cq_overflow,
709 atomic_inc_return(&ctx->cached_cq_overflow));
710 }
711 }
712
713 io_commit_cqring(ctx);
714 spin_unlock_irqrestore(&ctx->completion_lock, flags);
715 io_cqring_ev_posted(ctx);
716
717 while (!list_empty(&list)) {
718 req = list_first_entry(&list, struct io_kiocb, list);
719 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800720 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700721 }
Jens Axboec4a2ed72019-11-21 21:01:26 -0700722
723 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700724}
725
Jens Axboe78e19bb2019-11-06 15:21:34 -0700726static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700727{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700728 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700729 struct io_uring_cqe *cqe;
730
Jens Axboe78e19bb2019-11-06 15:21:34 -0700731 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -0700732
Jens Axboe2b188cc2019-01-07 10:46:33 -0700733 /*
734 * If we can't get a cq entry, userspace overflowed the
735 * submission (by quite a lot). Increment the overflow count in
736 * the ring.
737 */
738 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700739 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700740 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700741 WRITE_ONCE(cqe->res, res);
742 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700743 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700744 WRITE_ONCE(ctx->rings->cq_overflow,
745 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700746 } else {
747 refcount_inc(&req->refs);
748 req->result = res;
749 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700750 }
751}
752
Jens Axboe78e19bb2019-11-06 15:21:34 -0700753static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700754{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700755 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700756 unsigned long flags;
757
758 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700759 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700760 io_commit_cqring(ctx);
761 spin_unlock_irqrestore(&ctx->completion_lock, flags);
762
Jens Axboe8c838782019-03-12 15:48:16 -0600763 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700764}
765
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700766static inline bool io_is_fallback_req(struct io_kiocb *req)
767{
768 return req == (struct io_kiocb *)
769 ((unsigned long) req->ctx->fallback_req & ~1UL);
770}
771
772static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
773{
774 struct io_kiocb *req;
775
776 req = ctx->fallback_req;
777 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
778 return req;
779
780 return NULL;
781}
782
Jens Axboe2579f912019-01-09 09:10:43 -0700783static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
784 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700785{
Jens Axboefd6fab22019-03-14 16:30:06 -0600786 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700787 struct io_kiocb *req;
788
789 if (!percpu_ref_tryget(&ctx->refs))
790 return NULL;
791
Jens Axboe2579f912019-01-09 09:10:43 -0700792 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -0600793 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -0700794 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700795 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -0700796 } else if (!state->free_reqs) {
797 size_t sz;
798 int ret;
799
800 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -0600801 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
802
803 /*
804 * Bulk alloc is all-or-nothing. If we fail to get a batch,
805 * retry single alloc to be on the safe side.
806 */
807 if (unlikely(ret <= 0)) {
808 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
809 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700810 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -0600811 ret = 1;
812 }
Jens Axboe2579f912019-01-09 09:10:43 -0700813 state->free_reqs = ret - 1;
814 state->cur_req = 1;
815 req = state->reqs[0];
816 } else {
817 req = state->reqs[state->cur_req];
818 state->free_reqs--;
819 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700820 }
821
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700822got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700823 req->io = NULL;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300824 req->ring_file = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -0600825 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -0700826 req->ctx = ctx;
827 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -0600828 /* one is dropped after submission, the other at completion */
829 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -0600830 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -0600831 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -0700832 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700833fallback:
834 req = io_get_fallback_req(ctx);
835 if (req)
836 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +0300837 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700838 return NULL;
839}
840
Jens Axboedef596e2019-01-09 08:59:42 -0700841static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
842{
843 if (*nr) {
844 kmem_cache_free_bulk(req_cachep, *nr, reqs);
Pavel Begunkov6805b322019-10-08 02:18:42 +0300845 percpu_ref_put_many(&ctx->refs, *nr);
Jens Axboedef596e2019-01-09 08:59:42 -0700846 *nr = 0;
847 }
848}
849
Jens Axboe9e645e112019-05-10 16:07:28 -0600850static void __io_free_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700851{
Jens Axboefcb323c2019-10-24 12:39:47 -0600852 struct io_ring_ctx *ctx = req->ctx;
853
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700854 if (req->io)
855 kfree(req->io);
Jens Axboe09bb8392019-03-13 12:39:28 -0600856 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
857 fput(req->file);
Jens Axboefcb323c2019-10-24 12:39:47 -0600858 if (req->flags & REQ_F_INFLIGHT) {
859 unsigned long flags;
860
861 spin_lock_irqsave(&ctx->inflight_lock, flags);
862 list_del(&req->inflight_entry);
863 if (waitqueue_active(&ctx->inflight_wait))
864 wake_up(&ctx->inflight_wait);
865 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
866 }
Jens Axboead8a48a2019-11-15 08:49:11 -0700867 if (req->flags & REQ_F_TIMEOUT)
868 kfree(req->timeout.data);
Jens Axboefcb323c2019-10-24 12:39:47 -0600869 percpu_ref_put(&ctx->refs);
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700870 if (likely(!io_is_fallback_req(req)))
871 kmem_cache_free(req_cachep, req);
872 else
873 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -0600874}
875
Jackie Liua197f662019-11-08 08:09:12 -0700876static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -0600877{
Jackie Liua197f662019-11-08 08:09:12 -0700878 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700879 int ret;
880
Jens Axboead8a48a2019-11-15 08:49:11 -0700881 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe2665abf2019-11-05 12:40:47 -0700882 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700883 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -0700884 io_commit_cqring(ctx);
885 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +0800886 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -0700887 return true;
888 }
889
890 return false;
891}
892
Jens Axboeba816ad2019-09-28 11:36:45 -0600893static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -0600894{
Jens Axboe2665abf2019-11-05 12:40:47 -0700895 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -0600896 struct io_kiocb *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -0700897 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -0600898
Jens Axboe4d7dd462019-11-20 13:03:52 -0700899 /* Already got next link */
900 if (req->flags & REQ_F_LINK_NEXT)
901 return;
902
Jens Axboe9e645e112019-05-10 16:07:28 -0600903 /*
904 * The list should never be empty when we are called here. But could
905 * potentially happen if the chain is messed up, check to be on the
906 * safe side.
907 */
908 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb, list);
Jens Axboe2665abf2019-11-05 12:40:47 -0700909 while (nxt) {
Jens Axboe76a46e02019-11-10 23:34:16 -0700910 list_del_init(&nxt->list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700911
912 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
913 (nxt->flags & REQ_F_TIMEOUT)) {
914 wake_ev |= io_link_cancel_timeout(nxt);
915 nxt = list_first_entry_or_null(&req->link_list,
916 struct io_kiocb, list);
917 req->flags &= ~REQ_F_LINK_TIMEOUT;
918 continue;
919 }
Jens Axboe9e645e112019-05-10 16:07:28 -0600920 if (!list_empty(&req->link_list)) {
921 INIT_LIST_HEAD(&nxt->link_list);
922 list_splice(&req->link_list, &nxt->link_list);
923 nxt->flags |= REQ_F_LINK;
924 }
925
Pavel Begunkovb18fdf72019-11-21 23:21:02 +0300926 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700927 break;
Jens Axboe9e645e112019-05-10 16:07:28 -0600928 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700929
Jens Axboe4d7dd462019-11-20 13:03:52 -0700930 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -0700931 if (wake_ev)
932 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600933}
934
935/*
936 * Called if REQ_F_LINK is set, and we fail the head request
937 */
938static void io_fail_links(struct io_kiocb *req)
939{
Jens Axboe2665abf2019-11-05 12:40:47 -0700940 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -0600941 struct io_kiocb *link;
Jens Axboe2665abf2019-11-05 12:40:47 -0700942 unsigned long flags;
943
944 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -0600945
946 while (!list_empty(&req->link_list)) {
947 link = list_first_entry(&req->link_list, struct io_kiocb, list);
Jens Axboe2665abf2019-11-05 12:40:47 -0700948 list_del_init(&link->list);
Jens Axboe9e645e112019-05-10 16:07:28 -0600949
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +0200950 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700951
952 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300953 link->sqe->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -0700954 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700955 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700956 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -0700957 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700958 }
Jens Axboe5d960722019-11-19 15:31:28 -0700959 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -0600960 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700961
962 io_commit_cqring(ctx);
963 spin_unlock_irqrestore(&ctx->completion_lock, flags);
964 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600965}
966
Jens Axboe4d7dd462019-11-20 13:03:52 -0700967static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -0600968{
Jens Axboe4d7dd462019-11-20 13:03:52 -0700969 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -0700970 return;
Jens Axboe2665abf2019-11-05 12:40:47 -0700971
Jens Axboe9e645e112019-05-10 16:07:28 -0600972 /*
973 * If LINK is set, we have dependent requests in this chain. If we
974 * didn't fail this request, queue the first one up, moving any other
975 * dependencies to the next request. In case of failure, fail the rest
976 * of the chain.
977 */
Jens Axboe2665abf2019-11-05 12:40:47 -0700978 if (req->flags & REQ_F_FAIL_LINK) {
979 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -0700980 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
981 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -0700982 struct io_ring_ctx *ctx = req->ctx;
983 unsigned long flags;
984
985 /*
986 * If this is a timeout link, we could be racing with the
987 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -0700988 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -0700989 */
990 spin_lock_irqsave(&ctx->completion_lock, flags);
991 io_req_link_next(req, nxt);
992 spin_unlock_irqrestore(&ctx->completion_lock, flags);
993 } else {
994 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -0600995 }
Jens Axboe4d7dd462019-11-20 13:03:52 -0700996}
Jens Axboe9e645e112019-05-10 16:07:28 -0600997
Jackie Liuc69f8db2019-11-09 11:00:08 +0800998static void io_free_req(struct io_kiocb *req)
999{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001000 struct io_kiocb *nxt = NULL;
1001
1002 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001003 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001004
1005 if (nxt)
1006 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001007}
1008
Jens Axboeba816ad2019-09-28 11:36:45 -06001009/*
1010 * Drop reference to request, return next in chain (if there is one) if this
1011 * was the last reference to this request.
1012 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001013__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001014static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001015{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001016 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001017
Jens Axboee65ef562019-03-12 10:16:44 -06001018 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001019 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001020}
1021
Jens Axboe2b188cc2019-01-07 10:46:33 -07001022static void io_put_req(struct io_kiocb *req)
1023{
Jens Axboedef596e2019-01-09 08:59:42 -07001024 if (refcount_dec_and_test(&req->refs))
1025 io_free_req(req);
1026}
1027
Jens Axboe978db572019-11-14 22:39:04 -07001028/*
1029 * Must only be used if we don't need to care about links, usually from
1030 * within the completion handling itself.
1031 */
1032static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001033{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001034 /* drop both submit and complete references */
1035 if (refcount_sub_and_test(2, &req->refs))
1036 __io_free_req(req);
1037}
1038
Jens Axboe978db572019-11-14 22:39:04 -07001039static void io_double_put_req(struct io_kiocb *req)
1040{
1041 /* drop both submit and complete references */
1042 if (refcount_sub_and_test(2, &req->refs))
1043 io_free_req(req);
1044}
1045
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001046static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001047{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001048 struct io_rings *rings = ctx->rings;
1049
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001050 /*
1051 * noflush == true is from the waitqueue handler, just ensure we wake
1052 * up the task, and the next invocation will flush the entries. We
1053 * cannot safely to it from here.
1054 */
1055 if (noflush && !list_empty(&ctx->cq_overflow_list))
1056 return -1U;
1057
1058 io_cqring_overflow_flush(ctx, false);
1059
Jens Axboea3a0e432019-08-20 11:03:11 -06001060 /* See comment at the top of this file */
1061 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00001062 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001063}
1064
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001065static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1066{
1067 struct io_rings *rings = ctx->rings;
1068
1069 /* make sure SQ entry isn't read before tail */
1070 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1071}
1072
Jens Axboedef596e2019-01-09 08:59:42 -07001073/*
1074 * Find and free completed poll iocbs
1075 */
1076static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1077 struct list_head *done)
1078{
1079 void *reqs[IO_IOPOLL_BATCH];
1080 struct io_kiocb *req;
Jens Axboe09bb8392019-03-13 12:39:28 -06001081 int to_free;
Jens Axboedef596e2019-01-09 08:59:42 -07001082
Jens Axboe09bb8392019-03-13 12:39:28 -06001083 to_free = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001084 while (!list_empty(done)) {
1085 req = list_first_entry(done, struct io_kiocb, list);
1086 list_del(&req->list);
1087
Jens Axboe78e19bb2019-11-06 15:21:34 -07001088 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001089 (*nr_events)++;
1090
Jens Axboe09bb8392019-03-13 12:39:28 -06001091 if (refcount_dec_and_test(&req->refs)) {
1092 /* If we're not using fixed files, we have to pair the
1093 * completion part with the file put. Use regular
1094 * completions for those, only batch free for fixed
Jens Axboe9e645e112019-05-10 16:07:28 -06001095 * file and non-linked commands.
Jens Axboe09bb8392019-03-13 12:39:28 -06001096 */
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001097 if (((req->flags & (REQ_F_FIXED_FILE|REQ_F_LINK)) ==
1098 REQ_F_FIXED_FILE) && !io_is_fallback_req(req) &&
1099 !req->io) {
Jens Axboe09bb8392019-03-13 12:39:28 -06001100 reqs[to_free++] = req;
1101 if (to_free == ARRAY_SIZE(reqs))
1102 io_free_req_many(ctx, reqs, &to_free);
Jens Axboe6b063142019-01-10 22:13:58 -07001103 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001104 io_free_req(req);
Jens Axboe6b063142019-01-10 22:13:58 -07001105 }
Jens Axboe9a56a232019-01-09 09:06:50 -07001106 }
Jens Axboedef596e2019-01-09 08:59:42 -07001107 }
Jens Axboedef596e2019-01-09 08:59:42 -07001108
Jens Axboe09bb8392019-03-13 12:39:28 -06001109 io_commit_cqring(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07001110 io_free_req_many(ctx, reqs, &to_free);
1111}
1112
1113static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1114 long min)
1115{
1116 struct io_kiocb *req, *tmp;
1117 LIST_HEAD(done);
1118 bool spin;
1119 int ret;
1120
1121 /*
1122 * Only spin for completions if we don't have multiple devices hanging
1123 * off our complete list, and we're under the requested amount.
1124 */
1125 spin = !ctx->poll_multi_file && *nr_events < min;
1126
1127 ret = 0;
1128 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
1129 struct kiocb *kiocb = &req->rw;
1130
1131 /*
1132 * Move completed entries to our local list. If we find a
1133 * request that requires polling, break out and complete
1134 * the done list first, if we have entries there.
1135 */
1136 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1137 list_move_tail(&req->list, &done);
1138 continue;
1139 }
1140 if (!list_empty(&done))
1141 break;
1142
1143 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1144 if (ret < 0)
1145 break;
1146
1147 if (ret && spin)
1148 spin = false;
1149 ret = 0;
1150 }
1151
1152 if (!list_empty(&done))
1153 io_iopoll_complete(ctx, nr_events, &done);
1154
1155 return ret;
1156}
1157
1158/*
1159 * Poll for a mininum of 'min' events. Note that if min == 0 we consider that a
1160 * non-spinning poll check - we'll still enter the driver poll loop, but only
1161 * as a non-spinning completion check.
1162 */
1163static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1164 long min)
1165{
Jens Axboe08f54392019-08-21 22:19:11 -06001166 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001167 int ret;
1168
1169 ret = io_do_iopoll(ctx, nr_events, min);
1170 if (ret < 0)
1171 return ret;
1172 if (!min || *nr_events >= min)
1173 return 0;
1174 }
1175
1176 return 1;
1177}
1178
1179/*
1180 * We can't just wait for polled events to come to us, we have to actively
1181 * find and complete them.
1182 */
1183static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1184{
1185 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1186 return;
1187
1188 mutex_lock(&ctx->uring_lock);
1189 while (!list_empty(&ctx->poll_list)) {
1190 unsigned int nr_events = 0;
1191
1192 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001193
1194 /*
1195 * Ensure we allow local-to-the-cpu processing to take place,
1196 * in this case we need to ensure that we reap all events.
1197 */
1198 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001199 }
1200 mutex_unlock(&ctx->uring_lock);
1201}
1202
Jens Axboe2b2ed972019-10-25 10:06:15 -06001203static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1204 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001205{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001206 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001207
1208 do {
1209 int tmin = 0;
1210
Jens Axboe500f9fb2019-08-19 12:15:59 -06001211 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001212 * Don't enter poll loop if we already have events pending.
1213 * If we do, we can potentially be spinning for commands that
1214 * already triggered a CQE (eg in error).
1215 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001216 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001217 break;
1218
1219 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001220 * If a submit got punted to a workqueue, we can have the
1221 * application entering polling for a command before it gets
1222 * issued. That app will hold the uring_lock for the duration
1223 * of the poll right here, so we need to take a breather every
1224 * now and then to ensure that the issue has a chance to add
1225 * the poll to the issued list. Otherwise we can spin here
1226 * forever, while the workqueue is stuck trying to acquire the
1227 * very same mutex.
1228 */
1229 if (!(++iters & 7)) {
1230 mutex_unlock(&ctx->uring_lock);
1231 mutex_lock(&ctx->uring_lock);
1232 }
1233
Jens Axboedef596e2019-01-09 08:59:42 -07001234 if (*nr_events < min)
1235 tmin = min - *nr_events;
1236
1237 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1238 if (ret <= 0)
1239 break;
1240 ret = 0;
1241 } while (min && !*nr_events && !need_resched());
1242
Jens Axboe2b2ed972019-10-25 10:06:15 -06001243 return ret;
1244}
1245
1246static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1247 long min)
1248{
1249 int ret;
1250
1251 /*
1252 * We disallow the app entering submit/complete with polling, but we
1253 * still need to lock the ring to prevent racing with polled issue
1254 * that got punted to a workqueue.
1255 */
1256 mutex_lock(&ctx->uring_lock);
1257 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001258 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001259 return ret;
1260}
1261
Jens Axboe491381ce2019-10-17 09:20:46 -06001262static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001263{
Jens Axboe491381ce2019-10-17 09:20:46 -06001264 /*
1265 * Tell lockdep we inherited freeze protection from submission
1266 * thread.
1267 */
1268 if (req->flags & REQ_F_ISREG) {
1269 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001270
Jens Axboe491381ce2019-10-17 09:20:46 -06001271 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001272 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001273 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001274}
1275
Jens Axboeba816ad2019-09-28 11:36:45 -06001276static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001277{
1278 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1279
Jens Axboe491381ce2019-10-17 09:20:46 -06001280 if (kiocb->ki_flags & IOCB_WRITE)
1281 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001282
Jens Axboe9e645e112019-05-10 16:07:28 -06001283 if ((req->flags & REQ_F_LINK) && res != req->result)
1284 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001285 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001286}
1287
1288static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1289{
1290 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1291
1292 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001293 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001294}
1295
Jens Axboeba816ad2019-09-28 11:36:45 -06001296static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1297{
1298 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001299 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001300
1301 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001302 io_put_req_find_next(req, &nxt);
1303
1304 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001305}
1306
Jens Axboedef596e2019-01-09 08:59:42 -07001307static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1308{
1309 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1310
Jens Axboe491381ce2019-10-17 09:20:46 -06001311 if (kiocb->ki_flags & IOCB_WRITE)
1312 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001313
Jens Axboe9e645e112019-05-10 16:07:28 -06001314 if ((req->flags & REQ_F_LINK) && res != req->result)
1315 req->flags |= REQ_F_FAIL_LINK;
1316 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001317 if (res != -EAGAIN)
1318 req->flags |= REQ_F_IOPOLL_COMPLETED;
1319}
1320
1321/*
1322 * After the iocb has been issued, it's safe to be found on the poll list.
1323 * Adding the kiocb to the list AFTER submission ensures that we don't
1324 * find it from a io_iopoll_getevents() thread before the issuer is done
1325 * accessing the kiocb cookie.
1326 */
1327static void io_iopoll_req_issued(struct io_kiocb *req)
1328{
1329 struct io_ring_ctx *ctx = req->ctx;
1330
1331 /*
1332 * Track whether we have multiple files in our lists. This will impact
1333 * how we do polling eventually, not spinning if we're on potentially
1334 * different devices.
1335 */
1336 if (list_empty(&ctx->poll_list)) {
1337 ctx->poll_multi_file = false;
1338 } else if (!ctx->poll_multi_file) {
1339 struct io_kiocb *list_req;
1340
1341 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1342 list);
1343 if (list_req->rw.ki_filp != req->rw.ki_filp)
1344 ctx->poll_multi_file = true;
1345 }
1346
1347 /*
1348 * For fast devices, IO may have already completed. If it has, add
1349 * it to the front so we find it first.
1350 */
1351 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1352 list_add(&req->list, &ctx->poll_list);
1353 else
1354 list_add_tail(&req->list, &ctx->poll_list);
1355}
1356
Jens Axboe3d6770f2019-04-13 11:50:54 -06001357static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001358{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001359 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001360 int diff = state->has_refs - state->used_refs;
1361
1362 if (diff)
1363 fput_many(state->file, diff);
1364 state->file = NULL;
1365 }
1366}
1367
1368/*
1369 * Get as many references to a file as we have IOs left in this submission,
1370 * assuming most submissions are for one file, or at least that each file
1371 * has more than one submission.
1372 */
1373static struct file *io_file_get(struct io_submit_state *state, int fd)
1374{
1375 if (!state)
1376 return fget(fd);
1377
1378 if (state->file) {
1379 if (state->fd == fd) {
1380 state->used_refs++;
1381 state->ios_left--;
1382 return state->file;
1383 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001384 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001385 }
1386 state->file = fget_many(fd, state->ios_left);
1387 if (!state->file)
1388 return NULL;
1389
1390 state->fd = fd;
1391 state->has_refs = state->ios_left;
1392 state->used_refs = 1;
1393 state->ios_left--;
1394 return state->file;
1395}
1396
Jens Axboe2b188cc2019-01-07 10:46:33 -07001397/*
1398 * If we tracked the file through the SCM inflight mechanism, we could support
1399 * any file. For now, just ensure that anything potentially problematic is done
1400 * inline.
1401 */
1402static bool io_file_supports_async(struct file *file)
1403{
1404 umode_t mode = file_inode(file)->i_mode;
1405
1406 if (S_ISBLK(mode) || S_ISCHR(mode))
1407 return true;
1408 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1409 return true;
1410
1411 return false;
1412}
1413
Pavel Begunkov267bc902019-11-07 01:41:08 +03001414static int io_prep_rw(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001415{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001416 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboedef596e2019-01-09 08:59:42 -07001417 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001418 struct kiocb *kiocb = &req->rw;
Jens Axboe09bb8392019-03-13 12:39:28 -06001419 unsigned ioprio;
1420 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001421
Jens Axboe09bb8392019-03-13 12:39:28 -06001422 if (!req->file)
1423 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001424
Jens Axboe491381ce2019-10-17 09:20:46 -06001425 if (S_ISREG(file_inode(req->file)->i_mode))
1426 req->flags |= REQ_F_ISREG;
1427
Jens Axboe2b188cc2019-01-07 10:46:33 -07001428 kiocb->ki_pos = READ_ONCE(sqe->off);
1429 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1430 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1431
1432 ioprio = READ_ONCE(sqe->ioprio);
1433 if (ioprio) {
1434 ret = ioprio_check_cap(ioprio);
1435 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001436 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001437
1438 kiocb->ki_ioprio = ioprio;
1439 } else
1440 kiocb->ki_ioprio = get_current_ioprio();
1441
1442 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1443 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001444 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001445
1446 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001447 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1448 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001449 req->flags |= REQ_F_NOWAIT;
1450
1451 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001452 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001453
Jens Axboedef596e2019-01-09 08:59:42 -07001454 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001455 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1456 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001457 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001458
Jens Axboedef596e2019-01-09 08:59:42 -07001459 kiocb->ki_flags |= IOCB_HIPRI;
1460 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001461 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001462 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001463 if (kiocb->ki_flags & IOCB_HIPRI)
1464 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001465 kiocb->ki_complete = io_complete_rw;
1466 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001467 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001468}
1469
1470static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1471{
1472 switch (ret) {
1473 case -EIOCBQUEUED:
1474 break;
1475 case -ERESTARTSYS:
1476 case -ERESTARTNOINTR:
1477 case -ERESTARTNOHAND:
1478 case -ERESTART_RESTARTBLOCK:
1479 /*
1480 * We can't just restart the syscall, since previously
1481 * submitted sqes may already be in progress. Just fail this
1482 * IO with EINTR.
1483 */
1484 ret = -EINTR;
1485 /* fall through */
1486 default:
1487 kiocb->ki_complete(kiocb, ret, 0);
1488 }
1489}
1490
Jens Axboeba816ad2019-09-28 11:36:45 -06001491static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1492 bool in_async)
1493{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001494 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001495 *nxt = __io_complete_rw(kiocb, ret);
1496 else
1497 io_rw_done(kiocb, ret);
1498}
1499
Pavel Begunkov7d009162019-11-25 23:14:40 +03001500static ssize_t io_import_fixed(struct io_ring_ctx *ctx, int rw,
1501 const struct io_uring_sqe *sqe,
1502 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001503{
1504 size_t len = READ_ONCE(sqe->len);
1505 struct io_mapped_ubuf *imu;
1506 unsigned index, buf_index;
1507 size_t offset;
1508 u64 buf_addr;
1509
1510 /* attempt to use fixed buffers without having provided iovecs */
1511 if (unlikely(!ctx->user_bufs))
1512 return -EFAULT;
1513
1514 buf_index = READ_ONCE(sqe->buf_index);
1515 if (unlikely(buf_index >= ctx->nr_user_bufs))
1516 return -EFAULT;
1517
1518 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1519 imu = &ctx->user_bufs[index];
1520 buf_addr = READ_ONCE(sqe->addr);
1521
1522 /* overflow */
1523 if (buf_addr + len < buf_addr)
1524 return -EFAULT;
1525 /* not inside the mapped region */
1526 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1527 return -EFAULT;
1528
1529 /*
1530 * May not be a start of buffer, set size appropriately
1531 * and advance us to the beginning.
1532 */
1533 offset = buf_addr - imu->ubuf;
1534 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001535
1536 if (offset) {
1537 /*
1538 * Don't use iov_iter_advance() here, as it's really slow for
1539 * using the latter parts of a big fixed buffer - it iterates
1540 * over each segment manually. We can cheat a bit here, because
1541 * we know that:
1542 *
1543 * 1) it's a BVEC iter, we set it up
1544 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1545 * first and last bvec
1546 *
1547 * So just find our index, and adjust the iterator afterwards.
1548 * If the offset is within the first bvec (or the whole first
1549 * bvec, just use iov_iter_advance(). This makes it easier
1550 * since we can just skip the first segment, which may not
1551 * be PAGE_SIZE aligned.
1552 */
1553 const struct bio_vec *bvec = imu->bvec;
1554
1555 if (offset <= bvec->bv_len) {
1556 iov_iter_advance(iter, offset);
1557 } else {
1558 unsigned long seg_skip;
1559
1560 /* skip first vec */
1561 offset -= bvec->bv_len;
1562 seg_skip = 1 + (offset >> PAGE_SHIFT);
1563
1564 iter->bvec = bvec + seg_skip;
1565 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001566 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001567 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001568 }
1569 }
1570
Jens Axboe5e559562019-11-13 16:12:46 -07001571 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001572}
1573
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001574static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1575 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001576{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001577 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001578 void __user *buf = u64_to_user_ptr(READ_ONCE(sqe->addr));
1579 size_t sqe_len = READ_ONCE(sqe->len);
Jens Axboeedafcce2019-01-09 09:16:05 -07001580 u8 opcode;
1581
1582 /*
1583 * We're reading ->opcode for the second time, but the first read
1584 * doesn't care whether it's _FIXED or not, so it doesn't matter
1585 * whether ->opcode changes concurrently. The first read does care
1586 * about whether it is a READ or a WRITE, so we don't trust this read
1587 * for that purpose and instead let the caller pass in the read/write
1588 * flag.
1589 */
1590 opcode = READ_ONCE(sqe->opcode);
Pavel Begunkov7d009162019-11-25 23:14:40 +03001591 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001592 *iovec = NULL;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001593 return io_import_fixed(req->ctx, rw, sqe, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001594 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001595
Jens Axboef67676d2019-12-02 11:03:47 -07001596 if (req->io) {
1597 struct io_async_rw *iorw = &req->io->rw;
1598
1599 *iovec = iorw->iov;
1600 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1601 if (iorw->iov == iorw->fast_iov)
1602 *iovec = NULL;
1603 return iorw->size;
1604 }
1605
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001606 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001607 return -EFAULT;
1608
1609#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001610 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001611 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1612 iovec, iter);
1613#endif
1614
1615 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1616}
1617
Jens Axboe32960612019-09-23 11:05:34 -06001618/*
1619 * For files that don't have ->read_iter() and ->write_iter(), handle them
1620 * by looping over ->read() or ->write() manually.
1621 */
1622static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1623 struct iov_iter *iter)
1624{
1625 ssize_t ret = 0;
1626
1627 /*
1628 * Don't support polled IO through this interface, and we can't
1629 * support non-blocking either. For the latter, this just causes
1630 * the kiocb to be handled from an async context.
1631 */
1632 if (kiocb->ki_flags & IOCB_HIPRI)
1633 return -EOPNOTSUPP;
1634 if (kiocb->ki_flags & IOCB_NOWAIT)
1635 return -EAGAIN;
1636
1637 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001638 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06001639 ssize_t nr;
1640
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001641 if (!iov_iter_is_bvec(iter)) {
1642 iovec = iov_iter_iovec(iter);
1643 } else {
1644 /* fixed buffers import bvec */
1645 iovec.iov_base = kmap(iter->bvec->bv_page)
1646 + iter->iov_offset;
1647 iovec.iov_len = min(iter->count,
1648 iter->bvec->bv_len - iter->iov_offset);
1649 }
1650
Jens Axboe32960612019-09-23 11:05:34 -06001651 if (rw == READ) {
1652 nr = file->f_op->read(file, iovec.iov_base,
1653 iovec.iov_len, &kiocb->ki_pos);
1654 } else {
1655 nr = file->f_op->write(file, iovec.iov_base,
1656 iovec.iov_len, &kiocb->ki_pos);
1657 }
1658
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001659 if (iov_iter_is_bvec(iter))
1660 kunmap(iter->bvec->bv_page);
1661
Jens Axboe32960612019-09-23 11:05:34 -06001662 if (nr < 0) {
1663 if (!ret)
1664 ret = nr;
1665 break;
1666 }
1667 ret += nr;
1668 if (nr != iovec.iov_len)
1669 break;
1670 iov_iter_advance(iter, nr);
1671 }
1672
1673 return ret;
1674}
1675
Jens Axboef67676d2019-12-02 11:03:47 -07001676static void io_req_map_io(struct io_kiocb *req, ssize_t io_size,
1677 struct iovec *iovec, struct iovec *fast_iov,
1678 struct iov_iter *iter)
1679{
1680 req->io->rw.nr_segs = iter->nr_segs;
1681 req->io->rw.size = io_size;
1682 req->io->rw.iov = iovec;
1683 if (!req->io->rw.iov) {
1684 req->io->rw.iov = req->io->rw.fast_iov;
1685 memcpy(req->io->rw.iov, fast_iov,
1686 sizeof(struct iovec) * iter->nr_segs);
1687 }
1688}
1689
1690static int io_setup_async_io(struct io_kiocb *req, ssize_t io_size,
1691 struct iovec *iovec, struct iovec *fast_iov,
1692 struct iov_iter *iter)
1693{
1694 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
1695 if (req->io) {
1696 io_req_map_io(req, io_size, iovec, fast_iov, iter);
1697 memcpy(&req->io->sqe, req->sqe, sizeof(req->io->sqe));
1698 req->sqe = &req->io->sqe;
1699 return 0;
1700 }
1701
1702 return -ENOMEM;
1703}
1704
1705static int io_read_prep(struct io_kiocb *req, struct iovec **iovec,
1706 struct iov_iter *iter, bool force_nonblock)
1707{
1708 ssize_t ret;
1709
1710 ret = io_prep_rw(req, force_nonblock);
1711 if (ret)
1712 return ret;
1713
1714 if (unlikely(!(req->file->f_mode & FMODE_READ)))
1715 return -EBADF;
1716
1717 return io_import_iovec(READ, req, iovec, iter);
1718}
1719
Pavel Begunkov267bc902019-11-07 01:41:08 +03001720static int io_read(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 Axboef67676d2019-12-02 11:03:47 -07001728 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001729
Jens Axboef67676d2019-12-02 11:03:47 -07001730 if (!req->io) {
1731 ret = io_read_prep(req, &iovec, &iter, force_nonblock);
1732 if (ret < 0)
1733 return ret;
1734 } else {
1735 ret = io_import_iovec(READ, req, &iovec, &iter);
1736 if (ret < 0)
1737 return ret;
1738 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001739
Jens Axboef67676d2019-12-02 11:03:47 -07001740 file = req->file;
1741 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001742 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001743 req->result = io_size;
1744
1745 /*
1746 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1747 * we know to async punt it even if it was opened O_NONBLOCK
1748 */
1749 if (force_nonblock && !io_file_supports_async(file)) {
1750 req->flags |= REQ_F_MUST_PUNT;
1751 goto copy_iov;
1752 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001753
Jens Axboe31b51512019-01-18 22:56:34 -07001754 iov_count = iov_iter_count(&iter);
1755 ret = rw_verify_area(READ, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001756 if (!ret) {
1757 ssize_t ret2;
1758
Jens Axboe32960612019-09-23 11:05:34 -06001759 if (file->f_op->read_iter)
1760 ret2 = call_read_iter(file, kiocb, &iter);
1761 else
1762 ret2 = loop_rw_iter(READ, file, kiocb, &iter);
1763
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001764 /*
1765 * In case of a short read, punt to async. This can happen
1766 * if we have data partially cached. Alternatively we can
1767 * return the short read, in which case the application will
1768 * need to issue another SQE and wait for it. That SQE will
1769 * need async punt anyway, so it's more efficient to do it
1770 * here.
1771 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001772 if (force_nonblock && !(req->flags & REQ_F_NOWAIT) &&
1773 (req->flags & REQ_F_ISREG) &&
Jens Axboef67676d2019-12-02 11:03:47 -07001774 ret2 > 0 && ret2 < io_size)
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001775 ret2 = -EAGAIN;
1776 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07001777 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001778 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001779 } else {
1780copy_iov:
1781 ret = io_setup_async_io(req, io_size, iovec,
1782 inline_vecs, &iter);
1783 if (ret)
1784 goto out_free;
1785 return -EAGAIN;
1786 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001787 }
Jens Axboef67676d2019-12-02 11:03:47 -07001788out_free:
Jens Axboe2b188cc2019-01-07 10:46:33 -07001789 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001790 return ret;
1791}
1792
Jens Axboef67676d2019-12-02 11:03:47 -07001793static int io_write_prep(struct io_kiocb *req, struct iovec **iovec,
1794 struct iov_iter *iter, bool force_nonblock)
1795{
1796 ssize_t ret;
1797
1798 ret = io_prep_rw(req, force_nonblock);
1799 if (ret)
1800 return ret;
1801
1802 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
1803 return -EBADF;
1804
1805 return io_import_iovec(WRITE, req, iovec, iter);
1806}
1807
Pavel Begunkov267bc902019-11-07 01:41:08 +03001808static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001809 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001810{
1811 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1812 struct kiocb *kiocb = &req->rw;
1813 struct iov_iter iter;
1814 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001815 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001816 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001817
Jens Axboef67676d2019-12-02 11:03:47 -07001818 if (!req->io) {
1819 ret = io_write_prep(req, &iovec, &iter, force_nonblock);
1820 if (ret < 0)
1821 return ret;
1822 } else {
1823 ret = io_import_iovec(WRITE, req, &iovec, &iter);
1824 if (ret < 0)
1825 return ret;
1826 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001827
Jens Axboe2b188cc2019-01-07 10:46:33 -07001828 file = kiocb->ki_filp;
Jens Axboef67676d2019-12-02 11:03:47 -07001829 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001830 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001831 req->result = io_size;
1832
1833 /*
1834 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1835 * we know to async punt it even if it was opened O_NONBLOCK
1836 */
1837 if (force_nonblock && !io_file_supports_async(req->file)) {
1838 req->flags |= REQ_F_MUST_PUNT;
1839 goto copy_iov;
1840 }
1841
1842 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT))
1843 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06001844
Jens Axboe31b51512019-01-18 22:56:34 -07001845 iov_count = iov_iter_count(&iter);
Jens Axboe31b51512019-01-18 22:56:34 -07001846 ret = rw_verify_area(WRITE, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001847 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01001848 ssize_t ret2;
1849
Jens Axboe2b188cc2019-01-07 10:46:33 -07001850 /*
1851 * Open-code file_start_write here to grab freeze protection,
1852 * which will be released by another thread in
1853 * io_complete_rw(). Fool lockdep by telling it the lock got
1854 * released so that it doesn't complain about the held lock when
1855 * we return to userspace.
1856 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001857 if (req->flags & REQ_F_ISREG) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001858 __sb_start_write(file_inode(file)->i_sb,
1859 SB_FREEZE_WRITE, true);
1860 __sb_writers_release(file_inode(file)->i_sb,
1861 SB_FREEZE_WRITE);
1862 }
1863 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01001864
Jens Axboe32960612019-09-23 11:05:34 -06001865 if (file->f_op->write_iter)
1866 ret2 = call_write_iter(file, kiocb, &iter);
1867 else
1868 ret2 = loop_rw_iter(WRITE, file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07001869 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001870 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001871 } else {
1872copy_iov:
1873 ret = io_setup_async_io(req, io_size, iovec,
1874 inline_vecs, &iter);
1875 if (ret)
1876 goto out_free;
1877 return -EAGAIN;
1878 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001879 }
Jens Axboe31b51512019-01-18 22:56:34 -07001880out_free:
Jens Axboe2b188cc2019-01-07 10:46:33 -07001881 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001882 return ret;
1883}
1884
1885/*
1886 * IORING_OP_NOP just posts a completion event, nothing else.
1887 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07001888static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001889{
1890 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001891
Jens Axboedef596e2019-01-09 08:59:42 -07001892 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1893 return -EINVAL;
1894
Jens Axboe78e19bb2019-11-06 15:21:34 -07001895 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06001896 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001897 return 0;
1898}
1899
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001900static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1901{
Jens Axboe6b063142019-01-10 22:13:58 -07001902 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001903
Jens Axboe09bb8392019-03-13 12:39:28 -06001904 if (!req->file)
1905 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001906
Jens Axboe6b063142019-01-10 22:13:58 -07001907 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07001908 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07001909 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001910 return -EINVAL;
1911
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001912 return 0;
1913}
1914
1915static int io_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001916 struct io_kiocb **nxt, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001917{
1918 loff_t sqe_off = READ_ONCE(sqe->off);
1919 loff_t sqe_len = READ_ONCE(sqe->len);
1920 loff_t end = sqe_off + sqe_len;
1921 unsigned fsync_flags;
1922 int ret;
1923
1924 fsync_flags = READ_ONCE(sqe->fsync_flags);
1925 if (unlikely(fsync_flags & ~IORING_FSYNC_DATASYNC))
1926 return -EINVAL;
1927
1928 ret = io_prep_fsync(req, sqe);
1929 if (ret)
1930 return ret;
1931
1932 /* fsync always requires a blocking context */
1933 if (force_nonblock)
1934 return -EAGAIN;
1935
1936 ret = vfs_fsync_range(req->rw.ki_filp, sqe_off,
1937 end > 0 ? end : LLONG_MAX,
1938 fsync_flags & IORING_FSYNC_DATASYNC);
1939
Jens Axboe9e645e112019-05-10 16:07:28 -06001940 if (ret < 0 && (req->flags & REQ_F_LINK))
1941 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001942 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001943 io_put_req_find_next(req, nxt);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001944 return 0;
1945}
1946
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001947static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1948{
1949 struct io_ring_ctx *ctx = req->ctx;
1950 int ret = 0;
1951
1952 if (!req->file)
1953 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001954
1955 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1956 return -EINVAL;
1957 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
1958 return -EINVAL;
1959
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001960 return ret;
1961}
1962
1963static int io_sync_file_range(struct io_kiocb *req,
1964 const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001965 struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001966 bool force_nonblock)
1967{
1968 loff_t sqe_off;
1969 loff_t sqe_len;
1970 unsigned flags;
1971 int ret;
1972
1973 ret = io_prep_sfr(req, sqe);
1974 if (ret)
1975 return ret;
1976
1977 /* sync_file_range always requires a blocking context */
1978 if (force_nonblock)
1979 return -EAGAIN;
1980
1981 sqe_off = READ_ONCE(sqe->off);
1982 sqe_len = READ_ONCE(sqe->len);
1983 flags = READ_ONCE(sqe->sync_range_flags);
1984
1985 ret = sync_file_range(req->rw.ki_filp, sqe_off, sqe_len, flags);
1986
Jens Axboe9e645e112019-05-10 16:07:28 -06001987 if (ret < 0 && (req->flags & REQ_F_LINK))
1988 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001989 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001990 io_put_req_find_next(req, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001991 return 0;
1992}
1993
Jens Axboe0fa03c62019-04-19 13:34:07 -06001994#if defined(CONFIG_NET)
Jens Axboeaa1fa282019-04-19 13:38:09 -06001995static int io_send_recvmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001996 struct io_kiocb **nxt, bool force_nonblock,
Jens Axboeaa1fa282019-04-19 13:38:09 -06001997 long (*fn)(struct socket *, struct user_msghdr __user *,
1998 unsigned int))
1999{
Jens Axboe0fa03c62019-04-19 13:34:07 -06002000 struct socket *sock;
2001 int ret;
2002
2003 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2004 return -EINVAL;
2005
2006 sock = sock_from_file(req->file, &ret);
2007 if (sock) {
2008 struct user_msghdr __user *msg;
2009 unsigned flags;
2010
2011 flags = READ_ONCE(sqe->msg_flags);
2012 if (flags & MSG_DONTWAIT)
2013 req->flags |= REQ_F_NOWAIT;
2014 else if (force_nonblock)
2015 flags |= MSG_DONTWAIT;
2016
2017 msg = (struct user_msghdr __user *) (unsigned long)
2018 READ_ONCE(sqe->addr);
2019
Jens Axboeaa1fa282019-04-19 13:38:09 -06002020 ret = fn(sock, msg, flags);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002021 if (force_nonblock && ret == -EAGAIN)
2022 return ret;
Jens Axboe441cdbd2019-12-02 18:49:10 -07002023 if (ret == -ERESTARTSYS)
2024 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002025 }
2026
Jens Axboe78e19bb2019-11-06 15:21:34 -07002027 io_cqring_add_event(req, ret);
Jens Axboef1f40852019-11-05 20:33:16 -07002028 if (ret < 0 && (req->flags & REQ_F_LINK))
2029 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002030 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002031 return 0;
Jens Axboeaa1fa282019-04-19 13:38:09 -06002032}
2033#endif
2034
2035static int io_sendmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06002036 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002037{
2038#if defined(CONFIG_NET)
Jens Axboeba816ad2019-09-28 11:36:45 -06002039 return io_send_recvmsg(req, sqe, nxt, force_nonblock,
2040 __sys_sendmsg_sock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002041#else
2042 return -EOPNOTSUPP;
2043#endif
2044}
2045
2046static int io_recvmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06002047 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002048{
2049#if defined(CONFIG_NET)
Jens Axboeba816ad2019-09-28 11:36:45 -06002050 return io_send_recvmsg(req, sqe, nxt, force_nonblock,
2051 __sys_recvmsg_sock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002052#else
2053 return -EOPNOTSUPP;
2054#endif
2055}
2056
Jens Axboe17f2fe32019-10-17 14:42:58 -06002057static int io_accept(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2058 struct io_kiocb **nxt, bool force_nonblock)
2059{
2060#if defined(CONFIG_NET)
2061 struct sockaddr __user *addr;
2062 int __user *addr_len;
2063 unsigned file_flags;
2064 int flags, ret;
2065
2066 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2067 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05002068 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002069 return -EINVAL;
2070
2071 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
2072 addr_len = (int __user *) (unsigned long) READ_ONCE(sqe->addr2);
2073 flags = READ_ONCE(sqe->accept_flags);
2074 file_flags = force_nonblock ? O_NONBLOCK : 0;
2075
2076 ret = __sys_accept4_file(req->file, file_flags, addr, addr_len, flags);
2077 if (ret == -EAGAIN && force_nonblock) {
2078 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2079 return -EAGAIN;
2080 }
Jens Axboe8e3cca12019-11-09 19:52:33 -07002081 if (ret == -ERESTARTSYS)
2082 ret = -EINTR;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002083 if (ret < 0 && (req->flags & REQ_F_LINK))
2084 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07002085 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002086 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002087 return 0;
2088#else
2089 return -EOPNOTSUPP;
2090#endif
2091}
2092
Jens Axboef8e85cf2019-11-23 14:24:24 -07002093static int io_connect(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2094 struct io_kiocb **nxt, bool force_nonblock)
2095{
2096#if defined(CONFIG_NET)
2097 struct sockaddr __user *addr;
2098 unsigned file_flags;
2099 int addr_len, ret;
2100
2101 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2102 return -EINVAL;
2103 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
2104 return -EINVAL;
2105
2106 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
2107 addr_len = READ_ONCE(sqe->addr2);
2108 file_flags = force_nonblock ? O_NONBLOCK : 0;
2109
2110 ret = __sys_connect_file(req->file, addr, addr_len, file_flags);
2111 if (ret == -EAGAIN && force_nonblock)
2112 return -EAGAIN;
2113 if (ret == -ERESTARTSYS)
2114 ret = -EINTR;
2115 if (ret < 0 && (req->flags & REQ_F_LINK))
2116 req->flags |= REQ_F_FAIL_LINK;
2117 io_cqring_add_event(req, ret);
2118 io_put_req_find_next(req, nxt);
2119 return 0;
2120#else
2121 return -EOPNOTSUPP;
2122#endif
2123}
2124
Jens Axboeeac406c2019-11-14 12:09:58 -07002125static inline void io_poll_remove_req(struct io_kiocb *req)
2126{
2127 if (!RB_EMPTY_NODE(&req->rb_node)) {
2128 rb_erase(&req->rb_node, &req->ctx->cancel_tree);
2129 RB_CLEAR_NODE(&req->rb_node);
2130 }
2131}
2132
Jens Axboe221c5eb2019-01-17 09:41:58 -07002133static void io_poll_remove_one(struct io_kiocb *req)
2134{
2135 struct io_poll_iocb *poll = &req->poll;
2136
2137 spin_lock(&poll->head->lock);
2138 WRITE_ONCE(poll->canceled, true);
Jens Axboee9444752019-11-26 15:02:04 -07002139 if (!list_empty(&poll->wait->entry)) {
2140 list_del_init(&poll->wait->entry);
Jackie Liua197f662019-11-08 08:09:12 -07002141 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002142 }
2143 spin_unlock(&poll->head->lock);
Jens Axboeeac406c2019-11-14 12:09:58 -07002144 io_poll_remove_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002145}
2146
2147static void io_poll_remove_all(struct io_ring_ctx *ctx)
2148{
Jens Axboeeac406c2019-11-14 12:09:58 -07002149 struct rb_node *node;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002150 struct io_kiocb *req;
2151
2152 spin_lock_irq(&ctx->completion_lock);
Jens Axboeeac406c2019-11-14 12:09:58 -07002153 while ((node = rb_first(&ctx->cancel_tree)) != NULL) {
2154 req = rb_entry(node, struct io_kiocb, rb_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002155 io_poll_remove_one(req);
2156 }
2157 spin_unlock_irq(&ctx->completion_lock);
2158}
2159
Jens Axboe47f46762019-11-09 17:43:02 -07002160static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2161{
Jens Axboeeac406c2019-11-14 12:09:58 -07002162 struct rb_node *p, *parent = NULL;
Jens Axboe47f46762019-11-09 17:43:02 -07002163 struct io_kiocb *req;
2164
Jens Axboeeac406c2019-11-14 12:09:58 -07002165 p = ctx->cancel_tree.rb_node;
2166 while (p) {
2167 parent = p;
2168 req = rb_entry(parent, struct io_kiocb, rb_node);
2169 if (sqe_addr < req->user_data) {
2170 p = p->rb_left;
2171 } else if (sqe_addr > req->user_data) {
2172 p = p->rb_right;
2173 } else {
2174 io_poll_remove_one(req);
2175 return 0;
2176 }
Jens Axboe47f46762019-11-09 17:43:02 -07002177 }
2178
2179 return -ENOENT;
2180}
2181
Jens Axboe221c5eb2019-01-17 09:41:58 -07002182/*
2183 * Find a running poll command that matches one specified in sqe->addr,
2184 * and remove it if found.
2185 */
2186static int io_poll_remove(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2187{
2188 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07002189 int ret;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002190
2191 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2192 return -EINVAL;
2193 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2194 sqe->poll_events)
2195 return -EINVAL;
2196
2197 spin_lock_irq(&ctx->completion_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07002198 ret = io_poll_cancel(ctx, READ_ONCE(sqe->addr));
Jens Axboe221c5eb2019-01-17 09:41:58 -07002199 spin_unlock_irq(&ctx->completion_lock);
2200
Jens Axboe78e19bb2019-11-06 15:21:34 -07002201 io_cqring_add_event(req, ret);
Jens Axboef1f40852019-11-05 20:33:16 -07002202 if (ret < 0 && (req->flags & REQ_F_LINK))
2203 req->flags |= REQ_F_FAIL_LINK;
Jens Axboee65ef562019-03-12 10:16:44 -06002204 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002205 return 0;
2206}
2207
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002208static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002209{
Jackie Liua197f662019-11-08 08:09:12 -07002210 struct io_ring_ctx *ctx = req->ctx;
2211
Jens Axboe8c838782019-03-12 15:48:16 -06002212 req->poll.done = true;
Jens Axboee9444752019-11-26 15:02:04 -07002213 kfree(req->poll.wait);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002214 if (error)
2215 io_cqring_fill_event(req, error);
2216 else
2217 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06002218 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002219}
2220
Jens Axboe561fb042019-10-24 07:25:42 -06002221static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002222{
Jens Axboe561fb042019-10-24 07:25:42 -06002223 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002224 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2225 struct io_poll_iocb *poll = &req->poll;
2226 struct poll_table_struct pt = { ._key = poll->events };
2227 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07002228 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002229 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002230 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002231
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002232 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06002233 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002234 ret = -ECANCELED;
2235 } else if (READ_ONCE(poll->canceled)) {
2236 ret = -ECANCELED;
2237 }
Jens Axboe561fb042019-10-24 07:25:42 -06002238
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002239 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002240 mask = vfs_poll(poll->file, &pt) & poll->events;
2241
2242 /*
2243 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2244 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2245 * synchronize with them. In the cancellation case the list_del_init
2246 * itself is not actually needed, but harmless so we keep it in to
2247 * avoid further branches in the fast path.
2248 */
2249 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002250 if (!mask && ret != -ECANCELED) {
Jens Axboee9444752019-11-26 15:02:04 -07002251 add_wait_queue(poll->head, poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002252 spin_unlock_irq(&ctx->completion_lock);
2253 return;
2254 }
Jens Axboeeac406c2019-11-14 12:09:58 -07002255 io_poll_remove_req(req);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002256 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002257 spin_unlock_irq(&ctx->completion_lock);
2258
Jens Axboe8c838782019-03-12 15:48:16 -06002259 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07002260
Jens Axboefba38c22019-11-18 12:27:57 -07002261 if (ret < 0 && req->flags & REQ_F_LINK)
2262 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002263 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07002264 if (nxt)
2265 *workptr = &nxt->work;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002266}
2267
2268static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2269 void *key)
2270{
Jens Axboee9444752019-11-26 15:02:04 -07002271 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002272 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2273 struct io_ring_ctx *ctx = req->ctx;
2274 __poll_t mask = key_to_poll(key);
Jens Axboe8c838782019-03-12 15:48:16 -06002275 unsigned long flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002276
2277 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06002278 if (mask && !(mask & poll->events))
2279 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002280
Jens Axboee9444752019-11-26 15:02:04 -07002281 list_del_init(&poll->wait->entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002282
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002283 /*
2284 * Run completion inline if we can. We're using trylock here because
2285 * we are violating the completion_lock -> poll wq lock ordering.
2286 * If we have a link timeout we're going to need the completion_lock
2287 * for finalizing the request, mark us as having grabbed that already.
2288 */
Jens Axboe8c838782019-03-12 15:48:16 -06002289 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboeeac406c2019-11-14 12:09:58 -07002290 io_poll_remove_req(req);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002291 io_poll_complete(req, mask, 0);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002292 req->flags |= REQ_F_COMP_LOCKED;
2293 io_put_req(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002294 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2295
2296 io_cqring_ev_posted(ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06002297 } else {
Jackie Liua197f662019-11-08 08:09:12 -07002298 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002299 }
2300
Jens Axboe221c5eb2019-01-17 09:41:58 -07002301 return 1;
2302}
2303
2304struct io_poll_table {
2305 struct poll_table_struct pt;
2306 struct io_kiocb *req;
2307 int error;
2308};
2309
2310static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2311 struct poll_table_struct *p)
2312{
2313 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2314
2315 if (unlikely(pt->req->poll.head)) {
2316 pt->error = -EINVAL;
2317 return;
2318 }
2319
2320 pt->error = 0;
2321 pt->req->poll.head = head;
Jens Axboee9444752019-11-26 15:02:04 -07002322 add_wait_queue(head, pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002323}
2324
Jens Axboeeac406c2019-11-14 12:09:58 -07002325static void io_poll_req_insert(struct io_kiocb *req)
2326{
2327 struct io_ring_ctx *ctx = req->ctx;
2328 struct rb_node **p = &ctx->cancel_tree.rb_node;
2329 struct rb_node *parent = NULL;
2330 struct io_kiocb *tmp;
2331
2332 while (*p) {
2333 parent = *p;
2334 tmp = rb_entry(parent, struct io_kiocb, rb_node);
2335 if (req->user_data < tmp->user_data)
2336 p = &(*p)->rb_left;
2337 else
2338 p = &(*p)->rb_right;
2339 }
2340 rb_link_node(&req->rb_node, parent, p);
2341 rb_insert_color(&req->rb_node, &ctx->cancel_tree);
2342}
2343
Jens Axboe89723d02019-11-05 15:32:58 -07002344static int io_poll_add(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2345 struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002346{
2347 struct io_poll_iocb *poll = &req->poll;
2348 struct io_ring_ctx *ctx = req->ctx;
2349 struct io_poll_table ipt;
Jens Axboe8c838782019-03-12 15:48:16 -06002350 bool cancel = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002351 __poll_t mask;
2352 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002353
2354 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2355 return -EINVAL;
2356 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2357 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06002358 if (!poll->file)
2359 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002360
Jens Axboee9444752019-11-26 15:02:04 -07002361 poll->wait = kmalloc(sizeof(*poll->wait), GFP_KERNEL);
2362 if (!poll->wait)
2363 return -ENOMEM;
2364
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002365 req->io = NULL;
Jens Axboe561fb042019-10-24 07:25:42 -06002366 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002367 events = READ_ONCE(sqe->poll_events);
2368 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeeac406c2019-11-14 12:09:58 -07002369 RB_CLEAR_NODE(&req->rb_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002370
Jens Axboe221c5eb2019-01-17 09:41:58 -07002371 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06002372 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002373 poll->canceled = false;
2374
2375 ipt.pt._qproc = io_poll_queue_proc;
2376 ipt.pt._key = poll->events;
2377 ipt.req = req;
2378 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2379
2380 /* initialized the list so that we can do list_empty checks */
Jens Axboee9444752019-11-26 15:02:04 -07002381 INIT_LIST_HEAD(&poll->wait->entry);
2382 init_waitqueue_func_entry(poll->wait, io_poll_wake);
2383 poll->wait->private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002384
Jens Axboe36703242019-07-25 10:20:18 -06002385 INIT_LIST_HEAD(&req->list);
2386
Jens Axboe221c5eb2019-01-17 09:41:58 -07002387 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002388
2389 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06002390 if (likely(poll->head)) {
2391 spin_lock(&poll->head->lock);
Jens Axboee9444752019-11-26 15:02:04 -07002392 if (unlikely(list_empty(&poll->wait->entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06002393 if (ipt.error)
2394 cancel = true;
2395 ipt.error = 0;
2396 mask = 0;
2397 }
2398 if (mask || ipt.error)
Jens Axboee9444752019-11-26 15:02:04 -07002399 list_del_init(&poll->wait->entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002400 else if (cancel)
2401 WRITE_ONCE(poll->canceled, true);
2402 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07002403 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002404 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002405 }
Jens Axboe8c838782019-03-12 15:48:16 -06002406 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06002407 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002408 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06002409 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07002410 spin_unlock_irq(&ctx->completion_lock);
2411
Jens Axboe8c838782019-03-12 15:48:16 -06002412 if (mask) {
2413 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002414 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002415 }
Jens Axboe8c838782019-03-12 15:48:16 -06002416 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002417}
2418
Jens Axboe5262f562019-09-17 12:26:57 -06002419static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2420{
Jens Axboead8a48a2019-11-15 08:49:11 -07002421 struct io_timeout_data *data = container_of(timer,
2422 struct io_timeout_data, timer);
2423 struct io_kiocb *req = data->req;
2424 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06002425 unsigned long flags;
2426
Jens Axboe5262f562019-09-17 12:26:57 -06002427 atomic_inc(&ctx->cq_timeouts);
2428
2429 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08002430 /*
Jens Axboe11365042019-10-16 09:08:32 -06002431 * We could be racing with timeout deletion. If the list is empty,
2432 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08002433 */
Jens Axboe842f9612019-10-29 12:34:10 -06002434 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06002435 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06002436
Jens Axboe11365042019-10-16 09:08:32 -06002437 /*
2438 * Adjust the reqs sequence before the current one because it
2439 * will consume a slot in the cq_ring and the the cq_tail
2440 * pointer will be increased, otherwise other timeout reqs may
2441 * return in advance without waiting for enough wait_nr.
2442 */
2443 prev = req;
2444 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2445 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06002446 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06002447 }
Jens Axboe842f9612019-10-29 12:34:10 -06002448
Jens Axboe78e19bb2019-11-06 15:21:34 -07002449 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06002450 io_commit_cqring(ctx);
2451 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2452
2453 io_cqring_ev_posted(ctx);
Jens Axboef1f40852019-11-05 20:33:16 -07002454 if (req->flags & REQ_F_LINK)
2455 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe5262f562019-09-17 12:26:57 -06002456 io_put_req(req);
2457 return HRTIMER_NORESTART;
2458}
2459
Jens Axboe47f46762019-11-09 17:43:02 -07002460static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2461{
2462 struct io_kiocb *req;
2463 int ret = -ENOENT;
2464
2465 list_for_each_entry(req, &ctx->timeout_list, list) {
2466 if (user_data == req->user_data) {
2467 list_del_init(&req->list);
2468 ret = 0;
2469 break;
2470 }
2471 }
2472
2473 if (ret == -ENOENT)
2474 return ret;
2475
Jens Axboead8a48a2019-11-15 08:49:11 -07002476 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe47f46762019-11-09 17:43:02 -07002477 if (ret == -1)
2478 return -EALREADY;
2479
Jens Axboefba38c22019-11-18 12:27:57 -07002480 if (req->flags & REQ_F_LINK)
2481 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe47f46762019-11-09 17:43:02 -07002482 io_cqring_fill_event(req, -ECANCELED);
2483 io_put_req(req);
2484 return 0;
2485}
2486
Jens Axboe11365042019-10-16 09:08:32 -06002487/*
2488 * Remove or update an existing timeout command
2489 */
2490static int io_timeout_remove(struct io_kiocb *req,
2491 const struct io_uring_sqe *sqe)
2492{
2493 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe11365042019-10-16 09:08:32 -06002494 unsigned flags;
Jens Axboe47f46762019-11-09 17:43:02 -07002495 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06002496
2497 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2498 return -EINVAL;
2499 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2500 return -EINVAL;
2501 flags = READ_ONCE(sqe->timeout_flags);
2502 if (flags)
2503 return -EINVAL;
2504
Jens Axboe11365042019-10-16 09:08:32 -06002505 spin_lock_irq(&ctx->completion_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07002506 ret = io_timeout_cancel(ctx, READ_ONCE(sqe->addr));
Jens Axboe11365042019-10-16 09:08:32 -06002507
Jens Axboe47f46762019-11-09 17:43:02 -07002508 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06002509 io_commit_cqring(ctx);
2510 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002511 io_cqring_ev_posted(ctx);
Jens Axboe47f46762019-11-09 17:43:02 -07002512 if (ret < 0 && req->flags & REQ_F_LINK)
2513 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002514 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06002515 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06002516}
2517
Jens Axboead8a48a2019-11-15 08:49:11 -07002518static int io_timeout_setup(struct io_kiocb *req)
Jens Axboe5262f562019-09-17 12:26:57 -06002519{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002520 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboead8a48a2019-11-15 08:49:11 -07002521 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06002522 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06002523
Jens Axboead8a48a2019-11-15 08:49:11 -07002524 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06002525 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002526 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06002527 return -EINVAL;
2528 flags = READ_ONCE(sqe->timeout_flags);
2529 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06002530 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06002531
Jens Axboead8a48a2019-11-15 08:49:11 -07002532 data = kzalloc(sizeof(struct io_timeout_data), GFP_KERNEL);
2533 if (!data)
2534 return -ENOMEM;
2535 data->req = req;
2536 req->timeout.data = data;
2537 req->flags |= REQ_F_TIMEOUT;
2538
2539 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06002540 return -EFAULT;
2541
Jens Axboe11365042019-10-16 09:08:32 -06002542 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07002543 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06002544 else
Jens Axboead8a48a2019-11-15 08:49:11 -07002545 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06002546
Jens Axboead8a48a2019-11-15 08:49:11 -07002547 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
2548 return 0;
2549}
2550
2551static int io_timeout(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2552{
2553 unsigned count;
2554 struct io_ring_ctx *ctx = req->ctx;
2555 struct io_timeout_data *data;
2556 struct list_head *entry;
2557 unsigned span = 0;
2558 int ret;
2559
2560 ret = io_timeout_setup(req);
2561 /* common setup allows flags (like links) set, we don't */
2562 if (!ret && sqe->flags)
2563 ret = -EINVAL;
2564 if (ret)
2565 return ret;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002566
Jens Axboe5262f562019-09-17 12:26:57 -06002567 /*
2568 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07002569 * timeout event to be satisfied. If it isn't set, then this is
2570 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06002571 */
2572 count = READ_ONCE(sqe->off);
Jens Axboe93bd25b2019-11-11 23:34:31 -07002573 if (!count) {
2574 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2575 spin_lock_irq(&ctx->completion_lock);
2576 entry = ctx->timeout_list.prev;
2577 goto add;
2578 }
Jens Axboe5262f562019-09-17 12:26:57 -06002579
2580 req->sequence = ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002581 req->timeout.data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06002582
2583 /*
2584 * Insertion sort, ensuring the first entry in the list is always
2585 * the one we need first.
2586 */
Jens Axboe5262f562019-09-17 12:26:57 -06002587 spin_lock_irq(&ctx->completion_lock);
2588 list_for_each_prev(entry, &ctx->timeout_list) {
2589 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08002590 unsigned nxt_sq_head;
2591 long long tmp, tmp_nxt;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002592 u32 nxt_offset = nxt->timeout.data->seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06002593
Jens Axboe93bd25b2019-11-11 23:34:31 -07002594 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2595 continue;
2596
yangerkun5da0fb12019-10-15 21:59:29 +08002597 /*
2598 * Since cached_sq_head + count - 1 can overflow, use type long
2599 * long to store it.
2600 */
2601 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002602 nxt_sq_head = nxt->sequence - nxt_offset + 1;
2603 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08002604
2605 /*
2606 * cached_sq_head may overflow, and it will never overflow twice
2607 * once there is some timeout req still be valid.
2608 */
2609 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08002610 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08002611
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002612 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06002613 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002614
2615 /*
2616 * Sequence of reqs after the insert one and itself should
2617 * be adjusted because each timeout req consumes a slot.
2618 */
2619 span++;
2620 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06002621 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002622 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002623add:
Jens Axboe5262f562019-09-17 12:26:57 -06002624 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07002625 data = req->timeout.data;
2626 data->timer.function = io_timeout_fn;
2627 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06002628 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002629 return 0;
2630}
2631
Jens Axboe62755e32019-10-28 21:49:21 -06002632static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06002633{
Jens Axboe62755e32019-10-28 21:49:21 -06002634 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06002635
Jens Axboe62755e32019-10-28 21:49:21 -06002636 return req->user_data == (unsigned long) data;
2637}
2638
Jens Axboee977d6d2019-11-05 12:39:45 -07002639static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06002640{
Jens Axboe62755e32019-10-28 21:49:21 -06002641 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06002642 int ret = 0;
2643
Jens Axboe62755e32019-10-28 21:49:21 -06002644 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
2645 switch (cancel_ret) {
2646 case IO_WQ_CANCEL_OK:
2647 ret = 0;
2648 break;
2649 case IO_WQ_CANCEL_RUNNING:
2650 ret = -EALREADY;
2651 break;
2652 case IO_WQ_CANCEL_NOTFOUND:
2653 ret = -ENOENT;
2654 break;
2655 }
2656
Jens Axboee977d6d2019-11-05 12:39:45 -07002657 return ret;
2658}
2659
Jens Axboe47f46762019-11-09 17:43:02 -07002660static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
2661 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002662 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07002663{
2664 unsigned long flags;
2665 int ret;
2666
2667 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
2668 if (ret != -ENOENT) {
2669 spin_lock_irqsave(&ctx->completion_lock, flags);
2670 goto done;
2671 }
2672
2673 spin_lock_irqsave(&ctx->completion_lock, flags);
2674 ret = io_timeout_cancel(ctx, sqe_addr);
2675 if (ret != -ENOENT)
2676 goto done;
2677 ret = io_poll_cancel(ctx, sqe_addr);
2678done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002679 if (!ret)
2680 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07002681 io_cqring_fill_event(req, ret);
2682 io_commit_cqring(ctx);
2683 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2684 io_cqring_ev_posted(ctx);
2685
2686 if (ret < 0 && (req->flags & REQ_F_LINK))
2687 req->flags |= REQ_F_FAIL_LINK;
2688 io_put_req_find_next(req, nxt);
2689}
2690
Jens Axboee977d6d2019-11-05 12:39:45 -07002691static int io_async_cancel(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2692 struct io_kiocb **nxt)
2693{
2694 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee977d6d2019-11-05 12:39:45 -07002695
2696 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2697 return -EINVAL;
2698 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
2699 sqe->cancel_flags)
2700 return -EINVAL;
2701
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002702 io_async_find_and_cancel(ctx, req, READ_ONCE(sqe->addr), nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06002703 return 0;
2704}
2705
Jens Axboef67676d2019-12-02 11:03:47 -07002706static int io_req_defer_prep(struct io_kiocb *req, struct io_async_ctx *io)
2707{
2708 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2709 struct iov_iter iter;
2710 ssize_t ret;
2711
2712 memcpy(&io->sqe, req->sqe, sizeof(io->sqe));
2713 req->sqe = &io->sqe;
2714
2715 switch (io->sqe.opcode) {
2716 case IORING_OP_READV:
2717 case IORING_OP_READ_FIXED:
2718 ret = io_read_prep(req, &iovec, &iter, true);
2719 break;
2720 case IORING_OP_WRITEV:
2721 case IORING_OP_WRITE_FIXED:
2722 ret = io_write_prep(req, &iovec, &iter, true);
2723 break;
2724 default:
2725 req->io = io;
2726 return 0;
2727 }
2728
2729 if (ret < 0)
2730 return ret;
2731
2732 req->io = io;
2733 io_req_map_io(req, ret, iovec, inline_vecs, &iter);
2734 return 0;
2735}
2736
Jackie Liua197f662019-11-08 08:09:12 -07002737static int io_req_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -06002738{
Jackie Liua197f662019-11-08 08:09:12 -07002739 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002740 struct io_async_ctx *io;
Jens Axboef67676d2019-12-02 11:03:47 -07002741 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06002742
Bob Liu9d858b22019-11-13 18:06:25 +08002743 /* Still need defer if there is pending req in defer list. */
2744 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06002745 return 0;
2746
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002747 io = kmalloc(sizeof(*io), GFP_KERNEL);
2748 if (!io)
Jens Axboede0617e2019-04-06 21:51:27 -06002749 return -EAGAIN;
2750
2751 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08002752 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06002753 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002754 kfree(io);
Jens Axboede0617e2019-04-06 21:51:27 -06002755 return 0;
2756 }
2757
Jens Axboef67676d2019-12-02 11:03:47 -07002758 ret = io_req_defer_prep(req, io);
2759 if (ret < 0)
2760 return ret;
Jens Axboede0617e2019-04-06 21:51:27 -06002761
Jens Axboe915967f2019-11-21 09:01:20 -07002762 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06002763 list_add_tail(&req->list, &ctx->defer_list);
2764 spin_unlock_irq(&ctx->completion_lock);
2765 return -EIOCBQUEUED;
2766}
2767
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03002768__attribute__((nonnull))
Pavel Begunkovd7324472019-11-21 21:24:36 +03002769static int io_issue_sqe(struct io_kiocb *req, struct io_kiocb **nxt,
2770 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002771{
Jens Axboee0c5c572019-03-12 10:18:47 -06002772 int ret, opcode;
Jackie Liua197f662019-11-08 08:09:12 -07002773 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002774
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002775 opcode = READ_ONCE(req->sqe->opcode);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002776 switch (opcode) {
2777 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07002778 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002779 break;
2780 case IORING_OP_READV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002781 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07002782 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002783 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002784 break;
2785 case IORING_OP_WRITEV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002786 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07002787 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002788 ret = io_write(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07002789 break;
2790 case IORING_OP_READ_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03002791 ret = io_read(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07002792 break;
2793 case IORING_OP_WRITE_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03002794 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002795 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002796 case IORING_OP_FSYNC:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002797 ret = io_fsync(req, req->sqe, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002798 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002799 case IORING_OP_POLL_ADD:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002800 ret = io_poll_add(req, req->sqe, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002801 break;
2802 case IORING_OP_POLL_REMOVE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002803 ret = io_poll_remove(req, req->sqe);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002804 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002805 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002806 ret = io_sync_file_range(req, req->sqe, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002807 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002808 case IORING_OP_SENDMSG:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002809 ret = io_sendmsg(req, req->sqe, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002810 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06002811 case IORING_OP_RECVMSG:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002812 ret = io_recvmsg(req, req->sqe, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002813 break;
Jens Axboe5262f562019-09-17 12:26:57 -06002814 case IORING_OP_TIMEOUT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002815 ret = io_timeout(req, req->sqe);
Jens Axboe5262f562019-09-17 12:26:57 -06002816 break;
Jens Axboe11365042019-10-16 09:08:32 -06002817 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002818 ret = io_timeout_remove(req, req->sqe);
Jens Axboe11365042019-10-16 09:08:32 -06002819 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002820 case IORING_OP_ACCEPT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002821 ret = io_accept(req, req->sqe, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002822 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002823 case IORING_OP_CONNECT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002824 ret = io_connect(req, req->sqe, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07002825 break;
Jens Axboe62755e32019-10-28 21:49:21 -06002826 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002827 ret = io_async_cancel(req, req->sqe, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06002828 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002829 default:
2830 ret = -EINVAL;
2831 break;
2832 }
2833
Jens Axboedef596e2019-01-09 08:59:42 -07002834 if (ret)
2835 return ret;
2836
2837 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe9e645e112019-05-10 16:07:28 -06002838 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07002839 return -EAGAIN;
2840
2841 /* workqueue context doesn't hold uring_lock, grab it now */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002842 if (req->in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002843 mutex_lock(&ctx->uring_lock);
2844 io_iopoll_req_issued(req);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002845 if (req->in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002846 mutex_unlock(&ctx->uring_lock);
2847 }
2848
2849 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002850}
2851
Jens Axboeb76da702019-11-20 13:05:32 -07002852static void io_link_work_cb(struct io_wq_work **workptr)
2853{
2854 struct io_wq_work *work = *workptr;
2855 struct io_kiocb *link = work->data;
2856
2857 io_queue_linked_timeout(link);
2858 work->func = io_wq_submit_work;
2859}
2860
Jens Axboe561fb042019-10-24 07:25:42 -06002861static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07002862{
Jens Axboe561fb042019-10-24 07:25:42 -06002863 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002864 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06002865 struct io_kiocb *nxt = NULL;
2866 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002867
Jens Axboe561fb042019-10-24 07:25:42 -06002868 /* Ensure we clear previously set non-block flag */
2869 req->rw.ki_flags &= ~IOCB_NOWAIT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002870
Jens Axboe561fb042019-10-24 07:25:42 -06002871 if (work->flags & IO_WQ_WORK_CANCEL)
2872 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07002873
Jens Axboe561fb042019-10-24 07:25:42 -06002874 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002875 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
2876 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06002877 do {
Pavel Begunkovd7324472019-11-21 21:24:36 +03002878 ret = io_issue_sqe(req, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06002879 /*
2880 * We can get EAGAIN for polled IO even though we're
2881 * forcing a sync submission from here, since we can't
2882 * wait for request slots on the block side.
2883 */
2884 if (ret != -EAGAIN)
2885 break;
2886 cond_resched();
2887 } while (1);
2888 }
Jens Axboe31b51512019-01-18 22:56:34 -07002889
Jens Axboe561fb042019-10-24 07:25:42 -06002890 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08002891 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06002892
Jens Axboe561fb042019-10-24 07:25:42 -06002893 if (ret) {
Jens Axboef1f40852019-11-05 20:33:16 -07002894 if (req->flags & REQ_F_LINK)
2895 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07002896 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06002897 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07002898 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002899
Jens Axboe561fb042019-10-24 07:25:42 -06002900 /* if a dependent link is ready, pass it back */
2901 if (!ret && nxt) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07002902 struct io_kiocb *link;
2903
2904 io_prep_async_work(nxt, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06002905 *workptr = &nxt->work;
Jens Axboeb76da702019-11-20 13:05:32 -07002906 if (link) {
2907 nxt->work.flags |= IO_WQ_WORK_CB;
2908 nxt->work.func = io_link_work_cb;
2909 nxt->work.data = link;
2910 }
Jens Axboeedafcce2019-01-09 09:16:05 -07002911 }
Jens Axboe31b51512019-01-18 22:56:34 -07002912}
Jens Axboe2b188cc2019-01-07 10:46:33 -07002913
Jens Axboe09bb8392019-03-13 12:39:28 -06002914static bool io_op_needs_file(const struct io_uring_sqe *sqe)
2915{
2916 int op = READ_ONCE(sqe->opcode);
2917
2918 switch (op) {
2919 case IORING_OP_NOP:
2920 case IORING_OP_POLL_REMOVE:
Pavel Begunkov5683e542019-11-14 00:59:19 +03002921 case IORING_OP_TIMEOUT:
Pavel Begunkova320e9f2019-11-14 00:11:01 +03002922 case IORING_OP_TIMEOUT_REMOVE:
2923 case IORING_OP_ASYNC_CANCEL:
2924 case IORING_OP_LINK_TIMEOUT:
Jens Axboe09bb8392019-03-13 12:39:28 -06002925 return false;
2926 default:
2927 return true;
2928 }
2929}
2930
Jens Axboe65e19f52019-10-26 07:20:21 -06002931static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
2932 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06002933{
Jens Axboe65e19f52019-10-26 07:20:21 -06002934 struct fixed_file_table *table;
2935
2936 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
2937 return table->files[index & IORING_FILE_TABLE_MASK];
2938}
2939
Jackie Liua197f662019-11-08 08:09:12 -07002940static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06002941{
Jackie Liua197f662019-11-08 08:09:12 -07002942 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06002943 unsigned flags;
2944 int fd;
2945
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002946 flags = READ_ONCE(req->sqe->flags);
2947 fd = READ_ONCE(req->sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06002948
Jackie Liu4fe2c962019-09-09 20:50:40 +08002949 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06002950 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06002951
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002952 if (!io_op_needs_file(req->sqe))
Jens Axboe09bb8392019-03-13 12:39:28 -06002953 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06002954
2955 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe65e19f52019-10-26 07:20:21 -06002956 if (unlikely(!ctx->file_table ||
Jens Axboe09bb8392019-03-13 12:39:28 -06002957 (unsigned) fd >= ctx->nr_user_files))
2958 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06002959 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06002960 req->file = io_file_from_index(ctx, fd);
2961 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06002962 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06002963 req->flags |= REQ_F_FIXED_FILE;
2964 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002965 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06002966 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002967 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06002968 req->file = io_file_get(state, fd);
2969 if (unlikely(!req->file))
2970 return -EBADF;
2971 }
2972
2973 return 0;
2974}
2975
Jackie Liua197f662019-11-08 08:09:12 -07002976static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002977{
Jens Axboefcb323c2019-10-24 12:39:47 -06002978 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07002979 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06002980
2981 rcu_read_lock();
2982 spin_lock_irq(&ctx->inflight_lock);
2983 /*
2984 * We use the f_ops->flush() handler to ensure that we can flush
2985 * out work accessing these files if the fd is closed. Check if
2986 * the fd has changed since we started down this path, and disallow
2987 * this operation if it has.
2988 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002989 if (fcheck(req->ring_fd) == req->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06002990 list_add(&req->inflight_entry, &ctx->inflight_list);
2991 req->flags |= REQ_F_INFLIGHT;
2992 req->work.files = current->files;
2993 ret = 0;
2994 }
2995 spin_unlock_irq(&ctx->inflight_lock);
2996 rcu_read_unlock();
2997
2998 return ret;
2999}
3000
Jens Axboe2665abf2019-11-05 12:40:47 -07003001static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
3002{
Jens Axboead8a48a2019-11-15 08:49:11 -07003003 struct io_timeout_data *data = container_of(timer,
3004 struct io_timeout_data, timer);
3005 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07003006 struct io_ring_ctx *ctx = req->ctx;
3007 struct io_kiocb *prev = NULL;
3008 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07003009
3010 spin_lock_irqsave(&ctx->completion_lock, flags);
3011
3012 /*
3013 * We don't expect the list to be empty, that will only happen if we
3014 * race with the completion of the linked work.
3015 */
3016 if (!list_empty(&req->list)) {
3017 prev = list_entry(req->list.prev, struct io_kiocb, link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003018 if (refcount_inc_not_zero(&prev->refs)) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003019 list_del_init(&req->list);
Jens Axboe5d960722019-11-19 15:31:28 -07003020 prev->flags &= ~REQ_F_LINK_TIMEOUT;
3021 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07003022 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003023 }
3024
3025 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3026
3027 if (prev) {
Jens Axboefba38c22019-11-18 12:27:57 -07003028 if (prev->flags & REQ_F_LINK)
3029 prev->flags |= REQ_F_FAIL_LINK;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003030 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
3031 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07003032 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07003033 } else {
3034 io_cqring_add_event(req, -ETIME);
3035 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003036 }
Jens Axboe2665abf2019-11-05 12:40:47 -07003037 return HRTIMER_NORESTART;
3038}
3039
Jens Axboead8a48a2019-11-15 08:49:11 -07003040static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003041{
Jens Axboe76a46e02019-11-10 23:34:16 -07003042 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07003043
Jens Axboe76a46e02019-11-10 23:34:16 -07003044 /*
3045 * If the list is now empty, then our linked request finished before
3046 * we got a chance to setup the timer
3047 */
3048 spin_lock_irq(&ctx->completion_lock);
3049 if (!list_empty(&req->list)) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003050 struct io_timeout_data *data = req->timeout.data;
3051
Jens Axboead8a48a2019-11-15 08:49:11 -07003052 data->timer.function = io_link_timeout_fn;
3053 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
3054 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07003055 }
Jens Axboe76a46e02019-11-10 23:34:16 -07003056 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07003057
Jens Axboe2665abf2019-11-05 12:40:47 -07003058 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07003059 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003060}
3061
Jens Axboead8a48a2019-11-15 08:49:11 -07003062static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003063{
3064 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003065
Jens Axboe2665abf2019-11-05 12:40:47 -07003066 if (!(req->flags & REQ_F_LINK))
3067 return NULL;
3068
3069 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb, list);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003070 if (!nxt || nxt->sqe->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07003071 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003072
Jens Axboe76a46e02019-11-10 23:34:16 -07003073 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07003074 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07003075}
3076
Jens Axboe0e0702d2019-11-14 21:42:10 -07003077static void __io_queue_sqe(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003078{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003079 struct io_kiocb *linked_timeout = io_prep_linked_timeout(req);
3080 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003081 int ret;
3082
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003083 ret = io_issue_sqe(req, &nxt, true);
3084 if (nxt)
3085 io_queue_async_work(nxt);
Jens Axboe491381ce2019-10-17 09:20:46 -06003086
3087 /*
3088 * We async punt it if the file wasn't marked NOWAIT, or if the file
3089 * doesn't support non-blocking read/write attempts
3090 */
3091 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
3092 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003093 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
3094 ret = io_grab_files(req);
3095 if (ret)
3096 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003097 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003098
3099 /*
3100 * Queued up for async execution, worker will release
3101 * submit reference when the iocb is actually submitted.
3102 */
3103 io_queue_async_work(req);
3104 return;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003105 }
Jens Axboee65ef562019-03-12 10:16:44 -06003106
Jens Axboefcb323c2019-10-24 12:39:47 -06003107err:
Jens Axboee65ef562019-03-12 10:16:44 -06003108 /* drop submission reference */
3109 io_put_req(req);
3110
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003111 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003112 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003113 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003114 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003115 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003116 }
3117
Jens Axboee65ef562019-03-12 10:16:44 -06003118 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06003119 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003120 io_cqring_add_event(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06003121 if (req->flags & REQ_F_LINK)
3122 req->flags |= REQ_F_FAIL_LINK;
Jens Axboee65ef562019-03-12 10:16:44 -06003123 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003124 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003125}
3126
Jens Axboe0e0702d2019-11-14 21:42:10 -07003127static void io_queue_sqe(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003128{
3129 int ret;
3130
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003131 if (unlikely(req->ctx->drain_next)) {
3132 req->flags |= REQ_F_IO_DRAIN;
3133 req->ctx->drain_next = false;
3134 }
3135 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
3136
Jackie Liua197f662019-11-08 08:09:12 -07003137 ret = io_req_defer(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003138 if (ret) {
3139 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003140 io_cqring_add_event(req, ret);
Pavel Begunkovd3b357962019-11-19 23:32:48 +03003141 if (req->flags & REQ_F_LINK)
3142 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003143 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003144 }
Jens Axboe0e0702d2019-11-14 21:42:10 -07003145 } else
3146 __io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003147}
3148
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003149static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003150{
Jens Axboe94ae5e72019-11-14 19:39:52 -07003151 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003152 io_cqring_add_event(req, -ECANCELED);
3153 io_double_put_req(req);
3154 } else
Jens Axboe0e0702d2019-11-14 21:42:10 -07003155 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003156}
3157
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003158
Jens Axboe9e645e112019-05-10 16:07:28 -06003159#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK)
3160
Jackie Liua197f662019-11-08 08:09:12 -07003161static void io_submit_sqe(struct io_kiocb *req, struct io_submit_state *state,
3162 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06003163{
Jackie Liua197f662019-11-08 08:09:12 -07003164 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06003165 int ret;
3166
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003167 req->user_data = req->sqe->user_data;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003168
Jens Axboe9e645e112019-05-10 16:07:28 -06003169 /* enforce forwards compatibility on users */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003170 if (unlikely(req->sqe->flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003171 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03003172 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06003173 }
3174
Jackie Liua197f662019-11-08 08:09:12 -07003175 ret = io_req_set_file(state, req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003176 if (unlikely(ret)) {
3177err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003178 io_cqring_add_event(req, ret);
3179 io_double_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003180 return;
3181 }
3182
Jens Axboe9e645e112019-05-10 16:07:28 -06003183 /*
3184 * If we already have a head request, queue this one for async
3185 * submittal once the head completes. If we don't have a head but
3186 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3187 * submitted sync once the chain is complete. If none of those
3188 * conditions are true (normal request), then just queue it.
3189 */
3190 if (*link) {
3191 struct io_kiocb *prev = *link;
Jens Axboe1a6b74f2019-12-02 10:33:15 -07003192 struct io_async_ctx *io;
Jens Axboe9e645e112019-05-10 16:07:28 -06003193
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003194 if (req->sqe->flags & IOSQE_IO_DRAIN)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003195 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3196
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003197 if (READ_ONCE(req->sqe->opcode) == IORING_OP_LINK_TIMEOUT) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003198 ret = io_timeout_setup(req);
3199 /* common setup allows offset being set, we don't */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003200 if (!ret && req->sqe->off)
Jens Axboe94ae5e72019-11-14 19:39:52 -07003201 ret = -EINVAL;
3202 if (ret) {
3203 prev->flags |= REQ_F_FAIL_LINK;
3204 goto err_req;
3205 }
3206 }
3207
Jens Axboe1a6b74f2019-12-02 10:33:15 -07003208 io = kmalloc(sizeof(*io), GFP_KERNEL);
3209 if (!io) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003210 ret = -EAGAIN;
3211 goto err_req;
3212 }
3213
Jens Axboef67676d2019-12-02 11:03:47 -07003214 ret = io_req_defer_prep(req, io);
3215 if (ret)
3216 goto err_req;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003217 trace_io_uring_link(ctx, req, prev);
Jens Axboe9e645e112019-05-10 16:07:28 -06003218 list_add_tail(&req->list, &prev->link_list);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003219 } else if (req->sqe->flags & IOSQE_IO_LINK) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003220 req->flags |= REQ_F_LINK;
3221
Jens Axboe9e645e112019-05-10 16:07:28 -06003222 INIT_LIST_HEAD(&req->link_list);
3223 *link = req;
3224 } else {
Jackie Liua197f662019-11-08 08:09:12 -07003225 io_queue_sqe(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003226 }
3227}
3228
Jens Axboe9a56a232019-01-09 09:06:50 -07003229/*
3230 * Batched submission is done, ensure local IO is flushed out.
3231 */
3232static void io_submit_state_end(struct io_submit_state *state)
3233{
3234 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06003235 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07003236 if (state->free_reqs)
3237 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3238 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07003239}
3240
3241/*
3242 * Start submission side cache.
3243 */
3244static void io_submit_state_start(struct io_submit_state *state,
3245 struct io_ring_ctx *ctx, unsigned max_ios)
3246{
3247 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07003248 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07003249 state->file = NULL;
3250 state->ios_left = max_ios;
3251}
3252
Jens Axboe2b188cc2019-01-07 10:46:33 -07003253static void io_commit_sqring(struct io_ring_ctx *ctx)
3254{
Hristo Venev75b28af2019-08-26 17:23:46 +00003255 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003256
Hristo Venev75b28af2019-08-26 17:23:46 +00003257 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003258 /*
3259 * Ensure any loads from the SQEs are done at this point,
3260 * since once we write the new head, the application could
3261 * write new data to them.
3262 */
Hristo Venev75b28af2019-08-26 17:23:46 +00003263 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003264 }
3265}
3266
3267/*
Jens Axboe2b188cc2019-01-07 10:46:33 -07003268 * Fetch an sqe, if one is available. Note that s->sqe will point to memory
3269 * that is mapped by userspace. This means that care needs to be taken to
3270 * ensure that reads are stable, as we cannot rely on userspace always
3271 * being a good citizen. If members of the sqe are validated and then later
3272 * used, it's important that those reads are done through READ_ONCE() to
3273 * prevent a re-load down the line.
3274 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003275static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003276{
Hristo Venev75b28af2019-08-26 17:23:46 +00003277 struct io_rings *rings = ctx->rings;
3278 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003279 unsigned head;
3280
3281 /*
3282 * The cached sq head (or cq tail) serves two purposes:
3283 *
3284 * 1) allows us to batch the cost of updating the user visible
3285 * head updates.
3286 * 2) allows the kernel side to track the head on its own, even
3287 * though the application is the one updating it.
3288 */
3289 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02003290 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003291 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07003292 return false;
3293
Hristo Venev75b28af2019-08-26 17:23:46 +00003294 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003295 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003296 /*
3297 * All io need record the previous position, if LINK vs DARIN,
3298 * it can be used to mark the position of the first IO in the
3299 * link list.
3300 */
3301 req->sequence = ctx->cached_sq_head;
3302 req->sqe = &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07003303 ctx->cached_sq_head++;
3304 return true;
3305 }
3306
3307 /* drop invalid entries */
3308 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06003309 ctx->cached_sq_dropped++;
3310 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003311 return false;
3312}
3313
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003314static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003315 struct file *ring_file, int ring_fd,
3316 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07003317{
3318 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003319 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003320 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003321 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003322
Jens Axboec4a2ed72019-11-21 21:01:26 -07003323 /* if we have a backlog and couldn't flush it all, return BUSY */
3324 if (!list_empty(&ctx->cq_overflow_list) &&
3325 !io_cqring_overflow_flush(ctx, false))
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003326 return -EBUSY;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003327
3328 if (nr > IO_PLUG_THRESHOLD) {
3329 io_submit_state_start(&state, ctx, nr);
3330 statep = &state;
3331 }
3332
3333 for (i = 0; i < nr; i++) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003334 struct io_kiocb *req;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003335 unsigned int sqe_flags;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003336
Pavel Begunkov196be952019-11-07 01:41:06 +03003337 req = io_get_req(ctx, statep);
3338 if (unlikely(!req)) {
3339 if (!submitted)
3340 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003341 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06003342 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003343 if (!io_get_sqring(ctx, req)) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003344 __io_free_req(req);
3345 break;
3346 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003347
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003348 if (io_sqe_needs_user(req->sqe) && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003349 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3350 if (!mm_fault) {
3351 use_mm(ctx->sqo_mm);
3352 *mm = ctx->sqo_mm;
3353 }
3354 }
3355
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003356 sqe_flags = req->sqe->flags;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003357
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003358 req->ring_file = ring_file;
3359 req->ring_fd = ring_fd;
3360 req->has_user = *mm != NULL;
3361 req->in_async = async;
3362 req->needs_fixed_file = async;
3363 trace_io_uring_submit_sqe(ctx, req->sqe->user_data,
Pavel Begunkov50585b92019-11-07 01:41:07 +03003364 true, async);
Jackie Liua197f662019-11-08 08:09:12 -07003365 io_submit_sqe(req, statep, &link);
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003366 submitted++;
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003367
3368 /*
3369 * If previous wasn't linked and we have a linked command,
3370 * that's the end of the chain. Submit the previous link.
3371 */
Pavel Begunkov50585b92019-11-07 01:41:07 +03003372 if (!(sqe_flags & IOSQE_IO_LINK) && link) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003373 io_queue_link_head(link);
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003374 link = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003375 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003376 }
3377
Jens Axboe9e645e112019-05-10 16:07:28 -06003378 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003379 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003380 if (statep)
3381 io_submit_state_end(&state);
3382
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003383 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3384 io_commit_sqring(ctx);
3385
Jens Axboe6c271ce2019-01-10 11:22:30 -07003386 return submitted;
3387}
3388
3389static int io_sq_thread(void *data)
3390{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003391 struct io_ring_ctx *ctx = data;
3392 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07003393 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003394 mm_segment_t old_fs;
3395 DEFINE_WAIT(wait);
3396 unsigned inflight;
3397 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07003398 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003399
Jens Axboe206aefd2019-11-07 18:27:42 -07003400 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08003401
Jens Axboe6c271ce2019-01-10 11:22:30 -07003402 old_fs = get_fs();
3403 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07003404 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003405
Jens Axboec1edbf52019-11-10 16:56:04 -07003406 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003407 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003408 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003409
3410 if (inflight) {
3411 unsigned nr_events = 0;
3412
3413 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06003414 /*
3415 * inflight is the count of the maximum possible
3416 * entries we submitted, but it can be smaller
3417 * if we dropped some of them. If we don't have
3418 * poll entries available, then we know that we
3419 * have nothing left to poll for. Reset the
3420 * inflight count to zero in that case.
3421 */
3422 mutex_lock(&ctx->uring_lock);
3423 if (!list_empty(&ctx->poll_list))
3424 __io_iopoll_check(ctx, &nr_events, 0);
3425 else
3426 inflight = 0;
3427 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003428 } else {
3429 /*
3430 * Normal IO, just pretend everything completed.
3431 * We don't have to poll completions for that.
3432 */
3433 nr_events = inflight;
3434 }
3435
3436 inflight -= nr_events;
3437 if (!inflight)
3438 timeout = jiffies + ctx->sq_thread_idle;
3439 }
3440
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003441 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003442
3443 /*
3444 * If submit got -EBUSY, flag us as needing the application
3445 * to enter the kernel to reap and flush events.
3446 */
3447 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003448 /*
3449 * We're polling. If we're within the defined idle
3450 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07003451 * to sleep. The exception is if we got EBUSY doing
3452 * more IO, we should wait for the application to
3453 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07003454 */
Jens Axboec1edbf52019-11-10 16:56:04 -07003455 if (inflight ||
3456 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06003457 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003458 continue;
3459 }
3460
3461 /*
3462 * Drop cur_mm before scheduling, we can't hold it for
3463 * long periods (or over schedule()). Do this before
3464 * adding ourselves to the waitqueue, as the unuse/drop
3465 * may sleep.
3466 */
3467 if (cur_mm) {
3468 unuse_mm(cur_mm);
3469 mmput(cur_mm);
3470 cur_mm = NULL;
3471 }
3472
3473 prepare_to_wait(&ctx->sqo_wait, &wait,
3474 TASK_INTERRUPTIBLE);
3475
3476 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00003477 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02003478 /* make sure to read SQ tail after writing flags */
3479 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003480
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003481 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003482 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003483 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003484 finish_wait(&ctx->sqo_wait, &wait);
3485 break;
3486 }
3487 if (signal_pending(current))
3488 flush_signals(current);
3489 schedule();
3490 finish_wait(&ctx->sqo_wait, &wait);
3491
Hristo Venev75b28af2019-08-26 17:23:46 +00003492 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003493 continue;
3494 }
3495 finish_wait(&ctx->sqo_wait, &wait);
3496
Hristo Venev75b28af2019-08-26 17:23:46 +00003497 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003498 }
3499
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003500 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003501 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
3502 if (ret > 0)
3503 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003504 }
3505
3506 set_fs(old_fs);
3507 if (cur_mm) {
3508 unuse_mm(cur_mm);
3509 mmput(cur_mm);
3510 }
Jens Axboe181e4482019-11-25 08:52:30 -07003511 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06003512
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003513 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06003514
Jens Axboe6c271ce2019-01-10 11:22:30 -07003515 return 0;
3516}
3517
Jens Axboebda52162019-09-24 13:47:15 -06003518struct io_wait_queue {
3519 struct wait_queue_entry wq;
3520 struct io_ring_ctx *ctx;
3521 unsigned to_wait;
3522 unsigned nr_timeouts;
3523};
3524
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003525static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06003526{
3527 struct io_ring_ctx *ctx = iowq->ctx;
3528
3529 /*
3530 * Wake up if we have enough events, or if a timeout occured since we
3531 * started waiting. For timeouts, we always want to return to userspace,
3532 * regardless of event count.
3533 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003534 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06003535 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3536}
3537
3538static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3539 int wake_flags, void *key)
3540{
3541 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3542 wq);
3543
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003544 /* use noflush == true, as we can't safely rely on locking context */
3545 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06003546 return -1;
3547
3548 return autoremove_wake_function(curr, mode, wake_flags, key);
3549}
3550
Jens Axboe2b188cc2019-01-07 10:46:33 -07003551/*
3552 * Wait until events become available, if we don't already have some. The
3553 * application must reap them itself, as they reside on the shared cq ring.
3554 */
3555static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3556 const sigset_t __user *sig, size_t sigsz)
3557{
Jens Axboebda52162019-09-24 13:47:15 -06003558 struct io_wait_queue iowq = {
3559 .wq = {
3560 .private = current,
3561 .func = io_wake_function,
3562 .entry = LIST_HEAD_INIT(iowq.wq.entry),
3563 },
3564 .ctx = ctx,
3565 .to_wait = min_events,
3566 };
Hristo Venev75b28af2019-08-26 17:23:46 +00003567 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003568 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003569
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003570 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003571 return 0;
3572
3573 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003574#ifdef CONFIG_COMPAT
3575 if (in_compat_syscall())
3576 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07003577 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003578 else
3579#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07003580 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003581
Jens Axboe2b188cc2019-01-07 10:46:33 -07003582 if (ret)
3583 return ret;
3584 }
3585
Jens Axboebda52162019-09-24 13:47:15 -06003586 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003587 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06003588 do {
3589 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
3590 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003591 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06003592 break;
3593 schedule();
3594 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003595 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06003596 break;
3597 }
3598 } while (1);
3599 finish_wait(&ctx->wait, &iowq.wq);
3600
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003601 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003602
Hristo Venev75b28af2019-08-26 17:23:46 +00003603 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003604}
3605
Jens Axboe6b063142019-01-10 22:13:58 -07003606static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
3607{
3608#if defined(CONFIG_UNIX)
3609 if (ctx->ring_sock) {
3610 struct sock *sock = ctx->ring_sock->sk;
3611 struct sk_buff *skb;
3612
3613 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
3614 kfree_skb(skb);
3615 }
3616#else
3617 int i;
3618
Jens Axboe65e19f52019-10-26 07:20:21 -06003619 for (i = 0; i < ctx->nr_user_files; i++) {
3620 struct file *file;
3621
3622 file = io_file_from_index(ctx, i);
3623 if (file)
3624 fput(file);
3625 }
Jens Axboe6b063142019-01-10 22:13:58 -07003626#endif
3627}
3628
3629static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
3630{
Jens Axboe65e19f52019-10-26 07:20:21 -06003631 unsigned nr_tables, i;
3632
3633 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003634 return -ENXIO;
3635
3636 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06003637 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
3638 for (i = 0; i < nr_tables; i++)
3639 kfree(ctx->file_table[i].files);
3640 kfree(ctx->file_table);
3641 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003642 ctx->nr_user_files = 0;
3643 return 0;
3644}
3645
Jens Axboe6c271ce2019-01-10 11:22:30 -07003646static void io_sq_thread_stop(struct io_ring_ctx *ctx)
3647{
3648 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07003649 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003650 /*
3651 * The park is a bit of a work-around, without it we get
3652 * warning spews on shutdown with SQPOLL set and affinity
3653 * set to a single CPU.
3654 */
Jens Axboe06058632019-04-13 09:26:03 -06003655 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003656 kthread_stop(ctx->sqo_thread);
3657 ctx->sqo_thread = NULL;
3658 }
3659}
3660
Jens Axboe6b063142019-01-10 22:13:58 -07003661static void io_finish_async(struct io_ring_ctx *ctx)
3662{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003663 io_sq_thread_stop(ctx);
3664
Jens Axboe561fb042019-10-24 07:25:42 -06003665 if (ctx->io_wq) {
3666 io_wq_destroy(ctx->io_wq);
3667 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003668 }
3669}
3670
3671#if defined(CONFIG_UNIX)
3672static void io_destruct_skb(struct sk_buff *skb)
3673{
3674 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
3675
Jens Axboe561fb042019-10-24 07:25:42 -06003676 if (ctx->io_wq)
3677 io_wq_flush(ctx->io_wq);
Jens Axboe8a997342019-10-09 14:40:13 -06003678
Jens Axboe6b063142019-01-10 22:13:58 -07003679 unix_destruct_scm(skb);
3680}
3681
3682/*
3683 * Ensure the UNIX gc is aware of our file set, so we are certain that
3684 * the io_uring can be safely unregistered on process exit, even if we have
3685 * loops in the file referencing.
3686 */
3687static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
3688{
3689 struct sock *sk = ctx->ring_sock->sk;
3690 struct scm_fp_list *fpl;
3691 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06003692 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07003693
3694 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
3695 unsigned long inflight = ctx->user->unix_inflight + nr;
3696
3697 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
3698 return -EMFILE;
3699 }
3700
3701 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
3702 if (!fpl)
3703 return -ENOMEM;
3704
3705 skb = alloc_skb(0, GFP_KERNEL);
3706 if (!skb) {
3707 kfree(fpl);
3708 return -ENOMEM;
3709 }
3710
3711 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07003712
Jens Axboe08a45172019-10-03 08:11:03 -06003713 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07003714 fpl->user = get_uid(ctx->user);
3715 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003716 struct file *file = io_file_from_index(ctx, i + offset);
3717
3718 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06003719 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06003720 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06003721 unix_inflight(fpl->user, fpl->fp[nr_files]);
3722 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07003723 }
3724
Jens Axboe08a45172019-10-03 08:11:03 -06003725 if (nr_files) {
3726 fpl->max = SCM_MAX_FD;
3727 fpl->count = nr_files;
3728 UNIXCB(skb).fp = fpl;
3729 skb->destructor = io_destruct_skb;
3730 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
3731 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07003732
Jens Axboe08a45172019-10-03 08:11:03 -06003733 for (i = 0; i < nr_files; i++)
3734 fput(fpl->fp[i]);
3735 } else {
3736 kfree_skb(skb);
3737 kfree(fpl);
3738 }
Jens Axboe6b063142019-01-10 22:13:58 -07003739
3740 return 0;
3741}
3742
3743/*
3744 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
3745 * causes regular reference counting to break down. We rely on the UNIX
3746 * garbage collection to take care of this problem for us.
3747 */
3748static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3749{
3750 unsigned left, total;
3751 int ret = 0;
3752
3753 total = 0;
3754 left = ctx->nr_user_files;
3755 while (left) {
3756 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07003757
3758 ret = __io_sqe_files_scm(ctx, this_files, total);
3759 if (ret)
3760 break;
3761 left -= this_files;
3762 total += this_files;
3763 }
3764
3765 if (!ret)
3766 return 0;
3767
3768 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003769 struct file *file = io_file_from_index(ctx, total);
3770
3771 if (file)
3772 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07003773 total++;
3774 }
3775
3776 return ret;
3777}
3778#else
3779static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3780{
3781 return 0;
3782}
3783#endif
3784
Jens Axboe65e19f52019-10-26 07:20:21 -06003785static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
3786 unsigned nr_files)
3787{
3788 int i;
3789
3790 for (i = 0; i < nr_tables; i++) {
3791 struct fixed_file_table *table = &ctx->file_table[i];
3792 unsigned this_files;
3793
3794 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
3795 table->files = kcalloc(this_files, sizeof(struct file *),
3796 GFP_KERNEL);
3797 if (!table->files)
3798 break;
3799 nr_files -= this_files;
3800 }
3801
3802 if (i == nr_tables)
3803 return 0;
3804
3805 for (i = 0; i < nr_tables; i++) {
3806 struct fixed_file_table *table = &ctx->file_table[i];
3807 kfree(table->files);
3808 }
3809 return 1;
3810}
3811
Jens Axboe6b063142019-01-10 22:13:58 -07003812static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
3813 unsigned nr_args)
3814{
3815 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe65e19f52019-10-26 07:20:21 -06003816 unsigned nr_tables;
Jens Axboe6b063142019-01-10 22:13:58 -07003817 int fd, ret = 0;
3818 unsigned i;
3819
Jens Axboe65e19f52019-10-26 07:20:21 -06003820 if (ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003821 return -EBUSY;
3822 if (!nr_args)
3823 return -EINVAL;
3824 if (nr_args > IORING_MAX_FIXED_FILES)
3825 return -EMFILE;
3826
Jens Axboe65e19f52019-10-26 07:20:21 -06003827 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
3828 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
3829 GFP_KERNEL);
3830 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003831 return -ENOMEM;
3832
Jens Axboe65e19f52019-10-26 07:20:21 -06003833 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
3834 kfree(ctx->file_table);
Jens Axboe46568e92019-11-10 08:40:53 -07003835 ctx->file_table = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06003836 return -ENOMEM;
3837 }
3838
Jens Axboe08a45172019-10-03 08:11:03 -06003839 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003840 struct fixed_file_table *table;
3841 unsigned index;
3842
Jens Axboe6b063142019-01-10 22:13:58 -07003843 ret = -EFAULT;
3844 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
3845 break;
Jens Axboe08a45172019-10-03 08:11:03 -06003846 /* allow sparse sets */
3847 if (fd == -1) {
3848 ret = 0;
3849 continue;
3850 }
Jens Axboe6b063142019-01-10 22:13:58 -07003851
Jens Axboe65e19f52019-10-26 07:20:21 -06003852 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
3853 index = i & IORING_FILE_TABLE_MASK;
3854 table->files[index] = fget(fd);
Jens Axboe6b063142019-01-10 22:13:58 -07003855
3856 ret = -EBADF;
Jens Axboe65e19f52019-10-26 07:20:21 -06003857 if (!table->files[index])
Jens Axboe6b063142019-01-10 22:13:58 -07003858 break;
3859 /*
3860 * Don't allow io_uring instances to be registered. If UNIX
3861 * isn't enabled, then this causes a reference cycle and this
3862 * instance can never get freed. If UNIX is enabled we'll
3863 * handle it just fine, but there's still no point in allowing
3864 * a ring fd as it doesn't support regular read/write anyway.
3865 */
Jens Axboe65e19f52019-10-26 07:20:21 -06003866 if (table->files[index]->f_op == &io_uring_fops) {
3867 fput(table->files[index]);
Jens Axboe6b063142019-01-10 22:13:58 -07003868 break;
3869 }
Jens Axboe6b063142019-01-10 22:13:58 -07003870 ret = 0;
3871 }
3872
3873 if (ret) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003874 for (i = 0; i < ctx->nr_user_files; i++) {
3875 struct file *file;
Jens Axboe6b063142019-01-10 22:13:58 -07003876
Jens Axboe65e19f52019-10-26 07:20:21 -06003877 file = io_file_from_index(ctx, i);
3878 if (file)
3879 fput(file);
3880 }
3881 for (i = 0; i < nr_tables; i++)
3882 kfree(ctx->file_table[i].files);
3883
3884 kfree(ctx->file_table);
3885 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003886 ctx->nr_user_files = 0;
3887 return ret;
3888 }
3889
3890 ret = io_sqe_files_scm(ctx);
3891 if (ret)
3892 io_sqe_files_unregister(ctx);
3893
3894 return ret;
3895}
3896
Jens Axboec3a31e62019-10-03 13:59:56 -06003897static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
3898{
3899#if defined(CONFIG_UNIX)
Jens Axboe65e19f52019-10-26 07:20:21 -06003900 struct file *file = io_file_from_index(ctx, index);
Jens Axboec3a31e62019-10-03 13:59:56 -06003901 struct sock *sock = ctx->ring_sock->sk;
3902 struct sk_buff_head list, *head = &sock->sk_receive_queue;
3903 struct sk_buff *skb;
3904 int i;
3905
3906 __skb_queue_head_init(&list);
3907
3908 /*
3909 * Find the skb that holds this file in its SCM_RIGHTS. When found,
3910 * remove this entry and rearrange the file array.
3911 */
3912 skb = skb_dequeue(head);
3913 while (skb) {
3914 struct scm_fp_list *fp;
3915
3916 fp = UNIXCB(skb).fp;
3917 for (i = 0; i < fp->count; i++) {
3918 int left;
3919
3920 if (fp->fp[i] != file)
3921 continue;
3922
3923 unix_notinflight(fp->user, fp->fp[i]);
3924 left = fp->count - 1 - i;
3925 if (left) {
3926 memmove(&fp->fp[i], &fp->fp[i + 1],
3927 left * sizeof(struct file *));
3928 }
3929 fp->count--;
3930 if (!fp->count) {
3931 kfree_skb(skb);
3932 skb = NULL;
3933 } else {
3934 __skb_queue_tail(&list, skb);
3935 }
3936 fput(file);
3937 file = NULL;
3938 break;
3939 }
3940
3941 if (!file)
3942 break;
3943
3944 __skb_queue_tail(&list, skb);
3945
3946 skb = skb_dequeue(head);
3947 }
3948
3949 if (skb_peek(&list)) {
3950 spin_lock_irq(&head->lock);
3951 while ((skb = __skb_dequeue(&list)) != NULL)
3952 __skb_queue_tail(head, skb);
3953 spin_unlock_irq(&head->lock);
3954 }
3955#else
Jens Axboe65e19f52019-10-26 07:20:21 -06003956 fput(io_file_from_index(ctx, index));
Jens Axboec3a31e62019-10-03 13:59:56 -06003957#endif
3958}
3959
3960static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
3961 int index)
3962{
3963#if defined(CONFIG_UNIX)
3964 struct sock *sock = ctx->ring_sock->sk;
3965 struct sk_buff_head *head = &sock->sk_receive_queue;
3966 struct sk_buff *skb;
3967
3968 /*
3969 * See if we can merge this file into an existing skb SCM_RIGHTS
3970 * file set. If there's no room, fall back to allocating a new skb
3971 * and filling it in.
3972 */
3973 spin_lock_irq(&head->lock);
3974 skb = skb_peek(head);
3975 if (skb) {
3976 struct scm_fp_list *fpl = UNIXCB(skb).fp;
3977
3978 if (fpl->count < SCM_MAX_FD) {
3979 __skb_unlink(skb, head);
3980 spin_unlock_irq(&head->lock);
3981 fpl->fp[fpl->count] = get_file(file);
3982 unix_inflight(fpl->user, fpl->fp[fpl->count]);
3983 fpl->count++;
3984 spin_lock_irq(&head->lock);
3985 __skb_queue_head(head, skb);
3986 } else {
3987 skb = NULL;
3988 }
3989 }
3990 spin_unlock_irq(&head->lock);
3991
3992 if (skb) {
3993 fput(file);
3994 return 0;
3995 }
3996
3997 return __io_sqe_files_scm(ctx, 1, index);
3998#else
3999 return 0;
4000#endif
4001}
4002
4003static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
4004 unsigned nr_args)
4005{
4006 struct io_uring_files_update up;
4007 __s32 __user *fds;
4008 int fd, i, err;
4009 __u32 done;
4010
Jens Axboe65e19f52019-10-26 07:20:21 -06004011 if (!ctx->file_table)
Jens Axboec3a31e62019-10-03 13:59:56 -06004012 return -ENXIO;
4013 if (!nr_args)
4014 return -EINVAL;
4015 if (copy_from_user(&up, arg, sizeof(up)))
4016 return -EFAULT;
4017 if (check_add_overflow(up.offset, nr_args, &done))
4018 return -EOVERFLOW;
4019 if (done > ctx->nr_user_files)
4020 return -EINVAL;
4021
4022 done = 0;
4023 fds = (__s32 __user *) up.fds;
4024 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004025 struct fixed_file_table *table;
4026 unsigned index;
4027
Jens Axboec3a31e62019-10-03 13:59:56 -06004028 err = 0;
4029 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
4030 err = -EFAULT;
4031 break;
4032 }
4033 i = array_index_nospec(up.offset, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004034 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4035 index = i & IORING_FILE_TABLE_MASK;
4036 if (table->files[index]) {
Jens Axboec3a31e62019-10-03 13:59:56 -06004037 io_sqe_file_unregister(ctx, i);
Jens Axboe65e19f52019-10-26 07:20:21 -06004038 table->files[index] = NULL;
Jens Axboec3a31e62019-10-03 13:59:56 -06004039 }
4040 if (fd != -1) {
4041 struct file *file;
4042
4043 file = fget(fd);
4044 if (!file) {
4045 err = -EBADF;
4046 break;
4047 }
4048 /*
4049 * Don't allow io_uring instances to be registered. If
4050 * UNIX isn't enabled, then this causes a reference
4051 * cycle and this instance can never get freed. If UNIX
4052 * is enabled we'll handle it just fine, but there's
4053 * still no point in allowing a ring fd as it doesn't
4054 * support regular read/write anyway.
4055 */
4056 if (file->f_op == &io_uring_fops) {
4057 fput(file);
4058 err = -EBADF;
4059 break;
4060 }
Jens Axboe65e19f52019-10-26 07:20:21 -06004061 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06004062 err = io_sqe_file_register(ctx, file, i);
4063 if (err)
4064 break;
4065 }
4066 nr_args--;
4067 done++;
4068 up.offset++;
4069 }
4070
4071 return done ? done : err;
4072}
4073
Jens Axboe7d723062019-11-12 22:31:31 -07004074static void io_put_work(struct io_wq_work *work)
4075{
4076 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4077
4078 io_put_req(req);
4079}
4080
4081static void io_get_work(struct io_wq_work *work)
4082{
4083 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4084
4085 refcount_inc(&req->refs);
4086}
4087
Jens Axboe6c271ce2019-01-10 11:22:30 -07004088static int io_sq_offload_start(struct io_ring_ctx *ctx,
4089 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004090{
Jens Axboe576a3472019-11-25 08:49:20 -07004091 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06004092 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004093 int ret;
4094
Jens Axboe6c271ce2019-01-10 11:22:30 -07004095 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004096 mmgrab(current->mm);
4097 ctx->sqo_mm = current->mm;
4098
Jens Axboe6c271ce2019-01-10 11:22:30 -07004099 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06004100 ret = -EPERM;
4101 if (!capable(CAP_SYS_ADMIN))
4102 goto err;
4103
Jens Axboe917257d2019-04-13 09:28:55 -06004104 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
4105 if (!ctx->sq_thread_idle)
4106 ctx->sq_thread_idle = HZ;
4107
Jens Axboe6c271ce2019-01-10 11:22:30 -07004108 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06004109 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004110
Jens Axboe917257d2019-04-13 09:28:55 -06004111 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06004112 if (cpu >= nr_cpu_ids)
4113 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08004114 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06004115 goto err;
4116
Jens Axboe6c271ce2019-01-10 11:22:30 -07004117 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
4118 ctx, cpu,
4119 "io_uring-sq");
4120 } else {
4121 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
4122 "io_uring-sq");
4123 }
4124 if (IS_ERR(ctx->sqo_thread)) {
4125 ret = PTR_ERR(ctx->sqo_thread);
4126 ctx->sqo_thread = NULL;
4127 goto err;
4128 }
4129 wake_up_process(ctx->sqo_thread);
4130 } else if (p->flags & IORING_SETUP_SQ_AFF) {
4131 /* Can't have SQ_AFF without SQPOLL */
4132 ret = -EINVAL;
4133 goto err;
4134 }
4135
Jens Axboe576a3472019-11-25 08:49:20 -07004136 data.mm = ctx->sqo_mm;
4137 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07004138 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07004139 data.get_work = io_get_work;
4140 data.put_work = io_put_work;
4141
Jens Axboe561fb042019-10-24 07:25:42 -06004142 /* Do QD, or 4 * CPUS, whatever is smallest */
4143 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07004144 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06004145 if (IS_ERR(ctx->io_wq)) {
4146 ret = PTR_ERR(ctx->io_wq);
4147 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004148 goto err;
4149 }
4150
4151 return 0;
4152err:
Jens Axboe54a91f32019-09-10 09:15:04 -06004153 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004154 mmdrop(ctx->sqo_mm);
4155 ctx->sqo_mm = NULL;
4156 return ret;
4157}
4158
4159static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
4160{
4161 atomic_long_sub(nr_pages, &user->locked_vm);
4162}
4163
4164static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
4165{
4166 unsigned long page_limit, cur_pages, new_pages;
4167
4168 /* Don't allow more pages than we can safely lock */
4169 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
4170
4171 do {
4172 cur_pages = atomic_long_read(&user->locked_vm);
4173 new_pages = cur_pages + nr_pages;
4174 if (new_pages > page_limit)
4175 return -ENOMEM;
4176 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4177 new_pages) != cur_pages);
4178
4179 return 0;
4180}
4181
4182static void io_mem_free(void *ptr)
4183{
Mark Rutland52e04ef2019-04-30 17:30:21 +01004184 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004185
Mark Rutland52e04ef2019-04-30 17:30:21 +01004186 if (!ptr)
4187 return;
4188
4189 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004190 if (put_page_testzero(page))
4191 free_compound_page(page);
4192}
4193
4194static void *io_mem_alloc(size_t size)
4195{
4196 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4197 __GFP_NORETRY;
4198
4199 return (void *) __get_free_pages(gfp_flags, get_order(size));
4200}
4201
Hristo Venev75b28af2019-08-26 17:23:46 +00004202static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4203 size_t *sq_offset)
4204{
4205 struct io_rings *rings;
4206 size_t off, sq_array_size;
4207
4208 off = struct_size(rings, cqes, cq_entries);
4209 if (off == SIZE_MAX)
4210 return SIZE_MAX;
4211
4212#ifdef CONFIG_SMP
4213 off = ALIGN(off, SMP_CACHE_BYTES);
4214 if (off == 0)
4215 return SIZE_MAX;
4216#endif
4217
4218 sq_array_size = array_size(sizeof(u32), sq_entries);
4219 if (sq_array_size == SIZE_MAX)
4220 return SIZE_MAX;
4221
4222 if (check_add_overflow(off, sq_array_size, &off))
4223 return SIZE_MAX;
4224
4225 if (sq_offset)
4226 *sq_offset = off;
4227
4228 return off;
4229}
4230
Jens Axboe2b188cc2019-01-07 10:46:33 -07004231static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4232{
Hristo Venev75b28af2019-08-26 17:23:46 +00004233 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004234
Hristo Venev75b28af2019-08-26 17:23:46 +00004235 pages = (size_t)1 << get_order(
4236 rings_size(sq_entries, cq_entries, NULL));
4237 pages += (size_t)1 << get_order(
4238 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07004239
Hristo Venev75b28af2019-08-26 17:23:46 +00004240 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004241}
4242
Jens Axboeedafcce2019-01-09 09:16:05 -07004243static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4244{
4245 int i, j;
4246
4247 if (!ctx->user_bufs)
4248 return -ENXIO;
4249
4250 for (i = 0; i < ctx->nr_user_bufs; i++) {
4251 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4252
4253 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07004254 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07004255
4256 if (ctx->account_mem)
4257 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004258 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004259 imu->nr_bvecs = 0;
4260 }
4261
4262 kfree(ctx->user_bufs);
4263 ctx->user_bufs = NULL;
4264 ctx->nr_user_bufs = 0;
4265 return 0;
4266}
4267
4268static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4269 void __user *arg, unsigned index)
4270{
4271 struct iovec __user *src;
4272
4273#ifdef CONFIG_COMPAT
4274 if (ctx->compat) {
4275 struct compat_iovec __user *ciovs;
4276 struct compat_iovec ciov;
4277
4278 ciovs = (struct compat_iovec __user *) arg;
4279 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4280 return -EFAULT;
4281
4282 dst->iov_base = (void __user *) (unsigned long) ciov.iov_base;
4283 dst->iov_len = ciov.iov_len;
4284 return 0;
4285 }
4286#endif
4287 src = (struct iovec __user *) arg;
4288 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4289 return -EFAULT;
4290 return 0;
4291}
4292
4293static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4294 unsigned nr_args)
4295{
4296 struct vm_area_struct **vmas = NULL;
4297 struct page **pages = NULL;
4298 int i, j, got_pages = 0;
4299 int ret = -EINVAL;
4300
4301 if (ctx->user_bufs)
4302 return -EBUSY;
4303 if (!nr_args || nr_args > UIO_MAXIOV)
4304 return -EINVAL;
4305
4306 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4307 GFP_KERNEL);
4308 if (!ctx->user_bufs)
4309 return -ENOMEM;
4310
4311 for (i = 0; i < nr_args; i++) {
4312 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4313 unsigned long off, start, end, ubuf;
4314 int pret, nr_pages;
4315 struct iovec iov;
4316 size_t size;
4317
4318 ret = io_copy_iov(ctx, &iov, arg, i);
4319 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03004320 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07004321
4322 /*
4323 * Don't impose further limits on the size and buffer
4324 * constraints here, we'll -EINVAL later when IO is
4325 * submitted if they are wrong.
4326 */
4327 ret = -EFAULT;
4328 if (!iov.iov_base || !iov.iov_len)
4329 goto err;
4330
4331 /* arbitrary limit, but we need something */
4332 if (iov.iov_len > SZ_1G)
4333 goto err;
4334
4335 ubuf = (unsigned long) iov.iov_base;
4336 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4337 start = ubuf >> PAGE_SHIFT;
4338 nr_pages = end - start;
4339
4340 if (ctx->account_mem) {
4341 ret = io_account_mem(ctx->user, nr_pages);
4342 if (ret)
4343 goto err;
4344 }
4345
4346 ret = 0;
4347 if (!pages || nr_pages > got_pages) {
4348 kfree(vmas);
4349 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004350 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07004351 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004352 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07004353 sizeof(struct vm_area_struct *),
4354 GFP_KERNEL);
4355 if (!pages || !vmas) {
4356 ret = -ENOMEM;
4357 if (ctx->account_mem)
4358 io_unaccount_mem(ctx->user, nr_pages);
4359 goto err;
4360 }
4361 got_pages = nr_pages;
4362 }
4363
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004364 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07004365 GFP_KERNEL);
4366 ret = -ENOMEM;
4367 if (!imu->bvec) {
4368 if (ctx->account_mem)
4369 io_unaccount_mem(ctx->user, nr_pages);
4370 goto err;
4371 }
4372
4373 ret = 0;
4374 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07004375 pret = get_user_pages(ubuf, nr_pages,
4376 FOLL_WRITE | FOLL_LONGTERM,
4377 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004378 if (pret == nr_pages) {
4379 /* don't support file backed memory */
4380 for (j = 0; j < nr_pages; j++) {
4381 struct vm_area_struct *vma = vmas[j];
4382
4383 if (vma->vm_file &&
4384 !is_file_hugepages(vma->vm_file)) {
4385 ret = -EOPNOTSUPP;
4386 break;
4387 }
4388 }
4389 } else {
4390 ret = pret < 0 ? pret : -EFAULT;
4391 }
4392 up_read(&current->mm->mmap_sem);
4393 if (ret) {
4394 /*
4395 * if we did partial map, or found file backed vmas,
4396 * release any pages we did get
4397 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07004398 if (pret > 0)
4399 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004400 if (ctx->account_mem)
4401 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004402 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004403 goto err;
4404 }
4405
4406 off = ubuf & ~PAGE_MASK;
4407 size = iov.iov_len;
4408 for (j = 0; j < nr_pages; j++) {
4409 size_t vec_len;
4410
4411 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4412 imu->bvec[j].bv_page = pages[j];
4413 imu->bvec[j].bv_len = vec_len;
4414 imu->bvec[j].bv_offset = off;
4415 off = 0;
4416 size -= vec_len;
4417 }
4418 /* store original address for later verification */
4419 imu->ubuf = ubuf;
4420 imu->len = iov.iov_len;
4421 imu->nr_bvecs = nr_pages;
4422
4423 ctx->nr_user_bufs++;
4424 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004425 kvfree(pages);
4426 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004427 return 0;
4428err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004429 kvfree(pages);
4430 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004431 io_sqe_buffer_unregister(ctx);
4432 return ret;
4433}
4434
Jens Axboe9b402842019-04-11 11:45:41 -06004435static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4436{
4437 __s32 __user *fds = arg;
4438 int fd;
4439
4440 if (ctx->cq_ev_fd)
4441 return -EBUSY;
4442
4443 if (copy_from_user(&fd, fds, sizeof(*fds)))
4444 return -EFAULT;
4445
4446 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4447 if (IS_ERR(ctx->cq_ev_fd)) {
4448 int ret = PTR_ERR(ctx->cq_ev_fd);
4449 ctx->cq_ev_fd = NULL;
4450 return ret;
4451 }
4452
4453 return 0;
4454}
4455
4456static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4457{
4458 if (ctx->cq_ev_fd) {
4459 eventfd_ctx_put(ctx->cq_ev_fd);
4460 ctx->cq_ev_fd = NULL;
4461 return 0;
4462 }
4463
4464 return -ENXIO;
4465}
4466
Jens Axboe2b188cc2019-01-07 10:46:33 -07004467static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4468{
Jens Axboe6b063142019-01-10 22:13:58 -07004469 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004470 if (ctx->sqo_mm)
4471 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07004472
4473 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07004474 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07004475 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06004476 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07004477
Jens Axboe2b188cc2019-01-07 10:46:33 -07004478#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07004479 if (ctx->ring_sock) {
4480 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004481 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07004482 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004483#endif
4484
Hristo Venev75b28af2019-08-26 17:23:46 +00004485 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004486 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004487
4488 percpu_ref_exit(&ctx->refs);
4489 if (ctx->account_mem)
4490 io_unaccount_mem(ctx->user,
4491 ring_pages(ctx->sq_entries, ctx->cq_entries));
4492 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07004493 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07004494 kfree(ctx->completions);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07004495 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004496 kfree(ctx);
4497}
4498
4499static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4500{
4501 struct io_ring_ctx *ctx = file->private_data;
4502 __poll_t mask = 0;
4503
4504 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02004505 /*
4506 * synchronizes with barrier from wq_has_sleeper call in
4507 * io_commit_cqring
4508 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004509 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00004510 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4511 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004512 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08004513 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004514 mask |= EPOLLIN | EPOLLRDNORM;
4515
4516 return mask;
4517}
4518
4519static int io_uring_fasync(int fd, struct file *file, int on)
4520{
4521 struct io_ring_ctx *ctx = file->private_data;
4522
4523 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4524}
4525
4526static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4527{
4528 mutex_lock(&ctx->uring_lock);
4529 percpu_ref_kill(&ctx->refs);
4530 mutex_unlock(&ctx->uring_lock);
4531
Jens Axboe5262f562019-09-17 12:26:57 -06004532 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004533 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06004534
4535 if (ctx->io_wq)
4536 io_wq_cancel_all(ctx->io_wq);
4537
Jens Axboedef596e2019-01-09 08:59:42 -07004538 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07004539 /* if we failed setting up the ctx, we might not have any rings */
4540 if (ctx->rings)
4541 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07004542 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004543 io_ring_ctx_free(ctx);
4544}
4545
4546static int io_uring_release(struct inode *inode, struct file *file)
4547{
4548 struct io_ring_ctx *ctx = file->private_data;
4549
4550 file->private_data = NULL;
4551 io_ring_ctx_wait_and_kill(ctx);
4552 return 0;
4553}
4554
Jens Axboefcb323c2019-10-24 12:39:47 -06004555static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4556 struct files_struct *files)
4557{
4558 struct io_kiocb *req;
4559 DEFINE_WAIT(wait);
4560
4561 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07004562 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06004563
4564 spin_lock_irq(&ctx->inflight_lock);
4565 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07004566 if (req->work.files != files)
4567 continue;
4568 /* req is being completed, ignore */
4569 if (!refcount_inc_not_zero(&req->refs))
4570 continue;
4571 cancel_req = req;
4572 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06004573 }
Jens Axboe768134d2019-11-10 20:30:53 -07004574 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004575 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07004576 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06004577 spin_unlock_irq(&ctx->inflight_lock);
4578
Jens Axboe768134d2019-11-10 20:30:53 -07004579 /* We need to keep going until we don't find a matching req */
4580 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004581 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08004582
4583 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
4584 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06004585 schedule();
4586 }
Jens Axboe768134d2019-11-10 20:30:53 -07004587 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06004588}
4589
4590static int io_uring_flush(struct file *file, void *data)
4591{
4592 struct io_ring_ctx *ctx = file->private_data;
4593
4594 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004595 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
4596 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06004597 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004598 }
Jens Axboefcb323c2019-10-24 12:39:47 -06004599 return 0;
4600}
4601
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004602static void *io_uring_validate_mmap_request(struct file *file,
4603 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004604{
Jens Axboe2b188cc2019-01-07 10:46:33 -07004605 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004606 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004607 struct page *page;
4608 void *ptr;
4609
4610 switch (offset) {
4611 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00004612 case IORING_OFF_CQ_RING:
4613 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004614 break;
4615 case IORING_OFF_SQES:
4616 ptr = ctx->sq_sqes;
4617 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004618 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004619 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004620 }
4621
4622 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07004623 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004624 return ERR_PTR(-EINVAL);
4625
4626 return ptr;
4627}
4628
4629#ifdef CONFIG_MMU
4630
4631static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4632{
4633 size_t sz = vma->vm_end - vma->vm_start;
4634 unsigned long pfn;
4635 void *ptr;
4636
4637 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
4638 if (IS_ERR(ptr))
4639 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004640
4641 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
4642 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
4643}
4644
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004645#else /* !CONFIG_MMU */
4646
4647static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4648{
4649 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
4650}
4651
4652static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
4653{
4654 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
4655}
4656
4657static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
4658 unsigned long addr, unsigned long len,
4659 unsigned long pgoff, unsigned long flags)
4660{
4661 void *ptr;
4662
4663 ptr = io_uring_validate_mmap_request(file, pgoff, len);
4664 if (IS_ERR(ptr))
4665 return PTR_ERR(ptr);
4666
4667 return (unsigned long) ptr;
4668}
4669
4670#endif /* !CONFIG_MMU */
4671
Jens Axboe2b188cc2019-01-07 10:46:33 -07004672SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
4673 u32, min_complete, u32, flags, const sigset_t __user *, sig,
4674 size_t, sigsz)
4675{
4676 struct io_ring_ctx *ctx;
4677 long ret = -EBADF;
4678 int submitted = 0;
4679 struct fd f;
4680
Jens Axboe6c271ce2019-01-10 11:22:30 -07004681 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07004682 return -EINVAL;
4683
4684 f = fdget(fd);
4685 if (!f.file)
4686 return -EBADF;
4687
4688 ret = -EOPNOTSUPP;
4689 if (f.file->f_op != &io_uring_fops)
4690 goto out_fput;
4691
4692 ret = -ENXIO;
4693 ctx = f.file->private_data;
4694 if (!percpu_ref_tryget(&ctx->refs))
4695 goto out_fput;
4696
Jens Axboe6c271ce2019-01-10 11:22:30 -07004697 /*
4698 * For SQ polling, the thread will do all submissions and completions.
4699 * Just return the requested submit count, and wake the thread if
4700 * we were asked to.
4701 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06004702 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004703 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07004704 if (!list_empty_careful(&ctx->cq_overflow_list))
4705 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004706 if (flags & IORING_ENTER_SQ_WAKEUP)
4707 wake_up(&ctx->sqo_wait);
4708 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06004709 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004710 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004711
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004712 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004713 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004714 /* already have mm, so io_submit_sqes() won't try to grab it */
4715 cur_mm = ctx->sqo_mm;
4716 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
4717 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004718 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004719 }
4720 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07004721 unsigned nr_events = 0;
4722
Jens Axboe2b188cc2019-01-07 10:46:33 -07004723 min_complete = min(min_complete, ctx->cq_entries);
4724
Jens Axboedef596e2019-01-09 08:59:42 -07004725 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07004726 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07004727 } else {
4728 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
4729 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004730 }
4731
Pavel Begunkov6805b322019-10-08 02:18:42 +03004732 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004733out_fput:
4734 fdput(f);
4735 return submitted ? submitted : ret;
4736}
4737
4738static const struct file_operations io_uring_fops = {
4739 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06004740 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07004741 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004742#ifndef CONFIG_MMU
4743 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
4744 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
4745#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07004746 .poll = io_uring_poll,
4747 .fasync = io_uring_fasync,
4748};
4749
4750static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
4751 struct io_uring_params *p)
4752{
Hristo Venev75b28af2019-08-26 17:23:46 +00004753 struct io_rings *rings;
4754 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004755
Hristo Venev75b28af2019-08-26 17:23:46 +00004756 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
4757 if (size == SIZE_MAX)
4758 return -EOVERFLOW;
4759
4760 rings = io_mem_alloc(size);
4761 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004762 return -ENOMEM;
4763
Hristo Venev75b28af2019-08-26 17:23:46 +00004764 ctx->rings = rings;
4765 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
4766 rings->sq_ring_mask = p->sq_entries - 1;
4767 rings->cq_ring_mask = p->cq_entries - 1;
4768 rings->sq_ring_entries = p->sq_entries;
4769 rings->cq_ring_entries = p->cq_entries;
4770 ctx->sq_mask = rings->sq_ring_mask;
4771 ctx->cq_mask = rings->cq_ring_mask;
4772 ctx->sq_entries = rings->sq_ring_entries;
4773 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004774
4775 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07004776 if (size == SIZE_MAX) {
4777 io_mem_free(ctx->rings);
4778 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004779 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07004780 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004781
4782 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07004783 if (!ctx->sq_sqes) {
4784 io_mem_free(ctx->rings);
4785 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004786 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07004787 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004788
Jens Axboe2b188cc2019-01-07 10:46:33 -07004789 return 0;
4790}
4791
4792/*
4793 * Allocate an anonymous fd, this is what constitutes the application
4794 * visible backing of an io_uring instance. The application mmaps this
4795 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
4796 * we have to tie this fd to a socket for file garbage collection purposes.
4797 */
4798static int io_uring_get_fd(struct io_ring_ctx *ctx)
4799{
4800 struct file *file;
4801 int ret;
4802
4803#if defined(CONFIG_UNIX)
4804 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
4805 &ctx->ring_sock);
4806 if (ret)
4807 return ret;
4808#endif
4809
4810 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
4811 if (ret < 0)
4812 goto err;
4813
4814 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
4815 O_RDWR | O_CLOEXEC);
4816 if (IS_ERR(file)) {
4817 put_unused_fd(ret);
4818 ret = PTR_ERR(file);
4819 goto err;
4820 }
4821
4822#if defined(CONFIG_UNIX)
4823 ctx->ring_sock->file = file;
Jens Axboe6b063142019-01-10 22:13:58 -07004824 ctx->ring_sock->sk->sk_user_data = ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004825#endif
4826 fd_install(ret, file);
4827 return ret;
4828err:
4829#if defined(CONFIG_UNIX)
4830 sock_release(ctx->ring_sock);
4831 ctx->ring_sock = NULL;
4832#endif
4833 return ret;
4834}
4835
4836static int io_uring_create(unsigned entries, struct io_uring_params *p)
4837{
4838 struct user_struct *user = NULL;
4839 struct io_ring_ctx *ctx;
4840 bool account_mem;
4841 int ret;
4842
4843 if (!entries || entries > IORING_MAX_ENTRIES)
4844 return -EINVAL;
4845
4846 /*
4847 * Use twice as many entries for the CQ ring. It's possible for the
4848 * application to drive a higher depth than the size of the SQ ring,
4849 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06004850 * some flexibility in overcommitting a bit. If the application has
4851 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
4852 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07004853 */
4854 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06004855 if (p->flags & IORING_SETUP_CQSIZE) {
4856 /*
4857 * If IORING_SETUP_CQSIZE is set, we do the same roundup
4858 * to a power-of-two, if it isn't already. We do NOT impose
4859 * any cq vs sq ring sizing.
4860 */
4861 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
4862 return -EINVAL;
4863 p->cq_entries = roundup_pow_of_two(p->cq_entries);
4864 } else {
4865 p->cq_entries = 2 * p->sq_entries;
4866 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004867
4868 user = get_uid(current_user());
4869 account_mem = !capable(CAP_IPC_LOCK);
4870
4871 if (account_mem) {
4872 ret = io_account_mem(user,
4873 ring_pages(p->sq_entries, p->cq_entries));
4874 if (ret) {
4875 free_uid(user);
4876 return ret;
4877 }
4878 }
4879
4880 ctx = io_ring_ctx_alloc(p);
4881 if (!ctx) {
4882 if (account_mem)
4883 io_unaccount_mem(user, ring_pages(p->sq_entries,
4884 p->cq_entries));
4885 free_uid(user);
4886 return -ENOMEM;
4887 }
4888 ctx->compat = in_compat_syscall();
4889 ctx->account_mem = account_mem;
4890 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07004891 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07004892
4893 ret = io_allocate_scq_urings(ctx, p);
4894 if (ret)
4895 goto err;
4896
Jens Axboe6c271ce2019-01-10 11:22:30 -07004897 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004898 if (ret)
4899 goto err;
4900
Jens Axboe2b188cc2019-01-07 10:46:33 -07004901 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00004902 p->sq_off.head = offsetof(struct io_rings, sq.head);
4903 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
4904 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
4905 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
4906 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
4907 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
4908 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004909
4910 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00004911 p->cq_off.head = offsetof(struct io_rings, cq.head);
4912 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
4913 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
4914 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
4915 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
4916 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06004917
Jens Axboe044c1ab2019-10-28 09:15:33 -06004918 /*
4919 * Install ring fd as the very last thing, so we don't risk someone
4920 * having closed it before we finish setup
4921 */
4922 ret = io_uring_get_fd(ctx);
4923 if (ret < 0)
4924 goto err;
4925
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004926 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004927 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004928 return ret;
4929err:
4930 io_ring_ctx_wait_and_kill(ctx);
4931 return ret;
4932}
4933
4934/*
4935 * Sets up an aio uring context, and returns the fd. Applications asks for a
4936 * ring size, we return the actual sq/cq ring sizes (among other things) in the
4937 * params structure passed in.
4938 */
4939static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
4940{
4941 struct io_uring_params p;
4942 long ret;
4943 int i;
4944
4945 if (copy_from_user(&p, params, sizeof(p)))
4946 return -EFAULT;
4947 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
4948 if (p.resv[i])
4949 return -EINVAL;
4950 }
4951
Jens Axboe6c271ce2019-01-10 11:22:30 -07004952 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe33a107f2019-10-04 12:10:03 -06004953 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
Jens Axboe2b188cc2019-01-07 10:46:33 -07004954 return -EINVAL;
4955
4956 ret = io_uring_create(entries, &p);
4957 if (ret < 0)
4958 return ret;
4959
4960 if (copy_to_user(params, &p, sizeof(p)))
4961 return -EFAULT;
4962
4963 return ret;
4964}
4965
4966SYSCALL_DEFINE2(io_uring_setup, u32, entries,
4967 struct io_uring_params __user *, params)
4968{
4969 return io_uring_setup(entries, params);
4970}
4971
Jens Axboeedafcce2019-01-09 09:16:05 -07004972static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
4973 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06004974 __releases(ctx->uring_lock)
4975 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07004976{
4977 int ret;
4978
Jens Axboe35fa71a2019-04-22 10:23:23 -06004979 /*
4980 * We're inside the ring mutex, if the ref is already dying, then
4981 * someone else killed the ctx or is already going through
4982 * io_uring_register().
4983 */
4984 if (percpu_ref_is_dying(&ctx->refs))
4985 return -ENXIO;
4986
Jens Axboeedafcce2019-01-09 09:16:05 -07004987 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06004988
4989 /*
4990 * Drop uring mutex before waiting for references to exit. If another
4991 * thread is currently inside io_uring_enter() it might need to grab
4992 * the uring_lock to make progress. If we hold it here across the drain
4993 * wait, then we can deadlock. It's safe to drop the mutex here, since
4994 * no new references will come in after we've killed the percpu ref.
4995 */
4996 mutex_unlock(&ctx->uring_lock);
Jens Axboe206aefd2019-11-07 18:27:42 -07004997 wait_for_completion(&ctx->completions[0]);
Jens Axboeb19062a2019-04-15 10:49:38 -06004998 mutex_lock(&ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07004999
5000 switch (opcode) {
5001 case IORING_REGISTER_BUFFERS:
5002 ret = io_sqe_buffer_register(ctx, arg, nr_args);
5003 break;
5004 case IORING_UNREGISTER_BUFFERS:
5005 ret = -EINVAL;
5006 if (arg || nr_args)
5007 break;
5008 ret = io_sqe_buffer_unregister(ctx);
5009 break;
Jens Axboe6b063142019-01-10 22:13:58 -07005010 case IORING_REGISTER_FILES:
5011 ret = io_sqe_files_register(ctx, arg, nr_args);
5012 break;
5013 case IORING_UNREGISTER_FILES:
5014 ret = -EINVAL;
5015 if (arg || nr_args)
5016 break;
5017 ret = io_sqe_files_unregister(ctx);
5018 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06005019 case IORING_REGISTER_FILES_UPDATE:
5020 ret = io_sqe_files_update(ctx, arg, nr_args);
5021 break;
Jens Axboe9b402842019-04-11 11:45:41 -06005022 case IORING_REGISTER_EVENTFD:
5023 ret = -EINVAL;
5024 if (nr_args != 1)
5025 break;
5026 ret = io_eventfd_register(ctx, arg);
5027 break;
5028 case IORING_UNREGISTER_EVENTFD:
5029 ret = -EINVAL;
5030 if (arg || nr_args)
5031 break;
5032 ret = io_eventfd_unregister(ctx);
5033 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07005034 default:
5035 ret = -EINVAL;
5036 break;
5037 }
5038
5039 /* bring the ctx back to life */
Jens Axboe206aefd2019-11-07 18:27:42 -07005040 reinit_completion(&ctx->completions[0]);
Jens Axboeedafcce2019-01-09 09:16:05 -07005041 percpu_ref_reinit(&ctx->refs);
5042 return ret;
5043}
5044
5045SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
5046 void __user *, arg, unsigned int, nr_args)
5047{
5048 struct io_ring_ctx *ctx;
5049 long ret = -EBADF;
5050 struct fd f;
5051
5052 f = fdget(fd);
5053 if (!f.file)
5054 return -EBADF;
5055
5056 ret = -EOPNOTSUPP;
5057 if (f.file->f_op != &io_uring_fops)
5058 goto out_fput;
5059
5060 ctx = f.file->private_data;
5061
5062 mutex_lock(&ctx->uring_lock);
5063 ret = __io_uring_register(ctx, opcode, arg, nr_args);
5064 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005065 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
5066 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005067out_fput:
5068 fdput(f);
5069 return ret;
5070}
5071
Jens Axboe2b188cc2019-01-07 10:46:33 -07005072static int __init io_uring_init(void)
5073{
5074 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
5075 return 0;
5076};
5077__initcall(io_uring_init);