blob: 2cdfbb451fe215df56104025e53d8468b4ac0289 [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
LimingWu0b4295b2019-12-05 20:18:18 +0800148 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200149 * the completion queue.
150 *
151 * Written by the kernel, shouldn't be modified by the
152 * application (i.e. get number of "new events" by comparing to
153 * cached value).
154 *
155 * As completion events come in out of order this counter is not
156 * ordered with any other data.
157 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000158 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200159 /*
160 * Ring buffer of completion events.
161 *
162 * The kernel writes completion events fresh every time they are
163 * produced, so the application is allowed to modify pending
164 * entries.
165 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000166 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700167};
168
Jens Axboeedafcce2019-01-09 09:16:05 -0700169struct io_mapped_ubuf {
170 u64 ubuf;
171 size_t len;
172 struct bio_vec *bvec;
173 unsigned int nr_bvecs;
174};
175
Jens Axboe65e19f52019-10-26 07:20:21 -0600176struct fixed_file_table {
177 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700178};
179
Jens Axboe2b188cc2019-01-07 10:46:33 -0700180struct io_ring_ctx {
181 struct {
182 struct percpu_ref refs;
183 } ____cacheline_aligned_in_smp;
184
185 struct {
186 unsigned int flags;
187 bool compat;
188 bool account_mem;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700189 bool cq_overflow_flushed;
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300190 bool drain_next;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700191
Hristo Venev75b28af2019-08-26 17:23:46 +0000192 /*
193 * Ring buffer of indices into array of io_uring_sqe, which is
194 * mmapped by the application using the IORING_OFF_SQES offset.
195 *
196 * This indirection could e.g. be used to assign fixed
197 * io_uring_sqe entries to operations and only submit them to
198 * the queue when needed.
199 *
200 * The kernel modifies neither the indices array nor the entries
201 * array.
202 */
203 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700204 unsigned cached_sq_head;
205 unsigned sq_entries;
206 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700207 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600208 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700209 atomic_t cached_cq_overflow;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700210 struct io_uring_sqe *sq_sqes;
Jens Axboede0617e2019-04-06 21:51:27 -0600211
212 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600213 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700214 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700215
Jens Axboefcb323c2019-10-24 12:39:47 -0600216 wait_queue_head_t inflight_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700217 } ____cacheline_aligned_in_smp;
218
Hristo Venev75b28af2019-08-26 17:23:46 +0000219 struct io_rings *rings;
220
Jens Axboe2b188cc2019-01-07 10:46:33 -0700221 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600222 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700223 struct task_struct *sqo_thread; /* if using sq thread polling */
224 struct mm_struct *sqo_mm;
225 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700226
Jens Axboe6b063142019-01-10 22:13:58 -0700227 /*
228 * If used, fixed file set. Writers must ensure that ->refs is dead,
229 * readers must ensure that ->refs is alive as long as the file* is
230 * used. Only updated through io_uring_register(2).
231 */
Jens Axboe65e19f52019-10-26 07:20:21 -0600232 struct fixed_file_table *file_table;
Jens Axboe6b063142019-01-10 22:13:58 -0700233 unsigned nr_user_files;
234
Jens Axboeedafcce2019-01-09 09:16:05 -0700235 /* if used, fixed mapped user buffers */
236 unsigned nr_user_bufs;
237 struct io_mapped_ubuf *user_bufs;
238
Jens Axboe2b188cc2019-01-07 10:46:33 -0700239 struct user_struct *user;
240
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700241 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700242
Jens Axboe206aefd2019-11-07 18:27:42 -0700243 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
244 struct completion *completions;
245
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700246 /* if all else fails... */
247 struct io_kiocb *fallback_req;
248
Jens Axboe206aefd2019-11-07 18:27:42 -0700249#if defined(CONFIG_UNIX)
250 struct socket *ring_sock;
251#endif
252
253 struct {
254 unsigned cached_cq_tail;
255 unsigned cq_entries;
256 unsigned cq_mask;
257 atomic_t cq_timeouts;
258 struct wait_queue_head cq_wait;
259 struct fasync_struct *cq_fasync;
260 struct eventfd_ctx *cq_ev_fd;
261 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700262
263 struct {
264 struct mutex uring_lock;
265 wait_queue_head_t wait;
266 } ____cacheline_aligned_in_smp;
267
268 struct {
269 spinlock_t completion_lock;
Jens Axboedef596e2019-01-09 08:59:42 -0700270 bool poll_multi_file;
271 /*
272 * ->poll_list is protected by the ctx->uring_lock for
273 * io_uring instances that don't use IORING_SETUP_SQPOLL.
274 * For SQPOLL, only the single threaded io_sq_thread() will
275 * manipulate the list, hence no extra locking is needed there.
276 */
277 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700278 struct hlist_head *cancel_hash;
279 unsigned cancel_hash_bits;
Jens Axboefcb323c2019-10-24 12:39:47 -0600280
281 spinlock_t inflight_lock;
282 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700283 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700284};
285
Jens Axboe09bb8392019-03-13 12:39:28 -0600286/*
287 * First field must be the file pointer in all the
288 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
289 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700290struct io_poll_iocb {
291 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700292 union {
293 struct wait_queue_head *head;
294 u64 addr;
295 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700296 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600297 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700298 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700299 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700300};
301
Jens Axboead8a48a2019-11-15 08:49:11 -0700302struct io_timeout_data {
303 struct io_kiocb *req;
304 struct hrtimer timer;
305 struct timespec64 ts;
306 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300307 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700308};
309
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700310struct io_accept {
311 struct file *file;
312 struct sockaddr __user *addr;
313 int __user *addr_len;
314 int flags;
315};
316
317struct io_sync {
318 struct file *file;
319 loff_t len;
320 loff_t off;
321 int flags;
322};
323
Jens Axboefbf23842019-12-17 18:45:56 -0700324struct io_cancel {
325 struct file *file;
326 u64 addr;
327};
328
Jens Axboeb29472e2019-12-17 18:50:29 -0700329struct io_timeout {
330 struct file *file;
331 u64 addr;
332 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700333 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700334};
335
Jens Axboe9adbd452019-12-20 08:45:55 -0700336struct io_rw {
337 /* NOTE: kiocb has the file as the first member, so don't do it here */
338 struct kiocb kiocb;
339 u64 addr;
340 u64 len;
341};
342
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700343struct io_connect {
344 struct file *file;
345 struct sockaddr __user *addr;
346 int addr_len;
347};
348
Jens Axboee47293f2019-12-20 08:58:21 -0700349struct io_sr_msg {
350 struct file *file;
351 struct user_msghdr __user *msg;
352 int msg_flags;
353};
354
Jens Axboef499a022019-12-02 16:28:46 -0700355struct io_async_connect {
356 struct sockaddr_storage address;
357};
358
Jens Axboe03b12302019-12-02 18:50:25 -0700359struct io_async_msghdr {
360 struct iovec fast_iov[UIO_FASTIOV];
361 struct iovec *iov;
362 struct sockaddr __user *uaddr;
363 struct msghdr msg;
364};
365
Jens Axboef67676d2019-12-02 11:03:47 -0700366struct io_async_rw {
367 struct iovec fast_iov[UIO_FASTIOV];
368 struct iovec *iov;
369 ssize_t nr_segs;
370 ssize_t size;
371};
372
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700373struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700374 union {
375 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700376 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700377 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700378 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700379 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700380};
381
Jens Axboe09bb8392019-03-13 12:39:28 -0600382/*
383 * NOTE! Each of the iocb union members has the file pointer
384 * as the first entry in their struct definition. So you can
385 * access the file pointer through any of the sub-structs,
386 * or directly as just 'ki_filp' in this struct.
387 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700388struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700389 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600390 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700391 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700392 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700393 struct io_accept accept;
394 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700395 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700396 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700397 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700398 struct io_sr_msg sr_msg;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700399 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700400
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300401 const struct io_uring_sqe *sqe;
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700402 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300403 struct file *ring_file;
404 int ring_fd;
405 bool has_user;
406 bool in_async;
407 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700408 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700409
410 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700411 union {
412 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700413 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700414 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600415 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700416 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700417 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200418#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700419#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700420#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700421#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200422#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
423#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600424#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700425#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800426#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300427#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600428#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600429#define REQ_F_ISREG 2048 /* regular file */
430#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700431#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800432#define REQ_F_INFLIGHT 16384 /* on inflight list */
433#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe4e88d6e2019-12-07 20:59:47 -0700434#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700435 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600436 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600437 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700438
Jens Axboefcb323c2019-10-24 12:39:47 -0600439 struct list_head inflight_entry;
440
Jens Axboe561fb042019-10-24 07:25:42 -0600441 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700442};
443
444#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700445#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700446
Jens Axboe9a56a232019-01-09 09:06:50 -0700447struct io_submit_state {
448 struct blk_plug plug;
449
450 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700451 * io_kiocb alloc cache
452 */
453 void *reqs[IO_IOPOLL_BATCH];
454 unsigned int free_reqs;
455 unsigned int cur_req;
456
457 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700458 * File reference cache
459 */
460 struct file *file;
461 unsigned int fd;
462 unsigned int has_refs;
463 unsigned int used_refs;
464 unsigned int ios_left;
465};
466
Jens Axboe561fb042019-10-24 07:25:42 -0600467static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700468static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liu4fe2c962019-09-09 20:50:40 +0800469static void __io_free_req(struct io_kiocb *req);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800470static void io_put_req(struct io_kiocb *req);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700471static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700472static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700473static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
474static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600475
Jens Axboe2b188cc2019-01-07 10:46:33 -0700476static struct kmem_cache *req_cachep;
477
478static const struct file_operations io_uring_fops;
479
480struct sock *io_uring_get_socket(struct file *file)
481{
482#if defined(CONFIG_UNIX)
483 if (file->f_op == &io_uring_fops) {
484 struct io_ring_ctx *ctx = file->private_data;
485
486 return ctx->ring_sock->sk;
487 }
488#endif
489 return NULL;
490}
491EXPORT_SYMBOL(io_uring_get_socket);
492
493static void io_ring_ctx_ref_free(struct percpu_ref *ref)
494{
495 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
496
Jens Axboe206aefd2019-11-07 18:27:42 -0700497 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700498}
499
500static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
501{
502 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700503 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700504
505 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
506 if (!ctx)
507 return NULL;
508
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700509 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
510 if (!ctx->fallback_req)
511 goto err;
512
Jens Axboe206aefd2019-11-07 18:27:42 -0700513 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
514 if (!ctx->completions)
515 goto err;
516
Jens Axboe78076bb2019-12-04 19:56:40 -0700517 /*
518 * Use 5 bits less than the max cq entries, that should give us around
519 * 32 entries per hash list if totally full and uniformly spread.
520 */
521 hash_bits = ilog2(p->cq_entries);
522 hash_bits -= 5;
523 if (hash_bits <= 0)
524 hash_bits = 1;
525 ctx->cancel_hash_bits = hash_bits;
526 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
527 GFP_KERNEL);
528 if (!ctx->cancel_hash)
529 goto err;
530 __hash_init(ctx->cancel_hash, 1U << hash_bits);
531
Roman Gushchin21482892019-05-07 10:01:48 -0700532 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700533 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
534 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700535
536 ctx->flags = p->flags;
537 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700538 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700539 init_completion(&ctx->completions[0]);
540 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700541 mutex_init(&ctx->uring_lock);
542 init_waitqueue_head(&ctx->wait);
543 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700544 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600545 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600546 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600547 init_waitqueue_head(&ctx->inflight_wait);
548 spin_lock_init(&ctx->inflight_lock);
549 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700550 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700551err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700552 if (ctx->fallback_req)
553 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700554 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700555 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700556 kfree(ctx);
557 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700558}
559
Bob Liu9d858b22019-11-13 18:06:25 +0800560static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600561{
Jackie Liua197f662019-11-08 08:09:12 -0700562 struct io_ring_ctx *ctx = req->ctx;
563
Jens Axboe498ccd92019-10-25 10:04:25 -0600564 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
565 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600566}
567
Bob Liu9d858b22019-11-13 18:06:25 +0800568static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600569{
Bob Liu9d858b22019-11-13 18:06:25 +0800570 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
571 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600572
Bob Liu9d858b22019-11-13 18:06:25 +0800573 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600574}
575
576static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600577{
578 struct io_kiocb *req;
579
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600580 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800581 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600582 list_del_init(&req->list);
583 return req;
584 }
585
586 return NULL;
587}
588
Jens Axboe5262f562019-09-17 12:26:57 -0600589static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
590{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600591 struct io_kiocb *req;
592
593 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700594 if (req) {
595 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
596 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800597 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700598 list_del_init(&req->list);
599 return req;
600 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600601 }
602
603 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600604}
605
Jens Axboede0617e2019-04-06 21:51:27 -0600606static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700607{
Hristo Venev75b28af2019-08-26 17:23:46 +0000608 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700609
Hristo Venev75b28af2019-08-26 17:23:46 +0000610 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700611 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000612 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700613
Jens Axboe2b188cc2019-01-07 10:46:33 -0700614 if (wq_has_sleeper(&ctx->cq_wait)) {
615 wake_up_interruptible(&ctx->cq_wait);
616 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
617 }
618 }
619}
620
Jens Axboed625c6e2019-12-17 19:53:05 -0700621static inline bool io_req_needs_user(struct io_kiocb *req)
Jens Axboe18d9be12019-09-10 09:13:05 -0600622{
Jens Axboed625c6e2019-12-17 19:53:05 -0700623 return !(req->opcode == IORING_OP_READ_FIXED ||
624 req->opcode == IORING_OP_WRITE_FIXED);
Jens Axboe561fb042019-10-24 07:25:42 -0600625}
626
Jens Axboe94ae5e72019-11-14 19:39:52 -0700627static inline bool io_prep_async_work(struct io_kiocb *req,
628 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600629{
630 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600631
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300632 if (req->sqe) {
Jens Axboed625c6e2019-12-17 19:53:05 -0700633 switch (req->opcode) {
Jens Axboe6cc47d12019-09-18 11:18:23 -0600634 case IORING_OP_WRITEV:
635 case IORING_OP_WRITE_FIXED:
Jens Axboe53108d42019-12-09 20:12:38 -0700636 /* only regular files should be hashed for writes */
637 if (req->flags & REQ_F_ISREG)
638 do_hashed = true;
Jens Axboe5f8fd2d32019-11-07 10:57:36 -0700639 /* fall-through */
640 case IORING_OP_READV:
641 case IORING_OP_READ_FIXED:
642 case IORING_OP_SENDMSG:
643 case IORING_OP_RECVMSG:
644 case IORING_OP_ACCEPT:
645 case IORING_OP_POLL_ADD:
Jens Axboef8e85cf2019-11-23 14:24:24 -0700646 case IORING_OP_CONNECT:
Jens Axboe5f8fd2d32019-11-07 10:57:36 -0700647 /*
648 * We know REQ_F_ISREG is not set on some of these
649 * opcodes, but this enables us to keep the check in
650 * just one place.
651 */
652 if (!(req->flags & REQ_F_ISREG))
653 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe6cc47d12019-09-18 11:18:23 -0600654 break;
655 }
Jens Axboed625c6e2019-12-17 19:53:05 -0700656 if (io_req_needs_user(req))
Jens Axboe561fb042019-10-24 07:25:42 -0600657 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600658 }
659
Jens Axboe94ae5e72019-11-14 19:39:52 -0700660 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600661 return do_hashed;
662}
663
Jackie Liua197f662019-11-08 08:09:12 -0700664static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600665{
Jackie Liua197f662019-11-08 08:09:12 -0700666 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700667 struct io_kiocb *link;
668 bool do_hashed;
669
670 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600671
672 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
673 req->flags);
674 if (!do_hashed) {
675 io_wq_enqueue(ctx->io_wq, &req->work);
676 } else {
677 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
678 file_inode(req->file));
679 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700680
681 if (link)
682 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600683}
684
Jens Axboe5262f562019-09-17 12:26:57 -0600685static void io_kill_timeout(struct io_kiocb *req)
686{
687 int ret;
688
Jens Axboe2d283902019-12-04 11:08:05 -0700689 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600690 if (ret != -1) {
691 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600692 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700693 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800694 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600695 }
696}
697
698static void io_kill_timeouts(struct io_ring_ctx *ctx)
699{
700 struct io_kiocb *req, *tmp;
701
702 spin_lock_irq(&ctx->completion_lock);
703 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
704 io_kill_timeout(req);
705 spin_unlock_irq(&ctx->completion_lock);
706}
707
Jens Axboede0617e2019-04-06 21:51:27 -0600708static void io_commit_cqring(struct io_ring_ctx *ctx)
709{
710 struct io_kiocb *req;
711
Jens Axboe5262f562019-09-17 12:26:57 -0600712 while ((req = io_get_timeout_req(ctx)) != NULL)
713 io_kill_timeout(req);
714
Jens Axboede0617e2019-04-06 21:51:27 -0600715 __io_commit_cqring(ctx);
716
717 while ((req = io_get_deferred_req(ctx)) != NULL) {
718 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700719 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600720 }
721}
722
Jens Axboe2b188cc2019-01-07 10:46:33 -0700723static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
724{
Hristo Venev75b28af2019-08-26 17:23:46 +0000725 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700726 unsigned tail;
727
728 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200729 /*
730 * writes to the cq entry need to come after reading head; the
731 * control dependency is enough as we're using WRITE_ONCE to
732 * fill the cq entry
733 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000734 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700735 return NULL;
736
737 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000738 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700739}
740
Jens Axboe8c838782019-03-12 15:48:16 -0600741static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
742{
743 if (waitqueue_active(&ctx->wait))
744 wake_up(&ctx->wait);
745 if (waitqueue_active(&ctx->sqo_wait))
746 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600747 if (ctx->cq_ev_fd)
748 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600749}
750
Jens Axboec4a2ed72019-11-21 21:01:26 -0700751/* Returns true if there are no backlogged entries after the flush */
752static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700753{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700754 struct io_rings *rings = ctx->rings;
755 struct io_uring_cqe *cqe;
756 struct io_kiocb *req;
757 unsigned long flags;
758 LIST_HEAD(list);
759
760 if (!force) {
761 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700762 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700763 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
764 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700765 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700766 }
767
768 spin_lock_irqsave(&ctx->completion_lock, flags);
769
770 /* if force is set, the ring is going away. always drop after that */
771 if (force)
772 ctx->cq_overflow_flushed = true;
773
Jens Axboec4a2ed72019-11-21 21:01:26 -0700774 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700775 while (!list_empty(&ctx->cq_overflow_list)) {
776 cqe = io_get_cqring(ctx);
777 if (!cqe && !force)
778 break;
779
780 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
781 list);
782 list_move(&req->list, &list);
783 if (cqe) {
784 WRITE_ONCE(cqe->user_data, req->user_data);
785 WRITE_ONCE(cqe->res, req->result);
786 WRITE_ONCE(cqe->flags, 0);
787 } else {
788 WRITE_ONCE(ctx->rings->cq_overflow,
789 atomic_inc_return(&ctx->cached_cq_overflow));
790 }
791 }
792
793 io_commit_cqring(ctx);
794 spin_unlock_irqrestore(&ctx->completion_lock, flags);
795 io_cqring_ev_posted(ctx);
796
797 while (!list_empty(&list)) {
798 req = list_first_entry(&list, struct io_kiocb, list);
799 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800800 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700801 }
Jens Axboec4a2ed72019-11-21 21:01:26 -0700802
803 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700804}
805
Jens Axboe78e19bb2019-11-06 15:21:34 -0700806static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700807{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700808 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700809 struct io_uring_cqe *cqe;
810
Jens Axboe78e19bb2019-11-06 15:21:34 -0700811 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -0700812
Jens Axboe2b188cc2019-01-07 10:46:33 -0700813 /*
814 * If we can't get a cq entry, userspace overflowed the
815 * submission (by quite a lot). Increment the overflow count in
816 * the ring.
817 */
818 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700819 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700820 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700821 WRITE_ONCE(cqe->res, res);
822 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700823 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700824 WRITE_ONCE(ctx->rings->cq_overflow,
825 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700826 } else {
827 refcount_inc(&req->refs);
828 req->result = res;
829 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700830 }
831}
832
Jens Axboe78e19bb2019-11-06 15:21:34 -0700833static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700834{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700835 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700836 unsigned long flags;
837
838 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700839 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700840 io_commit_cqring(ctx);
841 spin_unlock_irqrestore(&ctx->completion_lock, flags);
842
Jens Axboe8c838782019-03-12 15:48:16 -0600843 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700844}
845
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700846static inline bool io_is_fallback_req(struct io_kiocb *req)
847{
848 return req == (struct io_kiocb *)
849 ((unsigned long) req->ctx->fallback_req & ~1UL);
850}
851
852static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
853{
854 struct io_kiocb *req;
855
856 req = ctx->fallback_req;
857 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
858 return req;
859
860 return NULL;
861}
862
Jens Axboe2579f912019-01-09 09:10:43 -0700863static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
864 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700865{
Jens Axboefd6fab22019-03-14 16:30:06 -0600866 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700867 struct io_kiocb *req;
868
869 if (!percpu_ref_tryget(&ctx->refs))
870 return NULL;
871
Jens Axboe2579f912019-01-09 09:10:43 -0700872 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -0600873 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -0700874 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700875 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -0700876 } else if (!state->free_reqs) {
877 size_t sz;
878 int ret;
879
880 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -0600881 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
882
883 /*
884 * Bulk alloc is all-or-nothing. If we fail to get a batch,
885 * retry single alloc to be on the safe side.
886 */
887 if (unlikely(ret <= 0)) {
888 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
889 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700890 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -0600891 ret = 1;
892 }
Jens Axboe2579f912019-01-09 09:10:43 -0700893 state->free_reqs = ret - 1;
894 state->cur_req = 1;
895 req = state->reqs[0];
896 } else {
897 req = state->reqs[state->cur_req];
898 state->free_reqs--;
899 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700900 }
901
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700902got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700903 req->io = NULL;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300904 req->ring_file = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -0600905 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -0700906 req->ctx = ctx;
907 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -0600908 /* one is dropped after submission, the other at completion */
909 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -0600910 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -0600911 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -0700912 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700913fallback:
914 req = io_get_fallback_req(ctx);
915 if (req)
916 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +0300917 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700918 return NULL;
919}
920
Jens Axboedef596e2019-01-09 08:59:42 -0700921static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
922{
923 if (*nr) {
924 kmem_cache_free_bulk(req_cachep, *nr, reqs);
Pavel Begunkov6805b322019-10-08 02:18:42 +0300925 percpu_ref_put_many(&ctx->refs, *nr);
Jens Axboedef596e2019-01-09 08:59:42 -0700926 *nr = 0;
927 }
928}
929
Jens Axboe9e645e112019-05-10 16:07:28 -0600930static void __io_free_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700931{
Jens Axboefcb323c2019-10-24 12:39:47 -0600932 struct io_ring_ctx *ctx = req->ctx;
933
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700934 if (req->io)
935 kfree(req->io);
Jens Axboe09bb8392019-03-13 12:39:28 -0600936 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
937 fput(req->file);
Jens Axboefcb323c2019-10-24 12:39:47 -0600938 if (req->flags & REQ_F_INFLIGHT) {
939 unsigned long flags;
940
941 spin_lock_irqsave(&ctx->inflight_lock, flags);
942 list_del(&req->inflight_entry);
943 if (waitqueue_active(&ctx->inflight_wait))
944 wake_up(&ctx->inflight_wait);
945 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
946 }
947 percpu_ref_put(&ctx->refs);
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700948 if (likely(!io_is_fallback_req(req)))
949 kmem_cache_free(req_cachep, req);
950 else
951 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -0600952}
953
Jackie Liua197f662019-11-08 08:09:12 -0700954static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -0600955{
Jackie Liua197f662019-11-08 08:09:12 -0700956 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700957 int ret;
958
Jens Axboe2d283902019-12-04 11:08:05 -0700959 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -0700960 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700961 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -0700962 io_commit_cqring(ctx);
963 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +0800964 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -0700965 return true;
966 }
967
968 return false;
969}
970
Jens Axboeba816ad2019-09-28 11:36:45 -0600971static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -0600972{
Jens Axboe2665abf2019-11-05 12:40:47 -0700973 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700974 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -0600975
Jens Axboe4d7dd462019-11-20 13:03:52 -0700976 /* Already got next link */
977 if (req->flags & REQ_F_LINK_NEXT)
978 return;
979
Jens Axboe9e645e112019-05-10 16:07:28 -0600980 /*
981 * The list should never be empty when we are called here. But could
982 * potentially happen if the chain is messed up, check to be on the
983 * safe side.
984 */
Pavel Begunkov44932332019-12-05 16:16:35 +0300985 while (!list_empty(&req->link_list)) {
986 struct io_kiocb *nxt = list_first_entry(&req->link_list,
987 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700988
Pavel Begunkov44932332019-12-05 16:16:35 +0300989 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
990 (nxt->flags & REQ_F_TIMEOUT))) {
991 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700992 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700993 req->flags &= ~REQ_F_LINK_TIMEOUT;
994 continue;
995 }
Jens Axboe9e645e112019-05-10 16:07:28 -0600996
Pavel Begunkov44932332019-12-05 16:16:35 +0300997 list_del_init(&req->link_list);
998 if (!list_empty(&nxt->link_list))
999 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001000 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001001 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001002 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001003
Jens Axboe4d7dd462019-11-20 13:03:52 -07001004 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001005 if (wake_ev)
1006 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001007}
1008
1009/*
1010 * Called if REQ_F_LINK is set, and we fail the head request
1011 */
1012static void io_fail_links(struct io_kiocb *req)
1013{
Jens Axboe2665abf2019-11-05 12:40:47 -07001014 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001015 unsigned long flags;
1016
1017 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001018
1019 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001020 struct io_kiocb *link = list_first_entry(&req->link_list,
1021 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001022
Pavel Begunkov44932332019-12-05 16:16:35 +03001023 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001024 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001025
1026 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001027 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001028 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001029 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001030 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001031 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001032 }
Jens Axboe5d960722019-11-19 15:31:28 -07001033 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001034 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001035
1036 io_commit_cqring(ctx);
1037 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1038 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001039}
1040
Jens Axboe4d7dd462019-11-20 13:03:52 -07001041static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001042{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001043 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001044 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001045
Jens Axboe9e645e112019-05-10 16:07:28 -06001046 /*
1047 * If LINK is set, we have dependent requests in this chain. If we
1048 * didn't fail this request, queue the first one up, moving any other
1049 * dependencies to the next request. In case of failure, fail the rest
1050 * of the chain.
1051 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001052 if (req->flags & REQ_F_FAIL_LINK) {
1053 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001054 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1055 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001056 struct io_ring_ctx *ctx = req->ctx;
1057 unsigned long flags;
1058
1059 /*
1060 * If this is a timeout link, we could be racing with the
1061 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001062 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001063 */
1064 spin_lock_irqsave(&ctx->completion_lock, flags);
1065 io_req_link_next(req, nxt);
1066 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1067 } else {
1068 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001069 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001070}
Jens Axboe9e645e112019-05-10 16:07:28 -06001071
Jackie Liuc69f8db2019-11-09 11:00:08 +08001072static void io_free_req(struct io_kiocb *req)
1073{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001074 struct io_kiocb *nxt = NULL;
1075
1076 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001077 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001078
1079 if (nxt)
1080 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001081}
1082
Jens Axboeba816ad2019-09-28 11:36:45 -06001083/*
1084 * Drop reference to request, return next in chain (if there is one) if this
1085 * was the last reference to this request.
1086 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001087__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001088static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001089{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001090 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001091
Jens Axboee65ef562019-03-12 10:16:44 -06001092 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001093 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001094}
1095
Jens Axboe2b188cc2019-01-07 10:46:33 -07001096static void io_put_req(struct io_kiocb *req)
1097{
Jens Axboedef596e2019-01-09 08:59:42 -07001098 if (refcount_dec_and_test(&req->refs))
1099 io_free_req(req);
1100}
1101
Jens Axboe978db572019-11-14 22:39:04 -07001102/*
1103 * Must only be used if we don't need to care about links, usually from
1104 * within the completion handling itself.
1105 */
1106static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001107{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001108 /* drop both submit and complete references */
1109 if (refcount_sub_and_test(2, &req->refs))
1110 __io_free_req(req);
1111}
1112
Jens Axboe978db572019-11-14 22:39:04 -07001113static void io_double_put_req(struct io_kiocb *req)
1114{
1115 /* drop both submit and complete references */
1116 if (refcount_sub_and_test(2, &req->refs))
1117 io_free_req(req);
1118}
1119
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001120static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001121{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001122 struct io_rings *rings = ctx->rings;
1123
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001124 /*
1125 * noflush == true is from the waitqueue handler, just ensure we wake
1126 * up the task, and the next invocation will flush the entries. We
1127 * cannot safely to it from here.
1128 */
1129 if (noflush && !list_empty(&ctx->cq_overflow_list))
1130 return -1U;
1131
1132 io_cqring_overflow_flush(ctx, false);
1133
Jens Axboea3a0e432019-08-20 11:03:11 -06001134 /* See comment at the top of this file */
1135 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00001136 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001137}
1138
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001139static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1140{
1141 struct io_rings *rings = ctx->rings;
1142
1143 /* make sure SQ entry isn't read before tail */
1144 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1145}
1146
Jens Axboedef596e2019-01-09 08:59:42 -07001147/*
1148 * Find and free completed poll iocbs
1149 */
1150static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1151 struct list_head *done)
1152{
1153 void *reqs[IO_IOPOLL_BATCH];
1154 struct io_kiocb *req;
Jens Axboe09bb8392019-03-13 12:39:28 -06001155 int to_free;
Jens Axboedef596e2019-01-09 08:59:42 -07001156
Jens Axboe09bb8392019-03-13 12:39:28 -06001157 to_free = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001158 while (!list_empty(done)) {
1159 req = list_first_entry(done, struct io_kiocb, list);
1160 list_del(&req->list);
1161
Jens Axboe78e19bb2019-11-06 15:21:34 -07001162 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001163 (*nr_events)++;
1164
Jens Axboe09bb8392019-03-13 12:39:28 -06001165 if (refcount_dec_and_test(&req->refs)) {
1166 /* If we're not using fixed files, we have to pair the
1167 * completion part with the file put. Use regular
1168 * completions for those, only batch free for fixed
Jens Axboe9e645e112019-05-10 16:07:28 -06001169 * file and non-linked commands.
Jens Axboe09bb8392019-03-13 12:39:28 -06001170 */
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001171 if (((req->flags & (REQ_F_FIXED_FILE|REQ_F_LINK)) ==
1172 REQ_F_FIXED_FILE) && !io_is_fallback_req(req) &&
1173 !req->io) {
Jens Axboe09bb8392019-03-13 12:39:28 -06001174 reqs[to_free++] = req;
1175 if (to_free == ARRAY_SIZE(reqs))
1176 io_free_req_many(ctx, reqs, &to_free);
Jens Axboe6b063142019-01-10 22:13:58 -07001177 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001178 io_free_req(req);
Jens Axboe6b063142019-01-10 22:13:58 -07001179 }
Jens Axboe9a56a232019-01-09 09:06:50 -07001180 }
Jens Axboedef596e2019-01-09 08:59:42 -07001181 }
Jens Axboedef596e2019-01-09 08:59:42 -07001182
Jens Axboe09bb8392019-03-13 12:39:28 -06001183 io_commit_cqring(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07001184 io_free_req_many(ctx, reqs, &to_free);
1185}
1186
1187static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1188 long min)
1189{
1190 struct io_kiocb *req, *tmp;
1191 LIST_HEAD(done);
1192 bool spin;
1193 int ret;
1194
1195 /*
1196 * Only spin for completions if we don't have multiple devices hanging
1197 * off our complete list, and we're under the requested amount.
1198 */
1199 spin = !ctx->poll_multi_file && *nr_events < min;
1200
1201 ret = 0;
1202 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001203 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001204
1205 /*
1206 * Move completed entries to our local list. If we find a
1207 * request that requires polling, break out and complete
1208 * the done list first, if we have entries there.
1209 */
1210 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1211 list_move_tail(&req->list, &done);
1212 continue;
1213 }
1214 if (!list_empty(&done))
1215 break;
1216
1217 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1218 if (ret < 0)
1219 break;
1220
1221 if (ret && spin)
1222 spin = false;
1223 ret = 0;
1224 }
1225
1226 if (!list_empty(&done))
1227 io_iopoll_complete(ctx, nr_events, &done);
1228
1229 return ret;
1230}
1231
1232/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001233 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001234 * non-spinning poll check - we'll still enter the driver poll loop, but only
1235 * as a non-spinning completion check.
1236 */
1237static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1238 long min)
1239{
Jens Axboe08f54392019-08-21 22:19:11 -06001240 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001241 int ret;
1242
1243 ret = io_do_iopoll(ctx, nr_events, min);
1244 if (ret < 0)
1245 return ret;
1246 if (!min || *nr_events >= min)
1247 return 0;
1248 }
1249
1250 return 1;
1251}
1252
1253/*
1254 * We can't just wait for polled events to come to us, we have to actively
1255 * find and complete them.
1256 */
1257static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1258{
1259 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1260 return;
1261
1262 mutex_lock(&ctx->uring_lock);
1263 while (!list_empty(&ctx->poll_list)) {
1264 unsigned int nr_events = 0;
1265
1266 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001267
1268 /*
1269 * Ensure we allow local-to-the-cpu processing to take place,
1270 * in this case we need to ensure that we reap all events.
1271 */
1272 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001273 }
1274 mutex_unlock(&ctx->uring_lock);
1275}
1276
Jens Axboe2b2ed972019-10-25 10:06:15 -06001277static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1278 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001279{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001280 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001281
1282 do {
1283 int tmin = 0;
1284
Jens Axboe500f9fb2019-08-19 12:15:59 -06001285 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001286 * Don't enter poll loop if we already have events pending.
1287 * If we do, we can potentially be spinning for commands that
1288 * already triggered a CQE (eg in error).
1289 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001290 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001291 break;
1292
1293 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001294 * If a submit got punted to a workqueue, we can have the
1295 * application entering polling for a command before it gets
1296 * issued. That app will hold the uring_lock for the duration
1297 * of the poll right here, so we need to take a breather every
1298 * now and then to ensure that the issue has a chance to add
1299 * the poll to the issued list. Otherwise we can spin here
1300 * forever, while the workqueue is stuck trying to acquire the
1301 * very same mutex.
1302 */
1303 if (!(++iters & 7)) {
1304 mutex_unlock(&ctx->uring_lock);
1305 mutex_lock(&ctx->uring_lock);
1306 }
1307
Jens Axboedef596e2019-01-09 08:59:42 -07001308 if (*nr_events < min)
1309 tmin = min - *nr_events;
1310
1311 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1312 if (ret <= 0)
1313 break;
1314 ret = 0;
1315 } while (min && !*nr_events && !need_resched());
1316
Jens Axboe2b2ed972019-10-25 10:06:15 -06001317 return ret;
1318}
1319
1320static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1321 long min)
1322{
1323 int ret;
1324
1325 /*
1326 * We disallow the app entering submit/complete with polling, but we
1327 * still need to lock the ring to prevent racing with polled issue
1328 * that got punted to a workqueue.
1329 */
1330 mutex_lock(&ctx->uring_lock);
1331 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001332 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001333 return ret;
1334}
1335
Jens Axboe491381ce2019-10-17 09:20:46 -06001336static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001337{
Jens Axboe491381ce2019-10-17 09:20:46 -06001338 /*
1339 * Tell lockdep we inherited freeze protection from submission
1340 * thread.
1341 */
1342 if (req->flags & REQ_F_ISREG) {
1343 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001344
Jens Axboe491381ce2019-10-17 09:20:46 -06001345 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001346 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001347 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001348}
1349
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001350static inline void req_set_fail_links(struct io_kiocb *req)
1351{
1352 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1353 req->flags |= REQ_F_FAIL_LINK;
1354}
1355
Jens Axboeba816ad2019-09-28 11:36:45 -06001356static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001357{
Jens Axboe9adbd452019-12-20 08:45:55 -07001358 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001359
Jens Axboe491381ce2019-10-17 09:20:46 -06001360 if (kiocb->ki_flags & IOCB_WRITE)
1361 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001362
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001363 if (res != req->result)
1364 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001365 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001366}
1367
1368static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1369{
Jens Axboe9adbd452019-12-20 08:45:55 -07001370 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001371
1372 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001373 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001374}
1375
Jens Axboeba816ad2019-09-28 11:36:45 -06001376static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1377{
Jens Axboe9adbd452019-12-20 08:45:55 -07001378 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001379 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001380
1381 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001382 io_put_req_find_next(req, &nxt);
1383
1384 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001385}
1386
Jens Axboedef596e2019-01-09 08:59:42 -07001387static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1388{
Jens Axboe9adbd452019-12-20 08:45:55 -07001389 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001390
Jens Axboe491381ce2019-10-17 09:20:46 -06001391 if (kiocb->ki_flags & IOCB_WRITE)
1392 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001393
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001394 if (res != req->result)
1395 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001396 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001397 if (res != -EAGAIN)
1398 req->flags |= REQ_F_IOPOLL_COMPLETED;
1399}
1400
1401/*
1402 * After the iocb has been issued, it's safe to be found on the poll list.
1403 * Adding the kiocb to the list AFTER submission ensures that we don't
1404 * find it from a io_iopoll_getevents() thread before the issuer is done
1405 * accessing the kiocb cookie.
1406 */
1407static void io_iopoll_req_issued(struct io_kiocb *req)
1408{
1409 struct io_ring_ctx *ctx = req->ctx;
1410
1411 /*
1412 * Track whether we have multiple files in our lists. This will impact
1413 * how we do polling eventually, not spinning if we're on potentially
1414 * different devices.
1415 */
1416 if (list_empty(&ctx->poll_list)) {
1417 ctx->poll_multi_file = false;
1418 } else if (!ctx->poll_multi_file) {
1419 struct io_kiocb *list_req;
1420
1421 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1422 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001423 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001424 ctx->poll_multi_file = true;
1425 }
1426
1427 /*
1428 * For fast devices, IO may have already completed. If it has, add
1429 * it to the front so we find it first.
1430 */
1431 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1432 list_add(&req->list, &ctx->poll_list);
1433 else
1434 list_add_tail(&req->list, &ctx->poll_list);
1435}
1436
Jens Axboe3d6770f2019-04-13 11:50:54 -06001437static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001438{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001439 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001440 int diff = state->has_refs - state->used_refs;
1441
1442 if (diff)
1443 fput_many(state->file, diff);
1444 state->file = NULL;
1445 }
1446}
1447
1448/*
1449 * Get as many references to a file as we have IOs left in this submission,
1450 * assuming most submissions are for one file, or at least that each file
1451 * has more than one submission.
1452 */
1453static struct file *io_file_get(struct io_submit_state *state, int fd)
1454{
1455 if (!state)
1456 return fget(fd);
1457
1458 if (state->file) {
1459 if (state->fd == fd) {
1460 state->used_refs++;
1461 state->ios_left--;
1462 return state->file;
1463 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001464 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001465 }
1466 state->file = fget_many(fd, state->ios_left);
1467 if (!state->file)
1468 return NULL;
1469
1470 state->fd = fd;
1471 state->has_refs = state->ios_left;
1472 state->used_refs = 1;
1473 state->ios_left--;
1474 return state->file;
1475}
1476
Jens Axboe2b188cc2019-01-07 10:46:33 -07001477/*
1478 * If we tracked the file through the SCM inflight mechanism, we could support
1479 * any file. For now, just ensure that anything potentially problematic is done
1480 * inline.
1481 */
1482static bool io_file_supports_async(struct file *file)
1483{
1484 umode_t mode = file_inode(file)->i_mode;
1485
Jens Axboe10d59342019-12-09 20:16:22 -07001486 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001487 return true;
1488 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1489 return true;
1490
1491 return false;
1492}
1493
Pavel Begunkov267bc902019-11-07 01:41:08 +03001494static int io_prep_rw(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001495{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001496 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboedef596e2019-01-09 08:59:42 -07001497 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001498 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001499 unsigned ioprio;
1500 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001501
Jens Axboe06b76d42019-12-19 14:44:26 -07001502 if (!sqe)
1503 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06001504 if (!req->file)
1505 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001506
Jens Axboe491381ce2019-10-17 09:20:46 -06001507 if (S_ISREG(file_inode(req->file)->i_mode))
1508 req->flags |= REQ_F_ISREG;
1509
Jens Axboe2b188cc2019-01-07 10:46:33 -07001510 kiocb->ki_pos = READ_ONCE(sqe->off);
1511 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1512 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1513
1514 ioprio = READ_ONCE(sqe->ioprio);
1515 if (ioprio) {
1516 ret = ioprio_check_cap(ioprio);
1517 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001518 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001519
1520 kiocb->ki_ioprio = ioprio;
1521 } else
1522 kiocb->ki_ioprio = get_current_ioprio();
1523
1524 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1525 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001526 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001527
1528 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001529 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1530 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001531 req->flags |= REQ_F_NOWAIT;
1532
1533 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001534 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001535
Jens Axboedef596e2019-01-09 08:59:42 -07001536 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001537 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1538 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001539 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001540
Jens Axboedef596e2019-01-09 08:59:42 -07001541 kiocb->ki_flags |= IOCB_HIPRI;
1542 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001543 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001544 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001545 if (kiocb->ki_flags & IOCB_HIPRI)
1546 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001547 kiocb->ki_complete = io_complete_rw;
1548 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001549
1550 req->rw.addr = READ_ONCE(req->sqe->addr);
1551 req->rw.len = READ_ONCE(req->sqe->len);
1552 /* we own ->private, reuse it for the buffer index */
1553 req->rw.kiocb.private = (void *) (unsigned long)
1554 READ_ONCE(req->sqe->buf_index);
Jens Axboe06b76d42019-12-19 14:44:26 -07001555 req->sqe = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001556 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001557}
1558
1559static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1560{
1561 switch (ret) {
1562 case -EIOCBQUEUED:
1563 break;
1564 case -ERESTARTSYS:
1565 case -ERESTARTNOINTR:
1566 case -ERESTARTNOHAND:
1567 case -ERESTART_RESTARTBLOCK:
1568 /*
1569 * We can't just restart the syscall, since previously
1570 * submitted sqes may already be in progress. Just fail this
1571 * IO with EINTR.
1572 */
1573 ret = -EINTR;
1574 /* fall through */
1575 default:
1576 kiocb->ki_complete(kiocb, ret, 0);
1577 }
1578}
1579
Jens Axboeba816ad2019-09-28 11:36:45 -06001580static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1581 bool in_async)
1582{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001583 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001584 *nxt = __io_complete_rw(kiocb, ret);
1585 else
1586 io_rw_done(kiocb, ret);
1587}
1588
Jens Axboe9adbd452019-12-20 08:45:55 -07001589static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03001590 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001591{
Jens Axboe9adbd452019-12-20 08:45:55 -07001592 struct io_ring_ctx *ctx = req->ctx;
1593 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001594 struct io_mapped_ubuf *imu;
1595 unsigned index, buf_index;
1596 size_t offset;
1597 u64 buf_addr;
1598
1599 /* attempt to use fixed buffers without having provided iovecs */
1600 if (unlikely(!ctx->user_bufs))
1601 return -EFAULT;
1602
Jens Axboe9adbd452019-12-20 08:45:55 -07001603 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07001604 if (unlikely(buf_index >= ctx->nr_user_bufs))
1605 return -EFAULT;
1606
1607 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1608 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07001609 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07001610
1611 /* overflow */
1612 if (buf_addr + len < buf_addr)
1613 return -EFAULT;
1614 /* not inside the mapped region */
1615 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1616 return -EFAULT;
1617
1618 /*
1619 * May not be a start of buffer, set size appropriately
1620 * and advance us to the beginning.
1621 */
1622 offset = buf_addr - imu->ubuf;
1623 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001624
1625 if (offset) {
1626 /*
1627 * Don't use iov_iter_advance() here, as it's really slow for
1628 * using the latter parts of a big fixed buffer - it iterates
1629 * over each segment manually. We can cheat a bit here, because
1630 * we know that:
1631 *
1632 * 1) it's a BVEC iter, we set it up
1633 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1634 * first and last bvec
1635 *
1636 * So just find our index, and adjust the iterator afterwards.
1637 * If the offset is within the first bvec (or the whole first
1638 * bvec, just use iov_iter_advance(). This makes it easier
1639 * since we can just skip the first segment, which may not
1640 * be PAGE_SIZE aligned.
1641 */
1642 const struct bio_vec *bvec = imu->bvec;
1643
1644 if (offset <= bvec->bv_len) {
1645 iov_iter_advance(iter, offset);
1646 } else {
1647 unsigned long seg_skip;
1648
1649 /* skip first vec */
1650 offset -= bvec->bv_len;
1651 seg_skip = 1 + (offset >> PAGE_SHIFT);
1652
1653 iter->bvec = bvec + seg_skip;
1654 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001655 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001656 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001657 }
1658 }
1659
Jens Axboe5e559562019-11-13 16:12:46 -07001660 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001661}
1662
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001663static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1664 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001665{
Jens Axboe9adbd452019-12-20 08:45:55 -07001666 void __user *buf = u64_to_user_ptr(req->rw.addr);
1667 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001668 u8 opcode;
1669
Jens Axboed625c6e2019-12-17 19:53:05 -07001670 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001671 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001672 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07001673 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001674 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001675
Jens Axboe9adbd452019-12-20 08:45:55 -07001676 /* buffer index only valid with fixed read/write */
1677 if (req->rw.kiocb.private)
1678 return -EINVAL;
1679
Jens Axboef67676d2019-12-02 11:03:47 -07001680 if (req->io) {
1681 struct io_async_rw *iorw = &req->io->rw;
1682
1683 *iovec = iorw->iov;
1684 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1685 if (iorw->iov == iorw->fast_iov)
1686 *iovec = NULL;
1687 return iorw->size;
1688 }
1689
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001690 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001691 return -EFAULT;
1692
1693#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001694 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001695 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1696 iovec, iter);
1697#endif
1698
1699 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1700}
1701
Jens Axboe32960612019-09-23 11:05:34 -06001702/*
1703 * For files that don't have ->read_iter() and ->write_iter(), handle them
1704 * by looping over ->read() or ->write() manually.
1705 */
1706static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1707 struct iov_iter *iter)
1708{
1709 ssize_t ret = 0;
1710
1711 /*
1712 * Don't support polled IO through this interface, and we can't
1713 * support non-blocking either. For the latter, this just causes
1714 * the kiocb to be handled from an async context.
1715 */
1716 if (kiocb->ki_flags & IOCB_HIPRI)
1717 return -EOPNOTSUPP;
1718 if (kiocb->ki_flags & IOCB_NOWAIT)
1719 return -EAGAIN;
1720
1721 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001722 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06001723 ssize_t nr;
1724
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001725 if (!iov_iter_is_bvec(iter)) {
1726 iovec = iov_iter_iovec(iter);
1727 } else {
1728 /* fixed buffers import bvec */
1729 iovec.iov_base = kmap(iter->bvec->bv_page)
1730 + iter->iov_offset;
1731 iovec.iov_len = min(iter->count,
1732 iter->bvec->bv_len - iter->iov_offset);
1733 }
1734
Jens Axboe32960612019-09-23 11:05:34 -06001735 if (rw == READ) {
1736 nr = file->f_op->read(file, iovec.iov_base,
1737 iovec.iov_len, &kiocb->ki_pos);
1738 } else {
1739 nr = file->f_op->write(file, iovec.iov_base,
1740 iovec.iov_len, &kiocb->ki_pos);
1741 }
1742
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001743 if (iov_iter_is_bvec(iter))
1744 kunmap(iter->bvec->bv_page);
1745
Jens Axboe32960612019-09-23 11:05:34 -06001746 if (nr < 0) {
1747 if (!ret)
1748 ret = nr;
1749 break;
1750 }
1751 ret += nr;
1752 if (nr != iovec.iov_len)
1753 break;
1754 iov_iter_advance(iter, nr);
1755 }
1756
1757 return ret;
1758}
1759
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001760static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07001761 struct iovec *iovec, struct iovec *fast_iov,
1762 struct iov_iter *iter)
1763{
1764 req->io->rw.nr_segs = iter->nr_segs;
1765 req->io->rw.size = io_size;
1766 req->io->rw.iov = iovec;
1767 if (!req->io->rw.iov) {
1768 req->io->rw.iov = req->io->rw.fast_iov;
1769 memcpy(req->io->rw.iov, fast_iov,
1770 sizeof(struct iovec) * iter->nr_segs);
1771 }
1772}
1773
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001774static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07001775{
1776 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07001777 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001778}
1779
1780static void io_rw_async(struct io_wq_work **workptr)
1781{
1782 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1783 struct iovec *iov = NULL;
1784
1785 if (req->io->rw.iov != req->io->rw.fast_iov)
1786 iov = req->io->rw.iov;
1787 io_wq_submit_work(workptr);
1788 kfree(iov);
1789}
1790
1791static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
1792 struct iovec *iovec, struct iovec *fast_iov,
1793 struct iov_iter *iter)
1794{
1795 if (!req->io && io_alloc_async_ctx(req))
1796 return -ENOMEM;
1797
1798 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
1799 req->work.func = io_rw_async;
1800 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07001801}
1802
1803static int io_read_prep(struct io_kiocb *req, struct iovec **iovec,
1804 struct iov_iter *iter, bool force_nonblock)
1805{
1806 ssize_t ret;
1807
Jens Axboe06b76d42019-12-19 14:44:26 -07001808 if (req->sqe) {
1809 ret = io_prep_rw(req, force_nonblock);
1810 if (ret)
1811 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07001812
Jens Axboe06b76d42019-12-19 14:44:26 -07001813 if (unlikely(!(req->file->f_mode & FMODE_READ)))
1814 return -EBADF;
1815 }
Jens Axboef67676d2019-12-02 11:03:47 -07001816
1817 return io_import_iovec(READ, req, iovec, iter);
1818}
1819
Pavel Begunkov267bc902019-11-07 01:41:08 +03001820static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001821 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001822{
1823 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07001824 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001825 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07001826 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001827 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001828
Jens Axboe06b76d42019-12-19 14:44:26 -07001829 ret = io_read_prep(req, &iovec, &iter, force_nonblock);
1830 if (ret < 0)
1831 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001832
Jens Axboefd6c2e42019-12-18 12:19:41 -07001833 /* Ensure we clear previously set non-block flag */
1834 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07001835 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07001836
Jens Axboef67676d2019-12-02 11:03:47 -07001837 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001838 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001839 req->result = io_size;
1840
1841 /*
1842 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1843 * we know to async punt it even if it was opened O_NONBLOCK
1844 */
Jens Axboe9adbd452019-12-20 08:45:55 -07001845 if (force_nonblock && !io_file_supports_async(req->file)) {
Jens Axboef67676d2019-12-02 11:03:47 -07001846 req->flags |= REQ_F_MUST_PUNT;
1847 goto copy_iov;
1848 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001849
Jens Axboe31b51512019-01-18 22:56:34 -07001850 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07001851 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001852 if (!ret) {
1853 ssize_t ret2;
1854
Jens Axboe9adbd452019-12-20 08:45:55 -07001855 if (req->file->f_op->read_iter)
1856 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001857 else
Jens Axboe9adbd452019-12-20 08:45:55 -07001858 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001859
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001860 /*
1861 * In case of a short read, punt to async. This can happen
1862 * if we have data partially cached. Alternatively we can
1863 * return the short read, in which case the application will
1864 * need to issue another SQE and wait for it. That SQE will
1865 * need async punt anyway, so it's more efficient to do it
1866 * here.
1867 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001868 if (force_nonblock && !(req->flags & REQ_F_NOWAIT) &&
1869 (req->flags & REQ_F_ISREG) &&
Jens Axboef67676d2019-12-02 11:03:47 -07001870 ret2 > 0 && ret2 < io_size)
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001871 ret2 = -EAGAIN;
1872 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07001873 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001874 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001875 } else {
1876copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001877 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07001878 inline_vecs, &iter);
1879 if (ret)
1880 goto out_free;
1881 return -EAGAIN;
1882 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001883 }
Jens Axboef67676d2019-12-02 11:03:47 -07001884out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001885 if (!io_wq_current_is_worker())
1886 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001887 return ret;
1888}
1889
Jens Axboef67676d2019-12-02 11:03:47 -07001890static int io_write_prep(struct io_kiocb *req, struct iovec **iovec,
1891 struct iov_iter *iter, bool force_nonblock)
1892{
1893 ssize_t ret;
1894
Jens Axboe06b76d42019-12-19 14:44:26 -07001895 if (req->sqe) {
1896 ret = io_prep_rw(req, force_nonblock);
1897 if (ret)
1898 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07001899
Jens Axboe06b76d42019-12-19 14:44:26 -07001900 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
1901 return -EBADF;
1902 }
Jens Axboef67676d2019-12-02 11:03:47 -07001903
1904 return io_import_iovec(WRITE, req, iovec, iter);
1905}
1906
Pavel Begunkov267bc902019-11-07 01:41:08 +03001907static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001908 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001909{
1910 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07001911 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001912 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07001913 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001914 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001915
Jens Axboe06b76d42019-12-19 14:44:26 -07001916 ret = io_write_prep(req, &iovec, &iter, force_nonblock);
1917 if (ret < 0)
1918 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001919
Jens Axboefd6c2e42019-12-18 12:19:41 -07001920 /* Ensure we clear previously set non-block flag */
1921 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07001922 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07001923
Jens Axboef67676d2019-12-02 11:03:47 -07001924 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001925 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001926 req->result = io_size;
1927
1928 /*
1929 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1930 * we know to async punt it even if it was opened O_NONBLOCK
1931 */
1932 if (force_nonblock && !io_file_supports_async(req->file)) {
1933 req->flags |= REQ_F_MUST_PUNT;
1934 goto copy_iov;
1935 }
1936
Jens Axboe10d59342019-12-09 20:16:22 -07001937 /* file path doesn't support NOWAIT for non-direct_IO */
1938 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
1939 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07001940 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06001941
Jens Axboe31b51512019-01-18 22:56:34 -07001942 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07001943 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001944 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01001945 ssize_t ret2;
1946
Jens Axboe2b188cc2019-01-07 10:46:33 -07001947 /*
1948 * Open-code file_start_write here to grab freeze protection,
1949 * which will be released by another thread in
1950 * io_complete_rw(). Fool lockdep by telling it the lock got
1951 * released so that it doesn't complain about the held lock when
1952 * we return to userspace.
1953 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001954 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001955 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07001956 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07001957 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07001958 SB_FREEZE_WRITE);
1959 }
1960 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01001961
Jens Axboe9adbd452019-12-20 08:45:55 -07001962 if (req->file->f_op->write_iter)
1963 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001964 else
Jens Axboe9adbd452019-12-20 08:45:55 -07001965 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07001966 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001967 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001968 } else {
1969copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001970 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07001971 inline_vecs, &iter);
1972 if (ret)
1973 goto out_free;
1974 return -EAGAIN;
1975 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001976 }
Jens Axboe31b51512019-01-18 22:56:34 -07001977out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001978 if (!io_wq_current_is_worker())
1979 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001980 return ret;
1981}
1982
1983/*
1984 * IORING_OP_NOP just posts a completion event, nothing else.
1985 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07001986static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001987{
1988 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001989
Jens Axboedef596e2019-01-09 08:59:42 -07001990 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1991 return -EINVAL;
1992
Jens Axboe78e19bb2019-11-06 15:21:34 -07001993 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06001994 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001995 return 0;
1996}
1997
Jens Axboefc4df992019-12-10 14:38:45 -07001998static int io_prep_fsync(struct io_kiocb *req)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001999{
Jens Axboefc4df992019-12-10 14:38:45 -07002000 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe6b063142019-01-10 22:13:58 -07002001 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002002
Jens Axboe06b76d42019-12-19 14:44:26 -07002003 if (!req->sqe)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002004 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06002005 if (!req->file)
2006 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002007
Jens Axboe6b063142019-01-10 22:13:58 -07002008 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002009 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002010 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002011 return -EINVAL;
2012
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002013 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2014 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2015 return -EINVAL;
2016
2017 req->sync.off = READ_ONCE(sqe->off);
2018 req->sync.len = READ_ONCE(sqe->len);
Jens Axboe06b76d42019-12-19 14:44:26 -07002019 req->sqe = NULL;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002020 return 0;
2021}
2022
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002023static bool io_req_cancelled(struct io_kiocb *req)
2024{
2025 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2026 req_set_fail_links(req);
2027 io_cqring_add_event(req, -ECANCELED);
2028 io_put_req(req);
2029 return true;
2030 }
2031
2032 return false;
2033}
2034
2035static void io_fsync_finish(struct io_wq_work **workptr)
2036{
2037 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2038 loff_t end = req->sync.off + req->sync.len;
2039 struct io_kiocb *nxt = NULL;
2040 int ret;
2041
2042 if (io_req_cancelled(req))
2043 return;
2044
Jens Axboe9adbd452019-12-20 08:45:55 -07002045 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002046 end > 0 ? end : LLONG_MAX,
2047 req->sync.flags & IORING_FSYNC_DATASYNC);
2048 if (ret < 0)
2049 req_set_fail_links(req);
2050 io_cqring_add_event(req, ret);
2051 io_put_req_find_next(req, &nxt);
2052 if (nxt)
2053 *workptr = &nxt->work;
2054}
2055
Jens Axboefc4df992019-12-10 14:38:45 -07002056static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2057 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002058{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002059 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002060 int ret;
2061
Jens Axboefc4df992019-12-10 14:38:45 -07002062 ret = io_prep_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002063 if (ret)
2064 return ret;
2065
2066 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002067 if (force_nonblock) {
2068 io_put_req(req);
2069 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002070 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002071 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002072
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002073 work = old_work = &req->work;
2074 io_fsync_finish(&work);
2075 if (work && work != old_work)
2076 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002077 return 0;
2078}
2079
Jens Axboefc4df992019-12-10 14:38:45 -07002080static int io_prep_sfr(struct io_kiocb *req)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002081{
Jens Axboefc4df992019-12-10 14:38:45 -07002082 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002083 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002084
Jens Axboe06b76d42019-12-19 14:44:26 -07002085 if (!sqe)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002086 return 0;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002087 if (!req->file)
2088 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002089
2090 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2091 return -EINVAL;
2092 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2093 return -EINVAL;
2094
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002095 req->sync.off = READ_ONCE(sqe->off);
2096 req->sync.len = READ_ONCE(sqe->len);
2097 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe06b76d42019-12-19 14:44:26 -07002098 req->sqe = NULL;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002099 return 0;
2100}
2101
2102static void io_sync_file_range_finish(struct io_wq_work **workptr)
2103{
2104 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2105 struct io_kiocb *nxt = NULL;
2106 int ret;
2107
2108 if (io_req_cancelled(req))
2109 return;
2110
Jens Axboe9adbd452019-12-20 08:45:55 -07002111 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002112 req->sync.flags);
2113 if (ret < 0)
2114 req_set_fail_links(req);
2115 io_cqring_add_event(req, ret);
2116 io_put_req_find_next(req, &nxt);
2117 if (nxt)
2118 *workptr = &nxt->work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002119}
2120
Jens Axboefc4df992019-12-10 14:38:45 -07002121static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002122 bool force_nonblock)
2123{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002124 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002125 int ret;
2126
Jens Axboefc4df992019-12-10 14:38:45 -07002127 ret = io_prep_sfr(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002128 if (ret)
2129 return ret;
2130
2131 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002132 if (force_nonblock) {
2133 io_put_req(req);
2134 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002135 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002136 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002137
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002138 work = old_work = &req->work;
2139 io_sync_file_range_finish(&work);
2140 if (work && work != old_work)
2141 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002142 return 0;
2143}
2144
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002145#if defined(CONFIG_NET)
2146static void io_sendrecv_async(struct io_wq_work **workptr)
2147{
2148 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2149 struct iovec *iov = NULL;
2150
2151 if (req->io->rw.iov != req->io->rw.fast_iov)
2152 iov = req->io->msg.iov;
2153 io_wq_submit_work(workptr);
2154 kfree(iov);
2155}
2156#endif
2157
Jens Axboe03b12302019-12-02 18:50:25 -07002158static int io_sendmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002159{
Jens Axboe03b12302019-12-02 18:50:25 -07002160#if defined(CONFIG_NET)
2161 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboee47293f2019-12-20 08:58:21 -07002162 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe06b76d42019-12-19 14:44:26 -07002163 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002164
Jens Axboe06b76d42019-12-19 14:44:26 -07002165 if (!sqe)
2166 return 0;
Jens Axboee47293f2019-12-20 08:58:21 -07002167 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2168 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboed9688562019-12-09 19:35:20 -07002169 io->msg.iov = io->msg.fast_iov;
Jens Axboe06b76d42019-12-19 14:44:26 -07002170 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002171 &io->msg.iov);
Jens Axboe06b76d42019-12-19 14:44:26 -07002172 req->sqe = NULL;
2173 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002174#else
Jens Axboee47293f2019-12-20 08:58:21 -07002175 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002176#endif
2177}
2178
Jens Axboefc4df992019-12-10 14:38:45 -07002179static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2180 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002181{
2182#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002183 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07002184 struct socket *sock;
2185 int ret;
2186
2187 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2188 return -EINVAL;
2189
2190 sock = sock_from_file(req->file, &ret);
2191 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002192 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002193 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002194 unsigned flags;
2195
Jens Axboe03b12302019-12-02 18:50:25 -07002196 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002197 kmsg = &req->io->msg;
2198 kmsg->msg.msg_name = &addr;
2199 /* if iov is set, it's allocated already */
2200 if (!kmsg->iov)
2201 kmsg->iov = kmsg->fast_iov;
2202 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002203 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07002204 kmsg = &io.msg;
2205 kmsg->msg.msg_name = &addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002206 ret = io_sendmsg_prep(req, &io);
2207 if (ret)
2208 goto out;
2209 }
2210
Jens Axboee47293f2019-12-20 08:58:21 -07002211 flags = req->sr_msg.msg_flags;
2212 if (flags & MSG_DONTWAIT)
2213 req->flags |= REQ_F_NOWAIT;
2214 else if (force_nonblock)
2215 flags |= MSG_DONTWAIT;
2216
Jens Axboe0b416c32019-12-15 10:57:46 -07002217 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002218 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002219 if (req->io)
2220 return -EAGAIN;
2221 if (io_alloc_async_ctx(req))
2222 return -ENOMEM;
2223 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2224 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002225 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002226 }
2227 if (ret == -ERESTARTSYS)
2228 ret = -EINTR;
2229 }
2230
2231out:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002232 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002233 kfree(kmsg->iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002234 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002235 if (ret < 0)
2236 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07002237 io_put_req_find_next(req, nxt);
2238 return 0;
2239#else
2240 return -EOPNOTSUPP;
2241#endif
2242}
2243
2244static int io_recvmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
2245{
2246#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002247 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe06b76d42019-12-19 14:44:26 -07002248 int ret;
2249
2250 if (!req->sqe)
2251 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07002252
Jens Axboee47293f2019-12-20 08:58:21 -07002253 sr->msg_flags = READ_ONCE(req->sqe->msg_flags);
2254 sr->msg = u64_to_user_ptr(READ_ONCE(req->sqe->addr));
Jens Axboed9688562019-12-09 19:35:20 -07002255 io->msg.iov = io->msg.fast_iov;
Jens Axboe06b76d42019-12-19 14:44:26 -07002256 ret = recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002257 &io->msg.uaddr, &io->msg.iov);
Jens Axboe06b76d42019-12-19 14:44:26 -07002258 req->sqe = NULL;
2259 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002260#else
Jens Axboee47293f2019-12-20 08:58:21 -07002261 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002262#endif
2263}
2264
Jens Axboefc4df992019-12-10 14:38:45 -07002265static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2266 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002267{
2268#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002269 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002270 struct socket *sock;
2271 int ret;
2272
2273 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2274 return -EINVAL;
2275
2276 sock = sock_from_file(req->file, &ret);
2277 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002278 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002279 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002280 unsigned flags;
2281
Jens Axboe03b12302019-12-02 18:50:25 -07002282 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002283 kmsg = &req->io->msg;
2284 kmsg->msg.msg_name = &addr;
2285 /* if iov is set, it's allocated already */
2286 if (!kmsg->iov)
2287 kmsg->iov = kmsg->fast_iov;
2288 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002289 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07002290 kmsg = &io.msg;
2291 kmsg->msg.msg_name = &addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002292 ret = io_recvmsg_prep(req, &io);
2293 if (ret)
2294 goto out;
2295 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06002296
Jens Axboee47293f2019-12-20 08:58:21 -07002297 flags = req->sr_msg.msg_flags;
2298 if (flags & MSG_DONTWAIT)
2299 req->flags |= REQ_F_NOWAIT;
2300 else if (force_nonblock)
2301 flags |= MSG_DONTWAIT;
2302
2303 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
2304 kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002305 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002306 if (req->io)
2307 return -EAGAIN;
2308 if (io_alloc_async_ctx(req))
2309 return -ENOMEM;
2310 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2311 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002312 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002313 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07002314 if (ret == -ERESTARTSYS)
2315 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002316 }
2317
Jens Axboe03b12302019-12-02 18:50:25 -07002318out:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002319 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002320 kfree(kmsg->iov);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002321 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002322 if (ret < 0)
2323 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002324 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002325 return 0;
2326#else
2327 return -EOPNOTSUPP;
2328#endif
2329}
2330
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002331static int io_accept_prep(struct io_kiocb *req)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002332{
2333#if defined(CONFIG_NET)
Jens Axboefc4df992019-12-10 14:38:45 -07002334 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002335 struct io_accept *accept = &req->accept;
2336
Jens Axboe06b76d42019-12-19 14:44:26 -07002337 if (!req->sqe)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002338 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002339
2340 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2341 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05002342 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002343 return -EINVAL;
2344
Jens Axboed55e5f52019-12-11 16:12:15 -07002345 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
2346 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002347 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe06b76d42019-12-19 14:44:26 -07002348 req->sqe = NULL;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002349 return 0;
2350#else
2351 return -EOPNOTSUPP;
2352#endif
2353}
Jens Axboe17f2fe32019-10-17 14:42:58 -06002354
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002355#if defined(CONFIG_NET)
2356static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2357 bool force_nonblock)
2358{
2359 struct io_accept *accept = &req->accept;
2360 unsigned file_flags;
2361 int ret;
2362
2363 file_flags = force_nonblock ? O_NONBLOCK : 0;
2364 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
2365 accept->addr_len, accept->flags);
2366 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002367 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07002368 if (ret == -ERESTARTSYS)
2369 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002370 if (ret < 0)
2371 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002372 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002373 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002374 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002375}
2376
2377static void io_accept_finish(struct io_wq_work **workptr)
2378{
2379 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2380 struct io_kiocb *nxt = NULL;
2381
2382 if (io_req_cancelled(req))
2383 return;
2384 __io_accept(req, &nxt, false);
2385 if (nxt)
2386 *workptr = &nxt->work;
2387}
2388#endif
2389
2390static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2391 bool force_nonblock)
2392{
2393#if defined(CONFIG_NET)
2394 int ret;
2395
2396 ret = io_accept_prep(req);
2397 if (ret)
2398 return ret;
2399
2400 ret = __io_accept(req, nxt, force_nonblock);
2401 if (ret == -EAGAIN && force_nonblock) {
2402 req->work.func = io_accept_finish;
2403 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2404 io_put_req(req);
2405 return -EAGAIN;
2406 }
2407 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002408#else
2409 return -EOPNOTSUPP;
2410#endif
2411}
2412
Jens Axboef499a022019-12-02 16:28:46 -07002413static int io_connect_prep(struct io_kiocb *req, struct io_async_ctx *io)
2414{
2415#if defined(CONFIG_NET)
2416 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe06b76d42019-12-19 14:44:26 -07002417 int ret;
Jens Axboef499a022019-12-02 16:28:46 -07002418
Jens Axboe06b76d42019-12-19 14:44:26 -07002419 if (!sqe)
2420 return 0;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002421 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2422 return -EINVAL;
2423 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
2424 return -EINVAL;
2425
2426 req->connect.addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
2427 req->connect.addr_len = READ_ONCE(sqe->addr2);
Jens Axboe06b76d42019-12-19 14:44:26 -07002428 ret = move_addr_to_kernel(req->connect.addr, req->connect.addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002429 &io->connect.address);
Jens Axboe06b76d42019-12-19 14:44:26 -07002430 req->sqe = NULL;
2431 return ret;
Jens Axboef499a022019-12-02 16:28:46 -07002432#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002433 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07002434#endif
2435}
2436
Jens Axboefc4df992019-12-10 14:38:45 -07002437static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
2438 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07002439{
2440#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07002441 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002442 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002443 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002444
Jens Axboef499a022019-12-02 16:28:46 -07002445 if (req->io) {
2446 io = req->io;
2447 } else {
2448 ret = io_connect_prep(req, &__io);
2449 if (ret)
2450 goto out;
2451 io = &__io;
2452 }
2453
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002454 file_flags = force_nonblock ? O_NONBLOCK : 0;
2455
2456 ret = __sys_connect_file(req->file, &io->connect.address,
2457 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07002458 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002459 if (req->io)
2460 return -EAGAIN;
2461 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07002462 ret = -ENOMEM;
2463 goto out;
2464 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002465 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07002466 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07002467 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07002468 if (ret == -ERESTARTSYS)
2469 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07002470out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002471 if (ret < 0)
2472 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07002473 io_cqring_add_event(req, ret);
2474 io_put_req_find_next(req, nxt);
2475 return 0;
2476#else
2477 return -EOPNOTSUPP;
2478#endif
2479}
2480
Jens Axboe221c5eb2019-01-17 09:41:58 -07002481static void io_poll_remove_one(struct io_kiocb *req)
2482{
2483 struct io_poll_iocb *poll = &req->poll;
2484
2485 spin_lock(&poll->head->lock);
2486 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07002487 if (!list_empty(&poll->wait.entry)) {
2488 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07002489 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002490 }
2491 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002492 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002493}
2494
2495static void io_poll_remove_all(struct io_ring_ctx *ctx)
2496{
Jens Axboe78076bb2019-12-04 19:56:40 -07002497 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002498 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07002499 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002500
2501 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002502 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
2503 struct hlist_head *list;
2504
2505 list = &ctx->cancel_hash[i];
2506 hlist_for_each_entry_safe(req, tmp, list, hash_node)
2507 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002508 }
2509 spin_unlock_irq(&ctx->completion_lock);
2510}
2511
Jens Axboe47f46762019-11-09 17:43:02 -07002512static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2513{
Jens Axboe78076bb2019-12-04 19:56:40 -07002514 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07002515 struct io_kiocb *req;
2516
Jens Axboe78076bb2019-12-04 19:56:40 -07002517 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
2518 hlist_for_each_entry(req, list, hash_node) {
2519 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07002520 io_poll_remove_one(req);
2521 return 0;
2522 }
Jens Axboe47f46762019-11-09 17:43:02 -07002523 }
2524
2525 return -ENOENT;
2526}
2527
Jens Axboe0969e782019-12-17 18:40:57 -07002528static int io_poll_remove_prep(struct io_kiocb *req)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002529{
Jens Axboefc4df992019-12-10 14:38:45 -07002530 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002531
Jens Axboe06b76d42019-12-19 14:44:26 -07002532 if (!sqe)
Jens Axboe0969e782019-12-17 18:40:57 -07002533 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002534 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2535 return -EINVAL;
2536 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2537 sqe->poll_events)
2538 return -EINVAL;
2539
Jens Axboe0969e782019-12-17 18:40:57 -07002540 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe06b76d42019-12-19 14:44:26 -07002541 req->sqe = NULL;
Jens Axboe0969e782019-12-17 18:40:57 -07002542 return 0;
2543}
2544
2545/*
2546 * Find a running poll command that matches one specified in sqe->addr,
2547 * and remove it if found.
2548 */
2549static int io_poll_remove(struct io_kiocb *req)
2550{
2551 struct io_ring_ctx *ctx = req->ctx;
2552 u64 addr;
2553 int ret;
2554
2555 ret = io_poll_remove_prep(req);
2556 if (ret)
2557 return ret;
2558
2559 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002560 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07002561 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002562 spin_unlock_irq(&ctx->completion_lock);
2563
Jens Axboe78e19bb2019-11-06 15:21:34 -07002564 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002565 if (ret < 0)
2566 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002567 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002568 return 0;
2569}
2570
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002571static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002572{
Jackie Liua197f662019-11-08 08:09:12 -07002573 struct io_ring_ctx *ctx = req->ctx;
2574
Jens Axboe8c838782019-03-12 15:48:16 -06002575 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002576 if (error)
2577 io_cqring_fill_event(req, error);
2578 else
2579 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06002580 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002581}
2582
Jens Axboe561fb042019-10-24 07:25:42 -06002583static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002584{
Jens Axboe561fb042019-10-24 07:25:42 -06002585 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002586 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2587 struct io_poll_iocb *poll = &req->poll;
2588 struct poll_table_struct pt = { ._key = poll->events };
2589 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07002590 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002591 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002592 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002593
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002594 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06002595 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002596 ret = -ECANCELED;
2597 } else if (READ_ONCE(poll->canceled)) {
2598 ret = -ECANCELED;
2599 }
Jens Axboe561fb042019-10-24 07:25:42 -06002600
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002601 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002602 mask = vfs_poll(poll->file, &pt) & poll->events;
2603
2604 /*
2605 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2606 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2607 * synchronize with them. In the cancellation case the list_del_init
2608 * itself is not actually needed, but harmless so we keep it in to
2609 * avoid further branches in the fast path.
2610 */
2611 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002612 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07002613 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002614 spin_unlock_irq(&ctx->completion_lock);
2615 return;
2616 }
Jens Axboe78076bb2019-12-04 19:56:40 -07002617 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002618 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002619 spin_unlock_irq(&ctx->completion_lock);
2620
Jens Axboe8c838782019-03-12 15:48:16 -06002621 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07002622
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002623 if (ret < 0)
2624 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002625 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07002626 if (nxt)
2627 *workptr = &nxt->work;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002628}
2629
2630static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2631 void *key)
2632{
Jens Axboee9444752019-11-26 15:02:04 -07002633 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002634 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2635 struct io_ring_ctx *ctx = req->ctx;
2636 __poll_t mask = key_to_poll(key);
Jens Axboe8c838782019-03-12 15:48:16 -06002637 unsigned long flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002638
2639 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06002640 if (mask && !(mask & poll->events))
2641 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002642
Jens Axboe392edb42019-12-09 17:52:20 -07002643 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002644
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002645 /*
2646 * Run completion inline if we can. We're using trylock here because
2647 * we are violating the completion_lock -> poll wq lock ordering.
2648 * If we have a link timeout we're going to need the completion_lock
2649 * for finalizing the request, mark us as having grabbed that already.
2650 */
Jens Axboe8c838782019-03-12 15:48:16 -06002651 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboe78076bb2019-12-04 19:56:40 -07002652 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002653 io_poll_complete(req, mask, 0);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002654 req->flags |= REQ_F_COMP_LOCKED;
2655 io_put_req(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002656 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2657
2658 io_cqring_ev_posted(ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06002659 } else {
Jackie Liua197f662019-11-08 08:09:12 -07002660 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002661 }
2662
Jens Axboe221c5eb2019-01-17 09:41:58 -07002663 return 1;
2664}
2665
2666struct io_poll_table {
2667 struct poll_table_struct pt;
2668 struct io_kiocb *req;
2669 int error;
2670};
2671
2672static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2673 struct poll_table_struct *p)
2674{
2675 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2676
2677 if (unlikely(pt->req->poll.head)) {
2678 pt->error = -EINVAL;
2679 return;
2680 }
2681
2682 pt->error = 0;
2683 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07002684 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002685}
2686
Jens Axboeeac406c2019-11-14 12:09:58 -07002687static void io_poll_req_insert(struct io_kiocb *req)
2688{
2689 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07002690 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07002691
Jens Axboe78076bb2019-12-04 19:56:40 -07002692 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
2693 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07002694}
2695
Jens Axboe0969e782019-12-17 18:40:57 -07002696static int io_poll_add_prep(struct io_kiocb *req)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002697{
Jens Axboefc4df992019-12-10 14:38:45 -07002698 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002699 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002700 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002701
Jens Axboe06b76d42019-12-19 14:44:26 -07002702 if (!sqe)
Jens Axboe0969e782019-12-17 18:40:57 -07002703 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002704 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2705 return -EINVAL;
2706 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2707 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06002708 if (!poll->file)
2709 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002710
Jens Axboe221c5eb2019-01-17 09:41:58 -07002711 events = READ_ONCE(sqe->poll_events);
2712 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe06b76d42019-12-19 14:44:26 -07002713 req->sqe = NULL;
Jens Axboe0969e782019-12-17 18:40:57 -07002714 return 0;
2715}
2716
2717static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
2718{
2719 struct io_poll_iocb *poll = &req->poll;
2720 struct io_ring_ctx *ctx = req->ctx;
2721 struct io_poll_table ipt;
2722 bool cancel = false;
2723 __poll_t mask;
2724 int ret;
2725
2726 ret = io_poll_add_prep(req);
2727 if (ret)
2728 return ret;
2729
2730 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07002731 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002732
Jens Axboe221c5eb2019-01-17 09:41:58 -07002733 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06002734 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002735 poll->canceled = false;
2736
2737 ipt.pt._qproc = io_poll_queue_proc;
2738 ipt.pt._key = poll->events;
2739 ipt.req = req;
2740 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2741
2742 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07002743 INIT_LIST_HEAD(&poll->wait.entry);
2744 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
2745 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002746
Jens Axboe36703242019-07-25 10:20:18 -06002747 INIT_LIST_HEAD(&req->list);
2748
Jens Axboe221c5eb2019-01-17 09:41:58 -07002749 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002750
2751 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06002752 if (likely(poll->head)) {
2753 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07002754 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06002755 if (ipt.error)
2756 cancel = true;
2757 ipt.error = 0;
2758 mask = 0;
2759 }
2760 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07002761 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002762 else if (cancel)
2763 WRITE_ONCE(poll->canceled, true);
2764 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07002765 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002766 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002767 }
Jens Axboe8c838782019-03-12 15:48:16 -06002768 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06002769 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002770 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06002771 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07002772 spin_unlock_irq(&ctx->completion_lock);
2773
Jens Axboe8c838782019-03-12 15:48:16 -06002774 if (mask) {
2775 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002776 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002777 }
Jens Axboe8c838782019-03-12 15:48:16 -06002778 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002779}
2780
Jens Axboe5262f562019-09-17 12:26:57 -06002781static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2782{
Jens Axboead8a48a2019-11-15 08:49:11 -07002783 struct io_timeout_data *data = container_of(timer,
2784 struct io_timeout_data, timer);
2785 struct io_kiocb *req = data->req;
2786 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06002787 unsigned long flags;
2788
Jens Axboe5262f562019-09-17 12:26:57 -06002789 atomic_inc(&ctx->cq_timeouts);
2790
2791 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08002792 /*
Jens Axboe11365042019-10-16 09:08:32 -06002793 * We could be racing with timeout deletion. If the list is empty,
2794 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08002795 */
Jens Axboe842f9612019-10-29 12:34:10 -06002796 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06002797 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06002798
Jens Axboe11365042019-10-16 09:08:32 -06002799 /*
2800 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08002801 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06002802 * pointer will be increased, otherwise other timeout reqs may
2803 * return in advance without waiting for enough wait_nr.
2804 */
2805 prev = req;
2806 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2807 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06002808 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06002809 }
Jens Axboe842f9612019-10-29 12:34:10 -06002810
Jens Axboe78e19bb2019-11-06 15:21:34 -07002811 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06002812 io_commit_cqring(ctx);
2813 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2814
2815 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002816 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06002817 io_put_req(req);
2818 return HRTIMER_NORESTART;
2819}
2820
Jens Axboe47f46762019-11-09 17:43:02 -07002821static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2822{
2823 struct io_kiocb *req;
2824 int ret = -ENOENT;
2825
2826 list_for_each_entry(req, &ctx->timeout_list, list) {
2827 if (user_data == req->user_data) {
2828 list_del_init(&req->list);
2829 ret = 0;
2830 break;
2831 }
2832 }
2833
2834 if (ret == -ENOENT)
2835 return ret;
2836
Jens Axboe2d283902019-12-04 11:08:05 -07002837 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07002838 if (ret == -1)
2839 return -EALREADY;
2840
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002841 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07002842 io_cqring_fill_event(req, -ECANCELED);
2843 io_put_req(req);
2844 return 0;
2845}
2846
Jens Axboeb29472e2019-12-17 18:50:29 -07002847static int io_timeout_remove_prep(struct io_kiocb *req)
2848{
2849 const struct io_uring_sqe *sqe = req->sqe;
2850
Jens Axboe06b76d42019-12-19 14:44:26 -07002851 if (!sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07002852 return 0;
2853 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2854 return -EINVAL;
2855 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2856 return -EINVAL;
2857
2858 req->timeout.addr = READ_ONCE(sqe->addr);
2859 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
2860 if (req->timeout.flags)
2861 return -EINVAL;
2862
Jens Axboe06b76d42019-12-19 14:44:26 -07002863 req->sqe = NULL;
Jens Axboeb29472e2019-12-17 18:50:29 -07002864 return 0;
2865}
2866
Jens Axboe11365042019-10-16 09:08:32 -06002867/*
2868 * Remove or update an existing timeout command
2869 */
Jens Axboefc4df992019-12-10 14:38:45 -07002870static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06002871{
2872 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07002873 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06002874
Jens Axboeb29472e2019-12-17 18:50:29 -07002875 ret = io_timeout_remove_prep(req);
2876 if (ret)
2877 return ret;
Jens Axboe11365042019-10-16 09:08:32 -06002878
Jens Axboe11365042019-10-16 09:08:32 -06002879 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07002880 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06002881
Jens Axboe47f46762019-11-09 17:43:02 -07002882 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06002883 io_commit_cqring(ctx);
2884 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002885 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002886 if (ret < 0)
2887 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002888 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06002889 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06002890}
2891
Jens Axboe2d283902019-12-04 11:08:05 -07002892static int io_timeout_prep(struct io_kiocb *req, struct io_async_ctx *io,
2893 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06002894{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002895 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboead8a48a2019-11-15 08:49:11 -07002896 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06002897 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06002898
Jens Axboe06b76d42019-12-19 14:44:26 -07002899 if (!sqe)
2900 return 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07002901 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06002902 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002903 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06002904 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07002905 if (sqe->off && is_timeout_link)
2906 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06002907 flags = READ_ONCE(sqe->timeout_flags);
2908 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06002909 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06002910
Jens Axboe26a61672019-12-20 09:02:01 -07002911 req->timeout.count = READ_ONCE(sqe->off);
2912
2913 if (!io && io_alloc_async_ctx(req))
2914 return -ENOMEM;
2915
2916 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07002917 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07002918 req->flags |= REQ_F_TIMEOUT;
2919
2920 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06002921 return -EFAULT;
2922
Jens Axboe11365042019-10-16 09:08:32 -06002923 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07002924 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06002925 else
Jens Axboead8a48a2019-11-15 08:49:11 -07002926 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06002927
Jens Axboead8a48a2019-11-15 08:49:11 -07002928 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
Jens Axboe06b76d42019-12-19 14:44:26 -07002929 req->sqe = NULL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002930 return 0;
2931}
2932
Jens Axboefc4df992019-12-10 14:38:45 -07002933static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07002934{
2935 unsigned count;
2936 struct io_ring_ctx *ctx = req->ctx;
2937 struct io_timeout_data *data;
2938 struct list_head *entry;
2939 unsigned span = 0;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002940 int ret;
Jens Axboead8a48a2019-11-15 08:49:11 -07002941
Jens Axboe06b76d42019-12-19 14:44:26 -07002942 ret = io_timeout_prep(req, req->io, false);
2943 if (ret)
2944 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07002945 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002946
Jens Axboe5262f562019-09-17 12:26:57 -06002947 /*
2948 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07002949 * timeout event to be satisfied. If it isn't set, then this is
2950 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06002951 */
Jens Axboe26a61672019-12-20 09:02:01 -07002952 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002953 if (!count) {
2954 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2955 spin_lock_irq(&ctx->completion_lock);
2956 entry = ctx->timeout_list.prev;
2957 goto add;
2958 }
Jens Axboe5262f562019-09-17 12:26:57 -06002959
2960 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07002961 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06002962
2963 /*
2964 * Insertion sort, ensuring the first entry in the list is always
2965 * the one we need first.
2966 */
Jens Axboe5262f562019-09-17 12:26:57 -06002967 spin_lock_irq(&ctx->completion_lock);
2968 list_for_each_prev(entry, &ctx->timeout_list) {
2969 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08002970 unsigned nxt_sq_head;
2971 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07002972 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06002973
Jens Axboe93bd25b2019-11-11 23:34:31 -07002974 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2975 continue;
2976
yangerkun5da0fb12019-10-15 21:59:29 +08002977 /*
2978 * Since cached_sq_head + count - 1 can overflow, use type long
2979 * long to store it.
2980 */
2981 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002982 nxt_sq_head = nxt->sequence - nxt_offset + 1;
2983 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08002984
2985 /*
2986 * cached_sq_head may overflow, and it will never overflow twice
2987 * once there is some timeout req still be valid.
2988 */
2989 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08002990 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08002991
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002992 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06002993 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002994
2995 /*
2996 * Sequence of reqs after the insert one and itself should
2997 * be adjusted because each timeout req consumes a slot.
2998 */
2999 span++;
3000 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06003001 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003002 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003003add:
Jens Axboe5262f562019-09-17 12:26:57 -06003004 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07003005 data->timer.function = io_timeout_fn;
3006 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06003007 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003008 return 0;
3009}
3010
Jens Axboe62755e32019-10-28 21:49:21 -06003011static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06003012{
Jens Axboe62755e32019-10-28 21:49:21 -06003013 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06003014
Jens Axboe62755e32019-10-28 21:49:21 -06003015 return req->user_data == (unsigned long) data;
3016}
3017
Jens Axboee977d6d2019-11-05 12:39:45 -07003018static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003019{
Jens Axboe62755e32019-10-28 21:49:21 -06003020 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003021 int ret = 0;
3022
Jens Axboe62755e32019-10-28 21:49:21 -06003023 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3024 switch (cancel_ret) {
3025 case IO_WQ_CANCEL_OK:
3026 ret = 0;
3027 break;
3028 case IO_WQ_CANCEL_RUNNING:
3029 ret = -EALREADY;
3030 break;
3031 case IO_WQ_CANCEL_NOTFOUND:
3032 ret = -ENOENT;
3033 break;
3034 }
3035
Jens Axboee977d6d2019-11-05 12:39:45 -07003036 return ret;
3037}
3038
Jens Axboe47f46762019-11-09 17:43:02 -07003039static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3040 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003041 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07003042{
3043 unsigned long flags;
3044 int ret;
3045
3046 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3047 if (ret != -ENOENT) {
3048 spin_lock_irqsave(&ctx->completion_lock, flags);
3049 goto done;
3050 }
3051
3052 spin_lock_irqsave(&ctx->completion_lock, flags);
3053 ret = io_timeout_cancel(ctx, sqe_addr);
3054 if (ret != -ENOENT)
3055 goto done;
3056 ret = io_poll_cancel(ctx, sqe_addr);
3057done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003058 if (!ret)
3059 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07003060 io_cqring_fill_event(req, ret);
3061 io_commit_cqring(ctx);
3062 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3063 io_cqring_ev_posted(ctx);
3064
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003065 if (ret < 0)
3066 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003067 io_put_req_find_next(req, nxt);
3068}
3069
Jens Axboefbf23842019-12-17 18:45:56 -07003070static int io_async_cancel_prep(struct io_kiocb *req)
Jens Axboee977d6d2019-11-05 12:39:45 -07003071{
Jens Axboefc4df992019-12-10 14:38:45 -07003072 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboee977d6d2019-11-05 12:39:45 -07003073
Jens Axboe06b76d42019-12-19 14:44:26 -07003074 if (!sqe)
Jens Axboefbf23842019-12-17 18:45:56 -07003075 return 0;
3076 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07003077 return -EINVAL;
3078 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3079 sqe->cancel_flags)
3080 return -EINVAL;
3081
Jens Axboefbf23842019-12-17 18:45:56 -07003082 req->cancel.addr = READ_ONCE(sqe->addr);
Jens Axboe06b76d42019-12-19 14:44:26 -07003083 req->sqe = NULL;
Jens Axboefbf23842019-12-17 18:45:56 -07003084 return 0;
3085}
3086
3087static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
3088{
3089 struct io_ring_ctx *ctx = req->ctx;
3090 int ret;
3091
3092 ret = io_async_cancel_prep(req);
3093 if (ret)
3094 return ret;
3095
3096 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06003097 return 0;
3098}
3099
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003100static int io_req_defer_prep(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003101{
3102 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003103 struct io_async_ctx *io = req->io;
Jens Axboef67676d2019-12-02 11:03:47 -07003104 struct iov_iter iter;
Jens Axboee7815732019-12-17 19:45:06 -07003105 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003106
Jens Axboed625c6e2019-12-17 19:53:05 -07003107 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07003108 case IORING_OP_NOP:
3109 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003110 case IORING_OP_READV:
3111 case IORING_OP_READ_FIXED:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003112 /* ensure prep does right import */
3113 req->io = NULL;
Jens Axboef67676d2019-12-02 11:03:47 -07003114 ret = io_read_prep(req, &iovec, &iter, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003115 req->io = io;
3116 if (ret < 0)
3117 break;
3118 io_req_map_rw(req, ret, iovec, inline_vecs, &iter);
3119 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003120 break;
3121 case IORING_OP_WRITEV:
3122 case IORING_OP_WRITE_FIXED:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003123 /* ensure prep does right import */
3124 req->io = NULL;
Jens Axboef67676d2019-12-02 11:03:47 -07003125 ret = io_write_prep(req, &iovec, &iter, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003126 req->io = io;
3127 if (ret < 0)
3128 break;
3129 io_req_map_rw(req, ret, iovec, inline_vecs, &iter);
3130 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003131 break;
Jens Axboe0969e782019-12-17 18:40:57 -07003132 case IORING_OP_POLL_ADD:
3133 ret = io_poll_add_prep(req);
3134 break;
3135 case IORING_OP_POLL_REMOVE:
3136 ret = io_poll_remove_prep(req);
3137 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003138 case IORING_OP_FSYNC:
3139 ret = io_prep_fsync(req);
3140 break;
3141 case IORING_OP_SYNC_FILE_RANGE:
3142 ret = io_prep_sfr(req);
3143 break;
Jens Axboe03b12302019-12-02 18:50:25 -07003144 case IORING_OP_SENDMSG:
3145 ret = io_sendmsg_prep(req, io);
3146 break;
3147 case IORING_OP_RECVMSG:
3148 ret = io_recvmsg_prep(req, io);
3149 break;
Jens Axboef499a022019-12-02 16:28:46 -07003150 case IORING_OP_CONNECT:
3151 ret = io_connect_prep(req, io);
3152 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003153 case IORING_OP_TIMEOUT:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003154 ret = io_timeout_prep(req, io, false);
3155 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07003156 case IORING_OP_TIMEOUT_REMOVE:
3157 ret = io_timeout_remove_prep(req);
3158 break;
Jens Axboefbf23842019-12-17 18:45:56 -07003159 case IORING_OP_ASYNC_CANCEL:
3160 ret = io_async_cancel_prep(req);
3161 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003162 case IORING_OP_LINK_TIMEOUT:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003163 ret = io_timeout_prep(req, io, true);
3164 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003165 case IORING_OP_ACCEPT:
3166 ret = io_accept_prep(req);
3167 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003168 default:
Jens Axboee7815732019-12-17 19:45:06 -07003169 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
3170 req->opcode);
3171 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003172 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003173 }
3174
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003175 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003176}
3177
Jackie Liua197f662019-11-08 08:09:12 -07003178static int io_req_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -06003179{
Jackie Liua197f662019-11-08 08:09:12 -07003180 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07003181 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06003182
Bob Liu9d858b22019-11-13 18:06:25 +08003183 /* Still need defer if there is pending req in defer list. */
3184 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06003185 return 0;
3186
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003187 if (io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06003188 return -EAGAIN;
3189
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003190 ret = io_req_defer_prep(req);
3191 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07003192 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07003193
Jens Axboede0617e2019-04-06 21:51:27 -06003194 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08003195 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06003196 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06003197 return 0;
3198 }
3199
Jens Axboe915967f2019-11-21 09:01:20 -07003200 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06003201 list_add_tail(&req->list, &ctx->defer_list);
3202 spin_unlock_irq(&ctx->completion_lock);
3203 return -EIOCBQUEUED;
3204}
3205
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003206__attribute__((nonnull))
Pavel Begunkovd7324472019-11-21 21:24:36 +03003207static int io_issue_sqe(struct io_kiocb *req, struct io_kiocb **nxt,
3208 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003209{
Jackie Liua197f662019-11-08 08:09:12 -07003210 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07003211 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003212
Jens Axboed625c6e2019-12-17 19:53:05 -07003213 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003214 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003215 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003216 break;
3217 case IORING_OP_READV:
Pavel Begunkov267bc902019-11-07 01:41:08 +03003218 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003219 break;
3220 case IORING_OP_WRITEV:
Pavel Begunkov267bc902019-11-07 01:41:08 +03003221 ret = io_write(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07003222 break;
3223 case IORING_OP_READ_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03003224 ret = io_read(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07003225 break;
3226 case IORING_OP_WRITE_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03003227 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003228 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003229 case IORING_OP_FSYNC:
Jens Axboefc4df992019-12-10 14:38:45 -07003230 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003231 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003232 case IORING_OP_POLL_ADD:
Jens Axboefc4df992019-12-10 14:38:45 -07003233 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003234 break;
3235 case IORING_OP_POLL_REMOVE:
Jens Axboefc4df992019-12-10 14:38:45 -07003236 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003237 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003238 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboefc4df992019-12-10 14:38:45 -07003239 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003240 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003241 case IORING_OP_SENDMSG:
Jens Axboefc4df992019-12-10 14:38:45 -07003242 ret = io_sendmsg(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003243 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06003244 case IORING_OP_RECVMSG:
Jens Axboefc4df992019-12-10 14:38:45 -07003245 ret = io_recvmsg(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06003246 break;
Jens Axboe5262f562019-09-17 12:26:57 -06003247 case IORING_OP_TIMEOUT:
Jens Axboefc4df992019-12-10 14:38:45 -07003248 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003249 break;
Jens Axboe11365042019-10-16 09:08:32 -06003250 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboefc4df992019-12-10 14:38:45 -07003251 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06003252 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003253 case IORING_OP_ACCEPT:
Jens Axboefc4df992019-12-10 14:38:45 -07003254 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003255 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003256 case IORING_OP_CONNECT:
Jens Axboefc4df992019-12-10 14:38:45 -07003257 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003258 break;
Jens Axboe62755e32019-10-28 21:49:21 -06003259 case IORING_OP_ASYNC_CANCEL:
Jens Axboefc4df992019-12-10 14:38:45 -07003260 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06003261 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003262 default:
3263 ret = -EINVAL;
3264 break;
3265 }
3266
Jens Axboedef596e2019-01-09 08:59:42 -07003267 if (ret)
3268 return ret;
3269
3270 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003271 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07003272 return -EAGAIN;
3273
Jens Axboedef596e2019-01-09 08:59:42 -07003274 io_iopoll_req_issued(req);
Jens Axboedef596e2019-01-09 08:59:42 -07003275 }
3276
3277 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003278}
3279
Jens Axboeb76da702019-11-20 13:05:32 -07003280static void io_link_work_cb(struct io_wq_work **workptr)
3281{
3282 struct io_wq_work *work = *workptr;
3283 struct io_kiocb *link = work->data;
3284
3285 io_queue_linked_timeout(link);
3286 work->func = io_wq_submit_work;
3287}
3288
Jens Axboe561fb042019-10-24 07:25:42 -06003289static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07003290{
Jens Axboe561fb042019-10-24 07:25:42 -06003291 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003292 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06003293 struct io_kiocb *nxt = NULL;
3294 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003295
Jens Axboe561fb042019-10-24 07:25:42 -06003296 if (work->flags & IO_WQ_WORK_CANCEL)
3297 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07003298
Jens Axboe561fb042019-10-24 07:25:42 -06003299 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003300 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
3301 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06003302 do {
Pavel Begunkovd7324472019-11-21 21:24:36 +03003303 ret = io_issue_sqe(req, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06003304 /*
3305 * We can get EAGAIN for polled IO even though we're
3306 * forcing a sync submission from here, since we can't
3307 * wait for request slots on the block side.
3308 */
3309 if (ret != -EAGAIN)
3310 break;
3311 cond_resched();
3312 } while (1);
3313 }
Jens Axboe31b51512019-01-18 22:56:34 -07003314
Jens Axboe561fb042019-10-24 07:25:42 -06003315 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08003316 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06003317
Jens Axboe561fb042019-10-24 07:25:42 -06003318 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003319 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003320 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06003321 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07003322 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003323
Jens Axboe561fb042019-10-24 07:25:42 -06003324 /* if a dependent link is ready, pass it back */
3325 if (!ret && nxt) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003326 struct io_kiocb *link;
3327
3328 io_prep_async_work(nxt, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06003329 *workptr = &nxt->work;
Jens Axboeb76da702019-11-20 13:05:32 -07003330 if (link) {
3331 nxt->work.flags |= IO_WQ_WORK_CB;
3332 nxt->work.func = io_link_work_cb;
3333 nxt->work.data = link;
3334 }
Jens Axboeedafcce2019-01-09 09:16:05 -07003335 }
Jens Axboe31b51512019-01-18 22:56:34 -07003336}
Jens Axboe2b188cc2019-01-07 10:46:33 -07003337
Jens Axboe9e3aa612019-12-11 15:55:43 -07003338static bool io_req_op_valid(int op)
3339{
3340 return op >= IORING_OP_NOP && op < IORING_OP_LAST;
3341}
3342
Jens Axboed625c6e2019-12-17 19:53:05 -07003343static int io_req_needs_file(struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003344{
Jens Axboed625c6e2019-12-17 19:53:05 -07003345 switch (req->opcode) {
Jens Axboe09bb8392019-03-13 12:39:28 -06003346 case IORING_OP_NOP:
3347 case IORING_OP_POLL_REMOVE:
Pavel Begunkov5683e542019-11-14 00:59:19 +03003348 case IORING_OP_TIMEOUT:
Pavel Begunkova320e9f2019-11-14 00:11:01 +03003349 case IORING_OP_TIMEOUT_REMOVE:
3350 case IORING_OP_ASYNC_CANCEL:
3351 case IORING_OP_LINK_TIMEOUT:
Jens Axboe9e3aa612019-12-11 15:55:43 -07003352 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06003353 default:
Jens Axboed625c6e2019-12-17 19:53:05 -07003354 if (io_req_op_valid(req->opcode))
Jens Axboe9e3aa612019-12-11 15:55:43 -07003355 return 1;
3356 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003357 }
3358}
3359
Jens Axboe65e19f52019-10-26 07:20:21 -06003360static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
3361 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06003362{
Jens Axboe65e19f52019-10-26 07:20:21 -06003363 struct fixed_file_table *table;
3364
3365 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
3366 return table->files[index & IORING_FILE_TABLE_MASK];
3367}
3368
Jackie Liua197f662019-11-08 08:09:12 -07003369static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003370{
Jackie Liua197f662019-11-08 08:09:12 -07003371 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06003372 unsigned flags;
Jens Axboe9e3aa612019-12-11 15:55:43 -07003373 int fd, ret;
Jens Axboe09bb8392019-03-13 12:39:28 -06003374
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003375 flags = READ_ONCE(req->sqe->flags);
3376 fd = READ_ONCE(req->sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003377
Jackie Liu4fe2c962019-09-09 20:50:40 +08003378 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06003379 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06003380
Jens Axboed625c6e2019-12-17 19:53:05 -07003381 ret = io_req_needs_file(req);
Jens Axboe9e3aa612019-12-11 15:55:43 -07003382 if (ret <= 0)
3383 return ret;
Jens Axboe09bb8392019-03-13 12:39:28 -06003384
3385 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003386 if (unlikely(!ctx->file_table ||
Jens Axboe09bb8392019-03-13 12:39:28 -06003387 (unsigned) fd >= ctx->nr_user_files))
3388 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06003389 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06003390 req->file = io_file_from_index(ctx, fd);
3391 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06003392 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06003393 req->flags |= REQ_F_FIXED_FILE;
3394 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003395 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06003396 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003397 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003398 req->file = io_file_get(state, fd);
3399 if (unlikely(!req->file))
3400 return -EBADF;
3401 }
3402
3403 return 0;
3404}
3405
Jackie Liua197f662019-11-08 08:09:12 -07003406static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003407{
Jens Axboefcb323c2019-10-24 12:39:47 -06003408 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07003409 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06003410
3411 rcu_read_lock();
3412 spin_lock_irq(&ctx->inflight_lock);
3413 /*
3414 * We use the f_ops->flush() handler to ensure that we can flush
3415 * out work accessing these files if the fd is closed. Check if
3416 * the fd has changed since we started down this path, and disallow
3417 * this operation if it has.
3418 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003419 if (fcheck(req->ring_fd) == req->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06003420 list_add(&req->inflight_entry, &ctx->inflight_list);
3421 req->flags |= REQ_F_INFLIGHT;
3422 req->work.files = current->files;
3423 ret = 0;
3424 }
3425 spin_unlock_irq(&ctx->inflight_lock);
3426 rcu_read_unlock();
3427
3428 return ret;
3429}
3430
Jens Axboe2665abf2019-11-05 12:40:47 -07003431static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
3432{
Jens Axboead8a48a2019-11-15 08:49:11 -07003433 struct io_timeout_data *data = container_of(timer,
3434 struct io_timeout_data, timer);
3435 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07003436 struct io_ring_ctx *ctx = req->ctx;
3437 struct io_kiocb *prev = NULL;
3438 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07003439
3440 spin_lock_irqsave(&ctx->completion_lock, flags);
3441
3442 /*
3443 * We don't expect the list to be empty, that will only happen if we
3444 * race with the completion of the linked work.
3445 */
Pavel Begunkov44932332019-12-05 16:16:35 +03003446 if (!list_empty(&req->link_list)) {
3447 prev = list_entry(req->link_list.prev, struct io_kiocb,
3448 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003449 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03003450 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003451 prev->flags &= ~REQ_F_LINK_TIMEOUT;
3452 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07003453 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003454 }
3455
3456 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3457
3458 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003459 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003460 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
3461 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07003462 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07003463 } else {
3464 io_cqring_add_event(req, -ETIME);
3465 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003466 }
Jens Axboe2665abf2019-11-05 12:40:47 -07003467 return HRTIMER_NORESTART;
3468}
3469
Jens Axboead8a48a2019-11-15 08:49:11 -07003470static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003471{
Jens Axboe76a46e02019-11-10 23:34:16 -07003472 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07003473
Jens Axboe76a46e02019-11-10 23:34:16 -07003474 /*
3475 * If the list is now empty, then our linked request finished before
3476 * we got a chance to setup the timer
3477 */
3478 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03003479 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07003480 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07003481
Jens Axboead8a48a2019-11-15 08:49:11 -07003482 data->timer.function = io_link_timeout_fn;
3483 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
3484 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07003485 }
Jens Axboe76a46e02019-11-10 23:34:16 -07003486 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07003487
Jens Axboe2665abf2019-11-05 12:40:47 -07003488 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07003489 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003490}
3491
Jens Axboead8a48a2019-11-15 08:49:11 -07003492static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003493{
3494 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003495
Jens Axboe2665abf2019-11-05 12:40:47 -07003496 if (!(req->flags & REQ_F_LINK))
3497 return NULL;
3498
Pavel Begunkov44932332019-12-05 16:16:35 +03003499 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
3500 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07003501 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07003502 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003503
Jens Axboe76a46e02019-11-10 23:34:16 -07003504 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07003505 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07003506}
3507
Jens Axboe0e0702d2019-11-14 21:42:10 -07003508static void __io_queue_sqe(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003509{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003510 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003511 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003512 int ret;
3513
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003514again:
3515 linked_timeout = io_prep_linked_timeout(req);
3516
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003517 ret = io_issue_sqe(req, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06003518
3519 /*
3520 * We async punt it if the file wasn't marked NOWAIT, or if the file
3521 * doesn't support non-blocking read/write attempts
3522 */
3523 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
3524 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003525 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
3526 ret = io_grab_files(req);
3527 if (ret)
3528 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003529 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003530
3531 /*
3532 * Queued up for async execution, worker will release
3533 * submit reference when the iocb is actually submitted.
3534 */
3535 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003536 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003537 }
Jens Axboee65ef562019-03-12 10:16:44 -06003538
Jens Axboefcb323c2019-10-24 12:39:47 -06003539err:
Jens Axboee65ef562019-03-12 10:16:44 -06003540 /* drop submission reference */
3541 io_put_req(req);
3542
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003543 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003544 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003545 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003546 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003547 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003548 }
3549
Jens Axboee65ef562019-03-12 10:16:44 -06003550 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06003551 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003552 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003553 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003554 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003555 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003556done_req:
3557 if (nxt) {
3558 req = nxt;
3559 nxt = NULL;
3560 goto again;
3561 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003562}
3563
Jens Axboe0e0702d2019-11-14 21:42:10 -07003564static void io_queue_sqe(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003565{
3566 int ret;
3567
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003568 if (unlikely(req->ctx->drain_next)) {
3569 req->flags |= REQ_F_IO_DRAIN;
3570 req->ctx->drain_next = false;
3571 }
3572 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
3573
Jackie Liua197f662019-11-08 08:09:12 -07003574 ret = io_req_defer(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003575 if (ret) {
3576 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003577 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003578 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003579 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003580 }
Jens Axboe0e0702d2019-11-14 21:42:10 -07003581 } else
3582 __io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003583}
3584
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003585static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003586{
Jens Axboe94ae5e72019-11-14 19:39:52 -07003587 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003588 io_cqring_add_event(req, -ECANCELED);
3589 io_double_put_req(req);
3590 } else
Jens Axboe0e0702d2019-11-14 21:42:10 -07003591 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003592}
3593
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003594#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
3595 IOSQE_IO_HARDLINK)
Jens Axboe9e645e112019-05-10 16:07:28 -06003596
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003597static bool io_submit_sqe(struct io_kiocb *req, struct io_submit_state *state,
Jackie Liua197f662019-11-08 08:09:12 -07003598 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06003599{
Jackie Liua197f662019-11-08 08:09:12 -07003600 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06003601 int ret;
3602
3603 /* enforce forwards compatibility on users */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003604 if (unlikely(req->sqe->flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003605 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03003606 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06003607 }
3608
Jackie Liua197f662019-11-08 08:09:12 -07003609 ret = io_req_set_file(state, req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003610 if (unlikely(ret)) {
3611err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003612 io_cqring_add_event(req, ret);
3613 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003614 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06003615 }
3616
Jens Axboe9e645e112019-05-10 16:07:28 -06003617 /*
3618 * If we already have a head request, queue this one for async
3619 * submittal once the head completes. If we don't have a head but
3620 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3621 * submitted sync once the chain is complete. If none of those
3622 * conditions are true (normal request), then just queue it.
3623 */
3624 if (*link) {
3625 struct io_kiocb *prev = *link;
3626
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003627 if (req->sqe->flags & IOSQE_IO_DRAIN)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003628 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3629
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003630 if (req->sqe->flags & IOSQE_IO_HARDLINK)
3631 req->flags |= REQ_F_HARDLINK;
3632
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003633 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003634 ret = -EAGAIN;
3635 goto err_req;
3636 }
3637
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003638 ret = io_req_defer_prep(req);
Jens Axboe2d283902019-12-04 11:08:05 -07003639 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003640 /* fail even hard links since we don't submit */
Jens Axboe2d283902019-12-04 11:08:05 -07003641 prev->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07003642 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07003643 }
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003644 trace_io_uring_link(ctx, req, prev);
Pavel Begunkov44932332019-12-05 16:16:35 +03003645 list_add_tail(&req->link_list, &prev->link_list);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003646 } else if (req->sqe->flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003647 req->flags |= REQ_F_LINK;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003648 if (req->sqe->flags & IOSQE_IO_HARDLINK)
3649 req->flags |= REQ_F_HARDLINK;
Jens Axboe9e645e112019-05-10 16:07:28 -06003650
Jens Axboe9e645e112019-05-10 16:07:28 -06003651 INIT_LIST_HEAD(&req->link_list);
3652 *link = req;
3653 } else {
Jackie Liua197f662019-11-08 08:09:12 -07003654 io_queue_sqe(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003655 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003656
3657 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06003658}
3659
Jens Axboe9a56a232019-01-09 09:06:50 -07003660/*
3661 * Batched submission is done, ensure local IO is flushed out.
3662 */
3663static void io_submit_state_end(struct io_submit_state *state)
3664{
3665 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06003666 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07003667 if (state->free_reqs)
3668 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3669 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07003670}
3671
3672/*
3673 * Start submission side cache.
3674 */
3675static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08003676 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07003677{
3678 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07003679 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07003680 state->file = NULL;
3681 state->ios_left = max_ios;
3682}
3683
Jens Axboe2b188cc2019-01-07 10:46:33 -07003684static void io_commit_sqring(struct io_ring_ctx *ctx)
3685{
Hristo Venev75b28af2019-08-26 17:23:46 +00003686 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003687
Hristo Venev75b28af2019-08-26 17:23:46 +00003688 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003689 /*
3690 * Ensure any loads from the SQEs are done at this point,
3691 * since once we write the new head, the application could
3692 * write new data to them.
3693 */
Hristo Venev75b28af2019-08-26 17:23:46 +00003694 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003695 }
3696}
3697
3698/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08003699 * Fetch an sqe, if one is available. Note that req->sqe will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07003700 * that is mapped by userspace. This means that care needs to be taken to
3701 * ensure that reads are stable, as we cannot rely on userspace always
3702 * being a good citizen. If members of the sqe are validated and then later
3703 * used, it's important that those reads are done through READ_ONCE() to
3704 * prevent a re-load down the line.
3705 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003706static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003707{
Hristo Venev75b28af2019-08-26 17:23:46 +00003708 struct io_rings *rings = ctx->rings;
3709 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003710 unsigned head;
3711
3712 /*
3713 * The cached sq head (or cq tail) serves two purposes:
3714 *
3715 * 1) allows us to batch the cost of updating the user visible
3716 * head updates.
3717 * 2) allows the kernel side to track the head on its own, even
3718 * though the application is the one updating it.
3719 */
3720 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02003721 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003722 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07003723 return false;
3724
Hristo Venev75b28af2019-08-26 17:23:46 +00003725 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003726 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003727 /*
3728 * All io need record the previous position, if LINK vs DARIN,
3729 * it can be used to mark the position of the first IO in the
3730 * link list.
3731 */
3732 req->sequence = ctx->cached_sq_head;
3733 req->sqe = &ctx->sq_sqes[head];
Jens Axboed625c6e2019-12-17 19:53:05 -07003734 req->opcode = READ_ONCE(req->sqe->opcode);
3735 req->user_data = READ_ONCE(req->sqe->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003736 ctx->cached_sq_head++;
3737 return true;
3738 }
3739
3740 /* drop invalid entries */
3741 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06003742 ctx->cached_sq_dropped++;
3743 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003744 return false;
3745}
3746
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003747static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003748 struct file *ring_file, int ring_fd,
3749 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07003750{
3751 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003752 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003753 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003754 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003755
Jens Axboec4a2ed72019-11-21 21:01:26 -07003756 /* if we have a backlog and couldn't flush it all, return BUSY */
3757 if (!list_empty(&ctx->cq_overflow_list) &&
3758 !io_cqring_overflow_flush(ctx, false))
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003759 return -EBUSY;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003760
3761 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08003762 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003763 statep = &state;
3764 }
3765
3766 for (i = 0; i < nr; i++) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003767 struct io_kiocb *req;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003768 unsigned int sqe_flags;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003769
Pavel Begunkov196be952019-11-07 01:41:06 +03003770 req = io_get_req(ctx, statep);
3771 if (unlikely(!req)) {
3772 if (!submitted)
3773 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003774 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06003775 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003776 if (!io_get_sqring(ctx, req)) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003777 __io_free_req(req);
3778 break;
3779 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003780
Jens Axboed625c6e2019-12-17 19:53:05 -07003781 if (io_req_needs_user(req) && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003782 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3783 if (!mm_fault) {
3784 use_mm(ctx->sqo_mm);
3785 *mm = ctx->sqo_mm;
3786 }
3787 }
3788
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003789 submitted++;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003790 sqe_flags = req->sqe->flags;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003791
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003792 req->ring_file = ring_file;
3793 req->ring_fd = ring_fd;
3794 req->has_user = *mm != NULL;
3795 req->in_async = async;
3796 req->needs_fixed_file = async;
Jens Axboed625c6e2019-12-17 19:53:05 -07003797 trace_io_uring_submit_sqe(ctx, req->user_data, true, async);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003798 if (!io_submit_sqe(req, statep, &link))
3799 break;
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003800 /*
3801 * If previous wasn't linked and we have a linked command,
3802 * that's the end of the chain. Submit the previous link.
3803 */
Pavel Begunkovffbb8d62019-12-17 20:57:05 +03003804 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) && link) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003805 io_queue_link_head(link);
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003806 link = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003807 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003808 }
3809
Jens Axboe9e645e112019-05-10 16:07:28 -06003810 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003811 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003812 if (statep)
3813 io_submit_state_end(&state);
3814
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003815 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3816 io_commit_sqring(ctx);
3817
Jens Axboe6c271ce2019-01-10 11:22:30 -07003818 return submitted;
3819}
3820
3821static int io_sq_thread(void *data)
3822{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003823 struct io_ring_ctx *ctx = data;
3824 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07003825 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003826 mm_segment_t old_fs;
3827 DEFINE_WAIT(wait);
3828 unsigned inflight;
3829 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07003830 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003831
Jens Axboe206aefd2019-11-07 18:27:42 -07003832 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08003833
Jens Axboe6c271ce2019-01-10 11:22:30 -07003834 old_fs = get_fs();
3835 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07003836 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003837
Jens Axboec1edbf52019-11-10 16:56:04 -07003838 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003839 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003840 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003841
3842 if (inflight) {
3843 unsigned nr_events = 0;
3844
3845 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06003846 /*
3847 * inflight is the count of the maximum possible
3848 * entries we submitted, but it can be smaller
3849 * if we dropped some of them. If we don't have
3850 * poll entries available, then we know that we
3851 * have nothing left to poll for. Reset the
3852 * inflight count to zero in that case.
3853 */
3854 mutex_lock(&ctx->uring_lock);
3855 if (!list_empty(&ctx->poll_list))
3856 __io_iopoll_check(ctx, &nr_events, 0);
3857 else
3858 inflight = 0;
3859 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003860 } else {
3861 /*
3862 * Normal IO, just pretend everything completed.
3863 * We don't have to poll completions for that.
3864 */
3865 nr_events = inflight;
3866 }
3867
3868 inflight -= nr_events;
3869 if (!inflight)
3870 timeout = jiffies + ctx->sq_thread_idle;
3871 }
3872
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003873 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003874
3875 /*
3876 * If submit got -EBUSY, flag us as needing the application
3877 * to enter the kernel to reap and flush events.
3878 */
3879 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003880 /*
3881 * We're polling. If we're within the defined idle
3882 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07003883 * to sleep. The exception is if we got EBUSY doing
3884 * more IO, we should wait for the application to
3885 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07003886 */
Jens Axboec1edbf52019-11-10 16:56:04 -07003887 if (inflight ||
3888 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06003889 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003890 continue;
3891 }
3892
3893 /*
3894 * Drop cur_mm before scheduling, we can't hold it for
3895 * long periods (or over schedule()). Do this before
3896 * adding ourselves to the waitqueue, as the unuse/drop
3897 * may sleep.
3898 */
3899 if (cur_mm) {
3900 unuse_mm(cur_mm);
3901 mmput(cur_mm);
3902 cur_mm = NULL;
3903 }
3904
3905 prepare_to_wait(&ctx->sqo_wait, &wait,
3906 TASK_INTERRUPTIBLE);
3907
3908 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00003909 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02003910 /* make sure to read SQ tail after writing flags */
3911 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003912
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003913 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003914 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003915 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003916 finish_wait(&ctx->sqo_wait, &wait);
3917 break;
3918 }
3919 if (signal_pending(current))
3920 flush_signals(current);
3921 schedule();
3922 finish_wait(&ctx->sqo_wait, &wait);
3923
Hristo Venev75b28af2019-08-26 17:23:46 +00003924 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003925 continue;
3926 }
3927 finish_wait(&ctx->sqo_wait, &wait);
3928
Hristo Venev75b28af2019-08-26 17:23:46 +00003929 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003930 }
3931
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003932 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe8a4955f2019-12-09 14:52:35 -07003933 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003934 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07003935 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003936 if (ret > 0)
3937 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003938 }
3939
3940 set_fs(old_fs);
3941 if (cur_mm) {
3942 unuse_mm(cur_mm);
3943 mmput(cur_mm);
3944 }
Jens Axboe181e4482019-11-25 08:52:30 -07003945 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06003946
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003947 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06003948
Jens Axboe6c271ce2019-01-10 11:22:30 -07003949 return 0;
3950}
3951
Jens Axboebda52162019-09-24 13:47:15 -06003952struct io_wait_queue {
3953 struct wait_queue_entry wq;
3954 struct io_ring_ctx *ctx;
3955 unsigned to_wait;
3956 unsigned nr_timeouts;
3957};
3958
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003959static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06003960{
3961 struct io_ring_ctx *ctx = iowq->ctx;
3962
3963 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08003964 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06003965 * started waiting. For timeouts, we always want to return to userspace,
3966 * regardless of event count.
3967 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003968 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06003969 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3970}
3971
3972static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3973 int wake_flags, void *key)
3974{
3975 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3976 wq);
3977
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003978 /* use noflush == true, as we can't safely rely on locking context */
3979 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06003980 return -1;
3981
3982 return autoremove_wake_function(curr, mode, wake_flags, key);
3983}
3984
Jens Axboe2b188cc2019-01-07 10:46:33 -07003985/*
3986 * Wait until events become available, if we don't already have some. The
3987 * application must reap them itself, as they reside on the shared cq ring.
3988 */
3989static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3990 const sigset_t __user *sig, size_t sigsz)
3991{
Jens Axboebda52162019-09-24 13:47:15 -06003992 struct io_wait_queue iowq = {
3993 .wq = {
3994 .private = current,
3995 .func = io_wake_function,
3996 .entry = LIST_HEAD_INIT(iowq.wq.entry),
3997 },
3998 .ctx = ctx,
3999 .to_wait = min_events,
4000 };
Hristo Venev75b28af2019-08-26 17:23:46 +00004001 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004002 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004003
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004004 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004005 return 0;
4006
4007 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004008#ifdef CONFIG_COMPAT
4009 if (in_compat_syscall())
4010 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07004011 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004012 else
4013#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07004014 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004015
Jens Axboe2b188cc2019-01-07 10:46:33 -07004016 if (ret)
4017 return ret;
4018 }
4019
Jens Axboebda52162019-09-24 13:47:15 -06004020 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004021 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06004022 do {
4023 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
4024 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004025 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06004026 break;
4027 schedule();
4028 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004029 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06004030 break;
4031 }
4032 } while (1);
4033 finish_wait(&ctx->wait, &iowq.wq);
4034
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004035 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004036
Hristo Venev75b28af2019-08-26 17:23:46 +00004037 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004038}
4039
Jens Axboe6b063142019-01-10 22:13:58 -07004040static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
4041{
4042#if defined(CONFIG_UNIX)
4043 if (ctx->ring_sock) {
4044 struct sock *sock = ctx->ring_sock->sk;
4045 struct sk_buff *skb;
4046
4047 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
4048 kfree_skb(skb);
4049 }
4050#else
4051 int i;
4052
Jens Axboe65e19f52019-10-26 07:20:21 -06004053 for (i = 0; i < ctx->nr_user_files; i++) {
4054 struct file *file;
4055
4056 file = io_file_from_index(ctx, i);
4057 if (file)
4058 fput(file);
4059 }
Jens Axboe6b063142019-01-10 22:13:58 -07004060#endif
4061}
4062
4063static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
4064{
Jens Axboe65e19f52019-10-26 07:20:21 -06004065 unsigned nr_tables, i;
4066
4067 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004068 return -ENXIO;
4069
4070 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06004071 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
4072 for (i = 0; i < nr_tables; i++)
4073 kfree(ctx->file_table[i].files);
4074 kfree(ctx->file_table);
4075 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004076 ctx->nr_user_files = 0;
4077 return 0;
4078}
4079
Jens Axboe6c271ce2019-01-10 11:22:30 -07004080static void io_sq_thread_stop(struct io_ring_ctx *ctx)
4081{
4082 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07004083 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004084 /*
4085 * The park is a bit of a work-around, without it we get
4086 * warning spews on shutdown with SQPOLL set and affinity
4087 * set to a single CPU.
4088 */
Jens Axboe06058632019-04-13 09:26:03 -06004089 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004090 kthread_stop(ctx->sqo_thread);
4091 ctx->sqo_thread = NULL;
4092 }
4093}
4094
Jens Axboe6b063142019-01-10 22:13:58 -07004095static void io_finish_async(struct io_ring_ctx *ctx)
4096{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004097 io_sq_thread_stop(ctx);
4098
Jens Axboe561fb042019-10-24 07:25:42 -06004099 if (ctx->io_wq) {
4100 io_wq_destroy(ctx->io_wq);
4101 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004102 }
4103}
4104
4105#if defined(CONFIG_UNIX)
4106static void io_destruct_skb(struct sk_buff *skb)
4107{
4108 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
4109
Jens Axboe561fb042019-10-24 07:25:42 -06004110 if (ctx->io_wq)
4111 io_wq_flush(ctx->io_wq);
Jens Axboe8a997342019-10-09 14:40:13 -06004112
Jens Axboe6b063142019-01-10 22:13:58 -07004113 unix_destruct_scm(skb);
4114}
4115
4116/*
4117 * Ensure the UNIX gc is aware of our file set, so we are certain that
4118 * the io_uring can be safely unregistered on process exit, even if we have
4119 * loops in the file referencing.
4120 */
4121static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
4122{
4123 struct sock *sk = ctx->ring_sock->sk;
4124 struct scm_fp_list *fpl;
4125 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06004126 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07004127
4128 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
4129 unsigned long inflight = ctx->user->unix_inflight + nr;
4130
4131 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
4132 return -EMFILE;
4133 }
4134
4135 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
4136 if (!fpl)
4137 return -ENOMEM;
4138
4139 skb = alloc_skb(0, GFP_KERNEL);
4140 if (!skb) {
4141 kfree(fpl);
4142 return -ENOMEM;
4143 }
4144
4145 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07004146
Jens Axboe08a45172019-10-03 08:11:03 -06004147 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07004148 fpl->user = get_uid(ctx->user);
4149 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004150 struct file *file = io_file_from_index(ctx, i + offset);
4151
4152 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06004153 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06004154 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06004155 unix_inflight(fpl->user, fpl->fp[nr_files]);
4156 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07004157 }
4158
Jens Axboe08a45172019-10-03 08:11:03 -06004159 if (nr_files) {
4160 fpl->max = SCM_MAX_FD;
4161 fpl->count = nr_files;
4162 UNIXCB(skb).fp = fpl;
4163 skb->destructor = io_destruct_skb;
4164 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
4165 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07004166
Jens Axboe08a45172019-10-03 08:11:03 -06004167 for (i = 0; i < nr_files; i++)
4168 fput(fpl->fp[i]);
4169 } else {
4170 kfree_skb(skb);
4171 kfree(fpl);
4172 }
Jens Axboe6b063142019-01-10 22:13:58 -07004173
4174 return 0;
4175}
4176
4177/*
4178 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
4179 * causes regular reference counting to break down. We rely on the UNIX
4180 * garbage collection to take care of this problem for us.
4181 */
4182static int io_sqe_files_scm(struct io_ring_ctx *ctx)
4183{
4184 unsigned left, total;
4185 int ret = 0;
4186
4187 total = 0;
4188 left = ctx->nr_user_files;
4189 while (left) {
4190 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07004191
4192 ret = __io_sqe_files_scm(ctx, this_files, total);
4193 if (ret)
4194 break;
4195 left -= this_files;
4196 total += this_files;
4197 }
4198
4199 if (!ret)
4200 return 0;
4201
4202 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004203 struct file *file = io_file_from_index(ctx, total);
4204
4205 if (file)
4206 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07004207 total++;
4208 }
4209
4210 return ret;
4211}
4212#else
4213static int io_sqe_files_scm(struct io_ring_ctx *ctx)
4214{
4215 return 0;
4216}
4217#endif
4218
Jens Axboe65e19f52019-10-26 07:20:21 -06004219static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
4220 unsigned nr_files)
4221{
4222 int i;
4223
4224 for (i = 0; i < nr_tables; i++) {
4225 struct fixed_file_table *table = &ctx->file_table[i];
4226 unsigned this_files;
4227
4228 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
4229 table->files = kcalloc(this_files, sizeof(struct file *),
4230 GFP_KERNEL);
4231 if (!table->files)
4232 break;
4233 nr_files -= this_files;
4234 }
4235
4236 if (i == nr_tables)
4237 return 0;
4238
4239 for (i = 0; i < nr_tables; i++) {
4240 struct fixed_file_table *table = &ctx->file_table[i];
4241 kfree(table->files);
4242 }
4243 return 1;
4244}
4245
Jens Axboe6b063142019-01-10 22:13:58 -07004246static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
4247 unsigned nr_args)
4248{
4249 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe65e19f52019-10-26 07:20:21 -06004250 unsigned nr_tables;
Jens Axboe6b063142019-01-10 22:13:58 -07004251 int fd, ret = 0;
4252 unsigned i;
4253
Jens Axboe65e19f52019-10-26 07:20:21 -06004254 if (ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004255 return -EBUSY;
4256 if (!nr_args)
4257 return -EINVAL;
4258 if (nr_args > IORING_MAX_FIXED_FILES)
4259 return -EMFILE;
4260
Jens Axboe65e19f52019-10-26 07:20:21 -06004261 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
4262 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
4263 GFP_KERNEL);
4264 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004265 return -ENOMEM;
4266
Jens Axboe65e19f52019-10-26 07:20:21 -06004267 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
4268 kfree(ctx->file_table);
Jens Axboe46568e92019-11-10 08:40:53 -07004269 ctx->file_table = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06004270 return -ENOMEM;
4271 }
4272
Jens Axboe08a45172019-10-03 08:11:03 -06004273 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004274 struct fixed_file_table *table;
4275 unsigned index;
4276
Jens Axboe6b063142019-01-10 22:13:58 -07004277 ret = -EFAULT;
4278 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
4279 break;
Jens Axboe08a45172019-10-03 08:11:03 -06004280 /* allow sparse sets */
4281 if (fd == -1) {
4282 ret = 0;
4283 continue;
4284 }
Jens Axboe6b063142019-01-10 22:13:58 -07004285
Jens Axboe65e19f52019-10-26 07:20:21 -06004286 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4287 index = i & IORING_FILE_TABLE_MASK;
4288 table->files[index] = fget(fd);
Jens Axboe6b063142019-01-10 22:13:58 -07004289
4290 ret = -EBADF;
Jens Axboe65e19f52019-10-26 07:20:21 -06004291 if (!table->files[index])
Jens Axboe6b063142019-01-10 22:13:58 -07004292 break;
4293 /*
4294 * Don't allow io_uring instances to be registered. If UNIX
4295 * isn't enabled, then this causes a reference cycle and this
4296 * instance can never get freed. If UNIX is enabled we'll
4297 * handle it just fine, but there's still no point in allowing
4298 * a ring fd as it doesn't support regular read/write anyway.
4299 */
Jens Axboe65e19f52019-10-26 07:20:21 -06004300 if (table->files[index]->f_op == &io_uring_fops) {
4301 fput(table->files[index]);
Jens Axboe6b063142019-01-10 22:13:58 -07004302 break;
4303 }
Jens Axboe6b063142019-01-10 22:13:58 -07004304 ret = 0;
4305 }
4306
4307 if (ret) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004308 for (i = 0; i < ctx->nr_user_files; i++) {
4309 struct file *file;
Jens Axboe6b063142019-01-10 22:13:58 -07004310
Jens Axboe65e19f52019-10-26 07:20:21 -06004311 file = io_file_from_index(ctx, i);
4312 if (file)
4313 fput(file);
4314 }
4315 for (i = 0; i < nr_tables; i++)
4316 kfree(ctx->file_table[i].files);
4317
4318 kfree(ctx->file_table);
4319 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004320 ctx->nr_user_files = 0;
4321 return ret;
4322 }
4323
4324 ret = io_sqe_files_scm(ctx);
4325 if (ret)
4326 io_sqe_files_unregister(ctx);
4327
4328 return ret;
4329}
4330
Jens Axboec3a31e62019-10-03 13:59:56 -06004331static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
4332{
4333#if defined(CONFIG_UNIX)
Jens Axboe65e19f52019-10-26 07:20:21 -06004334 struct file *file = io_file_from_index(ctx, index);
Jens Axboec3a31e62019-10-03 13:59:56 -06004335 struct sock *sock = ctx->ring_sock->sk;
4336 struct sk_buff_head list, *head = &sock->sk_receive_queue;
4337 struct sk_buff *skb;
4338 int i;
4339
4340 __skb_queue_head_init(&list);
4341
4342 /*
4343 * Find the skb that holds this file in its SCM_RIGHTS. When found,
4344 * remove this entry and rearrange the file array.
4345 */
4346 skb = skb_dequeue(head);
4347 while (skb) {
4348 struct scm_fp_list *fp;
4349
4350 fp = UNIXCB(skb).fp;
4351 for (i = 0; i < fp->count; i++) {
4352 int left;
4353
4354 if (fp->fp[i] != file)
4355 continue;
4356
4357 unix_notinflight(fp->user, fp->fp[i]);
4358 left = fp->count - 1 - i;
4359 if (left) {
4360 memmove(&fp->fp[i], &fp->fp[i + 1],
4361 left * sizeof(struct file *));
4362 }
4363 fp->count--;
4364 if (!fp->count) {
4365 kfree_skb(skb);
4366 skb = NULL;
4367 } else {
4368 __skb_queue_tail(&list, skb);
4369 }
4370 fput(file);
4371 file = NULL;
4372 break;
4373 }
4374
4375 if (!file)
4376 break;
4377
4378 __skb_queue_tail(&list, skb);
4379
4380 skb = skb_dequeue(head);
4381 }
4382
4383 if (skb_peek(&list)) {
4384 spin_lock_irq(&head->lock);
4385 while ((skb = __skb_dequeue(&list)) != NULL)
4386 __skb_queue_tail(head, skb);
4387 spin_unlock_irq(&head->lock);
4388 }
4389#else
Jens Axboe65e19f52019-10-26 07:20:21 -06004390 fput(io_file_from_index(ctx, index));
Jens Axboec3a31e62019-10-03 13:59:56 -06004391#endif
4392}
4393
4394static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
4395 int index)
4396{
4397#if defined(CONFIG_UNIX)
4398 struct sock *sock = ctx->ring_sock->sk;
4399 struct sk_buff_head *head = &sock->sk_receive_queue;
4400 struct sk_buff *skb;
4401
4402 /*
4403 * See if we can merge this file into an existing skb SCM_RIGHTS
4404 * file set. If there's no room, fall back to allocating a new skb
4405 * and filling it in.
4406 */
4407 spin_lock_irq(&head->lock);
4408 skb = skb_peek(head);
4409 if (skb) {
4410 struct scm_fp_list *fpl = UNIXCB(skb).fp;
4411
4412 if (fpl->count < SCM_MAX_FD) {
4413 __skb_unlink(skb, head);
4414 spin_unlock_irq(&head->lock);
4415 fpl->fp[fpl->count] = get_file(file);
4416 unix_inflight(fpl->user, fpl->fp[fpl->count]);
4417 fpl->count++;
4418 spin_lock_irq(&head->lock);
4419 __skb_queue_head(head, skb);
4420 } else {
4421 skb = NULL;
4422 }
4423 }
4424 spin_unlock_irq(&head->lock);
4425
4426 if (skb) {
4427 fput(file);
4428 return 0;
4429 }
4430
4431 return __io_sqe_files_scm(ctx, 1, index);
4432#else
4433 return 0;
4434#endif
4435}
4436
4437static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
4438 unsigned nr_args)
4439{
4440 struct io_uring_files_update up;
4441 __s32 __user *fds;
4442 int fd, i, err;
4443 __u32 done;
4444
Jens Axboe65e19f52019-10-26 07:20:21 -06004445 if (!ctx->file_table)
Jens Axboec3a31e62019-10-03 13:59:56 -06004446 return -ENXIO;
4447 if (!nr_args)
4448 return -EINVAL;
4449 if (copy_from_user(&up, arg, sizeof(up)))
4450 return -EFAULT;
4451 if (check_add_overflow(up.offset, nr_args, &done))
4452 return -EOVERFLOW;
4453 if (done > ctx->nr_user_files)
4454 return -EINVAL;
4455
4456 done = 0;
4457 fds = (__s32 __user *) up.fds;
4458 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004459 struct fixed_file_table *table;
4460 unsigned index;
4461
Jens Axboec3a31e62019-10-03 13:59:56 -06004462 err = 0;
4463 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
4464 err = -EFAULT;
4465 break;
4466 }
4467 i = array_index_nospec(up.offset, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004468 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4469 index = i & IORING_FILE_TABLE_MASK;
4470 if (table->files[index]) {
Jens Axboec3a31e62019-10-03 13:59:56 -06004471 io_sqe_file_unregister(ctx, i);
Jens Axboe65e19f52019-10-26 07:20:21 -06004472 table->files[index] = NULL;
Jens Axboec3a31e62019-10-03 13:59:56 -06004473 }
4474 if (fd != -1) {
4475 struct file *file;
4476
4477 file = fget(fd);
4478 if (!file) {
4479 err = -EBADF;
4480 break;
4481 }
4482 /*
4483 * Don't allow io_uring instances to be registered. If
4484 * UNIX isn't enabled, then this causes a reference
4485 * cycle and this instance can never get freed. If UNIX
4486 * is enabled we'll handle it just fine, but there's
4487 * still no point in allowing a ring fd as it doesn't
4488 * support regular read/write anyway.
4489 */
4490 if (file->f_op == &io_uring_fops) {
4491 fput(file);
4492 err = -EBADF;
4493 break;
4494 }
Jens Axboe65e19f52019-10-26 07:20:21 -06004495 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06004496 err = io_sqe_file_register(ctx, file, i);
4497 if (err)
4498 break;
4499 }
4500 nr_args--;
4501 done++;
4502 up.offset++;
4503 }
4504
4505 return done ? done : err;
4506}
4507
Jens Axboe7d723062019-11-12 22:31:31 -07004508static void io_put_work(struct io_wq_work *work)
4509{
4510 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4511
4512 io_put_req(req);
4513}
4514
4515static void io_get_work(struct io_wq_work *work)
4516{
4517 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4518
4519 refcount_inc(&req->refs);
4520}
4521
Jens Axboe6c271ce2019-01-10 11:22:30 -07004522static int io_sq_offload_start(struct io_ring_ctx *ctx,
4523 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004524{
Jens Axboe576a3472019-11-25 08:49:20 -07004525 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06004526 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004527 int ret;
4528
Jens Axboe6c271ce2019-01-10 11:22:30 -07004529 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004530 mmgrab(current->mm);
4531 ctx->sqo_mm = current->mm;
4532
Jens Axboe6c271ce2019-01-10 11:22:30 -07004533 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06004534 ret = -EPERM;
4535 if (!capable(CAP_SYS_ADMIN))
4536 goto err;
4537
Jens Axboe917257d2019-04-13 09:28:55 -06004538 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
4539 if (!ctx->sq_thread_idle)
4540 ctx->sq_thread_idle = HZ;
4541
Jens Axboe6c271ce2019-01-10 11:22:30 -07004542 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06004543 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004544
Jens Axboe917257d2019-04-13 09:28:55 -06004545 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06004546 if (cpu >= nr_cpu_ids)
4547 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08004548 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06004549 goto err;
4550
Jens Axboe6c271ce2019-01-10 11:22:30 -07004551 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
4552 ctx, cpu,
4553 "io_uring-sq");
4554 } else {
4555 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
4556 "io_uring-sq");
4557 }
4558 if (IS_ERR(ctx->sqo_thread)) {
4559 ret = PTR_ERR(ctx->sqo_thread);
4560 ctx->sqo_thread = NULL;
4561 goto err;
4562 }
4563 wake_up_process(ctx->sqo_thread);
4564 } else if (p->flags & IORING_SETUP_SQ_AFF) {
4565 /* Can't have SQ_AFF without SQPOLL */
4566 ret = -EINVAL;
4567 goto err;
4568 }
4569
Jens Axboe576a3472019-11-25 08:49:20 -07004570 data.mm = ctx->sqo_mm;
4571 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07004572 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07004573 data.get_work = io_get_work;
4574 data.put_work = io_put_work;
4575
Jens Axboe561fb042019-10-24 07:25:42 -06004576 /* Do QD, or 4 * CPUS, whatever is smallest */
4577 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07004578 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06004579 if (IS_ERR(ctx->io_wq)) {
4580 ret = PTR_ERR(ctx->io_wq);
4581 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004582 goto err;
4583 }
4584
4585 return 0;
4586err:
Jens Axboe54a91f32019-09-10 09:15:04 -06004587 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004588 mmdrop(ctx->sqo_mm);
4589 ctx->sqo_mm = NULL;
4590 return ret;
4591}
4592
4593static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
4594{
4595 atomic_long_sub(nr_pages, &user->locked_vm);
4596}
4597
4598static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
4599{
4600 unsigned long page_limit, cur_pages, new_pages;
4601
4602 /* Don't allow more pages than we can safely lock */
4603 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
4604
4605 do {
4606 cur_pages = atomic_long_read(&user->locked_vm);
4607 new_pages = cur_pages + nr_pages;
4608 if (new_pages > page_limit)
4609 return -ENOMEM;
4610 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4611 new_pages) != cur_pages);
4612
4613 return 0;
4614}
4615
4616static void io_mem_free(void *ptr)
4617{
Mark Rutland52e04ef2019-04-30 17:30:21 +01004618 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004619
Mark Rutland52e04ef2019-04-30 17:30:21 +01004620 if (!ptr)
4621 return;
4622
4623 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004624 if (put_page_testzero(page))
4625 free_compound_page(page);
4626}
4627
4628static void *io_mem_alloc(size_t size)
4629{
4630 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4631 __GFP_NORETRY;
4632
4633 return (void *) __get_free_pages(gfp_flags, get_order(size));
4634}
4635
Hristo Venev75b28af2019-08-26 17:23:46 +00004636static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4637 size_t *sq_offset)
4638{
4639 struct io_rings *rings;
4640 size_t off, sq_array_size;
4641
4642 off = struct_size(rings, cqes, cq_entries);
4643 if (off == SIZE_MAX)
4644 return SIZE_MAX;
4645
4646#ifdef CONFIG_SMP
4647 off = ALIGN(off, SMP_CACHE_BYTES);
4648 if (off == 0)
4649 return SIZE_MAX;
4650#endif
4651
4652 sq_array_size = array_size(sizeof(u32), sq_entries);
4653 if (sq_array_size == SIZE_MAX)
4654 return SIZE_MAX;
4655
4656 if (check_add_overflow(off, sq_array_size, &off))
4657 return SIZE_MAX;
4658
4659 if (sq_offset)
4660 *sq_offset = off;
4661
4662 return off;
4663}
4664
Jens Axboe2b188cc2019-01-07 10:46:33 -07004665static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4666{
Hristo Venev75b28af2019-08-26 17:23:46 +00004667 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004668
Hristo Venev75b28af2019-08-26 17:23:46 +00004669 pages = (size_t)1 << get_order(
4670 rings_size(sq_entries, cq_entries, NULL));
4671 pages += (size_t)1 << get_order(
4672 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07004673
Hristo Venev75b28af2019-08-26 17:23:46 +00004674 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004675}
4676
Jens Axboeedafcce2019-01-09 09:16:05 -07004677static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4678{
4679 int i, j;
4680
4681 if (!ctx->user_bufs)
4682 return -ENXIO;
4683
4684 for (i = 0; i < ctx->nr_user_bufs; i++) {
4685 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4686
4687 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07004688 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07004689
4690 if (ctx->account_mem)
4691 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004692 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004693 imu->nr_bvecs = 0;
4694 }
4695
4696 kfree(ctx->user_bufs);
4697 ctx->user_bufs = NULL;
4698 ctx->nr_user_bufs = 0;
4699 return 0;
4700}
4701
4702static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4703 void __user *arg, unsigned index)
4704{
4705 struct iovec __user *src;
4706
4707#ifdef CONFIG_COMPAT
4708 if (ctx->compat) {
4709 struct compat_iovec __user *ciovs;
4710 struct compat_iovec ciov;
4711
4712 ciovs = (struct compat_iovec __user *) arg;
4713 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4714 return -EFAULT;
4715
Jens Axboed55e5f52019-12-11 16:12:15 -07004716 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07004717 dst->iov_len = ciov.iov_len;
4718 return 0;
4719 }
4720#endif
4721 src = (struct iovec __user *) arg;
4722 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4723 return -EFAULT;
4724 return 0;
4725}
4726
4727static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4728 unsigned nr_args)
4729{
4730 struct vm_area_struct **vmas = NULL;
4731 struct page **pages = NULL;
4732 int i, j, got_pages = 0;
4733 int ret = -EINVAL;
4734
4735 if (ctx->user_bufs)
4736 return -EBUSY;
4737 if (!nr_args || nr_args > UIO_MAXIOV)
4738 return -EINVAL;
4739
4740 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4741 GFP_KERNEL);
4742 if (!ctx->user_bufs)
4743 return -ENOMEM;
4744
4745 for (i = 0; i < nr_args; i++) {
4746 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4747 unsigned long off, start, end, ubuf;
4748 int pret, nr_pages;
4749 struct iovec iov;
4750 size_t size;
4751
4752 ret = io_copy_iov(ctx, &iov, arg, i);
4753 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03004754 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07004755
4756 /*
4757 * Don't impose further limits on the size and buffer
4758 * constraints here, we'll -EINVAL later when IO is
4759 * submitted if they are wrong.
4760 */
4761 ret = -EFAULT;
4762 if (!iov.iov_base || !iov.iov_len)
4763 goto err;
4764
4765 /* arbitrary limit, but we need something */
4766 if (iov.iov_len > SZ_1G)
4767 goto err;
4768
4769 ubuf = (unsigned long) iov.iov_base;
4770 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4771 start = ubuf >> PAGE_SHIFT;
4772 nr_pages = end - start;
4773
4774 if (ctx->account_mem) {
4775 ret = io_account_mem(ctx->user, nr_pages);
4776 if (ret)
4777 goto err;
4778 }
4779
4780 ret = 0;
4781 if (!pages || nr_pages > got_pages) {
4782 kfree(vmas);
4783 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004784 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07004785 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004786 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07004787 sizeof(struct vm_area_struct *),
4788 GFP_KERNEL);
4789 if (!pages || !vmas) {
4790 ret = -ENOMEM;
4791 if (ctx->account_mem)
4792 io_unaccount_mem(ctx->user, nr_pages);
4793 goto err;
4794 }
4795 got_pages = nr_pages;
4796 }
4797
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004798 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07004799 GFP_KERNEL);
4800 ret = -ENOMEM;
4801 if (!imu->bvec) {
4802 if (ctx->account_mem)
4803 io_unaccount_mem(ctx->user, nr_pages);
4804 goto err;
4805 }
4806
4807 ret = 0;
4808 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07004809 pret = get_user_pages(ubuf, nr_pages,
4810 FOLL_WRITE | FOLL_LONGTERM,
4811 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004812 if (pret == nr_pages) {
4813 /* don't support file backed memory */
4814 for (j = 0; j < nr_pages; j++) {
4815 struct vm_area_struct *vma = vmas[j];
4816
4817 if (vma->vm_file &&
4818 !is_file_hugepages(vma->vm_file)) {
4819 ret = -EOPNOTSUPP;
4820 break;
4821 }
4822 }
4823 } else {
4824 ret = pret < 0 ? pret : -EFAULT;
4825 }
4826 up_read(&current->mm->mmap_sem);
4827 if (ret) {
4828 /*
4829 * if we did partial map, or found file backed vmas,
4830 * release any pages we did get
4831 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07004832 if (pret > 0)
4833 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004834 if (ctx->account_mem)
4835 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004836 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004837 goto err;
4838 }
4839
4840 off = ubuf & ~PAGE_MASK;
4841 size = iov.iov_len;
4842 for (j = 0; j < nr_pages; j++) {
4843 size_t vec_len;
4844
4845 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4846 imu->bvec[j].bv_page = pages[j];
4847 imu->bvec[j].bv_len = vec_len;
4848 imu->bvec[j].bv_offset = off;
4849 off = 0;
4850 size -= vec_len;
4851 }
4852 /* store original address for later verification */
4853 imu->ubuf = ubuf;
4854 imu->len = iov.iov_len;
4855 imu->nr_bvecs = nr_pages;
4856
4857 ctx->nr_user_bufs++;
4858 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004859 kvfree(pages);
4860 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004861 return 0;
4862err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004863 kvfree(pages);
4864 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004865 io_sqe_buffer_unregister(ctx);
4866 return ret;
4867}
4868
Jens Axboe9b402842019-04-11 11:45:41 -06004869static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4870{
4871 __s32 __user *fds = arg;
4872 int fd;
4873
4874 if (ctx->cq_ev_fd)
4875 return -EBUSY;
4876
4877 if (copy_from_user(&fd, fds, sizeof(*fds)))
4878 return -EFAULT;
4879
4880 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4881 if (IS_ERR(ctx->cq_ev_fd)) {
4882 int ret = PTR_ERR(ctx->cq_ev_fd);
4883 ctx->cq_ev_fd = NULL;
4884 return ret;
4885 }
4886
4887 return 0;
4888}
4889
4890static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4891{
4892 if (ctx->cq_ev_fd) {
4893 eventfd_ctx_put(ctx->cq_ev_fd);
4894 ctx->cq_ev_fd = NULL;
4895 return 0;
4896 }
4897
4898 return -ENXIO;
4899}
4900
Jens Axboe2b188cc2019-01-07 10:46:33 -07004901static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4902{
Jens Axboe6b063142019-01-10 22:13:58 -07004903 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004904 if (ctx->sqo_mm)
4905 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07004906
4907 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07004908 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07004909 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06004910 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07004911
Jens Axboe2b188cc2019-01-07 10:46:33 -07004912#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07004913 if (ctx->ring_sock) {
4914 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004915 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07004916 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004917#endif
4918
Hristo Venev75b28af2019-08-26 17:23:46 +00004919 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004920 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004921
4922 percpu_ref_exit(&ctx->refs);
4923 if (ctx->account_mem)
4924 io_unaccount_mem(ctx->user,
4925 ring_pages(ctx->sq_entries, ctx->cq_entries));
4926 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07004927 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07004928 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07004929 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07004930 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004931 kfree(ctx);
4932}
4933
4934static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4935{
4936 struct io_ring_ctx *ctx = file->private_data;
4937 __poll_t mask = 0;
4938
4939 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02004940 /*
4941 * synchronizes with barrier from wq_has_sleeper call in
4942 * io_commit_cqring
4943 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004944 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00004945 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4946 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004947 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08004948 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004949 mask |= EPOLLIN | EPOLLRDNORM;
4950
4951 return mask;
4952}
4953
4954static int io_uring_fasync(int fd, struct file *file, int on)
4955{
4956 struct io_ring_ctx *ctx = file->private_data;
4957
4958 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4959}
4960
4961static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4962{
4963 mutex_lock(&ctx->uring_lock);
4964 percpu_ref_kill(&ctx->refs);
4965 mutex_unlock(&ctx->uring_lock);
4966
Jens Axboe5262f562019-09-17 12:26:57 -06004967 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004968 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06004969
4970 if (ctx->io_wq)
4971 io_wq_cancel_all(ctx->io_wq);
4972
Jens Axboedef596e2019-01-09 08:59:42 -07004973 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07004974 /* if we failed setting up the ctx, we might not have any rings */
4975 if (ctx->rings)
4976 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07004977 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004978 io_ring_ctx_free(ctx);
4979}
4980
4981static int io_uring_release(struct inode *inode, struct file *file)
4982{
4983 struct io_ring_ctx *ctx = file->private_data;
4984
4985 file->private_data = NULL;
4986 io_ring_ctx_wait_and_kill(ctx);
4987 return 0;
4988}
4989
Jens Axboefcb323c2019-10-24 12:39:47 -06004990static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4991 struct files_struct *files)
4992{
4993 struct io_kiocb *req;
4994 DEFINE_WAIT(wait);
4995
4996 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07004997 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06004998
4999 spin_lock_irq(&ctx->inflight_lock);
5000 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07005001 if (req->work.files != files)
5002 continue;
5003 /* req is being completed, ignore */
5004 if (!refcount_inc_not_zero(&req->refs))
5005 continue;
5006 cancel_req = req;
5007 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06005008 }
Jens Axboe768134d2019-11-10 20:30:53 -07005009 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005010 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07005011 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06005012 spin_unlock_irq(&ctx->inflight_lock);
5013
Jens Axboe768134d2019-11-10 20:30:53 -07005014 /* We need to keep going until we don't find a matching req */
5015 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005016 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08005017
5018 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
5019 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06005020 schedule();
5021 }
Jens Axboe768134d2019-11-10 20:30:53 -07005022 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06005023}
5024
5025static int io_uring_flush(struct file *file, void *data)
5026{
5027 struct io_ring_ctx *ctx = file->private_data;
5028
5029 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005030 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
5031 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06005032 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005033 }
Jens Axboefcb323c2019-10-24 12:39:47 -06005034 return 0;
5035}
5036
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005037static void *io_uring_validate_mmap_request(struct file *file,
5038 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005039{
Jens Axboe2b188cc2019-01-07 10:46:33 -07005040 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005041 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005042 struct page *page;
5043 void *ptr;
5044
5045 switch (offset) {
5046 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00005047 case IORING_OFF_CQ_RING:
5048 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005049 break;
5050 case IORING_OFF_SQES:
5051 ptr = ctx->sq_sqes;
5052 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005053 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005054 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005055 }
5056
5057 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07005058 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005059 return ERR_PTR(-EINVAL);
5060
5061 return ptr;
5062}
5063
5064#ifdef CONFIG_MMU
5065
5066static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
5067{
5068 size_t sz = vma->vm_end - vma->vm_start;
5069 unsigned long pfn;
5070 void *ptr;
5071
5072 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
5073 if (IS_ERR(ptr))
5074 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005075
5076 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
5077 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
5078}
5079
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005080#else /* !CONFIG_MMU */
5081
5082static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
5083{
5084 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
5085}
5086
5087static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
5088{
5089 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
5090}
5091
5092static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
5093 unsigned long addr, unsigned long len,
5094 unsigned long pgoff, unsigned long flags)
5095{
5096 void *ptr;
5097
5098 ptr = io_uring_validate_mmap_request(file, pgoff, len);
5099 if (IS_ERR(ptr))
5100 return PTR_ERR(ptr);
5101
5102 return (unsigned long) ptr;
5103}
5104
5105#endif /* !CONFIG_MMU */
5106
Jens Axboe2b188cc2019-01-07 10:46:33 -07005107SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
5108 u32, min_complete, u32, flags, const sigset_t __user *, sig,
5109 size_t, sigsz)
5110{
5111 struct io_ring_ctx *ctx;
5112 long ret = -EBADF;
5113 int submitted = 0;
5114 struct fd f;
5115
Jens Axboe6c271ce2019-01-10 11:22:30 -07005116 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005117 return -EINVAL;
5118
5119 f = fdget(fd);
5120 if (!f.file)
5121 return -EBADF;
5122
5123 ret = -EOPNOTSUPP;
5124 if (f.file->f_op != &io_uring_fops)
5125 goto out_fput;
5126
5127 ret = -ENXIO;
5128 ctx = f.file->private_data;
5129 if (!percpu_ref_tryget(&ctx->refs))
5130 goto out_fput;
5131
Jens Axboe6c271ce2019-01-10 11:22:30 -07005132 /*
5133 * For SQ polling, the thread will do all submissions and completions.
5134 * Just return the requested submit count, and wake the thread if
5135 * we were asked to.
5136 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06005137 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005138 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07005139 if (!list_empty_careful(&ctx->cq_overflow_list))
5140 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005141 if (flags & IORING_ENTER_SQ_WAKEUP)
5142 wake_up(&ctx->sqo_wait);
5143 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06005144 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005145 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005146
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005147 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005148 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005149 /* already have mm, so io_submit_sqes() won't try to grab it */
5150 cur_mm = ctx->sqo_mm;
5151 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
5152 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005153 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03005154
5155 if (submitted != to_submit)
5156 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005157 }
5158 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07005159 unsigned nr_events = 0;
5160
Jens Axboe2b188cc2019-01-07 10:46:33 -07005161 min_complete = min(min_complete, ctx->cq_entries);
5162
Jens Axboedef596e2019-01-09 08:59:42 -07005163 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07005164 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07005165 } else {
5166 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
5167 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005168 }
5169
Pavel Begunkov7c504e652019-12-18 19:53:45 +03005170out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03005171 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005172out_fput:
5173 fdput(f);
5174 return submitted ? submitted : ret;
5175}
5176
5177static const struct file_operations io_uring_fops = {
5178 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06005179 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07005180 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005181#ifndef CONFIG_MMU
5182 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
5183 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
5184#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07005185 .poll = io_uring_poll,
5186 .fasync = io_uring_fasync,
5187};
5188
5189static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
5190 struct io_uring_params *p)
5191{
Hristo Venev75b28af2019-08-26 17:23:46 +00005192 struct io_rings *rings;
5193 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005194
Hristo Venev75b28af2019-08-26 17:23:46 +00005195 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
5196 if (size == SIZE_MAX)
5197 return -EOVERFLOW;
5198
5199 rings = io_mem_alloc(size);
5200 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005201 return -ENOMEM;
5202
Hristo Venev75b28af2019-08-26 17:23:46 +00005203 ctx->rings = rings;
5204 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
5205 rings->sq_ring_mask = p->sq_entries - 1;
5206 rings->cq_ring_mask = p->cq_entries - 1;
5207 rings->sq_ring_entries = p->sq_entries;
5208 rings->cq_ring_entries = p->cq_entries;
5209 ctx->sq_mask = rings->sq_ring_mask;
5210 ctx->cq_mask = rings->cq_ring_mask;
5211 ctx->sq_entries = rings->sq_ring_entries;
5212 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005213
5214 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07005215 if (size == SIZE_MAX) {
5216 io_mem_free(ctx->rings);
5217 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005218 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07005219 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005220
5221 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07005222 if (!ctx->sq_sqes) {
5223 io_mem_free(ctx->rings);
5224 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005225 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07005226 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005227
Jens Axboe2b188cc2019-01-07 10:46:33 -07005228 return 0;
5229}
5230
5231/*
5232 * Allocate an anonymous fd, this is what constitutes the application
5233 * visible backing of an io_uring instance. The application mmaps this
5234 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
5235 * we have to tie this fd to a socket for file garbage collection purposes.
5236 */
5237static int io_uring_get_fd(struct io_ring_ctx *ctx)
5238{
5239 struct file *file;
5240 int ret;
5241
5242#if defined(CONFIG_UNIX)
5243 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
5244 &ctx->ring_sock);
5245 if (ret)
5246 return ret;
5247#endif
5248
5249 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
5250 if (ret < 0)
5251 goto err;
5252
5253 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
5254 O_RDWR | O_CLOEXEC);
5255 if (IS_ERR(file)) {
5256 put_unused_fd(ret);
5257 ret = PTR_ERR(file);
5258 goto err;
5259 }
5260
5261#if defined(CONFIG_UNIX)
5262 ctx->ring_sock->file = file;
Jens Axboe6b063142019-01-10 22:13:58 -07005263 ctx->ring_sock->sk->sk_user_data = ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005264#endif
5265 fd_install(ret, file);
5266 return ret;
5267err:
5268#if defined(CONFIG_UNIX)
5269 sock_release(ctx->ring_sock);
5270 ctx->ring_sock = NULL;
5271#endif
5272 return ret;
5273}
5274
5275static int io_uring_create(unsigned entries, struct io_uring_params *p)
5276{
5277 struct user_struct *user = NULL;
5278 struct io_ring_ctx *ctx;
5279 bool account_mem;
5280 int ret;
5281
5282 if (!entries || entries > IORING_MAX_ENTRIES)
5283 return -EINVAL;
5284
5285 /*
5286 * Use twice as many entries for the CQ ring. It's possible for the
5287 * application to drive a higher depth than the size of the SQ ring,
5288 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06005289 * some flexibility in overcommitting a bit. If the application has
5290 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
5291 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07005292 */
5293 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06005294 if (p->flags & IORING_SETUP_CQSIZE) {
5295 /*
5296 * If IORING_SETUP_CQSIZE is set, we do the same roundup
5297 * to a power-of-two, if it isn't already. We do NOT impose
5298 * any cq vs sq ring sizing.
5299 */
5300 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
5301 return -EINVAL;
5302 p->cq_entries = roundup_pow_of_two(p->cq_entries);
5303 } else {
5304 p->cq_entries = 2 * p->sq_entries;
5305 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005306
5307 user = get_uid(current_user());
5308 account_mem = !capable(CAP_IPC_LOCK);
5309
5310 if (account_mem) {
5311 ret = io_account_mem(user,
5312 ring_pages(p->sq_entries, p->cq_entries));
5313 if (ret) {
5314 free_uid(user);
5315 return ret;
5316 }
5317 }
5318
5319 ctx = io_ring_ctx_alloc(p);
5320 if (!ctx) {
5321 if (account_mem)
5322 io_unaccount_mem(user, ring_pages(p->sq_entries,
5323 p->cq_entries));
5324 free_uid(user);
5325 return -ENOMEM;
5326 }
5327 ctx->compat = in_compat_syscall();
5328 ctx->account_mem = account_mem;
5329 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07005330 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07005331
5332 ret = io_allocate_scq_urings(ctx, p);
5333 if (ret)
5334 goto err;
5335
Jens Axboe6c271ce2019-01-10 11:22:30 -07005336 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005337 if (ret)
5338 goto err;
5339
Jens Axboe2b188cc2019-01-07 10:46:33 -07005340 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005341 p->sq_off.head = offsetof(struct io_rings, sq.head);
5342 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
5343 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
5344 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
5345 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
5346 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
5347 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005348
5349 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005350 p->cq_off.head = offsetof(struct io_rings, cq.head);
5351 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
5352 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
5353 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
5354 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
5355 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06005356
Jens Axboe044c1ab2019-10-28 09:15:33 -06005357 /*
5358 * Install ring fd as the very last thing, so we don't risk someone
5359 * having closed it before we finish setup
5360 */
5361 ret = io_uring_get_fd(ctx);
5362 if (ret < 0)
5363 goto err;
5364
Jens Axboeda8c9692019-12-02 18:51:26 -07005365 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
5366 IORING_FEAT_SUBMIT_STABLE;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005367 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005368 return ret;
5369err:
5370 io_ring_ctx_wait_and_kill(ctx);
5371 return ret;
5372}
5373
5374/*
5375 * Sets up an aio uring context, and returns the fd. Applications asks for a
5376 * ring size, we return the actual sq/cq ring sizes (among other things) in the
5377 * params structure passed in.
5378 */
5379static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
5380{
5381 struct io_uring_params p;
5382 long ret;
5383 int i;
5384
5385 if (copy_from_user(&p, params, sizeof(p)))
5386 return -EFAULT;
5387 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
5388 if (p.resv[i])
5389 return -EINVAL;
5390 }
5391
Jens Axboe6c271ce2019-01-10 11:22:30 -07005392 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe33a107f2019-10-04 12:10:03 -06005393 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005394 return -EINVAL;
5395
5396 ret = io_uring_create(entries, &p);
5397 if (ret < 0)
5398 return ret;
5399
5400 if (copy_to_user(params, &p, sizeof(p)))
5401 return -EFAULT;
5402
5403 return ret;
5404}
5405
5406SYSCALL_DEFINE2(io_uring_setup, u32, entries,
5407 struct io_uring_params __user *, params)
5408{
5409 return io_uring_setup(entries, params);
5410}
5411
Jens Axboeedafcce2019-01-09 09:16:05 -07005412static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
5413 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06005414 __releases(ctx->uring_lock)
5415 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07005416{
5417 int ret;
5418
Jens Axboe35fa71a2019-04-22 10:23:23 -06005419 /*
5420 * We're inside the ring mutex, if the ref is already dying, then
5421 * someone else killed the ctx or is already going through
5422 * io_uring_register().
5423 */
5424 if (percpu_ref_is_dying(&ctx->refs))
5425 return -ENXIO;
5426
Jens Axboeedafcce2019-01-09 09:16:05 -07005427 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06005428
5429 /*
5430 * Drop uring mutex before waiting for references to exit. If another
5431 * thread is currently inside io_uring_enter() it might need to grab
5432 * the uring_lock to make progress. If we hold it here across the drain
5433 * wait, then we can deadlock. It's safe to drop the mutex here, since
5434 * no new references will come in after we've killed the percpu ref.
5435 */
5436 mutex_unlock(&ctx->uring_lock);
Jens Axboe206aefd2019-11-07 18:27:42 -07005437 wait_for_completion(&ctx->completions[0]);
Jens Axboeb19062a2019-04-15 10:49:38 -06005438 mutex_lock(&ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07005439
5440 switch (opcode) {
5441 case IORING_REGISTER_BUFFERS:
5442 ret = io_sqe_buffer_register(ctx, arg, nr_args);
5443 break;
5444 case IORING_UNREGISTER_BUFFERS:
5445 ret = -EINVAL;
5446 if (arg || nr_args)
5447 break;
5448 ret = io_sqe_buffer_unregister(ctx);
5449 break;
Jens Axboe6b063142019-01-10 22:13:58 -07005450 case IORING_REGISTER_FILES:
5451 ret = io_sqe_files_register(ctx, arg, nr_args);
5452 break;
5453 case IORING_UNREGISTER_FILES:
5454 ret = -EINVAL;
5455 if (arg || nr_args)
5456 break;
5457 ret = io_sqe_files_unregister(ctx);
5458 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06005459 case IORING_REGISTER_FILES_UPDATE:
5460 ret = io_sqe_files_update(ctx, arg, nr_args);
5461 break;
Jens Axboe9b402842019-04-11 11:45:41 -06005462 case IORING_REGISTER_EVENTFD:
5463 ret = -EINVAL;
5464 if (nr_args != 1)
5465 break;
5466 ret = io_eventfd_register(ctx, arg);
5467 break;
5468 case IORING_UNREGISTER_EVENTFD:
5469 ret = -EINVAL;
5470 if (arg || nr_args)
5471 break;
5472 ret = io_eventfd_unregister(ctx);
5473 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07005474 default:
5475 ret = -EINVAL;
5476 break;
5477 }
5478
5479 /* bring the ctx back to life */
Jens Axboe206aefd2019-11-07 18:27:42 -07005480 reinit_completion(&ctx->completions[0]);
Jens Axboeedafcce2019-01-09 09:16:05 -07005481 percpu_ref_reinit(&ctx->refs);
5482 return ret;
5483}
5484
5485SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
5486 void __user *, arg, unsigned int, nr_args)
5487{
5488 struct io_ring_ctx *ctx;
5489 long ret = -EBADF;
5490 struct fd f;
5491
5492 f = fdget(fd);
5493 if (!f.file)
5494 return -EBADF;
5495
5496 ret = -EOPNOTSUPP;
5497 if (f.file->f_op != &io_uring_fops)
5498 goto out_fput;
5499
5500 ctx = f.file->private_data;
5501
5502 mutex_lock(&ctx->uring_lock);
5503 ret = __io_uring_register(ctx, opcode, arg, nr_args);
5504 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005505 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
5506 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005507out_fput:
5508 fdput(f);
5509 return ret;
5510}
5511
Jens Axboe2b188cc2019-01-07 10:46:33 -07005512static int __init io_uring_init(void)
5513{
5514 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
5515 return 0;
5516};
5517__initcall(io_uring_init);