blob: c838705c9a5a7833f91195101d6265cf926af401 [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 Axboe78076bb2019-12-04 19:56:40 -0700278 struct hlist_head *cancel_hash;
279 unsigned cancel_hash_bits;
Jens Axboefcb323c2019-10-24 12:39:47 -0600280
281 spinlock_t inflight_lock;
282 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700283 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700284};
285
Jens Axboe09bb8392019-03-13 12:39:28 -0600286/*
287 * First field must be the file pointer in all the
288 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
289 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700290struct io_poll_iocb {
291 struct file *file;
292 struct wait_queue_head *head;
293 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600294 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700295 bool canceled;
Jens Axboee9444752019-11-26 15:02:04 -0700296 struct wait_queue_entry *wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700297};
298
Jens Axboead8a48a2019-11-15 08:49:11 -0700299struct io_timeout_data {
300 struct io_kiocb *req;
301 struct hrtimer timer;
302 struct timespec64 ts;
303 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300304 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700305};
306
Jens Axboef499a022019-12-02 16:28:46 -0700307struct io_async_connect {
308 struct sockaddr_storage address;
309};
310
Jens Axboe03b12302019-12-02 18:50:25 -0700311struct io_async_msghdr {
312 struct iovec fast_iov[UIO_FASTIOV];
313 struct iovec *iov;
314 struct sockaddr __user *uaddr;
315 struct msghdr msg;
316};
317
Jens Axboef67676d2019-12-02 11:03:47 -0700318struct io_async_rw {
319 struct iovec fast_iov[UIO_FASTIOV];
320 struct iovec *iov;
321 ssize_t nr_segs;
322 ssize_t size;
323};
324
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700325struct io_async_ctx {
326 struct io_uring_sqe sqe;
Jens Axboef67676d2019-12-02 11:03:47 -0700327 union {
328 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700329 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700330 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700331 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700332 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700333};
334
Jens Axboe09bb8392019-03-13 12:39:28 -0600335/*
336 * NOTE! Each of the iocb union members has the file pointer
337 * as the first entry in their struct definition. So you can
338 * access the file pointer through any of the sub-structs,
339 * or directly as just 'ki_filp' in this struct.
340 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700341struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700342 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600343 struct file *file;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700344 struct kiocb rw;
345 struct io_poll_iocb poll;
346 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700347
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300348 const struct io_uring_sqe *sqe;
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700349 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300350 struct file *ring_file;
351 int ring_fd;
352 bool has_user;
353 bool in_async;
354 bool needs_fixed_file;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700355
356 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700357 union {
358 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700359 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700360 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600361 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700362 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700363 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200364#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700365#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700366#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700367#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200368#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
369#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600370#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700371#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800372#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300373#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600374#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600375#define REQ_F_ISREG 2048 /* regular file */
376#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700377#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800378#define REQ_F_INFLIGHT 16384 /* on inflight list */
379#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700380 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600381 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600382 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700383
Jens Axboefcb323c2019-10-24 12:39:47 -0600384 struct list_head inflight_entry;
385
Jens Axboe561fb042019-10-24 07:25:42 -0600386 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700387};
388
389#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700390#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700391
Jens Axboe9a56a232019-01-09 09:06:50 -0700392struct io_submit_state {
393 struct blk_plug plug;
394
395 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700396 * io_kiocb alloc cache
397 */
398 void *reqs[IO_IOPOLL_BATCH];
399 unsigned int free_reqs;
400 unsigned int cur_req;
401
402 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700403 * File reference cache
404 */
405 struct file *file;
406 unsigned int fd;
407 unsigned int has_refs;
408 unsigned int used_refs;
409 unsigned int ios_left;
410};
411
Jens Axboe561fb042019-10-24 07:25:42 -0600412static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700413static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liu4fe2c962019-09-09 20:50:40 +0800414static void __io_free_req(struct io_kiocb *req);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800415static void io_put_req(struct io_kiocb *req);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700416static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700417static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700418static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
419static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600420
Jens Axboe2b188cc2019-01-07 10:46:33 -0700421static struct kmem_cache *req_cachep;
422
423static const struct file_operations io_uring_fops;
424
425struct sock *io_uring_get_socket(struct file *file)
426{
427#if defined(CONFIG_UNIX)
428 if (file->f_op == &io_uring_fops) {
429 struct io_ring_ctx *ctx = file->private_data;
430
431 return ctx->ring_sock->sk;
432 }
433#endif
434 return NULL;
435}
436EXPORT_SYMBOL(io_uring_get_socket);
437
438static void io_ring_ctx_ref_free(struct percpu_ref *ref)
439{
440 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
441
Jens Axboe206aefd2019-11-07 18:27:42 -0700442 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700443}
444
445static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
446{
447 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700448 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700449
450 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
451 if (!ctx)
452 return NULL;
453
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700454 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
455 if (!ctx->fallback_req)
456 goto err;
457
Jens Axboe206aefd2019-11-07 18:27:42 -0700458 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
459 if (!ctx->completions)
460 goto err;
461
Jens Axboe78076bb2019-12-04 19:56:40 -0700462 /*
463 * Use 5 bits less than the max cq entries, that should give us around
464 * 32 entries per hash list if totally full and uniformly spread.
465 */
466 hash_bits = ilog2(p->cq_entries);
467 hash_bits -= 5;
468 if (hash_bits <= 0)
469 hash_bits = 1;
470 ctx->cancel_hash_bits = hash_bits;
471 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
472 GFP_KERNEL);
473 if (!ctx->cancel_hash)
474 goto err;
475 __hash_init(ctx->cancel_hash, 1U << hash_bits);
476
Roman Gushchin21482892019-05-07 10:01:48 -0700477 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700478 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
479 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700480
481 ctx->flags = p->flags;
482 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700483 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700484 init_completion(&ctx->completions[0]);
485 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700486 mutex_init(&ctx->uring_lock);
487 init_waitqueue_head(&ctx->wait);
488 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700489 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600490 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600491 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600492 init_waitqueue_head(&ctx->inflight_wait);
493 spin_lock_init(&ctx->inflight_lock);
494 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700495 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700496err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700497 if (ctx->fallback_req)
498 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700499 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700500 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700501 kfree(ctx);
502 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700503}
504
Bob Liu9d858b22019-11-13 18:06:25 +0800505static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600506{
Jackie Liua197f662019-11-08 08:09:12 -0700507 struct io_ring_ctx *ctx = req->ctx;
508
Jens Axboe498ccd92019-10-25 10:04:25 -0600509 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
510 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600511}
512
Bob Liu9d858b22019-11-13 18:06:25 +0800513static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600514{
Bob Liu9d858b22019-11-13 18:06:25 +0800515 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
516 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600517
Bob Liu9d858b22019-11-13 18:06:25 +0800518 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600519}
520
521static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600522{
523 struct io_kiocb *req;
524
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600525 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800526 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600527 list_del_init(&req->list);
528 return req;
529 }
530
531 return NULL;
532}
533
Jens Axboe5262f562019-09-17 12:26:57 -0600534static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
535{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600536 struct io_kiocb *req;
537
538 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700539 if (req) {
540 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
541 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800542 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700543 list_del_init(&req->list);
544 return req;
545 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600546 }
547
548 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600549}
550
Jens Axboede0617e2019-04-06 21:51:27 -0600551static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700552{
Hristo Venev75b28af2019-08-26 17:23:46 +0000553 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700554
Hristo Venev75b28af2019-08-26 17:23:46 +0000555 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700556 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000557 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700558
Jens Axboe2b188cc2019-01-07 10:46:33 -0700559 if (wq_has_sleeper(&ctx->cq_wait)) {
560 wake_up_interruptible(&ctx->cq_wait);
561 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
562 }
563 }
564}
565
Jens Axboe561fb042019-10-24 07:25:42 -0600566static inline bool io_sqe_needs_user(const struct io_uring_sqe *sqe)
Jens Axboe18d9be12019-09-10 09:13:05 -0600567{
Jens Axboe561fb042019-10-24 07:25:42 -0600568 u8 opcode = READ_ONCE(sqe->opcode);
569
570 return !(opcode == IORING_OP_READ_FIXED ||
571 opcode == IORING_OP_WRITE_FIXED);
572}
573
Jens Axboe94ae5e72019-11-14 19:39:52 -0700574static inline bool io_prep_async_work(struct io_kiocb *req,
575 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600576{
577 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600578
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300579 if (req->sqe) {
580 switch (req->sqe->opcode) {
Jens Axboe6cc47d12019-09-18 11:18:23 -0600581 case IORING_OP_WRITEV:
582 case IORING_OP_WRITE_FIXED:
Jens Axboe561fb042019-10-24 07:25:42 -0600583 do_hashed = true;
Jens Axboe5f8fd2d2019-11-07 10:57:36 -0700584 /* fall-through */
585 case IORING_OP_READV:
586 case IORING_OP_READ_FIXED:
587 case IORING_OP_SENDMSG:
588 case IORING_OP_RECVMSG:
589 case IORING_OP_ACCEPT:
590 case IORING_OP_POLL_ADD:
Jens Axboef8e85cf2019-11-23 14:24:24 -0700591 case IORING_OP_CONNECT:
Jens Axboe5f8fd2d2019-11-07 10:57:36 -0700592 /*
593 * We know REQ_F_ISREG is not set on some of these
594 * opcodes, but this enables us to keep the check in
595 * just one place.
596 */
597 if (!(req->flags & REQ_F_ISREG))
598 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe6cc47d12019-09-18 11:18:23 -0600599 break;
600 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300601 if (io_sqe_needs_user(req->sqe))
Jens Axboe561fb042019-10-24 07:25:42 -0600602 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600603 }
604
Jens Axboe94ae5e72019-11-14 19:39:52 -0700605 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600606 return do_hashed;
607}
608
Jackie Liua197f662019-11-08 08:09:12 -0700609static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600610{
Jackie Liua197f662019-11-08 08:09:12 -0700611 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700612 struct io_kiocb *link;
613 bool do_hashed;
614
615 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600616
617 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
618 req->flags);
619 if (!do_hashed) {
620 io_wq_enqueue(ctx->io_wq, &req->work);
621 } else {
622 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
623 file_inode(req->file));
624 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700625
626 if (link)
627 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600628}
629
Jens Axboe5262f562019-09-17 12:26:57 -0600630static void io_kill_timeout(struct io_kiocb *req)
631{
632 int ret;
633
Jens Axboe2d283902019-12-04 11:08:05 -0700634 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600635 if (ret != -1) {
636 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600637 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700638 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800639 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600640 }
641}
642
643static void io_kill_timeouts(struct io_ring_ctx *ctx)
644{
645 struct io_kiocb *req, *tmp;
646
647 spin_lock_irq(&ctx->completion_lock);
648 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
649 io_kill_timeout(req);
650 spin_unlock_irq(&ctx->completion_lock);
651}
652
Jens Axboede0617e2019-04-06 21:51:27 -0600653static void io_commit_cqring(struct io_ring_ctx *ctx)
654{
655 struct io_kiocb *req;
656
Jens Axboe5262f562019-09-17 12:26:57 -0600657 while ((req = io_get_timeout_req(ctx)) != NULL)
658 io_kill_timeout(req);
659
Jens Axboede0617e2019-04-06 21:51:27 -0600660 __io_commit_cqring(ctx);
661
662 while ((req = io_get_deferred_req(ctx)) != NULL) {
663 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700664 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600665 }
666}
667
Jens Axboe2b188cc2019-01-07 10:46:33 -0700668static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
669{
Hristo Venev75b28af2019-08-26 17:23:46 +0000670 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700671 unsigned tail;
672
673 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200674 /*
675 * writes to the cq entry need to come after reading head; the
676 * control dependency is enough as we're using WRITE_ONCE to
677 * fill the cq entry
678 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000679 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700680 return NULL;
681
682 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000683 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700684}
685
Jens Axboe8c838782019-03-12 15:48:16 -0600686static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
687{
688 if (waitqueue_active(&ctx->wait))
689 wake_up(&ctx->wait);
690 if (waitqueue_active(&ctx->sqo_wait))
691 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600692 if (ctx->cq_ev_fd)
693 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600694}
695
Jens Axboec4a2ed72019-11-21 21:01:26 -0700696/* Returns true if there are no backlogged entries after the flush */
697static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700698{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700699 struct io_rings *rings = ctx->rings;
700 struct io_uring_cqe *cqe;
701 struct io_kiocb *req;
702 unsigned long flags;
703 LIST_HEAD(list);
704
705 if (!force) {
706 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700707 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700708 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
709 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700710 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700711 }
712
713 spin_lock_irqsave(&ctx->completion_lock, flags);
714
715 /* if force is set, the ring is going away. always drop after that */
716 if (force)
717 ctx->cq_overflow_flushed = true;
718
Jens Axboec4a2ed72019-11-21 21:01:26 -0700719 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700720 while (!list_empty(&ctx->cq_overflow_list)) {
721 cqe = io_get_cqring(ctx);
722 if (!cqe && !force)
723 break;
724
725 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
726 list);
727 list_move(&req->list, &list);
728 if (cqe) {
729 WRITE_ONCE(cqe->user_data, req->user_data);
730 WRITE_ONCE(cqe->res, req->result);
731 WRITE_ONCE(cqe->flags, 0);
732 } else {
733 WRITE_ONCE(ctx->rings->cq_overflow,
734 atomic_inc_return(&ctx->cached_cq_overflow));
735 }
736 }
737
738 io_commit_cqring(ctx);
739 spin_unlock_irqrestore(&ctx->completion_lock, flags);
740 io_cqring_ev_posted(ctx);
741
742 while (!list_empty(&list)) {
743 req = list_first_entry(&list, struct io_kiocb, list);
744 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800745 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700746 }
Jens Axboec4a2ed72019-11-21 21:01:26 -0700747
748 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700749}
750
Jens Axboe78e19bb2019-11-06 15:21:34 -0700751static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700752{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700753 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700754 struct io_uring_cqe *cqe;
755
Jens Axboe78e19bb2019-11-06 15:21:34 -0700756 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -0700757
Jens Axboe2b188cc2019-01-07 10:46:33 -0700758 /*
759 * If we can't get a cq entry, userspace overflowed the
760 * submission (by quite a lot). Increment the overflow count in
761 * the ring.
762 */
763 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700764 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700765 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700766 WRITE_ONCE(cqe->res, res);
767 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700768 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700769 WRITE_ONCE(ctx->rings->cq_overflow,
770 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700771 } else {
772 refcount_inc(&req->refs);
773 req->result = res;
774 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700775 }
776}
777
Jens Axboe78e19bb2019-11-06 15:21:34 -0700778static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700779{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700780 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700781 unsigned long flags;
782
783 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700784 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700785 io_commit_cqring(ctx);
786 spin_unlock_irqrestore(&ctx->completion_lock, flags);
787
Jens Axboe8c838782019-03-12 15:48:16 -0600788 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700789}
790
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700791static inline bool io_is_fallback_req(struct io_kiocb *req)
792{
793 return req == (struct io_kiocb *)
794 ((unsigned long) req->ctx->fallback_req & ~1UL);
795}
796
797static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
798{
799 struct io_kiocb *req;
800
801 req = ctx->fallback_req;
802 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
803 return req;
804
805 return NULL;
806}
807
Jens Axboe2579f912019-01-09 09:10:43 -0700808static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
809 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700810{
Jens Axboefd6fab22019-03-14 16:30:06 -0600811 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700812 struct io_kiocb *req;
813
814 if (!percpu_ref_tryget(&ctx->refs))
815 return NULL;
816
Jens Axboe2579f912019-01-09 09:10:43 -0700817 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -0600818 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -0700819 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700820 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -0700821 } else if (!state->free_reqs) {
822 size_t sz;
823 int ret;
824
825 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -0600826 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
827
828 /*
829 * Bulk alloc is all-or-nothing. If we fail to get a batch,
830 * retry single alloc to be on the safe side.
831 */
832 if (unlikely(ret <= 0)) {
833 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
834 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700835 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -0600836 ret = 1;
837 }
Jens Axboe2579f912019-01-09 09:10:43 -0700838 state->free_reqs = ret - 1;
839 state->cur_req = 1;
840 req = state->reqs[0];
841 } else {
842 req = state->reqs[state->cur_req];
843 state->free_reqs--;
844 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700845 }
846
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700847got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700848 req->io = NULL;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300849 req->ring_file = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -0600850 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -0700851 req->ctx = ctx;
852 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -0600853 /* one is dropped after submission, the other at completion */
854 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -0600855 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -0600856 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -0700857 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700858fallback:
859 req = io_get_fallback_req(ctx);
860 if (req)
861 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +0300862 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700863 return NULL;
864}
865
Jens Axboedef596e2019-01-09 08:59:42 -0700866static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
867{
868 if (*nr) {
869 kmem_cache_free_bulk(req_cachep, *nr, reqs);
Pavel Begunkov6805b322019-10-08 02:18:42 +0300870 percpu_ref_put_many(&ctx->refs, *nr);
Jens Axboedef596e2019-01-09 08:59:42 -0700871 *nr = 0;
872 }
873}
874
Jens Axboe9e645e112019-05-10 16:07:28 -0600875static void __io_free_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700876{
Jens Axboefcb323c2019-10-24 12:39:47 -0600877 struct io_ring_ctx *ctx = req->ctx;
878
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700879 if (req->io)
880 kfree(req->io);
Jens Axboe09bb8392019-03-13 12:39:28 -0600881 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
882 fput(req->file);
Jens Axboefcb323c2019-10-24 12:39:47 -0600883 if (req->flags & REQ_F_INFLIGHT) {
884 unsigned long flags;
885
886 spin_lock_irqsave(&ctx->inflight_lock, flags);
887 list_del(&req->inflight_entry);
888 if (waitqueue_active(&ctx->inflight_wait))
889 wake_up(&ctx->inflight_wait);
890 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
891 }
892 percpu_ref_put(&ctx->refs);
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700893 if (likely(!io_is_fallback_req(req)))
894 kmem_cache_free(req_cachep, req);
895 else
896 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -0600897}
898
Jackie Liua197f662019-11-08 08:09:12 -0700899static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -0600900{
Jackie Liua197f662019-11-08 08:09:12 -0700901 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700902 int ret;
903
Jens Axboe2d283902019-12-04 11:08:05 -0700904 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -0700905 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700906 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -0700907 io_commit_cqring(ctx);
908 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +0800909 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -0700910 return true;
911 }
912
913 return false;
914}
915
Jens Axboeba816ad2019-09-28 11:36:45 -0600916static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -0600917{
Jens Axboe2665abf2019-11-05 12:40:47 -0700918 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700919 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -0600920
Jens Axboe4d7dd462019-11-20 13:03:52 -0700921 /* Already got next link */
922 if (req->flags & REQ_F_LINK_NEXT)
923 return;
924
Jens Axboe9e645e112019-05-10 16:07:28 -0600925 /*
926 * The list should never be empty when we are called here. But could
927 * potentially happen if the chain is messed up, check to be on the
928 * safe side.
929 */
Pavel Begunkov44932332019-12-05 16:16:35 +0300930 while (!list_empty(&req->link_list)) {
931 struct io_kiocb *nxt = list_first_entry(&req->link_list,
932 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700933
Pavel Begunkov44932332019-12-05 16:16:35 +0300934 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
935 (nxt->flags & REQ_F_TIMEOUT))) {
936 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700937 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700938 req->flags &= ~REQ_F_LINK_TIMEOUT;
939 continue;
940 }
Jens Axboe9e645e112019-05-10 16:07:28 -0600941
Pavel Begunkov44932332019-12-05 16:16:35 +0300942 list_del_init(&req->link_list);
943 if (!list_empty(&nxt->link_list))
944 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +0300945 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700946 break;
Jens Axboe9e645e112019-05-10 16:07:28 -0600947 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700948
Jens Axboe4d7dd462019-11-20 13:03:52 -0700949 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -0700950 if (wake_ev)
951 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600952}
953
954/*
955 * Called if REQ_F_LINK is set, and we fail the head request
956 */
957static void io_fail_links(struct io_kiocb *req)
958{
Jens Axboe2665abf2019-11-05 12:40:47 -0700959 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700960 unsigned long flags;
961
962 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -0600963
964 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +0300965 struct io_kiocb *link = list_first_entry(&req->link_list,
966 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -0600967
Pavel Begunkov44932332019-12-05 16:16:35 +0300968 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +0200969 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700970
971 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300972 link->sqe->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -0700973 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700974 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700975 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -0700976 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700977 }
Jens Axboe5d960722019-11-19 15:31:28 -0700978 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -0600979 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700980
981 io_commit_cqring(ctx);
982 spin_unlock_irqrestore(&ctx->completion_lock, flags);
983 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600984}
985
Jens Axboe4d7dd462019-11-20 13:03:52 -0700986static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -0600987{
Jens Axboe4d7dd462019-11-20 13:03:52 -0700988 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -0700989 return;
Jens Axboe2665abf2019-11-05 12:40:47 -0700990
Jens Axboe9e645e112019-05-10 16:07:28 -0600991 /*
992 * If LINK is set, we have dependent requests in this chain. If we
993 * didn't fail this request, queue the first one up, moving any other
994 * dependencies to the next request. In case of failure, fail the rest
995 * of the chain.
996 */
Jens Axboe2665abf2019-11-05 12:40:47 -0700997 if (req->flags & REQ_F_FAIL_LINK) {
998 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -0700999 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1000 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001001 struct io_ring_ctx *ctx = req->ctx;
1002 unsigned long flags;
1003
1004 /*
1005 * If this is a timeout link, we could be racing with the
1006 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001007 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001008 */
1009 spin_lock_irqsave(&ctx->completion_lock, flags);
1010 io_req_link_next(req, nxt);
1011 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1012 } else {
1013 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001014 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001015}
Jens Axboe9e645e112019-05-10 16:07:28 -06001016
Jackie Liuc69f8db2019-11-09 11:00:08 +08001017static void io_free_req(struct io_kiocb *req)
1018{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001019 struct io_kiocb *nxt = NULL;
1020
1021 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001022 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001023
1024 if (nxt)
1025 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001026}
1027
Jens Axboeba816ad2019-09-28 11:36:45 -06001028/*
1029 * Drop reference to request, return next in chain (if there is one) if this
1030 * was the last reference to this request.
1031 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001032__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001033static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001034{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001035 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001036
Jens Axboee65ef562019-03-12 10:16:44 -06001037 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001038 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001039}
1040
Jens Axboe2b188cc2019-01-07 10:46:33 -07001041static void io_put_req(struct io_kiocb *req)
1042{
Jens Axboedef596e2019-01-09 08:59:42 -07001043 if (refcount_dec_and_test(&req->refs))
1044 io_free_req(req);
1045}
1046
Jens Axboe978db572019-11-14 22:39:04 -07001047/*
1048 * Must only be used if we don't need to care about links, usually from
1049 * within the completion handling itself.
1050 */
1051static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001052{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001053 /* drop both submit and complete references */
1054 if (refcount_sub_and_test(2, &req->refs))
1055 __io_free_req(req);
1056}
1057
Jens Axboe978db572019-11-14 22:39:04 -07001058static void io_double_put_req(struct io_kiocb *req)
1059{
1060 /* drop both submit and complete references */
1061 if (refcount_sub_and_test(2, &req->refs))
1062 io_free_req(req);
1063}
1064
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001065static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001066{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001067 struct io_rings *rings = ctx->rings;
1068
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001069 /*
1070 * noflush == true is from the waitqueue handler, just ensure we wake
1071 * up the task, and the next invocation will flush the entries. We
1072 * cannot safely to it from here.
1073 */
1074 if (noflush && !list_empty(&ctx->cq_overflow_list))
1075 return -1U;
1076
1077 io_cqring_overflow_flush(ctx, false);
1078
Jens Axboea3a0e432019-08-20 11:03:11 -06001079 /* See comment at the top of this file */
1080 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00001081 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001082}
1083
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001084static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1085{
1086 struct io_rings *rings = ctx->rings;
1087
1088 /* make sure SQ entry isn't read before tail */
1089 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1090}
1091
Jens Axboedef596e2019-01-09 08:59:42 -07001092/*
1093 * Find and free completed poll iocbs
1094 */
1095static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1096 struct list_head *done)
1097{
1098 void *reqs[IO_IOPOLL_BATCH];
1099 struct io_kiocb *req;
Jens Axboe09bb8392019-03-13 12:39:28 -06001100 int to_free;
Jens Axboedef596e2019-01-09 08:59:42 -07001101
Jens Axboe09bb8392019-03-13 12:39:28 -06001102 to_free = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001103 while (!list_empty(done)) {
1104 req = list_first_entry(done, struct io_kiocb, list);
1105 list_del(&req->list);
1106
Jens Axboe78e19bb2019-11-06 15:21:34 -07001107 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001108 (*nr_events)++;
1109
Jens Axboe09bb8392019-03-13 12:39:28 -06001110 if (refcount_dec_and_test(&req->refs)) {
1111 /* If we're not using fixed files, we have to pair the
1112 * completion part with the file put. Use regular
1113 * completions for those, only batch free for fixed
Jens Axboe9e645e112019-05-10 16:07:28 -06001114 * file and non-linked commands.
Jens Axboe09bb8392019-03-13 12:39:28 -06001115 */
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001116 if (((req->flags & (REQ_F_FIXED_FILE|REQ_F_LINK)) ==
1117 REQ_F_FIXED_FILE) && !io_is_fallback_req(req) &&
1118 !req->io) {
Jens Axboe09bb8392019-03-13 12:39:28 -06001119 reqs[to_free++] = req;
1120 if (to_free == ARRAY_SIZE(reqs))
1121 io_free_req_many(ctx, reqs, &to_free);
Jens Axboe6b063142019-01-10 22:13:58 -07001122 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001123 io_free_req(req);
Jens Axboe6b063142019-01-10 22:13:58 -07001124 }
Jens Axboe9a56a232019-01-09 09:06:50 -07001125 }
Jens Axboedef596e2019-01-09 08:59:42 -07001126 }
Jens Axboedef596e2019-01-09 08:59:42 -07001127
Jens Axboe09bb8392019-03-13 12:39:28 -06001128 io_commit_cqring(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07001129 io_free_req_many(ctx, reqs, &to_free);
1130}
1131
1132static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1133 long min)
1134{
1135 struct io_kiocb *req, *tmp;
1136 LIST_HEAD(done);
1137 bool spin;
1138 int ret;
1139
1140 /*
1141 * Only spin for completions if we don't have multiple devices hanging
1142 * off our complete list, and we're under the requested amount.
1143 */
1144 spin = !ctx->poll_multi_file && *nr_events < min;
1145
1146 ret = 0;
1147 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
1148 struct kiocb *kiocb = &req->rw;
1149
1150 /*
1151 * Move completed entries to our local list. If we find a
1152 * request that requires polling, break out and complete
1153 * the done list first, if we have entries there.
1154 */
1155 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1156 list_move_tail(&req->list, &done);
1157 continue;
1158 }
1159 if (!list_empty(&done))
1160 break;
1161
1162 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1163 if (ret < 0)
1164 break;
1165
1166 if (ret && spin)
1167 spin = false;
1168 ret = 0;
1169 }
1170
1171 if (!list_empty(&done))
1172 io_iopoll_complete(ctx, nr_events, &done);
1173
1174 return ret;
1175}
1176
1177/*
1178 * Poll for a mininum of 'min' events. Note that if min == 0 we consider that a
1179 * non-spinning poll check - we'll still enter the driver poll loop, but only
1180 * as a non-spinning completion check.
1181 */
1182static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1183 long min)
1184{
Jens Axboe08f54392019-08-21 22:19:11 -06001185 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001186 int ret;
1187
1188 ret = io_do_iopoll(ctx, nr_events, min);
1189 if (ret < 0)
1190 return ret;
1191 if (!min || *nr_events >= min)
1192 return 0;
1193 }
1194
1195 return 1;
1196}
1197
1198/*
1199 * We can't just wait for polled events to come to us, we have to actively
1200 * find and complete them.
1201 */
1202static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1203{
1204 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1205 return;
1206
1207 mutex_lock(&ctx->uring_lock);
1208 while (!list_empty(&ctx->poll_list)) {
1209 unsigned int nr_events = 0;
1210
1211 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001212
1213 /*
1214 * Ensure we allow local-to-the-cpu processing to take place,
1215 * in this case we need to ensure that we reap all events.
1216 */
1217 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001218 }
1219 mutex_unlock(&ctx->uring_lock);
1220}
1221
Jens Axboe2b2ed972019-10-25 10:06:15 -06001222static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1223 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001224{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001225 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001226
1227 do {
1228 int tmin = 0;
1229
Jens Axboe500f9fb2019-08-19 12:15:59 -06001230 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001231 * Don't enter poll loop if we already have events pending.
1232 * If we do, we can potentially be spinning for commands that
1233 * already triggered a CQE (eg in error).
1234 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001235 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001236 break;
1237
1238 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001239 * If a submit got punted to a workqueue, we can have the
1240 * application entering polling for a command before it gets
1241 * issued. That app will hold the uring_lock for the duration
1242 * of the poll right here, so we need to take a breather every
1243 * now and then to ensure that the issue has a chance to add
1244 * the poll to the issued list. Otherwise we can spin here
1245 * forever, while the workqueue is stuck trying to acquire the
1246 * very same mutex.
1247 */
1248 if (!(++iters & 7)) {
1249 mutex_unlock(&ctx->uring_lock);
1250 mutex_lock(&ctx->uring_lock);
1251 }
1252
Jens Axboedef596e2019-01-09 08:59:42 -07001253 if (*nr_events < min)
1254 tmin = min - *nr_events;
1255
1256 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1257 if (ret <= 0)
1258 break;
1259 ret = 0;
1260 } while (min && !*nr_events && !need_resched());
1261
Jens Axboe2b2ed972019-10-25 10:06:15 -06001262 return ret;
1263}
1264
1265static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1266 long min)
1267{
1268 int ret;
1269
1270 /*
1271 * We disallow the app entering submit/complete with polling, but we
1272 * still need to lock the ring to prevent racing with polled issue
1273 * that got punted to a workqueue.
1274 */
1275 mutex_lock(&ctx->uring_lock);
1276 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001277 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001278 return ret;
1279}
1280
Jens Axboe491381ce2019-10-17 09:20:46 -06001281static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001282{
Jens Axboe491381ce2019-10-17 09:20:46 -06001283 /*
1284 * Tell lockdep we inherited freeze protection from submission
1285 * thread.
1286 */
1287 if (req->flags & REQ_F_ISREG) {
1288 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001289
Jens Axboe491381ce2019-10-17 09:20:46 -06001290 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001291 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001292 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001293}
1294
Jens Axboeba816ad2019-09-28 11:36:45 -06001295static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001296{
1297 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1298
Jens Axboe491381ce2019-10-17 09:20:46 -06001299 if (kiocb->ki_flags & IOCB_WRITE)
1300 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001301
Jens Axboe9e645e112019-05-10 16:07:28 -06001302 if ((req->flags & REQ_F_LINK) && res != req->result)
1303 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001304 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001305}
1306
1307static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1308{
1309 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1310
1311 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001312 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001313}
1314
Jens Axboeba816ad2019-09-28 11:36:45 -06001315static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1316{
1317 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001318 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001319
1320 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001321 io_put_req_find_next(req, &nxt);
1322
1323 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001324}
1325
Jens Axboedef596e2019-01-09 08:59:42 -07001326static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1327{
1328 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1329
Jens Axboe491381ce2019-10-17 09:20:46 -06001330 if (kiocb->ki_flags & IOCB_WRITE)
1331 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001332
Jens Axboe9e645e112019-05-10 16:07:28 -06001333 if ((req->flags & REQ_F_LINK) && res != req->result)
1334 req->flags |= REQ_F_FAIL_LINK;
1335 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001336 if (res != -EAGAIN)
1337 req->flags |= REQ_F_IOPOLL_COMPLETED;
1338}
1339
1340/*
1341 * After the iocb has been issued, it's safe to be found on the poll list.
1342 * Adding the kiocb to the list AFTER submission ensures that we don't
1343 * find it from a io_iopoll_getevents() thread before the issuer is done
1344 * accessing the kiocb cookie.
1345 */
1346static void io_iopoll_req_issued(struct io_kiocb *req)
1347{
1348 struct io_ring_ctx *ctx = req->ctx;
1349
1350 /*
1351 * Track whether we have multiple files in our lists. This will impact
1352 * how we do polling eventually, not spinning if we're on potentially
1353 * different devices.
1354 */
1355 if (list_empty(&ctx->poll_list)) {
1356 ctx->poll_multi_file = false;
1357 } else if (!ctx->poll_multi_file) {
1358 struct io_kiocb *list_req;
1359
1360 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1361 list);
1362 if (list_req->rw.ki_filp != req->rw.ki_filp)
1363 ctx->poll_multi_file = true;
1364 }
1365
1366 /*
1367 * For fast devices, IO may have already completed. If it has, add
1368 * it to the front so we find it first.
1369 */
1370 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1371 list_add(&req->list, &ctx->poll_list);
1372 else
1373 list_add_tail(&req->list, &ctx->poll_list);
1374}
1375
Jens Axboe3d6770f2019-04-13 11:50:54 -06001376static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001377{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001378 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001379 int diff = state->has_refs - state->used_refs;
1380
1381 if (diff)
1382 fput_many(state->file, diff);
1383 state->file = NULL;
1384 }
1385}
1386
1387/*
1388 * Get as many references to a file as we have IOs left in this submission,
1389 * assuming most submissions are for one file, or at least that each file
1390 * has more than one submission.
1391 */
1392static struct file *io_file_get(struct io_submit_state *state, int fd)
1393{
1394 if (!state)
1395 return fget(fd);
1396
1397 if (state->file) {
1398 if (state->fd == fd) {
1399 state->used_refs++;
1400 state->ios_left--;
1401 return state->file;
1402 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001403 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001404 }
1405 state->file = fget_many(fd, state->ios_left);
1406 if (!state->file)
1407 return NULL;
1408
1409 state->fd = fd;
1410 state->has_refs = state->ios_left;
1411 state->used_refs = 1;
1412 state->ios_left--;
1413 return state->file;
1414}
1415
Jens Axboe2b188cc2019-01-07 10:46:33 -07001416/*
1417 * If we tracked the file through the SCM inflight mechanism, we could support
1418 * any file. For now, just ensure that anything potentially problematic is done
1419 * inline.
1420 */
1421static bool io_file_supports_async(struct file *file)
1422{
1423 umode_t mode = file_inode(file)->i_mode;
1424
1425 if (S_ISBLK(mode) || S_ISCHR(mode))
1426 return true;
1427 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1428 return true;
1429
1430 return false;
1431}
1432
Pavel Begunkov267bc902019-11-07 01:41:08 +03001433static int io_prep_rw(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001434{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001435 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboedef596e2019-01-09 08:59:42 -07001436 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001437 struct kiocb *kiocb = &req->rw;
Jens Axboe09bb8392019-03-13 12:39:28 -06001438 unsigned ioprio;
1439 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001440
Jens Axboe09bb8392019-03-13 12:39:28 -06001441 if (!req->file)
1442 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001443
Jens Axboe491381ce2019-10-17 09:20:46 -06001444 if (S_ISREG(file_inode(req->file)->i_mode))
1445 req->flags |= REQ_F_ISREG;
1446
Jens Axboe2b188cc2019-01-07 10:46:33 -07001447 kiocb->ki_pos = READ_ONCE(sqe->off);
1448 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1449 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1450
1451 ioprio = READ_ONCE(sqe->ioprio);
1452 if (ioprio) {
1453 ret = ioprio_check_cap(ioprio);
1454 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001455 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001456
1457 kiocb->ki_ioprio = ioprio;
1458 } else
1459 kiocb->ki_ioprio = get_current_ioprio();
1460
1461 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1462 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001463 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001464
1465 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001466 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1467 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001468 req->flags |= REQ_F_NOWAIT;
1469
1470 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001471 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001472
Jens Axboedef596e2019-01-09 08:59:42 -07001473 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001474 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1475 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001476 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001477
Jens Axboedef596e2019-01-09 08:59:42 -07001478 kiocb->ki_flags |= IOCB_HIPRI;
1479 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001480 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001481 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001482 if (kiocb->ki_flags & IOCB_HIPRI)
1483 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001484 kiocb->ki_complete = io_complete_rw;
1485 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001486 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001487}
1488
1489static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1490{
1491 switch (ret) {
1492 case -EIOCBQUEUED:
1493 break;
1494 case -ERESTARTSYS:
1495 case -ERESTARTNOINTR:
1496 case -ERESTARTNOHAND:
1497 case -ERESTART_RESTARTBLOCK:
1498 /*
1499 * We can't just restart the syscall, since previously
1500 * submitted sqes may already be in progress. Just fail this
1501 * IO with EINTR.
1502 */
1503 ret = -EINTR;
1504 /* fall through */
1505 default:
1506 kiocb->ki_complete(kiocb, ret, 0);
1507 }
1508}
1509
Jens Axboeba816ad2019-09-28 11:36:45 -06001510static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1511 bool in_async)
1512{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001513 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001514 *nxt = __io_complete_rw(kiocb, ret);
1515 else
1516 io_rw_done(kiocb, ret);
1517}
1518
Pavel Begunkov7d009162019-11-25 23:14:40 +03001519static ssize_t io_import_fixed(struct io_ring_ctx *ctx, int rw,
1520 const struct io_uring_sqe *sqe,
1521 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001522{
1523 size_t len = READ_ONCE(sqe->len);
1524 struct io_mapped_ubuf *imu;
1525 unsigned index, buf_index;
1526 size_t offset;
1527 u64 buf_addr;
1528
1529 /* attempt to use fixed buffers without having provided iovecs */
1530 if (unlikely(!ctx->user_bufs))
1531 return -EFAULT;
1532
1533 buf_index = READ_ONCE(sqe->buf_index);
1534 if (unlikely(buf_index >= ctx->nr_user_bufs))
1535 return -EFAULT;
1536
1537 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1538 imu = &ctx->user_bufs[index];
1539 buf_addr = READ_ONCE(sqe->addr);
1540
1541 /* overflow */
1542 if (buf_addr + len < buf_addr)
1543 return -EFAULT;
1544 /* not inside the mapped region */
1545 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1546 return -EFAULT;
1547
1548 /*
1549 * May not be a start of buffer, set size appropriately
1550 * and advance us to the beginning.
1551 */
1552 offset = buf_addr - imu->ubuf;
1553 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001554
1555 if (offset) {
1556 /*
1557 * Don't use iov_iter_advance() here, as it's really slow for
1558 * using the latter parts of a big fixed buffer - it iterates
1559 * over each segment manually. We can cheat a bit here, because
1560 * we know that:
1561 *
1562 * 1) it's a BVEC iter, we set it up
1563 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1564 * first and last bvec
1565 *
1566 * So just find our index, and adjust the iterator afterwards.
1567 * If the offset is within the first bvec (or the whole first
1568 * bvec, just use iov_iter_advance(). This makes it easier
1569 * since we can just skip the first segment, which may not
1570 * be PAGE_SIZE aligned.
1571 */
1572 const struct bio_vec *bvec = imu->bvec;
1573
1574 if (offset <= bvec->bv_len) {
1575 iov_iter_advance(iter, offset);
1576 } else {
1577 unsigned long seg_skip;
1578
1579 /* skip first vec */
1580 offset -= bvec->bv_len;
1581 seg_skip = 1 + (offset >> PAGE_SHIFT);
1582
1583 iter->bvec = bvec + seg_skip;
1584 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001585 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001586 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001587 }
1588 }
1589
Jens Axboe5e559562019-11-13 16:12:46 -07001590 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001591}
1592
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001593static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1594 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001595{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001596 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001597 void __user *buf = u64_to_user_ptr(READ_ONCE(sqe->addr));
1598 size_t sqe_len = READ_ONCE(sqe->len);
Jens Axboeedafcce2019-01-09 09:16:05 -07001599 u8 opcode;
1600
1601 /*
1602 * We're reading ->opcode for the second time, but the first read
1603 * doesn't care whether it's _FIXED or not, so it doesn't matter
1604 * whether ->opcode changes concurrently. The first read does care
1605 * about whether it is a READ or a WRITE, so we don't trust this read
1606 * for that purpose and instead let the caller pass in the read/write
1607 * flag.
1608 */
1609 opcode = READ_ONCE(sqe->opcode);
Pavel Begunkov7d009162019-11-25 23:14:40 +03001610 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001611 *iovec = NULL;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001612 return io_import_fixed(req->ctx, rw, sqe, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001613 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001614
Jens Axboef67676d2019-12-02 11:03:47 -07001615 if (req->io) {
1616 struct io_async_rw *iorw = &req->io->rw;
1617
1618 *iovec = iorw->iov;
1619 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1620 if (iorw->iov == iorw->fast_iov)
1621 *iovec = NULL;
1622 return iorw->size;
1623 }
1624
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001625 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001626 return -EFAULT;
1627
1628#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001629 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001630 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1631 iovec, iter);
1632#endif
1633
1634 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1635}
1636
Jens Axboe32960612019-09-23 11:05:34 -06001637/*
1638 * For files that don't have ->read_iter() and ->write_iter(), handle them
1639 * by looping over ->read() or ->write() manually.
1640 */
1641static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1642 struct iov_iter *iter)
1643{
1644 ssize_t ret = 0;
1645
1646 /*
1647 * Don't support polled IO through this interface, and we can't
1648 * support non-blocking either. For the latter, this just causes
1649 * the kiocb to be handled from an async context.
1650 */
1651 if (kiocb->ki_flags & IOCB_HIPRI)
1652 return -EOPNOTSUPP;
1653 if (kiocb->ki_flags & IOCB_NOWAIT)
1654 return -EAGAIN;
1655
1656 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001657 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06001658 ssize_t nr;
1659
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001660 if (!iov_iter_is_bvec(iter)) {
1661 iovec = iov_iter_iovec(iter);
1662 } else {
1663 /* fixed buffers import bvec */
1664 iovec.iov_base = kmap(iter->bvec->bv_page)
1665 + iter->iov_offset;
1666 iovec.iov_len = min(iter->count,
1667 iter->bvec->bv_len - iter->iov_offset);
1668 }
1669
Jens Axboe32960612019-09-23 11:05:34 -06001670 if (rw == READ) {
1671 nr = file->f_op->read(file, iovec.iov_base,
1672 iovec.iov_len, &kiocb->ki_pos);
1673 } else {
1674 nr = file->f_op->write(file, iovec.iov_base,
1675 iovec.iov_len, &kiocb->ki_pos);
1676 }
1677
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001678 if (iov_iter_is_bvec(iter))
1679 kunmap(iter->bvec->bv_page);
1680
Jens Axboe32960612019-09-23 11:05:34 -06001681 if (nr < 0) {
1682 if (!ret)
1683 ret = nr;
1684 break;
1685 }
1686 ret += nr;
1687 if (nr != iovec.iov_len)
1688 break;
1689 iov_iter_advance(iter, nr);
1690 }
1691
1692 return ret;
1693}
1694
Jens Axboef67676d2019-12-02 11:03:47 -07001695static void io_req_map_io(struct io_kiocb *req, ssize_t io_size,
1696 struct iovec *iovec, struct iovec *fast_iov,
1697 struct iov_iter *iter)
1698{
1699 req->io->rw.nr_segs = iter->nr_segs;
1700 req->io->rw.size = io_size;
1701 req->io->rw.iov = iovec;
1702 if (!req->io->rw.iov) {
1703 req->io->rw.iov = req->io->rw.fast_iov;
1704 memcpy(req->io->rw.iov, fast_iov,
1705 sizeof(struct iovec) * iter->nr_segs);
1706 }
1707}
1708
1709static int io_setup_async_io(struct io_kiocb *req, ssize_t io_size,
1710 struct iovec *iovec, struct iovec *fast_iov,
1711 struct iov_iter *iter)
1712{
1713 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
1714 if (req->io) {
1715 io_req_map_io(req, io_size, iovec, fast_iov, iter);
1716 memcpy(&req->io->sqe, req->sqe, sizeof(req->io->sqe));
1717 req->sqe = &req->io->sqe;
1718 return 0;
1719 }
1720
1721 return -ENOMEM;
1722}
1723
1724static int io_read_prep(struct io_kiocb *req, struct iovec **iovec,
1725 struct iov_iter *iter, bool force_nonblock)
1726{
1727 ssize_t ret;
1728
1729 ret = io_prep_rw(req, force_nonblock);
1730 if (ret)
1731 return ret;
1732
1733 if (unlikely(!(req->file->f_mode & FMODE_READ)))
1734 return -EBADF;
1735
1736 return io_import_iovec(READ, req, iovec, iter);
1737}
1738
Pavel Begunkov267bc902019-11-07 01:41:08 +03001739static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001740 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001741{
1742 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1743 struct kiocb *kiocb = &req->rw;
1744 struct iov_iter iter;
1745 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001746 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001747 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001748
Jens Axboef67676d2019-12-02 11:03:47 -07001749 if (!req->io) {
1750 ret = io_read_prep(req, &iovec, &iter, force_nonblock);
1751 if (ret < 0)
1752 return ret;
1753 } else {
1754 ret = io_import_iovec(READ, req, &iovec, &iter);
1755 if (ret < 0)
1756 return ret;
1757 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001758
Jens Axboef67676d2019-12-02 11:03:47 -07001759 file = req->file;
1760 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001761 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001762 req->result = io_size;
1763
1764 /*
1765 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1766 * we know to async punt it even if it was opened O_NONBLOCK
1767 */
1768 if (force_nonblock && !io_file_supports_async(file)) {
1769 req->flags |= REQ_F_MUST_PUNT;
1770 goto copy_iov;
1771 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001772
Jens Axboe31b51512019-01-18 22:56:34 -07001773 iov_count = iov_iter_count(&iter);
1774 ret = rw_verify_area(READ, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001775 if (!ret) {
1776 ssize_t ret2;
1777
Jens Axboe32960612019-09-23 11:05:34 -06001778 if (file->f_op->read_iter)
1779 ret2 = call_read_iter(file, kiocb, &iter);
1780 else
1781 ret2 = loop_rw_iter(READ, file, kiocb, &iter);
1782
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001783 /*
1784 * In case of a short read, punt to async. This can happen
1785 * if we have data partially cached. Alternatively we can
1786 * return the short read, in which case the application will
1787 * need to issue another SQE and wait for it. That SQE will
1788 * need async punt anyway, so it's more efficient to do it
1789 * here.
1790 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001791 if (force_nonblock && !(req->flags & REQ_F_NOWAIT) &&
1792 (req->flags & REQ_F_ISREG) &&
Jens Axboef67676d2019-12-02 11:03:47 -07001793 ret2 > 0 && ret2 < io_size)
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001794 ret2 = -EAGAIN;
1795 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07001796 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001797 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001798 } else {
1799copy_iov:
1800 ret = io_setup_async_io(req, io_size, iovec,
1801 inline_vecs, &iter);
1802 if (ret)
1803 goto out_free;
1804 return -EAGAIN;
1805 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001806 }
Jens Axboef67676d2019-12-02 11:03:47 -07001807out_free:
Jens Axboe2b188cc2019-01-07 10:46:33 -07001808 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001809 return ret;
1810}
1811
Jens Axboef67676d2019-12-02 11:03:47 -07001812static int io_write_prep(struct io_kiocb *req, struct iovec **iovec,
1813 struct iov_iter *iter, bool force_nonblock)
1814{
1815 ssize_t ret;
1816
1817 ret = io_prep_rw(req, force_nonblock);
1818 if (ret)
1819 return ret;
1820
1821 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
1822 return -EBADF;
1823
1824 return io_import_iovec(WRITE, req, iovec, iter);
1825}
1826
Pavel Begunkov267bc902019-11-07 01:41:08 +03001827static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001828 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001829{
1830 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1831 struct kiocb *kiocb = &req->rw;
1832 struct iov_iter iter;
1833 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001834 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001835 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001836
Jens Axboef67676d2019-12-02 11:03:47 -07001837 if (!req->io) {
1838 ret = io_write_prep(req, &iovec, &iter, force_nonblock);
1839 if (ret < 0)
1840 return ret;
1841 } else {
1842 ret = io_import_iovec(WRITE, req, &iovec, &iter);
1843 if (ret < 0)
1844 return ret;
1845 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001846
Jens Axboe2b188cc2019-01-07 10:46:33 -07001847 file = kiocb->ki_filp;
Jens Axboef67676d2019-12-02 11:03:47 -07001848 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001849 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001850 req->result = io_size;
1851
1852 /*
1853 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1854 * we know to async punt it even if it was opened O_NONBLOCK
1855 */
1856 if (force_nonblock && !io_file_supports_async(req->file)) {
1857 req->flags |= REQ_F_MUST_PUNT;
1858 goto copy_iov;
1859 }
1860
1861 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT))
1862 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06001863
Jens Axboe31b51512019-01-18 22:56:34 -07001864 iov_count = iov_iter_count(&iter);
Jens Axboe31b51512019-01-18 22:56:34 -07001865 ret = rw_verify_area(WRITE, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001866 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01001867 ssize_t ret2;
1868
Jens Axboe2b188cc2019-01-07 10:46:33 -07001869 /*
1870 * Open-code file_start_write here to grab freeze protection,
1871 * which will be released by another thread in
1872 * io_complete_rw(). Fool lockdep by telling it the lock got
1873 * released so that it doesn't complain about the held lock when
1874 * we return to userspace.
1875 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001876 if (req->flags & REQ_F_ISREG) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001877 __sb_start_write(file_inode(file)->i_sb,
1878 SB_FREEZE_WRITE, true);
1879 __sb_writers_release(file_inode(file)->i_sb,
1880 SB_FREEZE_WRITE);
1881 }
1882 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01001883
Jens Axboe32960612019-09-23 11:05:34 -06001884 if (file->f_op->write_iter)
1885 ret2 = call_write_iter(file, kiocb, &iter);
1886 else
1887 ret2 = loop_rw_iter(WRITE, file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07001888 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001889 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001890 } else {
1891copy_iov:
1892 ret = io_setup_async_io(req, io_size, iovec,
1893 inline_vecs, &iter);
1894 if (ret)
1895 goto out_free;
1896 return -EAGAIN;
1897 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001898 }
Jens Axboe31b51512019-01-18 22:56:34 -07001899out_free:
Jens Axboe2b188cc2019-01-07 10:46:33 -07001900 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001901 return ret;
1902}
1903
1904/*
1905 * IORING_OP_NOP just posts a completion event, nothing else.
1906 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07001907static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001908{
1909 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001910
Jens Axboedef596e2019-01-09 08:59:42 -07001911 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1912 return -EINVAL;
1913
Jens Axboe78e19bb2019-11-06 15:21:34 -07001914 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06001915 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001916 return 0;
1917}
1918
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001919static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1920{
Jens Axboe6b063142019-01-10 22:13:58 -07001921 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001922
Jens Axboe09bb8392019-03-13 12:39:28 -06001923 if (!req->file)
1924 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001925
Jens Axboe6b063142019-01-10 22:13:58 -07001926 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07001927 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07001928 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001929 return -EINVAL;
1930
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001931 return 0;
1932}
1933
1934static int io_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001935 struct io_kiocb **nxt, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001936{
1937 loff_t sqe_off = READ_ONCE(sqe->off);
1938 loff_t sqe_len = READ_ONCE(sqe->len);
1939 loff_t end = sqe_off + sqe_len;
1940 unsigned fsync_flags;
1941 int ret;
1942
1943 fsync_flags = READ_ONCE(sqe->fsync_flags);
1944 if (unlikely(fsync_flags & ~IORING_FSYNC_DATASYNC))
1945 return -EINVAL;
1946
1947 ret = io_prep_fsync(req, sqe);
1948 if (ret)
1949 return ret;
1950
1951 /* fsync always requires a blocking context */
1952 if (force_nonblock)
1953 return -EAGAIN;
1954
1955 ret = vfs_fsync_range(req->rw.ki_filp, sqe_off,
1956 end > 0 ? end : LLONG_MAX,
1957 fsync_flags & IORING_FSYNC_DATASYNC);
1958
Jens Axboe9e645e112019-05-10 16:07:28 -06001959 if (ret < 0 && (req->flags & REQ_F_LINK))
1960 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001961 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001962 io_put_req_find_next(req, nxt);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001963 return 0;
1964}
1965
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001966static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1967{
1968 struct io_ring_ctx *ctx = req->ctx;
1969 int ret = 0;
1970
1971 if (!req->file)
1972 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001973
1974 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1975 return -EINVAL;
1976 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
1977 return -EINVAL;
1978
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001979 return ret;
1980}
1981
1982static int io_sync_file_range(struct io_kiocb *req,
1983 const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001984 struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001985 bool force_nonblock)
1986{
1987 loff_t sqe_off;
1988 loff_t sqe_len;
1989 unsigned flags;
1990 int ret;
1991
1992 ret = io_prep_sfr(req, sqe);
1993 if (ret)
1994 return ret;
1995
1996 /* sync_file_range always requires a blocking context */
1997 if (force_nonblock)
1998 return -EAGAIN;
1999
2000 sqe_off = READ_ONCE(sqe->off);
2001 sqe_len = READ_ONCE(sqe->len);
2002 flags = READ_ONCE(sqe->sync_range_flags);
2003
2004 ret = sync_file_range(req->rw.ki_filp, sqe_off, sqe_len, flags);
2005
Jens Axboe9e645e112019-05-10 16:07:28 -06002006 if (ret < 0 && (req->flags & REQ_F_LINK))
2007 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07002008 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002009 io_put_req_find_next(req, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002010 return 0;
2011}
2012
Jens Axboe03b12302019-12-02 18:50:25 -07002013static int io_sendmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002014{
Jens Axboe03b12302019-12-02 18:50:25 -07002015#if defined(CONFIG_NET)
2016 const struct io_uring_sqe *sqe = req->sqe;
2017 struct user_msghdr __user *msg;
2018 unsigned flags;
2019
2020 flags = READ_ONCE(sqe->msg_flags);
2021 msg = (struct user_msghdr __user *)(unsigned long) READ_ONCE(sqe->addr);
2022 return sendmsg_copy_msghdr(&io->msg.msg, msg, flags, &io->msg.iov);
2023#else
2024 return 0;
2025#endif
2026}
2027
2028static int io_sendmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2029 struct io_kiocb **nxt, bool force_nonblock)
2030{
2031#if defined(CONFIG_NET)
2032 struct socket *sock;
2033 int ret;
2034
2035 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2036 return -EINVAL;
2037
2038 sock = sock_from_file(req->file, &ret);
2039 if (sock) {
2040 struct io_async_ctx io, *copy;
2041 struct sockaddr_storage addr;
2042 struct msghdr *kmsg;
2043 unsigned flags;
2044
2045 flags = READ_ONCE(sqe->msg_flags);
2046 if (flags & MSG_DONTWAIT)
2047 req->flags |= REQ_F_NOWAIT;
2048 else if (force_nonblock)
2049 flags |= MSG_DONTWAIT;
2050
2051 if (req->io) {
2052 kmsg = &req->io->msg.msg;
2053 kmsg->msg_name = &addr;
2054 } else {
2055 kmsg = &io.msg.msg;
2056 kmsg->msg_name = &addr;
2057 io.msg.iov = io.msg.fast_iov;
2058 ret = io_sendmsg_prep(req, &io);
2059 if (ret)
2060 goto out;
2061 }
2062
2063 ret = __sys_sendmsg_sock(sock, kmsg, flags);
2064 if (force_nonblock && ret == -EAGAIN) {
2065 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
2066 if (!copy) {
2067 ret = -ENOMEM;
2068 goto out;
2069 }
2070 memcpy(&copy->msg, &io.msg, sizeof(copy->msg));
2071 req->io = copy;
2072 memcpy(&req->io->sqe, req->sqe, sizeof(*req->sqe));
2073 req->sqe = &req->io->sqe;
2074 return ret;
2075 }
2076 if (ret == -ERESTARTSYS)
2077 ret = -EINTR;
2078 }
2079
2080out:
2081 io_cqring_add_event(req, ret);
2082 if (ret < 0 && (req->flags & REQ_F_LINK))
2083 req->flags |= REQ_F_FAIL_LINK;
2084 io_put_req_find_next(req, nxt);
2085 return 0;
2086#else
2087 return -EOPNOTSUPP;
2088#endif
2089}
2090
2091static int io_recvmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
2092{
2093#if defined(CONFIG_NET)
2094 const struct io_uring_sqe *sqe = req->sqe;
2095 struct user_msghdr __user *msg;
2096 unsigned flags;
2097
2098 flags = READ_ONCE(sqe->msg_flags);
2099 msg = (struct user_msghdr __user *)(unsigned long) READ_ONCE(sqe->addr);
2100 return recvmsg_copy_msghdr(&io->msg.msg, msg, flags, &io->msg.uaddr,
2101 &io->msg.iov);
2102#else
2103 return 0;
2104#endif
2105}
2106
2107static int io_recvmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2108 struct io_kiocb **nxt, bool force_nonblock)
2109{
2110#if defined(CONFIG_NET)
Jens Axboe0fa03c62019-04-19 13:34:07 -06002111 struct socket *sock;
2112 int ret;
2113
2114 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2115 return -EINVAL;
2116
2117 sock = sock_from_file(req->file, &ret);
2118 if (sock) {
2119 struct user_msghdr __user *msg;
Jens Axboe03b12302019-12-02 18:50:25 -07002120 struct io_async_ctx io, *copy;
2121 struct sockaddr_storage addr;
2122 struct msghdr *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002123 unsigned flags;
2124
2125 flags = READ_ONCE(sqe->msg_flags);
2126 if (flags & MSG_DONTWAIT)
2127 req->flags |= REQ_F_NOWAIT;
2128 else if (force_nonblock)
2129 flags |= MSG_DONTWAIT;
2130
2131 msg = (struct user_msghdr __user *) (unsigned long)
2132 READ_ONCE(sqe->addr);
Jens Axboe03b12302019-12-02 18:50:25 -07002133 if (req->io) {
2134 kmsg = &req->io->msg.msg;
2135 kmsg->msg_name = &addr;
2136 } else {
2137 kmsg = &io.msg.msg;
2138 kmsg->msg_name = &addr;
2139 io.msg.iov = io.msg.fast_iov;
2140 ret = io_recvmsg_prep(req, &io);
2141 if (ret)
2142 goto out;
2143 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06002144
Jens Axboe03b12302019-12-02 18:50:25 -07002145 ret = __sys_recvmsg_sock(sock, kmsg, msg, io.msg.uaddr, flags);
2146 if (force_nonblock && ret == -EAGAIN) {
2147 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
2148 if (!copy) {
2149 ret = -ENOMEM;
2150 goto out;
2151 }
2152 memcpy(copy, &io, sizeof(*copy));
2153 req->io = copy;
2154 memcpy(&req->io->sqe, req->sqe, sizeof(*req->sqe));
2155 req->sqe = &req->io->sqe;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002156 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002157 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07002158 if (ret == -ERESTARTSYS)
2159 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002160 }
2161
Jens Axboe03b12302019-12-02 18:50:25 -07002162out:
Jens Axboe78e19bb2019-11-06 15:21:34 -07002163 io_cqring_add_event(req, ret);
Jens Axboef1f40852019-11-05 20:33:16 -07002164 if (ret < 0 && (req->flags & REQ_F_LINK))
2165 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002166 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002167 return 0;
2168#else
2169 return -EOPNOTSUPP;
2170#endif
2171}
2172
Jens Axboe17f2fe32019-10-17 14:42:58 -06002173static int io_accept(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2174 struct io_kiocb **nxt, bool force_nonblock)
2175{
2176#if defined(CONFIG_NET)
2177 struct sockaddr __user *addr;
2178 int __user *addr_len;
2179 unsigned file_flags;
2180 int flags, ret;
2181
2182 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2183 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05002184 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002185 return -EINVAL;
2186
2187 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
2188 addr_len = (int __user *) (unsigned long) READ_ONCE(sqe->addr2);
2189 flags = READ_ONCE(sqe->accept_flags);
2190 file_flags = force_nonblock ? O_NONBLOCK : 0;
2191
2192 ret = __sys_accept4_file(req->file, file_flags, addr, addr_len, flags);
2193 if (ret == -EAGAIN && force_nonblock) {
2194 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2195 return -EAGAIN;
2196 }
Jens Axboe8e3cca12019-11-09 19:52:33 -07002197 if (ret == -ERESTARTSYS)
2198 ret = -EINTR;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002199 if (ret < 0 && (req->flags & REQ_F_LINK))
2200 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07002201 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002202 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002203 return 0;
2204#else
2205 return -EOPNOTSUPP;
2206#endif
2207}
2208
Jens Axboef499a022019-12-02 16:28:46 -07002209static int io_connect_prep(struct io_kiocb *req, struct io_async_ctx *io)
2210{
2211#if defined(CONFIG_NET)
2212 const struct io_uring_sqe *sqe = req->sqe;
2213 struct sockaddr __user *addr;
2214 int addr_len;
2215
2216 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
2217 addr_len = READ_ONCE(sqe->addr2);
2218 return move_addr_to_kernel(addr, addr_len, &io->connect.address);
2219#else
2220 return 0;
2221#endif
2222}
2223
Jens Axboef8e85cf2019-11-23 14:24:24 -07002224static int io_connect(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2225 struct io_kiocb **nxt, bool force_nonblock)
2226{
2227#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07002228 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002229 unsigned file_flags;
2230 int addr_len, ret;
2231
2232 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2233 return -EINVAL;
2234 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
2235 return -EINVAL;
2236
Jens Axboef8e85cf2019-11-23 14:24:24 -07002237 addr_len = READ_ONCE(sqe->addr2);
2238 file_flags = force_nonblock ? O_NONBLOCK : 0;
2239
Jens Axboef499a022019-12-02 16:28:46 -07002240 if (req->io) {
2241 io = req->io;
2242 } else {
2243 ret = io_connect_prep(req, &__io);
2244 if (ret)
2245 goto out;
2246 io = &__io;
2247 }
2248
2249 ret = __sys_connect_file(req->file, &io->connect.address, addr_len,
2250 file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07002251 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboef499a022019-12-02 16:28:46 -07002252 io = kmalloc(sizeof(*io), GFP_KERNEL);
2253 if (!io) {
2254 ret = -ENOMEM;
2255 goto out;
2256 }
2257 memcpy(&io->connect, &__io.connect, sizeof(io->connect));
2258 req->io = io;
2259 memcpy(&io->sqe, req->sqe, sizeof(*req->sqe));
2260 req->sqe = &io->sqe;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002261 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07002262 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07002263 if (ret == -ERESTARTSYS)
2264 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07002265out:
Jens Axboef8e85cf2019-11-23 14:24:24 -07002266 if (ret < 0 && (req->flags & REQ_F_LINK))
2267 req->flags |= REQ_F_FAIL_LINK;
2268 io_cqring_add_event(req, ret);
2269 io_put_req_find_next(req, nxt);
2270 return 0;
2271#else
2272 return -EOPNOTSUPP;
2273#endif
2274}
2275
Jens Axboe221c5eb2019-01-17 09:41:58 -07002276static void io_poll_remove_one(struct io_kiocb *req)
2277{
2278 struct io_poll_iocb *poll = &req->poll;
2279
2280 spin_lock(&poll->head->lock);
2281 WRITE_ONCE(poll->canceled, true);
Jens Axboee9444752019-11-26 15:02:04 -07002282 if (!list_empty(&poll->wait->entry)) {
2283 list_del_init(&poll->wait->entry);
Jackie Liua197f662019-11-08 08:09:12 -07002284 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002285 }
2286 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002287 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002288}
2289
2290static void io_poll_remove_all(struct io_ring_ctx *ctx)
2291{
Jens Axboe78076bb2019-12-04 19:56:40 -07002292 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002293 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07002294 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002295
2296 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002297 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
2298 struct hlist_head *list;
2299
2300 list = &ctx->cancel_hash[i];
2301 hlist_for_each_entry_safe(req, tmp, list, hash_node)
2302 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002303 }
2304 spin_unlock_irq(&ctx->completion_lock);
2305}
2306
Jens Axboe47f46762019-11-09 17:43:02 -07002307static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2308{
Jens Axboe78076bb2019-12-04 19:56:40 -07002309 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07002310 struct io_kiocb *req;
2311
Jens Axboe78076bb2019-12-04 19:56:40 -07002312 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
2313 hlist_for_each_entry(req, list, hash_node) {
2314 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07002315 io_poll_remove_one(req);
2316 return 0;
2317 }
Jens Axboe47f46762019-11-09 17:43:02 -07002318 }
2319
2320 return -ENOENT;
2321}
2322
Jens Axboe221c5eb2019-01-17 09:41:58 -07002323/*
2324 * Find a running poll command that matches one specified in sqe->addr,
2325 * and remove it if found.
2326 */
2327static int io_poll_remove(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2328{
2329 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07002330 int ret;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002331
2332 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2333 return -EINVAL;
2334 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2335 sqe->poll_events)
2336 return -EINVAL;
2337
2338 spin_lock_irq(&ctx->completion_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07002339 ret = io_poll_cancel(ctx, READ_ONCE(sqe->addr));
Jens Axboe221c5eb2019-01-17 09:41:58 -07002340 spin_unlock_irq(&ctx->completion_lock);
2341
Jens Axboe78e19bb2019-11-06 15:21:34 -07002342 io_cqring_add_event(req, ret);
Jens Axboef1f40852019-11-05 20:33:16 -07002343 if (ret < 0 && (req->flags & REQ_F_LINK))
2344 req->flags |= REQ_F_FAIL_LINK;
Jens Axboee65ef562019-03-12 10:16:44 -06002345 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002346 return 0;
2347}
2348
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002349static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002350{
Jackie Liua197f662019-11-08 08:09:12 -07002351 struct io_ring_ctx *ctx = req->ctx;
2352
Jens Axboe8c838782019-03-12 15:48:16 -06002353 req->poll.done = true;
Jens Axboee9444752019-11-26 15:02:04 -07002354 kfree(req->poll.wait);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002355 if (error)
2356 io_cqring_fill_event(req, error);
2357 else
2358 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06002359 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002360}
2361
Jens Axboe561fb042019-10-24 07:25:42 -06002362static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002363{
Jens Axboe561fb042019-10-24 07:25:42 -06002364 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002365 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2366 struct io_poll_iocb *poll = &req->poll;
2367 struct poll_table_struct pt = { ._key = poll->events };
2368 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07002369 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002370 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002371 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002372
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002373 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06002374 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002375 ret = -ECANCELED;
2376 } else if (READ_ONCE(poll->canceled)) {
2377 ret = -ECANCELED;
2378 }
Jens Axboe561fb042019-10-24 07:25:42 -06002379
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002380 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002381 mask = vfs_poll(poll->file, &pt) & poll->events;
2382
2383 /*
2384 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2385 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2386 * synchronize with them. In the cancellation case the list_del_init
2387 * itself is not actually needed, but harmless so we keep it in to
2388 * avoid further branches in the fast path.
2389 */
2390 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002391 if (!mask && ret != -ECANCELED) {
Jens Axboee9444752019-11-26 15:02:04 -07002392 add_wait_queue(poll->head, poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002393 spin_unlock_irq(&ctx->completion_lock);
2394 return;
2395 }
Jens Axboe78076bb2019-12-04 19:56:40 -07002396 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002397 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002398 spin_unlock_irq(&ctx->completion_lock);
2399
Jens Axboe8c838782019-03-12 15:48:16 -06002400 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07002401
Jens Axboefba38c22019-11-18 12:27:57 -07002402 if (ret < 0 && req->flags & REQ_F_LINK)
2403 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002404 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07002405 if (nxt)
2406 *workptr = &nxt->work;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002407}
2408
2409static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2410 void *key)
2411{
Jens Axboee9444752019-11-26 15:02:04 -07002412 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002413 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2414 struct io_ring_ctx *ctx = req->ctx;
2415 __poll_t mask = key_to_poll(key);
Jens Axboe8c838782019-03-12 15:48:16 -06002416 unsigned long flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002417
2418 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06002419 if (mask && !(mask & poll->events))
2420 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002421
Jens Axboee9444752019-11-26 15:02:04 -07002422 list_del_init(&poll->wait->entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002423
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002424 /*
2425 * Run completion inline if we can. We're using trylock here because
2426 * we are violating the completion_lock -> poll wq lock ordering.
2427 * If we have a link timeout we're going to need the completion_lock
2428 * for finalizing the request, mark us as having grabbed that already.
2429 */
Jens Axboe8c838782019-03-12 15:48:16 -06002430 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboe78076bb2019-12-04 19:56:40 -07002431 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002432 io_poll_complete(req, mask, 0);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002433 req->flags |= REQ_F_COMP_LOCKED;
2434 io_put_req(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002435 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2436
2437 io_cqring_ev_posted(ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06002438 } else {
Jackie Liua197f662019-11-08 08:09:12 -07002439 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002440 }
2441
Jens Axboe221c5eb2019-01-17 09:41:58 -07002442 return 1;
2443}
2444
2445struct io_poll_table {
2446 struct poll_table_struct pt;
2447 struct io_kiocb *req;
2448 int error;
2449};
2450
2451static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2452 struct poll_table_struct *p)
2453{
2454 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2455
2456 if (unlikely(pt->req->poll.head)) {
2457 pt->error = -EINVAL;
2458 return;
2459 }
2460
2461 pt->error = 0;
2462 pt->req->poll.head = head;
Jens Axboee9444752019-11-26 15:02:04 -07002463 add_wait_queue(head, pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002464}
2465
Jens Axboeeac406c2019-11-14 12:09:58 -07002466static void io_poll_req_insert(struct io_kiocb *req)
2467{
2468 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07002469 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07002470
Jens Axboe78076bb2019-12-04 19:56:40 -07002471 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
2472 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07002473}
2474
Jens Axboe89723d02019-11-05 15:32:58 -07002475static int io_poll_add(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2476 struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002477{
2478 struct io_poll_iocb *poll = &req->poll;
2479 struct io_ring_ctx *ctx = req->ctx;
2480 struct io_poll_table ipt;
Jens Axboe8c838782019-03-12 15:48:16 -06002481 bool cancel = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002482 __poll_t mask;
2483 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002484
2485 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2486 return -EINVAL;
2487 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2488 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06002489 if (!poll->file)
2490 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002491
Jens Axboee9444752019-11-26 15:02:04 -07002492 poll->wait = kmalloc(sizeof(*poll->wait), GFP_KERNEL);
2493 if (!poll->wait)
2494 return -ENOMEM;
2495
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002496 req->io = NULL;
Jens Axboe561fb042019-10-24 07:25:42 -06002497 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002498 events = READ_ONCE(sqe->poll_events);
2499 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe78076bb2019-12-04 19:56:40 -07002500 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002501
Jens Axboe221c5eb2019-01-17 09:41:58 -07002502 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06002503 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002504 poll->canceled = false;
2505
2506 ipt.pt._qproc = io_poll_queue_proc;
2507 ipt.pt._key = poll->events;
2508 ipt.req = req;
2509 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2510
2511 /* initialized the list so that we can do list_empty checks */
Jens Axboee9444752019-11-26 15:02:04 -07002512 INIT_LIST_HEAD(&poll->wait->entry);
2513 init_waitqueue_func_entry(poll->wait, io_poll_wake);
2514 poll->wait->private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002515
Jens Axboe36703242019-07-25 10:20:18 -06002516 INIT_LIST_HEAD(&req->list);
2517
Jens Axboe221c5eb2019-01-17 09:41:58 -07002518 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002519
2520 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06002521 if (likely(poll->head)) {
2522 spin_lock(&poll->head->lock);
Jens Axboee9444752019-11-26 15:02:04 -07002523 if (unlikely(list_empty(&poll->wait->entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06002524 if (ipt.error)
2525 cancel = true;
2526 ipt.error = 0;
2527 mask = 0;
2528 }
2529 if (mask || ipt.error)
Jens Axboee9444752019-11-26 15:02:04 -07002530 list_del_init(&poll->wait->entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002531 else if (cancel)
2532 WRITE_ONCE(poll->canceled, true);
2533 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07002534 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002535 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002536 }
Jens Axboe8c838782019-03-12 15:48:16 -06002537 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06002538 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002539 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06002540 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07002541 spin_unlock_irq(&ctx->completion_lock);
2542
Jens Axboe8c838782019-03-12 15:48:16 -06002543 if (mask) {
2544 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002545 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002546 }
Jens Axboe8c838782019-03-12 15:48:16 -06002547 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002548}
2549
Jens Axboe5262f562019-09-17 12:26:57 -06002550static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2551{
Jens Axboead8a48a2019-11-15 08:49:11 -07002552 struct io_timeout_data *data = container_of(timer,
2553 struct io_timeout_data, timer);
2554 struct io_kiocb *req = data->req;
2555 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06002556 unsigned long flags;
2557
Jens Axboe5262f562019-09-17 12:26:57 -06002558 atomic_inc(&ctx->cq_timeouts);
2559
2560 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08002561 /*
Jens Axboe11365042019-10-16 09:08:32 -06002562 * We could be racing with timeout deletion. If the list is empty,
2563 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08002564 */
Jens Axboe842f9612019-10-29 12:34:10 -06002565 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06002566 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06002567
Jens Axboe11365042019-10-16 09:08:32 -06002568 /*
2569 * Adjust the reqs sequence before the current one because it
2570 * will consume a slot in the cq_ring and the the cq_tail
2571 * pointer will be increased, otherwise other timeout reqs may
2572 * return in advance without waiting for enough wait_nr.
2573 */
2574 prev = req;
2575 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2576 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06002577 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06002578 }
Jens Axboe842f9612019-10-29 12:34:10 -06002579
Jens Axboe78e19bb2019-11-06 15:21:34 -07002580 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06002581 io_commit_cqring(ctx);
2582 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2583
2584 io_cqring_ev_posted(ctx);
Jens Axboef1f40852019-11-05 20:33:16 -07002585 if (req->flags & REQ_F_LINK)
2586 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe5262f562019-09-17 12:26:57 -06002587 io_put_req(req);
2588 return HRTIMER_NORESTART;
2589}
2590
Jens Axboe47f46762019-11-09 17:43:02 -07002591static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2592{
2593 struct io_kiocb *req;
2594 int ret = -ENOENT;
2595
2596 list_for_each_entry(req, &ctx->timeout_list, list) {
2597 if (user_data == req->user_data) {
2598 list_del_init(&req->list);
2599 ret = 0;
2600 break;
2601 }
2602 }
2603
2604 if (ret == -ENOENT)
2605 return ret;
2606
Jens Axboe2d283902019-12-04 11:08:05 -07002607 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07002608 if (ret == -1)
2609 return -EALREADY;
2610
Jens Axboefba38c22019-11-18 12:27:57 -07002611 if (req->flags & REQ_F_LINK)
2612 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe47f46762019-11-09 17:43:02 -07002613 io_cqring_fill_event(req, -ECANCELED);
2614 io_put_req(req);
2615 return 0;
2616}
2617
Jens Axboe11365042019-10-16 09:08:32 -06002618/*
2619 * Remove or update an existing timeout command
2620 */
2621static int io_timeout_remove(struct io_kiocb *req,
2622 const struct io_uring_sqe *sqe)
2623{
2624 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe11365042019-10-16 09:08:32 -06002625 unsigned flags;
Jens Axboe47f46762019-11-09 17:43:02 -07002626 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06002627
2628 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2629 return -EINVAL;
2630 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2631 return -EINVAL;
2632 flags = READ_ONCE(sqe->timeout_flags);
2633 if (flags)
2634 return -EINVAL;
2635
Jens Axboe11365042019-10-16 09:08:32 -06002636 spin_lock_irq(&ctx->completion_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07002637 ret = io_timeout_cancel(ctx, READ_ONCE(sqe->addr));
Jens Axboe11365042019-10-16 09:08:32 -06002638
Jens Axboe47f46762019-11-09 17:43:02 -07002639 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06002640 io_commit_cqring(ctx);
2641 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002642 io_cqring_ev_posted(ctx);
Jens Axboe47f46762019-11-09 17:43:02 -07002643 if (ret < 0 && req->flags & REQ_F_LINK)
2644 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002645 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06002646 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06002647}
2648
Jens Axboe2d283902019-12-04 11:08:05 -07002649static int io_timeout_prep(struct io_kiocb *req, struct io_async_ctx *io,
2650 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06002651{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002652 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboead8a48a2019-11-15 08:49:11 -07002653 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06002654 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06002655
Jens Axboead8a48a2019-11-15 08:49:11 -07002656 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06002657 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002658 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06002659 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07002660 if (sqe->off && is_timeout_link)
2661 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06002662 flags = READ_ONCE(sqe->timeout_flags);
2663 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06002664 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06002665
Jens Axboe2d283902019-12-04 11:08:05 -07002666 data = &io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07002667 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07002668 req->flags |= REQ_F_TIMEOUT;
2669
2670 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06002671 return -EFAULT;
2672
Jens Axboe11365042019-10-16 09:08:32 -06002673 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07002674 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06002675 else
Jens Axboead8a48a2019-11-15 08:49:11 -07002676 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06002677
Jens Axboead8a48a2019-11-15 08:49:11 -07002678 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
Jens Axboe2d283902019-12-04 11:08:05 -07002679 req->io = io;
Jens Axboead8a48a2019-11-15 08:49:11 -07002680 return 0;
2681}
2682
2683static int io_timeout(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2684{
2685 unsigned count;
2686 struct io_ring_ctx *ctx = req->ctx;
2687 struct io_timeout_data *data;
Jens Axboe2d283902019-12-04 11:08:05 -07002688 struct io_async_ctx *io;
Jens Axboead8a48a2019-11-15 08:49:11 -07002689 struct list_head *entry;
2690 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07002691
Jens Axboe2d283902019-12-04 11:08:05 -07002692 io = req->io;
2693 if (!io) {
2694 int ret;
2695
2696 io = kmalloc(sizeof(*io), GFP_KERNEL);
2697 if (!io)
2698 return -ENOMEM;
2699 ret = io_timeout_prep(req, io, false);
2700 if (ret) {
2701 kfree(io);
2702 return ret;
2703 }
2704 }
2705 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002706
Jens Axboe5262f562019-09-17 12:26:57 -06002707 /*
2708 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07002709 * timeout event to be satisfied. If it isn't set, then this is
2710 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06002711 */
2712 count = READ_ONCE(sqe->off);
Jens Axboe93bd25b2019-11-11 23:34:31 -07002713 if (!count) {
2714 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2715 spin_lock_irq(&ctx->completion_lock);
2716 entry = ctx->timeout_list.prev;
2717 goto add;
2718 }
Jens Axboe5262f562019-09-17 12:26:57 -06002719
2720 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07002721 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06002722
2723 /*
2724 * Insertion sort, ensuring the first entry in the list is always
2725 * the one we need first.
2726 */
Jens Axboe5262f562019-09-17 12:26:57 -06002727 spin_lock_irq(&ctx->completion_lock);
2728 list_for_each_prev(entry, &ctx->timeout_list) {
2729 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08002730 unsigned nxt_sq_head;
2731 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07002732 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06002733
Jens Axboe93bd25b2019-11-11 23:34:31 -07002734 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2735 continue;
2736
yangerkun5da0fb12019-10-15 21:59:29 +08002737 /*
2738 * Since cached_sq_head + count - 1 can overflow, use type long
2739 * long to store it.
2740 */
2741 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002742 nxt_sq_head = nxt->sequence - nxt_offset + 1;
2743 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08002744
2745 /*
2746 * cached_sq_head may overflow, and it will never overflow twice
2747 * once there is some timeout req still be valid.
2748 */
2749 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08002750 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08002751
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002752 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06002753 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002754
2755 /*
2756 * Sequence of reqs after the insert one and itself should
2757 * be adjusted because each timeout req consumes a slot.
2758 */
2759 span++;
2760 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06002761 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002762 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002763add:
Jens Axboe5262f562019-09-17 12:26:57 -06002764 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07002765 data->timer.function = io_timeout_fn;
2766 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06002767 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002768 return 0;
2769}
2770
Jens Axboe62755e32019-10-28 21:49:21 -06002771static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06002772{
Jens Axboe62755e32019-10-28 21:49:21 -06002773 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06002774
Jens Axboe62755e32019-10-28 21:49:21 -06002775 return req->user_data == (unsigned long) data;
2776}
2777
Jens Axboee977d6d2019-11-05 12:39:45 -07002778static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06002779{
Jens Axboe62755e32019-10-28 21:49:21 -06002780 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06002781 int ret = 0;
2782
Jens Axboe62755e32019-10-28 21:49:21 -06002783 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
2784 switch (cancel_ret) {
2785 case IO_WQ_CANCEL_OK:
2786 ret = 0;
2787 break;
2788 case IO_WQ_CANCEL_RUNNING:
2789 ret = -EALREADY;
2790 break;
2791 case IO_WQ_CANCEL_NOTFOUND:
2792 ret = -ENOENT;
2793 break;
2794 }
2795
Jens Axboee977d6d2019-11-05 12:39:45 -07002796 return ret;
2797}
2798
Jens Axboe47f46762019-11-09 17:43:02 -07002799static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
2800 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002801 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07002802{
2803 unsigned long flags;
2804 int ret;
2805
2806 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
2807 if (ret != -ENOENT) {
2808 spin_lock_irqsave(&ctx->completion_lock, flags);
2809 goto done;
2810 }
2811
2812 spin_lock_irqsave(&ctx->completion_lock, flags);
2813 ret = io_timeout_cancel(ctx, sqe_addr);
2814 if (ret != -ENOENT)
2815 goto done;
2816 ret = io_poll_cancel(ctx, sqe_addr);
2817done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002818 if (!ret)
2819 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07002820 io_cqring_fill_event(req, ret);
2821 io_commit_cqring(ctx);
2822 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2823 io_cqring_ev_posted(ctx);
2824
2825 if (ret < 0 && (req->flags & REQ_F_LINK))
2826 req->flags |= REQ_F_FAIL_LINK;
2827 io_put_req_find_next(req, nxt);
2828}
2829
Jens Axboee977d6d2019-11-05 12:39:45 -07002830static int io_async_cancel(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2831 struct io_kiocb **nxt)
2832{
2833 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee977d6d2019-11-05 12:39:45 -07002834
2835 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2836 return -EINVAL;
2837 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
2838 sqe->cancel_flags)
2839 return -EINVAL;
2840
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002841 io_async_find_and_cancel(ctx, req, READ_ONCE(sqe->addr), nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06002842 return 0;
2843}
2844
Jens Axboef67676d2019-12-02 11:03:47 -07002845static int io_req_defer_prep(struct io_kiocb *req, struct io_async_ctx *io)
2846{
2847 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2848 struct iov_iter iter;
2849 ssize_t ret;
2850
2851 memcpy(&io->sqe, req->sqe, sizeof(io->sqe));
2852 req->sqe = &io->sqe;
2853
2854 switch (io->sqe.opcode) {
2855 case IORING_OP_READV:
2856 case IORING_OP_READ_FIXED:
2857 ret = io_read_prep(req, &iovec, &iter, true);
2858 break;
2859 case IORING_OP_WRITEV:
2860 case IORING_OP_WRITE_FIXED:
2861 ret = io_write_prep(req, &iovec, &iter, true);
2862 break;
Jens Axboe03b12302019-12-02 18:50:25 -07002863 case IORING_OP_SENDMSG:
2864 ret = io_sendmsg_prep(req, io);
2865 break;
2866 case IORING_OP_RECVMSG:
2867 ret = io_recvmsg_prep(req, io);
2868 break;
Jens Axboef499a022019-12-02 16:28:46 -07002869 case IORING_OP_CONNECT:
2870 ret = io_connect_prep(req, io);
2871 break;
Jens Axboe2d283902019-12-04 11:08:05 -07002872 case IORING_OP_TIMEOUT:
2873 return io_timeout_prep(req, io, false);
2874 case IORING_OP_LINK_TIMEOUT:
2875 return io_timeout_prep(req, io, true);
Jens Axboef67676d2019-12-02 11:03:47 -07002876 default:
2877 req->io = io;
2878 return 0;
2879 }
2880
2881 if (ret < 0)
2882 return ret;
2883
2884 req->io = io;
2885 io_req_map_io(req, ret, iovec, inline_vecs, &iter);
2886 return 0;
2887}
2888
Jackie Liua197f662019-11-08 08:09:12 -07002889static int io_req_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -06002890{
Jackie Liua197f662019-11-08 08:09:12 -07002891 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002892 struct io_async_ctx *io;
Jens Axboef67676d2019-12-02 11:03:47 -07002893 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06002894
Bob Liu9d858b22019-11-13 18:06:25 +08002895 /* Still need defer if there is pending req in defer list. */
2896 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06002897 return 0;
2898
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002899 io = kmalloc(sizeof(*io), GFP_KERNEL);
2900 if (!io)
Jens Axboede0617e2019-04-06 21:51:27 -06002901 return -EAGAIN;
2902
Jens Axboe2d283902019-12-04 11:08:05 -07002903 ret = io_req_defer_prep(req, io);
2904 if (ret < 0) {
2905 kfree(io);
2906 return ret;
2907 }
2908
Jens Axboede0617e2019-04-06 21:51:27 -06002909 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08002910 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06002911 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06002912 return 0;
2913 }
2914
Jens Axboe915967f2019-11-21 09:01:20 -07002915 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06002916 list_add_tail(&req->list, &ctx->defer_list);
2917 spin_unlock_irq(&ctx->completion_lock);
2918 return -EIOCBQUEUED;
2919}
2920
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03002921__attribute__((nonnull))
Pavel Begunkovd7324472019-11-21 21:24:36 +03002922static int io_issue_sqe(struct io_kiocb *req, struct io_kiocb **nxt,
2923 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002924{
Jens Axboee0c5c572019-03-12 10:18:47 -06002925 int ret, opcode;
Jackie Liua197f662019-11-08 08:09:12 -07002926 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002927
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002928 opcode = READ_ONCE(req->sqe->opcode);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002929 switch (opcode) {
2930 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07002931 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002932 break;
2933 case IORING_OP_READV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002934 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07002935 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002936 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002937 break;
2938 case IORING_OP_WRITEV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002939 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07002940 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002941 ret = io_write(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07002942 break;
2943 case IORING_OP_READ_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03002944 ret = io_read(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07002945 break;
2946 case IORING_OP_WRITE_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03002947 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002948 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002949 case IORING_OP_FSYNC:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002950 ret = io_fsync(req, req->sqe, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002951 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002952 case IORING_OP_POLL_ADD:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002953 ret = io_poll_add(req, req->sqe, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002954 break;
2955 case IORING_OP_POLL_REMOVE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002956 ret = io_poll_remove(req, req->sqe);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002957 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002958 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002959 ret = io_sync_file_range(req, req->sqe, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002960 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002961 case IORING_OP_SENDMSG:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002962 ret = io_sendmsg(req, req->sqe, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002963 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06002964 case IORING_OP_RECVMSG:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002965 ret = io_recvmsg(req, req->sqe, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002966 break;
Jens Axboe5262f562019-09-17 12:26:57 -06002967 case IORING_OP_TIMEOUT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002968 ret = io_timeout(req, req->sqe);
Jens Axboe5262f562019-09-17 12:26:57 -06002969 break;
Jens Axboe11365042019-10-16 09:08:32 -06002970 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002971 ret = io_timeout_remove(req, req->sqe);
Jens Axboe11365042019-10-16 09:08:32 -06002972 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002973 case IORING_OP_ACCEPT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002974 ret = io_accept(req, req->sqe, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002975 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002976 case IORING_OP_CONNECT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002977 ret = io_connect(req, req->sqe, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07002978 break;
Jens Axboe62755e32019-10-28 21:49:21 -06002979 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002980 ret = io_async_cancel(req, req->sqe, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06002981 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002982 default:
2983 ret = -EINVAL;
2984 break;
2985 }
2986
Jens Axboedef596e2019-01-09 08:59:42 -07002987 if (ret)
2988 return ret;
2989
2990 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe9e645e112019-05-10 16:07:28 -06002991 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07002992 return -EAGAIN;
2993
2994 /* workqueue context doesn't hold uring_lock, grab it now */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002995 if (req->in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002996 mutex_lock(&ctx->uring_lock);
2997 io_iopoll_req_issued(req);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002998 if (req->in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002999 mutex_unlock(&ctx->uring_lock);
3000 }
3001
3002 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003003}
3004
Jens Axboeb76da702019-11-20 13:05:32 -07003005static void io_link_work_cb(struct io_wq_work **workptr)
3006{
3007 struct io_wq_work *work = *workptr;
3008 struct io_kiocb *link = work->data;
3009
3010 io_queue_linked_timeout(link);
3011 work->func = io_wq_submit_work;
3012}
3013
Jens Axboe561fb042019-10-24 07:25:42 -06003014static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07003015{
Jens Axboe561fb042019-10-24 07:25:42 -06003016 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003017 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06003018 struct io_kiocb *nxt = NULL;
3019 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003020
Jens Axboe561fb042019-10-24 07:25:42 -06003021 /* Ensure we clear previously set non-block flag */
3022 req->rw.ki_flags &= ~IOCB_NOWAIT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003023
Jens Axboe561fb042019-10-24 07:25:42 -06003024 if (work->flags & IO_WQ_WORK_CANCEL)
3025 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07003026
Jens Axboe561fb042019-10-24 07:25:42 -06003027 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003028 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
3029 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06003030 do {
Pavel Begunkovd7324472019-11-21 21:24:36 +03003031 ret = io_issue_sqe(req, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06003032 /*
3033 * We can get EAGAIN for polled IO even though we're
3034 * forcing a sync submission from here, since we can't
3035 * wait for request slots on the block side.
3036 */
3037 if (ret != -EAGAIN)
3038 break;
3039 cond_resched();
3040 } while (1);
3041 }
Jens Axboe31b51512019-01-18 22:56:34 -07003042
Jens Axboe561fb042019-10-24 07:25:42 -06003043 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08003044 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06003045
Jens Axboe561fb042019-10-24 07:25:42 -06003046 if (ret) {
Jens Axboef1f40852019-11-05 20:33:16 -07003047 if (req->flags & REQ_F_LINK)
3048 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003049 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06003050 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07003051 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003052
Jens Axboe561fb042019-10-24 07:25:42 -06003053 /* if a dependent link is ready, pass it back */
3054 if (!ret && nxt) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003055 struct io_kiocb *link;
3056
3057 io_prep_async_work(nxt, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06003058 *workptr = &nxt->work;
Jens Axboeb76da702019-11-20 13:05:32 -07003059 if (link) {
3060 nxt->work.flags |= IO_WQ_WORK_CB;
3061 nxt->work.func = io_link_work_cb;
3062 nxt->work.data = link;
3063 }
Jens Axboeedafcce2019-01-09 09:16:05 -07003064 }
Jens Axboe31b51512019-01-18 22:56:34 -07003065}
Jens Axboe2b188cc2019-01-07 10:46:33 -07003066
Jens Axboe09bb8392019-03-13 12:39:28 -06003067static bool io_op_needs_file(const struct io_uring_sqe *sqe)
3068{
3069 int op = READ_ONCE(sqe->opcode);
3070
3071 switch (op) {
3072 case IORING_OP_NOP:
3073 case IORING_OP_POLL_REMOVE:
Pavel Begunkov5683e542019-11-14 00:59:19 +03003074 case IORING_OP_TIMEOUT:
Pavel Begunkova320e9f2019-11-14 00:11:01 +03003075 case IORING_OP_TIMEOUT_REMOVE:
3076 case IORING_OP_ASYNC_CANCEL:
3077 case IORING_OP_LINK_TIMEOUT:
Jens Axboe09bb8392019-03-13 12:39:28 -06003078 return false;
3079 default:
3080 return true;
3081 }
3082}
3083
Jens Axboe65e19f52019-10-26 07:20:21 -06003084static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
3085 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06003086{
Jens Axboe65e19f52019-10-26 07:20:21 -06003087 struct fixed_file_table *table;
3088
3089 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
3090 return table->files[index & IORING_FILE_TABLE_MASK];
3091}
3092
Jackie Liua197f662019-11-08 08:09:12 -07003093static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003094{
Jackie Liua197f662019-11-08 08:09:12 -07003095 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06003096 unsigned flags;
3097 int fd;
3098
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003099 flags = READ_ONCE(req->sqe->flags);
3100 fd = READ_ONCE(req->sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003101
Jackie Liu4fe2c962019-09-09 20:50:40 +08003102 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06003103 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06003104
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003105 if (!io_op_needs_file(req->sqe))
Jens Axboe09bb8392019-03-13 12:39:28 -06003106 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06003107
3108 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003109 if (unlikely(!ctx->file_table ||
Jens Axboe09bb8392019-03-13 12:39:28 -06003110 (unsigned) fd >= ctx->nr_user_files))
3111 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06003112 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06003113 req->file = io_file_from_index(ctx, fd);
3114 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06003115 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06003116 req->flags |= REQ_F_FIXED_FILE;
3117 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003118 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06003119 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003120 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003121 req->file = io_file_get(state, fd);
3122 if (unlikely(!req->file))
3123 return -EBADF;
3124 }
3125
3126 return 0;
3127}
3128
Jackie Liua197f662019-11-08 08:09:12 -07003129static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003130{
Jens Axboefcb323c2019-10-24 12:39:47 -06003131 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07003132 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06003133
3134 rcu_read_lock();
3135 spin_lock_irq(&ctx->inflight_lock);
3136 /*
3137 * We use the f_ops->flush() handler to ensure that we can flush
3138 * out work accessing these files if the fd is closed. Check if
3139 * the fd has changed since we started down this path, and disallow
3140 * this operation if it has.
3141 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003142 if (fcheck(req->ring_fd) == req->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06003143 list_add(&req->inflight_entry, &ctx->inflight_list);
3144 req->flags |= REQ_F_INFLIGHT;
3145 req->work.files = current->files;
3146 ret = 0;
3147 }
3148 spin_unlock_irq(&ctx->inflight_lock);
3149 rcu_read_unlock();
3150
3151 return ret;
3152}
3153
Jens Axboe2665abf2019-11-05 12:40:47 -07003154static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
3155{
Jens Axboead8a48a2019-11-15 08:49:11 -07003156 struct io_timeout_data *data = container_of(timer,
3157 struct io_timeout_data, timer);
3158 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07003159 struct io_ring_ctx *ctx = req->ctx;
3160 struct io_kiocb *prev = NULL;
3161 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07003162
3163 spin_lock_irqsave(&ctx->completion_lock, flags);
3164
3165 /*
3166 * We don't expect the list to be empty, that will only happen if we
3167 * race with the completion of the linked work.
3168 */
Pavel Begunkov44932332019-12-05 16:16:35 +03003169 if (!list_empty(&req->link_list)) {
3170 prev = list_entry(req->link_list.prev, struct io_kiocb,
3171 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003172 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03003173 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003174 prev->flags &= ~REQ_F_LINK_TIMEOUT;
3175 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07003176 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003177 }
3178
3179 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3180
3181 if (prev) {
Jens Axboefba38c22019-11-18 12:27:57 -07003182 if (prev->flags & REQ_F_LINK)
3183 prev->flags |= REQ_F_FAIL_LINK;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003184 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
3185 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07003186 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07003187 } else {
3188 io_cqring_add_event(req, -ETIME);
3189 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003190 }
Jens Axboe2665abf2019-11-05 12:40:47 -07003191 return HRTIMER_NORESTART;
3192}
3193
Jens Axboead8a48a2019-11-15 08:49:11 -07003194static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003195{
Jens Axboe76a46e02019-11-10 23:34:16 -07003196 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07003197
Jens Axboe76a46e02019-11-10 23:34:16 -07003198 /*
3199 * If the list is now empty, then our linked request finished before
3200 * we got a chance to setup the timer
3201 */
3202 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03003203 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07003204 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07003205
Jens Axboead8a48a2019-11-15 08:49:11 -07003206 data->timer.function = io_link_timeout_fn;
3207 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
3208 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07003209 }
Jens Axboe76a46e02019-11-10 23:34:16 -07003210 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07003211
Jens Axboe2665abf2019-11-05 12:40:47 -07003212 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07003213 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003214}
3215
Jens Axboead8a48a2019-11-15 08:49:11 -07003216static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003217{
3218 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003219
Jens Axboe2665abf2019-11-05 12:40:47 -07003220 if (!(req->flags & REQ_F_LINK))
3221 return NULL;
3222
Pavel Begunkov44932332019-12-05 16:16:35 +03003223 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
3224 link_list);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003225 if (!nxt || nxt->sqe->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07003226 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003227
Jens Axboe76a46e02019-11-10 23:34:16 -07003228 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07003229 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07003230}
3231
Jens Axboe0e0702d2019-11-14 21:42:10 -07003232static void __io_queue_sqe(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003233{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003234 struct io_kiocb *linked_timeout = io_prep_linked_timeout(req);
3235 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003236 int ret;
3237
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003238 ret = io_issue_sqe(req, &nxt, true);
3239 if (nxt)
3240 io_queue_async_work(nxt);
Jens Axboe491381ce2019-10-17 09:20:46 -06003241
3242 /*
3243 * We async punt it if the file wasn't marked NOWAIT, or if the file
3244 * doesn't support non-blocking read/write attempts
3245 */
3246 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
3247 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003248 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
3249 ret = io_grab_files(req);
3250 if (ret)
3251 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003252 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003253
3254 /*
3255 * Queued up for async execution, worker will release
3256 * submit reference when the iocb is actually submitted.
3257 */
3258 io_queue_async_work(req);
3259 return;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003260 }
Jens Axboee65ef562019-03-12 10:16:44 -06003261
Jens Axboefcb323c2019-10-24 12:39:47 -06003262err:
Jens Axboee65ef562019-03-12 10:16:44 -06003263 /* drop submission reference */
3264 io_put_req(req);
3265
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003266 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003267 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003268 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003269 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003270 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003271 }
3272
Jens Axboee65ef562019-03-12 10:16:44 -06003273 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06003274 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003275 io_cqring_add_event(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06003276 if (req->flags & REQ_F_LINK)
3277 req->flags |= REQ_F_FAIL_LINK;
Jens Axboee65ef562019-03-12 10:16:44 -06003278 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003279 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003280}
3281
Jens Axboe0e0702d2019-11-14 21:42:10 -07003282static void io_queue_sqe(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003283{
3284 int ret;
3285
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003286 if (unlikely(req->ctx->drain_next)) {
3287 req->flags |= REQ_F_IO_DRAIN;
3288 req->ctx->drain_next = false;
3289 }
3290 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
3291
Jackie Liua197f662019-11-08 08:09:12 -07003292 ret = io_req_defer(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003293 if (ret) {
3294 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003295 io_cqring_add_event(req, ret);
Pavel Begunkovd3b357962019-11-19 23:32:48 +03003296 if (req->flags & REQ_F_LINK)
3297 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003298 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003299 }
Jens Axboe0e0702d2019-11-14 21:42:10 -07003300 } else
3301 __io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003302}
3303
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003304static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003305{
Jens Axboe94ae5e72019-11-14 19:39:52 -07003306 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003307 io_cqring_add_event(req, -ECANCELED);
3308 io_double_put_req(req);
3309 } else
Jens Axboe0e0702d2019-11-14 21:42:10 -07003310 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003311}
3312
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003313
Jens Axboe9e645e112019-05-10 16:07:28 -06003314#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK)
3315
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003316static bool io_submit_sqe(struct io_kiocb *req, struct io_submit_state *state,
Jackie Liua197f662019-11-08 08:09:12 -07003317 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06003318{
Jackie Liua197f662019-11-08 08:09:12 -07003319 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06003320 int ret;
3321
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003322 req->user_data = req->sqe->user_data;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003323
Jens Axboe9e645e112019-05-10 16:07:28 -06003324 /* enforce forwards compatibility on users */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003325 if (unlikely(req->sqe->flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003326 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03003327 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06003328 }
3329
Jackie Liua197f662019-11-08 08:09:12 -07003330 ret = io_req_set_file(state, req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003331 if (unlikely(ret)) {
3332err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003333 io_cqring_add_event(req, ret);
3334 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003335 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06003336 }
3337
Jens Axboe9e645e112019-05-10 16:07:28 -06003338 /*
3339 * If we already have a head request, queue this one for async
3340 * submittal once the head completes. If we don't have a head but
3341 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3342 * submitted sync once the chain is complete. If none of those
3343 * conditions are true (normal request), then just queue it.
3344 */
3345 if (*link) {
3346 struct io_kiocb *prev = *link;
Jens Axboe1a6b74f2019-12-02 10:33:15 -07003347 struct io_async_ctx *io;
Jens Axboe9e645e112019-05-10 16:07:28 -06003348
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003349 if (req->sqe->flags & IOSQE_IO_DRAIN)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003350 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3351
Jens Axboe1a6b74f2019-12-02 10:33:15 -07003352 io = kmalloc(sizeof(*io), GFP_KERNEL);
3353 if (!io) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003354 ret = -EAGAIN;
3355 goto err_req;
3356 }
3357
Jens Axboef67676d2019-12-02 11:03:47 -07003358 ret = io_req_defer_prep(req, io);
Jens Axboe2d283902019-12-04 11:08:05 -07003359 if (ret) {
3360 kfree(io);
3361 prev->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07003362 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07003363 }
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003364 trace_io_uring_link(ctx, req, prev);
Pavel Begunkov44932332019-12-05 16:16:35 +03003365 list_add_tail(&req->link_list, &prev->link_list);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003366 } else if (req->sqe->flags & IOSQE_IO_LINK) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003367 req->flags |= REQ_F_LINK;
3368
Jens Axboe9e645e112019-05-10 16:07:28 -06003369 INIT_LIST_HEAD(&req->link_list);
3370 *link = req;
3371 } else {
Jackie Liua197f662019-11-08 08:09:12 -07003372 io_queue_sqe(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003373 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003374
3375 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06003376}
3377
Jens Axboe9a56a232019-01-09 09:06:50 -07003378/*
3379 * Batched submission is done, ensure local IO is flushed out.
3380 */
3381static void io_submit_state_end(struct io_submit_state *state)
3382{
3383 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06003384 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07003385 if (state->free_reqs)
3386 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3387 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07003388}
3389
3390/*
3391 * Start submission side cache.
3392 */
3393static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08003394 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07003395{
3396 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07003397 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07003398 state->file = NULL;
3399 state->ios_left = max_ios;
3400}
3401
Jens Axboe2b188cc2019-01-07 10:46:33 -07003402static void io_commit_sqring(struct io_ring_ctx *ctx)
3403{
Hristo Venev75b28af2019-08-26 17:23:46 +00003404 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003405
Hristo Venev75b28af2019-08-26 17:23:46 +00003406 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003407 /*
3408 * Ensure any loads from the SQEs are done at this point,
3409 * since once we write the new head, the application could
3410 * write new data to them.
3411 */
Hristo Venev75b28af2019-08-26 17:23:46 +00003412 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003413 }
3414}
3415
3416/*
Jens Axboe2b188cc2019-01-07 10:46:33 -07003417 * Fetch an sqe, if one is available. Note that s->sqe will point to memory
3418 * that is mapped by userspace. This means that care needs to be taken to
3419 * ensure that reads are stable, as we cannot rely on userspace always
3420 * being a good citizen. If members of the sqe are validated and then later
3421 * used, it's important that those reads are done through READ_ONCE() to
3422 * prevent a re-load down the line.
3423 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003424static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003425{
Hristo Venev75b28af2019-08-26 17:23:46 +00003426 struct io_rings *rings = ctx->rings;
3427 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003428 unsigned head;
3429
3430 /*
3431 * The cached sq head (or cq tail) serves two purposes:
3432 *
3433 * 1) allows us to batch the cost of updating the user visible
3434 * head updates.
3435 * 2) allows the kernel side to track the head on its own, even
3436 * though the application is the one updating it.
3437 */
3438 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02003439 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003440 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07003441 return false;
3442
Hristo Venev75b28af2019-08-26 17:23:46 +00003443 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003444 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003445 /*
3446 * All io need record the previous position, if LINK vs DARIN,
3447 * it can be used to mark the position of the first IO in the
3448 * link list.
3449 */
3450 req->sequence = ctx->cached_sq_head;
3451 req->sqe = &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07003452 ctx->cached_sq_head++;
3453 return true;
3454 }
3455
3456 /* drop invalid entries */
3457 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06003458 ctx->cached_sq_dropped++;
3459 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003460 return false;
3461}
3462
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003463static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003464 struct file *ring_file, int ring_fd,
3465 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07003466{
3467 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003468 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003469 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003470 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003471
Jens Axboec4a2ed72019-11-21 21:01:26 -07003472 /* if we have a backlog and couldn't flush it all, return BUSY */
3473 if (!list_empty(&ctx->cq_overflow_list) &&
3474 !io_cqring_overflow_flush(ctx, false))
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003475 return -EBUSY;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003476
3477 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08003478 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003479 statep = &state;
3480 }
3481
3482 for (i = 0; i < nr; i++) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003483 struct io_kiocb *req;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003484 unsigned int sqe_flags;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003485
Pavel Begunkov196be952019-11-07 01:41:06 +03003486 req = io_get_req(ctx, statep);
3487 if (unlikely(!req)) {
3488 if (!submitted)
3489 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003490 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06003491 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003492 if (!io_get_sqring(ctx, req)) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003493 __io_free_req(req);
3494 break;
3495 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003496
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003497 if (io_sqe_needs_user(req->sqe) && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003498 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3499 if (!mm_fault) {
3500 use_mm(ctx->sqo_mm);
3501 *mm = ctx->sqo_mm;
3502 }
3503 }
3504
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003505 submitted++;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003506 sqe_flags = req->sqe->flags;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003507
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003508 req->ring_file = ring_file;
3509 req->ring_fd = ring_fd;
3510 req->has_user = *mm != NULL;
3511 req->in_async = async;
3512 req->needs_fixed_file = async;
3513 trace_io_uring_submit_sqe(ctx, req->sqe->user_data,
Pavel Begunkov50585b92019-11-07 01:41:07 +03003514 true, async);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003515 if (!io_submit_sqe(req, statep, &link))
3516 break;
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003517 /*
3518 * If previous wasn't linked and we have a linked command,
3519 * that's the end of the chain. Submit the previous link.
3520 */
Pavel Begunkov50585b92019-11-07 01:41:07 +03003521 if (!(sqe_flags & IOSQE_IO_LINK) && link) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003522 io_queue_link_head(link);
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003523 link = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003524 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003525 }
3526
Jens Axboe9e645e112019-05-10 16:07:28 -06003527 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003528 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003529 if (statep)
3530 io_submit_state_end(&state);
3531
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003532 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3533 io_commit_sqring(ctx);
3534
Jens Axboe6c271ce2019-01-10 11:22:30 -07003535 return submitted;
3536}
3537
3538static int io_sq_thread(void *data)
3539{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003540 struct io_ring_ctx *ctx = data;
3541 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07003542 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003543 mm_segment_t old_fs;
3544 DEFINE_WAIT(wait);
3545 unsigned inflight;
3546 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07003547 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003548
Jens Axboe206aefd2019-11-07 18:27:42 -07003549 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08003550
Jens Axboe6c271ce2019-01-10 11:22:30 -07003551 old_fs = get_fs();
3552 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07003553 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003554
Jens Axboec1edbf52019-11-10 16:56:04 -07003555 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003556 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003557 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003558
3559 if (inflight) {
3560 unsigned nr_events = 0;
3561
3562 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06003563 /*
3564 * inflight is the count of the maximum possible
3565 * entries we submitted, but it can be smaller
3566 * if we dropped some of them. If we don't have
3567 * poll entries available, then we know that we
3568 * have nothing left to poll for. Reset the
3569 * inflight count to zero in that case.
3570 */
3571 mutex_lock(&ctx->uring_lock);
3572 if (!list_empty(&ctx->poll_list))
3573 __io_iopoll_check(ctx, &nr_events, 0);
3574 else
3575 inflight = 0;
3576 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003577 } else {
3578 /*
3579 * Normal IO, just pretend everything completed.
3580 * We don't have to poll completions for that.
3581 */
3582 nr_events = inflight;
3583 }
3584
3585 inflight -= nr_events;
3586 if (!inflight)
3587 timeout = jiffies + ctx->sq_thread_idle;
3588 }
3589
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003590 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003591
3592 /*
3593 * If submit got -EBUSY, flag us as needing the application
3594 * to enter the kernel to reap and flush events.
3595 */
3596 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003597 /*
3598 * We're polling. If we're within the defined idle
3599 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07003600 * to sleep. The exception is if we got EBUSY doing
3601 * more IO, we should wait for the application to
3602 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07003603 */
Jens Axboec1edbf52019-11-10 16:56:04 -07003604 if (inflight ||
3605 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06003606 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003607 continue;
3608 }
3609
3610 /*
3611 * Drop cur_mm before scheduling, we can't hold it for
3612 * long periods (or over schedule()). Do this before
3613 * adding ourselves to the waitqueue, as the unuse/drop
3614 * may sleep.
3615 */
3616 if (cur_mm) {
3617 unuse_mm(cur_mm);
3618 mmput(cur_mm);
3619 cur_mm = NULL;
3620 }
3621
3622 prepare_to_wait(&ctx->sqo_wait, &wait,
3623 TASK_INTERRUPTIBLE);
3624
3625 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00003626 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02003627 /* make sure to read SQ tail after writing flags */
3628 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003629
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003630 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003631 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003632 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003633 finish_wait(&ctx->sqo_wait, &wait);
3634 break;
3635 }
3636 if (signal_pending(current))
3637 flush_signals(current);
3638 schedule();
3639 finish_wait(&ctx->sqo_wait, &wait);
3640
Hristo Venev75b28af2019-08-26 17:23:46 +00003641 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003642 continue;
3643 }
3644 finish_wait(&ctx->sqo_wait, &wait);
3645
Hristo Venev75b28af2019-08-26 17:23:46 +00003646 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003647 }
3648
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003649 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003650 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
3651 if (ret > 0)
3652 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003653 }
3654
3655 set_fs(old_fs);
3656 if (cur_mm) {
3657 unuse_mm(cur_mm);
3658 mmput(cur_mm);
3659 }
Jens Axboe181e4482019-11-25 08:52:30 -07003660 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06003661
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003662 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06003663
Jens Axboe6c271ce2019-01-10 11:22:30 -07003664 return 0;
3665}
3666
Jens Axboebda52162019-09-24 13:47:15 -06003667struct io_wait_queue {
3668 struct wait_queue_entry wq;
3669 struct io_ring_ctx *ctx;
3670 unsigned to_wait;
3671 unsigned nr_timeouts;
3672};
3673
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003674static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06003675{
3676 struct io_ring_ctx *ctx = iowq->ctx;
3677
3678 /*
3679 * Wake up if we have enough events, or if a timeout occured since we
3680 * started waiting. For timeouts, we always want to return to userspace,
3681 * regardless of event count.
3682 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003683 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06003684 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3685}
3686
3687static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3688 int wake_flags, void *key)
3689{
3690 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3691 wq);
3692
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003693 /* use noflush == true, as we can't safely rely on locking context */
3694 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06003695 return -1;
3696
3697 return autoremove_wake_function(curr, mode, wake_flags, key);
3698}
3699
Jens Axboe2b188cc2019-01-07 10:46:33 -07003700/*
3701 * Wait until events become available, if we don't already have some. The
3702 * application must reap them itself, as they reside on the shared cq ring.
3703 */
3704static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3705 const sigset_t __user *sig, size_t sigsz)
3706{
Jens Axboebda52162019-09-24 13:47:15 -06003707 struct io_wait_queue iowq = {
3708 .wq = {
3709 .private = current,
3710 .func = io_wake_function,
3711 .entry = LIST_HEAD_INIT(iowq.wq.entry),
3712 },
3713 .ctx = ctx,
3714 .to_wait = min_events,
3715 };
Hristo Venev75b28af2019-08-26 17:23:46 +00003716 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003717 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003718
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003719 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003720 return 0;
3721
3722 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003723#ifdef CONFIG_COMPAT
3724 if (in_compat_syscall())
3725 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07003726 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003727 else
3728#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07003729 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003730
Jens Axboe2b188cc2019-01-07 10:46:33 -07003731 if (ret)
3732 return ret;
3733 }
3734
Jens Axboebda52162019-09-24 13:47:15 -06003735 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003736 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06003737 do {
3738 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
3739 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003740 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06003741 break;
3742 schedule();
3743 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003744 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06003745 break;
3746 }
3747 } while (1);
3748 finish_wait(&ctx->wait, &iowq.wq);
3749
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003750 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003751
Hristo Venev75b28af2019-08-26 17:23:46 +00003752 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003753}
3754
Jens Axboe6b063142019-01-10 22:13:58 -07003755static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
3756{
3757#if defined(CONFIG_UNIX)
3758 if (ctx->ring_sock) {
3759 struct sock *sock = ctx->ring_sock->sk;
3760 struct sk_buff *skb;
3761
3762 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
3763 kfree_skb(skb);
3764 }
3765#else
3766 int i;
3767
Jens Axboe65e19f52019-10-26 07:20:21 -06003768 for (i = 0; i < ctx->nr_user_files; i++) {
3769 struct file *file;
3770
3771 file = io_file_from_index(ctx, i);
3772 if (file)
3773 fput(file);
3774 }
Jens Axboe6b063142019-01-10 22:13:58 -07003775#endif
3776}
3777
3778static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
3779{
Jens Axboe65e19f52019-10-26 07:20:21 -06003780 unsigned nr_tables, i;
3781
3782 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003783 return -ENXIO;
3784
3785 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06003786 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
3787 for (i = 0; i < nr_tables; i++)
3788 kfree(ctx->file_table[i].files);
3789 kfree(ctx->file_table);
3790 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003791 ctx->nr_user_files = 0;
3792 return 0;
3793}
3794
Jens Axboe6c271ce2019-01-10 11:22:30 -07003795static void io_sq_thread_stop(struct io_ring_ctx *ctx)
3796{
3797 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07003798 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003799 /*
3800 * The park is a bit of a work-around, without it we get
3801 * warning spews on shutdown with SQPOLL set and affinity
3802 * set to a single CPU.
3803 */
Jens Axboe06058632019-04-13 09:26:03 -06003804 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003805 kthread_stop(ctx->sqo_thread);
3806 ctx->sqo_thread = NULL;
3807 }
3808}
3809
Jens Axboe6b063142019-01-10 22:13:58 -07003810static void io_finish_async(struct io_ring_ctx *ctx)
3811{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003812 io_sq_thread_stop(ctx);
3813
Jens Axboe561fb042019-10-24 07:25:42 -06003814 if (ctx->io_wq) {
3815 io_wq_destroy(ctx->io_wq);
3816 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003817 }
3818}
3819
3820#if defined(CONFIG_UNIX)
3821static void io_destruct_skb(struct sk_buff *skb)
3822{
3823 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
3824
Jens Axboe561fb042019-10-24 07:25:42 -06003825 if (ctx->io_wq)
3826 io_wq_flush(ctx->io_wq);
Jens Axboe8a997342019-10-09 14:40:13 -06003827
Jens Axboe6b063142019-01-10 22:13:58 -07003828 unix_destruct_scm(skb);
3829}
3830
3831/*
3832 * Ensure the UNIX gc is aware of our file set, so we are certain that
3833 * the io_uring can be safely unregistered on process exit, even if we have
3834 * loops in the file referencing.
3835 */
3836static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
3837{
3838 struct sock *sk = ctx->ring_sock->sk;
3839 struct scm_fp_list *fpl;
3840 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06003841 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07003842
3843 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
3844 unsigned long inflight = ctx->user->unix_inflight + nr;
3845
3846 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
3847 return -EMFILE;
3848 }
3849
3850 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
3851 if (!fpl)
3852 return -ENOMEM;
3853
3854 skb = alloc_skb(0, GFP_KERNEL);
3855 if (!skb) {
3856 kfree(fpl);
3857 return -ENOMEM;
3858 }
3859
3860 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07003861
Jens Axboe08a45172019-10-03 08:11:03 -06003862 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07003863 fpl->user = get_uid(ctx->user);
3864 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003865 struct file *file = io_file_from_index(ctx, i + offset);
3866
3867 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06003868 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06003869 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06003870 unix_inflight(fpl->user, fpl->fp[nr_files]);
3871 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07003872 }
3873
Jens Axboe08a45172019-10-03 08:11:03 -06003874 if (nr_files) {
3875 fpl->max = SCM_MAX_FD;
3876 fpl->count = nr_files;
3877 UNIXCB(skb).fp = fpl;
3878 skb->destructor = io_destruct_skb;
3879 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
3880 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07003881
Jens Axboe08a45172019-10-03 08:11:03 -06003882 for (i = 0; i < nr_files; i++)
3883 fput(fpl->fp[i]);
3884 } else {
3885 kfree_skb(skb);
3886 kfree(fpl);
3887 }
Jens Axboe6b063142019-01-10 22:13:58 -07003888
3889 return 0;
3890}
3891
3892/*
3893 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
3894 * causes regular reference counting to break down. We rely on the UNIX
3895 * garbage collection to take care of this problem for us.
3896 */
3897static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3898{
3899 unsigned left, total;
3900 int ret = 0;
3901
3902 total = 0;
3903 left = ctx->nr_user_files;
3904 while (left) {
3905 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07003906
3907 ret = __io_sqe_files_scm(ctx, this_files, total);
3908 if (ret)
3909 break;
3910 left -= this_files;
3911 total += this_files;
3912 }
3913
3914 if (!ret)
3915 return 0;
3916
3917 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003918 struct file *file = io_file_from_index(ctx, total);
3919
3920 if (file)
3921 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07003922 total++;
3923 }
3924
3925 return ret;
3926}
3927#else
3928static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3929{
3930 return 0;
3931}
3932#endif
3933
Jens Axboe65e19f52019-10-26 07:20:21 -06003934static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
3935 unsigned nr_files)
3936{
3937 int i;
3938
3939 for (i = 0; i < nr_tables; i++) {
3940 struct fixed_file_table *table = &ctx->file_table[i];
3941 unsigned this_files;
3942
3943 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
3944 table->files = kcalloc(this_files, sizeof(struct file *),
3945 GFP_KERNEL);
3946 if (!table->files)
3947 break;
3948 nr_files -= this_files;
3949 }
3950
3951 if (i == nr_tables)
3952 return 0;
3953
3954 for (i = 0; i < nr_tables; i++) {
3955 struct fixed_file_table *table = &ctx->file_table[i];
3956 kfree(table->files);
3957 }
3958 return 1;
3959}
3960
Jens Axboe6b063142019-01-10 22:13:58 -07003961static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
3962 unsigned nr_args)
3963{
3964 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe65e19f52019-10-26 07:20:21 -06003965 unsigned nr_tables;
Jens Axboe6b063142019-01-10 22:13:58 -07003966 int fd, ret = 0;
3967 unsigned i;
3968
Jens Axboe65e19f52019-10-26 07:20:21 -06003969 if (ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003970 return -EBUSY;
3971 if (!nr_args)
3972 return -EINVAL;
3973 if (nr_args > IORING_MAX_FIXED_FILES)
3974 return -EMFILE;
3975
Jens Axboe65e19f52019-10-26 07:20:21 -06003976 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
3977 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
3978 GFP_KERNEL);
3979 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003980 return -ENOMEM;
3981
Jens Axboe65e19f52019-10-26 07:20:21 -06003982 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
3983 kfree(ctx->file_table);
Jens Axboe46568e92019-11-10 08:40:53 -07003984 ctx->file_table = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06003985 return -ENOMEM;
3986 }
3987
Jens Axboe08a45172019-10-03 08:11:03 -06003988 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003989 struct fixed_file_table *table;
3990 unsigned index;
3991
Jens Axboe6b063142019-01-10 22:13:58 -07003992 ret = -EFAULT;
3993 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
3994 break;
Jens Axboe08a45172019-10-03 08:11:03 -06003995 /* allow sparse sets */
3996 if (fd == -1) {
3997 ret = 0;
3998 continue;
3999 }
Jens Axboe6b063142019-01-10 22:13:58 -07004000
Jens Axboe65e19f52019-10-26 07:20:21 -06004001 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4002 index = i & IORING_FILE_TABLE_MASK;
4003 table->files[index] = fget(fd);
Jens Axboe6b063142019-01-10 22:13:58 -07004004
4005 ret = -EBADF;
Jens Axboe65e19f52019-10-26 07:20:21 -06004006 if (!table->files[index])
Jens Axboe6b063142019-01-10 22:13:58 -07004007 break;
4008 /*
4009 * Don't allow io_uring instances to be registered. If UNIX
4010 * isn't enabled, then this causes a reference cycle and this
4011 * instance can never get freed. If UNIX is enabled we'll
4012 * handle it just fine, but there's still no point in allowing
4013 * a ring fd as it doesn't support regular read/write anyway.
4014 */
Jens Axboe65e19f52019-10-26 07:20:21 -06004015 if (table->files[index]->f_op == &io_uring_fops) {
4016 fput(table->files[index]);
Jens Axboe6b063142019-01-10 22:13:58 -07004017 break;
4018 }
Jens Axboe6b063142019-01-10 22:13:58 -07004019 ret = 0;
4020 }
4021
4022 if (ret) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004023 for (i = 0; i < ctx->nr_user_files; i++) {
4024 struct file *file;
Jens Axboe6b063142019-01-10 22:13:58 -07004025
Jens Axboe65e19f52019-10-26 07:20:21 -06004026 file = io_file_from_index(ctx, i);
4027 if (file)
4028 fput(file);
4029 }
4030 for (i = 0; i < nr_tables; i++)
4031 kfree(ctx->file_table[i].files);
4032
4033 kfree(ctx->file_table);
4034 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004035 ctx->nr_user_files = 0;
4036 return ret;
4037 }
4038
4039 ret = io_sqe_files_scm(ctx);
4040 if (ret)
4041 io_sqe_files_unregister(ctx);
4042
4043 return ret;
4044}
4045
Jens Axboec3a31e62019-10-03 13:59:56 -06004046static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
4047{
4048#if defined(CONFIG_UNIX)
Jens Axboe65e19f52019-10-26 07:20:21 -06004049 struct file *file = io_file_from_index(ctx, index);
Jens Axboec3a31e62019-10-03 13:59:56 -06004050 struct sock *sock = ctx->ring_sock->sk;
4051 struct sk_buff_head list, *head = &sock->sk_receive_queue;
4052 struct sk_buff *skb;
4053 int i;
4054
4055 __skb_queue_head_init(&list);
4056
4057 /*
4058 * Find the skb that holds this file in its SCM_RIGHTS. When found,
4059 * remove this entry and rearrange the file array.
4060 */
4061 skb = skb_dequeue(head);
4062 while (skb) {
4063 struct scm_fp_list *fp;
4064
4065 fp = UNIXCB(skb).fp;
4066 for (i = 0; i < fp->count; i++) {
4067 int left;
4068
4069 if (fp->fp[i] != file)
4070 continue;
4071
4072 unix_notinflight(fp->user, fp->fp[i]);
4073 left = fp->count - 1 - i;
4074 if (left) {
4075 memmove(&fp->fp[i], &fp->fp[i + 1],
4076 left * sizeof(struct file *));
4077 }
4078 fp->count--;
4079 if (!fp->count) {
4080 kfree_skb(skb);
4081 skb = NULL;
4082 } else {
4083 __skb_queue_tail(&list, skb);
4084 }
4085 fput(file);
4086 file = NULL;
4087 break;
4088 }
4089
4090 if (!file)
4091 break;
4092
4093 __skb_queue_tail(&list, skb);
4094
4095 skb = skb_dequeue(head);
4096 }
4097
4098 if (skb_peek(&list)) {
4099 spin_lock_irq(&head->lock);
4100 while ((skb = __skb_dequeue(&list)) != NULL)
4101 __skb_queue_tail(head, skb);
4102 spin_unlock_irq(&head->lock);
4103 }
4104#else
Jens Axboe65e19f52019-10-26 07:20:21 -06004105 fput(io_file_from_index(ctx, index));
Jens Axboec3a31e62019-10-03 13:59:56 -06004106#endif
4107}
4108
4109static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
4110 int index)
4111{
4112#if defined(CONFIG_UNIX)
4113 struct sock *sock = ctx->ring_sock->sk;
4114 struct sk_buff_head *head = &sock->sk_receive_queue;
4115 struct sk_buff *skb;
4116
4117 /*
4118 * See if we can merge this file into an existing skb SCM_RIGHTS
4119 * file set. If there's no room, fall back to allocating a new skb
4120 * and filling it in.
4121 */
4122 spin_lock_irq(&head->lock);
4123 skb = skb_peek(head);
4124 if (skb) {
4125 struct scm_fp_list *fpl = UNIXCB(skb).fp;
4126
4127 if (fpl->count < SCM_MAX_FD) {
4128 __skb_unlink(skb, head);
4129 spin_unlock_irq(&head->lock);
4130 fpl->fp[fpl->count] = get_file(file);
4131 unix_inflight(fpl->user, fpl->fp[fpl->count]);
4132 fpl->count++;
4133 spin_lock_irq(&head->lock);
4134 __skb_queue_head(head, skb);
4135 } else {
4136 skb = NULL;
4137 }
4138 }
4139 spin_unlock_irq(&head->lock);
4140
4141 if (skb) {
4142 fput(file);
4143 return 0;
4144 }
4145
4146 return __io_sqe_files_scm(ctx, 1, index);
4147#else
4148 return 0;
4149#endif
4150}
4151
4152static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
4153 unsigned nr_args)
4154{
4155 struct io_uring_files_update up;
4156 __s32 __user *fds;
4157 int fd, i, err;
4158 __u32 done;
4159
Jens Axboe65e19f52019-10-26 07:20:21 -06004160 if (!ctx->file_table)
Jens Axboec3a31e62019-10-03 13:59:56 -06004161 return -ENXIO;
4162 if (!nr_args)
4163 return -EINVAL;
4164 if (copy_from_user(&up, arg, sizeof(up)))
4165 return -EFAULT;
4166 if (check_add_overflow(up.offset, nr_args, &done))
4167 return -EOVERFLOW;
4168 if (done > ctx->nr_user_files)
4169 return -EINVAL;
4170
4171 done = 0;
4172 fds = (__s32 __user *) up.fds;
4173 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004174 struct fixed_file_table *table;
4175 unsigned index;
4176
Jens Axboec3a31e62019-10-03 13:59:56 -06004177 err = 0;
4178 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
4179 err = -EFAULT;
4180 break;
4181 }
4182 i = array_index_nospec(up.offset, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004183 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4184 index = i & IORING_FILE_TABLE_MASK;
4185 if (table->files[index]) {
Jens Axboec3a31e62019-10-03 13:59:56 -06004186 io_sqe_file_unregister(ctx, i);
Jens Axboe65e19f52019-10-26 07:20:21 -06004187 table->files[index] = NULL;
Jens Axboec3a31e62019-10-03 13:59:56 -06004188 }
4189 if (fd != -1) {
4190 struct file *file;
4191
4192 file = fget(fd);
4193 if (!file) {
4194 err = -EBADF;
4195 break;
4196 }
4197 /*
4198 * Don't allow io_uring instances to be registered. If
4199 * UNIX isn't enabled, then this causes a reference
4200 * cycle and this instance can never get freed. If UNIX
4201 * is enabled we'll handle it just fine, but there's
4202 * still no point in allowing a ring fd as it doesn't
4203 * support regular read/write anyway.
4204 */
4205 if (file->f_op == &io_uring_fops) {
4206 fput(file);
4207 err = -EBADF;
4208 break;
4209 }
Jens Axboe65e19f52019-10-26 07:20:21 -06004210 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06004211 err = io_sqe_file_register(ctx, file, i);
4212 if (err)
4213 break;
4214 }
4215 nr_args--;
4216 done++;
4217 up.offset++;
4218 }
4219
4220 return done ? done : err;
4221}
4222
Jens Axboe7d723062019-11-12 22:31:31 -07004223static void io_put_work(struct io_wq_work *work)
4224{
4225 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4226
4227 io_put_req(req);
4228}
4229
4230static void io_get_work(struct io_wq_work *work)
4231{
4232 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4233
4234 refcount_inc(&req->refs);
4235}
4236
Jens Axboe6c271ce2019-01-10 11:22:30 -07004237static int io_sq_offload_start(struct io_ring_ctx *ctx,
4238 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004239{
Jens Axboe576a3472019-11-25 08:49:20 -07004240 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06004241 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004242 int ret;
4243
Jens Axboe6c271ce2019-01-10 11:22:30 -07004244 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004245 mmgrab(current->mm);
4246 ctx->sqo_mm = current->mm;
4247
Jens Axboe6c271ce2019-01-10 11:22:30 -07004248 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06004249 ret = -EPERM;
4250 if (!capable(CAP_SYS_ADMIN))
4251 goto err;
4252
Jens Axboe917257d2019-04-13 09:28:55 -06004253 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
4254 if (!ctx->sq_thread_idle)
4255 ctx->sq_thread_idle = HZ;
4256
Jens Axboe6c271ce2019-01-10 11:22:30 -07004257 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06004258 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004259
Jens Axboe917257d2019-04-13 09:28:55 -06004260 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06004261 if (cpu >= nr_cpu_ids)
4262 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08004263 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06004264 goto err;
4265
Jens Axboe6c271ce2019-01-10 11:22:30 -07004266 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
4267 ctx, cpu,
4268 "io_uring-sq");
4269 } else {
4270 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
4271 "io_uring-sq");
4272 }
4273 if (IS_ERR(ctx->sqo_thread)) {
4274 ret = PTR_ERR(ctx->sqo_thread);
4275 ctx->sqo_thread = NULL;
4276 goto err;
4277 }
4278 wake_up_process(ctx->sqo_thread);
4279 } else if (p->flags & IORING_SETUP_SQ_AFF) {
4280 /* Can't have SQ_AFF without SQPOLL */
4281 ret = -EINVAL;
4282 goto err;
4283 }
4284
Jens Axboe576a3472019-11-25 08:49:20 -07004285 data.mm = ctx->sqo_mm;
4286 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07004287 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07004288 data.get_work = io_get_work;
4289 data.put_work = io_put_work;
4290
Jens Axboe561fb042019-10-24 07:25:42 -06004291 /* Do QD, or 4 * CPUS, whatever is smallest */
4292 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07004293 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06004294 if (IS_ERR(ctx->io_wq)) {
4295 ret = PTR_ERR(ctx->io_wq);
4296 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004297 goto err;
4298 }
4299
4300 return 0;
4301err:
Jens Axboe54a91f32019-09-10 09:15:04 -06004302 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004303 mmdrop(ctx->sqo_mm);
4304 ctx->sqo_mm = NULL;
4305 return ret;
4306}
4307
4308static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
4309{
4310 atomic_long_sub(nr_pages, &user->locked_vm);
4311}
4312
4313static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
4314{
4315 unsigned long page_limit, cur_pages, new_pages;
4316
4317 /* Don't allow more pages than we can safely lock */
4318 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
4319
4320 do {
4321 cur_pages = atomic_long_read(&user->locked_vm);
4322 new_pages = cur_pages + nr_pages;
4323 if (new_pages > page_limit)
4324 return -ENOMEM;
4325 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4326 new_pages) != cur_pages);
4327
4328 return 0;
4329}
4330
4331static void io_mem_free(void *ptr)
4332{
Mark Rutland52e04ef2019-04-30 17:30:21 +01004333 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004334
Mark Rutland52e04ef2019-04-30 17:30:21 +01004335 if (!ptr)
4336 return;
4337
4338 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004339 if (put_page_testzero(page))
4340 free_compound_page(page);
4341}
4342
4343static void *io_mem_alloc(size_t size)
4344{
4345 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4346 __GFP_NORETRY;
4347
4348 return (void *) __get_free_pages(gfp_flags, get_order(size));
4349}
4350
Hristo Venev75b28af2019-08-26 17:23:46 +00004351static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4352 size_t *sq_offset)
4353{
4354 struct io_rings *rings;
4355 size_t off, sq_array_size;
4356
4357 off = struct_size(rings, cqes, cq_entries);
4358 if (off == SIZE_MAX)
4359 return SIZE_MAX;
4360
4361#ifdef CONFIG_SMP
4362 off = ALIGN(off, SMP_CACHE_BYTES);
4363 if (off == 0)
4364 return SIZE_MAX;
4365#endif
4366
4367 sq_array_size = array_size(sizeof(u32), sq_entries);
4368 if (sq_array_size == SIZE_MAX)
4369 return SIZE_MAX;
4370
4371 if (check_add_overflow(off, sq_array_size, &off))
4372 return SIZE_MAX;
4373
4374 if (sq_offset)
4375 *sq_offset = off;
4376
4377 return off;
4378}
4379
Jens Axboe2b188cc2019-01-07 10:46:33 -07004380static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4381{
Hristo Venev75b28af2019-08-26 17:23:46 +00004382 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004383
Hristo Venev75b28af2019-08-26 17:23:46 +00004384 pages = (size_t)1 << get_order(
4385 rings_size(sq_entries, cq_entries, NULL));
4386 pages += (size_t)1 << get_order(
4387 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07004388
Hristo Venev75b28af2019-08-26 17:23:46 +00004389 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004390}
4391
Jens Axboeedafcce2019-01-09 09:16:05 -07004392static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4393{
4394 int i, j;
4395
4396 if (!ctx->user_bufs)
4397 return -ENXIO;
4398
4399 for (i = 0; i < ctx->nr_user_bufs; i++) {
4400 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4401
4402 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07004403 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07004404
4405 if (ctx->account_mem)
4406 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004407 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004408 imu->nr_bvecs = 0;
4409 }
4410
4411 kfree(ctx->user_bufs);
4412 ctx->user_bufs = NULL;
4413 ctx->nr_user_bufs = 0;
4414 return 0;
4415}
4416
4417static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4418 void __user *arg, unsigned index)
4419{
4420 struct iovec __user *src;
4421
4422#ifdef CONFIG_COMPAT
4423 if (ctx->compat) {
4424 struct compat_iovec __user *ciovs;
4425 struct compat_iovec ciov;
4426
4427 ciovs = (struct compat_iovec __user *) arg;
4428 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4429 return -EFAULT;
4430
4431 dst->iov_base = (void __user *) (unsigned long) ciov.iov_base;
4432 dst->iov_len = ciov.iov_len;
4433 return 0;
4434 }
4435#endif
4436 src = (struct iovec __user *) arg;
4437 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4438 return -EFAULT;
4439 return 0;
4440}
4441
4442static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4443 unsigned nr_args)
4444{
4445 struct vm_area_struct **vmas = NULL;
4446 struct page **pages = NULL;
4447 int i, j, got_pages = 0;
4448 int ret = -EINVAL;
4449
4450 if (ctx->user_bufs)
4451 return -EBUSY;
4452 if (!nr_args || nr_args > UIO_MAXIOV)
4453 return -EINVAL;
4454
4455 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4456 GFP_KERNEL);
4457 if (!ctx->user_bufs)
4458 return -ENOMEM;
4459
4460 for (i = 0; i < nr_args; i++) {
4461 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4462 unsigned long off, start, end, ubuf;
4463 int pret, nr_pages;
4464 struct iovec iov;
4465 size_t size;
4466
4467 ret = io_copy_iov(ctx, &iov, arg, i);
4468 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03004469 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07004470
4471 /*
4472 * Don't impose further limits on the size and buffer
4473 * constraints here, we'll -EINVAL later when IO is
4474 * submitted if they are wrong.
4475 */
4476 ret = -EFAULT;
4477 if (!iov.iov_base || !iov.iov_len)
4478 goto err;
4479
4480 /* arbitrary limit, but we need something */
4481 if (iov.iov_len > SZ_1G)
4482 goto err;
4483
4484 ubuf = (unsigned long) iov.iov_base;
4485 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4486 start = ubuf >> PAGE_SHIFT;
4487 nr_pages = end - start;
4488
4489 if (ctx->account_mem) {
4490 ret = io_account_mem(ctx->user, nr_pages);
4491 if (ret)
4492 goto err;
4493 }
4494
4495 ret = 0;
4496 if (!pages || nr_pages > got_pages) {
4497 kfree(vmas);
4498 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004499 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07004500 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004501 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07004502 sizeof(struct vm_area_struct *),
4503 GFP_KERNEL);
4504 if (!pages || !vmas) {
4505 ret = -ENOMEM;
4506 if (ctx->account_mem)
4507 io_unaccount_mem(ctx->user, nr_pages);
4508 goto err;
4509 }
4510 got_pages = nr_pages;
4511 }
4512
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004513 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07004514 GFP_KERNEL);
4515 ret = -ENOMEM;
4516 if (!imu->bvec) {
4517 if (ctx->account_mem)
4518 io_unaccount_mem(ctx->user, nr_pages);
4519 goto err;
4520 }
4521
4522 ret = 0;
4523 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07004524 pret = get_user_pages(ubuf, nr_pages,
4525 FOLL_WRITE | FOLL_LONGTERM,
4526 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004527 if (pret == nr_pages) {
4528 /* don't support file backed memory */
4529 for (j = 0; j < nr_pages; j++) {
4530 struct vm_area_struct *vma = vmas[j];
4531
4532 if (vma->vm_file &&
4533 !is_file_hugepages(vma->vm_file)) {
4534 ret = -EOPNOTSUPP;
4535 break;
4536 }
4537 }
4538 } else {
4539 ret = pret < 0 ? pret : -EFAULT;
4540 }
4541 up_read(&current->mm->mmap_sem);
4542 if (ret) {
4543 /*
4544 * if we did partial map, or found file backed vmas,
4545 * release any pages we did get
4546 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07004547 if (pret > 0)
4548 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004549 if (ctx->account_mem)
4550 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004551 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004552 goto err;
4553 }
4554
4555 off = ubuf & ~PAGE_MASK;
4556 size = iov.iov_len;
4557 for (j = 0; j < nr_pages; j++) {
4558 size_t vec_len;
4559
4560 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4561 imu->bvec[j].bv_page = pages[j];
4562 imu->bvec[j].bv_len = vec_len;
4563 imu->bvec[j].bv_offset = off;
4564 off = 0;
4565 size -= vec_len;
4566 }
4567 /* store original address for later verification */
4568 imu->ubuf = ubuf;
4569 imu->len = iov.iov_len;
4570 imu->nr_bvecs = nr_pages;
4571
4572 ctx->nr_user_bufs++;
4573 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004574 kvfree(pages);
4575 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004576 return 0;
4577err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004578 kvfree(pages);
4579 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004580 io_sqe_buffer_unregister(ctx);
4581 return ret;
4582}
4583
Jens Axboe9b402842019-04-11 11:45:41 -06004584static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4585{
4586 __s32 __user *fds = arg;
4587 int fd;
4588
4589 if (ctx->cq_ev_fd)
4590 return -EBUSY;
4591
4592 if (copy_from_user(&fd, fds, sizeof(*fds)))
4593 return -EFAULT;
4594
4595 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4596 if (IS_ERR(ctx->cq_ev_fd)) {
4597 int ret = PTR_ERR(ctx->cq_ev_fd);
4598 ctx->cq_ev_fd = NULL;
4599 return ret;
4600 }
4601
4602 return 0;
4603}
4604
4605static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4606{
4607 if (ctx->cq_ev_fd) {
4608 eventfd_ctx_put(ctx->cq_ev_fd);
4609 ctx->cq_ev_fd = NULL;
4610 return 0;
4611 }
4612
4613 return -ENXIO;
4614}
4615
Jens Axboe2b188cc2019-01-07 10:46:33 -07004616static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4617{
Jens Axboe6b063142019-01-10 22:13:58 -07004618 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004619 if (ctx->sqo_mm)
4620 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07004621
4622 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07004623 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07004624 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06004625 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07004626
Jens Axboe2b188cc2019-01-07 10:46:33 -07004627#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07004628 if (ctx->ring_sock) {
4629 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004630 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07004631 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004632#endif
4633
Hristo Venev75b28af2019-08-26 17:23:46 +00004634 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004635 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004636
4637 percpu_ref_exit(&ctx->refs);
4638 if (ctx->account_mem)
4639 io_unaccount_mem(ctx->user,
4640 ring_pages(ctx->sq_entries, ctx->cq_entries));
4641 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07004642 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07004643 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07004644 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07004645 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004646 kfree(ctx);
4647}
4648
4649static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4650{
4651 struct io_ring_ctx *ctx = file->private_data;
4652 __poll_t mask = 0;
4653
4654 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02004655 /*
4656 * synchronizes with barrier from wq_has_sleeper call in
4657 * io_commit_cqring
4658 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004659 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00004660 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4661 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004662 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08004663 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004664 mask |= EPOLLIN | EPOLLRDNORM;
4665
4666 return mask;
4667}
4668
4669static int io_uring_fasync(int fd, struct file *file, int on)
4670{
4671 struct io_ring_ctx *ctx = file->private_data;
4672
4673 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4674}
4675
4676static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4677{
4678 mutex_lock(&ctx->uring_lock);
4679 percpu_ref_kill(&ctx->refs);
4680 mutex_unlock(&ctx->uring_lock);
4681
Jens Axboe5262f562019-09-17 12:26:57 -06004682 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004683 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06004684
4685 if (ctx->io_wq)
4686 io_wq_cancel_all(ctx->io_wq);
4687
Jens Axboedef596e2019-01-09 08:59:42 -07004688 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07004689 /* if we failed setting up the ctx, we might not have any rings */
4690 if (ctx->rings)
4691 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07004692 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004693 io_ring_ctx_free(ctx);
4694}
4695
4696static int io_uring_release(struct inode *inode, struct file *file)
4697{
4698 struct io_ring_ctx *ctx = file->private_data;
4699
4700 file->private_data = NULL;
4701 io_ring_ctx_wait_and_kill(ctx);
4702 return 0;
4703}
4704
Jens Axboefcb323c2019-10-24 12:39:47 -06004705static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4706 struct files_struct *files)
4707{
4708 struct io_kiocb *req;
4709 DEFINE_WAIT(wait);
4710
4711 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07004712 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06004713
4714 spin_lock_irq(&ctx->inflight_lock);
4715 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07004716 if (req->work.files != files)
4717 continue;
4718 /* req is being completed, ignore */
4719 if (!refcount_inc_not_zero(&req->refs))
4720 continue;
4721 cancel_req = req;
4722 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06004723 }
Jens Axboe768134d2019-11-10 20:30:53 -07004724 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004725 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07004726 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06004727 spin_unlock_irq(&ctx->inflight_lock);
4728
Jens Axboe768134d2019-11-10 20:30:53 -07004729 /* We need to keep going until we don't find a matching req */
4730 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004731 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08004732
4733 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
4734 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06004735 schedule();
4736 }
Jens Axboe768134d2019-11-10 20:30:53 -07004737 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06004738}
4739
4740static int io_uring_flush(struct file *file, void *data)
4741{
4742 struct io_ring_ctx *ctx = file->private_data;
4743
4744 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004745 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
4746 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06004747 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004748 }
Jens Axboefcb323c2019-10-24 12:39:47 -06004749 return 0;
4750}
4751
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004752static void *io_uring_validate_mmap_request(struct file *file,
4753 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004754{
Jens Axboe2b188cc2019-01-07 10:46:33 -07004755 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004756 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004757 struct page *page;
4758 void *ptr;
4759
4760 switch (offset) {
4761 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00004762 case IORING_OFF_CQ_RING:
4763 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004764 break;
4765 case IORING_OFF_SQES:
4766 ptr = ctx->sq_sqes;
4767 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004768 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004769 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004770 }
4771
4772 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07004773 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004774 return ERR_PTR(-EINVAL);
4775
4776 return ptr;
4777}
4778
4779#ifdef CONFIG_MMU
4780
4781static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4782{
4783 size_t sz = vma->vm_end - vma->vm_start;
4784 unsigned long pfn;
4785 void *ptr;
4786
4787 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
4788 if (IS_ERR(ptr))
4789 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004790
4791 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
4792 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
4793}
4794
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004795#else /* !CONFIG_MMU */
4796
4797static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4798{
4799 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
4800}
4801
4802static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
4803{
4804 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
4805}
4806
4807static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
4808 unsigned long addr, unsigned long len,
4809 unsigned long pgoff, unsigned long flags)
4810{
4811 void *ptr;
4812
4813 ptr = io_uring_validate_mmap_request(file, pgoff, len);
4814 if (IS_ERR(ptr))
4815 return PTR_ERR(ptr);
4816
4817 return (unsigned long) ptr;
4818}
4819
4820#endif /* !CONFIG_MMU */
4821
Jens Axboe2b188cc2019-01-07 10:46:33 -07004822SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
4823 u32, min_complete, u32, flags, const sigset_t __user *, sig,
4824 size_t, sigsz)
4825{
4826 struct io_ring_ctx *ctx;
4827 long ret = -EBADF;
4828 int submitted = 0;
4829 struct fd f;
4830
Jens Axboe6c271ce2019-01-10 11:22:30 -07004831 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07004832 return -EINVAL;
4833
4834 f = fdget(fd);
4835 if (!f.file)
4836 return -EBADF;
4837
4838 ret = -EOPNOTSUPP;
4839 if (f.file->f_op != &io_uring_fops)
4840 goto out_fput;
4841
4842 ret = -ENXIO;
4843 ctx = f.file->private_data;
4844 if (!percpu_ref_tryget(&ctx->refs))
4845 goto out_fput;
4846
Jens Axboe6c271ce2019-01-10 11:22:30 -07004847 /*
4848 * For SQ polling, the thread will do all submissions and completions.
4849 * Just return the requested submit count, and wake the thread if
4850 * we were asked to.
4851 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06004852 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004853 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07004854 if (!list_empty_careful(&ctx->cq_overflow_list))
4855 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004856 if (flags & IORING_ENTER_SQ_WAKEUP)
4857 wake_up(&ctx->sqo_wait);
4858 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06004859 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004860 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004861
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004862 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004863 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004864 /* already have mm, so io_submit_sqes() won't try to grab it */
4865 cur_mm = ctx->sqo_mm;
4866 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
4867 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004868 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004869 }
4870 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07004871 unsigned nr_events = 0;
4872
Jens Axboe2b188cc2019-01-07 10:46:33 -07004873 min_complete = min(min_complete, ctx->cq_entries);
4874
Jens Axboedef596e2019-01-09 08:59:42 -07004875 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07004876 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07004877 } else {
4878 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
4879 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004880 }
4881
Pavel Begunkov6805b322019-10-08 02:18:42 +03004882 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004883out_fput:
4884 fdput(f);
4885 return submitted ? submitted : ret;
4886}
4887
4888static const struct file_operations io_uring_fops = {
4889 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06004890 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07004891 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004892#ifndef CONFIG_MMU
4893 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
4894 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
4895#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07004896 .poll = io_uring_poll,
4897 .fasync = io_uring_fasync,
4898};
4899
4900static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
4901 struct io_uring_params *p)
4902{
Hristo Venev75b28af2019-08-26 17:23:46 +00004903 struct io_rings *rings;
4904 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004905
Hristo Venev75b28af2019-08-26 17:23:46 +00004906 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
4907 if (size == SIZE_MAX)
4908 return -EOVERFLOW;
4909
4910 rings = io_mem_alloc(size);
4911 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004912 return -ENOMEM;
4913
Hristo Venev75b28af2019-08-26 17:23:46 +00004914 ctx->rings = rings;
4915 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
4916 rings->sq_ring_mask = p->sq_entries - 1;
4917 rings->cq_ring_mask = p->cq_entries - 1;
4918 rings->sq_ring_entries = p->sq_entries;
4919 rings->cq_ring_entries = p->cq_entries;
4920 ctx->sq_mask = rings->sq_ring_mask;
4921 ctx->cq_mask = rings->cq_ring_mask;
4922 ctx->sq_entries = rings->sq_ring_entries;
4923 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004924
4925 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07004926 if (size == SIZE_MAX) {
4927 io_mem_free(ctx->rings);
4928 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004929 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07004930 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004931
4932 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07004933 if (!ctx->sq_sqes) {
4934 io_mem_free(ctx->rings);
4935 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004936 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07004937 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004938
Jens Axboe2b188cc2019-01-07 10:46:33 -07004939 return 0;
4940}
4941
4942/*
4943 * Allocate an anonymous fd, this is what constitutes the application
4944 * visible backing of an io_uring instance. The application mmaps this
4945 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
4946 * we have to tie this fd to a socket for file garbage collection purposes.
4947 */
4948static int io_uring_get_fd(struct io_ring_ctx *ctx)
4949{
4950 struct file *file;
4951 int ret;
4952
4953#if defined(CONFIG_UNIX)
4954 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
4955 &ctx->ring_sock);
4956 if (ret)
4957 return ret;
4958#endif
4959
4960 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
4961 if (ret < 0)
4962 goto err;
4963
4964 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
4965 O_RDWR | O_CLOEXEC);
4966 if (IS_ERR(file)) {
4967 put_unused_fd(ret);
4968 ret = PTR_ERR(file);
4969 goto err;
4970 }
4971
4972#if defined(CONFIG_UNIX)
4973 ctx->ring_sock->file = file;
Jens Axboe6b063142019-01-10 22:13:58 -07004974 ctx->ring_sock->sk->sk_user_data = ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004975#endif
4976 fd_install(ret, file);
4977 return ret;
4978err:
4979#if defined(CONFIG_UNIX)
4980 sock_release(ctx->ring_sock);
4981 ctx->ring_sock = NULL;
4982#endif
4983 return ret;
4984}
4985
4986static int io_uring_create(unsigned entries, struct io_uring_params *p)
4987{
4988 struct user_struct *user = NULL;
4989 struct io_ring_ctx *ctx;
4990 bool account_mem;
4991 int ret;
4992
4993 if (!entries || entries > IORING_MAX_ENTRIES)
4994 return -EINVAL;
4995
4996 /*
4997 * Use twice as many entries for the CQ ring. It's possible for the
4998 * application to drive a higher depth than the size of the SQ ring,
4999 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06005000 * some flexibility in overcommitting a bit. If the application has
5001 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
5002 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07005003 */
5004 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06005005 if (p->flags & IORING_SETUP_CQSIZE) {
5006 /*
5007 * If IORING_SETUP_CQSIZE is set, we do the same roundup
5008 * to a power-of-two, if it isn't already. We do NOT impose
5009 * any cq vs sq ring sizing.
5010 */
5011 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
5012 return -EINVAL;
5013 p->cq_entries = roundup_pow_of_two(p->cq_entries);
5014 } else {
5015 p->cq_entries = 2 * p->sq_entries;
5016 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005017
5018 user = get_uid(current_user());
5019 account_mem = !capable(CAP_IPC_LOCK);
5020
5021 if (account_mem) {
5022 ret = io_account_mem(user,
5023 ring_pages(p->sq_entries, p->cq_entries));
5024 if (ret) {
5025 free_uid(user);
5026 return ret;
5027 }
5028 }
5029
5030 ctx = io_ring_ctx_alloc(p);
5031 if (!ctx) {
5032 if (account_mem)
5033 io_unaccount_mem(user, ring_pages(p->sq_entries,
5034 p->cq_entries));
5035 free_uid(user);
5036 return -ENOMEM;
5037 }
5038 ctx->compat = in_compat_syscall();
5039 ctx->account_mem = account_mem;
5040 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07005041 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07005042
5043 ret = io_allocate_scq_urings(ctx, p);
5044 if (ret)
5045 goto err;
5046
Jens Axboe6c271ce2019-01-10 11:22:30 -07005047 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005048 if (ret)
5049 goto err;
5050
Jens Axboe2b188cc2019-01-07 10:46:33 -07005051 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005052 p->sq_off.head = offsetof(struct io_rings, sq.head);
5053 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
5054 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
5055 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
5056 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
5057 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
5058 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005059
5060 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005061 p->cq_off.head = offsetof(struct io_rings, cq.head);
5062 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
5063 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
5064 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
5065 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
5066 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06005067
Jens Axboe044c1ab2019-10-28 09:15:33 -06005068 /*
5069 * Install ring fd as the very last thing, so we don't risk someone
5070 * having closed it before we finish setup
5071 */
5072 ret = io_uring_get_fd(ctx);
5073 if (ret < 0)
5074 goto err;
5075
Jens Axboeda8c9692019-12-02 18:51:26 -07005076 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
5077 IORING_FEAT_SUBMIT_STABLE;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005078 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005079 return ret;
5080err:
5081 io_ring_ctx_wait_and_kill(ctx);
5082 return ret;
5083}
5084
5085/*
5086 * Sets up an aio uring context, and returns the fd. Applications asks for a
5087 * ring size, we return the actual sq/cq ring sizes (among other things) in the
5088 * params structure passed in.
5089 */
5090static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
5091{
5092 struct io_uring_params p;
5093 long ret;
5094 int i;
5095
5096 if (copy_from_user(&p, params, sizeof(p)))
5097 return -EFAULT;
5098 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
5099 if (p.resv[i])
5100 return -EINVAL;
5101 }
5102
Jens Axboe6c271ce2019-01-10 11:22:30 -07005103 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe33a107f2019-10-04 12:10:03 -06005104 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005105 return -EINVAL;
5106
5107 ret = io_uring_create(entries, &p);
5108 if (ret < 0)
5109 return ret;
5110
5111 if (copy_to_user(params, &p, sizeof(p)))
5112 return -EFAULT;
5113
5114 return ret;
5115}
5116
5117SYSCALL_DEFINE2(io_uring_setup, u32, entries,
5118 struct io_uring_params __user *, params)
5119{
5120 return io_uring_setup(entries, params);
5121}
5122
Jens Axboeedafcce2019-01-09 09:16:05 -07005123static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
5124 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06005125 __releases(ctx->uring_lock)
5126 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07005127{
5128 int ret;
5129
Jens Axboe35fa71a2019-04-22 10:23:23 -06005130 /*
5131 * We're inside the ring mutex, if the ref is already dying, then
5132 * someone else killed the ctx or is already going through
5133 * io_uring_register().
5134 */
5135 if (percpu_ref_is_dying(&ctx->refs))
5136 return -ENXIO;
5137
Jens Axboeedafcce2019-01-09 09:16:05 -07005138 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06005139
5140 /*
5141 * Drop uring mutex before waiting for references to exit. If another
5142 * thread is currently inside io_uring_enter() it might need to grab
5143 * the uring_lock to make progress. If we hold it here across the drain
5144 * wait, then we can deadlock. It's safe to drop the mutex here, since
5145 * no new references will come in after we've killed the percpu ref.
5146 */
5147 mutex_unlock(&ctx->uring_lock);
Jens Axboe206aefd2019-11-07 18:27:42 -07005148 wait_for_completion(&ctx->completions[0]);
Jens Axboeb19062a2019-04-15 10:49:38 -06005149 mutex_lock(&ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07005150
5151 switch (opcode) {
5152 case IORING_REGISTER_BUFFERS:
5153 ret = io_sqe_buffer_register(ctx, arg, nr_args);
5154 break;
5155 case IORING_UNREGISTER_BUFFERS:
5156 ret = -EINVAL;
5157 if (arg || nr_args)
5158 break;
5159 ret = io_sqe_buffer_unregister(ctx);
5160 break;
Jens Axboe6b063142019-01-10 22:13:58 -07005161 case IORING_REGISTER_FILES:
5162 ret = io_sqe_files_register(ctx, arg, nr_args);
5163 break;
5164 case IORING_UNREGISTER_FILES:
5165 ret = -EINVAL;
5166 if (arg || nr_args)
5167 break;
5168 ret = io_sqe_files_unregister(ctx);
5169 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06005170 case IORING_REGISTER_FILES_UPDATE:
5171 ret = io_sqe_files_update(ctx, arg, nr_args);
5172 break;
Jens Axboe9b402842019-04-11 11:45:41 -06005173 case IORING_REGISTER_EVENTFD:
5174 ret = -EINVAL;
5175 if (nr_args != 1)
5176 break;
5177 ret = io_eventfd_register(ctx, arg);
5178 break;
5179 case IORING_UNREGISTER_EVENTFD:
5180 ret = -EINVAL;
5181 if (arg || nr_args)
5182 break;
5183 ret = io_eventfd_unregister(ctx);
5184 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07005185 default:
5186 ret = -EINVAL;
5187 break;
5188 }
5189
5190 /* bring the ctx back to life */
Jens Axboe206aefd2019-11-07 18:27:42 -07005191 reinit_completion(&ctx->completions[0]);
Jens Axboeedafcce2019-01-09 09:16:05 -07005192 percpu_ref_reinit(&ctx->refs);
5193 return ret;
5194}
5195
5196SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
5197 void __user *, arg, unsigned int, nr_args)
5198{
5199 struct io_ring_ctx *ctx;
5200 long ret = -EBADF;
5201 struct fd f;
5202
5203 f = fdget(fd);
5204 if (!f.file)
5205 return -EBADF;
5206
5207 ret = -EOPNOTSUPP;
5208 if (f.file->f_op != &io_uring_fops)
5209 goto out_fput;
5210
5211 ctx = f.file->private_data;
5212
5213 mutex_lock(&ctx->uring_lock);
5214 ret = __io_uring_register(ctx, opcode, arg, nr_args);
5215 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005216 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
5217 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005218out_fput:
5219 fdput(f);
5220 return ret;
5221}
5222
Jens Axboe2b188cc2019-01-07 10:46:33 -07005223static int __init io_uring_init(void)
5224{
5225 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
5226 return 0;
5227};
5228__initcall(io_uring_init);