blob: c47a08afcee502b3a7ba24e6504a111db3db071f [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
47#include <linux/refcount.h>
48#include <linux/uio.h>
49
50#include <linux/sched/signal.h>
51#include <linux/fs.h>
52#include <linux/file.h>
53#include <linux/fdtable.h>
54#include <linux/mm.h>
55#include <linux/mman.h>
56#include <linux/mmu_context.h>
57#include <linux/percpu.h>
58#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070059#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070060#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070061#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/net.h>
63#include <net/sock.h>
64#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070065#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070066#include <linux/anon_inodes.h>
67#include <linux/sched/mm.h>
68#include <linux/uaccess.h>
69#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070070#include <linux/sizes.h>
71#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070072#include <linux/highmem.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070073
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020074#define CREATE_TRACE_POINTS
75#include <trace/events/io_uring.h>
76
Jens Axboe2b188cc2019-01-07 10:46:33 -070077#include <uapi/linux/io_uring.h>
78
79#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060080#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070081
Daniel Xu5277dea2019-09-14 14:23:45 -070082#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060083#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060084
85/*
86 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
87 */
88#define IORING_FILE_TABLE_SHIFT 9
89#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
90#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
91#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070092
93struct io_uring {
94 u32 head ____cacheline_aligned_in_smp;
95 u32 tail ____cacheline_aligned_in_smp;
96};
97
Stefan Bühler1e84b972019-04-24 23:54:16 +020098/*
Hristo Venev75b28af2019-08-26 17:23:46 +000099 * This data is shared with the application through the mmap at offsets
100 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200101 *
102 * The offsets to the member fields are published through struct
103 * io_sqring_offsets when calling io_uring_setup.
104 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000105struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200106 /*
107 * Head and tail offsets into the ring; the offsets need to be
108 * masked to get valid indices.
109 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000110 * The kernel controls head of the sq ring and the tail of the cq ring,
111 * and the application controls tail of the sq ring and the head of the
112 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200113 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000114 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000116 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200117 * ring_entries - 1)
118 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 u32 sq_ring_mask, cq_ring_mask;
120 /* Ring sizes (constant, power of 2) */
121 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 /*
123 * Number of invalid entries dropped by the kernel due to
124 * invalid index stored in array
125 *
126 * Written by the kernel, shouldn't be modified by the
127 * application (i.e. get number of "new events" by comparing to
128 * cached value).
129 *
130 * After a new SQ head value was read by the application this
131 * counter includes all submissions that were dropped reaching
132 * the new SQ head (and possibly more).
133 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000134 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200135 /*
136 * Runtime flags
137 *
138 * Written by the kernel, shouldn't be modified by the
139 * application.
140 *
141 * The application needs a full memory barrier before checking
142 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
143 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000144 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200145 /*
146 * Number of completion events lost because the queue was full;
147 * this should be avoided by the application by making sure
148 * there are not more requests pending thatn there is space in
149 * the completion queue.
150 *
151 * Written by the kernel, shouldn't be modified by the
152 * application (i.e. get number of "new events" by comparing to
153 * cached value).
154 *
155 * As completion events come in out of order this counter is not
156 * ordered with any other data.
157 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000158 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200159 /*
160 * Ring buffer of completion events.
161 *
162 * The kernel writes completion events fresh every time they are
163 * produced, so the application is allowed to modify pending
164 * entries.
165 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000166 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700167};
168
Jens Axboeedafcce2019-01-09 09:16:05 -0700169struct io_mapped_ubuf {
170 u64 ubuf;
171 size_t len;
172 struct bio_vec *bvec;
173 unsigned int nr_bvecs;
174};
175
Jens Axboe65e19f52019-10-26 07:20:21 -0600176struct fixed_file_table {
177 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700178};
179
Jens Axboe2b188cc2019-01-07 10:46:33 -0700180struct io_ring_ctx {
181 struct {
182 struct percpu_ref refs;
183 } ____cacheline_aligned_in_smp;
184
185 struct {
186 unsigned int flags;
187 bool compat;
188 bool account_mem;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700189 bool cq_overflow_flushed;
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300190 bool drain_next;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700191
Hristo Venev75b28af2019-08-26 17:23:46 +0000192 /*
193 * Ring buffer of indices into array of io_uring_sqe, which is
194 * mmapped by the application using the IORING_OFF_SQES offset.
195 *
196 * This indirection could e.g. be used to assign fixed
197 * io_uring_sqe entries to operations and only submit them to
198 * the queue when needed.
199 *
200 * The kernel modifies neither the indices array nor the entries
201 * array.
202 */
203 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700204 unsigned cached_sq_head;
205 unsigned sq_entries;
206 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700207 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600208 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700209 atomic_t cached_cq_overflow;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700210 struct io_uring_sqe *sq_sqes;
Jens Axboede0617e2019-04-06 21:51:27 -0600211
212 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600213 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700214 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700215
Jens Axboefcb323c2019-10-24 12:39:47 -0600216 wait_queue_head_t inflight_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700217 } ____cacheline_aligned_in_smp;
218
Hristo Venev75b28af2019-08-26 17:23:46 +0000219 struct io_rings *rings;
220
Jens Axboe2b188cc2019-01-07 10:46:33 -0700221 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600222 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700223 struct task_struct *sqo_thread; /* if using sq thread polling */
224 struct mm_struct *sqo_mm;
225 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700226
Jens Axboe6b063142019-01-10 22:13:58 -0700227 /*
228 * If used, fixed file set. Writers must ensure that ->refs is dead,
229 * readers must ensure that ->refs is alive as long as the file* is
230 * used. Only updated through io_uring_register(2).
231 */
Jens Axboe65e19f52019-10-26 07:20:21 -0600232 struct fixed_file_table *file_table;
Jens Axboe6b063142019-01-10 22:13:58 -0700233 unsigned nr_user_files;
234
Jens Axboeedafcce2019-01-09 09:16:05 -0700235 /* if used, fixed mapped user buffers */
236 unsigned nr_user_bufs;
237 struct io_mapped_ubuf *user_bufs;
238
Jens Axboe2b188cc2019-01-07 10:46:33 -0700239 struct user_struct *user;
240
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700241 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700242
Jens Axboe206aefd2019-11-07 18:27:42 -0700243 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
244 struct completion *completions;
245
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700246 /* if all else fails... */
247 struct io_kiocb *fallback_req;
248
Jens Axboe206aefd2019-11-07 18:27:42 -0700249#if defined(CONFIG_UNIX)
250 struct socket *ring_sock;
251#endif
252
253 struct {
254 unsigned cached_cq_tail;
255 unsigned cq_entries;
256 unsigned cq_mask;
257 atomic_t cq_timeouts;
258 struct wait_queue_head cq_wait;
259 struct fasync_struct *cq_fasync;
260 struct eventfd_ctx *cq_ev_fd;
261 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700262
263 struct {
264 struct mutex uring_lock;
265 wait_queue_head_t wait;
266 } ____cacheline_aligned_in_smp;
267
268 struct {
269 spinlock_t completion_lock;
Jens Axboedef596e2019-01-09 08:59:42 -0700270 bool poll_multi_file;
271 /*
272 * ->poll_list is protected by the ctx->uring_lock for
273 * io_uring instances that don't use IORING_SETUP_SQPOLL.
274 * For SQPOLL, only the single threaded io_sq_thread() will
275 * manipulate the list, hence no extra locking is needed there.
276 */
277 struct list_head poll_list;
Jens Axboeeac406c2019-11-14 12:09:58 -0700278 struct rb_root cancel_tree;
Jens Axboefcb323c2019-10-24 12:39:47 -0600279
280 spinlock_t inflight_lock;
281 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700282 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700283};
284
Jens Axboe09bb8392019-03-13 12:39:28 -0600285/*
286 * First field must be the file pointer in all the
287 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
288 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700289struct io_poll_iocb {
290 struct file *file;
291 struct wait_queue_head *head;
292 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600293 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700294 bool canceled;
Jens Axboee9444752019-11-26 15:02:04 -0700295 struct wait_queue_entry *wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700296};
297
Jens Axboead8a48a2019-11-15 08:49:11 -0700298struct io_timeout_data {
299 struct io_kiocb *req;
300 struct hrtimer timer;
301 struct timespec64 ts;
302 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300303 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700304};
305
Jens Axboe5262f562019-09-17 12:26:57 -0600306struct io_timeout {
307 struct file *file;
Jens Axboead8a48a2019-11-15 08:49:11 -0700308 struct io_timeout_data *data;
Jens Axboe5262f562019-09-17 12:26:57 -0600309};
310
Jens Axboef499a022019-12-02 16:28:46 -0700311struct io_async_connect {
312 struct sockaddr_storage address;
313};
314
Jens Axboe03b12302019-12-02 18:50:25 -0700315struct io_async_msghdr {
316 struct iovec fast_iov[UIO_FASTIOV];
317 struct iovec *iov;
318 struct sockaddr __user *uaddr;
319 struct msghdr msg;
320};
321
Jens Axboef67676d2019-12-02 11:03:47 -0700322struct io_async_rw {
323 struct iovec fast_iov[UIO_FASTIOV];
324 struct iovec *iov;
325 ssize_t nr_segs;
326 ssize_t size;
327};
328
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700329struct io_async_ctx {
330 struct io_uring_sqe sqe;
Jens Axboef67676d2019-12-02 11:03:47 -0700331 union {
332 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700333 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700334 struct io_async_connect connect;
Jens Axboef67676d2019-12-02 11:03:47 -0700335 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700336};
337
Jens Axboe09bb8392019-03-13 12:39:28 -0600338/*
339 * NOTE! Each of the iocb union members has the file pointer
340 * as the first entry in their struct definition. So you can
341 * access the file pointer through any of the sub-structs,
342 * or directly as just 'ki_filp' in this struct.
343 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700344struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700345 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600346 struct file *file;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700347 struct kiocb rw;
348 struct io_poll_iocb poll;
Jens Axboe5262f562019-09-17 12:26:57 -0600349 struct io_timeout timeout;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700350 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700351
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300352 const struct io_uring_sqe *sqe;
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700353 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300354 struct file *ring_file;
355 int ring_fd;
356 bool has_user;
357 bool in_async;
358 bool needs_fixed_file;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700359
360 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700361 union {
362 struct list_head list;
363 struct rb_node rb_node;
364 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600365 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700366 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700367 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200368#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700369#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700370#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700371#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200372#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
373#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600374#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700375#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800376#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300377#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600378#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600379#define REQ_F_ISREG 2048 /* regular file */
380#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700381#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800382#define REQ_F_INFLIGHT 16384 /* on inflight list */
383#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700384 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600385 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600386 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700387
Jens Axboefcb323c2019-10-24 12:39:47 -0600388 struct list_head inflight_entry;
389
Jens Axboe561fb042019-10-24 07:25:42 -0600390 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700391};
392
393#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700394#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700395
Jens Axboe9a56a232019-01-09 09:06:50 -0700396struct io_submit_state {
397 struct blk_plug plug;
398
399 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700400 * io_kiocb alloc cache
401 */
402 void *reqs[IO_IOPOLL_BATCH];
403 unsigned int free_reqs;
404 unsigned int cur_req;
405
406 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700407 * File reference cache
408 */
409 struct file *file;
410 unsigned int fd;
411 unsigned int has_refs;
412 unsigned int used_refs;
413 unsigned int ios_left;
414};
415
Jens Axboe561fb042019-10-24 07:25:42 -0600416static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700417static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liu4fe2c962019-09-09 20:50:40 +0800418static void __io_free_req(struct io_kiocb *req);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800419static void io_put_req(struct io_kiocb *req);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700420static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700421static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700422static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
423static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600424
Jens Axboe2b188cc2019-01-07 10:46:33 -0700425static struct kmem_cache *req_cachep;
426
427static const struct file_operations io_uring_fops;
428
429struct sock *io_uring_get_socket(struct file *file)
430{
431#if defined(CONFIG_UNIX)
432 if (file->f_op == &io_uring_fops) {
433 struct io_ring_ctx *ctx = file->private_data;
434
435 return ctx->ring_sock->sk;
436 }
437#endif
438 return NULL;
439}
440EXPORT_SYMBOL(io_uring_get_socket);
441
442static void io_ring_ctx_ref_free(struct percpu_ref *ref)
443{
444 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
445
Jens Axboe206aefd2019-11-07 18:27:42 -0700446 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700447}
448
449static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
450{
451 struct io_ring_ctx *ctx;
452
453 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
454 if (!ctx)
455 return NULL;
456
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700457 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
458 if (!ctx->fallback_req)
459 goto err;
460
Jens Axboe206aefd2019-11-07 18:27:42 -0700461 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
462 if (!ctx->completions)
463 goto err;
464
Roman Gushchin21482892019-05-07 10:01:48 -0700465 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700466 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
467 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700468
469 ctx->flags = p->flags;
470 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700471 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700472 init_completion(&ctx->completions[0]);
473 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700474 mutex_init(&ctx->uring_lock);
475 init_waitqueue_head(&ctx->wait);
476 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700477 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboeeac406c2019-11-14 12:09:58 -0700478 ctx->cancel_tree = RB_ROOT;
Jens Axboede0617e2019-04-06 21:51:27 -0600479 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600480 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600481 init_waitqueue_head(&ctx->inflight_wait);
482 spin_lock_init(&ctx->inflight_lock);
483 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700484 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700485err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700486 if (ctx->fallback_req)
487 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700488 kfree(ctx->completions);
489 kfree(ctx);
490 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700491}
492
Bob Liu9d858b22019-11-13 18:06:25 +0800493static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600494{
Jackie Liua197f662019-11-08 08:09:12 -0700495 struct io_ring_ctx *ctx = req->ctx;
496
Jens Axboe498ccd92019-10-25 10:04:25 -0600497 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
498 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600499}
500
Bob Liu9d858b22019-11-13 18:06:25 +0800501static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600502{
Bob Liu9d858b22019-11-13 18:06:25 +0800503 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
504 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600505
Bob Liu9d858b22019-11-13 18:06:25 +0800506 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600507}
508
509static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600510{
511 struct io_kiocb *req;
512
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600513 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800514 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600515 list_del_init(&req->list);
516 return req;
517 }
518
519 return NULL;
520}
521
Jens Axboe5262f562019-09-17 12:26:57 -0600522static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
523{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600524 struct io_kiocb *req;
525
526 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700527 if (req) {
528 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
529 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800530 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700531 list_del_init(&req->list);
532 return req;
533 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600534 }
535
536 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600537}
538
Jens Axboede0617e2019-04-06 21:51:27 -0600539static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700540{
Hristo Venev75b28af2019-08-26 17:23:46 +0000541 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700542
Hristo Venev75b28af2019-08-26 17:23:46 +0000543 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700544 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000545 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700546
Jens Axboe2b188cc2019-01-07 10:46:33 -0700547 if (wq_has_sleeper(&ctx->cq_wait)) {
548 wake_up_interruptible(&ctx->cq_wait);
549 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
550 }
551 }
552}
553
Jens Axboe561fb042019-10-24 07:25:42 -0600554static inline bool io_sqe_needs_user(const struct io_uring_sqe *sqe)
Jens Axboe18d9be12019-09-10 09:13:05 -0600555{
Jens Axboe561fb042019-10-24 07:25:42 -0600556 u8 opcode = READ_ONCE(sqe->opcode);
557
558 return !(opcode == IORING_OP_READ_FIXED ||
559 opcode == IORING_OP_WRITE_FIXED);
560}
561
Jens Axboe94ae5e72019-11-14 19:39:52 -0700562static inline bool io_prep_async_work(struct io_kiocb *req,
563 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600564{
565 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600566
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300567 if (req->sqe) {
568 switch (req->sqe->opcode) {
Jens Axboe6cc47d12019-09-18 11:18:23 -0600569 case IORING_OP_WRITEV:
570 case IORING_OP_WRITE_FIXED:
Jens Axboe561fb042019-10-24 07:25:42 -0600571 do_hashed = true;
Jens Axboe5f8fd2d2019-11-07 10:57:36 -0700572 /* fall-through */
573 case IORING_OP_READV:
574 case IORING_OP_READ_FIXED:
575 case IORING_OP_SENDMSG:
576 case IORING_OP_RECVMSG:
577 case IORING_OP_ACCEPT:
578 case IORING_OP_POLL_ADD:
Jens Axboef8e85cf2019-11-23 14:24:24 -0700579 case IORING_OP_CONNECT:
Jens Axboe5f8fd2d2019-11-07 10:57:36 -0700580 /*
581 * We know REQ_F_ISREG is not set on some of these
582 * opcodes, but this enables us to keep the check in
583 * just one place.
584 */
585 if (!(req->flags & REQ_F_ISREG))
586 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe6cc47d12019-09-18 11:18:23 -0600587 break;
588 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300589 if (io_sqe_needs_user(req->sqe))
Jens Axboe561fb042019-10-24 07:25:42 -0600590 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600591 }
592
Jens Axboe94ae5e72019-11-14 19:39:52 -0700593 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600594 return do_hashed;
595}
596
Jackie Liua197f662019-11-08 08:09:12 -0700597static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600598{
Jackie Liua197f662019-11-08 08:09:12 -0700599 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700600 struct io_kiocb *link;
601 bool do_hashed;
602
603 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600604
605 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
606 req->flags);
607 if (!do_hashed) {
608 io_wq_enqueue(ctx->io_wq, &req->work);
609 } else {
610 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
611 file_inode(req->file));
612 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700613
614 if (link)
615 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600616}
617
Jens Axboe5262f562019-09-17 12:26:57 -0600618static void io_kill_timeout(struct io_kiocb *req)
619{
620 int ret;
621
Jens Axboead8a48a2019-11-15 08:49:11 -0700622 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600623 if (ret != -1) {
624 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600625 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700626 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800627 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600628 }
629}
630
631static void io_kill_timeouts(struct io_ring_ctx *ctx)
632{
633 struct io_kiocb *req, *tmp;
634
635 spin_lock_irq(&ctx->completion_lock);
636 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
637 io_kill_timeout(req);
638 spin_unlock_irq(&ctx->completion_lock);
639}
640
Jens Axboede0617e2019-04-06 21:51:27 -0600641static void io_commit_cqring(struct io_ring_ctx *ctx)
642{
643 struct io_kiocb *req;
644
Jens Axboe5262f562019-09-17 12:26:57 -0600645 while ((req = io_get_timeout_req(ctx)) != NULL)
646 io_kill_timeout(req);
647
Jens Axboede0617e2019-04-06 21:51:27 -0600648 __io_commit_cqring(ctx);
649
650 while ((req = io_get_deferred_req(ctx)) != NULL) {
651 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700652 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600653 }
654}
655
Jens Axboe2b188cc2019-01-07 10:46:33 -0700656static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
657{
Hristo Venev75b28af2019-08-26 17:23:46 +0000658 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700659 unsigned tail;
660
661 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200662 /*
663 * writes to the cq entry need to come after reading head; the
664 * control dependency is enough as we're using WRITE_ONCE to
665 * fill the cq entry
666 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000667 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700668 return NULL;
669
670 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000671 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700672}
673
Jens Axboe8c838782019-03-12 15:48:16 -0600674static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
675{
676 if (waitqueue_active(&ctx->wait))
677 wake_up(&ctx->wait);
678 if (waitqueue_active(&ctx->sqo_wait))
679 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600680 if (ctx->cq_ev_fd)
681 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600682}
683
Jens Axboec4a2ed72019-11-21 21:01:26 -0700684/* Returns true if there are no backlogged entries after the flush */
685static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700686{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700687 struct io_rings *rings = ctx->rings;
688 struct io_uring_cqe *cqe;
689 struct io_kiocb *req;
690 unsigned long flags;
691 LIST_HEAD(list);
692
693 if (!force) {
694 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700695 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700696 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
697 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700698 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700699 }
700
701 spin_lock_irqsave(&ctx->completion_lock, flags);
702
703 /* if force is set, the ring is going away. always drop after that */
704 if (force)
705 ctx->cq_overflow_flushed = true;
706
Jens Axboec4a2ed72019-11-21 21:01:26 -0700707 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700708 while (!list_empty(&ctx->cq_overflow_list)) {
709 cqe = io_get_cqring(ctx);
710 if (!cqe && !force)
711 break;
712
713 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
714 list);
715 list_move(&req->list, &list);
716 if (cqe) {
717 WRITE_ONCE(cqe->user_data, req->user_data);
718 WRITE_ONCE(cqe->res, req->result);
719 WRITE_ONCE(cqe->flags, 0);
720 } else {
721 WRITE_ONCE(ctx->rings->cq_overflow,
722 atomic_inc_return(&ctx->cached_cq_overflow));
723 }
724 }
725
726 io_commit_cqring(ctx);
727 spin_unlock_irqrestore(&ctx->completion_lock, flags);
728 io_cqring_ev_posted(ctx);
729
730 while (!list_empty(&list)) {
731 req = list_first_entry(&list, struct io_kiocb, list);
732 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800733 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700734 }
Jens Axboec4a2ed72019-11-21 21:01:26 -0700735
736 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700737}
738
Jens Axboe78e19bb2019-11-06 15:21:34 -0700739static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700740{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700741 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700742 struct io_uring_cqe *cqe;
743
Jens Axboe78e19bb2019-11-06 15:21:34 -0700744 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -0700745
Jens Axboe2b188cc2019-01-07 10:46:33 -0700746 /*
747 * If we can't get a cq entry, userspace overflowed the
748 * submission (by quite a lot). Increment the overflow count in
749 * the ring.
750 */
751 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700752 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700753 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700754 WRITE_ONCE(cqe->res, res);
755 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700756 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700757 WRITE_ONCE(ctx->rings->cq_overflow,
758 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700759 } else {
760 refcount_inc(&req->refs);
761 req->result = res;
762 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700763 }
764}
765
Jens Axboe78e19bb2019-11-06 15:21:34 -0700766static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700767{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700768 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700769 unsigned long flags;
770
771 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700772 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700773 io_commit_cqring(ctx);
774 spin_unlock_irqrestore(&ctx->completion_lock, flags);
775
Jens Axboe8c838782019-03-12 15:48:16 -0600776 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700777}
778
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700779static inline bool io_is_fallback_req(struct io_kiocb *req)
780{
781 return req == (struct io_kiocb *)
782 ((unsigned long) req->ctx->fallback_req & ~1UL);
783}
784
785static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
786{
787 struct io_kiocb *req;
788
789 req = ctx->fallback_req;
790 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
791 return req;
792
793 return NULL;
794}
795
Jens Axboe2579f912019-01-09 09:10:43 -0700796static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
797 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700798{
Jens Axboefd6fab22019-03-14 16:30:06 -0600799 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700800 struct io_kiocb *req;
801
802 if (!percpu_ref_tryget(&ctx->refs))
803 return NULL;
804
Jens Axboe2579f912019-01-09 09:10:43 -0700805 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -0600806 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -0700807 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700808 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -0700809 } else if (!state->free_reqs) {
810 size_t sz;
811 int ret;
812
813 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -0600814 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
815
816 /*
817 * Bulk alloc is all-or-nothing. If we fail to get a batch,
818 * retry single alloc to be on the safe side.
819 */
820 if (unlikely(ret <= 0)) {
821 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
822 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700823 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -0600824 ret = 1;
825 }
Jens Axboe2579f912019-01-09 09:10:43 -0700826 state->free_reqs = ret - 1;
827 state->cur_req = 1;
828 req = state->reqs[0];
829 } else {
830 req = state->reqs[state->cur_req];
831 state->free_reqs--;
832 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700833 }
834
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700835got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700836 req->io = NULL;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300837 req->ring_file = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -0600838 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -0700839 req->ctx = ctx;
840 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -0600841 /* one is dropped after submission, the other at completion */
842 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -0600843 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -0600844 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -0700845 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700846fallback:
847 req = io_get_fallback_req(ctx);
848 if (req)
849 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +0300850 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700851 return NULL;
852}
853
Jens Axboedef596e2019-01-09 08:59:42 -0700854static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
855{
856 if (*nr) {
857 kmem_cache_free_bulk(req_cachep, *nr, reqs);
Pavel Begunkov6805b322019-10-08 02:18:42 +0300858 percpu_ref_put_many(&ctx->refs, *nr);
Jens Axboedef596e2019-01-09 08:59:42 -0700859 *nr = 0;
860 }
861}
862
Jens Axboe9e645e112019-05-10 16:07:28 -0600863static void __io_free_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700864{
Jens Axboefcb323c2019-10-24 12:39:47 -0600865 struct io_ring_ctx *ctx = req->ctx;
866
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700867 if (req->io)
868 kfree(req->io);
Jens Axboe09bb8392019-03-13 12:39:28 -0600869 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
870 fput(req->file);
Jens Axboefcb323c2019-10-24 12:39:47 -0600871 if (req->flags & REQ_F_INFLIGHT) {
872 unsigned long flags;
873
874 spin_lock_irqsave(&ctx->inflight_lock, flags);
875 list_del(&req->inflight_entry);
876 if (waitqueue_active(&ctx->inflight_wait))
877 wake_up(&ctx->inflight_wait);
878 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
879 }
Jens Axboead8a48a2019-11-15 08:49:11 -0700880 if (req->flags & REQ_F_TIMEOUT)
881 kfree(req->timeout.data);
Jens Axboefcb323c2019-10-24 12:39:47 -0600882 percpu_ref_put(&ctx->refs);
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700883 if (likely(!io_is_fallback_req(req)))
884 kmem_cache_free(req_cachep, req);
885 else
886 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -0600887}
888
Jackie Liua197f662019-11-08 08:09:12 -0700889static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -0600890{
Jackie Liua197f662019-11-08 08:09:12 -0700891 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700892 int ret;
893
Jens Axboead8a48a2019-11-15 08:49:11 -0700894 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe2665abf2019-11-05 12:40:47 -0700895 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700896 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -0700897 io_commit_cqring(ctx);
898 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +0800899 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -0700900 return true;
901 }
902
903 return false;
904}
905
Jens Axboeba816ad2019-09-28 11:36:45 -0600906static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -0600907{
Jens Axboe2665abf2019-11-05 12:40:47 -0700908 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -0600909 struct io_kiocb *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -0700910 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -0600911
Jens Axboe4d7dd462019-11-20 13:03:52 -0700912 /* Already got next link */
913 if (req->flags & REQ_F_LINK_NEXT)
914 return;
915
Jens Axboe9e645e112019-05-10 16:07:28 -0600916 /*
917 * The list should never be empty when we are called here. But could
918 * potentially happen if the chain is messed up, check to be on the
919 * safe side.
920 */
921 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb, list);
Jens Axboe2665abf2019-11-05 12:40:47 -0700922 while (nxt) {
Jens Axboe76a46e02019-11-10 23:34:16 -0700923 list_del_init(&nxt->list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700924
925 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
926 (nxt->flags & REQ_F_TIMEOUT)) {
927 wake_ev |= io_link_cancel_timeout(nxt);
928 nxt = list_first_entry_or_null(&req->link_list,
929 struct io_kiocb, list);
930 req->flags &= ~REQ_F_LINK_TIMEOUT;
931 continue;
932 }
Jens Axboe9e645e112019-05-10 16:07:28 -0600933 if (!list_empty(&req->link_list)) {
934 INIT_LIST_HEAD(&nxt->link_list);
935 list_splice(&req->link_list, &nxt->link_list);
936 nxt->flags |= REQ_F_LINK;
937 }
938
Pavel Begunkovb18fdf72019-11-21 23:21:02 +0300939 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700940 break;
Jens Axboe9e645e112019-05-10 16:07:28 -0600941 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700942
Jens Axboe4d7dd462019-11-20 13:03:52 -0700943 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -0700944 if (wake_ev)
945 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600946}
947
948/*
949 * Called if REQ_F_LINK is set, and we fail the head request
950 */
951static void io_fail_links(struct io_kiocb *req)
952{
Jens Axboe2665abf2019-11-05 12:40:47 -0700953 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -0600954 struct io_kiocb *link;
Jens Axboe2665abf2019-11-05 12:40:47 -0700955 unsigned long flags;
956
957 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -0600958
959 while (!list_empty(&req->link_list)) {
960 link = list_first_entry(&req->link_list, struct io_kiocb, list);
Jens Axboe2665abf2019-11-05 12:40:47 -0700961 list_del_init(&link->list);
Jens Axboe9e645e112019-05-10 16:07:28 -0600962
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +0200963 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700964
965 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300966 link->sqe->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -0700967 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700968 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700969 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -0700970 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -0700971 }
Jens Axboe5d960722019-11-19 15:31:28 -0700972 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -0600973 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700974
975 io_commit_cqring(ctx);
976 spin_unlock_irqrestore(&ctx->completion_lock, flags);
977 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600978}
979
Jens Axboe4d7dd462019-11-20 13:03:52 -0700980static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -0600981{
Jens Axboe4d7dd462019-11-20 13:03:52 -0700982 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -0700983 return;
Jens Axboe2665abf2019-11-05 12:40:47 -0700984
Jens Axboe9e645e112019-05-10 16:07:28 -0600985 /*
986 * If LINK is set, we have dependent requests in this chain. If we
987 * didn't fail this request, queue the first one up, moving any other
988 * dependencies to the next request. In case of failure, fail the rest
989 * of the chain.
990 */
Jens Axboe2665abf2019-11-05 12:40:47 -0700991 if (req->flags & REQ_F_FAIL_LINK) {
992 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -0700993 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
994 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -0700995 struct io_ring_ctx *ctx = req->ctx;
996 unsigned long flags;
997
998 /*
999 * If this is a timeout link, we could be racing with the
1000 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001001 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001002 */
1003 spin_lock_irqsave(&ctx->completion_lock, flags);
1004 io_req_link_next(req, nxt);
1005 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1006 } else {
1007 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001008 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001009}
Jens Axboe9e645e112019-05-10 16:07:28 -06001010
Jackie Liuc69f8db2019-11-09 11:00:08 +08001011static void io_free_req(struct io_kiocb *req)
1012{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001013 struct io_kiocb *nxt = NULL;
1014
1015 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001016 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001017
1018 if (nxt)
1019 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001020}
1021
Jens Axboeba816ad2019-09-28 11:36:45 -06001022/*
1023 * Drop reference to request, return next in chain (if there is one) if this
1024 * was the last reference to this request.
1025 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001026__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001027static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001028{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001029 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001030
Jens Axboee65ef562019-03-12 10:16:44 -06001031 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001032 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001033}
1034
Jens Axboe2b188cc2019-01-07 10:46:33 -07001035static void io_put_req(struct io_kiocb *req)
1036{
Jens Axboedef596e2019-01-09 08:59:42 -07001037 if (refcount_dec_and_test(&req->refs))
1038 io_free_req(req);
1039}
1040
Jens Axboe978db572019-11-14 22:39:04 -07001041/*
1042 * Must only be used if we don't need to care about links, usually from
1043 * within the completion handling itself.
1044 */
1045static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001046{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001047 /* drop both submit and complete references */
1048 if (refcount_sub_and_test(2, &req->refs))
1049 __io_free_req(req);
1050}
1051
Jens Axboe978db572019-11-14 22:39:04 -07001052static void io_double_put_req(struct io_kiocb *req)
1053{
1054 /* drop both submit and complete references */
1055 if (refcount_sub_and_test(2, &req->refs))
1056 io_free_req(req);
1057}
1058
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001059static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001060{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001061 struct io_rings *rings = ctx->rings;
1062
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001063 /*
1064 * noflush == true is from the waitqueue handler, just ensure we wake
1065 * up the task, and the next invocation will flush the entries. We
1066 * cannot safely to it from here.
1067 */
1068 if (noflush && !list_empty(&ctx->cq_overflow_list))
1069 return -1U;
1070
1071 io_cqring_overflow_flush(ctx, false);
1072
Jens Axboea3a0e432019-08-20 11:03:11 -06001073 /* See comment at the top of this file */
1074 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00001075 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001076}
1077
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001078static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1079{
1080 struct io_rings *rings = ctx->rings;
1081
1082 /* make sure SQ entry isn't read before tail */
1083 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1084}
1085
Jens Axboedef596e2019-01-09 08:59:42 -07001086/*
1087 * Find and free completed poll iocbs
1088 */
1089static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1090 struct list_head *done)
1091{
1092 void *reqs[IO_IOPOLL_BATCH];
1093 struct io_kiocb *req;
Jens Axboe09bb8392019-03-13 12:39:28 -06001094 int to_free;
Jens Axboedef596e2019-01-09 08:59:42 -07001095
Jens Axboe09bb8392019-03-13 12:39:28 -06001096 to_free = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001097 while (!list_empty(done)) {
1098 req = list_first_entry(done, struct io_kiocb, list);
1099 list_del(&req->list);
1100
Jens Axboe78e19bb2019-11-06 15:21:34 -07001101 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001102 (*nr_events)++;
1103
Jens Axboe09bb8392019-03-13 12:39:28 -06001104 if (refcount_dec_and_test(&req->refs)) {
1105 /* If we're not using fixed files, we have to pair the
1106 * completion part with the file put. Use regular
1107 * completions for those, only batch free for fixed
Jens Axboe9e645e112019-05-10 16:07:28 -06001108 * file and non-linked commands.
Jens Axboe09bb8392019-03-13 12:39:28 -06001109 */
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001110 if (((req->flags & (REQ_F_FIXED_FILE|REQ_F_LINK)) ==
1111 REQ_F_FIXED_FILE) && !io_is_fallback_req(req) &&
1112 !req->io) {
Jens Axboe09bb8392019-03-13 12:39:28 -06001113 reqs[to_free++] = req;
1114 if (to_free == ARRAY_SIZE(reqs))
1115 io_free_req_many(ctx, reqs, &to_free);
Jens Axboe6b063142019-01-10 22:13:58 -07001116 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001117 io_free_req(req);
Jens Axboe6b063142019-01-10 22:13:58 -07001118 }
Jens Axboe9a56a232019-01-09 09:06:50 -07001119 }
Jens Axboedef596e2019-01-09 08:59:42 -07001120 }
Jens Axboedef596e2019-01-09 08:59:42 -07001121
Jens Axboe09bb8392019-03-13 12:39:28 -06001122 io_commit_cqring(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07001123 io_free_req_many(ctx, reqs, &to_free);
1124}
1125
1126static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1127 long min)
1128{
1129 struct io_kiocb *req, *tmp;
1130 LIST_HEAD(done);
1131 bool spin;
1132 int ret;
1133
1134 /*
1135 * Only spin for completions if we don't have multiple devices hanging
1136 * off our complete list, and we're under the requested amount.
1137 */
1138 spin = !ctx->poll_multi_file && *nr_events < min;
1139
1140 ret = 0;
1141 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
1142 struct kiocb *kiocb = &req->rw;
1143
1144 /*
1145 * Move completed entries to our local list. If we find a
1146 * request that requires polling, break out and complete
1147 * the done list first, if we have entries there.
1148 */
1149 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1150 list_move_tail(&req->list, &done);
1151 continue;
1152 }
1153 if (!list_empty(&done))
1154 break;
1155
1156 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1157 if (ret < 0)
1158 break;
1159
1160 if (ret && spin)
1161 spin = false;
1162 ret = 0;
1163 }
1164
1165 if (!list_empty(&done))
1166 io_iopoll_complete(ctx, nr_events, &done);
1167
1168 return ret;
1169}
1170
1171/*
1172 * Poll for a mininum of 'min' events. Note that if min == 0 we consider that a
1173 * non-spinning poll check - we'll still enter the driver poll loop, but only
1174 * as a non-spinning completion check.
1175 */
1176static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1177 long min)
1178{
Jens Axboe08f54392019-08-21 22:19:11 -06001179 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001180 int ret;
1181
1182 ret = io_do_iopoll(ctx, nr_events, min);
1183 if (ret < 0)
1184 return ret;
1185 if (!min || *nr_events >= min)
1186 return 0;
1187 }
1188
1189 return 1;
1190}
1191
1192/*
1193 * We can't just wait for polled events to come to us, we have to actively
1194 * find and complete them.
1195 */
1196static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1197{
1198 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1199 return;
1200
1201 mutex_lock(&ctx->uring_lock);
1202 while (!list_empty(&ctx->poll_list)) {
1203 unsigned int nr_events = 0;
1204
1205 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001206
1207 /*
1208 * Ensure we allow local-to-the-cpu processing to take place,
1209 * in this case we need to ensure that we reap all events.
1210 */
1211 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001212 }
1213 mutex_unlock(&ctx->uring_lock);
1214}
1215
Jens Axboe2b2ed972019-10-25 10:06:15 -06001216static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1217 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001218{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001219 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001220
1221 do {
1222 int tmin = 0;
1223
Jens Axboe500f9fb2019-08-19 12:15:59 -06001224 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001225 * Don't enter poll loop if we already have events pending.
1226 * If we do, we can potentially be spinning for commands that
1227 * already triggered a CQE (eg in error).
1228 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001229 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001230 break;
1231
1232 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001233 * If a submit got punted to a workqueue, we can have the
1234 * application entering polling for a command before it gets
1235 * issued. That app will hold the uring_lock for the duration
1236 * of the poll right here, so we need to take a breather every
1237 * now and then to ensure that the issue has a chance to add
1238 * the poll to the issued list. Otherwise we can spin here
1239 * forever, while the workqueue is stuck trying to acquire the
1240 * very same mutex.
1241 */
1242 if (!(++iters & 7)) {
1243 mutex_unlock(&ctx->uring_lock);
1244 mutex_lock(&ctx->uring_lock);
1245 }
1246
Jens Axboedef596e2019-01-09 08:59:42 -07001247 if (*nr_events < min)
1248 tmin = min - *nr_events;
1249
1250 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1251 if (ret <= 0)
1252 break;
1253 ret = 0;
1254 } while (min && !*nr_events && !need_resched());
1255
Jens Axboe2b2ed972019-10-25 10:06:15 -06001256 return ret;
1257}
1258
1259static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1260 long min)
1261{
1262 int ret;
1263
1264 /*
1265 * We disallow the app entering submit/complete with polling, but we
1266 * still need to lock the ring to prevent racing with polled issue
1267 * that got punted to a workqueue.
1268 */
1269 mutex_lock(&ctx->uring_lock);
1270 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001271 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001272 return ret;
1273}
1274
Jens Axboe491381ce2019-10-17 09:20:46 -06001275static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001276{
Jens Axboe491381ce2019-10-17 09:20:46 -06001277 /*
1278 * Tell lockdep we inherited freeze protection from submission
1279 * thread.
1280 */
1281 if (req->flags & REQ_F_ISREG) {
1282 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001283
Jens Axboe491381ce2019-10-17 09:20:46 -06001284 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001285 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001286 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001287}
1288
Jens Axboeba816ad2019-09-28 11:36:45 -06001289static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001290{
1291 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1292
Jens Axboe491381ce2019-10-17 09:20:46 -06001293 if (kiocb->ki_flags & IOCB_WRITE)
1294 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001295
Jens Axboe9e645e112019-05-10 16:07:28 -06001296 if ((req->flags & REQ_F_LINK) && res != req->result)
1297 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001298 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001299}
1300
1301static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1302{
1303 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1304
1305 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001306 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001307}
1308
Jens Axboeba816ad2019-09-28 11:36:45 -06001309static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1310{
1311 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001312 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001313
1314 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001315 io_put_req_find_next(req, &nxt);
1316
1317 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001318}
1319
Jens Axboedef596e2019-01-09 08:59:42 -07001320static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1321{
1322 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1323
Jens Axboe491381ce2019-10-17 09:20:46 -06001324 if (kiocb->ki_flags & IOCB_WRITE)
1325 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001326
Jens Axboe9e645e112019-05-10 16:07:28 -06001327 if ((req->flags & REQ_F_LINK) && res != req->result)
1328 req->flags |= REQ_F_FAIL_LINK;
1329 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001330 if (res != -EAGAIN)
1331 req->flags |= REQ_F_IOPOLL_COMPLETED;
1332}
1333
1334/*
1335 * After the iocb has been issued, it's safe to be found on the poll list.
1336 * Adding the kiocb to the list AFTER submission ensures that we don't
1337 * find it from a io_iopoll_getevents() thread before the issuer is done
1338 * accessing the kiocb cookie.
1339 */
1340static void io_iopoll_req_issued(struct io_kiocb *req)
1341{
1342 struct io_ring_ctx *ctx = req->ctx;
1343
1344 /*
1345 * Track whether we have multiple files in our lists. This will impact
1346 * how we do polling eventually, not spinning if we're on potentially
1347 * different devices.
1348 */
1349 if (list_empty(&ctx->poll_list)) {
1350 ctx->poll_multi_file = false;
1351 } else if (!ctx->poll_multi_file) {
1352 struct io_kiocb *list_req;
1353
1354 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1355 list);
1356 if (list_req->rw.ki_filp != req->rw.ki_filp)
1357 ctx->poll_multi_file = true;
1358 }
1359
1360 /*
1361 * For fast devices, IO may have already completed. If it has, add
1362 * it to the front so we find it first.
1363 */
1364 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1365 list_add(&req->list, &ctx->poll_list);
1366 else
1367 list_add_tail(&req->list, &ctx->poll_list);
1368}
1369
Jens Axboe3d6770f2019-04-13 11:50:54 -06001370static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001371{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001372 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001373 int diff = state->has_refs - state->used_refs;
1374
1375 if (diff)
1376 fput_many(state->file, diff);
1377 state->file = NULL;
1378 }
1379}
1380
1381/*
1382 * Get as many references to a file as we have IOs left in this submission,
1383 * assuming most submissions are for one file, or at least that each file
1384 * has more than one submission.
1385 */
1386static struct file *io_file_get(struct io_submit_state *state, int fd)
1387{
1388 if (!state)
1389 return fget(fd);
1390
1391 if (state->file) {
1392 if (state->fd == fd) {
1393 state->used_refs++;
1394 state->ios_left--;
1395 return state->file;
1396 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001397 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001398 }
1399 state->file = fget_many(fd, state->ios_left);
1400 if (!state->file)
1401 return NULL;
1402
1403 state->fd = fd;
1404 state->has_refs = state->ios_left;
1405 state->used_refs = 1;
1406 state->ios_left--;
1407 return state->file;
1408}
1409
Jens Axboe2b188cc2019-01-07 10:46:33 -07001410/*
1411 * If we tracked the file through the SCM inflight mechanism, we could support
1412 * any file. For now, just ensure that anything potentially problematic is done
1413 * inline.
1414 */
1415static bool io_file_supports_async(struct file *file)
1416{
1417 umode_t mode = file_inode(file)->i_mode;
1418
1419 if (S_ISBLK(mode) || S_ISCHR(mode))
1420 return true;
1421 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1422 return true;
1423
1424 return false;
1425}
1426
Pavel Begunkov267bc902019-11-07 01:41:08 +03001427static int io_prep_rw(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001428{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001429 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboedef596e2019-01-09 08:59:42 -07001430 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001431 struct kiocb *kiocb = &req->rw;
Jens Axboe09bb8392019-03-13 12:39:28 -06001432 unsigned ioprio;
1433 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001434
Jens Axboe09bb8392019-03-13 12:39:28 -06001435 if (!req->file)
1436 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001437
Jens Axboe491381ce2019-10-17 09:20:46 -06001438 if (S_ISREG(file_inode(req->file)->i_mode))
1439 req->flags |= REQ_F_ISREG;
1440
Jens Axboe2b188cc2019-01-07 10:46:33 -07001441 kiocb->ki_pos = READ_ONCE(sqe->off);
1442 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1443 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1444
1445 ioprio = READ_ONCE(sqe->ioprio);
1446 if (ioprio) {
1447 ret = ioprio_check_cap(ioprio);
1448 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001449 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001450
1451 kiocb->ki_ioprio = ioprio;
1452 } else
1453 kiocb->ki_ioprio = get_current_ioprio();
1454
1455 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1456 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001457 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001458
1459 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001460 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1461 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001462 req->flags |= REQ_F_NOWAIT;
1463
1464 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001465 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001466
Jens Axboedef596e2019-01-09 08:59:42 -07001467 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001468 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1469 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001470 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001471
Jens Axboedef596e2019-01-09 08:59:42 -07001472 kiocb->ki_flags |= IOCB_HIPRI;
1473 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001474 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001475 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001476 if (kiocb->ki_flags & IOCB_HIPRI)
1477 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001478 kiocb->ki_complete = io_complete_rw;
1479 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001480 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001481}
1482
1483static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1484{
1485 switch (ret) {
1486 case -EIOCBQUEUED:
1487 break;
1488 case -ERESTARTSYS:
1489 case -ERESTARTNOINTR:
1490 case -ERESTARTNOHAND:
1491 case -ERESTART_RESTARTBLOCK:
1492 /*
1493 * We can't just restart the syscall, since previously
1494 * submitted sqes may already be in progress. Just fail this
1495 * IO with EINTR.
1496 */
1497 ret = -EINTR;
1498 /* fall through */
1499 default:
1500 kiocb->ki_complete(kiocb, ret, 0);
1501 }
1502}
1503
Jens Axboeba816ad2019-09-28 11:36:45 -06001504static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1505 bool in_async)
1506{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001507 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001508 *nxt = __io_complete_rw(kiocb, ret);
1509 else
1510 io_rw_done(kiocb, ret);
1511}
1512
Pavel Begunkov7d009162019-11-25 23:14:40 +03001513static ssize_t io_import_fixed(struct io_ring_ctx *ctx, int rw,
1514 const struct io_uring_sqe *sqe,
1515 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001516{
1517 size_t len = READ_ONCE(sqe->len);
1518 struct io_mapped_ubuf *imu;
1519 unsigned index, buf_index;
1520 size_t offset;
1521 u64 buf_addr;
1522
1523 /* attempt to use fixed buffers without having provided iovecs */
1524 if (unlikely(!ctx->user_bufs))
1525 return -EFAULT;
1526
1527 buf_index = READ_ONCE(sqe->buf_index);
1528 if (unlikely(buf_index >= ctx->nr_user_bufs))
1529 return -EFAULT;
1530
1531 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1532 imu = &ctx->user_bufs[index];
1533 buf_addr = READ_ONCE(sqe->addr);
1534
1535 /* overflow */
1536 if (buf_addr + len < buf_addr)
1537 return -EFAULT;
1538 /* not inside the mapped region */
1539 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1540 return -EFAULT;
1541
1542 /*
1543 * May not be a start of buffer, set size appropriately
1544 * and advance us to the beginning.
1545 */
1546 offset = buf_addr - imu->ubuf;
1547 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001548
1549 if (offset) {
1550 /*
1551 * Don't use iov_iter_advance() here, as it's really slow for
1552 * using the latter parts of a big fixed buffer - it iterates
1553 * over each segment manually. We can cheat a bit here, because
1554 * we know that:
1555 *
1556 * 1) it's a BVEC iter, we set it up
1557 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1558 * first and last bvec
1559 *
1560 * So just find our index, and adjust the iterator afterwards.
1561 * If the offset is within the first bvec (or the whole first
1562 * bvec, just use iov_iter_advance(). This makes it easier
1563 * since we can just skip the first segment, which may not
1564 * be PAGE_SIZE aligned.
1565 */
1566 const struct bio_vec *bvec = imu->bvec;
1567
1568 if (offset <= bvec->bv_len) {
1569 iov_iter_advance(iter, offset);
1570 } else {
1571 unsigned long seg_skip;
1572
1573 /* skip first vec */
1574 offset -= bvec->bv_len;
1575 seg_skip = 1 + (offset >> PAGE_SHIFT);
1576
1577 iter->bvec = bvec + seg_skip;
1578 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001579 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001580 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001581 }
1582 }
1583
Jens Axboe5e559562019-11-13 16:12:46 -07001584 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001585}
1586
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001587static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1588 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001589{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001590 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001591 void __user *buf = u64_to_user_ptr(READ_ONCE(sqe->addr));
1592 size_t sqe_len = READ_ONCE(sqe->len);
Jens Axboeedafcce2019-01-09 09:16:05 -07001593 u8 opcode;
1594
1595 /*
1596 * We're reading ->opcode for the second time, but the first read
1597 * doesn't care whether it's _FIXED or not, so it doesn't matter
1598 * whether ->opcode changes concurrently. The first read does care
1599 * about whether it is a READ or a WRITE, so we don't trust this read
1600 * for that purpose and instead let the caller pass in the read/write
1601 * flag.
1602 */
1603 opcode = READ_ONCE(sqe->opcode);
Pavel Begunkov7d009162019-11-25 23:14:40 +03001604 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001605 *iovec = NULL;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001606 return io_import_fixed(req->ctx, rw, sqe, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001607 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001608
Jens Axboef67676d2019-12-02 11:03:47 -07001609 if (req->io) {
1610 struct io_async_rw *iorw = &req->io->rw;
1611
1612 *iovec = iorw->iov;
1613 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1614 if (iorw->iov == iorw->fast_iov)
1615 *iovec = NULL;
1616 return iorw->size;
1617 }
1618
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001619 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001620 return -EFAULT;
1621
1622#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001623 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001624 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1625 iovec, iter);
1626#endif
1627
1628 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1629}
1630
Jens Axboe32960612019-09-23 11:05:34 -06001631/*
1632 * For files that don't have ->read_iter() and ->write_iter(), handle them
1633 * by looping over ->read() or ->write() manually.
1634 */
1635static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1636 struct iov_iter *iter)
1637{
1638 ssize_t ret = 0;
1639
1640 /*
1641 * Don't support polled IO through this interface, and we can't
1642 * support non-blocking either. For the latter, this just causes
1643 * the kiocb to be handled from an async context.
1644 */
1645 if (kiocb->ki_flags & IOCB_HIPRI)
1646 return -EOPNOTSUPP;
1647 if (kiocb->ki_flags & IOCB_NOWAIT)
1648 return -EAGAIN;
1649
1650 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001651 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06001652 ssize_t nr;
1653
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001654 if (!iov_iter_is_bvec(iter)) {
1655 iovec = iov_iter_iovec(iter);
1656 } else {
1657 /* fixed buffers import bvec */
1658 iovec.iov_base = kmap(iter->bvec->bv_page)
1659 + iter->iov_offset;
1660 iovec.iov_len = min(iter->count,
1661 iter->bvec->bv_len - iter->iov_offset);
1662 }
1663
Jens Axboe32960612019-09-23 11:05:34 -06001664 if (rw == READ) {
1665 nr = file->f_op->read(file, iovec.iov_base,
1666 iovec.iov_len, &kiocb->ki_pos);
1667 } else {
1668 nr = file->f_op->write(file, iovec.iov_base,
1669 iovec.iov_len, &kiocb->ki_pos);
1670 }
1671
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001672 if (iov_iter_is_bvec(iter))
1673 kunmap(iter->bvec->bv_page);
1674
Jens Axboe32960612019-09-23 11:05:34 -06001675 if (nr < 0) {
1676 if (!ret)
1677 ret = nr;
1678 break;
1679 }
1680 ret += nr;
1681 if (nr != iovec.iov_len)
1682 break;
1683 iov_iter_advance(iter, nr);
1684 }
1685
1686 return ret;
1687}
1688
Jens Axboef67676d2019-12-02 11:03:47 -07001689static void io_req_map_io(struct io_kiocb *req, ssize_t io_size,
1690 struct iovec *iovec, struct iovec *fast_iov,
1691 struct iov_iter *iter)
1692{
1693 req->io->rw.nr_segs = iter->nr_segs;
1694 req->io->rw.size = io_size;
1695 req->io->rw.iov = iovec;
1696 if (!req->io->rw.iov) {
1697 req->io->rw.iov = req->io->rw.fast_iov;
1698 memcpy(req->io->rw.iov, fast_iov,
1699 sizeof(struct iovec) * iter->nr_segs);
1700 }
1701}
1702
1703static int io_setup_async_io(struct io_kiocb *req, ssize_t io_size,
1704 struct iovec *iovec, struct iovec *fast_iov,
1705 struct iov_iter *iter)
1706{
1707 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
1708 if (req->io) {
1709 io_req_map_io(req, io_size, iovec, fast_iov, iter);
1710 memcpy(&req->io->sqe, req->sqe, sizeof(req->io->sqe));
1711 req->sqe = &req->io->sqe;
1712 return 0;
1713 }
1714
1715 return -ENOMEM;
1716}
1717
1718static int io_read_prep(struct io_kiocb *req, struct iovec **iovec,
1719 struct iov_iter *iter, bool force_nonblock)
1720{
1721 ssize_t ret;
1722
1723 ret = io_prep_rw(req, force_nonblock);
1724 if (ret)
1725 return ret;
1726
1727 if (unlikely(!(req->file->f_mode & FMODE_READ)))
1728 return -EBADF;
1729
1730 return io_import_iovec(READ, req, iovec, iter);
1731}
1732
Pavel Begunkov267bc902019-11-07 01:41:08 +03001733static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001734 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001735{
1736 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1737 struct kiocb *kiocb = &req->rw;
1738 struct iov_iter iter;
1739 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001740 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001741 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001742
Jens Axboef67676d2019-12-02 11:03:47 -07001743 if (!req->io) {
1744 ret = io_read_prep(req, &iovec, &iter, force_nonblock);
1745 if (ret < 0)
1746 return ret;
1747 } else {
1748 ret = io_import_iovec(READ, req, &iovec, &iter);
1749 if (ret < 0)
1750 return ret;
1751 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001752
Jens Axboef67676d2019-12-02 11:03:47 -07001753 file = req->file;
1754 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001755 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001756 req->result = io_size;
1757
1758 /*
1759 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1760 * we know to async punt it even if it was opened O_NONBLOCK
1761 */
1762 if (force_nonblock && !io_file_supports_async(file)) {
1763 req->flags |= REQ_F_MUST_PUNT;
1764 goto copy_iov;
1765 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001766
Jens Axboe31b51512019-01-18 22:56:34 -07001767 iov_count = iov_iter_count(&iter);
1768 ret = rw_verify_area(READ, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001769 if (!ret) {
1770 ssize_t ret2;
1771
Jens Axboe32960612019-09-23 11:05:34 -06001772 if (file->f_op->read_iter)
1773 ret2 = call_read_iter(file, kiocb, &iter);
1774 else
1775 ret2 = loop_rw_iter(READ, file, kiocb, &iter);
1776
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001777 /*
1778 * In case of a short read, punt to async. This can happen
1779 * if we have data partially cached. Alternatively we can
1780 * return the short read, in which case the application will
1781 * need to issue another SQE and wait for it. That SQE will
1782 * need async punt anyway, so it's more efficient to do it
1783 * here.
1784 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001785 if (force_nonblock && !(req->flags & REQ_F_NOWAIT) &&
1786 (req->flags & REQ_F_ISREG) &&
Jens Axboef67676d2019-12-02 11:03:47 -07001787 ret2 > 0 && ret2 < io_size)
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001788 ret2 = -EAGAIN;
1789 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07001790 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001791 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001792 } else {
1793copy_iov:
1794 ret = io_setup_async_io(req, io_size, iovec,
1795 inline_vecs, &iter);
1796 if (ret)
1797 goto out_free;
1798 return -EAGAIN;
1799 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001800 }
Jens Axboef67676d2019-12-02 11:03:47 -07001801out_free:
Jens Axboe2b188cc2019-01-07 10:46:33 -07001802 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001803 return ret;
1804}
1805
Jens Axboef67676d2019-12-02 11:03:47 -07001806static int io_write_prep(struct io_kiocb *req, struct iovec **iovec,
1807 struct iov_iter *iter, bool force_nonblock)
1808{
1809 ssize_t ret;
1810
1811 ret = io_prep_rw(req, force_nonblock);
1812 if (ret)
1813 return ret;
1814
1815 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
1816 return -EBADF;
1817
1818 return io_import_iovec(WRITE, req, iovec, iter);
1819}
1820
Pavel Begunkov267bc902019-11-07 01:41:08 +03001821static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001822 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001823{
1824 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1825 struct kiocb *kiocb = &req->rw;
1826 struct iov_iter iter;
1827 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001828 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001829 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001830
Jens Axboef67676d2019-12-02 11:03:47 -07001831 if (!req->io) {
1832 ret = io_write_prep(req, &iovec, &iter, force_nonblock);
1833 if (ret < 0)
1834 return ret;
1835 } else {
1836 ret = io_import_iovec(WRITE, req, &iovec, &iter);
1837 if (ret < 0)
1838 return ret;
1839 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001840
Jens Axboe2b188cc2019-01-07 10:46:33 -07001841 file = kiocb->ki_filp;
Jens Axboef67676d2019-12-02 11:03:47 -07001842 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001843 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001844 req->result = io_size;
1845
1846 /*
1847 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1848 * we know to async punt it even if it was opened O_NONBLOCK
1849 */
1850 if (force_nonblock && !io_file_supports_async(req->file)) {
1851 req->flags |= REQ_F_MUST_PUNT;
1852 goto copy_iov;
1853 }
1854
1855 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT))
1856 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06001857
Jens Axboe31b51512019-01-18 22:56:34 -07001858 iov_count = iov_iter_count(&iter);
Jens Axboe31b51512019-01-18 22:56:34 -07001859 ret = rw_verify_area(WRITE, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001860 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01001861 ssize_t ret2;
1862
Jens Axboe2b188cc2019-01-07 10:46:33 -07001863 /*
1864 * Open-code file_start_write here to grab freeze protection,
1865 * which will be released by another thread in
1866 * io_complete_rw(). Fool lockdep by telling it the lock got
1867 * released so that it doesn't complain about the held lock when
1868 * we return to userspace.
1869 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001870 if (req->flags & REQ_F_ISREG) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001871 __sb_start_write(file_inode(file)->i_sb,
1872 SB_FREEZE_WRITE, true);
1873 __sb_writers_release(file_inode(file)->i_sb,
1874 SB_FREEZE_WRITE);
1875 }
1876 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01001877
Jens Axboe32960612019-09-23 11:05:34 -06001878 if (file->f_op->write_iter)
1879 ret2 = call_write_iter(file, kiocb, &iter);
1880 else
1881 ret2 = loop_rw_iter(WRITE, file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07001882 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001883 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001884 } else {
1885copy_iov:
1886 ret = io_setup_async_io(req, io_size, iovec,
1887 inline_vecs, &iter);
1888 if (ret)
1889 goto out_free;
1890 return -EAGAIN;
1891 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001892 }
Jens Axboe31b51512019-01-18 22:56:34 -07001893out_free:
Jens Axboe2b188cc2019-01-07 10:46:33 -07001894 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001895 return ret;
1896}
1897
1898/*
1899 * IORING_OP_NOP just posts a completion event, nothing else.
1900 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07001901static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001902{
1903 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001904
Jens Axboedef596e2019-01-09 08:59:42 -07001905 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1906 return -EINVAL;
1907
Jens Axboe78e19bb2019-11-06 15:21:34 -07001908 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06001909 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001910 return 0;
1911}
1912
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001913static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1914{
Jens Axboe6b063142019-01-10 22:13:58 -07001915 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001916
Jens Axboe09bb8392019-03-13 12:39:28 -06001917 if (!req->file)
1918 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001919
Jens Axboe6b063142019-01-10 22:13:58 -07001920 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07001921 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07001922 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001923 return -EINVAL;
1924
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001925 return 0;
1926}
1927
1928static int io_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001929 struct io_kiocb **nxt, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001930{
1931 loff_t sqe_off = READ_ONCE(sqe->off);
1932 loff_t sqe_len = READ_ONCE(sqe->len);
1933 loff_t end = sqe_off + sqe_len;
1934 unsigned fsync_flags;
1935 int ret;
1936
1937 fsync_flags = READ_ONCE(sqe->fsync_flags);
1938 if (unlikely(fsync_flags & ~IORING_FSYNC_DATASYNC))
1939 return -EINVAL;
1940
1941 ret = io_prep_fsync(req, sqe);
1942 if (ret)
1943 return ret;
1944
1945 /* fsync always requires a blocking context */
1946 if (force_nonblock)
1947 return -EAGAIN;
1948
1949 ret = vfs_fsync_range(req->rw.ki_filp, sqe_off,
1950 end > 0 ? end : LLONG_MAX,
1951 fsync_flags & IORING_FSYNC_DATASYNC);
1952
Jens Axboe9e645e112019-05-10 16:07:28 -06001953 if (ret < 0 && (req->flags & REQ_F_LINK))
1954 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001955 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001956 io_put_req_find_next(req, nxt);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001957 return 0;
1958}
1959
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001960static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1961{
1962 struct io_ring_ctx *ctx = req->ctx;
1963 int ret = 0;
1964
1965 if (!req->file)
1966 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001967
1968 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1969 return -EINVAL;
1970 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
1971 return -EINVAL;
1972
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001973 return ret;
1974}
1975
1976static int io_sync_file_range(struct io_kiocb *req,
1977 const struct io_uring_sqe *sqe,
Jens Axboeba816ad2019-09-28 11:36:45 -06001978 struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06001979 bool force_nonblock)
1980{
1981 loff_t sqe_off;
1982 loff_t sqe_len;
1983 unsigned flags;
1984 int ret;
1985
1986 ret = io_prep_sfr(req, sqe);
1987 if (ret)
1988 return ret;
1989
1990 /* sync_file_range always requires a blocking context */
1991 if (force_nonblock)
1992 return -EAGAIN;
1993
1994 sqe_off = READ_ONCE(sqe->off);
1995 sqe_len = READ_ONCE(sqe->len);
1996 flags = READ_ONCE(sqe->sync_range_flags);
1997
1998 ret = sync_file_range(req->rw.ki_filp, sqe_off, sqe_len, flags);
1999
Jens Axboe9e645e112019-05-10 16:07:28 -06002000 if (ret < 0 && (req->flags & REQ_F_LINK))
2001 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07002002 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002003 io_put_req_find_next(req, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002004 return 0;
2005}
2006
Jens Axboe03b12302019-12-02 18:50:25 -07002007static int io_sendmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002008{
Jens Axboe03b12302019-12-02 18:50:25 -07002009#if defined(CONFIG_NET)
2010 const struct io_uring_sqe *sqe = req->sqe;
2011 struct user_msghdr __user *msg;
2012 unsigned flags;
2013
2014 flags = READ_ONCE(sqe->msg_flags);
2015 msg = (struct user_msghdr __user *)(unsigned long) READ_ONCE(sqe->addr);
2016 return sendmsg_copy_msghdr(&io->msg.msg, msg, flags, &io->msg.iov);
2017#else
2018 return 0;
2019#endif
2020}
2021
2022static int io_sendmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2023 struct io_kiocb **nxt, bool force_nonblock)
2024{
2025#if defined(CONFIG_NET)
2026 struct socket *sock;
2027 int ret;
2028
2029 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2030 return -EINVAL;
2031
2032 sock = sock_from_file(req->file, &ret);
2033 if (sock) {
2034 struct io_async_ctx io, *copy;
2035 struct sockaddr_storage addr;
2036 struct msghdr *kmsg;
2037 unsigned flags;
2038
2039 flags = READ_ONCE(sqe->msg_flags);
2040 if (flags & MSG_DONTWAIT)
2041 req->flags |= REQ_F_NOWAIT;
2042 else if (force_nonblock)
2043 flags |= MSG_DONTWAIT;
2044
2045 if (req->io) {
2046 kmsg = &req->io->msg.msg;
2047 kmsg->msg_name = &addr;
2048 } else {
2049 kmsg = &io.msg.msg;
2050 kmsg->msg_name = &addr;
2051 io.msg.iov = io.msg.fast_iov;
2052 ret = io_sendmsg_prep(req, &io);
2053 if (ret)
2054 goto out;
2055 }
2056
2057 ret = __sys_sendmsg_sock(sock, kmsg, flags);
2058 if (force_nonblock && ret == -EAGAIN) {
2059 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
2060 if (!copy) {
2061 ret = -ENOMEM;
2062 goto out;
2063 }
2064 memcpy(&copy->msg, &io.msg, sizeof(copy->msg));
2065 req->io = copy;
2066 memcpy(&req->io->sqe, req->sqe, sizeof(*req->sqe));
2067 req->sqe = &req->io->sqe;
2068 return ret;
2069 }
2070 if (ret == -ERESTARTSYS)
2071 ret = -EINTR;
2072 }
2073
2074out:
2075 io_cqring_add_event(req, ret);
2076 if (ret < 0 && (req->flags & REQ_F_LINK))
2077 req->flags |= REQ_F_FAIL_LINK;
2078 io_put_req_find_next(req, nxt);
2079 return 0;
2080#else
2081 return -EOPNOTSUPP;
2082#endif
2083}
2084
2085static int io_recvmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
2086{
2087#if defined(CONFIG_NET)
2088 const struct io_uring_sqe *sqe = req->sqe;
2089 struct user_msghdr __user *msg;
2090 unsigned flags;
2091
2092 flags = READ_ONCE(sqe->msg_flags);
2093 msg = (struct user_msghdr __user *)(unsigned long) READ_ONCE(sqe->addr);
2094 return recvmsg_copy_msghdr(&io->msg.msg, msg, flags, &io->msg.uaddr,
2095 &io->msg.iov);
2096#else
2097 return 0;
2098#endif
2099}
2100
2101static int io_recvmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2102 struct io_kiocb **nxt, bool force_nonblock)
2103{
2104#if defined(CONFIG_NET)
Jens Axboe0fa03c62019-04-19 13:34:07 -06002105 struct socket *sock;
2106 int ret;
2107
2108 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2109 return -EINVAL;
2110
2111 sock = sock_from_file(req->file, &ret);
2112 if (sock) {
2113 struct user_msghdr __user *msg;
Jens Axboe03b12302019-12-02 18:50:25 -07002114 struct io_async_ctx io, *copy;
2115 struct sockaddr_storage addr;
2116 struct msghdr *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002117 unsigned flags;
2118
2119 flags = READ_ONCE(sqe->msg_flags);
2120 if (flags & MSG_DONTWAIT)
2121 req->flags |= REQ_F_NOWAIT;
2122 else if (force_nonblock)
2123 flags |= MSG_DONTWAIT;
2124
2125 msg = (struct user_msghdr __user *) (unsigned long)
2126 READ_ONCE(sqe->addr);
Jens Axboe03b12302019-12-02 18:50:25 -07002127 if (req->io) {
2128 kmsg = &req->io->msg.msg;
2129 kmsg->msg_name = &addr;
2130 } else {
2131 kmsg = &io.msg.msg;
2132 kmsg->msg_name = &addr;
2133 io.msg.iov = io.msg.fast_iov;
2134 ret = io_recvmsg_prep(req, &io);
2135 if (ret)
2136 goto out;
2137 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06002138
Jens Axboe03b12302019-12-02 18:50:25 -07002139 ret = __sys_recvmsg_sock(sock, kmsg, msg, io.msg.uaddr, flags);
2140 if (force_nonblock && ret == -EAGAIN) {
2141 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
2142 if (!copy) {
2143 ret = -ENOMEM;
2144 goto out;
2145 }
2146 memcpy(copy, &io, sizeof(*copy));
2147 req->io = copy;
2148 memcpy(&req->io->sqe, req->sqe, sizeof(*req->sqe));
2149 req->sqe = &req->io->sqe;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002150 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002151 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07002152 if (ret == -ERESTARTSYS)
2153 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002154 }
2155
Jens Axboe03b12302019-12-02 18:50:25 -07002156out:
Jens Axboe78e19bb2019-11-06 15:21:34 -07002157 io_cqring_add_event(req, ret);
Jens Axboef1f40852019-11-05 20:33:16 -07002158 if (ret < 0 && (req->flags & REQ_F_LINK))
2159 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002160 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002161 return 0;
2162#else
2163 return -EOPNOTSUPP;
2164#endif
2165}
2166
Jens Axboe17f2fe32019-10-17 14:42:58 -06002167static int io_accept(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2168 struct io_kiocb **nxt, bool force_nonblock)
2169{
2170#if defined(CONFIG_NET)
2171 struct sockaddr __user *addr;
2172 int __user *addr_len;
2173 unsigned file_flags;
2174 int flags, ret;
2175
2176 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2177 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05002178 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002179 return -EINVAL;
2180
2181 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
2182 addr_len = (int __user *) (unsigned long) READ_ONCE(sqe->addr2);
2183 flags = READ_ONCE(sqe->accept_flags);
2184 file_flags = force_nonblock ? O_NONBLOCK : 0;
2185
2186 ret = __sys_accept4_file(req->file, file_flags, addr, addr_len, flags);
2187 if (ret == -EAGAIN && force_nonblock) {
2188 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2189 return -EAGAIN;
2190 }
Jens Axboe8e3cca12019-11-09 19:52:33 -07002191 if (ret == -ERESTARTSYS)
2192 ret = -EINTR;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002193 if (ret < 0 && (req->flags & REQ_F_LINK))
2194 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07002195 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002196 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002197 return 0;
2198#else
2199 return -EOPNOTSUPP;
2200#endif
2201}
2202
Jens Axboef499a022019-12-02 16:28:46 -07002203static int io_connect_prep(struct io_kiocb *req, struct io_async_ctx *io)
2204{
2205#if defined(CONFIG_NET)
2206 const struct io_uring_sqe *sqe = req->sqe;
2207 struct sockaddr __user *addr;
2208 int addr_len;
2209
2210 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
2211 addr_len = READ_ONCE(sqe->addr2);
2212 return move_addr_to_kernel(addr, addr_len, &io->connect.address);
2213#else
2214 return 0;
2215#endif
2216}
2217
Jens Axboef8e85cf2019-11-23 14:24:24 -07002218static int io_connect(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2219 struct io_kiocb **nxt, bool force_nonblock)
2220{
2221#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07002222 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002223 unsigned file_flags;
2224 int addr_len, ret;
2225
2226 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2227 return -EINVAL;
2228 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
2229 return -EINVAL;
2230
Jens Axboef8e85cf2019-11-23 14:24:24 -07002231 addr_len = READ_ONCE(sqe->addr2);
2232 file_flags = force_nonblock ? O_NONBLOCK : 0;
2233
Jens Axboef499a022019-12-02 16:28:46 -07002234 if (req->io) {
2235 io = req->io;
2236 } else {
2237 ret = io_connect_prep(req, &__io);
2238 if (ret)
2239 goto out;
2240 io = &__io;
2241 }
2242
2243 ret = __sys_connect_file(req->file, &io->connect.address, addr_len,
2244 file_flags);
2245 if (ret == -EAGAIN && force_nonblock) {
2246 io = kmalloc(sizeof(*io), GFP_KERNEL);
2247 if (!io) {
2248 ret = -ENOMEM;
2249 goto out;
2250 }
2251 memcpy(&io->connect, &__io.connect, sizeof(io->connect));
2252 req->io = io;
2253 memcpy(&io->sqe, req->sqe, sizeof(*req->sqe));
2254 req->sqe = &io->sqe;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002255 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07002256 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07002257 if (ret == -ERESTARTSYS)
2258 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07002259out:
Jens Axboef8e85cf2019-11-23 14:24:24 -07002260 if (ret < 0 && (req->flags & REQ_F_LINK))
2261 req->flags |= REQ_F_FAIL_LINK;
2262 io_cqring_add_event(req, ret);
2263 io_put_req_find_next(req, nxt);
2264 return 0;
2265#else
2266 return -EOPNOTSUPP;
2267#endif
2268}
2269
Jens Axboeeac406c2019-11-14 12:09:58 -07002270static inline void io_poll_remove_req(struct io_kiocb *req)
2271{
2272 if (!RB_EMPTY_NODE(&req->rb_node)) {
2273 rb_erase(&req->rb_node, &req->ctx->cancel_tree);
2274 RB_CLEAR_NODE(&req->rb_node);
2275 }
2276}
2277
Jens Axboe221c5eb2019-01-17 09:41:58 -07002278static void io_poll_remove_one(struct io_kiocb *req)
2279{
2280 struct io_poll_iocb *poll = &req->poll;
2281
2282 spin_lock(&poll->head->lock);
2283 WRITE_ONCE(poll->canceled, true);
Jens Axboee9444752019-11-26 15:02:04 -07002284 if (!list_empty(&poll->wait->entry)) {
2285 list_del_init(&poll->wait->entry);
Jackie Liua197f662019-11-08 08:09:12 -07002286 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002287 }
2288 spin_unlock(&poll->head->lock);
Jens Axboeeac406c2019-11-14 12:09:58 -07002289 io_poll_remove_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002290}
2291
2292static void io_poll_remove_all(struct io_ring_ctx *ctx)
2293{
Jens Axboeeac406c2019-11-14 12:09:58 -07002294 struct rb_node *node;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002295 struct io_kiocb *req;
2296
2297 spin_lock_irq(&ctx->completion_lock);
Jens Axboeeac406c2019-11-14 12:09:58 -07002298 while ((node = rb_first(&ctx->cancel_tree)) != NULL) {
2299 req = rb_entry(node, struct io_kiocb, rb_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002300 io_poll_remove_one(req);
2301 }
2302 spin_unlock_irq(&ctx->completion_lock);
2303}
2304
Jens Axboe47f46762019-11-09 17:43:02 -07002305static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2306{
Jens Axboeeac406c2019-11-14 12:09:58 -07002307 struct rb_node *p, *parent = NULL;
Jens Axboe47f46762019-11-09 17:43:02 -07002308 struct io_kiocb *req;
2309
Jens Axboeeac406c2019-11-14 12:09:58 -07002310 p = ctx->cancel_tree.rb_node;
2311 while (p) {
2312 parent = p;
2313 req = rb_entry(parent, struct io_kiocb, rb_node);
2314 if (sqe_addr < req->user_data) {
2315 p = p->rb_left;
2316 } else if (sqe_addr > req->user_data) {
2317 p = p->rb_right;
2318 } else {
2319 io_poll_remove_one(req);
2320 return 0;
2321 }
Jens Axboe47f46762019-11-09 17:43:02 -07002322 }
2323
2324 return -ENOENT;
2325}
2326
Jens Axboe221c5eb2019-01-17 09:41:58 -07002327/*
2328 * Find a running poll command that matches one specified in sqe->addr,
2329 * and remove it if found.
2330 */
2331static int io_poll_remove(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2332{
2333 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07002334 int ret;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002335
2336 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2337 return -EINVAL;
2338 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2339 sqe->poll_events)
2340 return -EINVAL;
2341
2342 spin_lock_irq(&ctx->completion_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07002343 ret = io_poll_cancel(ctx, READ_ONCE(sqe->addr));
Jens Axboe221c5eb2019-01-17 09:41:58 -07002344 spin_unlock_irq(&ctx->completion_lock);
2345
Jens Axboe78e19bb2019-11-06 15:21:34 -07002346 io_cqring_add_event(req, ret);
Jens Axboef1f40852019-11-05 20:33:16 -07002347 if (ret < 0 && (req->flags & REQ_F_LINK))
2348 req->flags |= REQ_F_FAIL_LINK;
Jens Axboee65ef562019-03-12 10:16:44 -06002349 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002350 return 0;
2351}
2352
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002353static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002354{
Jackie Liua197f662019-11-08 08:09:12 -07002355 struct io_ring_ctx *ctx = req->ctx;
2356
Jens Axboe8c838782019-03-12 15:48:16 -06002357 req->poll.done = true;
Jens Axboee9444752019-11-26 15:02:04 -07002358 kfree(req->poll.wait);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002359 if (error)
2360 io_cqring_fill_event(req, error);
2361 else
2362 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06002363 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002364}
2365
Jens Axboe561fb042019-10-24 07:25:42 -06002366static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002367{
Jens Axboe561fb042019-10-24 07:25:42 -06002368 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002369 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2370 struct io_poll_iocb *poll = &req->poll;
2371 struct poll_table_struct pt = { ._key = poll->events };
2372 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07002373 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002374 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002375 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002376
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002377 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06002378 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002379 ret = -ECANCELED;
2380 } else if (READ_ONCE(poll->canceled)) {
2381 ret = -ECANCELED;
2382 }
Jens Axboe561fb042019-10-24 07:25:42 -06002383
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002384 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002385 mask = vfs_poll(poll->file, &pt) & poll->events;
2386
2387 /*
2388 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2389 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2390 * synchronize with them. In the cancellation case the list_del_init
2391 * itself is not actually needed, but harmless so we keep it in to
2392 * avoid further branches in the fast path.
2393 */
2394 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002395 if (!mask && ret != -ECANCELED) {
Jens Axboee9444752019-11-26 15:02:04 -07002396 add_wait_queue(poll->head, poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002397 spin_unlock_irq(&ctx->completion_lock);
2398 return;
2399 }
Jens Axboeeac406c2019-11-14 12:09:58 -07002400 io_poll_remove_req(req);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002401 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002402 spin_unlock_irq(&ctx->completion_lock);
2403
Jens Axboe8c838782019-03-12 15:48:16 -06002404 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07002405
Jens Axboefba38c22019-11-18 12:27:57 -07002406 if (ret < 0 && req->flags & REQ_F_LINK)
2407 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002408 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07002409 if (nxt)
2410 *workptr = &nxt->work;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002411}
2412
2413static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2414 void *key)
2415{
Jens Axboee9444752019-11-26 15:02:04 -07002416 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002417 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2418 struct io_ring_ctx *ctx = req->ctx;
2419 __poll_t mask = key_to_poll(key);
Jens Axboe8c838782019-03-12 15:48:16 -06002420 unsigned long flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002421
2422 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06002423 if (mask && !(mask & poll->events))
2424 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002425
Jens Axboee9444752019-11-26 15:02:04 -07002426 list_del_init(&poll->wait->entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002427
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002428 /*
2429 * Run completion inline if we can. We're using trylock here because
2430 * we are violating the completion_lock -> poll wq lock ordering.
2431 * If we have a link timeout we're going to need the completion_lock
2432 * for finalizing the request, mark us as having grabbed that already.
2433 */
Jens Axboe8c838782019-03-12 15:48:16 -06002434 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboeeac406c2019-11-14 12:09:58 -07002435 io_poll_remove_req(req);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002436 io_poll_complete(req, mask, 0);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002437 req->flags |= REQ_F_COMP_LOCKED;
2438 io_put_req(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002439 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2440
2441 io_cqring_ev_posted(ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06002442 } else {
Jackie Liua197f662019-11-08 08:09:12 -07002443 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002444 }
2445
Jens Axboe221c5eb2019-01-17 09:41:58 -07002446 return 1;
2447}
2448
2449struct io_poll_table {
2450 struct poll_table_struct pt;
2451 struct io_kiocb *req;
2452 int error;
2453};
2454
2455static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2456 struct poll_table_struct *p)
2457{
2458 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2459
2460 if (unlikely(pt->req->poll.head)) {
2461 pt->error = -EINVAL;
2462 return;
2463 }
2464
2465 pt->error = 0;
2466 pt->req->poll.head = head;
Jens Axboee9444752019-11-26 15:02:04 -07002467 add_wait_queue(head, pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002468}
2469
Jens Axboeeac406c2019-11-14 12:09:58 -07002470static void io_poll_req_insert(struct io_kiocb *req)
2471{
2472 struct io_ring_ctx *ctx = req->ctx;
2473 struct rb_node **p = &ctx->cancel_tree.rb_node;
2474 struct rb_node *parent = NULL;
2475 struct io_kiocb *tmp;
2476
2477 while (*p) {
2478 parent = *p;
2479 tmp = rb_entry(parent, struct io_kiocb, rb_node);
2480 if (req->user_data < tmp->user_data)
2481 p = &(*p)->rb_left;
2482 else
2483 p = &(*p)->rb_right;
2484 }
2485 rb_link_node(&req->rb_node, parent, p);
2486 rb_insert_color(&req->rb_node, &ctx->cancel_tree);
2487}
2488
Jens Axboe89723d02019-11-05 15:32:58 -07002489static int io_poll_add(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2490 struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002491{
2492 struct io_poll_iocb *poll = &req->poll;
2493 struct io_ring_ctx *ctx = req->ctx;
2494 struct io_poll_table ipt;
Jens Axboe8c838782019-03-12 15:48:16 -06002495 bool cancel = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002496 __poll_t mask;
2497 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002498
2499 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2500 return -EINVAL;
2501 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2502 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06002503 if (!poll->file)
2504 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002505
Jens Axboee9444752019-11-26 15:02:04 -07002506 poll->wait = kmalloc(sizeof(*poll->wait), GFP_KERNEL);
2507 if (!poll->wait)
2508 return -ENOMEM;
2509
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002510 req->io = NULL;
Jens Axboe561fb042019-10-24 07:25:42 -06002511 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002512 events = READ_ONCE(sqe->poll_events);
2513 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeeac406c2019-11-14 12:09:58 -07002514 RB_CLEAR_NODE(&req->rb_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002515
Jens Axboe221c5eb2019-01-17 09:41:58 -07002516 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06002517 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002518 poll->canceled = false;
2519
2520 ipt.pt._qproc = io_poll_queue_proc;
2521 ipt.pt._key = poll->events;
2522 ipt.req = req;
2523 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2524
2525 /* initialized the list so that we can do list_empty checks */
Jens Axboee9444752019-11-26 15:02:04 -07002526 INIT_LIST_HEAD(&poll->wait->entry);
2527 init_waitqueue_func_entry(poll->wait, io_poll_wake);
2528 poll->wait->private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002529
Jens Axboe36703242019-07-25 10:20:18 -06002530 INIT_LIST_HEAD(&req->list);
2531
Jens Axboe221c5eb2019-01-17 09:41:58 -07002532 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002533
2534 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06002535 if (likely(poll->head)) {
2536 spin_lock(&poll->head->lock);
Jens Axboee9444752019-11-26 15:02:04 -07002537 if (unlikely(list_empty(&poll->wait->entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06002538 if (ipt.error)
2539 cancel = true;
2540 ipt.error = 0;
2541 mask = 0;
2542 }
2543 if (mask || ipt.error)
Jens Axboee9444752019-11-26 15:02:04 -07002544 list_del_init(&poll->wait->entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002545 else if (cancel)
2546 WRITE_ONCE(poll->canceled, true);
2547 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07002548 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002549 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002550 }
Jens Axboe8c838782019-03-12 15:48:16 -06002551 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06002552 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002553 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06002554 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07002555 spin_unlock_irq(&ctx->completion_lock);
2556
Jens Axboe8c838782019-03-12 15:48:16 -06002557 if (mask) {
2558 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002559 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002560 }
Jens Axboe8c838782019-03-12 15:48:16 -06002561 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002562}
2563
Jens Axboe5262f562019-09-17 12:26:57 -06002564static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2565{
Jens Axboead8a48a2019-11-15 08:49:11 -07002566 struct io_timeout_data *data = container_of(timer,
2567 struct io_timeout_data, timer);
2568 struct io_kiocb *req = data->req;
2569 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06002570 unsigned long flags;
2571
Jens Axboe5262f562019-09-17 12:26:57 -06002572 atomic_inc(&ctx->cq_timeouts);
2573
2574 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08002575 /*
Jens Axboe11365042019-10-16 09:08:32 -06002576 * We could be racing with timeout deletion. If the list is empty,
2577 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08002578 */
Jens Axboe842f9612019-10-29 12:34:10 -06002579 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06002580 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06002581
Jens Axboe11365042019-10-16 09:08:32 -06002582 /*
2583 * Adjust the reqs sequence before the current one because it
2584 * will consume a slot in the cq_ring and the the cq_tail
2585 * pointer will be increased, otherwise other timeout reqs may
2586 * return in advance without waiting for enough wait_nr.
2587 */
2588 prev = req;
2589 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2590 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06002591 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06002592 }
Jens Axboe842f9612019-10-29 12:34:10 -06002593
Jens Axboe78e19bb2019-11-06 15:21:34 -07002594 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06002595 io_commit_cqring(ctx);
2596 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2597
2598 io_cqring_ev_posted(ctx);
Jens Axboef1f40852019-11-05 20:33:16 -07002599 if (req->flags & REQ_F_LINK)
2600 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe5262f562019-09-17 12:26:57 -06002601 io_put_req(req);
2602 return HRTIMER_NORESTART;
2603}
2604
Jens Axboe47f46762019-11-09 17:43:02 -07002605static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2606{
2607 struct io_kiocb *req;
2608 int ret = -ENOENT;
2609
2610 list_for_each_entry(req, &ctx->timeout_list, list) {
2611 if (user_data == req->user_data) {
2612 list_del_init(&req->list);
2613 ret = 0;
2614 break;
2615 }
2616 }
2617
2618 if (ret == -ENOENT)
2619 return ret;
2620
Jens Axboead8a48a2019-11-15 08:49:11 -07002621 ret = hrtimer_try_to_cancel(&req->timeout.data->timer);
Jens Axboe47f46762019-11-09 17:43:02 -07002622 if (ret == -1)
2623 return -EALREADY;
2624
Jens Axboefba38c22019-11-18 12:27:57 -07002625 if (req->flags & REQ_F_LINK)
2626 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe47f46762019-11-09 17:43:02 -07002627 io_cqring_fill_event(req, -ECANCELED);
2628 io_put_req(req);
2629 return 0;
2630}
2631
Jens Axboe11365042019-10-16 09:08:32 -06002632/*
2633 * Remove or update an existing timeout command
2634 */
2635static int io_timeout_remove(struct io_kiocb *req,
2636 const struct io_uring_sqe *sqe)
2637{
2638 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe11365042019-10-16 09:08:32 -06002639 unsigned flags;
Jens Axboe47f46762019-11-09 17:43:02 -07002640 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06002641
2642 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2643 return -EINVAL;
2644 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2645 return -EINVAL;
2646 flags = READ_ONCE(sqe->timeout_flags);
2647 if (flags)
2648 return -EINVAL;
2649
Jens Axboe11365042019-10-16 09:08:32 -06002650 spin_lock_irq(&ctx->completion_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07002651 ret = io_timeout_cancel(ctx, READ_ONCE(sqe->addr));
Jens Axboe11365042019-10-16 09:08:32 -06002652
Jens Axboe47f46762019-11-09 17:43:02 -07002653 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06002654 io_commit_cqring(ctx);
2655 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002656 io_cqring_ev_posted(ctx);
Jens Axboe47f46762019-11-09 17:43:02 -07002657 if (ret < 0 && req->flags & REQ_F_LINK)
2658 req->flags |= REQ_F_FAIL_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08002659 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06002660 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06002661}
2662
Jens Axboead8a48a2019-11-15 08:49:11 -07002663static int io_timeout_setup(struct io_kiocb *req)
Jens Axboe5262f562019-09-17 12:26:57 -06002664{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002665 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboead8a48a2019-11-15 08:49:11 -07002666 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06002667 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06002668
Jens Axboead8a48a2019-11-15 08:49:11 -07002669 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06002670 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002671 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06002672 return -EINVAL;
2673 flags = READ_ONCE(sqe->timeout_flags);
2674 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06002675 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06002676
Jens Axboead8a48a2019-11-15 08:49:11 -07002677 data = kzalloc(sizeof(struct io_timeout_data), GFP_KERNEL);
2678 if (!data)
2679 return -ENOMEM;
2680 data->req = req;
2681 req->timeout.data = data;
2682 req->flags |= REQ_F_TIMEOUT;
2683
2684 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06002685 return -EFAULT;
2686
Jens Axboe11365042019-10-16 09:08:32 -06002687 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07002688 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06002689 else
Jens Axboead8a48a2019-11-15 08:49:11 -07002690 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06002691
Jens Axboead8a48a2019-11-15 08:49:11 -07002692 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
2693 return 0;
2694}
2695
2696static int io_timeout(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2697{
2698 unsigned count;
2699 struct io_ring_ctx *ctx = req->ctx;
2700 struct io_timeout_data *data;
2701 struct list_head *entry;
2702 unsigned span = 0;
2703 int ret;
2704
2705 ret = io_timeout_setup(req);
2706 /* common setup allows flags (like links) set, we don't */
2707 if (!ret && sqe->flags)
2708 ret = -EINVAL;
2709 if (ret)
2710 return ret;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002711
Jens Axboe5262f562019-09-17 12:26:57 -06002712 /*
2713 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07002714 * timeout event to be satisfied. If it isn't set, then this is
2715 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06002716 */
2717 count = READ_ONCE(sqe->off);
Jens Axboe93bd25b2019-11-11 23:34:31 -07002718 if (!count) {
2719 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2720 spin_lock_irq(&ctx->completion_lock);
2721 entry = ctx->timeout_list.prev;
2722 goto add;
2723 }
Jens Axboe5262f562019-09-17 12:26:57 -06002724
2725 req->sequence = ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002726 req->timeout.data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06002727
2728 /*
2729 * Insertion sort, ensuring the first entry in the list is always
2730 * the one we need first.
2731 */
Jens Axboe5262f562019-09-17 12:26:57 -06002732 spin_lock_irq(&ctx->completion_lock);
2733 list_for_each_prev(entry, &ctx->timeout_list) {
2734 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08002735 unsigned nxt_sq_head;
2736 long long tmp, tmp_nxt;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002737 u32 nxt_offset = nxt->timeout.data->seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06002738
Jens Axboe93bd25b2019-11-11 23:34:31 -07002739 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2740 continue;
2741
yangerkun5da0fb12019-10-15 21:59:29 +08002742 /*
2743 * Since cached_sq_head + count - 1 can overflow, use type long
2744 * long to store it.
2745 */
2746 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002747 nxt_sq_head = nxt->sequence - nxt_offset + 1;
2748 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08002749
2750 /*
2751 * cached_sq_head may overflow, and it will never overflow twice
2752 * once there is some timeout req still be valid.
2753 */
2754 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08002755 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08002756
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002757 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06002758 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002759
2760 /*
2761 * Sequence of reqs after the insert one and itself should
2762 * be adjusted because each timeout req consumes a slot.
2763 */
2764 span++;
2765 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06002766 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002767 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002768add:
Jens Axboe5262f562019-09-17 12:26:57 -06002769 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07002770 data = req->timeout.data;
2771 data->timer.function = io_timeout_fn;
2772 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06002773 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002774 return 0;
2775}
2776
Jens Axboe62755e32019-10-28 21:49:21 -06002777static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06002778{
Jens Axboe62755e32019-10-28 21:49:21 -06002779 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06002780
Jens Axboe62755e32019-10-28 21:49:21 -06002781 return req->user_data == (unsigned long) data;
2782}
2783
Jens Axboee977d6d2019-11-05 12:39:45 -07002784static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06002785{
Jens Axboe62755e32019-10-28 21:49:21 -06002786 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06002787 int ret = 0;
2788
Jens Axboe62755e32019-10-28 21:49:21 -06002789 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
2790 switch (cancel_ret) {
2791 case IO_WQ_CANCEL_OK:
2792 ret = 0;
2793 break;
2794 case IO_WQ_CANCEL_RUNNING:
2795 ret = -EALREADY;
2796 break;
2797 case IO_WQ_CANCEL_NOTFOUND:
2798 ret = -ENOENT;
2799 break;
2800 }
2801
Jens Axboee977d6d2019-11-05 12:39:45 -07002802 return ret;
2803}
2804
Jens Axboe47f46762019-11-09 17:43:02 -07002805static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
2806 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002807 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07002808{
2809 unsigned long flags;
2810 int ret;
2811
2812 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
2813 if (ret != -ENOENT) {
2814 spin_lock_irqsave(&ctx->completion_lock, flags);
2815 goto done;
2816 }
2817
2818 spin_lock_irqsave(&ctx->completion_lock, flags);
2819 ret = io_timeout_cancel(ctx, sqe_addr);
2820 if (ret != -ENOENT)
2821 goto done;
2822 ret = io_poll_cancel(ctx, sqe_addr);
2823done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002824 if (!ret)
2825 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07002826 io_cqring_fill_event(req, ret);
2827 io_commit_cqring(ctx);
2828 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2829 io_cqring_ev_posted(ctx);
2830
2831 if (ret < 0 && (req->flags & REQ_F_LINK))
2832 req->flags |= REQ_F_FAIL_LINK;
2833 io_put_req_find_next(req, nxt);
2834}
2835
Jens Axboee977d6d2019-11-05 12:39:45 -07002836static int io_async_cancel(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2837 struct io_kiocb **nxt)
2838{
2839 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee977d6d2019-11-05 12:39:45 -07002840
2841 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2842 return -EINVAL;
2843 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
2844 sqe->cancel_flags)
2845 return -EINVAL;
2846
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002847 io_async_find_and_cancel(ctx, req, READ_ONCE(sqe->addr), nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06002848 return 0;
2849}
2850
Jens Axboef67676d2019-12-02 11:03:47 -07002851static int io_req_defer_prep(struct io_kiocb *req, struct io_async_ctx *io)
2852{
2853 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2854 struct iov_iter iter;
2855 ssize_t ret;
2856
2857 memcpy(&io->sqe, req->sqe, sizeof(io->sqe));
2858 req->sqe = &io->sqe;
2859
2860 switch (io->sqe.opcode) {
2861 case IORING_OP_READV:
2862 case IORING_OP_READ_FIXED:
2863 ret = io_read_prep(req, &iovec, &iter, true);
2864 break;
2865 case IORING_OP_WRITEV:
2866 case IORING_OP_WRITE_FIXED:
2867 ret = io_write_prep(req, &iovec, &iter, true);
2868 break;
Jens Axboe03b12302019-12-02 18:50:25 -07002869 case IORING_OP_SENDMSG:
2870 ret = io_sendmsg_prep(req, io);
2871 break;
2872 case IORING_OP_RECVMSG:
2873 ret = io_recvmsg_prep(req, io);
2874 break;
Jens Axboef499a022019-12-02 16:28:46 -07002875 case IORING_OP_CONNECT:
2876 ret = io_connect_prep(req, io);
2877 break;
Jens Axboef67676d2019-12-02 11:03:47 -07002878 default:
2879 req->io = io;
2880 return 0;
2881 }
2882
2883 if (ret < 0)
2884 return ret;
2885
2886 req->io = io;
2887 io_req_map_io(req, ret, iovec, inline_vecs, &iter);
2888 return 0;
2889}
2890
Jackie Liua197f662019-11-08 08:09:12 -07002891static int io_req_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -06002892{
Jackie Liua197f662019-11-08 08:09:12 -07002893 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002894 struct io_async_ctx *io;
Jens Axboef67676d2019-12-02 11:03:47 -07002895 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06002896
Bob Liu9d858b22019-11-13 18:06:25 +08002897 /* Still need defer if there is pending req in defer list. */
2898 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06002899 return 0;
2900
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002901 io = kmalloc(sizeof(*io), GFP_KERNEL);
2902 if (!io)
Jens Axboede0617e2019-04-06 21:51:27 -06002903 return -EAGAIN;
2904
2905 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08002906 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06002907 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe1a6b74f2019-12-02 10:33:15 -07002908 kfree(io);
Jens Axboede0617e2019-04-06 21:51:27 -06002909 return 0;
2910 }
2911
Jens Axboef67676d2019-12-02 11:03:47 -07002912 ret = io_req_defer_prep(req, io);
2913 if (ret < 0)
2914 return ret;
Jens Axboede0617e2019-04-06 21:51:27 -06002915
Jens Axboe915967f2019-11-21 09:01:20 -07002916 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06002917 list_add_tail(&req->list, &ctx->defer_list);
2918 spin_unlock_irq(&ctx->completion_lock);
2919 return -EIOCBQUEUED;
2920}
2921
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03002922__attribute__((nonnull))
Pavel Begunkovd7324472019-11-21 21:24:36 +03002923static int io_issue_sqe(struct io_kiocb *req, struct io_kiocb **nxt,
2924 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002925{
Jens Axboee0c5c572019-03-12 10:18:47 -06002926 int ret, opcode;
Jackie Liua197f662019-11-08 08:09:12 -07002927 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002928
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002929 opcode = READ_ONCE(req->sqe->opcode);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002930 switch (opcode) {
2931 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07002932 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002933 break;
2934 case IORING_OP_READV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002935 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07002936 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002937 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002938 break;
2939 case IORING_OP_WRITEV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002940 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07002941 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03002942 ret = io_write(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07002943 break;
2944 case IORING_OP_READ_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03002945 ret = io_read(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07002946 break;
2947 case IORING_OP_WRITE_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03002948 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002949 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002950 case IORING_OP_FSYNC:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002951 ret = io_fsync(req, req->sqe, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002952 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002953 case IORING_OP_POLL_ADD:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002954 ret = io_poll_add(req, req->sqe, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002955 break;
2956 case IORING_OP_POLL_REMOVE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002957 ret = io_poll_remove(req, req->sqe);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002958 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002959 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002960 ret = io_sync_file_range(req, req->sqe, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002961 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002962 case IORING_OP_SENDMSG:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002963 ret = io_sendmsg(req, req->sqe, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002964 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06002965 case IORING_OP_RECVMSG:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002966 ret = io_recvmsg(req, req->sqe, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06002967 break;
Jens Axboe5262f562019-09-17 12:26:57 -06002968 case IORING_OP_TIMEOUT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002969 ret = io_timeout(req, req->sqe);
Jens Axboe5262f562019-09-17 12:26:57 -06002970 break;
Jens Axboe11365042019-10-16 09:08:32 -06002971 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002972 ret = io_timeout_remove(req, req->sqe);
Jens Axboe11365042019-10-16 09:08:32 -06002973 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002974 case IORING_OP_ACCEPT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002975 ret = io_accept(req, req->sqe, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002976 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002977 case IORING_OP_CONNECT:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002978 ret = io_connect(req, req->sqe, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07002979 break;
Jens Axboe62755e32019-10-28 21:49:21 -06002980 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002981 ret = io_async_cancel(req, req->sqe, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06002982 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002983 default:
2984 ret = -EINVAL;
2985 break;
2986 }
2987
Jens Axboedef596e2019-01-09 08:59:42 -07002988 if (ret)
2989 return ret;
2990
2991 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe9e645e112019-05-10 16:07:28 -06002992 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07002993 return -EAGAIN;
2994
2995 /* workqueue context doesn't hold uring_lock, grab it now */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002996 if (req->in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07002997 mutex_lock(&ctx->uring_lock);
2998 io_iopoll_req_issued(req);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002999 if (req->in_async)
Jens Axboedef596e2019-01-09 08:59:42 -07003000 mutex_unlock(&ctx->uring_lock);
3001 }
3002
3003 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003004}
3005
Jens Axboeb76da702019-11-20 13:05:32 -07003006static void io_link_work_cb(struct io_wq_work **workptr)
3007{
3008 struct io_wq_work *work = *workptr;
3009 struct io_kiocb *link = work->data;
3010
3011 io_queue_linked_timeout(link);
3012 work->func = io_wq_submit_work;
3013}
3014
Jens Axboe561fb042019-10-24 07:25:42 -06003015static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07003016{
Jens Axboe561fb042019-10-24 07:25:42 -06003017 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003018 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06003019 struct io_kiocb *nxt = NULL;
3020 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003021
Jens Axboe561fb042019-10-24 07:25:42 -06003022 /* Ensure we clear previously set non-block flag */
3023 req->rw.ki_flags &= ~IOCB_NOWAIT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003024
Jens Axboe561fb042019-10-24 07:25:42 -06003025 if (work->flags & IO_WQ_WORK_CANCEL)
3026 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07003027
Jens Axboe561fb042019-10-24 07:25:42 -06003028 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003029 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
3030 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06003031 do {
Pavel Begunkovd7324472019-11-21 21:24:36 +03003032 ret = io_issue_sqe(req, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06003033 /*
3034 * We can get EAGAIN for polled IO even though we're
3035 * forcing a sync submission from here, since we can't
3036 * wait for request slots on the block side.
3037 */
3038 if (ret != -EAGAIN)
3039 break;
3040 cond_resched();
3041 } while (1);
3042 }
Jens Axboe31b51512019-01-18 22:56:34 -07003043
Jens Axboe561fb042019-10-24 07:25:42 -06003044 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08003045 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06003046
Jens Axboe561fb042019-10-24 07:25:42 -06003047 if (ret) {
Jens Axboef1f40852019-11-05 20:33:16 -07003048 if (req->flags & REQ_F_LINK)
3049 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003050 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06003051 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07003052 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003053
Jens Axboe561fb042019-10-24 07:25:42 -06003054 /* if a dependent link is ready, pass it back */
3055 if (!ret && nxt) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003056 struct io_kiocb *link;
3057
3058 io_prep_async_work(nxt, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06003059 *workptr = &nxt->work;
Jens Axboeb76da702019-11-20 13:05:32 -07003060 if (link) {
3061 nxt->work.flags |= IO_WQ_WORK_CB;
3062 nxt->work.func = io_link_work_cb;
3063 nxt->work.data = link;
3064 }
Jens Axboeedafcce2019-01-09 09:16:05 -07003065 }
Jens Axboe31b51512019-01-18 22:56:34 -07003066}
Jens Axboe2b188cc2019-01-07 10:46:33 -07003067
Jens Axboe09bb8392019-03-13 12:39:28 -06003068static bool io_op_needs_file(const struct io_uring_sqe *sqe)
3069{
3070 int op = READ_ONCE(sqe->opcode);
3071
3072 switch (op) {
3073 case IORING_OP_NOP:
3074 case IORING_OP_POLL_REMOVE:
Pavel Begunkov5683e542019-11-14 00:59:19 +03003075 case IORING_OP_TIMEOUT:
Pavel Begunkova320e9f2019-11-14 00:11:01 +03003076 case IORING_OP_TIMEOUT_REMOVE:
3077 case IORING_OP_ASYNC_CANCEL:
3078 case IORING_OP_LINK_TIMEOUT:
Jens Axboe09bb8392019-03-13 12:39:28 -06003079 return false;
3080 default:
3081 return true;
3082 }
3083}
3084
Jens Axboe65e19f52019-10-26 07:20:21 -06003085static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
3086 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06003087{
Jens Axboe65e19f52019-10-26 07:20:21 -06003088 struct fixed_file_table *table;
3089
3090 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
3091 return table->files[index & IORING_FILE_TABLE_MASK];
3092}
3093
Jackie Liua197f662019-11-08 08:09:12 -07003094static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003095{
Jackie Liua197f662019-11-08 08:09:12 -07003096 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06003097 unsigned flags;
3098 int fd;
3099
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003100 flags = READ_ONCE(req->sqe->flags);
3101 fd = READ_ONCE(req->sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003102
Jackie Liu4fe2c962019-09-09 20:50:40 +08003103 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06003104 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06003105
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003106 if (!io_op_needs_file(req->sqe))
Jens Axboe09bb8392019-03-13 12:39:28 -06003107 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06003108
3109 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003110 if (unlikely(!ctx->file_table ||
Jens Axboe09bb8392019-03-13 12:39:28 -06003111 (unsigned) fd >= ctx->nr_user_files))
3112 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06003113 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06003114 req->file = io_file_from_index(ctx, fd);
3115 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06003116 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06003117 req->flags |= REQ_F_FIXED_FILE;
3118 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003119 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06003120 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003121 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003122 req->file = io_file_get(state, fd);
3123 if (unlikely(!req->file))
3124 return -EBADF;
3125 }
3126
3127 return 0;
3128}
3129
Jackie Liua197f662019-11-08 08:09:12 -07003130static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003131{
Jens Axboefcb323c2019-10-24 12:39:47 -06003132 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07003133 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06003134
3135 rcu_read_lock();
3136 spin_lock_irq(&ctx->inflight_lock);
3137 /*
3138 * We use the f_ops->flush() handler to ensure that we can flush
3139 * out work accessing these files if the fd is closed. Check if
3140 * the fd has changed since we started down this path, and disallow
3141 * this operation if it has.
3142 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003143 if (fcheck(req->ring_fd) == req->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06003144 list_add(&req->inflight_entry, &ctx->inflight_list);
3145 req->flags |= REQ_F_INFLIGHT;
3146 req->work.files = current->files;
3147 ret = 0;
3148 }
3149 spin_unlock_irq(&ctx->inflight_lock);
3150 rcu_read_unlock();
3151
3152 return ret;
3153}
3154
Jens Axboe2665abf2019-11-05 12:40:47 -07003155static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
3156{
Jens Axboead8a48a2019-11-15 08:49:11 -07003157 struct io_timeout_data *data = container_of(timer,
3158 struct io_timeout_data, timer);
3159 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07003160 struct io_ring_ctx *ctx = req->ctx;
3161 struct io_kiocb *prev = NULL;
3162 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07003163
3164 spin_lock_irqsave(&ctx->completion_lock, flags);
3165
3166 /*
3167 * We don't expect the list to be empty, that will only happen if we
3168 * race with the completion of the linked work.
3169 */
3170 if (!list_empty(&req->list)) {
3171 prev = list_entry(req->list.prev, struct io_kiocb, link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003172 if (refcount_inc_not_zero(&prev->refs)) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003173 list_del_init(&req->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);
3203 if (!list_empty(&req->list)) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003204 struct io_timeout_data *data = req->timeout.data;
3205
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
3223 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb, list);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003224 if (!nxt || nxt->sqe->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07003225 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003226
Jens Axboe76a46e02019-11-10 23:34:16 -07003227 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07003228 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07003229}
3230
Jens Axboe0e0702d2019-11-14 21:42:10 -07003231static void __io_queue_sqe(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003232{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003233 struct io_kiocb *linked_timeout = io_prep_linked_timeout(req);
3234 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003235 int ret;
3236
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003237 ret = io_issue_sqe(req, &nxt, true);
3238 if (nxt)
3239 io_queue_async_work(nxt);
Jens Axboe491381ce2019-10-17 09:20:46 -06003240
3241 /*
3242 * We async punt it if the file wasn't marked NOWAIT, or if the file
3243 * doesn't support non-blocking read/write attempts
3244 */
3245 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
3246 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003247 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
3248 ret = io_grab_files(req);
3249 if (ret)
3250 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003251 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003252
3253 /*
3254 * Queued up for async execution, worker will release
3255 * submit reference when the iocb is actually submitted.
3256 */
3257 io_queue_async_work(req);
3258 return;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003259 }
Jens Axboee65ef562019-03-12 10:16:44 -06003260
Jens Axboefcb323c2019-10-24 12:39:47 -06003261err:
Jens Axboee65ef562019-03-12 10:16:44 -06003262 /* drop submission reference */
3263 io_put_req(req);
3264
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003265 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003266 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003267 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003268 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003269 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003270 }
3271
Jens Axboee65ef562019-03-12 10:16:44 -06003272 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06003273 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003274 io_cqring_add_event(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06003275 if (req->flags & REQ_F_LINK)
3276 req->flags |= REQ_F_FAIL_LINK;
Jens Axboee65ef562019-03-12 10:16:44 -06003277 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003278 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003279}
3280
Jens Axboe0e0702d2019-11-14 21:42:10 -07003281static void io_queue_sqe(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003282{
3283 int ret;
3284
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003285 if (unlikely(req->ctx->drain_next)) {
3286 req->flags |= REQ_F_IO_DRAIN;
3287 req->ctx->drain_next = false;
3288 }
3289 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
3290
Jackie Liua197f662019-11-08 08:09:12 -07003291 ret = io_req_defer(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003292 if (ret) {
3293 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003294 io_cqring_add_event(req, ret);
Pavel Begunkovd3b357962019-11-19 23:32:48 +03003295 if (req->flags & REQ_F_LINK)
3296 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003297 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003298 }
Jens Axboe0e0702d2019-11-14 21:42:10 -07003299 } else
3300 __io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003301}
3302
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003303static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003304{
Jens Axboe94ae5e72019-11-14 19:39:52 -07003305 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003306 io_cqring_add_event(req, -ECANCELED);
3307 io_double_put_req(req);
3308 } else
Jens Axboe0e0702d2019-11-14 21:42:10 -07003309 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003310}
3311
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003312
Jens Axboe9e645e112019-05-10 16:07:28 -06003313#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK)
3314
Jackie Liua197f662019-11-08 08:09:12 -07003315static void io_submit_sqe(struct io_kiocb *req, struct io_submit_state *state,
3316 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06003317{
Jackie Liua197f662019-11-08 08:09:12 -07003318 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06003319 int ret;
3320
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003321 req->user_data = req->sqe->user_data;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003322
Jens Axboe9e645e112019-05-10 16:07:28 -06003323 /* enforce forwards compatibility on users */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003324 if (unlikely(req->sqe->flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003325 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03003326 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06003327 }
3328
Jackie Liua197f662019-11-08 08:09:12 -07003329 ret = io_req_set_file(state, req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003330 if (unlikely(ret)) {
3331err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003332 io_cqring_add_event(req, ret);
3333 io_double_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003334 return;
3335 }
3336
Jens Axboe9e645e112019-05-10 16:07:28 -06003337 /*
3338 * If we already have a head request, queue this one for async
3339 * submittal once the head completes. If we don't have a head but
3340 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3341 * submitted sync once the chain is complete. If none of those
3342 * conditions are true (normal request), then just queue it.
3343 */
3344 if (*link) {
3345 struct io_kiocb *prev = *link;
Jens Axboe1a6b74f2019-12-02 10:33:15 -07003346 struct io_async_ctx *io;
Jens Axboe9e645e112019-05-10 16:07:28 -06003347
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003348 if (req->sqe->flags & IOSQE_IO_DRAIN)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003349 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3350
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003351 if (READ_ONCE(req->sqe->opcode) == IORING_OP_LINK_TIMEOUT) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003352 ret = io_timeout_setup(req);
3353 /* common setup allows offset being set, we don't */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003354 if (!ret && req->sqe->off)
Jens Axboe94ae5e72019-11-14 19:39:52 -07003355 ret = -EINVAL;
3356 if (ret) {
3357 prev->flags |= REQ_F_FAIL_LINK;
3358 goto err_req;
3359 }
3360 }
3361
Jens Axboe1a6b74f2019-12-02 10:33:15 -07003362 io = kmalloc(sizeof(*io), GFP_KERNEL);
3363 if (!io) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003364 ret = -EAGAIN;
3365 goto err_req;
3366 }
3367
Jens Axboef67676d2019-12-02 11:03:47 -07003368 ret = io_req_defer_prep(req, io);
3369 if (ret)
3370 goto err_req;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003371 trace_io_uring_link(ctx, req, prev);
Jens Axboe9e645e112019-05-10 16:07:28 -06003372 list_add_tail(&req->list, &prev->link_list);
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003373 } else if (req->sqe->flags & IOSQE_IO_LINK) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003374 req->flags |= REQ_F_LINK;
3375
Jens Axboe9e645e112019-05-10 16:07:28 -06003376 INIT_LIST_HEAD(&req->link_list);
3377 *link = req;
3378 } else {
Jackie Liua197f662019-11-08 08:09:12 -07003379 io_queue_sqe(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003380 }
3381}
3382
Jens Axboe9a56a232019-01-09 09:06:50 -07003383/*
3384 * Batched submission is done, ensure local IO is flushed out.
3385 */
3386static void io_submit_state_end(struct io_submit_state *state)
3387{
3388 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06003389 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07003390 if (state->free_reqs)
3391 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3392 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07003393}
3394
3395/*
3396 * Start submission side cache.
3397 */
3398static void io_submit_state_start(struct io_submit_state *state,
3399 struct io_ring_ctx *ctx, unsigned max_ios)
3400{
3401 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07003402 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07003403 state->file = NULL;
3404 state->ios_left = max_ios;
3405}
3406
Jens Axboe2b188cc2019-01-07 10:46:33 -07003407static void io_commit_sqring(struct io_ring_ctx *ctx)
3408{
Hristo Venev75b28af2019-08-26 17:23:46 +00003409 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003410
Hristo Venev75b28af2019-08-26 17:23:46 +00003411 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003412 /*
3413 * Ensure any loads from the SQEs are done at this point,
3414 * since once we write the new head, the application could
3415 * write new data to them.
3416 */
Hristo Venev75b28af2019-08-26 17:23:46 +00003417 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003418 }
3419}
3420
3421/*
Jens Axboe2b188cc2019-01-07 10:46:33 -07003422 * Fetch an sqe, if one is available. Note that s->sqe will point to memory
3423 * that is mapped by userspace. This means that care needs to be taken to
3424 * ensure that reads are stable, as we cannot rely on userspace always
3425 * being a good citizen. If members of the sqe are validated and then later
3426 * used, it's important that those reads are done through READ_ONCE() to
3427 * prevent a re-load down the line.
3428 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003429static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003430{
Hristo Venev75b28af2019-08-26 17:23:46 +00003431 struct io_rings *rings = ctx->rings;
3432 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003433 unsigned head;
3434
3435 /*
3436 * The cached sq head (or cq tail) serves two purposes:
3437 *
3438 * 1) allows us to batch the cost of updating the user visible
3439 * head updates.
3440 * 2) allows the kernel side to track the head on its own, even
3441 * though the application is the one updating it.
3442 */
3443 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02003444 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003445 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07003446 return false;
3447
Hristo Venev75b28af2019-08-26 17:23:46 +00003448 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003449 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003450 /*
3451 * All io need record the previous position, if LINK vs DARIN,
3452 * it can be used to mark the position of the first IO in the
3453 * link list.
3454 */
3455 req->sequence = ctx->cached_sq_head;
3456 req->sqe = &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07003457 ctx->cached_sq_head++;
3458 return true;
3459 }
3460
3461 /* drop invalid entries */
3462 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06003463 ctx->cached_sq_dropped++;
3464 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003465 return false;
3466}
3467
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003468static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003469 struct file *ring_file, int ring_fd,
3470 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07003471{
3472 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003473 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003474 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003475 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003476
Jens Axboec4a2ed72019-11-21 21:01:26 -07003477 /* if we have a backlog and couldn't flush it all, return BUSY */
3478 if (!list_empty(&ctx->cq_overflow_list) &&
3479 !io_cqring_overflow_flush(ctx, false))
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003480 return -EBUSY;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003481
3482 if (nr > IO_PLUG_THRESHOLD) {
3483 io_submit_state_start(&state, ctx, nr);
3484 statep = &state;
3485 }
3486
3487 for (i = 0; i < nr; i++) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003488 struct io_kiocb *req;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003489 unsigned int sqe_flags;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003490
Pavel Begunkov196be952019-11-07 01:41:06 +03003491 req = io_get_req(ctx, statep);
3492 if (unlikely(!req)) {
3493 if (!submitted)
3494 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003495 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06003496 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003497 if (!io_get_sqring(ctx, req)) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003498 __io_free_req(req);
3499 break;
3500 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003501
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003502 if (io_sqe_needs_user(req->sqe) && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003503 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3504 if (!mm_fault) {
3505 use_mm(ctx->sqo_mm);
3506 *mm = ctx->sqo_mm;
3507 }
3508 }
3509
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003510 sqe_flags = req->sqe->flags;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003511
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003512 req->ring_file = ring_file;
3513 req->ring_fd = ring_fd;
3514 req->has_user = *mm != NULL;
3515 req->in_async = async;
3516 req->needs_fixed_file = async;
3517 trace_io_uring_submit_sqe(ctx, req->sqe->user_data,
Pavel Begunkov50585b92019-11-07 01:41:07 +03003518 true, async);
Jackie Liua197f662019-11-08 08:09:12 -07003519 io_submit_sqe(req, statep, &link);
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003520 submitted++;
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003521
3522 /*
3523 * If previous wasn't linked and we have a linked command,
3524 * that's the end of the chain. Submit the previous link.
3525 */
Pavel Begunkov50585b92019-11-07 01:41:07 +03003526 if (!(sqe_flags & IOSQE_IO_LINK) && link) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003527 io_queue_link_head(link);
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003528 link = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003529 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003530 }
3531
Jens Axboe9e645e112019-05-10 16:07:28 -06003532 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003533 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003534 if (statep)
3535 io_submit_state_end(&state);
3536
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003537 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3538 io_commit_sqring(ctx);
3539
Jens Axboe6c271ce2019-01-10 11:22:30 -07003540 return submitted;
3541}
3542
3543static int io_sq_thread(void *data)
3544{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003545 struct io_ring_ctx *ctx = data;
3546 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07003547 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003548 mm_segment_t old_fs;
3549 DEFINE_WAIT(wait);
3550 unsigned inflight;
3551 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07003552 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003553
Jens Axboe206aefd2019-11-07 18:27:42 -07003554 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08003555
Jens Axboe6c271ce2019-01-10 11:22:30 -07003556 old_fs = get_fs();
3557 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07003558 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003559
Jens Axboec1edbf52019-11-10 16:56:04 -07003560 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003561 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003562 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003563
3564 if (inflight) {
3565 unsigned nr_events = 0;
3566
3567 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06003568 /*
3569 * inflight is the count of the maximum possible
3570 * entries we submitted, but it can be smaller
3571 * if we dropped some of them. If we don't have
3572 * poll entries available, then we know that we
3573 * have nothing left to poll for. Reset the
3574 * inflight count to zero in that case.
3575 */
3576 mutex_lock(&ctx->uring_lock);
3577 if (!list_empty(&ctx->poll_list))
3578 __io_iopoll_check(ctx, &nr_events, 0);
3579 else
3580 inflight = 0;
3581 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003582 } else {
3583 /*
3584 * Normal IO, just pretend everything completed.
3585 * We don't have to poll completions for that.
3586 */
3587 nr_events = inflight;
3588 }
3589
3590 inflight -= nr_events;
3591 if (!inflight)
3592 timeout = jiffies + ctx->sq_thread_idle;
3593 }
3594
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003595 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003596
3597 /*
3598 * If submit got -EBUSY, flag us as needing the application
3599 * to enter the kernel to reap and flush events.
3600 */
3601 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003602 /*
3603 * We're polling. If we're within the defined idle
3604 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07003605 * to sleep. The exception is if we got EBUSY doing
3606 * more IO, we should wait for the application to
3607 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07003608 */
Jens Axboec1edbf52019-11-10 16:56:04 -07003609 if (inflight ||
3610 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06003611 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003612 continue;
3613 }
3614
3615 /*
3616 * Drop cur_mm before scheduling, we can't hold it for
3617 * long periods (or over schedule()). Do this before
3618 * adding ourselves to the waitqueue, as the unuse/drop
3619 * may sleep.
3620 */
3621 if (cur_mm) {
3622 unuse_mm(cur_mm);
3623 mmput(cur_mm);
3624 cur_mm = NULL;
3625 }
3626
3627 prepare_to_wait(&ctx->sqo_wait, &wait,
3628 TASK_INTERRUPTIBLE);
3629
3630 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00003631 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02003632 /* make sure to read SQ tail after writing flags */
3633 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003634
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003635 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003636 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003637 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003638 finish_wait(&ctx->sqo_wait, &wait);
3639 break;
3640 }
3641 if (signal_pending(current))
3642 flush_signals(current);
3643 schedule();
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 continue;
3648 }
3649 finish_wait(&ctx->sqo_wait, &wait);
3650
Hristo Venev75b28af2019-08-26 17:23:46 +00003651 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003652 }
3653
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003654 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003655 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
3656 if (ret > 0)
3657 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003658 }
3659
3660 set_fs(old_fs);
3661 if (cur_mm) {
3662 unuse_mm(cur_mm);
3663 mmput(cur_mm);
3664 }
Jens Axboe181e4482019-11-25 08:52:30 -07003665 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06003666
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003667 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06003668
Jens Axboe6c271ce2019-01-10 11:22:30 -07003669 return 0;
3670}
3671
Jens Axboebda52162019-09-24 13:47:15 -06003672struct io_wait_queue {
3673 struct wait_queue_entry wq;
3674 struct io_ring_ctx *ctx;
3675 unsigned to_wait;
3676 unsigned nr_timeouts;
3677};
3678
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003679static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06003680{
3681 struct io_ring_ctx *ctx = iowq->ctx;
3682
3683 /*
3684 * Wake up if we have enough events, or if a timeout occured since we
3685 * started waiting. For timeouts, we always want to return to userspace,
3686 * regardless of event count.
3687 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003688 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06003689 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3690}
3691
3692static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3693 int wake_flags, void *key)
3694{
3695 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3696 wq);
3697
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003698 /* use noflush == true, as we can't safely rely on locking context */
3699 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06003700 return -1;
3701
3702 return autoremove_wake_function(curr, mode, wake_flags, key);
3703}
3704
Jens Axboe2b188cc2019-01-07 10:46:33 -07003705/*
3706 * Wait until events become available, if we don't already have some. The
3707 * application must reap them itself, as they reside on the shared cq ring.
3708 */
3709static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3710 const sigset_t __user *sig, size_t sigsz)
3711{
Jens Axboebda52162019-09-24 13:47:15 -06003712 struct io_wait_queue iowq = {
3713 .wq = {
3714 .private = current,
3715 .func = io_wake_function,
3716 .entry = LIST_HEAD_INIT(iowq.wq.entry),
3717 },
3718 .ctx = ctx,
3719 .to_wait = min_events,
3720 };
Hristo Venev75b28af2019-08-26 17:23:46 +00003721 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003722 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003723
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003724 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003725 return 0;
3726
3727 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003728#ifdef CONFIG_COMPAT
3729 if (in_compat_syscall())
3730 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07003731 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003732 else
3733#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07003734 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003735
Jens Axboe2b188cc2019-01-07 10:46:33 -07003736 if (ret)
3737 return ret;
3738 }
3739
Jens Axboebda52162019-09-24 13:47:15 -06003740 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003741 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06003742 do {
3743 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
3744 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003745 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06003746 break;
3747 schedule();
3748 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003749 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06003750 break;
3751 }
3752 } while (1);
3753 finish_wait(&ctx->wait, &iowq.wq);
3754
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003755 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003756
Hristo Venev75b28af2019-08-26 17:23:46 +00003757 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003758}
3759
Jens Axboe6b063142019-01-10 22:13:58 -07003760static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
3761{
3762#if defined(CONFIG_UNIX)
3763 if (ctx->ring_sock) {
3764 struct sock *sock = ctx->ring_sock->sk;
3765 struct sk_buff *skb;
3766
3767 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
3768 kfree_skb(skb);
3769 }
3770#else
3771 int i;
3772
Jens Axboe65e19f52019-10-26 07:20:21 -06003773 for (i = 0; i < ctx->nr_user_files; i++) {
3774 struct file *file;
3775
3776 file = io_file_from_index(ctx, i);
3777 if (file)
3778 fput(file);
3779 }
Jens Axboe6b063142019-01-10 22:13:58 -07003780#endif
3781}
3782
3783static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
3784{
Jens Axboe65e19f52019-10-26 07:20:21 -06003785 unsigned nr_tables, i;
3786
3787 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003788 return -ENXIO;
3789
3790 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06003791 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
3792 for (i = 0; i < nr_tables; i++)
3793 kfree(ctx->file_table[i].files);
3794 kfree(ctx->file_table);
3795 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003796 ctx->nr_user_files = 0;
3797 return 0;
3798}
3799
Jens Axboe6c271ce2019-01-10 11:22:30 -07003800static void io_sq_thread_stop(struct io_ring_ctx *ctx)
3801{
3802 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07003803 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003804 /*
3805 * The park is a bit of a work-around, without it we get
3806 * warning spews on shutdown with SQPOLL set and affinity
3807 * set to a single CPU.
3808 */
Jens Axboe06058632019-04-13 09:26:03 -06003809 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003810 kthread_stop(ctx->sqo_thread);
3811 ctx->sqo_thread = NULL;
3812 }
3813}
3814
Jens Axboe6b063142019-01-10 22:13:58 -07003815static void io_finish_async(struct io_ring_ctx *ctx)
3816{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003817 io_sq_thread_stop(ctx);
3818
Jens Axboe561fb042019-10-24 07:25:42 -06003819 if (ctx->io_wq) {
3820 io_wq_destroy(ctx->io_wq);
3821 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07003822 }
3823}
3824
3825#if defined(CONFIG_UNIX)
3826static void io_destruct_skb(struct sk_buff *skb)
3827{
3828 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
3829
Jens Axboe561fb042019-10-24 07:25:42 -06003830 if (ctx->io_wq)
3831 io_wq_flush(ctx->io_wq);
Jens Axboe8a997342019-10-09 14:40:13 -06003832
Jens Axboe6b063142019-01-10 22:13:58 -07003833 unix_destruct_scm(skb);
3834}
3835
3836/*
3837 * Ensure the UNIX gc is aware of our file set, so we are certain that
3838 * the io_uring can be safely unregistered on process exit, even if we have
3839 * loops in the file referencing.
3840 */
3841static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
3842{
3843 struct sock *sk = ctx->ring_sock->sk;
3844 struct scm_fp_list *fpl;
3845 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06003846 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07003847
3848 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
3849 unsigned long inflight = ctx->user->unix_inflight + nr;
3850
3851 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
3852 return -EMFILE;
3853 }
3854
3855 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
3856 if (!fpl)
3857 return -ENOMEM;
3858
3859 skb = alloc_skb(0, GFP_KERNEL);
3860 if (!skb) {
3861 kfree(fpl);
3862 return -ENOMEM;
3863 }
3864
3865 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07003866
Jens Axboe08a45172019-10-03 08:11:03 -06003867 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07003868 fpl->user = get_uid(ctx->user);
3869 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003870 struct file *file = io_file_from_index(ctx, i + offset);
3871
3872 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06003873 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06003874 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06003875 unix_inflight(fpl->user, fpl->fp[nr_files]);
3876 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07003877 }
3878
Jens Axboe08a45172019-10-03 08:11:03 -06003879 if (nr_files) {
3880 fpl->max = SCM_MAX_FD;
3881 fpl->count = nr_files;
3882 UNIXCB(skb).fp = fpl;
3883 skb->destructor = io_destruct_skb;
3884 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
3885 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07003886
Jens Axboe08a45172019-10-03 08:11:03 -06003887 for (i = 0; i < nr_files; i++)
3888 fput(fpl->fp[i]);
3889 } else {
3890 kfree_skb(skb);
3891 kfree(fpl);
3892 }
Jens Axboe6b063142019-01-10 22:13:58 -07003893
3894 return 0;
3895}
3896
3897/*
3898 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
3899 * causes regular reference counting to break down. We rely on the UNIX
3900 * garbage collection to take care of this problem for us.
3901 */
3902static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3903{
3904 unsigned left, total;
3905 int ret = 0;
3906
3907 total = 0;
3908 left = ctx->nr_user_files;
3909 while (left) {
3910 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07003911
3912 ret = __io_sqe_files_scm(ctx, this_files, total);
3913 if (ret)
3914 break;
3915 left -= this_files;
3916 total += this_files;
3917 }
3918
3919 if (!ret)
3920 return 0;
3921
3922 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003923 struct file *file = io_file_from_index(ctx, total);
3924
3925 if (file)
3926 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07003927 total++;
3928 }
3929
3930 return ret;
3931}
3932#else
3933static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3934{
3935 return 0;
3936}
3937#endif
3938
Jens Axboe65e19f52019-10-26 07:20:21 -06003939static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
3940 unsigned nr_files)
3941{
3942 int i;
3943
3944 for (i = 0; i < nr_tables; i++) {
3945 struct fixed_file_table *table = &ctx->file_table[i];
3946 unsigned this_files;
3947
3948 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
3949 table->files = kcalloc(this_files, sizeof(struct file *),
3950 GFP_KERNEL);
3951 if (!table->files)
3952 break;
3953 nr_files -= this_files;
3954 }
3955
3956 if (i == nr_tables)
3957 return 0;
3958
3959 for (i = 0; i < nr_tables; i++) {
3960 struct fixed_file_table *table = &ctx->file_table[i];
3961 kfree(table->files);
3962 }
3963 return 1;
3964}
3965
Jens Axboe6b063142019-01-10 22:13:58 -07003966static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
3967 unsigned nr_args)
3968{
3969 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe65e19f52019-10-26 07:20:21 -06003970 unsigned nr_tables;
Jens Axboe6b063142019-01-10 22:13:58 -07003971 int fd, ret = 0;
3972 unsigned i;
3973
Jens Axboe65e19f52019-10-26 07:20:21 -06003974 if (ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003975 return -EBUSY;
3976 if (!nr_args)
3977 return -EINVAL;
3978 if (nr_args > IORING_MAX_FIXED_FILES)
3979 return -EMFILE;
3980
Jens Axboe65e19f52019-10-26 07:20:21 -06003981 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
3982 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
3983 GFP_KERNEL);
3984 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07003985 return -ENOMEM;
3986
Jens Axboe65e19f52019-10-26 07:20:21 -06003987 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
3988 kfree(ctx->file_table);
Jens Axboe46568e92019-11-10 08:40:53 -07003989 ctx->file_table = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06003990 return -ENOMEM;
3991 }
3992
Jens Axboe08a45172019-10-03 08:11:03 -06003993 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003994 struct fixed_file_table *table;
3995 unsigned index;
3996
Jens Axboe6b063142019-01-10 22:13:58 -07003997 ret = -EFAULT;
3998 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
3999 break;
Jens Axboe08a45172019-10-03 08:11:03 -06004000 /* allow sparse sets */
4001 if (fd == -1) {
4002 ret = 0;
4003 continue;
4004 }
Jens Axboe6b063142019-01-10 22:13:58 -07004005
Jens Axboe65e19f52019-10-26 07:20:21 -06004006 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4007 index = i & IORING_FILE_TABLE_MASK;
4008 table->files[index] = fget(fd);
Jens Axboe6b063142019-01-10 22:13:58 -07004009
4010 ret = -EBADF;
Jens Axboe65e19f52019-10-26 07:20:21 -06004011 if (!table->files[index])
Jens Axboe6b063142019-01-10 22:13:58 -07004012 break;
4013 /*
4014 * Don't allow io_uring instances to be registered. If UNIX
4015 * isn't enabled, then this causes a reference cycle and this
4016 * instance can never get freed. If UNIX is enabled we'll
4017 * handle it just fine, but there's still no point in allowing
4018 * a ring fd as it doesn't support regular read/write anyway.
4019 */
Jens Axboe65e19f52019-10-26 07:20:21 -06004020 if (table->files[index]->f_op == &io_uring_fops) {
4021 fput(table->files[index]);
Jens Axboe6b063142019-01-10 22:13:58 -07004022 break;
4023 }
Jens Axboe6b063142019-01-10 22:13:58 -07004024 ret = 0;
4025 }
4026
4027 if (ret) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004028 for (i = 0; i < ctx->nr_user_files; i++) {
4029 struct file *file;
Jens Axboe6b063142019-01-10 22:13:58 -07004030
Jens Axboe65e19f52019-10-26 07:20:21 -06004031 file = io_file_from_index(ctx, i);
4032 if (file)
4033 fput(file);
4034 }
4035 for (i = 0; i < nr_tables; i++)
4036 kfree(ctx->file_table[i].files);
4037
4038 kfree(ctx->file_table);
4039 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004040 ctx->nr_user_files = 0;
4041 return ret;
4042 }
4043
4044 ret = io_sqe_files_scm(ctx);
4045 if (ret)
4046 io_sqe_files_unregister(ctx);
4047
4048 return ret;
4049}
4050
Jens Axboec3a31e62019-10-03 13:59:56 -06004051static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
4052{
4053#if defined(CONFIG_UNIX)
Jens Axboe65e19f52019-10-26 07:20:21 -06004054 struct file *file = io_file_from_index(ctx, index);
Jens Axboec3a31e62019-10-03 13:59:56 -06004055 struct sock *sock = ctx->ring_sock->sk;
4056 struct sk_buff_head list, *head = &sock->sk_receive_queue;
4057 struct sk_buff *skb;
4058 int i;
4059
4060 __skb_queue_head_init(&list);
4061
4062 /*
4063 * Find the skb that holds this file in its SCM_RIGHTS. When found,
4064 * remove this entry and rearrange the file array.
4065 */
4066 skb = skb_dequeue(head);
4067 while (skb) {
4068 struct scm_fp_list *fp;
4069
4070 fp = UNIXCB(skb).fp;
4071 for (i = 0; i < fp->count; i++) {
4072 int left;
4073
4074 if (fp->fp[i] != file)
4075 continue;
4076
4077 unix_notinflight(fp->user, fp->fp[i]);
4078 left = fp->count - 1 - i;
4079 if (left) {
4080 memmove(&fp->fp[i], &fp->fp[i + 1],
4081 left * sizeof(struct file *));
4082 }
4083 fp->count--;
4084 if (!fp->count) {
4085 kfree_skb(skb);
4086 skb = NULL;
4087 } else {
4088 __skb_queue_tail(&list, skb);
4089 }
4090 fput(file);
4091 file = NULL;
4092 break;
4093 }
4094
4095 if (!file)
4096 break;
4097
4098 __skb_queue_tail(&list, skb);
4099
4100 skb = skb_dequeue(head);
4101 }
4102
4103 if (skb_peek(&list)) {
4104 spin_lock_irq(&head->lock);
4105 while ((skb = __skb_dequeue(&list)) != NULL)
4106 __skb_queue_tail(head, skb);
4107 spin_unlock_irq(&head->lock);
4108 }
4109#else
Jens Axboe65e19f52019-10-26 07:20:21 -06004110 fput(io_file_from_index(ctx, index));
Jens Axboec3a31e62019-10-03 13:59:56 -06004111#endif
4112}
4113
4114static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
4115 int index)
4116{
4117#if defined(CONFIG_UNIX)
4118 struct sock *sock = ctx->ring_sock->sk;
4119 struct sk_buff_head *head = &sock->sk_receive_queue;
4120 struct sk_buff *skb;
4121
4122 /*
4123 * See if we can merge this file into an existing skb SCM_RIGHTS
4124 * file set. If there's no room, fall back to allocating a new skb
4125 * and filling it in.
4126 */
4127 spin_lock_irq(&head->lock);
4128 skb = skb_peek(head);
4129 if (skb) {
4130 struct scm_fp_list *fpl = UNIXCB(skb).fp;
4131
4132 if (fpl->count < SCM_MAX_FD) {
4133 __skb_unlink(skb, head);
4134 spin_unlock_irq(&head->lock);
4135 fpl->fp[fpl->count] = get_file(file);
4136 unix_inflight(fpl->user, fpl->fp[fpl->count]);
4137 fpl->count++;
4138 spin_lock_irq(&head->lock);
4139 __skb_queue_head(head, skb);
4140 } else {
4141 skb = NULL;
4142 }
4143 }
4144 spin_unlock_irq(&head->lock);
4145
4146 if (skb) {
4147 fput(file);
4148 return 0;
4149 }
4150
4151 return __io_sqe_files_scm(ctx, 1, index);
4152#else
4153 return 0;
4154#endif
4155}
4156
4157static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
4158 unsigned nr_args)
4159{
4160 struct io_uring_files_update up;
4161 __s32 __user *fds;
4162 int fd, i, err;
4163 __u32 done;
4164
Jens Axboe65e19f52019-10-26 07:20:21 -06004165 if (!ctx->file_table)
Jens Axboec3a31e62019-10-03 13:59:56 -06004166 return -ENXIO;
4167 if (!nr_args)
4168 return -EINVAL;
4169 if (copy_from_user(&up, arg, sizeof(up)))
4170 return -EFAULT;
4171 if (check_add_overflow(up.offset, nr_args, &done))
4172 return -EOVERFLOW;
4173 if (done > ctx->nr_user_files)
4174 return -EINVAL;
4175
4176 done = 0;
4177 fds = (__s32 __user *) up.fds;
4178 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004179 struct fixed_file_table *table;
4180 unsigned index;
4181
Jens Axboec3a31e62019-10-03 13:59:56 -06004182 err = 0;
4183 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
4184 err = -EFAULT;
4185 break;
4186 }
4187 i = array_index_nospec(up.offset, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004188 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4189 index = i & IORING_FILE_TABLE_MASK;
4190 if (table->files[index]) {
Jens Axboec3a31e62019-10-03 13:59:56 -06004191 io_sqe_file_unregister(ctx, i);
Jens Axboe65e19f52019-10-26 07:20:21 -06004192 table->files[index] = NULL;
Jens Axboec3a31e62019-10-03 13:59:56 -06004193 }
4194 if (fd != -1) {
4195 struct file *file;
4196
4197 file = fget(fd);
4198 if (!file) {
4199 err = -EBADF;
4200 break;
4201 }
4202 /*
4203 * Don't allow io_uring instances to be registered. If
4204 * UNIX isn't enabled, then this causes a reference
4205 * cycle and this instance can never get freed. If UNIX
4206 * is enabled we'll handle it just fine, but there's
4207 * still no point in allowing a ring fd as it doesn't
4208 * support regular read/write anyway.
4209 */
4210 if (file->f_op == &io_uring_fops) {
4211 fput(file);
4212 err = -EBADF;
4213 break;
4214 }
Jens Axboe65e19f52019-10-26 07:20:21 -06004215 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06004216 err = io_sqe_file_register(ctx, file, i);
4217 if (err)
4218 break;
4219 }
4220 nr_args--;
4221 done++;
4222 up.offset++;
4223 }
4224
4225 return done ? done : err;
4226}
4227
Jens Axboe7d723062019-11-12 22:31:31 -07004228static void io_put_work(struct io_wq_work *work)
4229{
4230 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4231
4232 io_put_req(req);
4233}
4234
4235static void io_get_work(struct io_wq_work *work)
4236{
4237 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4238
4239 refcount_inc(&req->refs);
4240}
4241
Jens Axboe6c271ce2019-01-10 11:22:30 -07004242static int io_sq_offload_start(struct io_ring_ctx *ctx,
4243 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004244{
Jens Axboe576a3472019-11-25 08:49:20 -07004245 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06004246 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004247 int ret;
4248
Jens Axboe6c271ce2019-01-10 11:22:30 -07004249 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004250 mmgrab(current->mm);
4251 ctx->sqo_mm = current->mm;
4252
Jens Axboe6c271ce2019-01-10 11:22:30 -07004253 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06004254 ret = -EPERM;
4255 if (!capable(CAP_SYS_ADMIN))
4256 goto err;
4257
Jens Axboe917257d2019-04-13 09:28:55 -06004258 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
4259 if (!ctx->sq_thread_idle)
4260 ctx->sq_thread_idle = HZ;
4261
Jens Axboe6c271ce2019-01-10 11:22:30 -07004262 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06004263 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004264
Jens Axboe917257d2019-04-13 09:28:55 -06004265 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06004266 if (cpu >= nr_cpu_ids)
4267 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08004268 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06004269 goto err;
4270
Jens Axboe6c271ce2019-01-10 11:22:30 -07004271 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
4272 ctx, cpu,
4273 "io_uring-sq");
4274 } else {
4275 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
4276 "io_uring-sq");
4277 }
4278 if (IS_ERR(ctx->sqo_thread)) {
4279 ret = PTR_ERR(ctx->sqo_thread);
4280 ctx->sqo_thread = NULL;
4281 goto err;
4282 }
4283 wake_up_process(ctx->sqo_thread);
4284 } else if (p->flags & IORING_SETUP_SQ_AFF) {
4285 /* Can't have SQ_AFF without SQPOLL */
4286 ret = -EINVAL;
4287 goto err;
4288 }
4289
Jens Axboe576a3472019-11-25 08:49:20 -07004290 data.mm = ctx->sqo_mm;
4291 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07004292 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07004293 data.get_work = io_get_work;
4294 data.put_work = io_put_work;
4295
Jens Axboe561fb042019-10-24 07:25:42 -06004296 /* Do QD, or 4 * CPUS, whatever is smallest */
4297 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07004298 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06004299 if (IS_ERR(ctx->io_wq)) {
4300 ret = PTR_ERR(ctx->io_wq);
4301 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004302 goto err;
4303 }
4304
4305 return 0;
4306err:
Jens Axboe54a91f32019-09-10 09:15:04 -06004307 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004308 mmdrop(ctx->sqo_mm);
4309 ctx->sqo_mm = NULL;
4310 return ret;
4311}
4312
4313static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
4314{
4315 atomic_long_sub(nr_pages, &user->locked_vm);
4316}
4317
4318static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
4319{
4320 unsigned long page_limit, cur_pages, new_pages;
4321
4322 /* Don't allow more pages than we can safely lock */
4323 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
4324
4325 do {
4326 cur_pages = atomic_long_read(&user->locked_vm);
4327 new_pages = cur_pages + nr_pages;
4328 if (new_pages > page_limit)
4329 return -ENOMEM;
4330 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4331 new_pages) != cur_pages);
4332
4333 return 0;
4334}
4335
4336static void io_mem_free(void *ptr)
4337{
Mark Rutland52e04ef2019-04-30 17:30:21 +01004338 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004339
Mark Rutland52e04ef2019-04-30 17:30:21 +01004340 if (!ptr)
4341 return;
4342
4343 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004344 if (put_page_testzero(page))
4345 free_compound_page(page);
4346}
4347
4348static void *io_mem_alloc(size_t size)
4349{
4350 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4351 __GFP_NORETRY;
4352
4353 return (void *) __get_free_pages(gfp_flags, get_order(size));
4354}
4355
Hristo Venev75b28af2019-08-26 17:23:46 +00004356static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4357 size_t *sq_offset)
4358{
4359 struct io_rings *rings;
4360 size_t off, sq_array_size;
4361
4362 off = struct_size(rings, cqes, cq_entries);
4363 if (off == SIZE_MAX)
4364 return SIZE_MAX;
4365
4366#ifdef CONFIG_SMP
4367 off = ALIGN(off, SMP_CACHE_BYTES);
4368 if (off == 0)
4369 return SIZE_MAX;
4370#endif
4371
4372 sq_array_size = array_size(sizeof(u32), sq_entries);
4373 if (sq_array_size == SIZE_MAX)
4374 return SIZE_MAX;
4375
4376 if (check_add_overflow(off, sq_array_size, &off))
4377 return SIZE_MAX;
4378
4379 if (sq_offset)
4380 *sq_offset = off;
4381
4382 return off;
4383}
4384
Jens Axboe2b188cc2019-01-07 10:46:33 -07004385static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4386{
Hristo Venev75b28af2019-08-26 17:23:46 +00004387 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004388
Hristo Venev75b28af2019-08-26 17:23:46 +00004389 pages = (size_t)1 << get_order(
4390 rings_size(sq_entries, cq_entries, NULL));
4391 pages += (size_t)1 << get_order(
4392 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07004393
Hristo Venev75b28af2019-08-26 17:23:46 +00004394 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004395}
4396
Jens Axboeedafcce2019-01-09 09:16:05 -07004397static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4398{
4399 int i, j;
4400
4401 if (!ctx->user_bufs)
4402 return -ENXIO;
4403
4404 for (i = 0; i < ctx->nr_user_bufs; i++) {
4405 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4406
4407 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07004408 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07004409
4410 if (ctx->account_mem)
4411 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004412 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004413 imu->nr_bvecs = 0;
4414 }
4415
4416 kfree(ctx->user_bufs);
4417 ctx->user_bufs = NULL;
4418 ctx->nr_user_bufs = 0;
4419 return 0;
4420}
4421
4422static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4423 void __user *arg, unsigned index)
4424{
4425 struct iovec __user *src;
4426
4427#ifdef CONFIG_COMPAT
4428 if (ctx->compat) {
4429 struct compat_iovec __user *ciovs;
4430 struct compat_iovec ciov;
4431
4432 ciovs = (struct compat_iovec __user *) arg;
4433 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4434 return -EFAULT;
4435
4436 dst->iov_base = (void __user *) (unsigned long) ciov.iov_base;
4437 dst->iov_len = ciov.iov_len;
4438 return 0;
4439 }
4440#endif
4441 src = (struct iovec __user *) arg;
4442 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4443 return -EFAULT;
4444 return 0;
4445}
4446
4447static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4448 unsigned nr_args)
4449{
4450 struct vm_area_struct **vmas = NULL;
4451 struct page **pages = NULL;
4452 int i, j, got_pages = 0;
4453 int ret = -EINVAL;
4454
4455 if (ctx->user_bufs)
4456 return -EBUSY;
4457 if (!nr_args || nr_args > UIO_MAXIOV)
4458 return -EINVAL;
4459
4460 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4461 GFP_KERNEL);
4462 if (!ctx->user_bufs)
4463 return -ENOMEM;
4464
4465 for (i = 0; i < nr_args; i++) {
4466 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4467 unsigned long off, start, end, ubuf;
4468 int pret, nr_pages;
4469 struct iovec iov;
4470 size_t size;
4471
4472 ret = io_copy_iov(ctx, &iov, arg, i);
4473 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03004474 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07004475
4476 /*
4477 * Don't impose further limits on the size and buffer
4478 * constraints here, we'll -EINVAL later when IO is
4479 * submitted if they are wrong.
4480 */
4481 ret = -EFAULT;
4482 if (!iov.iov_base || !iov.iov_len)
4483 goto err;
4484
4485 /* arbitrary limit, but we need something */
4486 if (iov.iov_len > SZ_1G)
4487 goto err;
4488
4489 ubuf = (unsigned long) iov.iov_base;
4490 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4491 start = ubuf >> PAGE_SHIFT;
4492 nr_pages = end - start;
4493
4494 if (ctx->account_mem) {
4495 ret = io_account_mem(ctx->user, nr_pages);
4496 if (ret)
4497 goto err;
4498 }
4499
4500 ret = 0;
4501 if (!pages || nr_pages > got_pages) {
4502 kfree(vmas);
4503 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004504 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07004505 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004506 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07004507 sizeof(struct vm_area_struct *),
4508 GFP_KERNEL);
4509 if (!pages || !vmas) {
4510 ret = -ENOMEM;
4511 if (ctx->account_mem)
4512 io_unaccount_mem(ctx->user, nr_pages);
4513 goto err;
4514 }
4515 got_pages = nr_pages;
4516 }
4517
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004518 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07004519 GFP_KERNEL);
4520 ret = -ENOMEM;
4521 if (!imu->bvec) {
4522 if (ctx->account_mem)
4523 io_unaccount_mem(ctx->user, nr_pages);
4524 goto err;
4525 }
4526
4527 ret = 0;
4528 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07004529 pret = get_user_pages(ubuf, nr_pages,
4530 FOLL_WRITE | FOLL_LONGTERM,
4531 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004532 if (pret == nr_pages) {
4533 /* don't support file backed memory */
4534 for (j = 0; j < nr_pages; j++) {
4535 struct vm_area_struct *vma = vmas[j];
4536
4537 if (vma->vm_file &&
4538 !is_file_hugepages(vma->vm_file)) {
4539 ret = -EOPNOTSUPP;
4540 break;
4541 }
4542 }
4543 } else {
4544 ret = pret < 0 ? pret : -EFAULT;
4545 }
4546 up_read(&current->mm->mmap_sem);
4547 if (ret) {
4548 /*
4549 * if we did partial map, or found file backed vmas,
4550 * release any pages we did get
4551 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07004552 if (pret > 0)
4553 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004554 if (ctx->account_mem)
4555 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004556 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004557 goto err;
4558 }
4559
4560 off = ubuf & ~PAGE_MASK;
4561 size = iov.iov_len;
4562 for (j = 0; j < nr_pages; j++) {
4563 size_t vec_len;
4564
4565 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4566 imu->bvec[j].bv_page = pages[j];
4567 imu->bvec[j].bv_len = vec_len;
4568 imu->bvec[j].bv_offset = off;
4569 off = 0;
4570 size -= vec_len;
4571 }
4572 /* store original address for later verification */
4573 imu->ubuf = ubuf;
4574 imu->len = iov.iov_len;
4575 imu->nr_bvecs = nr_pages;
4576
4577 ctx->nr_user_bufs++;
4578 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004579 kvfree(pages);
4580 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004581 return 0;
4582err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004583 kvfree(pages);
4584 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004585 io_sqe_buffer_unregister(ctx);
4586 return ret;
4587}
4588
Jens Axboe9b402842019-04-11 11:45:41 -06004589static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4590{
4591 __s32 __user *fds = arg;
4592 int fd;
4593
4594 if (ctx->cq_ev_fd)
4595 return -EBUSY;
4596
4597 if (copy_from_user(&fd, fds, sizeof(*fds)))
4598 return -EFAULT;
4599
4600 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4601 if (IS_ERR(ctx->cq_ev_fd)) {
4602 int ret = PTR_ERR(ctx->cq_ev_fd);
4603 ctx->cq_ev_fd = NULL;
4604 return ret;
4605 }
4606
4607 return 0;
4608}
4609
4610static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4611{
4612 if (ctx->cq_ev_fd) {
4613 eventfd_ctx_put(ctx->cq_ev_fd);
4614 ctx->cq_ev_fd = NULL;
4615 return 0;
4616 }
4617
4618 return -ENXIO;
4619}
4620
Jens Axboe2b188cc2019-01-07 10:46:33 -07004621static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4622{
Jens Axboe6b063142019-01-10 22:13:58 -07004623 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004624 if (ctx->sqo_mm)
4625 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07004626
4627 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07004628 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07004629 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06004630 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07004631
Jens Axboe2b188cc2019-01-07 10:46:33 -07004632#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07004633 if (ctx->ring_sock) {
4634 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004635 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07004636 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004637#endif
4638
Hristo Venev75b28af2019-08-26 17:23:46 +00004639 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004640 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004641
4642 percpu_ref_exit(&ctx->refs);
4643 if (ctx->account_mem)
4644 io_unaccount_mem(ctx->user,
4645 ring_pages(ctx->sq_entries, ctx->cq_entries));
4646 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07004647 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07004648 kfree(ctx->completions);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07004649 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004650 kfree(ctx);
4651}
4652
4653static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4654{
4655 struct io_ring_ctx *ctx = file->private_data;
4656 __poll_t mask = 0;
4657
4658 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02004659 /*
4660 * synchronizes with barrier from wq_has_sleeper call in
4661 * io_commit_cqring
4662 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004663 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00004664 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4665 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004666 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08004667 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004668 mask |= EPOLLIN | EPOLLRDNORM;
4669
4670 return mask;
4671}
4672
4673static int io_uring_fasync(int fd, struct file *file, int on)
4674{
4675 struct io_ring_ctx *ctx = file->private_data;
4676
4677 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4678}
4679
4680static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4681{
4682 mutex_lock(&ctx->uring_lock);
4683 percpu_ref_kill(&ctx->refs);
4684 mutex_unlock(&ctx->uring_lock);
4685
Jens Axboe5262f562019-09-17 12:26:57 -06004686 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004687 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06004688
4689 if (ctx->io_wq)
4690 io_wq_cancel_all(ctx->io_wq);
4691
Jens Axboedef596e2019-01-09 08:59:42 -07004692 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07004693 /* if we failed setting up the ctx, we might not have any rings */
4694 if (ctx->rings)
4695 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07004696 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004697 io_ring_ctx_free(ctx);
4698}
4699
4700static int io_uring_release(struct inode *inode, struct file *file)
4701{
4702 struct io_ring_ctx *ctx = file->private_data;
4703
4704 file->private_data = NULL;
4705 io_ring_ctx_wait_and_kill(ctx);
4706 return 0;
4707}
4708
Jens Axboefcb323c2019-10-24 12:39:47 -06004709static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4710 struct files_struct *files)
4711{
4712 struct io_kiocb *req;
4713 DEFINE_WAIT(wait);
4714
4715 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07004716 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06004717
4718 spin_lock_irq(&ctx->inflight_lock);
4719 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07004720 if (req->work.files != files)
4721 continue;
4722 /* req is being completed, ignore */
4723 if (!refcount_inc_not_zero(&req->refs))
4724 continue;
4725 cancel_req = req;
4726 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06004727 }
Jens Axboe768134d2019-11-10 20:30:53 -07004728 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004729 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07004730 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06004731 spin_unlock_irq(&ctx->inflight_lock);
4732
Jens Axboe768134d2019-11-10 20:30:53 -07004733 /* We need to keep going until we don't find a matching req */
4734 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004735 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08004736
4737 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
4738 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06004739 schedule();
4740 }
Jens Axboe768134d2019-11-10 20:30:53 -07004741 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06004742}
4743
4744static int io_uring_flush(struct file *file, void *data)
4745{
4746 struct io_ring_ctx *ctx = file->private_data;
4747
4748 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004749 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
4750 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06004751 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004752 }
Jens Axboefcb323c2019-10-24 12:39:47 -06004753 return 0;
4754}
4755
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004756static void *io_uring_validate_mmap_request(struct file *file,
4757 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004758{
Jens Axboe2b188cc2019-01-07 10:46:33 -07004759 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004760 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004761 struct page *page;
4762 void *ptr;
4763
4764 switch (offset) {
4765 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00004766 case IORING_OFF_CQ_RING:
4767 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004768 break;
4769 case IORING_OFF_SQES:
4770 ptr = ctx->sq_sqes;
4771 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004772 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004773 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004774 }
4775
4776 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07004777 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004778 return ERR_PTR(-EINVAL);
4779
4780 return ptr;
4781}
4782
4783#ifdef CONFIG_MMU
4784
4785static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4786{
4787 size_t sz = vma->vm_end - vma->vm_start;
4788 unsigned long pfn;
4789 void *ptr;
4790
4791 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
4792 if (IS_ERR(ptr))
4793 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004794
4795 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
4796 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
4797}
4798
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004799#else /* !CONFIG_MMU */
4800
4801static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4802{
4803 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
4804}
4805
4806static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
4807{
4808 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
4809}
4810
4811static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
4812 unsigned long addr, unsigned long len,
4813 unsigned long pgoff, unsigned long flags)
4814{
4815 void *ptr;
4816
4817 ptr = io_uring_validate_mmap_request(file, pgoff, len);
4818 if (IS_ERR(ptr))
4819 return PTR_ERR(ptr);
4820
4821 return (unsigned long) ptr;
4822}
4823
4824#endif /* !CONFIG_MMU */
4825
Jens Axboe2b188cc2019-01-07 10:46:33 -07004826SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
4827 u32, min_complete, u32, flags, const sigset_t __user *, sig,
4828 size_t, sigsz)
4829{
4830 struct io_ring_ctx *ctx;
4831 long ret = -EBADF;
4832 int submitted = 0;
4833 struct fd f;
4834
Jens Axboe6c271ce2019-01-10 11:22:30 -07004835 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07004836 return -EINVAL;
4837
4838 f = fdget(fd);
4839 if (!f.file)
4840 return -EBADF;
4841
4842 ret = -EOPNOTSUPP;
4843 if (f.file->f_op != &io_uring_fops)
4844 goto out_fput;
4845
4846 ret = -ENXIO;
4847 ctx = f.file->private_data;
4848 if (!percpu_ref_tryget(&ctx->refs))
4849 goto out_fput;
4850
Jens Axboe6c271ce2019-01-10 11:22:30 -07004851 /*
4852 * For SQ polling, the thread will do all submissions and completions.
4853 * Just return the requested submit count, and wake the thread if
4854 * we were asked to.
4855 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06004856 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004857 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07004858 if (!list_empty_careful(&ctx->cq_overflow_list))
4859 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004860 if (flags & IORING_ENTER_SQ_WAKEUP)
4861 wake_up(&ctx->sqo_wait);
4862 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06004863 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004864 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004865
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004866 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004867 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004868 /* already have mm, so io_submit_sqes() won't try to grab it */
4869 cur_mm = ctx->sqo_mm;
4870 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
4871 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004872 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004873 }
4874 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07004875 unsigned nr_events = 0;
4876
Jens Axboe2b188cc2019-01-07 10:46:33 -07004877 min_complete = min(min_complete, ctx->cq_entries);
4878
Jens Axboedef596e2019-01-09 08:59:42 -07004879 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07004880 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07004881 } else {
4882 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
4883 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004884 }
4885
Pavel Begunkov6805b322019-10-08 02:18:42 +03004886 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004887out_fput:
4888 fdput(f);
4889 return submitted ? submitted : ret;
4890}
4891
4892static const struct file_operations io_uring_fops = {
4893 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06004894 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07004895 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01004896#ifndef CONFIG_MMU
4897 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
4898 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
4899#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07004900 .poll = io_uring_poll,
4901 .fasync = io_uring_fasync,
4902};
4903
4904static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
4905 struct io_uring_params *p)
4906{
Hristo Venev75b28af2019-08-26 17:23:46 +00004907 struct io_rings *rings;
4908 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004909
Hristo Venev75b28af2019-08-26 17:23:46 +00004910 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
4911 if (size == SIZE_MAX)
4912 return -EOVERFLOW;
4913
4914 rings = io_mem_alloc(size);
4915 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004916 return -ENOMEM;
4917
Hristo Venev75b28af2019-08-26 17:23:46 +00004918 ctx->rings = rings;
4919 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
4920 rings->sq_ring_mask = p->sq_entries - 1;
4921 rings->cq_ring_mask = p->cq_entries - 1;
4922 rings->sq_ring_entries = p->sq_entries;
4923 rings->cq_ring_entries = p->cq_entries;
4924 ctx->sq_mask = rings->sq_ring_mask;
4925 ctx->cq_mask = rings->cq_ring_mask;
4926 ctx->sq_entries = rings->sq_ring_entries;
4927 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004928
4929 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07004930 if (size == SIZE_MAX) {
4931 io_mem_free(ctx->rings);
4932 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004933 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07004934 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004935
4936 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07004937 if (!ctx->sq_sqes) {
4938 io_mem_free(ctx->rings);
4939 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004940 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07004941 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004942
Jens Axboe2b188cc2019-01-07 10:46:33 -07004943 return 0;
4944}
4945
4946/*
4947 * Allocate an anonymous fd, this is what constitutes the application
4948 * visible backing of an io_uring instance. The application mmaps this
4949 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
4950 * we have to tie this fd to a socket for file garbage collection purposes.
4951 */
4952static int io_uring_get_fd(struct io_ring_ctx *ctx)
4953{
4954 struct file *file;
4955 int ret;
4956
4957#if defined(CONFIG_UNIX)
4958 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
4959 &ctx->ring_sock);
4960 if (ret)
4961 return ret;
4962#endif
4963
4964 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
4965 if (ret < 0)
4966 goto err;
4967
4968 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
4969 O_RDWR | O_CLOEXEC);
4970 if (IS_ERR(file)) {
4971 put_unused_fd(ret);
4972 ret = PTR_ERR(file);
4973 goto err;
4974 }
4975
4976#if defined(CONFIG_UNIX)
4977 ctx->ring_sock->file = file;
Jens Axboe6b063142019-01-10 22:13:58 -07004978 ctx->ring_sock->sk->sk_user_data = ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004979#endif
4980 fd_install(ret, file);
4981 return ret;
4982err:
4983#if defined(CONFIG_UNIX)
4984 sock_release(ctx->ring_sock);
4985 ctx->ring_sock = NULL;
4986#endif
4987 return ret;
4988}
4989
4990static int io_uring_create(unsigned entries, struct io_uring_params *p)
4991{
4992 struct user_struct *user = NULL;
4993 struct io_ring_ctx *ctx;
4994 bool account_mem;
4995 int ret;
4996
4997 if (!entries || entries > IORING_MAX_ENTRIES)
4998 return -EINVAL;
4999
5000 /*
5001 * Use twice as many entries for the CQ ring. It's possible for the
5002 * application to drive a higher depth than the size of the SQ ring,
5003 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06005004 * some flexibility in overcommitting a bit. If the application has
5005 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
5006 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07005007 */
5008 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06005009 if (p->flags & IORING_SETUP_CQSIZE) {
5010 /*
5011 * If IORING_SETUP_CQSIZE is set, we do the same roundup
5012 * to a power-of-two, if it isn't already. We do NOT impose
5013 * any cq vs sq ring sizing.
5014 */
5015 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
5016 return -EINVAL;
5017 p->cq_entries = roundup_pow_of_two(p->cq_entries);
5018 } else {
5019 p->cq_entries = 2 * p->sq_entries;
5020 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005021
5022 user = get_uid(current_user());
5023 account_mem = !capable(CAP_IPC_LOCK);
5024
5025 if (account_mem) {
5026 ret = io_account_mem(user,
5027 ring_pages(p->sq_entries, p->cq_entries));
5028 if (ret) {
5029 free_uid(user);
5030 return ret;
5031 }
5032 }
5033
5034 ctx = io_ring_ctx_alloc(p);
5035 if (!ctx) {
5036 if (account_mem)
5037 io_unaccount_mem(user, ring_pages(p->sq_entries,
5038 p->cq_entries));
5039 free_uid(user);
5040 return -ENOMEM;
5041 }
5042 ctx->compat = in_compat_syscall();
5043 ctx->account_mem = account_mem;
5044 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07005045 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07005046
5047 ret = io_allocate_scq_urings(ctx, p);
5048 if (ret)
5049 goto err;
5050
Jens Axboe6c271ce2019-01-10 11:22:30 -07005051 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005052 if (ret)
5053 goto err;
5054
Jens Axboe2b188cc2019-01-07 10:46:33 -07005055 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005056 p->sq_off.head = offsetof(struct io_rings, sq.head);
5057 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
5058 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
5059 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
5060 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
5061 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
5062 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005063
5064 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005065 p->cq_off.head = offsetof(struct io_rings, cq.head);
5066 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
5067 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
5068 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
5069 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
5070 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06005071
Jens Axboe044c1ab2019-10-28 09:15:33 -06005072 /*
5073 * Install ring fd as the very last thing, so we don't risk someone
5074 * having closed it before we finish setup
5075 */
5076 ret = io_uring_get_fd(ctx);
5077 if (ret < 0)
5078 goto err;
5079
Jens Axboeda8c9692019-12-02 18:51:26 -07005080 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
5081 IORING_FEAT_SUBMIT_STABLE;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005082 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005083 return ret;
5084err:
5085 io_ring_ctx_wait_and_kill(ctx);
5086 return ret;
5087}
5088
5089/*
5090 * Sets up an aio uring context, and returns the fd. Applications asks for a
5091 * ring size, we return the actual sq/cq ring sizes (among other things) in the
5092 * params structure passed in.
5093 */
5094static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
5095{
5096 struct io_uring_params p;
5097 long ret;
5098 int i;
5099
5100 if (copy_from_user(&p, params, sizeof(p)))
5101 return -EFAULT;
5102 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
5103 if (p.resv[i])
5104 return -EINVAL;
5105 }
5106
Jens Axboe6c271ce2019-01-10 11:22:30 -07005107 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe33a107f2019-10-04 12:10:03 -06005108 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005109 return -EINVAL;
5110
5111 ret = io_uring_create(entries, &p);
5112 if (ret < 0)
5113 return ret;
5114
5115 if (copy_to_user(params, &p, sizeof(p)))
5116 return -EFAULT;
5117
5118 return ret;
5119}
5120
5121SYSCALL_DEFINE2(io_uring_setup, u32, entries,
5122 struct io_uring_params __user *, params)
5123{
5124 return io_uring_setup(entries, params);
5125}
5126
Jens Axboeedafcce2019-01-09 09:16:05 -07005127static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
5128 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06005129 __releases(ctx->uring_lock)
5130 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07005131{
5132 int ret;
5133
Jens Axboe35fa71a2019-04-22 10:23:23 -06005134 /*
5135 * We're inside the ring mutex, if the ref is already dying, then
5136 * someone else killed the ctx or is already going through
5137 * io_uring_register().
5138 */
5139 if (percpu_ref_is_dying(&ctx->refs))
5140 return -ENXIO;
5141
Jens Axboeedafcce2019-01-09 09:16:05 -07005142 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06005143
5144 /*
5145 * Drop uring mutex before waiting for references to exit. If another
5146 * thread is currently inside io_uring_enter() it might need to grab
5147 * the uring_lock to make progress. If we hold it here across the drain
5148 * wait, then we can deadlock. It's safe to drop the mutex here, since
5149 * no new references will come in after we've killed the percpu ref.
5150 */
5151 mutex_unlock(&ctx->uring_lock);
Jens Axboe206aefd2019-11-07 18:27:42 -07005152 wait_for_completion(&ctx->completions[0]);
Jens Axboeb19062a2019-04-15 10:49:38 -06005153 mutex_lock(&ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07005154
5155 switch (opcode) {
5156 case IORING_REGISTER_BUFFERS:
5157 ret = io_sqe_buffer_register(ctx, arg, nr_args);
5158 break;
5159 case IORING_UNREGISTER_BUFFERS:
5160 ret = -EINVAL;
5161 if (arg || nr_args)
5162 break;
5163 ret = io_sqe_buffer_unregister(ctx);
5164 break;
Jens Axboe6b063142019-01-10 22:13:58 -07005165 case IORING_REGISTER_FILES:
5166 ret = io_sqe_files_register(ctx, arg, nr_args);
5167 break;
5168 case IORING_UNREGISTER_FILES:
5169 ret = -EINVAL;
5170 if (arg || nr_args)
5171 break;
5172 ret = io_sqe_files_unregister(ctx);
5173 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06005174 case IORING_REGISTER_FILES_UPDATE:
5175 ret = io_sqe_files_update(ctx, arg, nr_args);
5176 break;
Jens Axboe9b402842019-04-11 11:45:41 -06005177 case IORING_REGISTER_EVENTFD:
5178 ret = -EINVAL;
5179 if (nr_args != 1)
5180 break;
5181 ret = io_eventfd_register(ctx, arg);
5182 break;
5183 case IORING_UNREGISTER_EVENTFD:
5184 ret = -EINVAL;
5185 if (arg || nr_args)
5186 break;
5187 ret = io_eventfd_unregister(ctx);
5188 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07005189 default:
5190 ret = -EINVAL;
5191 break;
5192 }
5193
5194 /* bring the ctx back to life */
Jens Axboe206aefd2019-11-07 18:27:42 -07005195 reinit_completion(&ctx->completions[0]);
Jens Axboeedafcce2019-01-09 09:16:05 -07005196 percpu_ref_reinit(&ctx->refs);
5197 return ret;
5198}
5199
5200SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
5201 void __user *, arg, unsigned int, nr_args)
5202{
5203 struct io_ring_ctx *ctx;
5204 long ret = -EBADF;
5205 struct fd f;
5206
5207 f = fdget(fd);
5208 if (!f.file)
5209 return -EBADF;
5210
5211 ret = -EOPNOTSUPP;
5212 if (f.file->f_op != &io_uring_fops)
5213 goto out_fput;
5214
5215 ctx = f.file->private_data;
5216
5217 mutex_lock(&ctx->uring_lock);
5218 ret = __io_uring_register(ctx, opcode, arg, nr_args);
5219 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005220 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
5221 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005222out_fput:
5223 fdput(f);
5224 return ret;
5225}
5226
Jens Axboe2b188cc2019-01-07 10:46:33 -07005227static int __init io_uring_init(void)
5228{
5229 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
5230 return 0;
5231};
5232__initcall(io_uring_init);