blob: 7a23d2351be2330e85ac5056327ebf30771a1a72 [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;
333};
334
Jens Axboef499a022019-12-02 16:28:46 -0700335struct io_async_connect {
336 struct sockaddr_storage address;
337};
338
Jens Axboe03b12302019-12-02 18:50:25 -0700339struct io_async_msghdr {
340 struct iovec fast_iov[UIO_FASTIOV];
341 struct iovec *iov;
342 struct sockaddr __user *uaddr;
343 struct msghdr msg;
344};
345
Jens Axboef67676d2019-12-02 11:03:47 -0700346struct io_async_rw {
347 struct iovec fast_iov[UIO_FASTIOV];
348 struct iovec *iov;
349 ssize_t nr_segs;
350 ssize_t size;
351};
352
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700353struct io_async_ctx {
354 struct io_uring_sqe sqe;
Jens Axboef67676d2019-12-02 11:03:47 -0700355 union {
356 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700357 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700358 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700359 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700360 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700361};
362
Jens Axboe09bb8392019-03-13 12:39:28 -0600363/*
364 * NOTE! Each of the iocb union members has the file pointer
365 * as the first entry in their struct definition. So you can
366 * access the file pointer through any of the sub-structs,
367 * or directly as just 'ki_filp' in this struct.
368 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700369struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700370 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600371 struct file *file;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700372 struct kiocb rw;
373 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700374 struct io_accept accept;
375 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700376 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700377 struct io_timeout timeout;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700378 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700379
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300380 const struct io_uring_sqe *sqe;
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700381 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300382 struct file *ring_file;
383 int ring_fd;
384 bool has_user;
385 bool in_async;
386 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700387 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700388
389 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700390 union {
391 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700392 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700393 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600394 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700395 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700396 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200397#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700398#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700399#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700400#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200401#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
402#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600403#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700404#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800405#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300406#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600407#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600408#define REQ_F_ISREG 2048 /* regular file */
409#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700410#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800411#define REQ_F_INFLIGHT 16384 /* on inflight list */
412#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe4e88d6e2019-12-07 20:59:47 -0700413#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700414#define REQ_F_PREPPED 131072 /* request already opcode prepared */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700415 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600416 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600417 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700418
Jens Axboefcb323c2019-10-24 12:39:47 -0600419 struct list_head inflight_entry;
420
Jens Axboe561fb042019-10-24 07:25:42 -0600421 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700422};
423
424#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700425#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700426
Jens Axboe9a56a232019-01-09 09:06:50 -0700427struct io_submit_state {
428 struct blk_plug plug;
429
430 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700431 * io_kiocb alloc cache
432 */
433 void *reqs[IO_IOPOLL_BATCH];
434 unsigned int free_reqs;
435 unsigned int cur_req;
436
437 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700438 * File reference cache
439 */
440 struct file *file;
441 unsigned int fd;
442 unsigned int has_refs;
443 unsigned int used_refs;
444 unsigned int ios_left;
445};
446
Jens Axboe561fb042019-10-24 07:25:42 -0600447static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700448static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liu4fe2c962019-09-09 20:50:40 +0800449static void __io_free_req(struct io_kiocb *req);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800450static void io_put_req(struct io_kiocb *req);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700451static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700452static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700453static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
454static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600455
Jens Axboe2b188cc2019-01-07 10:46:33 -0700456static struct kmem_cache *req_cachep;
457
458static const struct file_operations io_uring_fops;
459
460struct sock *io_uring_get_socket(struct file *file)
461{
462#if defined(CONFIG_UNIX)
463 if (file->f_op == &io_uring_fops) {
464 struct io_ring_ctx *ctx = file->private_data;
465
466 return ctx->ring_sock->sk;
467 }
468#endif
469 return NULL;
470}
471EXPORT_SYMBOL(io_uring_get_socket);
472
473static void io_ring_ctx_ref_free(struct percpu_ref *ref)
474{
475 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
476
Jens Axboe206aefd2019-11-07 18:27:42 -0700477 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700478}
479
480static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
481{
482 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700483 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700484
485 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
486 if (!ctx)
487 return NULL;
488
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700489 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
490 if (!ctx->fallback_req)
491 goto err;
492
Jens Axboe206aefd2019-11-07 18:27:42 -0700493 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
494 if (!ctx->completions)
495 goto err;
496
Jens Axboe78076bb2019-12-04 19:56:40 -0700497 /*
498 * Use 5 bits less than the max cq entries, that should give us around
499 * 32 entries per hash list if totally full and uniformly spread.
500 */
501 hash_bits = ilog2(p->cq_entries);
502 hash_bits -= 5;
503 if (hash_bits <= 0)
504 hash_bits = 1;
505 ctx->cancel_hash_bits = hash_bits;
506 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
507 GFP_KERNEL);
508 if (!ctx->cancel_hash)
509 goto err;
510 __hash_init(ctx->cancel_hash, 1U << hash_bits);
511
Roman Gushchin21482892019-05-07 10:01:48 -0700512 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700513 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
514 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700515
516 ctx->flags = p->flags;
517 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700518 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700519 init_completion(&ctx->completions[0]);
520 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700521 mutex_init(&ctx->uring_lock);
522 init_waitqueue_head(&ctx->wait);
523 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700524 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600525 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600526 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600527 init_waitqueue_head(&ctx->inflight_wait);
528 spin_lock_init(&ctx->inflight_lock);
529 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700530 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700531err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700532 if (ctx->fallback_req)
533 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700534 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700535 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700536 kfree(ctx);
537 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700538}
539
Bob Liu9d858b22019-11-13 18:06:25 +0800540static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600541{
Jackie Liua197f662019-11-08 08:09:12 -0700542 struct io_ring_ctx *ctx = req->ctx;
543
Jens Axboe498ccd92019-10-25 10:04:25 -0600544 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
545 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600546}
547
Bob Liu9d858b22019-11-13 18:06:25 +0800548static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600549{
Bob Liu9d858b22019-11-13 18:06:25 +0800550 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
551 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600552
Bob Liu9d858b22019-11-13 18:06:25 +0800553 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600554}
555
556static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600557{
558 struct io_kiocb *req;
559
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600560 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800561 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600562 list_del_init(&req->list);
563 return req;
564 }
565
566 return NULL;
567}
568
Jens Axboe5262f562019-09-17 12:26:57 -0600569static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
570{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600571 struct io_kiocb *req;
572
573 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700574 if (req) {
575 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
576 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800577 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700578 list_del_init(&req->list);
579 return req;
580 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600581 }
582
583 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600584}
585
Jens Axboede0617e2019-04-06 21:51:27 -0600586static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700587{
Hristo Venev75b28af2019-08-26 17:23:46 +0000588 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700589
Hristo Venev75b28af2019-08-26 17:23:46 +0000590 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700591 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000592 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700593
Jens Axboe2b188cc2019-01-07 10:46:33 -0700594 if (wq_has_sleeper(&ctx->cq_wait)) {
595 wake_up_interruptible(&ctx->cq_wait);
596 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
597 }
598 }
599}
600
Jens Axboed625c6e2019-12-17 19:53:05 -0700601static inline bool io_req_needs_user(struct io_kiocb *req)
Jens Axboe18d9be12019-09-10 09:13:05 -0600602{
Jens Axboed625c6e2019-12-17 19:53:05 -0700603 return !(req->opcode == IORING_OP_READ_FIXED ||
604 req->opcode == IORING_OP_WRITE_FIXED);
Jens Axboe561fb042019-10-24 07:25:42 -0600605}
606
Jens Axboe94ae5e72019-11-14 19:39:52 -0700607static inline bool io_prep_async_work(struct io_kiocb *req,
608 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600609{
610 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600611
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300612 if (req->sqe) {
Jens Axboed625c6e2019-12-17 19:53:05 -0700613 switch (req->opcode) {
Jens Axboe6cc47d12019-09-18 11:18:23 -0600614 case IORING_OP_WRITEV:
615 case IORING_OP_WRITE_FIXED:
Jens Axboe53108d42019-12-09 20:12:38 -0700616 /* only regular files should be hashed for writes */
617 if (req->flags & REQ_F_ISREG)
618 do_hashed = true;
Jens Axboe5f8fd2d2019-11-07 10:57:36 -0700619 /* fall-through */
620 case IORING_OP_READV:
621 case IORING_OP_READ_FIXED:
622 case IORING_OP_SENDMSG:
623 case IORING_OP_RECVMSG:
624 case IORING_OP_ACCEPT:
625 case IORING_OP_POLL_ADD:
Jens Axboef8e85cf2019-11-23 14:24:24 -0700626 case IORING_OP_CONNECT:
Jens Axboe5f8fd2d2019-11-07 10:57:36 -0700627 /*
628 * We know REQ_F_ISREG is not set on some of these
629 * opcodes, but this enables us to keep the check in
630 * just one place.
631 */
632 if (!(req->flags & REQ_F_ISREG))
633 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe6cc47d12019-09-18 11:18:23 -0600634 break;
635 }
Jens Axboed625c6e2019-12-17 19:53:05 -0700636 if (io_req_needs_user(req))
Jens Axboe561fb042019-10-24 07:25:42 -0600637 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600638 }
639
Jens Axboe94ae5e72019-11-14 19:39:52 -0700640 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600641 return do_hashed;
642}
643
Jackie Liua197f662019-11-08 08:09:12 -0700644static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600645{
Jackie Liua197f662019-11-08 08:09:12 -0700646 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700647 struct io_kiocb *link;
648 bool do_hashed;
649
650 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600651
652 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
653 req->flags);
654 if (!do_hashed) {
655 io_wq_enqueue(ctx->io_wq, &req->work);
656 } else {
657 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
658 file_inode(req->file));
659 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700660
661 if (link)
662 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600663}
664
Jens Axboe5262f562019-09-17 12:26:57 -0600665static void io_kill_timeout(struct io_kiocb *req)
666{
667 int ret;
668
Jens Axboe2d283902019-12-04 11:08:05 -0700669 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600670 if (ret != -1) {
671 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600672 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700673 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800674 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600675 }
676}
677
678static void io_kill_timeouts(struct io_ring_ctx *ctx)
679{
680 struct io_kiocb *req, *tmp;
681
682 spin_lock_irq(&ctx->completion_lock);
683 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
684 io_kill_timeout(req);
685 spin_unlock_irq(&ctx->completion_lock);
686}
687
Jens Axboede0617e2019-04-06 21:51:27 -0600688static void io_commit_cqring(struct io_ring_ctx *ctx)
689{
690 struct io_kiocb *req;
691
Jens Axboe5262f562019-09-17 12:26:57 -0600692 while ((req = io_get_timeout_req(ctx)) != NULL)
693 io_kill_timeout(req);
694
Jens Axboede0617e2019-04-06 21:51:27 -0600695 __io_commit_cqring(ctx);
696
697 while ((req = io_get_deferred_req(ctx)) != NULL) {
698 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700699 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600700 }
701}
702
Jens Axboe2b188cc2019-01-07 10:46:33 -0700703static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
704{
Hristo Venev75b28af2019-08-26 17:23:46 +0000705 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700706 unsigned tail;
707
708 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200709 /*
710 * writes to the cq entry need to come after reading head; the
711 * control dependency is enough as we're using WRITE_ONCE to
712 * fill the cq entry
713 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000714 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700715 return NULL;
716
717 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000718 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700719}
720
Jens Axboe8c838782019-03-12 15:48:16 -0600721static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
722{
723 if (waitqueue_active(&ctx->wait))
724 wake_up(&ctx->wait);
725 if (waitqueue_active(&ctx->sqo_wait))
726 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600727 if (ctx->cq_ev_fd)
728 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600729}
730
Jens Axboec4a2ed72019-11-21 21:01:26 -0700731/* Returns true if there are no backlogged entries after the flush */
732static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700733{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700734 struct io_rings *rings = ctx->rings;
735 struct io_uring_cqe *cqe;
736 struct io_kiocb *req;
737 unsigned long flags;
738 LIST_HEAD(list);
739
740 if (!force) {
741 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700742 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700743 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
744 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700745 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700746 }
747
748 spin_lock_irqsave(&ctx->completion_lock, flags);
749
750 /* if force is set, the ring is going away. always drop after that */
751 if (force)
752 ctx->cq_overflow_flushed = true;
753
Jens Axboec4a2ed72019-11-21 21:01:26 -0700754 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700755 while (!list_empty(&ctx->cq_overflow_list)) {
756 cqe = io_get_cqring(ctx);
757 if (!cqe && !force)
758 break;
759
760 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
761 list);
762 list_move(&req->list, &list);
763 if (cqe) {
764 WRITE_ONCE(cqe->user_data, req->user_data);
765 WRITE_ONCE(cqe->res, req->result);
766 WRITE_ONCE(cqe->flags, 0);
767 } else {
768 WRITE_ONCE(ctx->rings->cq_overflow,
769 atomic_inc_return(&ctx->cached_cq_overflow));
770 }
771 }
772
773 io_commit_cqring(ctx);
774 spin_unlock_irqrestore(&ctx->completion_lock, flags);
775 io_cqring_ev_posted(ctx);
776
777 while (!list_empty(&list)) {
778 req = list_first_entry(&list, struct io_kiocb, list);
779 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800780 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700781 }
Jens Axboec4a2ed72019-11-21 21:01:26 -0700782
783 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700784}
785
Jens Axboe78e19bb2019-11-06 15:21:34 -0700786static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700787{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700788 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700789 struct io_uring_cqe *cqe;
790
Jens Axboe78e19bb2019-11-06 15:21:34 -0700791 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -0700792
Jens Axboe2b188cc2019-01-07 10:46:33 -0700793 /*
794 * If we can't get a cq entry, userspace overflowed the
795 * submission (by quite a lot). Increment the overflow count in
796 * the ring.
797 */
798 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700799 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700800 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700801 WRITE_ONCE(cqe->res, res);
802 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700803 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700804 WRITE_ONCE(ctx->rings->cq_overflow,
805 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700806 } else {
807 refcount_inc(&req->refs);
808 req->result = res;
809 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700810 }
811}
812
Jens Axboe78e19bb2019-11-06 15:21:34 -0700813static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700814{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700815 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700816 unsigned long flags;
817
818 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700819 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700820 io_commit_cqring(ctx);
821 spin_unlock_irqrestore(&ctx->completion_lock, flags);
822
Jens Axboe8c838782019-03-12 15:48:16 -0600823 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700824}
825
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700826static inline bool io_is_fallback_req(struct io_kiocb *req)
827{
828 return req == (struct io_kiocb *)
829 ((unsigned long) req->ctx->fallback_req & ~1UL);
830}
831
832static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
833{
834 struct io_kiocb *req;
835
836 req = ctx->fallback_req;
837 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
838 return req;
839
840 return NULL;
841}
842
Jens Axboe2579f912019-01-09 09:10:43 -0700843static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
844 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700845{
Jens Axboefd6fab22019-03-14 16:30:06 -0600846 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700847 struct io_kiocb *req;
848
849 if (!percpu_ref_tryget(&ctx->refs))
850 return NULL;
851
Jens Axboe2579f912019-01-09 09:10:43 -0700852 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -0600853 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -0700854 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700855 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -0700856 } else if (!state->free_reqs) {
857 size_t sz;
858 int ret;
859
860 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -0600861 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
862
863 /*
864 * Bulk alloc is all-or-nothing. If we fail to get a batch,
865 * retry single alloc to be on the safe side.
866 */
867 if (unlikely(ret <= 0)) {
868 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
869 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700870 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -0600871 ret = 1;
872 }
Jens Axboe2579f912019-01-09 09:10:43 -0700873 state->free_reqs = ret - 1;
874 state->cur_req = 1;
875 req = state->reqs[0];
876 } else {
877 req = state->reqs[state->cur_req];
878 state->free_reqs--;
879 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700880 }
881
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700882got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700883 req->io = NULL;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300884 req->ring_file = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -0600885 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -0700886 req->ctx = ctx;
887 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -0600888 /* one is dropped after submission, the other at completion */
889 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -0600890 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -0600891 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -0700892 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700893fallback:
894 req = io_get_fallback_req(ctx);
895 if (req)
896 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +0300897 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700898 return NULL;
899}
900
Jens Axboedef596e2019-01-09 08:59:42 -0700901static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
902{
903 if (*nr) {
904 kmem_cache_free_bulk(req_cachep, *nr, reqs);
Pavel Begunkov6805b322019-10-08 02:18:42 +0300905 percpu_ref_put_many(&ctx->refs, *nr);
Jens Axboedef596e2019-01-09 08:59:42 -0700906 *nr = 0;
907 }
908}
909
Jens Axboe9e645e112019-05-10 16:07:28 -0600910static void __io_free_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700911{
Jens Axboefcb323c2019-10-24 12:39:47 -0600912 struct io_ring_ctx *ctx = req->ctx;
913
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700914 if (req->io)
915 kfree(req->io);
Jens Axboe09bb8392019-03-13 12:39:28 -0600916 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
917 fput(req->file);
Jens Axboefcb323c2019-10-24 12:39:47 -0600918 if (req->flags & REQ_F_INFLIGHT) {
919 unsigned long flags;
920
921 spin_lock_irqsave(&ctx->inflight_lock, flags);
922 list_del(&req->inflight_entry);
923 if (waitqueue_active(&ctx->inflight_wait))
924 wake_up(&ctx->inflight_wait);
925 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
926 }
927 percpu_ref_put(&ctx->refs);
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700928 if (likely(!io_is_fallback_req(req)))
929 kmem_cache_free(req_cachep, req);
930 else
931 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -0600932}
933
Jackie Liua197f662019-11-08 08:09:12 -0700934static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -0600935{
Jackie Liua197f662019-11-08 08:09:12 -0700936 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700937 int ret;
938
Jens Axboe2d283902019-12-04 11:08:05 -0700939 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -0700940 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700941 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -0700942 io_commit_cqring(ctx);
943 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +0800944 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -0700945 return true;
946 }
947
948 return false;
949}
950
Jens Axboeba816ad2019-09-28 11:36:45 -0600951static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -0600952{
Jens Axboe2665abf2019-11-05 12:40:47 -0700953 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700954 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -0600955
Jens Axboe4d7dd462019-11-20 13:03:52 -0700956 /* Already got next link */
957 if (req->flags & REQ_F_LINK_NEXT)
958 return;
959
Jens Axboe9e645e112019-05-10 16:07:28 -0600960 /*
961 * The list should never be empty when we are called here. But could
962 * potentially happen if the chain is messed up, check to be on the
963 * safe side.
964 */
Pavel Begunkov44932332019-12-05 16:16:35 +0300965 while (!list_empty(&req->link_list)) {
966 struct io_kiocb *nxt = list_first_entry(&req->link_list,
967 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700968
Pavel Begunkov44932332019-12-05 16:16:35 +0300969 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
970 (nxt->flags & REQ_F_TIMEOUT))) {
971 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700972 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700973 req->flags &= ~REQ_F_LINK_TIMEOUT;
974 continue;
975 }
Jens Axboe9e645e112019-05-10 16:07:28 -0600976
Pavel Begunkov44932332019-12-05 16:16:35 +0300977 list_del_init(&req->link_list);
978 if (!list_empty(&nxt->link_list))
979 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +0300980 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700981 break;
Jens Axboe9e645e112019-05-10 16:07:28 -0600982 }
Jens Axboe2665abf2019-11-05 12:40:47 -0700983
Jens Axboe4d7dd462019-11-20 13:03:52 -0700984 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -0700985 if (wake_ev)
986 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -0600987}
988
989/*
990 * Called if REQ_F_LINK is set, and we fail the head request
991 */
992static void io_fail_links(struct io_kiocb *req)
993{
Jens Axboe2665abf2019-11-05 12:40:47 -0700994 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700995 unsigned long flags;
996
997 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -0600998
999 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001000 struct io_kiocb *link = list_first_entry(&req->link_list,
1001 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001002
Pavel Begunkov44932332019-12-05 16:16:35 +03001003 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001004 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001005
1006 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001007 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001008 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001009 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001010 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001011 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001012 }
Jens Axboe5d960722019-11-19 15:31:28 -07001013 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001014 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001015
1016 io_commit_cqring(ctx);
1017 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1018 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001019}
1020
Jens Axboe4d7dd462019-11-20 13:03:52 -07001021static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001022{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001023 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001024 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001025
Jens Axboe9e645e112019-05-10 16:07:28 -06001026 /*
1027 * If LINK is set, we have dependent requests in this chain. If we
1028 * didn't fail this request, queue the first one up, moving any other
1029 * dependencies to the next request. In case of failure, fail the rest
1030 * of the chain.
1031 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001032 if (req->flags & REQ_F_FAIL_LINK) {
1033 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001034 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1035 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001036 struct io_ring_ctx *ctx = req->ctx;
1037 unsigned long flags;
1038
1039 /*
1040 * If this is a timeout link, we could be racing with the
1041 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001042 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001043 */
1044 spin_lock_irqsave(&ctx->completion_lock, flags);
1045 io_req_link_next(req, nxt);
1046 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1047 } else {
1048 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001049 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001050}
Jens Axboe9e645e112019-05-10 16:07:28 -06001051
Jackie Liuc69f8db2019-11-09 11:00:08 +08001052static void io_free_req(struct io_kiocb *req)
1053{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001054 struct io_kiocb *nxt = NULL;
1055
1056 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001057 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001058
1059 if (nxt)
1060 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001061}
1062
Jens Axboeba816ad2019-09-28 11:36:45 -06001063/*
1064 * Drop reference to request, return next in chain (if there is one) if this
1065 * was the last reference to this request.
1066 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001067__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001068static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001069{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001070 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001071
Jens Axboee65ef562019-03-12 10:16:44 -06001072 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001073 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001074}
1075
Jens Axboe2b188cc2019-01-07 10:46:33 -07001076static void io_put_req(struct io_kiocb *req)
1077{
Jens Axboedef596e2019-01-09 08:59:42 -07001078 if (refcount_dec_and_test(&req->refs))
1079 io_free_req(req);
1080}
1081
Jens Axboe978db572019-11-14 22:39:04 -07001082/*
1083 * Must only be used if we don't need to care about links, usually from
1084 * within the completion handling itself.
1085 */
1086static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001087{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001088 /* drop both submit and complete references */
1089 if (refcount_sub_and_test(2, &req->refs))
1090 __io_free_req(req);
1091}
1092
Jens Axboe978db572019-11-14 22:39:04 -07001093static void io_double_put_req(struct io_kiocb *req)
1094{
1095 /* drop both submit and complete references */
1096 if (refcount_sub_and_test(2, &req->refs))
1097 io_free_req(req);
1098}
1099
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001100static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001101{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001102 struct io_rings *rings = ctx->rings;
1103
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001104 /*
1105 * noflush == true is from the waitqueue handler, just ensure we wake
1106 * up the task, and the next invocation will flush the entries. We
1107 * cannot safely to it from here.
1108 */
1109 if (noflush && !list_empty(&ctx->cq_overflow_list))
1110 return -1U;
1111
1112 io_cqring_overflow_flush(ctx, false);
1113
Jens Axboea3a0e432019-08-20 11:03:11 -06001114 /* See comment at the top of this file */
1115 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00001116 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001117}
1118
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001119static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1120{
1121 struct io_rings *rings = ctx->rings;
1122
1123 /* make sure SQ entry isn't read before tail */
1124 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1125}
1126
Jens Axboedef596e2019-01-09 08:59:42 -07001127/*
1128 * Find and free completed poll iocbs
1129 */
1130static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1131 struct list_head *done)
1132{
1133 void *reqs[IO_IOPOLL_BATCH];
1134 struct io_kiocb *req;
Jens Axboe09bb8392019-03-13 12:39:28 -06001135 int to_free;
Jens Axboedef596e2019-01-09 08:59:42 -07001136
Jens Axboe09bb8392019-03-13 12:39:28 -06001137 to_free = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001138 while (!list_empty(done)) {
1139 req = list_first_entry(done, struct io_kiocb, list);
1140 list_del(&req->list);
1141
Jens Axboe78e19bb2019-11-06 15:21:34 -07001142 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001143 (*nr_events)++;
1144
Jens Axboe09bb8392019-03-13 12:39:28 -06001145 if (refcount_dec_and_test(&req->refs)) {
1146 /* If we're not using fixed files, we have to pair the
1147 * completion part with the file put. Use regular
1148 * completions for those, only batch free for fixed
Jens Axboe9e645e112019-05-10 16:07:28 -06001149 * file and non-linked commands.
Jens Axboe09bb8392019-03-13 12:39:28 -06001150 */
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001151 if (((req->flags & (REQ_F_FIXED_FILE|REQ_F_LINK)) ==
1152 REQ_F_FIXED_FILE) && !io_is_fallback_req(req) &&
1153 !req->io) {
Jens Axboe09bb8392019-03-13 12:39:28 -06001154 reqs[to_free++] = req;
1155 if (to_free == ARRAY_SIZE(reqs))
1156 io_free_req_many(ctx, reqs, &to_free);
Jens Axboe6b063142019-01-10 22:13:58 -07001157 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001158 io_free_req(req);
Jens Axboe6b063142019-01-10 22:13:58 -07001159 }
Jens Axboe9a56a232019-01-09 09:06:50 -07001160 }
Jens Axboedef596e2019-01-09 08:59:42 -07001161 }
Jens Axboedef596e2019-01-09 08:59:42 -07001162
Jens Axboe09bb8392019-03-13 12:39:28 -06001163 io_commit_cqring(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07001164 io_free_req_many(ctx, reqs, &to_free);
1165}
1166
1167static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1168 long min)
1169{
1170 struct io_kiocb *req, *tmp;
1171 LIST_HEAD(done);
1172 bool spin;
1173 int ret;
1174
1175 /*
1176 * Only spin for completions if we don't have multiple devices hanging
1177 * off our complete list, and we're under the requested amount.
1178 */
1179 spin = !ctx->poll_multi_file && *nr_events < min;
1180
1181 ret = 0;
1182 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
1183 struct kiocb *kiocb = &req->rw;
1184
1185 /*
1186 * Move completed entries to our local list. If we find a
1187 * request that requires polling, break out and complete
1188 * the done list first, if we have entries there.
1189 */
1190 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1191 list_move_tail(&req->list, &done);
1192 continue;
1193 }
1194 if (!list_empty(&done))
1195 break;
1196
1197 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1198 if (ret < 0)
1199 break;
1200
1201 if (ret && spin)
1202 spin = false;
1203 ret = 0;
1204 }
1205
1206 if (!list_empty(&done))
1207 io_iopoll_complete(ctx, nr_events, &done);
1208
1209 return ret;
1210}
1211
1212/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001213 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001214 * non-spinning poll check - we'll still enter the driver poll loop, but only
1215 * as a non-spinning completion check.
1216 */
1217static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1218 long min)
1219{
Jens Axboe08f54392019-08-21 22:19:11 -06001220 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001221 int ret;
1222
1223 ret = io_do_iopoll(ctx, nr_events, min);
1224 if (ret < 0)
1225 return ret;
1226 if (!min || *nr_events >= min)
1227 return 0;
1228 }
1229
1230 return 1;
1231}
1232
1233/*
1234 * We can't just wait for polled events to come to us, we have to actively
1235 * find and complete them.
1236 */
1237static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1238{
1239 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1240 return;
1241
1242 mutex_lock(&ctx->uring_lock);
1243 while (!list_empty(&ctx->poll_list)) {
1244 unsigned int nr_events = 0;
1245
1246 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001247
1248 /*
1249 * Ensure we allow local-to-the-cpu processing to take place,
1250 * in this case we need to ensure that we reap all events.
1251 */
1252 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001253 }
1254 mutex_unlock(&ctx->uring_lock);
1255}
1256
Jens Axboe2b2ed972019-10-25 10:06:15 -06001257static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1258 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001259{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001260 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001261
1262 do {
1263 int tmin = 0;
1264
Jens Axboe500f9fb2019-08-19 12:15:59 -06001265 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001266 * Don't enter poll loop if we already have events pending.
1267 * If we do, we can potentially be spinning for commands that
1268 * already triggered a CQE (eg in error).
1269 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001270 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001271 break;
1272
1273 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001274 * If a submit got punted to a workqueue, we can have the
1275 * application entering polling for a command before it gets
1276 * issued. That app will hold the uring_lock for the duration
1277 * of the poll right here, so we need to take a breather every
1278 * now and then to ensure that the issue has a chance to add
1279 * the poll to the issued list. Otherwise we can spin here
1280 * forever, while the workqueue is stuck trying to acquire the
1281 * very same mutex.
1282 */
1283 if (!(++iters & 7)) {
1284 mutex_unlock(&ctx->uring_lock);
1285 mutex_lock(&ctx->uring_lock);
1286 }
1287
Jens Axboedef596e2019-01-09 08:59:42 -07001288 if (*nr_events < min)
1289 tmin = min - *nr_events;
1290
1291 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1292 if (ret <= 0)
1293 break;
1294 ret = 0;
1295 } while (min && !*nr_events && !need_resched());
1296
Jens Axboe2b2ed972019-10-25 10:06:15 -06001297 return ret;
1298}
1299
1300static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1301 long min)
1302{
1303 int ret;
1304
1305 /*
1306 * We disallow the app entering submit/complete with polling, but we
1307 * still need to lock the ring to prevent racing with polled issue
1308 * that got punted to a workqueue.
1309 */
1310 mutex_lock(&ctx->uring_lock);
1311 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001312 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001313 return ret;
1314}
1315
Jens Axboe491381ce2019-10-17 09:20:46 -06001316static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001317{
Jens Axboe491381ce2019-10-17 09:20:46 -06001318 /*
1319 * Tell lockdep we inherited freeze protection from submission
1320 * thread.
1321 */
1322 if (req->flags & REQ_F_ISREG) {
1323 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001324
Jens Axboe491381ce2019-10-17 09:20:46 -06001325 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001326 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001327 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001328}
1329
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001330static inline void req_set_fail_links(struct io_kiocb *req)
1331{
1332 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1333 req->flags |= REQ_F_FAIL_LINK;
1334}
1335
Jens Axboeba816ad2019-09-28 11:36:45 -06001336static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001337{
1338 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1339
Jens Axboe491381ce2019-10-17 09:20:46 -06001340 if (kiocb->ki_flags & IOCB_WRITE)
1341 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001342
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001343 if (res != req->result)
1344 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001345 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001346}
1347
1348static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1349{
1350 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1351
1352 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001353 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001354}
1355
Jens Axboeba816ad2019-09-28 11:36:45 -06001356static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1357{
1358 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001359 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001360
1361 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001362 io_put_req_find_next(req, &nxt);
1363
1364 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001365}
1366
Jens Axboedef596e2019-01-09 08:59:42 -07001367static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1368{
1369 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1370
Jens Axboe491381ce2019-10-17 09:20:46 -06001371 if (kiocb->ki_flags & IOCB_WRITE)
1372 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001373
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001374 if (res != req->result)
1375 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001376 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001377 if (res != -EAGAIN)
1378 req->flags |= REQ_F_IOPOLL_COMPLETED;
1379}
1380
1381/*
1382 * After the iocb has been issued, it's safe to be found on the poll list.
1383 * Adding the kiocb to the list AFTER submission ensures that we don't
1384 * find it from a io_iopoll_getevents() thread before the issuer is done
1385 * accessing the kiocb cookie.
1386 */
1387static void io_iopoll_req_issued(struct io_kiocb *req)
1388{
1389 struct io_ring_ctx *ctx = req->ctx;
1390
1391 /*
1392 * Track whether we have multiple files in our lists. This will impact
1393 * how we do polling eventually, not spinning if we're on potentially
1394 * different devices.
1395 */
1396 if (list_empty(&ctx->poll_list)) {
1397 ctx->poll_multi_file = false;
1398 } else if (!ctx->poll_multi_file) {
1399 struct io_kiocb *list_req;
1400
1401 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1402 list);
1403 if (list_req->rw.ki_filp != req->rw.ki_filp)
1404 ctx->poll_multi_file = true;
1405 }
1406
1407 /*
1408 * For fast devices, IO may have already completed. If it has, add
1409 * it to the front so we find it first.
1410 */
1411 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1412 list_add(&req->list, &ctx->poll_list);
1413 else
1414 list_add_tail(&req->list, &ctx->poll_list);
1415}
1416
Jens Axboe3d6770f2019-04-13 11:50:54 -06001417static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001418{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001419 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001420 int diff = state->has_refs - state->used_refs;
1421
1422 if (diff)
1423 fput_many(state->file, diff);
1424 state->file = NULL;
1425 }
1426}
1427
1428/*
1429 * Get as many references to a file as we have IOs left in this submission,
1430 * assuming most submissions are for one file, or at least that each file
1431 * has more than one submission.
1432 */
1433static struct file *io_file_get(struct io_submit_state *state, int fd)
1434{
1435 if (!state)
1436 return fget(fd);
1437
1438 if (state->file) {
1439 if (state->fd == fd) {
1440 state->used_refs++;
1441 state->ios_left--;
1442 return state->file;
1443 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001444 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001445 }
1446 state->file = fget_many(fd, state->ios_left);
1447 if (!state->file)
1448 return NULL;
1449
1450 state->fd = fd;
1451 state->has_refs = state->ios_left;
1452 state->used_refs = 1;
1453 state->ios_left--;
1454 return state->file;
1455}
1456
Jens Axboe2b188cc2019-01-07 10:46:33 -07001457/*
1458 * If we tracked the file through the SCM inflight mechanism, we could support
1459 * any file. For now, just ensure that anything potentially problematic is done
1460 * inline.
1461 */
1462static bool io_file_supports_async(struct file *file)
1463{
1464 umode_t mode = file_inode(file)->i_mode;
1465
Jens Axboe10d59342019-12-09 20:16:22 -07001466 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001467 return true;
1468 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1469 return true;
1470
1471 return false;
1472}
1473
Pavel Begunkov267bc902019-11-07 01:41:08 +03001474static int io_prep_rw(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001475{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001476 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboedef596e2019-01-09 08:59:42 -07001477 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001478 struct kiocb *kiocb = &req->rw;
Jens Axboe09bb8392019-03-13 12:39:28 -06001479 unsigned ioprio;
1480 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001481
Jens Axboe09bb8392019-03-13 12:39:28 -06001482 if (!req->file)
1483 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001484
Jens Axboe491381ce2019-10-17 09:20:46 -06001485 if (S_ISREG(file_inode(req->file)->i_mode))
1486 req->flags |= REQ_F_ISREG;
1487
Jens Axboe2b188cc2019-01-07 10:46:33 -07001488 kiocb->ki_pos = READ_ONCE(sqe->off);
1489 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1490 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1491
1492 ioprio = READ_ONCE(sqe->ioprio);
1493 if (ioprio) {
1494 ret = ioprio_check_cap(ioprio);
1495 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001496 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001497
1498 kiocb->ki_ioprio = ioprio;
1499 } else
1500 kiocb->ki_ioprio = get_current_ioprio();
1501
1502 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1503 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001504 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001505
1506 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001507 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1508 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001509 req->flags |= REQ_F_NOWAIT;
1510
1511 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001512 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001513
Jens Axboedef596e2019-01-09 08:59:42 -07001514 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001515 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1516 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001517 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001518
Jens Axboedef596e2019-01-09 08:59:42 -07001519 kiocb->ki_flags |= IOCB_HIPRI;
1520 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001521 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001522 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001523 if (kiocb->ki_flags & IOCB_HIPRI)
1524 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001525 kiocb->ki_complete = io_complete_rw;
1526 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001527 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001528}
1529
1530static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1531{
1532 switch (ret) {
1533 case -EIOCBQUEUED:
1534 break;
1535 case -ERESTARTSYS:
1536 case -ERESTARTNOINTR:
1537 case -ERESTARTNOHAND:
1538 case -ERESTART_RESTARTBLOCK:
1539 /*
1540 * We can't just restart the syscall, since previously
1541 * submitted sqes may already be in progress. Just fail this
1542 * IO with EINTR.
1543 */
1544 ret = -EINTR;
1545 /* fall through */
1546 default:
1547 kiocb->ki_complete(kiocb, ret, 0);
1548 }
1549}
1550
Jens Axboeba816ad2019-09-28 11:36:45 -06001551static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1552 bool in_async)
1553{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001554 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001555 *nxt = __io_complete_rw(kiocb, ret);
1556 else
1557 io_rw_done(kiocb, ret);
1558}
1559
Pavel Begunkov7d009162019-11-25 23:14:40 +03001560static ssize_t io_import_fixed(struct io_ring_ctx *ctx, int rw,
1561 const struct io_uring_sqe *sqe,
1562 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001563{
1564 size_t len = READ_ONCE(sqe->len);
1565 struct io_mapped_ubuf *imu;
1566 unsigned index, buf_index;
1567 size_t offset;
1568 u64 buf_addr;
1569
1570 /* attempt to use fixed buffers without having provided iovecs */
1571 if (unlikely(!ctx->user_bufs))
1572 return -EFAULT;
1573
1574 buf_index = READ_ONCE(sqe->buf_index);
1575 if (unlikely(buf_index >= ctx->nr_user_bufs))
1576 return -EFAULT;
1577
1578 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1579 imu = &ctx->user_bufs[index];
1580 buf_addr = READ_ONCE(sqe->addr);
1581
1582 /* overflow */
1583 if (buf_addr + len < buf_addr)
1584 return -EFAULT;
1585 /* not inside the mapped region */
1586 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1587 return -EFAULT;
1588
1589 /*
1590 * May not be a start of buffer, set size appropriately
1591 * and advance us to the beginning.
1592 */
1593 offset = buf_addr - imu->ubuf;
1594 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001595
1596 if (offset) {
1597 /*
1598 * Don't use iov_iter_advance() here, as it's really slow for
1599 * using the latter parts of a big fixed buffer - it iterates
1600 * over each segment manually. We can cheat a bit here, because
1601 * we know that:
1602 *
1603 * 1) it's a BVEC iter, we set it up
1604 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1605 * first and last bvec
1606 *
1607 * So just find our index, and adjust the iterator afterwards.
1608 * If the offset is within the first bvec (or the whole first
1609 * bvec, just use iov_iter_advance(). This makes it easier
1610 * since we can just skip the first segment, which may not
1611 * be PAGE_SIZE aligned.
1612 */
1613 const struct bio_vec *bvec = imu->bvec;
1614
1615 if (offset <= bvec->bv_len) {
1616 iov_iter_advance(iter, offset);
1617 } else {
1618 unsigned long seg_skip;
1619
1620 /* skip first vec */
1621 offset -= bvec->bv_len;
1622 seg_skip = 1 + (offset >> PAGE_SHIFT);
1623
1624 iter->bvec = bvec + seg_skip;
1625 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001626 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001627 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001628 }
1629 }
1630
Jens Axboe5e559562019-11-13 16:12:46 -07001631 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001632}
1633
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001634static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1635 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001636{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001637 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001638 void __user *buf = u64_to_user_ptr(READ_ONCE(sqe->addr));
1639 size_t sqe_len = READ_ONCE(sqe->len);
Jens Axboeedafcce2019-01-09 09:16:05 -07001640 u8 opcode;
1641
1642 /*
1643 * We're reading ->opcode for the second time, but the first read
1644 * doesn't care whether it's _FIXED or not, so it doesn't matter
1645 * whether ->opcode changes concurrently. The first read does care
1646 * about whether it is a READ or a WRITE, so we don't trust this read
1647 * for that purpose and instead let the caller pass in the read/write
1648 * flag.
1649 */
Jens Axboed625c6e2019-12-17 19:53:05 -07001650 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001651 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001652 *iovec = NULL;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001653 return io_import_fixed(req->ctx, rw, sqe, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001654 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001655
Jens Axboef67676d2019-12-02 11:03:47 -07001656 if (req->io) {
1657 struct io_async_rw *iorw = &req->io->rw;
1658
1659 *iovec = iorw->iov;
1660 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1661 if (iorw->iov == iorw->fast_iov)
1662 *iovec = NULL;
1663 return iorw->size;
1664 }
1665
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001666 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001667 return -EFAULT;
1668
1669#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001670 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001671 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1672 iovec, iter);
1673#endif
1674
1675 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1676}
1677
Jens Axboe32960612019-09-23 11:05:34 -06001678/*
1679 * For files that don't have ->read_iter() and ->write_iter(), handle them
1680 * by looping over ->read() or ->write() manually.
1681 */
1682static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1683 struct iov_iter *iter)
1684{
1685 ssize_t ret = 0;
1686
1687 /*
1688 * Don't support polled IO through this interface, and we can't
1689 * support non-blocking either. For the latter, this just causes
1690 * the kiocb to be handled from an async context.
1691 */
1692 if (kiocb->ki_flags & IOCB_HIPRI)
1693 return -EOPNOTSUPP;
1694 if (kiocb->ki_flags & IOCB_NOWAIT)
1695 return -EAGAIN;
1696
1697 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001698 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06001699 ssize_t nr;
1700
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001701 if (!iov_iter_is_bvec(iter)) {
1702 iovec = iov_iter_iovec(iter);
1703 } else {
1704 /* fixed buffers import bvec */
1705 iovec.iov_base = kmap(iter->bvec->bv_page)
1706 + iter->iov_offset;
1707 iovec.iov_len = min(iter->count,
1708 iter->bvec->bv_len - iter->iov_offset);
1709 }
1710
Jens Axboe32960612019-09-23 11:05:34 -06001711 if (rw == READ) {
1712 nr = file->f_op->read(file, iovec.iov_base,
1713 iovec.iov_len, &kiocb->ki_pos);
1714 } else {
1715 nr = file->f_op->write(file, iovec.iov_base,
1716 iovec.iov_len, &kiocb->ki_pos);
1717 }
1718
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001719 if (iov_iter_is_bvec(iter))
1720 kunmap(iter->bvec->bv_page);
1721
Jens Axboe32960612019-09-23 11:05:34 -06001722 if (nr < 0) {
1723 if (!ret)
1724 ret = nr;
1725 break;
1726 }
1727 ret += nr;
1728 if (nr != iovec.iov_len)
1729 break;
1730 iov_iter_advance(iter, nr);
1731 }
1732
1733 return ret;
1734}
1735
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001736static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07001737 struct iovec *iovec, struct iovec *fast_iov,
1738 struct iov_iter *iter)
1739{
1740 req->io->rw.nr_segs = iter->nr_segs;
1741 req->io->rw.size = io_size;
1742 req->io->rw.iov = iovec;
1743 if (!req->io->rw.iov) {
1744 req->io->rw.iov = req->io->rw.fast_iov;
1745 memcpy(req->io->rw.iov, fast_iov,
1746 sizeof(struct iovec) * iter->nr_segs);
1747 }
1748}
1749
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001750static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07001751{
1752 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
1753 if (req->io) {
Jens Axboef67676d2019-12-02 11:03:47 -07001754 memcpy(&req->io->sqe, req->sqe, sizeof(req->io->sqe));
1755 req->sqe = &req->io->sqe;
1756 return 0;
1757 }
1758
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001759 return 1;
1760}
1761
1762static void io_rw_async(struct io_wq_work **workptr)
1763{
1764 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1765 struct iovec *iov = NULL;
1766
1767 if (req->io->rw.iov != req->io->rw.fast_iov)
1768 iov = req->io->rw.iov;
1769 io_wq_submit_work(workptr);
1770 kfree(iov);
1771}
1772
1773static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
1774 struct iovec *iovec, struct iovec *fast_iov,
1775 struct iov_iter *iter)
1776{
1777 if (!req->io && io_alloc_async_ctx(req))
1778 return -ENOMEM;
1779
1780 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
1781 req->work.func = io_rw_async;
1782 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07001783}
1784
1785static int io_read_prep(struct io_kiocb *req, struct iovec **iovec,
1786 struct iov_iter *iter, bool force_nonblock)
1787{
1788 ssize_t ret;
1789
1790 ret = io_prep_rw(req, force_nonblock);
1791 if (ret)
1792 return ret;
1793
1794 if (unlikely(!(req->file->f_mode & FMODE_READ)))
1795 return -EBADF;
1796
1797 return io_import_iovec(READ, req, iovec, iter);
1798}
1799
Pavel Begunkov267bc902019-11-07 01:41:08 +03001800static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001801 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001802{
1803 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1804 struct kiocb *kiocb = &req->rw;
1805 struct iov_iter iter;
1806 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001807 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001808 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001809
Jens Axboef67676d2019-12-02 11:03:47 -07001810 if (!req->io) {
1811 ret = io_read_prep(req, &iovec, &iter, force_nonblock);
1812 if (ret < 0)
1813 return ret;
1814 } else {
1815 ret = io_import_iovec(READ, req, &iovec, &iter);
1816 if (ret < 0)
1817 return ret;
1818 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001819
Jens Axboefd6c2e42019-12-18 12:19:41 -07001820 /* Ensure we clear previously set non-block flag */
1821 if (!force_nonblock)
1822 req->rw.ki_flags &= ~IOCB_NOWAIT;
1823
Jens Axboef67676d2019-12-02 11:03:47 -07001824 file = req->file;
1825 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001826 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001827 req->result = io_size;
1828
1829 /*
1830 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1831 * we know to async punt it even if it was opened O_NONBLOCK
1832 */
1833 if (force_nonblock && !io_file_supports_async(file)) {
1834 req->flags |= REQ_F_MUST_PUNT;
1835 goto copy_iov;
1836 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001837
Jens Axboe31b51512019-01-18 22:56:34 -07001838 iov_count = iov_iter_count(&iter);
1839 ret = rw_verify_area(READ, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001840 if (!ret) {
1841 ssize_t ret2;
1842
Jens Axboe32960612019-09-23 11:05:34 -06001843 if (file->f_op->read_iter)
1844 ret2 = call_read_iter(file, kiocb, &iter);
1845 else
1846 ret2 = loop_rw_iter(READ, file, kiocb, &iter);
1847
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001848 /*
1849 * In case of a short read, punt to async. This can happen
1850 * if we have data partially cached. Alternatively we can
1851 * return the short read, in which case the application will
1852 * need to issue another SQE and wait for it. That SQE will
1853 * need async punt anyway, so it's more efficient to do it
1854 * here.
1855 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001856 if (force_nonblock && !(req->flags & REQ_F_NOWAIT) &&
1857 (req->flags & REQ_F_ISREG) &&
Jens Axboef67676d2019-12-02 11:03:47 -07001858 ret2 > 0 && ret2 < io_size)
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001859 ret2 = -EAGAIN;
1860 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07001861 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001862 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001863 } else {
1864copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001865 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07001866 inline_vecs, &iter);
1867 if (ret)
1868 goto out_free;
1869 return -EAGAIN;
1870 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001871 }
Jens Axboef67676d2019-12-02 11:03:47 -07001872out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001873 if (!io_wq_current_is_worker())
1874 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001875 return ret;
1876}
1877
Jens Axboef67676d2019-12-02 11:03:47 -07001878static int io_write_prep(struct io_kiocb *req, struct iovec **iovec,
1879 struct iov_iter *iter, bool force_nonblock)
1880{
1881 ssize_t ret;
1882
1883 ret = io_prep_rw(req, force_nonblock);
1884 if (ret)
1885 return ret;
1886
1887 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
1888 return -EBADF;
1889
1890 return io_import_iovec(WRITE, req, iovec, iter);
1891}
1892
Pavel Begunkov267bc902019-11-07 01:41:08 +03001893static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001894 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001895{
1896 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1897 struct kiocb *kiocb = &req->rw;
1898 struct iov_iter iter;
1899 struct file *file;
Jens Axboe31b51512019-01-18 22:56:34 -07001900 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001901 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001902
Jens Axboef67676d2019-12-02 11:03:47 -07001903 if (!req->io) {
1904 ret = io_write_prep(req, &iovec, &iter, force_nonblock);
1905 if (ret < 0)
1906 return ret;
1907 } else {
1908 ret = io_import_iovec(WRITE, req, &iovec, &iter);
1909 if (ret < 0)
1910 return ret;
1911 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001912
Jens Axboefd6c2e42019-12-18 12:19:41 -07001913 /* Ensure we clear previously set non-block flag */
1914 if (!force_nonblock)
1915 req->rw.ki_flags &= ~IOCB_NOWAIT;
1916
Jens Axboe2b188cc2019-01-07 10:46:33 -07001917 file = kiocb->ki_filp;
Jens Axboef67676d2019-12-02 11:03:47 -07001918 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001919 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001920 req->result = io_size;
1921
1922 /*
1923 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1924 * we know to async punt it even if it was opened O_NONBLOCK
1925 */
1926 if (force_nonblock && !io_file_supports_async(req->file)) {
1927 req->flags |= REQ_F_MUST_PUNT;
1928 goto copy_iov;
1929 }
1930
Jens Axboe10d59342019-12-09 20:16:22 -07001931 /* file path doesn't support NOWAIT for non-direct_IO */
1932 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
1933 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07001934 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06001935
Jens Axboe31b51512019-01-18 22:56:34 -07001936 iov_count = iov_iter_count(&iter);
Jens Axboe31b51512019-01-18 22:56:34 -07001937 ret = rw_verify_area(WRITE, file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001938 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01001939 ssize_t ret2;
1940
Jens Axboe2b188cc2019-01-07 10:46:33 -07001941 /*
1942 * Open-code file_start_write here to grab freeze protection,
1943 * which will be released by another thread in
1944 * io_complete_rw(). Fool lockdep by telling it the lock got
1945 * released so that it doesn't complain about the held lock when
1946 * we return to userspace.
1947 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001948 if (req->flags & REQ_F_ISREG) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001949 __sb_start_write(file_inode(file)->i_sb,
1950 SB_FREEZE_WRITE, true);
1951 __sb_writers_release(file_inode(file)->i_sb,
1952 SB_FREEZE_WRITE);
1953 }
1954 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01001955
Jens Axboe32960612019-09-23 11:05:34 -06001956 if (file->f_op->write_iter)
1957 ret2 = call_write_iter(file, kiocb, &iter);
1958 else
1959 ret2 = loop_rw_iter(WRITE, file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07001960 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001961 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001962 } else {
1963copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001964 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07001965 inline_vecs, &iter);
1966 if (ret)
1967 goto out_free;
1968 return -EAGAIN;
1969 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001970 }
Jens Axboe31b51512019-01-18 22:56:34 -07001971out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001972 if (!io_wq_current_is_worker())
1973 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001974 return ret;
1975}
1976
1977/*
1978 * IORING_OP_NOP just posts a completion event, nothing else.
1979 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07001980static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001981{
1982 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001983
Jens Axboedef596e2019-01-09 08:59:42 -07001984 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1985 return -EINVAL;
1986
Jens Axboe78e19bb2019-11-06 15:21:34 -07001987 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06001988 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001989 return 0;
1990}
1991
Jens Axboefc4df992019-12-10 14:38:45 -07001992static int io_prep_fsync(struct io_kiocb *req)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001993{
Jens Axboefc4df992019-12-10 14:38:45 -07001994 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe6b063142019-01-10 22:13:58 -07001995 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07001996
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07001997 if (req->flags & REQ_F_PREPPED)
1998 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06001999 if (!req->file)
2000 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002001
Jens Axboe6b063142019-01-10 22:13:58 -07002002 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002003 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002004 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002005 return -EINVAL;
2006
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002007 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2008 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2009 return -EINVAL;
2010
2011 req->sync.off = READ_ONCE(sqe->off);
2012 req->sync.len = READ_ONCE(sqe->len);
2013 req->flags |= REQ_F_PREPPED;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002014 return 0;
2015}
2016
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002017static bool io_req_cancelled(struct io_kiocb *req)
2018{
2019 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2020 req_set_fail_links(req);
2021 io_cqring_add_event(req, -ECANCELED);
2022 io_put_req(req);
2023 return true;
2024 }
2025
2026 return false;
2027}
2028
2029static void io_fsync_finish(struct io_wq_work **workptr)
2030{
2031 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2032 loff_t end = req->sync.off + req->sync.len;
2033 struct io_kiocb *nxt = NULL;
2034 int ret;
2035
2036 if (io_req_cancelled(req))
2037 return;
2038
2039 ret = vfs_fsync_range(req->rw.ki_filp, req->sync.off,
2040 end > 0 ? end : LLONG_MAX,
2041 req->sync.flags & IORING_FSYNC_DATASYNC);
2042 if (ret < 0)
2043 req_set_fail_links(req);
2044 io_cqring_add_event(req, ret);
2045 io_put_req_find_next(req, &nxt);
2046 if (nxt)
2047 *workptr = &nxt->work;
2048}
2049
Jens Axboefc4df992019-12-10 14:38:45 -07002050static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2051 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002052{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002053 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002054 int ret;
2055
Jens Axboefc4df992019-12-10 14:38:45 -07002056 ret = io_prep_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002057 if (ret)
2058 return ret;
2059
2060 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002061 if (force_nonblock) {
2062 io_put_req(req);
2063 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002064 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002065 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002066
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002067 work = old_work = &req->work;
2068 io_fsync_finish(&work);
2069 if (work && work != old_work)
2070 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002071 return 0;
2072}
2073
Jens Axboefc4df992019-12-10 14:38:45 -07002074static int io_prep_sfr(struct io_kiocb *req)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002075{
Jens Axboefc4df992019-12-10 14:38:45 -07002076 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002077 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002078
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002079 if (req->flags & REQ_F_PREPPED)
2080 return 0;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002081 if (!req->file)
2082 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002083
2084 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2085 return -EINVAL;
2086 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2087 return -EINVAL;
2088
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002089 req->sync.off = READ_ONCE(sqe->off);
2090 req->sync.len = READ_ONCE(sqe->len);
2091 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
2092 req->flags |= REQ_F_PREPPED;
2093 return 0;
2094}
2095
2096static void io_sync_file_range_finish(struct io_wq_work **workptr)
2097{
2098 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2099 struct io_kiocb *nxt = NULL;
2100 int ret;
2101
2102 if (io_req_cancelled(req))
2103 return;
2104
2105 ret = sync_file_range(req->rw.ki_filp, req->sync.off, req->sync.len,
2106 req->sync.flags);
2107 if (ret < 0)
2108 req_set_fail_links(req);
2109 io_cqring_add_event(req, ret);
2110 io_put_req_find_next(req, &nxt);
2111 if (nxt)
2112 *workptr = &nxt->work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002113}
2114
Jens Axboefc4df992019-12-10 14:38:45 -07002115static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002116 bool force_nonblock)
2117{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002118 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002119 int ret;
2120
Jens Axboefc4df992019-12-10 14:38:45 -07002121 ret = io_prep_sfr(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002122 if (ret)
2123 return ret;
2124
2125 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002126 if (force_nonblock) {
2127 io_put_req(req);
2128 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002129 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002130 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002131
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002132 work = old_work = &req->work;
2133 io_sync_file_range_finish(&work);
2134 if (work && work != old_work)
2135 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002136 return 0;
2137}
2138
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002139#if defined(CONFIG_NET)
2140static void io_sendrecv_async(struct io_wq_work **workptr)
2141{
2142 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2143 struct iovec *iov = NULL;
2144
2145 if (req->io->rw.iov != req->io->rw.fast_iov)
2146 iov = req->io->msg.iov;
2147 io_wq_submit_work(workptr);
2148 kfree(iov);
2149}
2150#endif
2151
Jens Axboe03b12302019-12-02 18:50:25 -07002152static int io_sendmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002153{
Jens Axboe03b12302019-12-02 18:50:25 -07002154#if defined(CONFIG_NET)
2155 const struct io_uring_sqe *sqe = req->sqe;
2156 struct user_msghdr __user *msg;
2157 unsigned flags;
2158
2159 flags = READ_ONCE(sqe->msg_flags);
Jens Axboed55e5f52019-12-11 16:12:15 -07002160 msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboed9688562019-12-09 19:35:20 -07002161 io->msg.iov = io->msg.fast_iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002162 return sendmsg_copy_msghdr(&io->msg.msg, msg, flags, &io->msg.iov);
2163#else
2164 return 0;
2165#endif
2166}
2167
Jens Axboefc4df992019-12-10 14:38:45 -07002168static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2169 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002170{
2171#if defined(CONFIG_NET)
Jens Axboefc4df992019-12-10 14:38:45 -07002172 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe0b416c32019-12-15 10:57:46 -07002173 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07002174 struct socket *sock;
2175 int ret;
2176
2177 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2178 return -EINVAL;
2179
2180 sock = sock_from_file(req->file, &ret);
2181 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002182 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002183 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002184 unsigned flags;
2185
2186 flags = READ_ONCE(sqe->msg_flags);
2187 if (flags & MSG_DONTWAIT)
2188 req->flags |= REQ_F_NOWAIT;
2189 else if (force_nonblock)
2190 flags |= MSG_DONTWAIT;
2191
2192 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002193 kmsg = &req->io->msg;
2194 kmsg->msg.msg_name = &addr;
2195 /* if iov is set, it's allocated already */
2196 if (!kmsg->iov)
2197 kmsg->iov = kmsg->fast_iov;
2198 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002199 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07002200 kmsg = &io.msg;
2201 kmsg->msg.msg_name = &addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002202 ret = io_sendmsg_prep(req, &io);
2203 if (ret)
2204 goto out;
2205 }
2206
Jens Axboe0b416c32019-12-15 10:57:46 -07002207 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002208 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002209 if (req->io)
2210 return -EAGAIN;
2211 if (io_alloc_async_ctx(req))
2212 return -ENOMEM;
2213 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2214 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002215 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002216 }
2217 if (ret == -ERESTARTSYS)
2218 ret = -EINTR;
2219 }
2220
2221out:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002222 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002223 kfree(kmsg->iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002224 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002225 if (ret < 0)
2226 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07002227 io_put_req_find_next(req, nxt);
2228 return 0;
2229#else
2230 return -EOPNOTSUPP;
2231#endif
2232}
2233
2234static int io_recvmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
2235{
2236#if defined(CONFIG_NET)
2237 const struct io_uring_sqe *sqe = req->sqe;
2238 struct user_msghdr __user *msg;
2239 unsigned flags;
2240
2241 flags = READ_ONCE(sqe->msg_flags);
Jens Axboed55e5f52019-12-11 16:12:15 -07002242 msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboed9688562019-12-09 19:35:20 -07002243 io->msg.iov = io->msg.fast_iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002244 return recvmsg_copy_msghdr(&io->msg.msg, msg, flags, &io->msg.uaddr,
2245 &io->msg.iov);
2246#else
2247 return 0;
2248#endif
2249}
2250
Jens Axboefc4df992019-12-10 14:38:45 -07002251static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2252 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002253{
2254#if defined(CONFIG_NET)
Jens Axboefc4df992019-12-10 14:38:45 -07002255 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe0b416c32019-12-15 10:57:46 -07002256 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002257 struct socket *sock;
2258 int ret;
2259
2260 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2261 return -EINVAL;
2262
2263 sock = sock_from_file(req->file, &ret);
2264 if (sock) {
2265 struct user_msghdr __user *msg;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002266 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002267 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002268 unsigned flags;
2269
2270 flags = READ_ONCE(sqe->msg_flags);
2271 if (flags & MSG_DONTWAIT)
2272 req->flags |= REQ_F_NOWAIT;
2273 else if (force_nonblock)
2274 flags |= MSG_DONTWAIT;
2275
Jens Axboed55e5f52019-12-11 16:12:15 -07002276 msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe03b12302019-12-02 18:50:25 -07002277 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002278 kmsg = &req->io->msg;
2279 kmsg->msg.msg_name = &addr;
2280 /* if iov is set, it's allocated already */
2281 if (!kmsg->iov)
2282 kmsg->iov = kmsg->fast_iov;
2283 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002284 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07002285 kmsg = &io.msg;
2286 kmsg->msg.msg_name = &addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002287 ret = io_recvmsg_prep(req, &io);
2288 if (ret)
2289 goto out;
2290 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06002291
Jens Axboe0b416c32019-12-15 10:57:46 -07002292 ret = __sys_recvmsg_sock(sock, &kmsg->msg, msg, kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002293 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002294 if (req->io)
2295 return -EAGAIN;
2296 if (io_alloc_async_ctx(req))
2297 return -ENOMEM;
2298 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2299 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002300 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002301 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07002302 if (ret == -ERESTARTSYS)
2303 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002304 }
2305
Jens Axboe03b12302019-12-02 18:50:25 -07002306out:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002307 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002308 kfree(kmsg->iov);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002309 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002310 if (ret < 0)
2311 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002312 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002313 return 0;
2314#else
2315 return -EOPNOTSUPP;
2316#endif
2317}
2318
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002319static int io_accept_prep(struct io_kiocb *req)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002320{
2321#if defined(CONFIG_NET)
Jens Axboefc4df992019-12-10 14:38:45 -07002322 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002323 struct io_accept *accept = &req->accept;
2324
2325 if (req->flags & REQ_F_PREPPED)
2326 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002327
2328 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2329 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05002330 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002331 return -EINVAL;
2332
Jens Axboed55e5f52019-12-11 16:12:15 -07002333 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
2334 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002335 accept->flags = READ_ONCE(sqe->accept_flags);
2336 req->flags |= REQ_F_PREPPED;
2337 return 0;
2338#else
2339 return -EOPNOTSUPP;
2340#endif
2341}
Jens Axboe17f2fe32019-10-17 14:42:58 -06002342
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002343#if defined(CONFIG_NET)
2344static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2345 bool force_nonblock)
2346{
2347 struct io_accept *accept = &req->accept;
2348 unsigned file_flags;
2349 int ret;
2350
2351 file_flags = force_nonblock ? O_NONBLOCK : 0;
2352 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
2353 accept->addr_len, accept->flags);
2354 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002355 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07002356 if (ret == -ERESTARTSYS)
2357 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002358 if (ret < 0)
2359 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002360 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002361 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002362 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002363}
2364
2365static void io_accept_finish(struct io_wq_work **workptr)
2366{
2367 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2368 struct io_kiocb *nxt = NULL;
2369
2370 if (io_req_cancelled(req))
2371 return;
2372 __io_accept(req, &nxt, false);
2373 if (nxt)
2374 *workptr = &nxt->work;
2375}
2376#endif
2377
2378static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2379 bool force_nonblock)
2380{
2381#if defined(CONFIG_NET)
2382 int ret;
2383
2384 ret = io_accept_prep(req);
2385 if (ret)
2386 return ret;
2387
2388 ret = __io_accept(req, nxt, force_nonblock);
2389 if (ret == -EAGAIN && force_nonblock) {
2390 req->work.func = io_accept_finish;
2391 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2392 io_put_req(req);
2393 return -EAGAIN;
2394 }
2395 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002396#else
2397 return -EOPNOTSUPP;
2398#endif
2399}
2400
Jens Axboef499a022019-12-02 16:28:46 -07002401static int io_connect_prep(struct io_kiocb *req, struct io_async_ctx *io)
2402{
2403#if defined(CONFIG_NET)
2404 const struct io_uring_sqe *sqe = req->sqe;
2405 struct sockaddr __user *addr;
2406 int addr_len;
2407
Jens Axboed55e5f52019-12-11 16:12:15 -07002408 addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef499a022019-12-02 16:28:46 -07002409 addr_len = READ_ONCE(sqe->addr2);
2410 return move_addr_to_kernel(addr, addr_len, &io->connect.address);
2411#else
2412 return 0;
2413#endif
2414}
2415
Jens Axboefc4df992019-12-10 14:38:45 -07002416static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
2417 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07002418{
2419#if defined(CONFIG_NET)
Jens Axboefc4df992019-12-10 14:38:45 -07002420 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboef499a022019-12-02 16:28:46 -07002421 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002422 unsigned file_flags;
2423 int addr_len, ret;
2424
2425 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2426 return -EINVAL;
2427 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
2428 return -EINVAL;
2429
Jens Axboef8e85cf2019-11-23 14:24:24 -07002430 addr_len = READ_ONCE(sqe->addr2);
2431 file_flags = force_nonblock ? O_NONBLOCK : 0;
2432
Jens Axboef499a022019-12-02 16:28:46 -07002433 if (req->io) {
2434 io = req->io;
2435 } else {
2436 ret = io_connect_prep(req, &__io);
2437 if (ret)
2438 goto out;
2439 io = &__io;
2440 }
2441
2442 ret = __sys_connect_file(req->file, &io->connect.address, addr_len,
2443 file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07002444 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002445 if (req->io)
2446 return -EAGAIN;
2447 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07002448 ret = -ENOMEM;
2449 goto out;
2450 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002451 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07002452 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07002453 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07002454 if (ret == -ERESTARTSYS)
2455 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07002456out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002457 if (ret < 0)
2458 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07002459 io_cqring_add_event(req, ret);
2460 io_put_req_find_next(req, nxt);
2461 return 0;
2462#else
2463 return -EOPNOTSUPP;
2464#endif
2465}
2466
Jens Axboe221c5eb2019-01-17 09:41:58 -07002467static void io_poll_remove_one(struct io_kiocb *req)
2468{
2469 struct io_poll_iocb *poll = &req->poll;
2470
2471 spin_lock(&poll->head->lock);
2472 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07002473 if (!list_empty(&poll->wait.entry)) {
2474 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07002475 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002476 }
2477 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002478 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002479}
2480
2481static void io_poll_remove_all(struct io_ring_ctx *ctx)
2482{
Jens Axboe78076bb2019-12-04 19:56:40 -07002483 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002484 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07002485 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002486
2487 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002488 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
2489 struct hlist_head *list;
2490
2491 list = &ctx->cancel_hash[i];
2492 hlist_for_each_entry_safe(req, tmp, list, hash_node)
2493 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002494 }
2495 spin_unlock_irq(&ctx->completion_lock);
2496}
2497
Jens Axboe47f46762019-11-09 17:43:02 -07002498static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2499{
Jens Axboe78076bb2019-12-04 19:56:40 -07002500 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07002501 struct io_kiocb *req;
2502
Jens Axboe78076bb2019-12-04 19:56:40 -07002503 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
2504 hlist_for_each_entry(req, list, hash_node) {
2505 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07002506 io_poll_remove_one(req);
2507 return 0;
2508 }
Jens Axboe47f46762019-11-09 17:43:02 -07002509 }
2510
2511 return -ENOENT;
2512}
2513
Jens Axboe0969e782019-12-17 18:40:57 -07002514static int io_poll_remove_prep(struct io_kiocb *req)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002515{
Jens Axboefc4df992019-12-10 14:38:45 -07002516 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002517
Jens Axboe0969e782019-12-17 18:40:57 -07002518 if (req->flags & REQ_F_PREPPED)
2519 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002520 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2521 return -EINVAL;
2522 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2523 sqe->poll_events)
2524 return -EINVAL;
2525
Jens Axboe0969e782019-12-17 18:40:57 -07002526 req->poll.addr = READ_ONCE(sqe->addr);
2527 req->flags |= REQ_F_PREPPED;
2528 return 0;
2529}
2530
2531/*
2532 * Find a running poll command that matches one specified in sqe->addr,
2533 * and remove it if found.
2534 */
2535static int io_poll_remove(struct io_kiocb *req)
2536{
2537 struct io_ring_ctx *ctx = req->ctx;
2538 u64 addr;
2539 int ret;
2540
2541 ret = io_poll_remove_prep(req);
2542 if (ret)
2543 return ret;
2544
2545 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002546 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07002547 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002548 spin_unlock_irq(&ctx->completion_lock);
2549
Jens Axboe78e19bb2019-11-06 15:21:34 -07002550 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002551 if (ret < 0)
2552 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002553 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002554 return 0;
2555}
2556
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002557static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002558{
Jackie Liua197f662019-11-08 08:09:12 -07002559 struct io_ring_ctx *ctx = req->ctx;
2560
Jens Axboe8c838782019-03-12 15:48:16 -06002561 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002562 if (error)
2563 io_cqring_fill_event(req, error);
2564 else
2565 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06002566 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002567}
2568
Jens Axboe561fb042019-10-24 07:25:42 -06002569static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002570{
Jens Axboe561fb042019-10-24 07:25:42 -06002571 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002572 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2573 struct io_poll_iocb *poll = &req->poll;
2574 struct poll_table_struct pt = { ._key = poll->events };
2575 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07002576 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002577 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002578 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002579
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002580 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06002581 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002582 ret = -ECANCELED;
2583 } else if (READ_ONCE(poll->canceled)) {
2584 ret = -ECANCELED;
2585 }
Jens Axboe561fb042019-10-24 07:25:42 -06002586
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002587 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002588 mask = vfs_poll(poll->file, &pt) & poll->events;
2589
2590 /*
2591 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2592 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2593 * synchronize with them. In the cancellation case the list_del_init
2594 * itself is not actually needed, but harmless so we keep it in to
2595 * avoid further branches in the fast path.
2596 */
2597 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002598 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07002599 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002600 spin_unlock_irq(&ctx->completion_lock);
2601 return;
2602 }
Jens Axboe78076bb2019-12-04 19:56:40 -07002603 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002604 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002605 spin_unlock_irq(&ctx->completion_lock);
2606
Jens Axboe8c838782019-03-12 15:48:16 -06002607 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07002608
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002609 if (ret < 0)
2610 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002611 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07002612 if (nxt)
2613 *workptr = &nxt->work;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002614}
2615
2616static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2617 void *key)
2618{
Jens Axboee9444752019-11-26 15:02:04 -07002619 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002620 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2621 struct io_ring_ctx *ctx = req->ctx;
2622 __poll_t mask = key_to_poll(key);
Jens Axboe8c838782019-03-12 15:48:16 -06002623 unsigned long flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002624
2625 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06002626 if (mask && !(mask & poll->events))
2627 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002628
Jens Axboe392edb42019-12-09 17:52:20 -07002629 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002630
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002631 /*
2632 * Run completion inline if we can. We're using trylock here because
2633 * we are violating the completion_lock -> poll wq lock ordering.
2634 * If we have a link timeout we're going to need the completion_lock
2635 * for finalizing the request, mark us as having grabbed that already.
2636 */
Jens Axboe8c838782019-03-12 15:48:16 -06002637 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboe78076bb2019-12-04 19:56:40 -07002638 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002639 io_poll_complete(req, mask, 0);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002640 req->flags |= REQ_F_COMP_LOCKED;
2641 io_put_req(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002642 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2643
2644 io_cqring_ev_posted(ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06002645 } else {
Jackie Liua197f662019-11-08 08:09:12 -07002646 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002647 }
2648
Jens Axboe221c5eb2019-01-17 09:41:58 -07002649 return 1;
2650}
2651
2652struct io_poll_table {
2653 struct poll_table_struct pt;
2654 struct io_kiocb *req;
2655 int error;
2656};
2657
2658static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2659 struct poll_table_struct *p)
2660{
2661 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2662
2663 if (unlikely(pt->req->poll.head)) {
2664 pt->error = -EINVAL;
2665 return;
2666 }
2667
2668 pt->error = 0;
2669 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07002670 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002671}
2672
Jens Axboeeac406c2019-11-14 12:09:58 -07002673static void io_poll_req_insert(struct io_kiocb *req)
2674{
2675 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07002676 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07002677
Jens Axboe78076bb2019-12-04 19:56:40 -07002678 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
2679 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07002680}
2681
Jens Axboe0969e782019-12-17 18:40:57 -07002682static int io_poll_add_prep(struct io_kiocb *req)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002683{
Jens Axboefc4df992019-12-10 14:38:45 -07002684 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002685 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002686 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002687
Jens Axboe0969e782019-12-17 18:40:57 -07002688 if (req->flags & REQ_F_PREPPED)
2689 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002690 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2691 return -EINVAL;
2692 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2693 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06002694 if (!poll->file)
2695 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002696
Jens Axboe0969e782019-12-17 18:40:57 -07002697 req->flags |= REQ_F_PREPPED;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002698 events = READ_ONCE(sqe->poll_events);
2699 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07002700 return 0;
2701}
2702
2703static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
2704{
2705 struct io_poll_iocb *poll = &req->poll;
2706 struct io_ring_ctx *ctx = req->ctx;
2707 struct io_poll_table ipt;
2708 bool cancel = false;
2709 __poll_t mask;
2710 int ret;
2711
2712 ret = io_poll_add_prep(req);
2713 if (ret)
2714 return ret;
2715
2716 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07002717 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002718
Jens Axboe221c5eb2019-01-17 09:41:58 -07002719 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06002720 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002721 poll->canceled = false;
2722
2723 ipt.pt._qproc = io_poll_queue_proc;
2724 ipt.pt._key = poll->events;
2725 ipt.req = req;
2726 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2727
2728 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07002729 INIT_LIST_HEAD(&poll->wait.entry);
2730 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
2731 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002732
Jens Axboe36703242019-07-25 10:20:18 -06002733 INIT_LIST_HEAD(&req->list);
2734
Jens Axboe221c5eb2019-01-17 09:41:58 -07002735 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002736
2737 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06002738 if (likely(poll->head)) {
2739 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07002740 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06002741 if (ipt.error)
2742 cancel = true;
2743 ipt.error = 0;
2744 mask = 0;
2745 }
2746 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07002747 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002748 else if (cancel)
2749 WRITE_ONCE(poll->canceled, true);
2750 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07002751 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002752 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002753 }
Jens Axboe8c838782019-03-12 15:48:16 -06002754 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06002755 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002756 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06002757 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07002758 spin_unlock_irq(&ctx->completion_lock);
2759
Jens Axboe8c838782019-03-12 15:48:16 -06002760 if (mask) {
2761 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002762 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002763 }
Jens Axboe8c838782019-03-12 15:48:16 -06002764 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002765}
2766
Jens Axboe5262f562019-09-17 12:26:57 -06002767static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2768{
Jens Axboead8a48a2019-11-15 08:49:11 -07002769 struct io_timeout_data *data = container_of(timer,
2770 struct io_timeout_data, timer);
2771 struct io_kiocb *req = data->req;
2772 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06002773 unsigned long flags;
2774
Jens Axboe5262f562019-09-17 12:26:57 -06002775 atomic_inc(&ctx->cq_timeouts);
2776
2777 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08002778 /*
Jens Axboe11365042019-10-16 09:08:32 -06002779 * We could be racing with timeout deletion. If the list is empty,
2780 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08002781 */
Jens Axboe842f9612019-10-29 12:34:10 -06002782 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06002783 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06002784
Jens Axboe11365042019-10-16 09:08:32 -06002785 /*
2786 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08002787 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06002788 * pointer will be increased, otherwise other timeout reqs may
2789 * return in advance without waiting for enough wait_nr.
2790 */
2791 prev = req;
2792 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2793 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06002794 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06002795 }
Jens Axboe842f9612019-10-29 12:34:10 -06002796
Jens Axboe78e19bb2019-11-06 15:21:34 -07002797 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06002798 io_commit_cqring(ctx);
2799 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2800
2801 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002802 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06002803 io_put_req(req);
2804 return HRTIMER_NORESTART;
2805}
2806
Jens Axboe47f46762019-11-09 17:43:02 -07002807static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2808{
2809 struct io_kiocb *req;
2810 int ret = -ENOENT;
2811
2812 list_for_each_entry(req, &ctx->timeout_list, list) {
2813 if (user_data == req->user_data) {
2814 list_del_init(&req->list);
2815 ret = 0;
2816 break;
2817 }
2818 }
2819
2820 if (ret == -ENOENT)
2821 return ret;
2822
Jens Axboe2d283902019-12-04 11:08:05 -07002823 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07002824 if (ret == -1)
2825 return -EALREADY;
2826
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002827 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07002828 io_cqring_fill_event(req, -ECANCELED);
2829 io_put_req(req);
2830 return 0;
2831}
2832
Jens Axboeb29472e2019-12-17 18:50:29 -07002833static int io_timeout_remove_prep(struct io_kiocb *req)
2834{
2835 const struct io_uring_sqe *sqe = req->sqe;
2836
2837 if (req->flags & REQ_F_PREPPED)
2838 return 0;
2839 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2840 return -EINVAL;
2841 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2842 return -EINVAL;
2843
2844 req->timeout.addr = READ_ONCE(sqe->addr);
2845 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
2846 if (req->timeout.flags)
2847 return -EINVAL;
2848
2849 req->flags |= REQ_F_PREPPED;
2850 return 0;
2851}
2852
Jens Axboe11365042019-10-16 09:08:32 -06002853/*
2854 * Remove or update an existing timeout command
2855 */
Jens Axboefc4df992019-12-10 14:38:45 -07002856static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06002857{
2858 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07002859 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06002860
Jens Axboeb29472e2019-12-17 18:50:29 -07002861 ret = io_timeout_remove_prep(req);
2862 if (ret)
2863 return ret;
Jens Axboe11365042019-10-16 09:08:32 -06002864
Jens Axboe11365042019-10-16 09:08:32 -06002865 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07002866 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06002867
Jens Axboe47f46762019-11-09 17:43:02 -07002868 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06002869 io_commit_cqring(ctx);
2870 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002871 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002872 if (ret < 0)
2873 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002874 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06002875 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06002876}
2877
Jens Axboe2d283902019-12-04 11:08:05 -07002878static int io_timeout_prep(struct io_kiocb *req, struct io_async_ctx *io,
2879 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06002880{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002881 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboead8a48a2019-11-15 08:49:11 -07002882 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06002883 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06002884
Jens Axboead8a48a2019-11-15 08:49:11 -07002885 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06002886 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002887 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06002888 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07002889 if (sqe->off && is_timeout_link)
2890 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06002891 flags = READ_ONCE(sqe->timeout_flags);
2892 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06002893 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06002894
Jens Axboe2d283902019-12-04 11:08:05 -07002895 data = &io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07002896 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07002897 req->flags |= REQ_F_TIMEOUT;
2898
2899 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06002900 return -EFAULT;
2901
Jens Axboe11365042019-10-16 09:08:32 -06002902 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07002903 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06002904 else
Jens Axboead8a48a2019-11-15 08:49:11 -07002905 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06002906
Jens Axboead8a48a2019-11-15 08:49:11 -07002907 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
2908 return 0;
2909}
2910
Jens Axboefc4df992019-12-10 14:38:45 -07002911static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07002912{
Jens Axboefc4df992019-12-10 14:38:45 -07002913 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboead8a48a2019-11-15 08:49:11 -07002914 unsigned count;
2915 struct io_ring_ctx *ctx = req->ctx;
2916 struct io_timeout_data *data;
2917 struct list_head *entry;
2918 unsigned span = 0;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002919 int ret;
Jens Axboead8a48a2019-11-15 08:49:11 -07002920
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002921 if (!req->io) {
2922 if (io_alloc_async_ctx(req))
Jens Axboe2d283902019-12-04 11:08:05 -07002923 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002924 ret = io_timeout_prep(req, req->io, false);
2925 if (ret)
Jens Axboe2d283902019-12-04 11:08:05 -07002926 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07002927 }
2928 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002929
Jens Axboe5262f562019-09-17 12:26:57 -06002930 /*
2931 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07002932 * timeout event to be satisfied. If it isn't set, then this is
2933 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06002934 */
2935 count = READ_ONCE(sqe->off);
Jens Axboe93bd25b2019-11-11 23:34:31 -07002936 if (!count) {
2937 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2938 spin_lock_irq(&ctx->completion_lock);
2939 entry = ctx->timeout_list.prev;
2940 goto add;
2941 }
Jens Axboe5262f562019-09-17 12:26:57 -06002942
2943 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07002944 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06002945
2946 /*
2947 * Insertion sort, ensuring the first entry in the list is always
2948 * the one we need first.
2949 */
Jens Axboe5262f562019-09-17 12:26:57 -06002950 spin_lock_irq(&ctx->completion_lock);
2951 list_for_each_prev(entry, &ctx->timeout_list) {
2952 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08002953 unsigned nxt_sq_head;
2954 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07002955 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06002956
Jens Axboe93bd25b2019-11-11 23:34:31 -07002957 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2958 continue;
2959
yangerkun5da0fb12019-10-15 21:59:29 +08002960 /*
2961 * Since cached_sq_head + count - 1 can overflow, use type long
2962 * long to store it.
2963 */
2964 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002965 nxt_sq_head = nxt->sequence - nxt_offset + 1;
2966 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08002967
2968 /*
2969 * cached_sq_head may overflow, and it will never overflow twice
2970 * once there is some timeout req still be valid.
2971 */
2972 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08002973 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08002974
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002975 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06002976 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002977
2978 /*
2979 * Sequence of reqs after the insert one and itself should
2980 * be adjusted because each timeout req consumes a slot.
2981 */
2982 span++;
2983 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06002984 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002985 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002986add:
Jens Axboe5262f562019-09-17 12:26:57 -06002987 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07002988 data->timer.function = io_timeout_fn;
2989 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06002990 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002991 return 0;
2992}
2993
Jens Axboe62755e32019-10-28 21:49:21 -06002994static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06002995{
Jens Axboe62755e32019-10-28 21:49:21 -06002996 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06002997
Jens Axboe62755e32019-10-28 21:49:21 -06002998 return req->user_data == (unsigned long) data;
2999}
3000
Jens Axboee977d6d2019-11-05 12:39:45 -07003001static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003002{
Jens Axboe62755e32019-10-28 21:49:21 -06003003 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003004 int ret = 0;
3005
Jens Axboe62755e32019-10-28 21:49:21 -06003006 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3007 switch (cancel_ret) {
3008 case IO_WQ_CANCEL_OK:
3009 ret = 0;
3010 break;
3011 case IO_WQ_CANCEL_RUNNING:
3012 ret = -EALREADY;
3013 break;
3014 case IO_WQ_CANCEL_NOTFOUND:
3015 ret = -ENOENT;
3016 break;
3017 }
3018
Jens Axboee977d6d2019-11-05 12:39:45 -07003019 return ret;
3020}
3021
Jens Axboe47f46762019-11-09 17:43:02 -07003022static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3023 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003024 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07003025{
3026 unsigned long flags;
3027 int ret;
3028
3029 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3030 if (ret != -ENOENT) {
3031 spin_lock_irqsave(&ctx->completion_lock, flags);
3032 goto done;
3033 }
3034
3035 spin_lock_irqsave(&ctx->completion_lock, flags);
3036 ret = io_timeout_cancel(ctx, sqe_addr);
3037 if (ret != -ENOENT)
3038 goto done;
3039 ret = io_poll_cancel(ctx, sqe_addr);
3040done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003041 if (!ret)
3042 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07003043 io_cqring_fill_event(req, ret);
3044 io_commit_cqring(ctx);
3045 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3046 io_cqring_ev_posted(ctx);
3047
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003048 if (ret < 0)
3049 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003050 io_put_req_find_next(req, nxt);
3051}
3052
Jens Axboefbf23842019-12-17 18:45:56 -07003053static int io_async_cancel_prep(struct io_kiocb *req)
Jens Axboee977d6d2019-11-05 12:39:45 -07003054{
Jens Axboefc4df992019-12-10 14:38:45 -07003055 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboee977d6d2019-11-05 12:39:45 -07003056
Jens Axboefbf23842019-12-17 18:45:56 -07003057 if (req->flags & REQ_F_PREPPED)
3058 return 0;
3059 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07003060 return -EINVAL;
3061 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3062 sqe->cancel_flags)
3063 return -EINVAL;
3064
Jens Axboefbf23842019-12-17 18:45:56 -07003065 req->flags |= REQ_F_PREPPED;
3066 req->cancel.addr = READ_ONCE(sqe->addr);
3067 return 0;
3068}
3069
3070static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
3071{
3072 struct io_ring_ctx *ctx = req->ctx;
3073 int ret;
3074
3075 ret = io_async_cancel_prep(req);
3076 if (ret)
3077 return ret;
3078
3079 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06003080 return 0;
3081}
3082
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003083static int io_req_defer_prep(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003084{
3085 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003086 struct io_async_ctx *io = req->io;
Jens Axboef67676d2019-12-02 11:03:47 -07003087 struct iov_iter iter;
Jens Axboee7815732019-12-17 19:45:06 -07003088 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003089
Jens Axboed625c6e2019-12-17 19:53:05 -07003090 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07003091 case IORING_OP_NOP:
3092 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003093 case IORING_OP_READV:
3094 case IORING_OP_READ_FIXED:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003095 /* ensure prep does right import */
3096 req->io = NULL;
Jens Axboef67676d2019-12-02 11:03:47 -07003097 ret = io_read_prep(req, &iovec, &iter, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003098 req->io = io;
3099 if (ret < 0)
3100 break;
3101 io_req_map_rw(req, ret, iovec, inline_vecs, &iter);
3102 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003103 break;
3104 case IORING_OP_WRITEV:
3105 case IORING_OP_WRITE_FIXED:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003106 /* ensure prep does right import */
3107 req->io = NULL;
Jens Axboef67676d2019-12-02 11:03:47 -07003108 ret = io_write_prep(req, &iovec, &iter, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003109 req->io = io;
3110 if (ret < 0)
3111 break;
3112 io_req_map_rw(req, ret, iovec, inline_vecs, &iter);
3113 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003114 break;
Jens Axboe0969e782019-12-17 18:40:57 -07003115 case IORING_OP_POLL_ADD:
3116 ret = io_poll_add_prep(req);
3117 break;
3118 case IORING_OP_POLL_REMOVE:
3119 ret = io_poll_remove_prep(req);
3120 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003121 case IORING_OP_FSYNC:
3122 ret = io_prep_fsync(req);
3123 break;
3124 case IORING_OP_SYNC_FILE_RANGE:
3125 ret = io_prep_sfr(req);
3126 break;
Jens Axboe03b12302019-12-02 18:50:25 -07003127 case IORING_OP_SENDMSG:
3128 ret = io_sendmsg_prep(req, io);
3129 break;
3130 case IORING_OP_RECVMSG:
3131 ret = io_recvmsg_prep(req, io);
3132 break;
Jens Axboef499a022019-12-02 16:28:46 -07003133 case IORING_OP_CONNECT:
3134 ret = io_connect_prep(req, io);
3135 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003136 case IORING_OP_TIMEOUT:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003137 ret = io_timeout_prep(req, io, false);
3138 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07003139 case IORING_OP_TIMEOUT_REMOVE:
3140 ret = io_timeout_remove_prep(req);
3141 break;
Jens Axboefbf23842019-12-17 18:45:56 -07003142 case IORING_OP_ASYNC_CANCEL:
3143 ret = io_async_cancel_prep(req);
3144 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003145 case IORING_OP_LINK_TIMEOUT:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003146 ret = io_timeout_prep(req, io, true);
3147 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003148 case IORING_OP_ACCEPT:
3149 ret = io_accept_prep(req);
3150 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003151 default:
Jens Axboee7815732019-12-17 19:45:06 -07003152 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
3153 req->opcode);
3154 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003155 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003156 }
3157
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003158 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003159}
3160
Jackie Liua197f662019-11-08 08:09:12 -07003161static int io_req_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -06003162{
Jackie Liua197f662019-11-08 08:09:12 -07003163 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07003164 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06003165
Bob Liu9d858b22019-11-13 18:06:25 +08003166 /* Still need defer if there is pending req in defer list. */
3167 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06003168 return 0;
3169
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003170 if (io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06003171 return -EAGAIN;
3172
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003173 ret = io_req_defer_prep(req);
3174 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07003175 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07003176
Jens Axboede0617e2019-04-06 21:51:27 -06003177 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08003178 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06003179 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06003180 return 0;
3181 }
3182
Jens Axboe915967f2019-11-21 09:01:20 -07003183 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06003184 list_add_tail(&req->list, &ctx->defer_list);
3185 spin_unlock_irq(&ctx->completion_lock);
3186 return -EIOCBQUEUED;
3187}
3188
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003189__attribute__((nonnull))
Pavel Begunkovd7324472019-11-21 21:24:36 +03003190static int io_issue_sqe(struct io_kiocb *req, struct io_kiocb **nxt,
3191 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003192{
Jackie Liua197f662019-11-08 08:09:12 -07003193 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07003194 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003195
Jens Axboed625c6e2019-12-17 19:53:05 -07003196 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003197 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003198 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003199 break;
3200 case IORING_OP_READV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003201 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07003202 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03003203 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003204 break;
3205 case IORING_OP_WRITEV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003206 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07003207 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03003208 ret = io_write(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07003209 break;
3210 case IORING_OP_READ_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03003211 ret = io_read(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07003212 break;
3213 case IORING_OP_WRITE_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03003214 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003215 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003216 case IORING_OP_FSYNC:
Jens Axboefc4df992019-12-10 14:38:45 -07003217 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003218 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003219 case IORING_OP_POLL_ADD:
Jens Axboefc4df992019-12-10 14:38:45 -07003220 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003221 break;
3222 case IORING_OP_POLL_REMOVE:
Jens Axboefc4df992019-12-10 14:38:45 -07003223 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003224 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003225 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboefc4df992019-12-10 14:38:45 -07003226 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003227 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003228 case IORING_OP_SENDMSG:
Jens Axboefc4df992019-12-10 14:38:45 -07003229 ret = io_sendmsg(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003230 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06003231 case IORING_OP_RECVMSG:
Jens Axboefc4df992019-12-10 14:38:45 -07003232 ret = io_recvmsg(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06003233 break;
Jens Axboe5262f562019-09-17 12:26:57 -06003234 case IORING_OP_TIMEOUT:
Jens Axboefc4df992019-12-10 14:38:45 -07003235 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003236 break;
Jens Axboe11365042019-10-16 09:08:32 -06003237 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboefc4df992019-12-10 14:38:45 -07003238 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06003239 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003240 case IORING_OP_ACCEPT:
Jens Axboefc4df992019-12-10 14:38:45 -07003241 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003242 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003243 case IORING_OP_CONNECT:
Jens Axboefc4df992019-12-10 14:38:45 -07003244 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003245 break;
Jens Axboe62755e32019-10-28 21:49:21 -06003246 case IORING_OP_ASYNC_CANCEL:
Jens Axboefc4df992019-12-10 14:38:45 -07003247 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06003248 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003249 default:
3250 ret = -EINVAL;
3251 break;
3252 }
3253
Jens Axboedef596e2019-01-09 08:59:42 -07003254 if (ret)
3255 return ret;
3256
3257 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003258 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07003259 return -EAGAIN;
3260
Jens Axboedef596e2019-01-09 08:59:42 -07003261 io_iopoll_req_issued(req);
Jens Axboedef596e2019-01-09 08:59:42 -07003262 }
3263
3264 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003265}
3266
Jens Axboeb76da702019-11-20 13:05:32 -07003267static void io_link_work_cb(struct io_wq_work **workptr)
3268{
3269 struct io_wq_work *work = *workptr;
3270 struct io_kiocb *link = work->data;
3271
3272 io_queue_linked_timeout(link);
3273 work->func = io_wq_submit_work;
3274}
3275
Jens Axboe561fb042019-10-24 07:25:42 -06003276static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07003277{
Jens Axboe561fb042019-10-24 07:25:42 -06003278 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003279 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06003280 struct io_kiocb *nxt = NULL;
3281 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003282
Jens Axboe561fb042019-10-24 07:25:42 -06003283 if (work->flags & IO_WQ_WORK_CANCEL)
3284 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07003285
Jens Axboe561fb042019-10-24 07:25:42 -06003286 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003287 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
3288 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06003289 do {
Pavel Begunkovd7324472019-11-21 21:24:36 +03003290 ret = io_issue_sqe(req, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06003291 /*
3292 * We can get EAGAIN for polled IO even though we're
3293 * forcing a sync submission from here, since we can't
3294 * wait for request slots on the block side.
3295 */
3296 if (ret != -EAGAIN)
3297 break;
3298 cond_resched();
3299 } while (1);
3300 }
Jens Axboe31b51512019-01-18 22:56:34 -07003301
Jens Axboe561fb042019-10-24 07:25:42 -06003302 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08003303 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06003304
Jens Axboe561fb042019-10-24 07:25:42 -06003305 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003306 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003307 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06003308 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07003309 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003310
Jens Axboe561fb042019-10-24 07:25:42 -06003311 /* if a dependent link is ready, pass it back */
3312 if (!ret && nxt) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003313 struct io_kiocb *link;
3314
3315 io_prep_async_work(nxt, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06003316 *workptr = &nxt->work;
Jens Axboeb76da702019-11-20 13:05:32 -07003317 if (link) {
3318 nxt->work.flags |= IO_WQ_WORK_CB;
3319 nxt->work.func = io_link_work_cb;
3320 nxt->work.data = link;
3321 }
Jens Axboeedafcce2019-01-09 09:16:05 -07003322 }
Jens Axboe31b51512019-01-18 22:56:34 -07003323}
Jens Axboe2b188cc2019-01-07 10:46:33 -07003324
Jens Axboe9e3aa612019-12-11 15:55:43 -07003325static bool io_req_op_valid(int op)
3326{
3327 return op >= IORING_OP_NOP && op < IORING_OP_LAST;
3328}
3329
Jens Axboed625c6e2019-12-17 19:53:05 -07003330static int io_req_needs_file(struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003331{
Jens Axboed625c6e2019-12-17 19:53:05 -07003332 switch (req->opcode) {
Jens Axboe09bb8392019-03-13 12:39:28 -06003333 case IORING_OP_NOP:
3334 case IORING_OP_POLL_REMOVE:
Pavel Begunkov5683e542019-11-14 00:59:19 +03003335 case IORING_OP_TIMEOUT:
Pavel Begunkova320e9f2019-11-14 00:11:01 +03003336 case IORING_OP_TIMEOUT_REMOVE:
3337 case IORING_OP_ASYNC_CANCEL:
3338 case IORING_OP_LINK_TIMEOUT:
Jens Axboe9e3aa612019-12-11 15:55:43 -07003339 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06003340 default:
Jens Axboed625c6e2019-12-17 19:53:05 -07003341 if (io_req_op_valid(req->opcode))
Jens Axboe9e3aa612019-12-11 15:55:43 -07003342 return 1;
3343 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003344 }
3345}
3346
Jens Axboe65e19f52019-10-26 07:20:21 -06003347static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
3348 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06003349{
Jens Axboe65e19f52019-10-26 07:20:21 -06003350 struct fixed_file_table *table;
3351
3352 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
3353 return table->files[index & IORING_FILE_TABLE_MASK];
3354}
3355
Jackie Liua197f662019-11-08 08:09:12 -07003356static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003357{
Jackie Liua197f662019-11-08 08:09:12 -07003358 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06003359 unsigned flags;
Jens Axboe9e3aa612019-12-11 15:55:43 -07003360 int fd, ret;
Jens Axboe09bb8392019-03-13 12:39:28 -06003361
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003362 flags = READ_ONCE(req->sqe->flags);
3363 fd = READ_ONCE(req->sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003364
Jackie Liu4fe2c962019-09-09 20:50:40 +08003365 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06003366 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06003367
Jens Axboed625c6e2019-12-17 19:53:05 -07003368 ret = io_req_needs_file(req);
Jens Axboe9e3aa612019-12-11 15:55:43 -07003369 if (ret <= 0)
3370 return ret;
Jens Axboe09bb8392019-03-13 12:39:28 -06003371
3372 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003373 if (unlikely(!ctx->file_table ||
Jens Axboe09bb8392019-03-13 12:39:28 -06003374 (unsigned) fd >= ctx->nr_user_files))
3375 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06003376 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06003377 req->file = io_file_from_index(ctx, fd);
3378 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06003379 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06003380 req->flags |= REQ_F_FIXED_FILE;
3381 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003382 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06003383 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003384 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003385 req->file = io_file_get(state, fd);
3386 if (unlikely(!req->file))
3387 return -EBADF;
3388 }
3389
3390 return 0;
3391}
3392
Jackie Liua197f662019-11-08 08:09:12 -07003393static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003394{
Jens Axboefcb323c2019-10-24 12:39:47 -06003395 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07003396 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06003397
3398 rcu_read_lock();
3399 spin_lock_irq(&ctx->inflight_lock);
3400 /*
3401 * We use the f_ops->flush() handler to ensure that we can flush
3402 * out work accessing these files if the fd is closed. Check if
3403 * the fd has changed since we started down this path, and disallow
3404 * this operation if it has.
3405 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003406 if (fcheck(req->ring_fd) == req->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06003407 list_add(&req->inflight_entry, &ctx->inflight_list);
3408 req->flags |= REQ_F_INFLIGHT;
3409 req->work.files = current->files;
3410 ret = 0;
3411 }
3412 spin_unlock_irq(&ctx->inflight_lock);
3413 rcu_read_unlock();
3414
3415 return ret;
3416}
3417
Jens Axboe2665abf2019-11-05 12:40:47 -07003418static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
3419{
Jens Axboead8a48a2019-11-15 08:49:11 -07003420 struct io_timeout_data *data = container_of(timer,
3421 struct io_timeout_data, timer);
3422 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07003423 struct io_ring_ctx *ctx = req->ctx;
3424 struct io_kiocb *prev = NULL;
3425 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07003426
3427 spin_lock_irqsave(&ctx->completion_lock, flags);
3428
3429 /*
3430 * We don't expect the list to be empty, that will only happen if we
3431 * race with the completion of the linked work.
3432 */
Pavel Begunkov44932332019-12-05 16:16:35 +03003433 if (!list_empty(&req->link_list)) {
3434 prev = list_entry(req->link_list.prev, struct io_kiocb,
3435 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003436 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03003437 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003438 prev->flags &= ~REQ_F_LINK_TIMEOUT;
3439 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07003440 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003441 }
3442
3443 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3444
3445 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003446 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003447 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
3448 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07003449 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07003450 } else {
3451 io_cqring_add_event(req, -ETIME);
3452 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003453 }
Jens Axboe2665abf2019-11-05 12:40:47 -07003454 return HRTIMER_NORESTART;
3455}
3456
Jens Axboead8a48a2019-11-15 08:49:11 -07003457static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003458{
Jens Axboe76a46e02019-11-10 23:34:16 -07003459 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07003460
Jens Axboe76a46e02019-11-10 23:34:16 -07003461 /*
3462 * If the list is now empty, then our linked request finished before
3463 * we got a chance to setup the timer
3464 */
3465 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03003466 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07003467 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07003468
Jens Axboead8a48a2019-11-15 08:49:11 -07003469 data->timer.function = io_link_timeout_fn;
3470 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
3471 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07003472 }
Jens Axboe76a46e02019-11-10 23:34:16 -07003473 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07003474
Jens Axboe2665abf2019-11-05 12:40:47 -07003475 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07003476 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003477}
3478
Jens Axboead8a48a2019-11-15 08:49:11 -07003479static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003480{
3481 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003482
Jens Axboe2665abf2019-11-05 12:40:47 -07003483 if (!(req->flags & REQ_F_LINK))
3484 return NULL;
3485
Pavel Begunkov44932332019-12-05 16:16:35 +03003486 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
3487 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07003488 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07003489 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003490
Jens Axboe76a46e02019-11-10 23:34:16 -07003491 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07003492 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07003493}
3494
Jens Axboe0e0702d2019-11-14 21:42:10 -07003495static void __io_queue_sqe(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003496{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003497 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003498 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003499 int ret;
3500
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003501again:
3502 linked_timeout = io_prep_linked_timeout(req);
3503
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003504 ret = io_issue_sqe(req, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06003505
3506 /*
3507 * We async punt it if the file wasn't marked NOWAIT, or if the file
3508 * doesn't support non-blocking read/write attempts
3509 */
3510 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
3511 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003512 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
3513 ret = io_grab_files(req);
3514 if (ret)
3515 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003516 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003517
3518 /*
3519 * Queued up for async execution, worker will release
3520 * submit reference when the iocb is actually submitted.
3521 */
3522 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003523 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003524 }
Jens Axboee65ef562019-03-12 10:16:44 -06003525
Jens Axboefcb323c2019-10-24 12:39:47 -06003526err:
Jens Axboee65ef562019-03-12 10:16:44 -06003527 /* drop submission reference */
3528 io_put_req(req);
3529
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003530 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003531 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003532 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003533 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003534 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003535 }
3536
Jens Axboee65ef562019-03-12 10:16:44 -06003537 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06003538 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003539 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003540 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003541 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003542 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003543done_req:
3544 if (nxt) {
3545 req = nxt;
3546 nxt = NULL;
3547 goto again;
3548 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003549}
3550
Jens Axboe0e0702d2019-11-14 21:42:10 -07003551static void io_queue_sqe(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003552{
3553 int ret;
3554
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003555 if (unlikely(req->ctx->drain_next)) {
3556 req->flags |= REQ_F_IO_DRAIN;
3557 req->ctx->drain_next = false;
3558 }
3559 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
3560
Jackie Liua197f662019-11-08 08:09:12 -07003561 ret = io_req_defer(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003562 if (ret) {
3563 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003564 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003565 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003566 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003567 }
Jens Axboe0e0702d2019-11-14 21:42:10 -07003568 } else
3569 __io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003570}
3571
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003572static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003573{
Jens Axboe94ae5e72019-11-14 19:39:52 -07003574 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003575 io_cqring_add_event(req, -ECANCELED);
3576 io_double_put_req(req);
3577 } else
Jens Axboe0e0702d2019-11-14 21:42:10 -07003578 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003579}
3580
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003581#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
3582 IOSQE_IO_HARDLINK)
Jens Axboe9e645e112019-05-10 16:07:28 -06003583
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003584static bool io_submit_sqe(struct io_kiocb *req, struct io_submit_state *state,
Jackie Liua197f662019-11-08 08:09:12 -07003585 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06003586{
Jackie Liua197f662019-11-08 08:09:12 -07003587 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06003588 int ret;
3589
3590 /* enforce forwards compatibility on users */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003591 if (unlikely(req->sqe->flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003592 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03003593 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06003594 }
3595
Jackie Liua197f662019-11-08 08:09:12 -07003596 ret = io_req_set_file(state, req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003597 if (unlikely(ret)) {
3598err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003599 io_cqring_add_event(req, ret);
3600 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003601 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06003602 }
3603
Jens Axboe9e645e112019-05-10 16:07:28 -06003604 /*
3605 * If we already have a head request, queue this one for async
3606 * submittal once the head completes. If we don't have a head but
3607 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3608 * submitted sync once the chain is complete. If none of those
3609 * conditions are true (normal request), then just queue it.
3610 */
3611 if (*link) {
3612 struct io_kiocb *prev = *link;
3613
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003614 if (req->sqe->flags & IOSQE_IO_DRAIN)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003615 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3616
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003617 if (req->sqe->flags & IOSQE_IO_HARDLINK)
3618 req->flags |= REQ_F_HARDLINK;
3619
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003620 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003621 ret = -EAGAIN;
3622 goto err_req;
3623 }
3624
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003625 ret = io_req_defer_prep(req);
Jens Axboe2d283902019-12-04 11:08:05 -07003626 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003627 /* fail even hard links since we don't submit */
Jens Axboe2d283902019-12-04 11:08:05 -07003628 prev->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07003629 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07003630 }
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003631 trace_io_uring_link(ctx, req, prev);
Pavel Begunkov44932332019-12-05 16:16:35 +03003632 list_add_tail(&req->link_list, &prev->link_list);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003633 } else if (req->sqe->flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003634 req->flags |= REQ_F_LINK;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003635 if (req->sqe->flags & IOSQE_IO_HARDLINK)
3636 req->flags |= REQ_F_HARDLINK;
Jens Axboe9e645e112019-05-10 16:07:28 -06003637
Jens Axboe9e645e112019-05-10 16:07:28 -06003638 INIT_LIST_HEAD(&req->link_list);
3639 *link = req;
3640 } else {
Jackie Liua197f662019-11-08 08:09:12 -07003641 io_queue_sqe(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003642 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003643
3644 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06003645}
3646
Jens Axboe9a56a232019-01-09 09:06:50 -07003647/*
3648 * Batched submission is done, ensure local IO is flushed out.
3649 */
3650static void io_submit_state_end(struct io_submit_state *state)
3651{
3652 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06003653 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07003654 if (state->free_reqs)
3655 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3656 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07003657}
3658
3659/*
3660 * Start submission side cache.
3661 */
3662static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08003663 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07003664{
3665 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07003666 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07003667 state->file = NULL;
3668 state->ios_left = max_ios;
3669}
3670
Jens Axboe2b188cc2019-01-07 10:46:33 -07003671static void io_commit_sqring(struct io_ring_ctx *ctx)
3672{
Hristo Venev75b28af2019-08-26 17:23:46 +00003673 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003674
Hristo Venev75b28af2019-08-26 17:23:46 +00003675 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003676 /*
3677 * Ensure any loads from the SQEs are done at this point,
3678 * since once we write the new head, the application could
3679 * write new data to them.
3680 */
Hristo Venev75b28af2019-08-26 17:23:46 +00003681 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003682 }
3683}
3684
3685/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08003686 * Fetch an sqe, if one is available. Note that req->sqe will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07003687 * that is mapped by userspace. This means that care needs to be taken to
3688 * ensure that reads are stable, as we cannot rely on userspace always
3689 * being a good citizen. If members of the sqe are validated and then later
3690 * used, it's important that those reads are done through READ_ONCE() to
3691 * prevent a re-load down the line.
3692 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003693static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003694{
Hristo Venev75b28af2019-08-26 17:23:46 +00003695 struct io_rings *rings = ctx->rings;
3696 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003697 unsigned head;
3698
3699 /*
3700 * The cached sq head (or cq tail) serves two purposes:
3701 *
3702 * 1) allows us to batch the cost of updating the user visible
3703 * head updates.
3704 * 2) allows the kernel side to track the head on its own, even
3705 * though the application is the one updating it.
3706 */
3707 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02003708 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003709 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07003710 return false;
3711
Hristo Venev75b28af2019-08-26 17:23:46 +00003712 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003713 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003714 /*
3715 * All io need record the previous position, if LINK vs DARIN,
3716 * it can be used to mark the position of the first IO in the
3717 * link list.
3718 */
3719 req->sequence = ctx->cached_sq_head;
3720 req->sqe = &ctx->sq_sqes[head];
Jens Axboed625c6e2019-12-17 19:53:05 -07003721 req->opcode = READ_ONCE(req->sqe->opcode);
3722 req->user_data = READ_ONCE(req->sqe->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003723 ctx->cached_sq_head++;
3724 return true;
3725 }
3726
3727 /* drop invalid entries */
3728 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06003729 ctx->cached_sq_dropped++;
3730 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003731 return false;
3732}
3733
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003734static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003735 struct file *ring_file, int ring_fd,
3736 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07003737{
3738 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003739 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003740 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003741 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003742
Jens Axboec4a2ed72019-11-21 21:01:26 -07003743 /* if we have a backlog and couldn't flush it all, return BUSY */
3744 if (!list_empty(&ctx->cq_overflow_list) &&
3745 !io_cqring_overflow_flush(ctx, false))
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003746 return -EBUSY;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003747
3748 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08003749 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003750 statep = &state;
3751 }
3752
3753 for (i = 0; i < nr; i++) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003754 struct io_kiocb *req;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003755 unsigned int sqe_flags;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003756
Pavel Begunkov196be952019-11-07 01:41:06 +03003757 req = io_get_req(ctx, statep);
3758 if (unlikely(!req)) {
3759 if (!submitted)
3760 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003761 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06003762 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003763 if (!io_get_sqring(ctx, req)) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003764 __io_free_req(req);
3765 break;
3766 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003767
Jens Axboed625c6e2019-12-17 19:53:05 -07003768 if (io_req_needs_user(req) && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003769 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3770 if (!mm_fault) {
3771 use_mm(ctx->sqo_mm);
3772 *mm = ctx->sqo_mm;
3773 }
3774 }
3775
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003776 submitted++;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003777 sqe_flags = req->sqe->flags;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003778
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003779 req->ring_file = ring_file;
3780 req->ring_fd = ring_fd;
3781 req->has_user = *mm != NULL;
3782 req->in_async = async;
3783 req->needs_fixed_file = async;
Jens Axboed625c6e2019-12-17 19:53:05 -07003784 trace_io_uring_submit_sqe(ctx, req->user_data, true, async);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003785 if (!io_submit_sqe(req, statep, &link))
3786 break;
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003787 /*
3788 * If previous wasn't linked and we have a linked command,
3789 * that's the end of the chain. Submit the previous link.
3790 */
Pavel Begunkovffbb8d62019-12-17 20:57:05 +03003791 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) && link) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003792 io_queue_link_head(link);
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003793 link = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003794 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003795 }
3796
Jens Axboe9e645e112019-05-10 16:07:28 -06003797 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003798 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003799 if (statep)
3800 io_submit_state_end(&state);
3801
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003802 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3803 io_commit_sqring(ctx);
3804
Jens Axboe6c271ce2019-01-10 11:22:30 -07003805 return submitted;
3806}
3807
3808static int io_sq_thread(void *data)
3809{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003810 struct io_ring_ctx *ctx = data;
3811 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07003812 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003813 mm_segment_t old_fs;
3814 DEFINE_WAIT(wait);
3815 unsigned inflight;
3816 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07003817 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003818
Jens Axboe206aefd2019-11-07 18:27:42 -07003819 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08003820
Jens Axboe6c271ce2019-01-10 11:22:30 -07003821 old_fs = get_fs();
3822 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07003823 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003824
Jens Axboec1edbf52019-11-10 16:56:04 -07003825 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003826 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003827 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003828
3829 if (inflight) {
3830 unsigned nr_events = 0;
3831
3832 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06003833 /*
3834 * inflight is the count of the maximum possible
3835 * entries we submitted, but it can be smaller
3836 * if we dropped some of them. If we don't have
3837 * poll entries available, then we know that we
3838 * have nothing left to poll for. Reset the
3839 * inflight count to zero in that case.
3840 */
3841 mutex_lock(&ctx->uring_lock);
3842 if (!list_empty(&ctx->poll_list))
3843 __io_iopoll_check(ctx, &nr_events, 0);
3844 else
3845 inflight = 0;
3846 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003847 } else {
3848 /*
3849 * Normal IO, just pretend everything completed.
3850 * We don't have to poll completions for that.
3851 */
3852 nr_events = inflight;
3853 }
3854
3855 inflight -= nr_events;
3856 if (!inflight)
3857 timeout = jiffies + ctx->sq_thread_idle;
3858 }
3859
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003860 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003861
3862 /*
3863 * If submit got -EBUSY, flag us as needing the application
3864 * to enter the kernel to reap and flush events.
3865 */
3866 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003867 /*
3868 * We're polling. If we're within the defined idle
3869 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07003870 * to sleep. The exception is if we got EBUSY doing
3871 * more IO, we should wait for the application to
3872 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07003873 */
Jens Axboec1edbf52019-11-10 16:56:04 -07003874 if (inflight ||
3875 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06003876 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003877 continue;
3878 }
3879
3880 /*
3881 * Drop cur_mm before scheduling, we can't hold it for
3882 * long periods (or over schedule()). Do this before
3883 * adding ourselves to the waitqueue, as the unuse/drop
3884 * may sleep.
3885 */
3886 if (cur_mm) {
3887 unuse_mm(cur_mm);
3888 mmput(cur_mm);
3889 cur_mm = NULL;
3890 }
3891
3892 prepare_to_wait(&ctx->sqo_wait, &wait,
3893 TASK_INTERRUPTIBLE);
3894
3895 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00003896 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02003897 /* make sure to read SQ tail after writing flags */
3898 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003899
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003900 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003901 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003902 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003903 finish_wait(&ctx->sqo_wait, &wait);
3904 break;
3905 }
3906 if (signal_pending(current))
3907 flush_signals(current);
3908 schedule();
3909 finish_wait(&ctx->sqo_wait, &wait);
3910
Hristo Venev75b28af2019-08-26 17:23:46 +00003911 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003912 continue;
3913 }
3914 finish_wait(&ctx->sqo_wait, &wait);
3915
Hristo Venev75b28af2019-08-26 17:23:46 +00003916 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003917 }
3918
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003919 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe8a4955f2019-12-09 14:52:35 -07003920 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003921 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07003922 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003923 if (ret > 0)
3924 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003925 }
3926
3927 set_fs(old_fs);
3928 if (cur_mm) {
3929 unuse_mm(cur_mm);
3930 mmput(cur_mm);
3931 }
Jens Axboe181e4482019-11-25 08:52:30 -07003932 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06003933
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003934 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06003935
Jens Axboe6c271ce2019-01-10 11:22:30 -07003936 return 0;
3937}
3938
Jens Axboebda52162019-09-24 13:47:15 -06003939struct io_wait_queue {
3940 struct wait_queue_entry wq;
3941 struct io_ring_ctx *ctx;
3942 unsigned to_wait;
3943 unsigned nr_timeouts;
3944};
3945
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003946static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06003947{
3948 struct io_ring_ctx *ctx = iowq->ctx;
3949
3950 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08003951 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06003952 * started waiting. For timeouts, we always want to return to userspace,
3953 * regardless of event count.
3954 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003955 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06003956 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3957}
3958
3959static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3960 int wake_flags, void *key)
3961{
3962 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3963 wq);
3964
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003965 /* use noflush == true, as we can't safely rely on locking context */
3966 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06003967 return -1;
3968
3969 return autoremove_wake_function(curr, mode, wake_flags, key);
3970}
3971
Jens Axboe2b188cc2019-01-07 10:46:33 -07003972/*
3973 * Wait until events become available, if we don't already have some. The
3974 * application must reap them itself, as they reside on the shared cq ring.
3975 */
3976static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3977 const sigset_t __user *sig, size_t sigsz)
3978{
Jens Axboebda52162019-09-24 13:47:15 -06003979 struct io_wait_queue iowq = {
3980 .wq = {
3981 .private = current,
3982 .func = io_wake_function,
3983 .entry = LIST_HEAD_INIT(iowq.wq.entry),
3984 },
3985 .ctx = ctx,
3986 .to_wait = min_events,
3987 };
Hristo Venev75b28af2019-08-26 17:23:46 +00003988 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003989 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003990
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003991 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003992 return 0;
3993
3994 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003995#ifdef CONFIG_COMPAT
3996 if (in_compat_syscall())
3997 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07003998 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01003999 else
4000#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07004001 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004002
Jens Axboe2b188cc2019-01-07 10:46:33 -07004003 if (ret)
4004 return ret;
4005 }
4006
Jens Axboebda52162019-09-24 13:47:15 -06004007 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004008 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06004009 do {
4010 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
4011 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004012 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06004013 break;
4014 schedule();
4015 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004016 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06004017 break;
4018 }
4019 } while (1);
4020 finish_wait(&ctx->wait, &iowq.wq);
4021
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004022 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004023
Hristo Venev75b28af2019-08-26 17:23:46 +00004024 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004025}
4026
Jens Axboe6b063142019-01-10 22:13:58 -07004027static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
4028{
4029#if defined(CONFIG_UNIX)
4030 if (ctx->ring_sock) {
4031 struct sock *sock = ctx->ring_sock->sk;
4032 struct sk_buff *skb;
4033
4034 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
4035 kfree_skb(skb);
4036 }
4037#else
4038 int i;
4039
Jens Axboe65e19f52019-10-26 07:20:21 -06004040 for (i = 0; i < ctx->nr_user_files; i++) {
4041 struct file *file;
4042
4043 file = io_file_from_index(ctx, i);
4044 if (file)
4045 fput(file);
4046 }
Jens Axboe6b063142019-01-10 22:13:58 -07004047#endif
4048}
4049
4050static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
4051{
Jens Axboe65e19f52019-10-26 07:20:21 -06004052 unsigned nr_tables, i;
4053
4054 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004055 return -ENXIO;
4056
4057 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06004058 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
4059 for (i = 0; i < nr_tables; i++)
4060 kfree(ctx->file_table[i].files);
4061 kfree(ctx->file_table);
4062 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004063 ctx->nr_user_files = 0;
4064 return 0;
4065}
4066
Jens Axboe6c271ce2019-01-10 11:22:30 -07004067static void io_sq_thread_stop(struct io_ring_ctx *ctx)
4068{
4069 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07004070 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004071 /*
4072 * The park is a bit of a work-around, without it we get
4073 * warning spews on shutdown with SQPOLL set and affinity
4074 * set to a single CPU.
4075 */
Jens Axboe06058632019-04-13 09:26:03 -06004076 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004077 kthread_stop(ctx->sqo_thread);
4078 ctx->sqo_thread = NULL;
4079 }
4080}
4081
Jens Axboe6b063142019-01-10 22:13:58 -07004082static void io_finish_async(struct io_ring_ctx *ctx)
4083{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004084 io_sq_thread_stop(ctx);
4085
Jens Axboe561fb042019-10-24 07:25:42 -06004086 if (ctx->io_wq) {
4087 io_wq_destroy(ctx->io_wq);
4088 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004089 }
4090}
4091
4092#if defined(CONFIG_UNIX)
4093static void io_destruct_skb(struct sk_buff *skb)
4094{
4095 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
4096
Jens Axboe561fb042019-10-24 07:25:42 -06004097 if (ctx->io_wq)
4098 io_wq_flush(ctx->io_wq);
Jens Axboe8a997342019-10-09 14:40:13 -06004099
Jens Axboe6b063142019-01-10 22:13:58 -07004100 unix_destruct_scm(skb);
4101}
4102
4103/*
4104 * Ensure the UNIX gc is aware of our file set, so we are certain that
4105 * the io_uring can be safely unregistered on process exit, even if we have
4106 * loops in the file referencing.
4107 */
4108static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
4109{
4110 struct sock *sk = ctx->ring_sock->sk;
4111 struct scm_fp_list *fpl;
4112 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06004113 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07004114
4115 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
4116 unsigned long inflight = ctx->user->unix_inflight + nr;
4117
4118 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
4119 return -EMFILE;
4120 }
4121
4122 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
4123 if (!fpl)
4124 return -ENOMEM;
4125
4126 skb = alloc_skb(0, GFP_KERNEL);
4127 if (!skb) {
4128 kfree(fpl);
4129 return -ENOMEM;
4130 }
4131
4132 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07004133
Jens Axboe08a45172019-10-03 08:11:03 -06004134 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07004135 fpl->user = get_uid(ctx->user);
4136 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004137 struct file *file = io_file_from_index(ctx, i + offset);
4138
4139 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06004140 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06004141 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06004142 unix_inflight(fpl->user, fpl->fp[nr_files]);
4143 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07004144 }
4145
Jens Axboe08a45172019-10-03 08:11:03 -06004146 if (nr_files) {
4147 fpl->max = SCM_MAX_FD;
4148 fpl->count = nr_files;
4149 UNIXCB(skb).fp = fpl;
4150 skb->destructor = io_destruct_skb;
4151 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
4152 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07004153
Jens Axboe08a45172019-10-03 08:11:03 -06004154 for (i = 0; i < nr_files; i++)
4155 fput(fpl->fp[i]);
4156 } else {
4157 kfree_skb(skb);
4158 kfree(fpl);
4159 }
Jens Axboe6b063142019-01-10 22:13:58 -07004160
4161 return 0;
4162}
4163
4164/*
4165 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
4166 * causes regular reference counting to break down. We rely on the UNIX
4167 * garbage collection to take care of this problem for us.
4168 */
4169static int io_sqe_files_scm(struct io_ring_ctx *ctx)
4170{
4171 unsigned left, total;
4172 int ret = 0;
4173
4174 total = 0;
4175 left = ctx->nr_user_files;
4176 while (left) {
4177 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07004178
4179 ret = __io_sqe_files_scm(ctx, this_files, total);
4180 if (ret)
4181 break;
4182 left -= this_files;
4183 total += this_files;
4184 }
4185
4186 if (!ret)
4187 return 0;
4188
4189 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004190 struct file *file = io_file_from_index(ctx, total);
4191
4192 if (file)
4193 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07004194 total++;
4195 }
4196
4197 return ret;
4198}
4199#else
4200static int io_sqe_files_scm(struct io_ring_ctx *ctx)
4201{
4202 return 0;
4203}
4204#endif
4205
Jens Axboe65e19f52019-10-26 07:20:21 -06004206static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
4207 unsigned nr_files)
4208{
4209 int i;
4210
4211 for (i = 0; i < nr_tables; i++) {
4212 struct fixed_file_table *table = &ctx->file_table[i];
4213 unsigned this_files;
4214
4215 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
4216 table->files = kcalloc(this_files, sizeof(struct file *),
4217 GFP_KERNEL);
4218 if (!table->files)
4219 break;
4220 nr_files -= this_files;
4221 }
4222
4223 if (i == nr_tables)
4224 return 0;
4225
4226 for (i = 0; i < nr_tables; i++) {
4227 struct fixed_file_table *table = &ctx->file_table[i];
4228 kfree(table->files);
4229 }
4230 return 1;
4231}
4232
Jens Axboe6b063142019-01-10 22:13:58 -07004233static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
4234 unsigned nr_args)
4235{
4236 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe65e19f52019-10-26 07:20:21 -06004237 unsigned nr_tables;
Jens Axboe6b063142019-01-10 22:13:58 -07004238 int fd, ret = 0;
4239 unsigned i;
4240
Jens Axboe65e19f52019-10-26 07:20:21 -06004241 if (ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004242 return -EBUSY;
4243 if (!nr_args)
4244 return -EINVAL;
4245 if (nr_args > IORING_MAX_FIXED_FILES)
4246 return -EMFILE;
4247
Jens Axboe65e19f52019-10-26 07:20:21 -06004248 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
4249 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
4250 GFP_KERNEL);
4251 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004252 return -ENOMEM;
4253
Jens Axboe65e19f52019-10-26 07:20:21 -06004254 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
4255 kfree(ctx->file_table);
Jens Axboe46568e92019-11-10 08:40:53 -07004256 ctx->file_table = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06004257 return -ENOMEM;
4258 }
4259
Jens Axboe08a45172019-10-03 08:11:03 -06004260 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004261 struct fixed_file_table *table;
4262 unsigned index;
4263
Jens Axboe6b063142019-01-10 22:13:58 -07004264 ret = -EFAULT;
4265 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
4266 break;
Jens Axboe08a45172019-10-03 08:11:03 -06004267 /* allow sparse sets */
4268 if (fd == -1) {
4269 ret = 0;
4270 continue;
4271 }
Jens Axboe6b063142019-01-10 22:13:58 -07004272
Jens Axboe65e19f52019-10-26 07:20:21 -06004273 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4274 index = i & IORING_FILE_TABLE_MASK;
4275 table->files[index] = fget(fd);
Jens Axboe6b063142019-01-10 22:13:58 -07004276
4277 ret = -EBADF;
Jens Axboe65e19f52019-10-26 07:20:21 -06004278 if (!table->files[index])
Jens Axboe6b063142019-01-10 22:13:58 -07004279 break;
4280 /*
4281 * Don't allow io_uring instances to be registered. If UNIX
4282 * isn't enabled, then this causes a reference cycle and this
4283 * instance can never get freed. If UNIX is enabled we'll
4284 * handle it just fine, but there's still no point in allowing
4285 * a ring fd as it doesn't support regular read/write anyway.
4286 */
Jens Axboe65e19f52019-10-26 07:20:21 -06004287 if (table->files[index]->f_op == &io_uring_fops) {
4288 fput(table->files[index]);
Jens Axboe6b063142019-01-10 22:13:58 -07004289 break;
4290 }
Jens Axboe6b063142019-01-10 22:13:58 -07004291 ret = 0;
4292 }
4293
4294 if (ret) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004295 for (i = 0; i < ctx->nr_user_files; i++) {
4296 struct file *file;
Jens Axboe6b063142019-01-10 22:13:58 -07004297
Jens Axboe65e19f52019-10-26 07:20:21 -06004298 file = io_file_from_index(ctx, i);
4299 if (file)
4300 fput(file);
4301 }
4302 for (i = 0; i < nr_tables; i++)
4303 kfree(ctx->file_table[i].files);
4304
4305 kfree(ctx->file_table);
4306 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004307 ctx->nr_user_files = 0;
4308 return ret;
4309 }
4310
4311 ret = io_sqe_files_scm(ctx);
4312 if (ret)
4313 io_sqe_files_unregister(ctx);
4314
4315 return ret;
4316}
4317
Jens Axboec3a31e62019-10-03 13:59:56 -06004318static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
4319{
4320#if defined(CONFIG_UNIX)
Jens Axboe65e19f52019-10-26 07:20:21 -06004321 struct file *file = io_file_from_index(ctx, index);
Jens Axboec3a31e62019-10-03 13:59:56 -06004322 struct sock *sock = ctx->ring_sock->sk;
4323 struct sk_buff_head list, *head = &sock->sk_receive_queue;
4324 struct sk_buff *skb;
4325 int i;
4326
4327 __skb_queue_head_init(&list);
4328
4329 /*
4330 * Find the skb that holds this file in its SCM_RIGHTS. When found,
4331 * remove this entry and rearrange the file array.
4332 */
4333 skb = skb_dequeue(head);
4334 while (skb) {
4335 struct scm_fp_list *fp;
4336
4337 fp = UNIXCB(skb).fp;
4338 for (i = 0; i < fp->count; i++) {
4339 int left;
4340
4341 if (fp->fp[i] != file)
4342 continue;
4343
4344 unix_notinflight(fp->user, fp->fp[i]);
4345 left = fp->count - 1 - i;
4346 if (left) {
4347 memmove(&fp->fp[i], &fp->fp[i + 1],
4348 left * sizeof(struct file *));
4349 }
4350 fp->count--;
4351 if (!fp->count) {
4352 kfree_skb(skb);
4353 skb = NULL;
4354 } else {
4355 __skb_queue_tail(&list, skb);
4356 }
4357 fput(file);
4358 file = NULL;
4359 break;
4360 }
4361
4362 if (!file)
4363 break;
4364
4365 __skb_queue_tail(&list, skb);
4366
4367 skb = skb_dequeue(head);
4368 }
4369
4370 if (skb_peek(&list)) {
4371 spin_lock_irq(&head->lock);
4372 while ((skb = __skb_dequeue(&list)) != NULL)
4373 __skb_queue_tail(head, skb);
4374 spin_unlock_irq(&head->lock);
4375 }
4376#else
Jens Axboe65e19f52019-10-26 07:20:21 -06004377 fput(io_file_from_index(ctx, index));
Jens Axboec3a31e62019-10-03 13:59:56 -06004378#endif
4379}
4380
4381static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
4382 int index)
4383{
4384#if defined(CONFIG_UNIX)
4385 struct sock *sock = ctx->ring_sock->sk;
4386 struct sk_buff_head *head = &sock->sk_receive_queue;
4387 struct sk_buff *skb;
4388
4389 /*
4390 * See if we can merge this file into an existing skb SCM_RIGHTS
4391 * file set. If there's no room, fall back to allocating a new skb
4392 * and filling it in.
4393 */
4394 spin_lock_irq(&head->lock);
4395 skb = skb_peek(head);
4396 if (skb) {
4397 struct scm_fp_list *fpl = UNIXCB(skb).fp;
4398
4399 if (fpl->count < SCM_MAX_FD) {
4400 __skb_unlink(skb, head);
4401 spin_unlock_irq(&head->lock);
4402 fpl->fp[fpl->count] = get_file(file);
4403 unix_inflight(fpl->user, fpl->fp[fpl->count]);
4404 fpl->count++;
4405 spin_lock_irq(&head->lock);
4406 __skb_queue_head(head, skb);
4407 } else {
4408 skb = NULL;
4409 }
4410 }
4411 spin_unlock_irq(&head->lock);
4412
4413 if (skb) {
4414 fput(file);
4415 return 0;
4416 }
4417
4418 return __io_sqe_files_scm(ctx, 1, index);
4419#else
4420 return 0;
4421#endif
4422}
4423
4424static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
4425 unsigned nr_args)
4426{
4427 struct io_uring_files_update up;
4428 __s32 __user *fds;
4429 int fd, i, err;
4430 __u32 done;
4431
Jens Axboe65e19f52019-10-26 07:20:21 -06004432 if (!ctx->file_table)
Jens Axboec3a31e62019-10-03 13:59:56 -06004433 return -ENXIO;
4434 if (!nr_args)
4435 return -EINVAL;
4436 if (copy_from_user(&up, arg, sizeof(up)))
4437 return -EFAULT;
4438 if (check_add_overflow(up.offset, nr_args, &done))
4439 return -EOVERFLOW;
4440 if (done > ctx->nr_user_files)
4441 return -EINVAL;
4442
4443 done = 0;
4444 fds = (__s32 __user *) up.fds;
4445 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004446 struct fixed_file_table *table;
4447 unsigned index;
4448
Jens Axboec3a31e62019-10-03 13:59:56 -06004449 err = 0;
4450 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
4451 err = -EFAULT;
4452 break;
4453 }
4454 i = array_index_nospec(up.offset, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004455 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4456 index = i & IORING_FILE_TABLE_MASK;
4457 if (table->files[index]) {
Jens Axboec3a31e62019-10-03 13:59:56 -06004458 io_sqe_file_unregister(ctx, i);
Jens Axboe65e19f52019-10-26 07:20:21 -06004459 table->files[index] = NULL;
Jens Axboec3a31e62019-10-03 13:59:56 -06004460 }
4461 if (fd != -1) {
4462 struct file *file;
4463
4464 file = fget(fd);
4465 if (!file) {
4466 err = -EBADF;
4467 break;
4468 }
4469 /*
4470 * Don't allow io_uring instances to be registered. If
4471 * UNIX isn't enabled, then this causes a reference
4472 * cycle and this instance can never get freed. If UNIX
4473 * is enabled we'll handle it just fine, but there's
4474 * still no point in allowing a ring fd as it doesn't
4475 * support regular read/write anyway.
4476 */
4477 if (file->f_op == &io_uring_fops) {
4478 fput(file);
4479 err = -EBADF;
4480 break;
4481 }
Jens Axboe65e19f52019-10-26 07:20:21 -06004482 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06004483 err = io_sqe_file_register(ctx, file, i);
4484 if (err)
4485 break;
4486 }
4487 nr_args--;
4488 done++;
4489 up.offset++;
4490 }
4491
4492 return done ? done : err;
4493}
4494
Jens Axboe7d723062019-11-12 22:31:31 -07004495static void io_put_work(struct io_wq_work *work)
4496{
4497 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4498
4499 io_put_req(req);
4500}
4501
4502static void io_get_work(struct io_wq_work *work)
4503{
4504 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4505
4506 refcount_inc(&req->refs);
4507}
4508
Jens Axboe6c271ce2019-01-10 11:22:30 -07004509static int io_sq_offload_start(struct io_ring_ctx *ctx,
4510 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004511{
Jens Axboe576a3472019-11-25 08:49:20 -07004512 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06004513 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004514 int ret;
4515
Jens Axboe6c271ce2019-01-10 11:22:30 -07004516 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004517 mmgrab(current->mm);
4518 ctx->sqo_mm = current->mm;
4519
Jens Axboe6c271ce2019-01-10 11:22:30 -07004520 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06004521 ret = -EPERM;
4522 if (!capable(CAP_SYS_ADMIN))
4523 goto err;
4524
Jens Axboe917257d2019-04-13 09:28:55 -06004525 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
4526 if (!ctx->sq_thread_idle)
4527 ctx->sq_thread_idle = HZ;
4528
Jens Axboe6c271ce2019-01-10 11:22:30 -07004529 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06004530 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004531
Jens Axboe917257d2019-04-13 09:28:55 -06004532 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06004533 if (cpu >= nr_cpu_ids)
4534 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08004535 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06004536 goto err;
4537
Jens Axboe6c271ce2019-01-10 11:22:30 -07004538 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
4539 ctx, cpu,
4540 "io_uring-sq");
4541 } else {
4542 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
4543 "io_uring-sq");
4544 }
4545 if (IS_ERR(ctx->sqo_thread)) {
4546 ret = PTR_ERR(ctx->sqo_thread);
4547 ctx->sqo_thread = NULL;
4548 goto err;
4549 }
4550 wake_up_process(ctx->sqo_thread);
4551 } else if (p->flags & IORING_SETUP_SQ_AFF) {
4552 /* Can't have SQ_AFF without SQPOLL */
4553 ret = -EINVAL;
4554 goto err;
4555 }
4556
Jens Axboe576a3472019-11-25 08:49:20 -07004557 data.mm = ctx->sqo_mm;
4558 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07004559 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07004560 data.get_work = io_get_work;
4561 data.put_work = io_put_work;
4562
Jens Axboe561fb042019-10-24 07:25:42 -06004563 /* Do QD, or 4 * CPUS, whatever is smallest */
4564 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07004565 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06004566 if (IS_ERR(ctx->io_wq)) {
4567 ret = PTR_ERR(ctx->io_wq);
4568 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004569 goto err;
4570 }
4571
4572 return 0;
4573err:
Jens Axboe54a91f32019-09-10 09:15:04 -06004574 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004575 mmdrop(ctx->sqo_mm);
4576 ctx->sqo_mm = NULL;
4577 return ret;
4578}
4579
4580static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
4581{
4582 atomic_long_sub(nr_pages, &user->locked_vm);
4583}
4584
4585static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
4586{
4587 unsigned long page_limit, cur_pages, new_pages;
4588
4589 /* Don't allow more pages than we can safely lock */
4590 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
4591
4592 do {
4593 cur_pages = atomic_long_read(&user->locked_vm);
4594 new_pages = cur_pages + nr_pages;
4595 if (new_pages > page_limit)
4596 return -ENOMEM;
4597 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4598 new_pages) != cur_pages);
4599
4600 return 0;
4601}
4602
4603static void io_mem_free(void *ptr)
4604{
Mark Rutland52e04ef2019-04-30 17:30:21 +01004605 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004606
Mark Rutland52e04ef2019-04-30 17:30:21 +01004607 if (!ptr)
4608 return;
4609
4610 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004611 if (put_page_testzero(page))
4612 free_compound_page(page);
4613}
4614
4615static void *io_mem_alloc(size_t size)
4616{
4617 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4618 __GFP_NORETRY;
4619
4620 return (void *) __get_free_pages(gfp_flags, get_order(size));
4621}
4622
Hristo Venev75b28af2019-08-26 17:23:46 +00004623static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4624 size_t *sq_offset)
4625{
4626 struct io_rings *rings;
4627 size_t off, sq_array_size;
4628
4629 off = struct_size(rings, cqes, cq_entries);
4630 if (off == SIZE_MAX)
4631 return SIZE_MAX;
4632
4633#ifdef CONFIG_SMP
4634 off = ALIGN(off, SMP_CACHE_BYTES);
4635 if (off == 0)
4636 return SIZE_MAX;
4637#endif
4638
4639 sq_array_size = array_size(sizeof(u32), sq_entries);
4640 if (sq_array_size == SIZE_MAX)
4641 return SIZE_MAX;
4642
4643 if (check_add_overflow(off, sq_array_size, &off))
4644 return SIZE_MAX;
4645
4646 if (sq_offset)
4647 *sq_offset = off;
4648
4649 return off;
4650}
4651
Jens Axboe2b188cc2019-01-07 10:46:33 -07004652static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4653{
Hristo Venev75b28af2019-08-26 17:23:46 +00004654 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004655
Hristo Venev75b28af2019-08-26 17:23:46 +00004656 pages = (size_t)1 << get_order(
4657 rings_size(sq_entries, cq_entries, NULL));
4658 pages += (size_t)1 << get_order(
4659 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07004660
Hristo Venev75b28af2019-08-26 17:23:46 +00004661 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004662}
4663
Jens Axboeedafcce2019-01-09 09:16:05 -07004664static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4665{
4666 int i, j;
4667
4668 if (!ctx->user_bufs)
4669 return -ENXIO;
4670
4671 for (i = 0; i < ctx->nr_user_bufs; i++) {
4672 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4673
4674 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07004675 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07004676
4677 if (ctx->account_mem)
4678 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004679 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004680 imu->nr_bvecs = 0;
4681 }
4682
4683 kfree(ctx->user_bufs);
4684 ctx->user_bufs = NULL;
4685 ctx->nr_user_bufs = 0;
4686 return 0;
4687}
4688
4689static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4690 void __user *arg, unsigned index)
4691{
4692 struct iovec __user *src;
4693
4694#ifdef CONFIG_COMPAT
4695 if (ctx->compat) {
4696 struct compat_iovec __user *ciovs;
4697 struct compat_iovec ciov;
4698
4699 ciovs = (struct compat_iovec __user *) arg;
4700 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4701 return -EFAULT;
4702
Jens Axboed55e5f52019-12-11 16:12:15 -07004703 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07004704 dst->iov_len = ciov.iov_len;
4705 return 0;
4706 }
4707#endif
4708 src = (struct iovec __user *) arg;
4709 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4710 return -EFAULT;
4711 return 0;
4712}
4713
4714static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4715 unsigned nr_args)
4716{
4717 struct vm_area_struct **vmas = NULL;
4718 struct page **pages = NULL;
4719 int i, j, got_pages = 0;
4720 int ret = -EINVAL;
4721
4722 if (ctx->user_bufs)
4723 return -EBUSY;
4724 if (!nr_args || nr_args > UIO_MAXIOV)
4725 return -EINVAL;
4726
4727 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4728 GFP_KERNEL);
4729 if (!ctx->user_bufs)
4730 return -ENOMEM;
4731
4732 for (i = 0; i < nr_args; i++) {
4733 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4734 unsigned long off, start, end, ubuf;
4735 int pret, nr_pages;
4736 struct iovec iov;
4737 size_t size;
4738
4739 ret = io_copy_iov(ctx, &iov, arg, i);
4740 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03004741 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07004742
4743 /*
4744 * Don't impose further limits on the size and buffer
4745 * constraints here, we'll -EINVAL later when IO is
4746 * submitted if they are wrong.
4747 */
4748 ret = -EFAULT;
4749 if (!iov.iov_base || !iov.iov_len)
4750 goto err;
4751
4752 /* arbitrary limit, but we need something */
4753 if (iov.iov_len > SZ_1G)
4754 goto err;
4755
4756 ubuf = (unsigned long) iov.iov_base;
4757 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4758 start = ubuf >> PAGE_SHIFT;
4759 nr_pages = end - start;
4760
4761 if (ctx->account_mem) {
4762 ret = io_account_mem(ctx->user, nr_pages);
4763 if (ret)
4764 goto err;
4765 }
4766
4767 ret = 0;
4768 if (!pages || nr_pages > got_pages) {
4769 kfree(vmas);
4770 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004771 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07004772 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004773 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07004774 sizeof(struct vm_area_struct *),
4775 GFP_KERNEL);
4776 if (!pages || !vmas) {
4777 ret = -ENOMEM;
4778 if (ctx->account_mem)
4779 io_unaccount_mem(ctx->user, nr_pages);
4780 goto err;
4781 }
4782 got_pages = nr_pages;
4783 }
4784
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004785 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07004786 GFP_KERNEL);
4787 ret = -ENOMEM;
4788 if (!imu->bvec) {
4789 if (ctx->account_mem)
4790 io_unaccount_mem(ctx->user, nr_pages);
4791 goto err;
4792 }
4793
4794 ret = 0;
4795 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07004796 pret = get_user_pages(ubuf, nr_pages,
4797 FOLL_WRITE | FOLL_LONGTERM,
4798 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004799 if (pret == nr_pages) {
4800 /* don't support file backed memory */
4801 for (j = 0; j < nr_pages; j++) {
4802 struct vm_area_struct *vma = vmas[j];
4803
4804 if (vma->vm_file &&
4805 !is_file_hugepages(vma->vm_file)) {
4806 ret = -EOPNOTSUPP;
4807 break;
4808 }
4809 }
4810 } else {
4811 ret = pret < 0 ? pret : -EFAULT;
4812 }
4813 up_read(&current->mm->mmap_sem);
4814 if (ret) {
4815 /*
4816 * if we did partial map, or found file backed vmas,
4817 * release any pages we did get
4818 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07004819 if (pret > 0)
4820 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004821 if (ctx->account_mem)
4822 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004823 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004824 goto err;
4825 }
4826
4827 off = ubuf & ~PAGE_MASK;
4828 size = iov.iov_len;
4829 for (j = 0; j < nr_pages; j++) {
4830 size_t vec_len;
4831
4832 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4833 imu->bvec[j].bv_page = pages[j];
4834 imu->bvec[j].bv_len = vec_len;
4835 imu->bvec[j].bv_offset = off;
4836 off = 0;
4837 size -= vec_len;
4838 }
4839 /* store original address for later verification */
4840 imu->ubuf = ubuf;
4841 imu->len = iov.iov_len;
4842 imu->nr_bvecs = nr_pages;
4843
4844 ctx->nr_user_bufs++;
4845 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004846 kvfree(pages);
4847 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004848 return 0;
4849err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004850 kvfree(pages);
4851 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004852 io_sqe_buffer_unregister(ctx);
4853 return ret;
4854}
4855
Jens Axboe9b402842019-04-11 11:45:41 -06004856static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4857{
4858 __s32 __user *fds = arg;
4859 int fd;
4860
4861 if (ctx->cq_ev_fd)
4862 return -EBUSY;
4863
4864 if (copy_from_user(&fd, fds, sizeof(*fds)))
4865 return -EFAULT;
4866
4867 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4868 if (IS_ERR(ctx->cq_ev_fd)) {
4869 int ret = PTR_ERR(ctx->cq_ev_fd);
4870 ctx->cq_ev_fd = NULL;
4871 return ret;
4872 }
4873
4874 return 0;
4875}
4876
4877static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4878{
4879 if (ctx->cq_ev_fd) {
4880 eventfd_ctx_put(ctx->cq_ev_fd);
4881 ctx->cq_ev_fd = NULL;
4882 return 0;
4883 }
4884
4885 return -ENXIO;
4886}
4887
Jens Axboe2b188cc2019-01-07 10:46:33 -07004888static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4889{
Jens Axboe6b063142019-01-10 22:13:58 -07004890 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004891 if (ctx->sqo_mm)
4892 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07004893
4894 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07004895 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07004896 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06004897 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07004898
Jens Axboe2b188cc2019-01-07 10:46:33 -07004899#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07004900 if (ctx->ring_sock) {
4901 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004902 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07004903 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004904#endif
4905
Hristo Venev75b28af2019-08-26 17:23:46 +00004906 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004907 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004908
4909 percpu_ref_exit(&ctx->refs);
4910 if (ctx->account_mem)
4911 io_unaccount_mem(ctx->user,
4912 ring_pages(ctx->sq_entries, ctx->cq_entries));
4913 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07004914 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07004915 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07004916 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07004917 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004918 kfree(ctx);
4919}
4920
4921static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4922{
4923 struct io_ring_ctx *ctx = file->private_data;
4924 __poll_t mask = 0;
4925
4926 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02004927 /*
4928 * synchronizes with barrier from wq_has_sleeper call in
4929 * io_commit_cqring
4930 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004931 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00004932 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4933 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004934 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08004935 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004936 mask |= EPOLLIN | EPOLLRDNORM;
4937
4938 return mask;
4939}
4940
4941static int io_uring_fasync(int fd, struct file *file, int on)
4942{
4943 struct io_ring_ctx *ctx = file->private_data;
4944
4945 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4946}
4947
4948static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4949{
4950 mutex_lock(&ctx->uring_lock);
4951 percpu_ref_kill(&ctx->refs);
4952 mutex_unlock(&ctx->uring_lock);
4953
Jens Axboe5262f562019-09-17 12:26:57 -06004954 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004955 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06004956
4957 if (ctx->io_wq)
4958 io_wq_cancel_all(ctx->io_wq);
4959
Jens Axboedef596e2019-01-09 08:59:42 -07004960 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07004961 /* if we failed setting up the ctx, we might not have any rings */
4962 if (ctx->rings)
4963 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07004964 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004965 io_ring_ctx_free(ctx);
4966}
4967
4968static int io_uring_release(struct inode *inode, struct file *file)
4969{
4970 struct io_ring_ctx *ctx = file->private_data;
4971
4972 file->private_data = NULL;
4973 io_ring_ctx_wait_and_kill(ctx);
4974 return 0;
4975}
4976
Jens Axboefcb323c2019-10-24 12:39:47 -06004977static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4978 struct files_struct *files)
4979{
4980 struct io_kiocb *req;
4981 DEFINE_WAIT(wait);
4982
4983 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07004984 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06004985
4986 spin_lock_irq(&ctx->inflight_lock);
4987 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07004988 if (req->work.files != files)
4989 continue;
4990 /* req is being completed, ignore */
4991 if (!refcount_inc_not_zero(&req->refs))
4992 continue;
4993 cancel_req = req;
4994 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06004995 }
Jens Axboe768134d2019-11-10 20:30:53 -07004996 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06004997 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07004998 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06004999 spin_unlock_irq(&ctx->inflight_lock);
5000
Jens Axboe768134d2019-11-10 20:30:53 -07005001 /* We need to keep going until we don't find a matching req */
5002 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005003 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08005004
5005 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
5006 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06005007 schedule();
5008 }
Jens Axboe768134d2019-11-10 20:30:53 -07005009 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06005010}
5011
5012static int io_uring_flush(struct file *file, void *data)
5013{
5014 struct io_ring_ctx *ctx = file->private_data;
5015
5016 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005017 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
5018 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06005019 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005020 }
Jens Axboefcb323c2019-10-24 12:39:47 -06005021 return 0;
5022}
5023
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005024static void *io_uring_validate_mmap_request(struct file *file,
5025 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005026{
Jens Axboe2b188cc2019-01-07 10:46:33 -07005027 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005028 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005029 struct page *page;
5030 void *ptr;
5031
5032 switch (offset) {
5033 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00005034 case IORING_OFF_CQ_RING:
5035 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005036 break;
5037 case IORING_OFF_SQES:
5038 ptr = ctx->sq_sqes;
5039 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005040 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005041 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005042 }
5043
5044 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07005045 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005046 return ERR_PTR(-EINVAL);
5047
5048 return ptr;
5049}
5050
5051#ifdef CONFIG_MMU
5052
5053static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
5054{
5055 size_t sz = vma->vm_end - vma->vm_start;
5056 unsigned long pfn;
5057 void *ptr;
5058
5059 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
5060 if (IS_ERR(ptr))
5061 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005062
5063 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
5064 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
5065}
5066
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005067#else /* !CONFIG_MMU */
5068
5069static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
5070{
5071 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
5072}
5073
5074static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
5075{
5076 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
5077}
5078
5079static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
5080 unsigned long addr, unsigned long len,
5081 unsigned long pgoff, unsigned long flags)
5082{
5083 void *ptr;
5084
5085 ptr = io_uring_validate_mmap_request(file, pgoff, len);
5086 if (IS_ERR(ptr))
5087 return PTR_ERR(ptr);
5088
5089 return (unsigned long) ptr;
5090}
5091
5092#endif /* !CONFIG_MMU */
5093
Jens Axboe2b188cc2019-01-07 10:46:33 -07005094SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
5095 u32, min_complete, u32, flags, const sigset_t __user *, sig,
5096 size_t, sigsz)
5097{
5098 struct io_ring_ctx *ctx;
5099 long ret = -EBADF;
5100 int submitted = 0;
5101 struct fd f;
5102
Jens Axboe6c271ce2019-01-10 11:22:30 -07005103 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005104 return -EINVAL;
5105
5106 f = fdget(fd);
5107 if (!f.file)
5108 return -EBADF;
5109
5110 ret = -EOPNOTSUPP;
5111 if (f.file->f_op != &io_uring_fops)
5112 goto out_fput;
5113
5114 ret = -ENXIO;
5115 ctx = f.file->private_data;
5116 if (!percpu_ref_tryget(&ctx->refs))
5117 goto out_fput;
5118
Jens Axboe6c271ce2019-01-10 11:22:30 -07005119 /*
5120 * For SQ polling, the thread will do all submissions and completions.
5121 * Just return the requested submit count, and wake the thread if
5122 * we were asked to.
5123 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06005124 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005125 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07005126 if (!list_empty_careful(&ctx->cq_overflow_list))
5127 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005128 if (flags & IORING_ENTER_SQ_WAKEUP)
5129 wake_up(&ctx->sqo_wait);
5130 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06005131 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005132 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005133
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005134 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005135 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005136 /* already have mm, so io_submit_sqes() won't try to grab it */
5137 cur_mm = ctx->sqo_mm;
5138 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
5139 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005140 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03005141
5142 if (submitted != to_submit)
5143 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005144 }
5145 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07005146 unsigned nr_events = 0;
5147
Jens Axboe2b188cc2019-01-07 10:46:33 -07005148 min_complete = min(min_complete, ctx->cq_entries);
5149
Jens Axboedef596e2019-01-09 08:59:42 -07005150 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07005151 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07005152 } else {
5153 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
5154 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005155 }
5156
Pavel Begunkov7c504e652019-12-18 19:53:45 +03005157out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03005158 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005159out_fput:
5160 fdput(f);
5161 return submitted ? submitted : ret;
5162}
5163
5164static const struct file_operations io_uring_fops = {
5165 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06005166 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07005167 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005168#ifndef CONFIG_MMU
5169 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
5170 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
5171#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07005172 .poll = io_uring_poll,
5173 .fasync = io_uring_fasync,
5174};
5175
5176static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
5177 struct io_uring_params *p)
5178{
Hristo Venev75b28af2019-08-26 17:23:46 +00005179 struct io_rings *rings;
5180 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005181
Hristo Venev75b28af2019-08-26 17:23:46 +00005182 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
5183 if (size == SIZE_MAX)
5184 return -EOVERFLOW;
5185
5186 rings = io_mem_alloc(size);
5187 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005188 return -ENOMEM;
5189
Hristo Venev75b28af2019-08-26 17:23:46 +00005190 ctx->rings = rings;
5191 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
5192 rings->sq_ring_mask = p->sq_entries - 1;
5193 rings->cq_ring_mask = p->cq_entries - 1;
5194 rings->sq_ring_entries = p->sq_entries;
5195 rings->cq_ring_entries = p->cq_entries;
5196 ctx->sq_mask = rings->sq_ring_mask;
5197 ctx->cq_mask = rings->cq_ring_mask;
5198 ctx->sq_entries = rings->sq_ring_entries;
5199 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005200
5201 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07005202 if (size == SIZE_MAX) {
5203 io_mem_free(ctx->rings);
5204 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005205 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07005206 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005207
5208 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07005209 if (!ctx->sq_sqes) {
5210 io_mem_free(ctx->rings);
5211 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005212 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07005213 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005214
Jens Axboe2b188cc2019-01-07 10:46:33 -07005215 return 0;
5216}
5217
5218/*
5219 * Allocate an anonymous fd, this is what constitutes the application
5220 * visible backing of an io_uring instance. The application mmaps this
5221 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
5222 * we have to tie this fd to a socket for file garbage collection purposes.
5223 */
5224static int io_uring_get_fd(struct io_ring_ctx *ctx)
5225{
5226 struct file *file;
5227 int ret;
5228
5229#if defined(CONFIG_UNIX)
5230 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
5231 &ctx->ring_sock);
5232 if (ret)
5233 return ret;
5234#endif
5235
5236 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
5237 if (ret < 0)
5238 goto err;
5239
5240 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
5241 O_RDWR | O_CLOEXEC);
5242 if (IS_ERR(file)) {
5243 put_unused_fd(ret);
5244 ret = PTR_ERR(file);
5245 goto err;
5246 }
5247
5248#if defined(CONFIG_UNIX)
5249 ctx->ring_sock->file = file;
Jens Axboe6b063142019-01-10 22:13:58 -07005250 ctx->ring_sock->sk->sk_user_data = ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005251#endif
5252 fd_install(ret, file);
5253 return ret;
5254err:
5255#if defined(CONFIG_UNIX)
5256 sock_release(ctx->ring_sock);
5257 ctx->ring_sock = NULL;
5258#endif
5259 return ret;
5260}
5261
5262static int io_uring_create(unsigned entries, struct io_uring_params *p)
5263{
5264 struct user_struct *user = NULL;
5265 struct io_ring_ctx *ctx;
5266 bool account_mem;
5267 int ret;
5268
5269 if (!entries || entries > IORING_MAX_ENTRIES)
5270 return -EINVAL;
5271
5272 /*
5273 * Use twice as many entries for the CQ ring. It's possible for the
5274 * application to drive a higher depth than the size of the SQ ring,
5275 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06005276 * some flexibility in overcommitting a bit. If the application has
5277 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
5278 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07005279 */
5280 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06005281 if (p->flags & IORING_SETUP_CQSIZE) {
5282 /*
5283 * If IORING_SETUP_CQSIZE is set, we do the same roundup
5284 * to a power-of-two, if it isn't already. We do NOT impose
5285 * any cq vs sq ring sizing.
5286 */
5287 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
5288 return -EINVAL;
5289 p->cq_entries = roundup_pow_of_two(p->cq_entries);
5290 } else {
5291 p->cq_entries = 2 * p->sq_entries;
5292 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005293
5294 user = get_uid(current_user());
5295 account_mem = !capable(CAP_IPC_LOCK);
5296
5297 if (account_mem) {
5298 ret = io_account_mem(user,
5299 ring_pages(p->sq_entries, p->cq_entries));
5300 if (ret) {
5301 free_uid(user);
5302 return ret;
5303 }
5304 }
5305
5306 ctx = io_ring_ctx_alloc(p);
5307 if (!ctx) {
5308 if (account_mem)
5309 io_unaccount_mem(user, ring_pages(p->sq_entries,
5310 p->cq_entries));
5311 free_uid(user);
5312 return -ENOMEM;
5313 }
5314 ctx->compat = in_compat_syscall();
5315 ctx->account_mem = account_mem;
5316 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07005317 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07005318
5319 ret = io_allocate_scq_urings(ctx, p);
5320 if (ret)
5321 goto err;
5322
Jens Axboe6c271ce2019-01-10 11:22:30 -07005323 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005324 if (ret)
5325 goto err;
5326
Jens Axboe2b188cc2019-01-07 10:46:33 -07005327 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005328 p->sq_off.head = offsetof(struct io_rings, sq.head);
5329 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
5330 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
5331 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
5332 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
5333 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
5334 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005335
5336 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005337 p->cq_off.head = offsetof(struct io_rings, cq.head);
5338 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
5339 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
5340 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
5341 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
5342 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06005343
Jens Axboe044c1ab2019-10-28 09:15:33 -06005344 /*
5345 * Install ring fd as the very last thing, so we don't risk someone
5346 * having closed it before we finish setup
5347 */
5348 ret = io_uring_get_fd(ctx);
5349 if (ret < 0)
5350 goto err;
5351
Jens Axboeda8c9692019-12-02 18:51:26 -07005352 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
5353 IORING_FEAT_SUBMIT_STABLE;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005354 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005355 return ret;
5356err:
5357 io_ring_ctx_wait_and_kill(ctx);
5358 return ret;
5359}
5360
5361/*
5362 * Sets up an aio uring context, and returns the fd. Applications asks for a
5363 * ring size, we return the actual sq/cq ring sizes (among other things) in the
5364 * params structure passed in.
5365 */
5366static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
5367{
5368 struct io_uring_params p;
5369 long ret;
5370 int i;
5371
5372 if (copy_from_user(&p, params, sizeof(p)))
5373 return -EFAULT;
5374 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
5375 if (p.resv[i])
5376 return -EINVAL;
5377 }
5378
Jens Axboe6c271ce2019-01-10 11:22:30 -07005379 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe33a107f2019-10-04 12:10:03 -06005380 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005381 return -EINVAL;
5382
5383 ret = io_uring_create(entries, &p);
5384 if (ret < 0)
5385 return ret;
5386
5387 if (copy_to_user(params, &p, sizeof(p)))
5388 return -EFAULT;
5389
5390 return ret;
5391}
5392
5393SYSCALL_DEFINE2(io_uring_setup, u32, entries,
5394 struct io_uring_params __user *, params)
5395{
5396 return io_uring_setup(entries, params);
5397}
5398
Jens Axboeedafcce2019-01-09 09:16:05 -07005399static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
5400 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06005401 __releases(ctx->uring_lock)
5402 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07005403{
5404 int ret;
5405
Jens Axboe35fa71a2019-04-22 10:23:23 -06005406 /*
5407 * We're inside the ring mutex, if the ref is already dying, then
5408 * someone else killed the ctx or is already going through
5409 * io_uring_register().
5410 */
5411 if (percpu_ref_is_dying(&ctx->refs))
5412 return -ENXIO;
5413
Jens Axboeedafcce2019-01-09 09:16:05 -07005414 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06005415
5416 /*
5417 * Drop uring mutex before waiting for references to exit. If another
5418 * thread is currently inside io_uring_enter() it might need to grab
5419 * the uring_lock to make progress. If we hold it here across the drain
5420 * wait, then we can deadlock. It's safe to drop the mutex here, since
5421 * no new references will come in after we've killed the percpu ref.
5422 */
5423 mutex_unlock(&ctx->uring_lock);
Jens Axboe206aefd2019-11-07 18:27:42 -07005424 wait_for_completion(&ctx->completions[0]);
Jens Axboeb19062a2019-04-15 10:49:38 -06005425 mutex_lock(&ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07005426
5427 switch (opcode) {
5428 case IORING_REGISTER_BUFFERS:
5429 ret = io_sqe_buffer_register(ctx, arg, nr_args);
5430 break;
5431 case IORING_UNREGISTER_BUFFERS:
5432 ret = -EINVAL;
5433 if (arg || nr_args)
5434 break;
5435 ret = io_sqe_buffer_unregister(ctx);
5436 break;
Jens Axboe6b063142019-01-10 22:13:58 -07005437 case IORING_REGISTER_FILES:
5438 ret = io_sqe_files_register(ctx, arg, nr_args);
5439 break;
5440 case IORING_UNREGISTER_FILES:
5441 ret = -EINVAL;
5442 if (arg || nr_args)
5443 break;
5444 ret = io_sqe_files_unregister(ctx);
5445 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06005446 case IORING_REGISTER_FILES_UPDATE:
5447 ret = io_sqe_files_update(ctx, arg, nr_args);
5448 break;
Jens Axboe9b402842019-04-11 11:45:41 -06005449 case IORING_REGISTER_EVENTFD:
5450 ret = -EINVAL;
5451 if (nr_args != 1)
5452 break;
5453 ret = io_eventfd_register(ctx, arg);
5454 break;
5455 case IORING_UNREGISTER_EVENTFD:
5456 ret = -EINVAL;
5457 if (arg || nr_args)
5458 break;
5459 ret = io_eventfd_unregister(ctx);
5460 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07005461 default:
5462 ret = -EINVAL;
5463 break;
5464 }
5465
5466 /* bring the ctx back to life */
Jens Axboe206aefd2019-11-07 18:27:42 -07005467 reinit_completion(&ctx->completions[0]);
Jens Axboeedafcce2019-01-09 09:16:05 -07005468 percpu_ref_reinit(&ctx->refs);
5469 return ret;
5470}
5471
5472SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
5473 void __user *, arg, unsigned int, nr_args)
5474{
5475 struct io_ring_ctx *ctx;
5476 long ret = -EBADF;
5477 struct fd f;
5478
5479 f = fdget(fd);
5480 if (!f.file)
5481 return -EBADF;
5482
5483 ret = -EOPNOTSUPP;
5484 if (f.file->f_op != &io_uring_fops)
5485 goto out_fput;
5486
5487 ctx = f.file->private_data;
5488
5489 mutex_lock(&ctx->uring_lock);
5490 ret = __io_uring_register(ctx, opcode, arg, nr_args);
5491 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005492 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
5493 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005494out_fput:
5495 fdput(f);
5496 return ret;
5497}
5498
Jens Axboe2b188cc2019-01-07 10:46:33 -07005499static int __init io_uring_init(void)
5500{
5501 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
5502 return 0;
5503};
5504__initcall(io_uring_init);