blob: 89e5b19044cc7f267c1db16bbb010ed322b784a1 [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 Axboe9adbd452019-12-20 08:45:55 -0700335struct io_rw {
336 /* NOTE: kiocb has the file as the first member, so don't do it here */
337 struct kiocb kiocb;
338 u64 addr;
339 u64 len;
340};
341
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700342struct io_connect {
343 struct file *file;
344 struct sockaddr __user *addr;
345 int addr_len;
346};
347
Jens Axboee47293f2019-12-20 08:58:21 -0700348struct io_sr_msg {
349 struct file *file;
350 struct user_msghdr __user *msg;
351 int msg_flags;
352};
353
Jens Axboef499a022019-12-02 16:28:46 -0700354struct io_async_connect {
355 struct sockaddr_storage address;
356};
357
Jens Axboe03b12302019-12-02 18:50:25 -0700358struct io_async_msghdr {
359 struct iovec fast_iov[UIO_FASTIOV];
360 struct iovec *iov;
361 struct sockaddr __user *uaddr;
362 struct msghdr msg;
363};
364
Jens Axboef67676d2019-12-02 11:03:47 -0700365struct io_async_rw {
366 struct iovec fast_iov[UIO_FASTIOV];
367 struct iovec *iov;
368 ssize_t nr_segs;
369 ssize_t size;
370};
371
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700372struct io_async_ctx {
373 struct io_uring_sqe sqe;
Jens Axboef67676d2019-12-02 11:03:47 -0700374 union {
375 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700376 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700377 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700378 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700379 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700380};
381
Jens Axboe09bb8392019-03-13 12:39:28 -0600382/*
383 * NOTE! Each of the iocb union members has the file pointer
384 * as the first entry in their struct definition. So you can
385 * access the file pointer through any of the sub-structs,
386 * or directly as just 'ki_filp' in this struct.
387 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700388struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700389 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600390 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700391 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700392 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700393 struct io_accept accept;
394 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700395 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700396 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700397 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700398 struct io_sr_msg sr_msg;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700399 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700400
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300401 const struct io_uring_sqe *sqe;
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700402 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300403 struct file *ring_file;
404 int ring_fd;
405 bool has_user;
406 bool in_async;
407 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700408 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700409
410 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700411 union {
412 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700413 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700414 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600415 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700416 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700417 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200418#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700419#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700420#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700421#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200422#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
423#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600424#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700425#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800426#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300427#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600428#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600429#define REQ_F_ISREG 2048 /* regular file */
430#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700431#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800432#define REQ_F_INFLIGHT 16384 /* on inflight list */
433#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe4e88d6e2019-12-07 20:59:47 -0700434#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700435#define REQ_F_PREPPED 131072 /* request already opcode prepared */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700436 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600437 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600438 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700439
Jens Axboefcb323c2019-10-24 12:39:47 -0600440 struct list_head inflight_entry;
441
Jens Axboe561fb042019-10-24 07:25:42 -0600442 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700443};
444
445#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700446#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700447
Jens Axboe9a56a232019-01-09 09:06:50 -0700448struct io_submit_state {
449 struct blk_plug plug;
450
451 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700452 * io_kiocb alloc cache
453 */
454 void *reqs[IO_IOPOLL_BATCH];
455 unsigned int free_reqs;
456 unsigned int cur_req;
457
458 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700459 * File reference cache
460 */
461 struct file *file;
462 unsigned int fd;
463 unsigned int has_refs;
464 unsigned int used_refs;
465 unsigned int ios_left;
466};
467
Jens Axboe561fb042019-10-24 07:25:42 -0600468static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700469static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liu4fe2c962019-09-09 20:50:40 +0800470static void __io_free_req(struct io_kiocb *req);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800471static void io_put_req(struct io_kiocb *req);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700472static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700473static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700474static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
475static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600476
Jens Axboe2b188cc2019-01-07 10:46:33 -0700477static struct kmem_cache *req_cachep;
478
479static const struct file_operations io_uring_fops;
480
481struct sock *io_uring_get_socket(struct file *file)
482{
483#if defined(CONFIG_UNIX)
484 if (file->f_op == &io_uring_fops) {
485 struct io_ring_ctx *ctx = file->private_data;
486
487 return ctx->ring_sock->sk;
488 }
489#endif
490 return NULL;
491}
492EXPORT_SYMBOL(io_uring_get_socket);
493
494static void io_ring_ctx_ref_free(struct percpu_ref *ref)
495{
496 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
497
Jens Axboe206aefd2019-11-07 18:27:42 -0700498 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700499}
500
501static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
502{
503 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700504 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700505
506 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
507 if (!ctx)
508 return NULL;
509
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700510 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
511 if (!ctx->fallback_req)
512 goto err;
513
Jens Axboe206aefd2019-11-07 18:27:42 -0700514 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
515 if (!ctx->completions)
516 goto err;
517
Jens Axboe78076bb2019-12-04 19:56:40 -0700518 /*
519 * Use 5 bits less than the max cq entries, that should give us around
520 * 32 entries per hash list if totally full and uniformly spread.
521 */
522 hash_bits = ilog2(p->cq_entries);
523 hash_bits -= 5;
524 if (hash_bits <= 0)
525 hash_bits = 1;
526 ctx->cancel_hash_bits = hash_bits;
527 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
528 GFP_KERNEL);
529 if (!ctx->cancel_hash)
530 goto err;
531 __hash_init(ctx->cancel_hash, 1U << hash_bits);
532
Roman Gushchin21482892019-05-07 10:01:48 -0700533 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700534 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
535 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700536
537 ctx->flags = p->flags;
538 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700539 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700540 init_completion(&ctx->completions[0]);
541 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700542 mutex_init(&ctx->uring_lock);
543 init_waitqueue_head(&ctx->wait);
544 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700545 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600546 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600547 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600548 init_waitqueue_head(&ctx->inflight_wait);
549 spin_lock_init(&ctx->inflight_lock);
550 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700551 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700552err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700553 if (ctx->fallback_req)
554 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700555 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700556 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700557 kfree(ctx);
558 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700559}
560
Bob Liu9d858b22019-11-13 18:06:25 +0800561static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600562{
Jackie Liua197f662019-11-08 08:09:12 -0700563 struct io_ring_ctx *ctx = req->ctx;
564
Jens Axboe498ccd92019-10-25 10:04:25 -0600565 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
566 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600567}
568
Bob Liu9d858b22019-11-13 18:06:25 +0800569static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600570{
Bob Liu9d858b22019-11-13 18:06:25 +0800571 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
572 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600573
Bob Liu9d858b22019-11-13 18:06:25 +0800574 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600575}
576
577static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600578{
579 struct io_kiocb *req;
580
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600581 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800582 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600583 list_del_init(&req->list);
584 return req;
585 }
586
587 return NULL;
588}
589
Jens Axboe5262f562019-09-17 12:26:57 -0600590static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
591{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600592 struct io_kiocb *req;
593
594 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700595 if (req) {
596 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
597 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800598 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700599 list_del_init(&req->list);
600 return req;
601 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600602 }
603
604 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600605}
606
Jens Axboede0617e2019-04-06 21:51:27 -0600607static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700608{
Hristo Venev75b28af2019-08-26 17:23:46 +0000609 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700610
Hristo Venev75b28af2019-08-26 17:23:46 +0000611 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700612 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000613 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700614
Jens Axboe2b188cc2019-01-07 10:46:33 -0700615 if (wq_has_sleeper(&ctx->cq_wait)) {
616 wake_up_interruptible(&ctx->cq_wait);
617 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
618 }
619 }
620}
621
Jens Axboed625c6e2019-12-17 19:53:05 -0700622static inline bool io_req_needs_user(struct io_kiocb *req)
Jens Axboe18d9be12019-09-10 09:13:05 -0600623{
Jens Axboed625c6e2019-12-17 19:53:05 -0700624 return !(req->opcode == IORING_OP_READ_FIXED ||
625 req->opcode == IORING_OP_WRITE_FIXED);
Jens Axboe561fb042019-10-24 07:25:42 -0600626}
627
Jens Axboe94ae5e72019-11-14 19:39:52 -0700628static inline bool io_prep_async_work(struct io_kiocb *req,
629 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600630{
631 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600632
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300633 if (req->sqe) {
Jens Axboed625c6e2019-12-17 19:53:05 -0700634 switch (req->opcode) {
Jens Axboe6cc47d12019-09-18 11:18:23 -0600635 case IORING_OP_WRITEV:
636 case IORING_OP_WRITE_FIXED:
Jens Axboe53108d42019-12-09 20:12:38 -0700637 /* only regular files should be hashed for writes */
638 if (req->flags & REQ_F_ISREG)
639 do_hashed = true;
Jens Axboe5f8fd2d32019-11-07 10:57:36 -0700640 /* fall-through */
641 case IORING_OP_READV:
642 case IORING_OP_READ_FIXED:
643 case IORING_OP_SENDMSG:
644 case IORING_OP_RECVMSG:
645 case IORING_OP_ACCEPT:
646 case IORING_OP_POLL_ADD:
Jens Axboef8e85cf2019-11-23 14:24:24 -0700647 case IORING_OP_CONNECT:
Jens Axboe5f8fd2d32019-11-07 10:57:36 -0700648 /*
649 * We know REQ_F_ISREG is not set on some of these
650 * opcodes, but this enables us to keep the check in
651 * just one place.
652 */
653 if (!(req->flags & REQ_F_ISREG))
654 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe6cc47d12019-09-18 11:18:23 -0600655 break;
656 }
Jens Axboed625c6e2019-12-17 19:53:05 -0700657 if (io_req_needs_user(req))
Jens Axboe561fb042019-10-24 07:25:42 -0600658 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600659 }
660
Jens Axboe94ae5e72019-11-14 19:39:52 -0700661 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600662 return do_hashed;
663}
664
Jackie Liua197f662019-11-08 08:09:12 -0700665static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600666{
Jackie Liua197f662019-11-08 08:09:12 -0700667 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700668 struct io_kiocb *link;
669 bool do_hashed;
670
671 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600672
673 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
674 req->flags);
675 if (!do_hashed) {
676 io_wq_enqueue(ctx->io_wq, &req->work);
677 } else {
678 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
679 file_inode(req->file));
680 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700681
682 if (link)
683 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600684}
685
Jens Axboe5262f562019-09-17 12:26:57 -0600686static void io_kill_timeout(struct io_kiocb *req)
687{
688 int ret;
689
Jens Axboe2d283902019-12-04 11:08:05 -0700690 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600691 if (ret != -1) {
692 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600693 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700694 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800695 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600696 }
697}
698
699static void io_kill_timeouts(struct io_ring_ctx *ctx)
700{
701 struct io_kiocb *req, *tmp;
702
703 spin_lock_irq(&ctx->completion_lock);
704 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
705 io_kill_timeout(req);
706 spin_unlock_irq(&ctx->completion_lock);
707}
708
Jens Axboede0617e2019-04-06 21:51:27 -0600709static void io_commit_cqring(struct io_ring_ctx *ctx)
710{
711 struct io_kiocb *req;
712
Jens Axboe5262f562019-09-17 12:26:57 -0600713 while ((req = io_get_timeout_req(ctx)) != NULL)
714 io_kill_timeout(req);
715
Jens Axboede0617e2019-04-06 21:51:27 -0600716 __io_commit_cqring(ctx);
717
718 while ((req = io_get_deferred_req(ctx)) != NULL) {
719 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700720 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600721 }
722}
723
Jens Axboe2b188cc2019-01-07 10:46:33 -0700724static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
725{
Hristo Venev75b28af2019-08-26 17:23:46 +0000726 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700727 unsigned tail;
728
729 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200730 /*
731 * writes to the cq entry need to come after reading head; the
732 * control dependency is enough as we're using WRITE_ONCE to
733 * fill the cq entry
734 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000735 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700736 return NULL;
737
738 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000739 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700740}
741
Jens Axboe8c838782019-03-12 15:48:16 -0600742static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
743{
744 if (waitqueue_active(&ctx->wait))
745 wake_up(&ctx->wait);
746 if (waitqueue_active(&ctx->sqo_wait))
747 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600748 if (ctx->cq_ev_fd)
749 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600750}
751
Jens Axboec4a2ed72019-11-21 21:01:26 -0700752/* Returns true if there are no backlogged entries after the flush */
753static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700754{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700755 struct io_rings *rings = ctx->rings;
756 struct io_uring_cqe *cqe;
757 struct io_kiocb *req;
758 unsigned long flags;
759 LIST_HEAD(list);
760
761 if (!force) {
762 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700763 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700764 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
765 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700766 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700767 }
768
769 spin_lock_irqsave(&ctx->completion_lock, flags);
770
771 /* if force is set, the ring is going away. always drop after that */
772 if (force)
773 ctx->cq_overflow_flushed = true;
774
Jens Axboec4a2ed72019-11-21 21:01:26 -0700775 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700776 while (!list_empty(&ctx->cq_overflow_list)) {
777 cqe = io_get_cqring(ctx);
778 if (!cqe && !force)
779 break;
780
781 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
782 list);
783 list_move(&req->list, &list);
784 if (cqe) {
785 WRITE_ONCE(cqe->user_data, req->user_data);
786 WRITE_ONCE(cqe->res, req->result);
787 WRITE_ONCE(cqe->flags, 0);
788 } else {
789 WRITE_ONCE(ctx->rings->cq_overflow,
790 atomic_inc_return(&ctx->cached_cq_overflow));
791 }
792 }
793
794 io_commit_cqring(ctx);
795 spin_unlock_irqrestore(&ctx->completion_lock, flags);
796 io_cqring_ev_posted(ctx);
797
798 while (!list_empty(&list)) {
799 req = list_first_entry(&list, struct io_kiocb, list);
800 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800801 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700802 }
Jens Axboec4a2ed72019-11-21 21:01:26 -0700803
804 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700805}
806
Jens Axboe78e19bb2019-11-06 15:21:34 -0700807static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700808{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700809 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700810 struct io_uring_cqe *cqe;
811
Jens Axboe78e19bb2019-11-06 15:21:34 -0700812 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -0700813
Jens Axboe2b188cc2019-01-07 10:46:33 -0700814 /*
815 * If we can't get a cq entry, userspace overflowed the
816 * submission (by quite a lot). Increment the overflow count in
817 * the ring.
818 */
819 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700820 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700821 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700822 WRITE_ONCE(cqe->res, res);
823 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700824 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700825 WRITE_ONCE(ctx->rings->cq_overflow,
826 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700827 } else {
828 refcount_inc(&req->refs);
829 req->result = res;
830 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700831 }
832}
833
Jens Axboe78e19bb2019-11-06 15:21:34 -0700834static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700835{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700836 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700837 unsigned long flags;
838
839 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700840 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700841 io_commit_cqring(ctx);
842 spin_unlock_irqrestore(&ctx->completion_lock, flags);
843
Jens Axboe8c838782019-03-12 15:48:16 -0600844 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700845}
846
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700847static inline bool io_is_fallback_req(struct io_kiocb *req)
848{
849 return req == (struct io_kiocb *)
850 ((unsigned long) req->ctx->fallback_req & ~1UL);
851}
852
853static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
854{
855 struct io_kiocb *req;
856
857 req = ctx->fallback_req;
858 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
859 return req;
860
861 return NULL;
862}
863
Jens Axboe2579f912019-01-09 09:10:43 -0700864static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
865 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700866{
Jens Axboefd6fab22019-03-14 16:30:06 -0600867 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700868 struct io_kiocb *req;
869
870 if (!percpu_ref_tryget(&ctx->refs))
871 return NULL;
872
Jens Axboe2579f912019-01-09 09:10:43 -0700873 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -0600874 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -0700875 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700876 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -0700877 } else if (!state->free_reqs) {
878 size_t sz;
879 int ret;
880
881 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -0600882 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
883
884 /*
885 * Bulk alloc is all-or-nothing. If we fail to get a batch,
886 * retry single alloc to be on the safe side.
887 */
888 if (unlikely(ret <= 0)) {
889 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
890 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700891 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -0600892 ret = 1;
893 }
Jens Axboe2579f912019-01-09 09:10:43 -0700894 state->free_reqs = ret - 1;
895 state->cur_req = 1;
896 req = state->reqs[0];
897 } else {
898 req = state->reqs[state->cur_req];
899 state->free_reqs--;
900 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700901 }
902
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700903got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700904 req->io = NULL;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300905 req->ring_file = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -0600906 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -0700907 req->ctx = ctx;
908 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -0600909 /* one is dropped after submission, the other at completion */
910 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -0600911 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -0600912 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -0700913 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700914fallback:
915 req = io_get_fallback_req(ctx);
916 if (req)
917 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +0300918 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700919 return NULL;
920}
921
Jens Axboedef596e2019-01-09 08:59:42 -0700922static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
923{
924 if (*nr) {
925 kmem_cache_free_bulk(req_cachep, *nr, reqs);
Pavel Begunkov6805b322019-10-08 02:18:42 +0300926 percpu_ref_put_many(&ctx->refs, *nr);
Jens Axboedef596e2019-01-09 08:59:42 -0700927 *nr = 0;
928 }
929}
930
Jens Axboe9e645e112019-05-10 16:07:28 -0600931static void __io_free_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700932{
Jens Axboefcb323c2019-10-24 12:39:47 -0600933 struct io_ring_ctx *ctx = req->ctx;
934
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700935 if (req->io)
936 kfree(req->io);
Jens Axboe09bb8392019-03-13 12:39:28 -0600937 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
938 fput(req->file);
Jens Axboefcb323c2019-10-24 12:39:47 -0600939 if (req->flags & REQ_F_INFLIGHT) {
940 unsigned long flags;
941
942 spin_lock_irqsave(&ctx->inflight_lock, flags);
943 list_del(&req->inflight_entry);
944 if (waitqueue_active(&ctx->inflight_wait))
945 wake_up(&ctx->inflight_wait);
946 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
947 }
948 percpu_ref_put(&ctx->refs);
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700949 if (likely(!io_is_fallback_req(req)))
950 kmem_cache_free(req_cachep, req);
951 else
952 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -0600953}
954
Jackie Liua197f662019-11-08 08:09:12 -0700955static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -0600956{
Jackie Liua197f662019-11-08 08:09:12 -0700957 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700958 int ret;
959
Jens Axboe2d283902019-12-04 11:08:05 -0700960 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -0700961 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700962 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -0700963 io_commit_cqring(ctx);
964 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +0800965 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -0700966 return true;
967 }
968
969 return false;
970}
971
Jens Axboeba816ad2019-09-28 11:36:45 -0600972static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -0600973{
Jens Axboe2665abf2019-11-05 12:40:47 -0700974 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700975 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -0600976
Jens Axboe4d7dd462019-11-20 13:03:52 -0700977 /* Already got next link */
978 if (req->flags & REQ_F_LINK_NEXT)
979 return;
980
Jens Axboe9e645e112019-05-10 16:07:28 -0600981 /*
982 * The list should never be empty when we are called here. But could
983 * potentially happen if the chain is messed up, check to be on the
984 * safe side.
985 */
Pavel Begunkov44932332019-12-05 16:16:35 +0300986 while (!list_empty(&req->link_list)) {
987 struct io_kiocb *nxt = list_first_entry(&req->link_list,
988 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700989
Pavel Begunkov44932332019-12-05 16:16:35 +0300990 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
991 (nxt->flags & REQ_F_TIMEOUT))) {
992 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700993 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700994 req->flags &= ~REQ_F_LINK_TIMEOUT;
995 continue;
996 }
Jens Axboe9e645e112019-05-10 16:07:28 -0600997
Pavel Begunkov44932332019-12-05 16:16:35 +0300998 list_del_init(&req->link_list);
999 if (!list_empty(&nxt->link_list))
1000 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001001 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001002 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001003 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001004
Jens Axboe4d7dd462019-11-20 13:03:52 -07001005 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001006 if (wake_ev)
1007 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001008}
1009
1010/*
1011 * Called if REQ_F_LINK is set, and we fail the head request
1012 */
1013static void io_fail_links(struct io_kiocb *req)
1014{
Jens Axboe2665abf2019-11-05 12:40:47 -07001015 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001016 unsigned long flags;
1017
1018 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001019
1020 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001021 struct io_kiocb *link = list_first_entry(&req->link_list,
1022 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001023
Pavel Begunkov44932332019-12-05 16:16:35 +03001024 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001025 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001026
1027 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001028 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001029 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001030 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001031 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001032 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001033 }
Jens Axboe5d960722019-11-19 15:31:28 -07001034 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001035 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001036
1037 io_commit_cqring(ctx);
1038 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1039 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001040}
1041
Jens Axboe4d7dd462019-11-20 13:03:52 -07001042static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001043{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001044 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001045 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001046
Jens Axboe9e645e112019-05-10 16:07:28 -06001047 /*
1048 * If LINK is set, we have dependent requests in this chain. If we
1049 * didn't fail this request, queue the first one up, moving any other
1050 * dependencies to the next request. In case of failure, fail the rest
1051 * of the chain.
1052 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001053 if (req->flags & REQ_F_FAIL_LINK) {
1054 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001055 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1056 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001057 struct io_ring_ctx *ctx = req->ctx;
1058 unsigned long flags;
1059
1060 /*
1061 * If this is a timeout link, we could be racing with the
1062 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001063 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001064 */
1065 spin_lock_irqsave(&ctx->completion_lock, flags);
1066 io_req_link_next(req, nxt);
1067 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1068 } else {
1069 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001070 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001071}
Jens Axboe9e645e112019-05-10 16:07:28 -06001072
Jackie Liuc69f8db2019-11-09 11:00:08 +08001073static void io_free_req(struct io_kiocb *req)
1074{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001075 struct io_kiocb *nxt = NULL;
1076
1077 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001078 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001079
1080 if (nxt)
1081 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001082}
1083
Jens Axboeba816ad2019-09-28 11:36:45 -06001084/*
1085 * Drop reference to request, return next in chain (if there is one) if this
1086 * was the last reference to this request.
1087 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001088__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001089static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001090{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001091 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001092
Jens Axboee65ef562019-03-12 10:16:44 -06001093 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001094 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001095}
1096
Jens Axboe2b188cc2019-01-07 10:46:33 -07001097static void io_put_req(struct io_kiocb *req)
1098{
Jens Axboedef596e2019-01-09 08:59:42 -07001099 if (refcount_dec_and_test(&req->refs))
1100 io_free_req(req);
1101}
1102
Jens Axboe978db572019-11-14 22:39:04 -07001103/*
1104 * Must only be used if we don't need to care about links, usually from
1105 * within the completion handling itself.
1106 */
1107static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001108{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001109 /* drop both submit and complete references */
1110 if (refcount_sub_and_test(2, &req->refs))
1111 __io_free_req(req);
1112}
1113
Jens Axboe978db572019-11-14 22:39:04 -07001114static void io_double_put_req(struct io_kiocb *req)
1115{
1116 /* drop both submit and complete references */
1117 if (refcount_sub_and_test(2, &req->refs))
1118 io_free_req(req);
1119}
1120
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001121static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001122{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001123 struct io_rings *rings = ctx->rings;
1124
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001125 /*
1126 * noflush == true is from the waitqueue handler, just ensure we wake
1127 * up the task, and the next invocation will flush the entries. We
1128 * cannot safely to it from here.
1129 */
1130 if (noflush && !list_empty(&ctx->cq_overflow_list))
1131 return -1U;
1132
1133 io_cqring_overflow_flush(ctx, false);
1134
Jens Axboea3a0e432019-08-20 11:03:11 -06001135 /* See comment at the top of this file */
1136 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00001137 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001138}
1139
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001140static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1141{
1142 struct io_rings *rings = ctx->rings;
1143
1144 /* make sure SQ entry isn't read before tail */
1145 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1146}
1147
Jens Axboedef596e2019-01-09 08:59:42 -07001148/*
1149 * Find and free completed poll iocbs
1150 */
1151static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1152 struct list_head *done)
1153{
1154 void *reqs[IO_IOPOLL_BATCH];
1155 struct io_kiocb *req;
Jens Axboe09bb8392019-03-13 12:39:28 -06001156 int to_free;
Jens Axboedef596e2019-01-09 08:59:42 -07001157
Jens Axboe09bb8392019-03-13 12:39:28 -06001158 to_free = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001159 while (!list_empty(done)) {
1160 req = list_first_entry(done, struct io_kiocb, list);
1161 list_del(&req->list);
1162
Jens Axboe78e19bb2019-11-06 15:21:34 -07001163 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001164 (*nr_events)++;
1165
Jens Axboe09bb8392019-03-13 12:39:28 -06001166 if (refcount_dec_and_test(&req->refs)) {
1167 /* If we're not using fixed files, we have to pair the
1168 * completion part with the file put. Use regular
1169 * completions for those, only batch free for fixed
Jens Axboe9e645e112019-05-10 16:07:28 -06001170 * file and non-linked commands.
Jens Axboe09bb8392019-03-13 12:39:28 -06001171 */
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001172 if (((req->flags & (REQ_F_FIXED_FILE|REQ_F_LINK)) ==
1173 REQ_F_FIXED_FILE) && !io_is_fallback_req(req) &&
1174 !req->io) {
Jens Axboe09bb8392019-03-13 12:39:28 -06001175 reqs[to_free++] = req;
1176 if (to_free == ARRAY_SIZE(reqs))
1177 io_free_req_many(ctx, reqs, &to_free);
Jens Axboe6b063142019-01-10 22:13:58 -07001178 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001179 io_free_req(req);
Jens Axboe6b063142019-01-10 22:13:58 -07001180 }
Jens Axboe9a56a232019-01-09 09:06:50 -07001181 }
Jens Axboedef596e2019-01-09 08:59:42 -07001182 }
Jens Axboedef596e2019-01-09 08:59:42 -07001183
Jens Axboe09bb8392019-03-13 12:39:28 -06001184 io_commit_cqring(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07001185 io_free_req_many(ctx, reqs, &to_free);
1186}
1187
1188static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1189 long min)
1190{
1191 struct io_kiocb *req, *tmp;
1192 LIST_HEAD(done);
1193 bool spin;
1194 int ret;
1195
1196 /*
1197 * Only spin for completions if we don't have multiple devices hanging
1198 * off our complete list, and we're under the requested amount.
1199 */
1200 spin = !ctx->poll_multi_file && *nr_events < min;
1201
1202 ret = 0;
1203 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001204 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001205
1206 /*
1207 * Move completed entries to our local list. If we find a
1208 * request that requires polling, break out and complete
1209 * the done list first, if we have entries there.
1210 */
1211 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1212 list_move_tail(&req->list, &done);
1213 continue;
1214 }
1215 if (!list_empty(&done))
1216 break;
1217
1218 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1219 if (ret < 0)
1220 break;
1221
1222 if (ret && spin)
1223 spin = false;
1224 ret = 0;
1225 }
1226
1227 if (!list_empty(&done))
1228 io_iopoll_complete(ctx, nr_events, &done);
1229
1230 return ret;
1231}
1232
1233/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001234 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001235 * non-spinning poll check - we'll still enter the driver poll loop, but only
1236 * as a non-spinning completion check.
1237 */
1238static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1239 long min)
1240{
Jens Axboe08f54392019-08-21 22:19:11 -06001241 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001242 int ret;
1243
1244 ret = io_do_iopoll(ctx, nr_events, min);
1245 if (ret < 0)
1246 return ret;
1247 if (!min || *nr_events >= min)
1248 return 0;
1249 }
1250
1251 return 1;
1252}
1253
1254/*
1255 * We can't just wait for polled events to come to us, we have to actively
1256 * find and complete them.
1257 */
1258static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1259{
1260 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1261 return;
1262
1263 mutex_lock(&ctx->uring_lock);
1264 while (!list_empty(&ctx->poll_list)) {
1265 unsigned int nr_events = 0;
1266
1267 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001268
1269 /*
1270 * Ensure we allow local-to-the-cpu processing to take place,
1271 * in this case we need to ensure that we reap all events.
1272 */
1273 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001274 }
1275 mutex_unlock(&ctx->uring_lock);
1276}
1277
Jens Axboe2b2ed972019-10-25 10:06:15 -06001278static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1279 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001280{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001281 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001282
1283 do {
1284 int tmin = 0;
1285
Jens Axboe500f9fb2019-08-19 12:15:59 -06001286 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001287 * Don't enter poll loop if we already have events pending.
1288 * If we do, we can potentially be spinning for commands that
1289 * already triggered a CQE (eg in error).
1290 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001291 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001292 break;
1293
1294 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001295 * If a submit got punted to a workqueue, we can have the
1296 * application entering polling for a command before it gets
1297 * issued. That app will hold the uring_lock for the duration
1298 * of the poll right here, so we need to take a breather every
1299 * now and then to ensure that the issue has a chance to add
1300 * the poll to the issued list. Otherwise we can spin here
1301 * forever, while the workqueue is stuck trying to acquire the
1302 * very same mutex.
1303 */
1304 if (!(++iters & 7)) {
1305 mutex_unlock(&ctx->uring_lock);
1306 mutex_lock(&ctx->uring_lock);
1307 }
1308
Jens Axboedef596e2019-01-09 08:59:42 -07001309 if (*nr_events < min)
1310 tmin = min - *nr_events;
1311
1312 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1313 if (ret <= 0)
1314 break;
1315 ret = 0;
1316 } while (min && !*nr_events && !need_resched());
1317
Jens Axboe2b2ed972019-10-25 10:06:15 -06001318 return ret;
1319}
1320
1321static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1322 long min)
1323{
1324 int ret;
1325
1326 /*
1327 * We disallow the app entering submit/complete with polling, but we
1328 * still need to lock the ring to prevent racing with polled issue
1329 * that got punted to a workqueue.
1330 */
1331 mutex_lock(&ctx->uring_lock);
1332 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001333 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001334 return ret;
1335}
1336
Jens Axboe491381ce2019-10-17 09:20:46 -06001337static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001338{
Jens Axboe491381ce2019-10-17 09:20:46 -06001339 /*
1340 * Tell lockdep we inherited freeze protection from submission
1341 * thread.
1342 */
1343 if (req->flags & REQ_F_ISREG) {
1344 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001345
Jens Axboe491381ce2019-10-17 09:20:46 -06001346 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001347 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001348 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001349}
1350
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001351static inline void req_set_fail_links(struct io_kiocb *req)
1352{
1353 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1354 req->flags |= REQ_F_FAIL_LINK;
1355}
1356
Jens Axboeba816ad2019-09-28 11:36:45 -06001357static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001358{
Jens Axboe9adbd452019-12-20 08:45:55 -07001359 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001360
Jens Axboe491381ce2019-10-17 09:20:46 -06001361 if (kiocb->ki_flags & IOCB_WRITE)
1362 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001363
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001364 if (res != req->result)
1365 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001366 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001367}
1368
1369static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1370{
Jens Axboe9adbd452019-12-20 08:45:55 -07001371 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001372
1373 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001374 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001375}
1376
Jens Axboeba816ad2019-09-28 11:36:45 -06001377static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1378{
Jens Axboe9adbd452019-12-20 08:45:55 -07001379 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001380 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001381
1382 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001383 io_put_req_find_next(req, &nxt);
1384
1385 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001386}
1387
Jens Axboedef596e2019-01-09 08:59:42 -07001388static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1389{
Jens Axboe9adbd452019-12-20 08:45:55 -07001390 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001391
Jens Axboe491381ce2019-10-17 09:20:46 -06001392 if (kiocb->ki_flags & IOCB_WRITE)
1393 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001394
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001395 if (res != req->result)
1396 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001397 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001398 if (res != -EAGAIN)
1399 req->flags |= REQ_F_IOPOLL_COMPLETED;
1400}
1401
1402/*
1403 * After the iocb has been issued, it's safe to be found on the poll list.
1404 * Adding the kiocb to the list AFTER submission ensures that we don't
1405 * find it from a io_iopoll_getevents() thread before the issuer is done
1406 * accessing the kiocb cookie.
1407 */
1408static void io_iopoll_req_issued(struct io_kiocb *req)
1409{
1410 struct io_ring_ctx *ctx = req->ctx;
1411
1412 /*
1413 * Track whether we have multiple files in our lists. This will impact
1414 * how we do polling eventually, not spinning if we're on potentially
1415 * different devices.
1416 */
1417 if (list_empty(&ctx->poll_list)) {
1418 ctx->poll_multi_file = false;
1419 } else if (!ctx->poll_multi_file) {
1420 struct io_kiocb *list_req;
1421
1422 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1423 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001424 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001425 ctx->poll_multi_file = true;
1426 }
1427
1428 /*
1429 * For fast devices, IO may have already completed. If it has, add
1430 * it to the front so we find it first.
1431 */
1432 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1433 list_add(&req->list, &ctx->poll_list);
1434 else
1435 list_add_tail(&req->list, &ctx->poll_list);
1436}
1437
Jens Axboe3d6770f2019-04-13 11:50:54 -06001438static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001439{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001440 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001441 int diff = state->has_refs - state->used_refs;
1442
1443 if (diff)
1444 fput_many(state->file, diff);
1445 state->file = NULL;
1446 }
1447}
1448
1449/*
1450 * Get as many references to a file as we have IOs left in this submission,
1451 * assuming most submissions are for one file, or at least that each file
1452 * has more than one submission.
1453 */
1454static struct file *io_file_get(struct io_submit_state *state, int fd)
1455{
1456 if (!state)
1457 return fget(fd);
1458
1459 if (state->file) {
1460 if (state->fd == fd) {
1461 state->used_refs++;
1462 state->ios_left--;
1463 return state->file;
1464 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001465 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001466 }
1467 state->file = fget_many(fd, state->ios_left);
1468 if (!state->file)
1469 return NULL;
1470
1471 state->fd = fd;
1472 state->has_refs = state->ios_left;
1473 state->used_refs = 1;
1474 state->ios_left--;
1475 return state->file;
1476}
1477
Jens Axboe2b188cc2019-01-07 10:46:33 -07001478/*
1479 * If we tracked the file through the SCM inflight mechanism, we could support
1480 * any file. For now, just ensure that anything potentially problematic is done
1481 * inline.
1482 */
1483static bool io_file_supports_async(struct file *file)
1484{
1485 umode_t mode = file_inode(file)->i_mode;
1486
Jens Axboe10d59342019-12-09 20:16:22 -07001487 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001488 return true;
1489 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1490 return true;
1491
1492 return false;
1493}
1494
Pavel Begunkov267bc902019-11-07 01:41:08 +03001495static int io_prep_rw(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001496{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001497 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboedef596e2019-01-09 08:59:42 -07001498 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001499 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001500 unsigned ioprio;
1501 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001502
Jens Axboe09bb8392019-03-13 12:39:28 -06001503 if (!req->file)
1504 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001505
Jens Axboe491381ce2019-10-17 09:20:46 -06001506 if (S_ISREG(file_inode(req->file)->i_mode))
1507 req->flags |= REQ_F_ISREG;
1508
Jens Axboe2b188cc2019-01-07 10:46:33 -07001509 kiocb->ki_pos = READ_ONCE(sqe->off);
1510 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1511 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1512
1513 ioprio = READ_ONCE(sqe->ioprio);
1514 if (ioprio) {
1515 ret = ioprio_check_cap(ioprio);
1516 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001517 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001518
1519 kiocb->ki_ioprio = ioprio;
1520 } else
1521 kiocb->ki_ioprio = get_current_ioprio();
1522
1523 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1524 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001525 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001526
1527 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001528 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1529 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001530 req->flags |= REQ_F_NOWAIT;
1531
1532 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001533 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001534
Jens Axboedef596e2019-01-09 08:59:42 -07001535 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001536 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1537 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001538 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001539
Jens Axboedef596e2019-01-09 08:59:42 -07001540 kiocb->ki_flags |= IOCB_HIPRI;
1541 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001542 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001543 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001544 if (kiocb->ki_flags & IOCB_HIPRI)
1545 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001546 kiocb->ki_complete = io_complete_rw;
1547 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001548
1549 req->rw.addr = READ_ONCE(req->sqe->addr);
1550 req->rw.len = READ_ONCE(req->sqe->len);
1551 /* we own ->private, reuse it for the buffer index */
1552 req->rw.kiocb.private = (void *) (unsigned long)
1553 READ_ONCE(req->sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001554 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001555}
1556
1557static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1558{
1559 switch (ret) {
1560 case -EIOCBQUEUED:
1561 break;
1562 case -ERESTARTSYS:
1563 case -ERESTARTNOINTR:
1564 case -ERESTARTNOHAND:
1565 case -ERESTART_RESTARTBLOCK:
1566 /*
1567 * We can't just restart the syscall, since previously
1568 * submitted sqes may already be in progress. Just fail this
1569 * IO with EINTR.
1570 */
1571 ret = -EINTR;
1572 /* fall through */
1573 default:
1574 kiocb->ki_complete(kiocb, ret, 0);
1575 }
1576}
1577
Jens Axboeba816ad2019-09-28 11:36:45 -06001578static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1579 bool in_async)
1580{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001581 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001582 *nxt = __io_complete_rw(kiocb, ret);
1583 else
1584 io_rw_done(kiocb, ret);
1585}
1586
Jens Axboe9adbd452019-12-20 08:45:55 -07001587static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03001588 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001589{
Jens Axboe9adbd452019-12-20 08:45:55 -07001590 struct io_ring_ctx *ctx = req->ctx;
1591 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001592 struct io_mapped_ubuf *imu;
1593 unsigned index, buf_index;
1594 size_t offset;
1595 u64 buf_addr;
1596
1597 /* attempt to use fixed buffers without having provided iovecs */
1598 if (unlikely(!ctx->user_bufs))
1599 return -EFAULT;
1600
Jens Axboe9adbd452019-12-20 08:45:55 -07001601 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07001602 if (unlikely(buf_index >= ctx->nr_user_bufs))
1603 return -EFAULT;
1604
1605 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1606 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07001607 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07001608
1609 /* overflow */
1610 if (buf_addr + len < buf_addr)
1611 return -EFAULT;
1612 /* not inside the mapped region */
1613 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1614 return -EFAULT;
1615
1616 /*
1617 * May not be a start of buffer, set size appropriately
1618 * and advance us to the beginning.
1619 */
1620 offset = buf_addr - imu->ubuf;
1621 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001622
1623 if (offset) {
1624 /*
1625 * Don't use iov_iter_advance() here, as it's really slow for
1626 * using the latter parts of a big fixed buffer - it iterates
1627 * over each segment manually. We can cheat a bit here, because
1628 * we know that:
1629 *
1630 * 1) it's a BVEC iter, we set it up
1631 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1632 * first and last bvec
1633 *
1634 * So just find our index, and adjust the iterator afterwards.
1635 * If the offset is within the first bvec (or the whole first
1636 * bvec, just use iov_iter_advance(). This makes it easier
1637 * since we can just skip the first segment, which may not
1638 * be PAGE_SIZE aligned.
1639 */
1640 const struct bio_vec *bvec = imu->bvec;
1641
1642 if (offset <= bvec->bv_len) {
1643 iov_iter_advance(iter, offset);
1644 } else {
1645 unsigned long seg_skip;
1646
1647 /* skip first vec */
1648 offset -= bvec->bv_len;
1649 seg_skip = 1 + (offset >> PAGE_SHIFT);
1650
1651 iter->bvec = bvec + seg_skip;
1652 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001653 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001654 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001655 }
1656 }
1657
Jens Axboe5e559562019-11-13 16:12:46 -07001658 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001659}
1660
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001661static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1662 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001663{
Jens Axboe9adbd452019-12-20 08:45:55 -07001664 void __user *buf = u64_to_user_ptr(req->rw.addr);
1665 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001666 u8 opcode;
1667
Jens Axboed625c6e2019-12-17 19:53:05 -07001668 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001669 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001670 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07001671 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001672 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001673
Jens Axboe9adbd452019-12-20 08:45:55 -07001674 /* buffer index only valid with fixed read/write */
1675 if (req->rw.kiocb.private)
1676 return -EINVAL;
1677
Jens Axboef67676d2019-12-02 11:03:47 -07001678 if (req->io) {
1679 struct io_async_rw *iorw = &req->io->rw;
1680
1681 *iovec = iorw->iov;
1682 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1683 if (iorw->iov == iorw->fast_iov)
1684 *iovec = NULL;
1685 return iorw->size;
1686 }
1687
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001688 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001689 return -EFAULT;
1690
1691#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001692 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001693 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1694 iovec, iter);
1695#endif
1696
1697 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1698}
1699
Jens Axboe32960612019-09-23 11:05:34 -06001700/*
1701 * For files that don't have ->read_iter() and ->write_iter(), handle them
1702 * by looping over ->read() or ->write() manually.
1703 */
1704static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1705 struct iov_iter *iter)
1706{
1707 ssize_t ret = 0;
1708
1709 /*
1710 * Don't support polled IO through this interface, and we can't
1711 * support non-blocking either. For the latter, this just causes
1712 * the kiocb to be handled from an async context.
1713 */
1714 if (kiocb->ki_flags & IOCB_HIPRI)
1715 return -EOPNOTSUPP;
1716 if (kiocb->ki_flags & IOCB_NOWAIT)
1717 return -EAGAIN;
1718
1719 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001720 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06001721 ssize_t nr;
1722
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001723 if (!iov_iter_is_bvec(iter)) {
1724 iovec = iov_iter_iovec(iter);
1725 } else {
1726 /* fixed buffers import bvec */
1727 iovec.iov_base = kmap(iter->bvec->bv_page)
1728 + iter->iov_offset;
1729 iovec.iov_len = min(iter->count,
1730 iter->bvec->bv_len - iter->iov_offset);
1731 }
1732
Jens Axboe32960612019-09-23 11:05:34 -06001733 if (rw == READ) {
1734 nr = file->f_op->read(file, iovec.iov_base,
1735 iovec.iov_len, &kiocb->ki_pos);
1736 } else {
1737 nr = file->f_op->write(file, iovec.iov_base,
1738 iovec.iov_len, &kiocb->ki_pos);
1739 }
1740
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001741 if (iov_iter_is_bvec(iter))
1742 kunmap(iter->bvec->bv_page);
1743
Jens Axboe32960612019-09-23 11:05:34 -06001744 if (nr < 0) {
1745 if (!ret)
1746 ret = nr;
1747 break;
1748 }
1749 ret += nr;
1750 if (nr != iovec.iov_len)
1751 break;
1752 iov_iter_advance(iter, nr);
1753 }
1754
1755 return ret;
1756}
1757
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001758static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07001759 struct iovec *iovec, struct iovec *fast_iov,
1760 struct iov_iter *iter)
1761{
1762 req->io->rw.nr_segs = iter->nr_segs;
1763 req->io->rw.size = io_size;
1764 req->io->rw.iov = iovec;
1765 if (!req->io->rw.iov) {
1766 req->io->rw.iov = req->io->rw.fast_iov;
1767 memcpy(req->io->rw.iov, fast_iov,
1768 sizeof(struct iovec) * iter->nr_segs);
1769 }
1770}
1771
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001772static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07001773{
1774 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
1775 if (req->io) {
Jens Axboef67676d2019-12-02 11:03:47 -07001776 memcpy(&req->io->sqe, req->sqe, sizeof(req->io->sqe));
1777 req->sqe = &req->io->sqe;
1778 return 0;
1779 }
1780
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001781 return 1;
1782}
1783
1784static void io_rw_async(struct io_wq_work **workptr)
1785{
1786 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1787 struct iovec *iov = NULL;
1788
1789 if (req->io->rw.iov != req->io->rw.fast_iov)
1790 iov = req->io->rw.iov;
1791 io_wq_submit_work(workptr);
1792 kfree(iov);
1793}
1794
1795static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
1796 struct iovec *iovec, struct iovec *fast_iov,
1797 struct iov_iter *iter)
1798{
1799 if (!req->io && io_alloc_async_ctx(req))
1800 return -ENOMEM;
1801
1802 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
1803 req->work.func = io_rw_async;
1804 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07001805}
1806
1807static int io_read_prep(struct io_kiocb *req, struct iovec **iovec,
1808 struct iov_iter *iter, bool force_nonblock)
1809{
1810 ssize_t ret;
1811
1812 ret = io_prep_rw(req, force_nonblock);
1813 if (ret)
1814 return ret;
1815
1816 if (unlikely(!(req->file->f_mode & FMODE_READ)))
1817 return -EBADF;
1818
1819 return io_import_iovec(READ, req, iovec, iter);
1820}
1821
Pavel Begunkov267bc902019-11-07 01:41:08 +03001822static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001823 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001824{
1825 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07001826 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001827 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07001828 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001829 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001830
Jens Axboef67676d2019-12-02 11:03:47 -07001831 if (!req->io) {
1832 ret = io_read_prep(req, &iovec, &iter, force_nonblock);
1833 if (ret < 0)
1834 return ret;
1835 } else {
1836 ret = io_import_iovec(READ, req, &iovec, &iter);
1837 if (ret < 0)
1838 return ret;
1839 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001840
Jens Axboefd6c2e42019-12-18 12:19:41 -07001841 /* Ensure we clear previously set non-block flag */
1842 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07001843 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07001844
Jens Axboef67676d2019-12-02 11:03:47 -07001845 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001846 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001847 req->result = io_size;
1848
1849 /*
1850 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1851 * we know to async punt it even if it was opened O_NONBLOCK
1852 */
Jens Axboe9adbd452019-12-20 08:45:55 -07001853 if (force_nonblock && !io_file_supports_async(req->file)) {
Jens Axboef67676d2019-12-02 11:03:47 -07001854 req->flags |= REQ_F_MUST_PUNT;
1855 goto copy_iov;
1856 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001857
Jens Axboe31b51512019-01-18 22:56:34 -07001858 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07001859 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001860 if (!ret) {
1861 ssize_t ret2;
1862
Jens Axboe9adbd452019-12-20 08:45:55 -07001863 if (req->file->f_op->read_iter)
1864 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001865 else
Jens Axboe9adbd452019-12-20 08:45:55 -07001866 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001867
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001868 /*
1869 * In case of a short read, punt to async. This can happen
1870 * if we have data partially cached. Alternatively we can
1871 * return the short read, in which case the application will
1872 * need to issue another SQE and wait for it. That SQE will
1873 * need async punt anyway, so it's more efficient to do it
1874 * here.
1875 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001876 if (force_nonblock && !(req->flags & REQ_F_NOWAIT) &&
1877 (req->flags & REQ_F_ISREG) &&
Jens Axboef67676d2019-12-02 11:03:47 -07001878 ret2 > 0 && ret2 < io_size)
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001879 ret2 = -EAGAIN;
1880 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07001881 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001882 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001883 } else {
1884copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001885 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07001886 inline_vecs, &iter);
1887 if (ret)
1888 goto out_free;
1889 return -EAGAIN;
1890 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001891 }
Jens Axboef67676d2019-12-02 11:03:47 -07001892out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001893 if (!io_wq_current_is_worker())
1894 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001895 return ret;
1896}
1897
Jens Axboef67676d2019-12-02 11:03:47 -07001898static int io_write_prep(struct io_kiocb *req, struct iovec **iovec,
1899 struct iov_iter *iter, bool force_nonblock)
1900{
1901 ssize_t ret;
1902
1903 ret = io_prep_rw(req, force_nonblock);
1904 if (ret)
1905 return ret;
1906
1907 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
1908 return -EBADF;
1909
1910 return io_import_iovec(WRITE, req, iovec, iter);
1911}
1912
Pavel Begunkov267bc902019-11-07 01:41:08 +03001913static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001914 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001915{
1916 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07001917 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001918 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07001919 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001920 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001921
Jens Axboef67676d2019-12-02 11:03:47 -07001922 if (!req->io) {
1923 ret = io_write_prep(req, &iovec, &iter, force_nonblock);
1924 if (ret < 0)
1925 return ret;
1926 } else {
1927 ret = io_import_iovec(WRITE, req, &iovec, &iter);
1928 if (ret < 0)
1929 return ret;
1930 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001931
Jens Axboefd6c2e42019-12-18 12:19:41 -07001932 /* Ensure we clear previously set non-block flag */
1933 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07001934 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07001935
Jens Axboef67676d2019-12-02 11:03:47 -07001936 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001937 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001938 req->result = io_size;
1939
1940 /*
1941 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1942 * we know to async punt it even if it was opened O_NONBLOCK
1943 */
1944 if (force_nonblock && !io_file_supports_async(req->file)) {
1945 req->flags |= REQ_F_MUST_PUNT;
1946 goto copy_iov;
1947 }
1948
Jens Axboe10d59342019-12-09 20:16:22 -07001949 /* file path doesn't support NOWAIT for non-direct_IO */
1950 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
1951 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07001952 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06001953
Jens Axboe31b51512019-01-18 22:56:34 -07001954 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07001955 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001956 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01001957 ssize_t ret2;
1958
Jens Axboe2b188cc2019-01-07 10:46:33 -07001959 /*
1960 * Open-code file_start_write here to grab freeze protection,
1961 * which will be released by another thread in
1962 * io_complete_rw(). Fool lockdep by telling it the lock got
1963 * released so that it doesn't complain about the held lock when
1964 * we return to userspace.
1965 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001966 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001967 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07001968 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07001969 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07001970 SB_FREEZE_WRITE);
1971 }
1972 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01001973
Jens Axboe9adbd452019-12-20 08:45:55 -07001974 if (req->file->f_op->write_iter)
1975 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001976 else
Jens Axboe9adbd452019-12-20 08:45:55 -07001977 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07001978 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001979 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001980 } else {
1981copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001982 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07001983 inline_vecs, &iter);
1984 if (ret)
1985 goto out_free;
1986 return -EAGAIN;
1987 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001988 }
Jens Axboe31b51512019-01-18 22:56:34 -07001989out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001990 if (!io_wq_current_is_worker())
1991 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001992 return ret;
1993}
1994
1995/*
1996 * IORING_OP_NOP just posts a completion event, nothing else.
1997 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07001998static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001999{
2000 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002001
Jens Axboedef596e2019-01-09 08:59:42 -07002002 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2003 return -EINVAL;
2004
Jens Axboe78e19bb2019-11-06 15:21:34 -07002005 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002006 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002007 return 0;
2008}
2009
Jens Axboefc4df992019-12-10 14:38:45 -07002010static int io_prep_fsync(struct io_kiocb *req)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002011{
Jens Axboefc4df992019-12-10 14:38:45 -07002012 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe6b063142019-01-10 22:13:58 -07002013 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002014
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002015 if (req->flags & REQ_F_PREPPED)
2016 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06002017 if (!req->file)
2018 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002019
Jens Axboe6b063142019-01-10 22:13:58 -07002020 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002021 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002022 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002023 return -EINVAL;
2024
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002025 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2026 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2027 return -EINVAL;
2028
2029 req->sync.off = READ_ONCE(sqe->off);
2030 req->sync.len = READ_ONCE(sqe->len);
2031 req->flags |= REQ_F_PREPPED;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002032 return 0;
2033}
2034
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002035static bool io_req_cancelled(struct io_kiocb *req)
2036{
2037 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2038 req_set_fail_links(req);
2039 io_cqring_add_event(req, -ECANCELED);
2040 io_put_req(req);
2041 return true;
2042 }
2043
2044 return false;
2045}
2046
2047static void io_fsync_finish(struct io_wq_work **workptr)
2048{
2049 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2050 loff_t end = req->sync.off + req->sync.len;
2051 struct io_kiocb *nxt = NULL;
2052 int ret;
2053
2054 if (io_req_cancelled(req))
2055 return;
2056
Jens Axboe9adbd452019-12-20 08:45:55 -07002057 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002058 end > 0 ? end : LLONG_MAX,
2059 req->sync.flags & IORING_FSYNC_DATASYNC);
2060 if (ret < 0)
2061 req_set_fail_links(req);
2062 io_cqring_add_event(req, ret);
2063 io_put_req_find_next(req, &nxt);
2064 if (nxt)
2065 *workptr = &nxt->work;
2066}
2067
Jens Axboefc4df992019-12-10 14:38:45 -07002068static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2069 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002070{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002071 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002072 int ret;
2073
Jens Axboefc4df992019-12-10 14:38:45 -07002074 ret = io_prep_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002075 if (ret)
2076 return ret;
2077
2078 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002079 if (force_nonblock) {
2080 io_put_req(req);
2081 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002082 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002083 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002084
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002085 work = old_work = &req->work;
2086 io_fsync_finish(&work);
2087 if (work && work != old_work)
2088 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002089 return 0;
2090}
2091
Jens Axboefc4df992019-12-10 14:38:45 -07002092static int io_prep_sfr(struct io_kiocb *req)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002093{
Jens Axboefc4df992019-12-10 14:38:45 -07002094 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002095 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002096
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002097 if (req->flags & REQ_F_PREPPED)
2098 return 0;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002099 if (!req->file)
2100 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002101
2102 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2103 return -EINVAL;
2104 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2105 return -EINVAL;
2106
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002107 req->sync.off = READ_ONCE(sqe->off);
2108 req->sync.len = READ_ONCE(sqe->len);
2109 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
2110 req->flags |= REQ_F_PREPPED;
2111 return 0;
2112}
2113
2114static void io_sync_file_range_finish(struct io_wq_work **workptr)
2115{
2116 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2117 struct io_kiocb *nxt = NULL;
2118 int ret;
2119
2120 if (io_req_cancelled(req))
2121 return;
2122
Jens Axboe9adbd452019-12-20 08:45:55 -07002123 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002124 req->sync.flags);
2125 if (ret < 0)
2126 req_set_fail_links(req);
2127 io_cqring_add_event(req, ret);
2128 io_put_req_find_next(req, &nxt);
2129 if (nxt)
2130 *workptr = &nxt->work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002131}
2132
Jens Axboefc4df992019-12-10 14:38:45 -07002133static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002134 bool force_nonblock)
2135{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002136 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002137 int ret;
2138
Jens Axboefc4df992019-12-10 14:38:45 -07002139 ret = io_prep_sfr(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002140 if (ret)
2141 return ret;
2142
2143 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002144 if (force_nonblock) {
2145 io_put_req(req);
2146 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002147 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002148 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002149
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002150 work = old_work = &req->work;
2151 io_sync_file_range_finish(&work);
2152 if (work && work != old_work)
2153 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002154 return 0;
2155}
2156
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002157#if defined(CONFIG_NET)
2158static void io_sendrecv_async(struct io_wq_work **workptr)
2159{
2160 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2161 struct iovec *iov = NULL;
2162
2163 if (req->io->rw.iov != req->io->rw.fast_iov)
2164 iov = req->io->msg.iov;
2165 io_wq_submit_work(workptr);
2166 kfree(iov);
2167}
2168#endif
2169
Jens Axboe03b12302019-12-02 18:50:25 -07002170static int io_sendmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002171{
Jens Axboe03b12302019-12-02 18:50:25 -07002172#if defined(CONFIG_NET)
2173 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboee47293f2019-12-20 08:58:21 -07002174 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe03b12302019-12-02 18:50:25 -07002175
Jens Axboee47293f2019-12-20 08:58:21 -07002176 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2177 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboed9688562019-12-09 19:35:20 -07002178 io->msg.iov = io->msg.fast_iov;
Jens Axboee47293f2019-12-20 08:58:21 -07002179 return sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
2180 &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002181#else
Jens Axboee47293f2019-12-20 08:58:21 -07002182 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002183#endif
2184}
2185
Jens Axboefc4df992019-12-10 14:38:45 -07002186static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2187 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002188{
2189#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002190 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07002191 struct socket *sock;
2192 int ret;
2193
2194 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2195 return -EINVAL;
2196
2197 sock = sock_from_file(req->file, &ret);
2198 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002199 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002200 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002201 unsigned flags;
2202
Jens Axboe03b12302019-12-02 18:50:25 -07002203 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002204 kmsg = &req->io->msg;
2205 kmsg->msg.msg_name = &addr;
2206 /* if iov is set, it's allocated already */
2207 if (!kmsg->iov)
2208 kmsg->iov = kmsg->fast_iov;
2209 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002210 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07002211 kmsg = &io.msg;
2212 kmsg->msg.msg_name = &addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002213 ret = io_sendmsg_prep(req, &io);
2214 if (ret)
2215 goto out;
2216 }
2217
Jens Axboee47293f2019-12-20 08:58:21 -07002218 flags = req->sr_msg.msg_flags;
2219 if (flags & MSG_DONTWAIT)
2220 req->flags |= REQ_F_NOWAIT;
2221 else if (force_nonblock)
2222 flags |= MSG_DONTWAIT;
2223
Jens Axboe0b416c32019-12-15 10:57:46 -07002224 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002225 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002226 if (req->io)
2227 return -EAGAIN;
2228 if (io_alloc_async_ctx(req))
2229 return -ENOMEM;
2230 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2231 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002232 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002233 }
2234 if (ret == -ERESTARTSYS)
2235 ret = -EINTR;
2236 }
2237
2238out:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002239 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002240 kfree(kmsg->iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002241 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002242 if (ret < 0)
2243 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07002244 io_put_req_find_next(req, nxt);
2245 return 0;
2246#else
2247 return -EOPNOTSUPP;
2248#endif
2249}
2250
2251static int io_recvmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
2252{
2253#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002254 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe03b12302019-12-02 18:50:25 -07002255
Jens Axboee47293f2019-12-20 08:58:21 -07002256 sr->msg_flags = READ_ONCE(req->sqe->msg_flags);
2257 sr->msg = u64_to_user_ptr(READ_ONCE(req->sqe->addr));
Jens Axboed9688562019-12-09 19:35:20 -07002258 io->msg.iov = io->msg.fast_iov;
Jens Axboee47293f2019-12-20 08:58:21 -07002259 return recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
2260 &io->msg.uaddr, &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002261#else
Jens Axboee47293f2019-12-20 08:58:21 -07002262 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002263#endif
2264}
2265
Jens Axboefc4df992019-12-10 14:38:45 -07002266static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2267 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002268{
2269#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002270 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002271 struct socket *sock;
2272 int ret;
2273
2274 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2275 return -EINVAL;
2276
2277 sock = sock_from_file(req->file, &ret);
2278 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002279 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002280 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002281 unsigned flags;
2282
Jens Axboe03b12302019-12-02 18:50:25 -07002283 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002284 kmsg = &req->io->msg;
2285 kmsg->msg.msg_name = &addr;
2286 /* if iov is set, it's allocated already */
2287 if (!kmsg->iov)
2288 kmsg->iov = kmsg->fast_iov;
2289 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002290 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07002291 kmsg = &io.msg;
2292 kmsg->msg.msg_name = &addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002293 ret = io_recvmsg_prep(req, &io);
2294 if (ret)
2295 goto out;
2296 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06002297
Jens Axboee47293f2019-12-20 08:58:21 -07002298 flags = req->sr_msg.msg_flags;
2299 if (flags & MSG_DONTWAIT)
2300 req->flags |= REQ_F_NOWAIT;
2301 else if (force_nonblock)
2302 flags |= MSG_DONTWAIT;
2303
2304 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
2305 kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002306 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002307 if (req->io)
2308 return -EAGAIN;
2309 if (io_alloc_async_ctx(req))
2310 return -ENOMEM;
2311 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2312 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002313 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002314 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07002315 if (ret == -ERESTARTSYS)
2316 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002317 }
2318
Jens Axboe03b12302019-12-02 18:50:25 -07002319out:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002320 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002321 kfree(kmsg->iov);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002322 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002323 if (ret < 0)
2324 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002325 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002326 return 0;
2327#else
2328 return -EOPNOTSUPP;
2329#endif
2330}
2331
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002332static int io_accept_prep(struct io_kiocb *req)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002333{
2334#if defined(CONFIG_NET)
Jens Axboefc4df992019-12-10 14:38:45 -07002335 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002336 struct io_accept *accept = &req->accept;
2337
2338 if (req->flags & REQ_F_PREPPED)
2339 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002340
2341 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2342 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05002343 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002344 return -EINVAL;
2345
Jens Axboed55e5f52019-12-11 16:12:15 -07002346 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
2347 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002348 accept->flags = READ_ONCE(sqe->accept_flags);
2349 req->flags |= REQ_F_PREPPED;
2350 return 0;
2351#else
2352 return -EOPNOTSUPP;
2353#endif
2354}
Jens Axboe17f2fe32019-10-17 14:42:58 -06002355
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002356#if defined(CONFIG_NET)
2357static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2358 bool force_nonblock)
2359{
2360 struct io_accept *accept = &req->accept;
2361 unsigned file_flags;
2362 int ret;
2363
2364 file_flags = force_nonblock ? O_NONBLOCK : 0;
2365 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
2366 accept->addr_len, accept->flags);
2367 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002368 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07002369 if (ret == -ERESTARTSYS)
2370 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002371 if (ret < 0)
2372 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002373 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002374 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002375 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002376}
2377
2378static void io_accept_finish(struct io_wq_work **workptr)
2379{
2380 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2381 struct io_kiocb *nxt = NULL;
2382
2383 if (io_req_cancelled(req))
2384 return;
2385 __io_accept(req, &nxt, false);
2386 if (nxt)
2387 *workptr = &nxt->work;
2388}
2389#endif
2390
2391static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2392 bool force_nonblock)
2393{
2394#if defined(CONFIG_NET)
2395 int ret;
2396
2397 ret = io_accept_prep(req);
2398 if (ret)
2399 return ret;
2400
2401 ret = __io_accept(req, nxt, force_nonblock);
2402 if (ret == -EAGAIN && force_nonblock) {
2403 req->work.func = io_accept_finish;
2404 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2405 io_put_req(req);
2406 return -EAGAIN;
2407 }
2408 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002409#else
2410 return -EOPNOTSUPP;
2411#endif
2412}
2413
Jens Axboef499a022019-12-02 16:28:46 -07002414static int io_connect_prep(struct io_kiocb *req, struct io_async_ctx *io)
2415{
2416#if defined(CONFIG_NET)
2417 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboef499a022019-12-02 16:28:46 -07002418
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002419 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2420 return -EINVAL;
2421 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
2422 return -EINVAL;
2423
2424 req->connect.addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
2425 req->connect.addr_len = READ_ONCE(sqe->addr2);
2426 return move_addr_to_kernel(req->connect.addr, req->connect.addr_len,
2427 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07002428#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002429 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07002430#endif
2431}
2432
Jens Axboefc4df992019-12-10 14:38:45 -07002433static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
2434 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07002435{
2436#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07002437 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002438 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002439 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002440
Jens Axboef499a022019-12-02 16:28:46 -07002441 if (req->io) {
2442 io = req->io;
2443 } else {
2444 ret = io_connect_prep(req, &__io);
2445 if (ret)
2446 goto out;
2447 io = &__io;
2448 }
2449
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002450 file_flags = force_nonblock ? O_NONBLOCK : 0;
2451
2452 ret = __sys_connect_file(req->file, &io->connect.address,
2453 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07002454 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002455 if (req->io)
2456 return -EAGAIN;
2457 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07002458 ret = -ENOMEM;
2459 goto out;
2460 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002461 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07002462 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07002463 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07002464 if (ret == -ERESTARTSYS)
2465 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07002466out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002467 if (ret < 0)
2468 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07002469 io_cqring_add_event(req, ret);
2470 io_put_req_find_next(req, nxt);
2471 return 0;
2472#else
2473 return -EOPNOTSUPP;
2474#endif
2475}
2476
Jens Axboe221c5eb2019-01-17 09:41:58 -07002477static void io_poll_remove_one(struct io_kiocb *req)
2478{
2479 struct io_poll_iocb *poll = &req->poll;
2480
2481 spin_lock(&poll->head->lock);
2482 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07002483 if (!list_empty(&poll->wait.entry)) {
2484 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07002485 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002486 }
2487 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002488 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002489}
2490
2491static void io_poll_remove_all(struct io_ring_ctx *ctx)
2492{
Jens Axboe78076bb2019-12-04 19:56:40 -07002493 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002494 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07002495 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002496
2497 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002498 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
2499 struct hlist_head *list;
2500
2501 list = &ctx->cancel_hash[i];
2502 hlist_for_each_entry_safe(req, tmp, list, hash_node)
2503 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002504 }
2505 spin_unlock_irq(&ctx->completion_lock);
2506}
2507
Jens Axboe47f46762019-11-09 17:43:02 -07002508static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2509{
Jens Axboe78076bb2019-12-04 19:56:40 -07002510 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07002511 struct io_kiocb *req;
2512
Jens Axboe78076bb2019-12-04 19:56:40 -07002513 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
2514 hlist_for_each_entry(req, list, hash_node) {
2515 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07002516 io_poll_remove_one(req);
2517 return 0;
2518 }
Jens Axboe47f46762019-11-09 17:43:02 -07002519 }
2520
2521 return -ENOENT;
2522}
2523
Jens Axboe0969e782019-12-17 18:40:57 -07002524static int io_poll_remove_prep(struct io_kiocb *req)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002525{
Jens Axboefc4df992019-12-10 14:38:45 -07002526 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002527
Jens Axboe0969e782019-12-17 18:40:57 -07002528 if (req->flags & REQ_F_PREPPED)
2529 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002530 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2531 return -EINVAL;
2532 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2533 sqe->poll_events)
2534 return -EINVAL;
2535
Jens Axboe0969e782019-12-17 18:40:57 -07002536 req->poll.addr = READ_ONCE(sqe->addr);
2537 req->flags |= REQ_F_PREPPED;
2538 return 0;
2539}
2540
2541/*
2542 * Find a running poll command that matches one specified in sqe->addr,
2543 * and remove it if found.
2544 */
2545static int io_poll_remove(struct io_kiocb *req)
2546{
2547 struct io_ring_ctx *ctx = req->ctx;
2548 u64 addr;
2549 int ret;
2550
2551 ret = io_poll_remove_prep(req);
2552 if (ret)
2553 return ret;
2554
2555 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002556 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07002557 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002558 spin_unlock_irq(&ctx->completion_lock);
2559
Jens Axboe78e19bb2019-11-06 15:21:34 -07002560 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002561 if (ret < 0)
2562 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002563 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002564 return 0;
2565}
2566
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002567static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002568{
Jackie Liua197f662019-11-08 08:09:12 -07002569 struct io_ring_ctx *ctx = req->ctx;
2570
Jens Axboe8c838782019-03-12 15:48:16 -06002571 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002572 if (error)
2573 io_cqring_fill_event(req, error);
2574 else
2575 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06002576 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002577}
2578
Jens Axboe561fb042019-10-24 07:25:42 -06002579static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002580{
Jens Axboe561fb042019-10-24 07:25:42 -06002581 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002582 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2583 struct io_poll_iocb *poll = &req->poll;
2584 struct poll_table_struct pt = { ._key = poll->events };
2585 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07002586 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002587 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002588 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002589
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002590 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06002591 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002592 ret = -ECANCELED;
2593 } else if (READ_ONCE(poll->canceled)) {
2594 ret = -ECANCELED;
2595 }
Jens Axboe561fb042019-10-24 07:25:42 -06002596
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002597 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002598 mask = vfs_poll(poll->file, &pt) & poll->events;
2599
2600 /*
2601 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2602 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2603 * synchronize with them. In the cancellation case the list_del_init
2604 * itself is not actually needed, but harmless so we keep it in to
2605 * avoid further branches in the fast path.
2606 */
2607 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002608 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07002609 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002610 spin_unlock_irq(&ctx->completion_lock);
2611 return;
2612 }
Jens Axboe78076bb2019-12-04 19:56:40 -07002613 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002614 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002615 spin_unlock_irq(&ctx->completion_lock);
2616
Jens Axboe8c838782019-03-12 15:48:16 -06002617 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07002618
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002619 if (ret < 0)
2620 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002621 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07002622 if (nxt)
2623 *workptr = &nxt->work;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002624}
2625
2626static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2627 void *key)
2628{
Jens Axboee9444752019-11-26 15:02:04 -07002629 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002630 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2631 struct io_ring_ctx *ctx = req->ctx;
2632 __poll_t mask = key_to_poll(key);
Jens Axboe8c838782019-03-12 15:48:16 -06002633 unsigned long flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002634
2635 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06002636 if (mask && !(mask & poll->events))
2637 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002638
Jens Axboe392edb42019-12-09 17:52:20 -07002639 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002640
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002641 /*
2642 * Run completion inline if we can. We're using trylock here because
2643 * we are violating the completion_lock -> poll wq lock ordering.
2644 * If we have a link timeout we're going to need the completion_lock
2645 * for finalizing the request, mark us as having grabbed that already.
2646 */
Jens Axboe8c838782019-03-12 15:48:16 -06002647 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboe78076bb2019-12-04 19:56:40 -07002648 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002649 io_poll_complete(req, mask, 0);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002650 req->flags |= REQ_F_COMP_LOCKED;
2651 io_put_req(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002652 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2653
2654 io_cqring_ev_posted(ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06002655 } else {
Jackie Liua197f662019-11-08 08:09:12 -07002656 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002657 }
2658
Jens Axboe221c5eb2019-01-17 09:41:58 -07002659 return 1;
2660}
2661
2662struct io_poll_table {
2663 struct poll_table_struct pt;
2664 struct io_kiocb *req;
2665 int error;
2666};
2667
2668static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2669 struct poll_table_struct *p)
2670{
2671 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2672
2673 if (unlikely(pt->req->poll.head)) {
2674 pt->error = -EINVAL;
2675 return;
2676 }
2677
2678 pt->error = 0;
2679 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07002680 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002681}
2682
Jens Axboeeac406c2019-11-14 12:09:58 -07002683static void io_poll_req_insert(struct io_kiocb *req)
2684{
2685 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07002686 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07002687
Jens Axboe78076bb2019-12-04 19:56:40 -07002688 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
2689 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07002690}
2691
Jens Axboe0969e782019-12-17 18:40:57 -07002692static int io_poll_add_prep(struct io_kiocb *req)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002693{
Jens Axboefc4df992019-12-10 14:38:45 -07002694 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002695 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002696 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002697
Jens Axboe0969e782019-12-17 18:40:57 -07002698 if (req->flags & REQ_F_PREPPED)
2699 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002700 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2701 return -EINVAL;
2702 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2703 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06002704 if (!poll->file)
2705 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002706
Jens Axboe0969e782019-12-17 18:40:57 -07002707 req->flags |= REQ_F_PREPPED;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002708 events = READ_ONCE(sqe->poll_events);
2709 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07002710 return 0;
2711}
2712
2713static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
2714{
2715 struct io_poll_iocb *poll = &req->poll;
2716 struct io_ring_ctx *ctx = req->ctx;
2717 struct io_poll_table ipt;
2718 bool cancel = false;
2719 __poll_t mask;
2720 int ret;
2721
2722 ret = io_poll_add_prep(req);
2723 if (ret)
2724 return ret;
2725
2726 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07002727 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002728
Jens Axboe221c5eb2019-01-17 09:41:58 -07002729 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06002730 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002731 poll->canceled = false;
2732
2733 ipt.pt._qproc = io_poll_queue_proc;
2734 ipt.pt._key = poll->events;
2735 ipt.req = req;
2736 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2737
2738 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07002739 INIT_LIST_HEAD(&poll->wait.entry);
2740 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
2741 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002742
Jens Axboe36703242019-07-25 10:20:18 -06002743 INIT_LIST_HEAD(&req->list);
2744
Jens Axboe221c5eb2019-01-17 09:41:58 -07002745 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002746
2747 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06002748 if (likely(poll->head)) {
2749 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07002750 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06002751 if (ipt.error)
2752 cancel = true;
2753 ipt.error = 0;
2754 mask = 0;
2755 }
2756 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07002757 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002758 else if (cancel)
2759 WRITE_ONCE(poll->canceled, true);
2760 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07002761 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002762 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002763 }
Jens Axboe8c838782019-03-12 15:48:16 -06002764 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06002765 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002766 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06002767 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07002768 spin_unlock_irq(&ctx->completion_lock);
2769
Jens Axboe8c838782019-03-12 15:48:16 -06002770 if (mask) {
2771 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002772 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002773 }
Jens Axboe8c838782019-03-12 15:48:16 -06002774 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002775}
2776
Jens Axboe5262f562019-09-17 12:26:57 -06002777static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2778{
Jens Axboead8a48a2019-11-15 08:49:11 -07002779 struct io_timeout_data *data = container_of(timer,
2780 struct io_timeout_data, timer);
2781 struct io_kiocb *req = data->req;
2782 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06002783 unsigned long flags;
2784
Jens Axboe5262f562019-09-17 12:26:57 -06002785 atomic_inc(&ctx->cq_timeouts);
2786
2787 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08002788 /*
Jens Axboe11365042019-10-16 09:08:32 -06002789 * We could be racing with timeout deletion. If the list is empty,
2790 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08002791 */
Jens Axboe842f9612019-10-29 12:34:10 -06002792 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06002793 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06002794
Jens Axboe11365042019-10-16 09:08:32 -06002795 /*
2796 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08002797 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06002798 * pointer will be increased, otherwise other timeout reqs may
2799 * return in advance without waiting for enough wait_nr.
2800 */
2801 prev = req;
2802 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2803 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06002804 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06002805 }
Jens Axboe842f9612019-10-29 12:34:10 -06002806
Jens Axboe78e19bb2019-11-06 15:21:34 -07002807 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06002808 io_commit_cqring(ctx);
2809 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2810
2811 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002812 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06002813 io_put_req(req);
2814 return HRTIMER_NORESTART;
2815}
2816
Jens Axboe47f46762019-11-09 17:43:02 -07002817static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2818{
2819 struct io_kiocb *req;
2820 int ret = -ENOENT;
2821
2822 list_for_each_entry(req, &ctx->timeout_list, list) {
2823 if (user_data == req->user_data) {
2824 list_del_init(&req->list);
2825 ret = 0;
2826 break;
2827 }
2828 }
2829
2830 if (ret == -ENOENT)
2831 return ret;
2832
Jens Axboe2d283902019-12-04 11:08:05 -07002833 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07002834 if (ret == -1)
2835 return -EALREADY;
2836
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002837 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07002838 io_cqring_fill_event(req, -ECANCELED);
2839 io_put_req(req);
2840 return 0;
2841}
2842
Jens Axboeb29472e2019-12-17 18:50:29 -07002843static int io_timeout_remove_prep(struct io_kiocb *req)
2844{
2845 const struct io_uring_sqe *sqe = req->sqe;
2846
2847 if (req->flags & REQ_F_PREPPED)
2848 return 0;
2849 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2850 return -EINVAL;
2851 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2852 return -EINVAL;
2853
2854 req->timeout.addr = READ_ONCE(sqe->addr);
2855 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
2856 if (req->timeout.flags)
2857 return -EINVAL;
2858
2859 req->flags |= REQ_F_PREPPED;
2860 return 0;
2861}
2862
Jens Axboe11365042019-10-16 09:08:32 -06002863/*
2864 * Remove or update an existing timeout command
2865 */
Jens Axboefc4df992019-12-10 14:38:45 -07002866static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06002867{
2868 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07002869 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06002870
Jens Axboeb29472e2019-12-17 18:50:29 -07002871 ret = io_timeout_remove_prep(req);
2872 if (ret)
2873 return ret;
Jens Axboe11365042019-10-16 09:08:32 -06002874
Jens Axboe11365042019-10-16 09:08:32 -06002875 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07002876 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06002877
Jens Axboe47f46762019-11-09 17:43:02 -07002878 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06002879 io_commit_cqring(ctx);
2880 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002881 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002882 if (ret < 0)
2883 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002884 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06002885 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06002886}
2887
Jens Axboe2d283902019-12-04 11:08:05 -07002888static int io_timeout_prep(struct io_kiocb *req, struct io_async_ctx *io,
2889 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06002890{
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002891 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboead8a48a2019-11-15 08:49:11 -07002892 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06002893 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06002894
Jens Axboead8a48a2019-11-15 08:49:11 -07002895 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06002896 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002897 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06002898 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07002899 if (sqe->off && is_timeout_link)
2900 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06002901 flags = READ_ONCE(sqe->timeout_flags);
2902 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06002903 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06002904
Jens Axboe2d283902019-12-04 11:08:05 -07002905 data = &io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07002906 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07002907 req->flags |= REQ_F_TIMEOUT;
2908
2909 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06002910 return -EFAULT;
2911
Jens Axboe11365042019-10-16 09:08:32 -06002912 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07002913 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06002914 else
Jens Axboead8a48a2019-11-15 08:49:11 -07002915 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06002916
Jens Axboead8a48a2019-11-15 08:49:11 -07002917 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
2918 return 0;
2919}
2920
Jens Axboefc4df992019-12-10 14:38:45 -07002921static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07002922{
Jens Axboefc4df992019-12-10 14:38:45 -07002923 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboead8a48a2019-11-15 08:49:11 -07002924 unsigned count;
2925 struct io_ring_ctx *ctx = req->ctx;
2926 struct io_timeout_data *data;
2927 struct list_head *entry;
2928 unsigned span = 0;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002929 int ret;
Jens Axboead8a48a2019-11-15 08:49:11 -07002930
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002931 if (!req->io) {
2932 if (io_alloc_async_ctx(req))
Jens Axboe2d283902019-12-04 11:08:05 -07002933 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002934 ret = io_timeout_prep(req, req->io, false);
2935 if (ret)
Jens Axboe2d283902019-12-04 11:08:05 -07002936 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07002937 }
2938 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002939
Jens Axboe5262f562019-09-17 12:26:57 -06002940 /*
2941 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07002942 * timeout event to be satisfied. If it isn't set, then this is
2943 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06002944 */
2945 count = READ_ONCE(sqe->off);
Jens Axboe93bd25b2019-11-11 23:34:31 -07002946 if (!count) {
2947 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2948 spin_lock_irq(&ctx->completion_lock);
2949 entry = ctx->timeout_list.prev;
2950 goto add;
2951 }
Jens Axboe5262f562019-09-17 12:26:57 -06002952
2953 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07002954 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06002955
2956 /*
2957 * Insertion sort, ensuring the first entry in the list is always
2958 * the one we need first.
2959 */
Jens Axboe5262f562019-09-17 12:26:57 -06002960 spin_lock_irq(&ctx->completion_lock);
2961 list_for_each_prev(entry, &ctx->timeout_list) {
2962 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08002963 unsigned nxt_sq_head;
2964 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07002965 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06002966
Jens Axboe93bd25b2019-11-11 23:34:31 -07002967 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2968 continue;
2969
yangerkun5da0fb12019-10-15 21:59:29 +08002970 /*
2971 * Since cached_sq_head + count - 1 can overflow, use type long
2972 * long to store it.
2973 */
2974 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002975 nxt_sq_head = nxt->sequence - nxt_offset + 1;
2976 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08002977
2978 /*
2979 * cached_sq_head may overflow, and it will never overflow twice
2980 * once there is some timeout req still be valid.
2981 */
2982 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08002983 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08002984
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002985 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06002986 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002987
2988 /*
2989 * Sequence of reqs after the insert one and itself should
2990 * be adjusted because each timeout req consumes a slot.
2991 */
2992 span++;
2993 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06002994 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002995 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002996add:
Jens Axboe5262f562019-09-17 12:26:57 -06002997 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07002998 data->timer.function = io_timeout_fn;
2999 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06003000 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003001 return 0;
3002}
3003
Jens Axboe62755e32019-10-28 21:49:21 -06003004static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06003005{
Jens Axboe62755e32019-10-28 21:49:21 -06003006 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06003007
Jens Axboe62755e32019-10-28 21:49:21 -06003008 return req->user_data == (unsigned long) data;
3009}
3010
Jens Axboee977d6d2019-11-05 12:39:45 -07003011static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003012{
Jens Axboe62755e32019-10-28 21:49:21 -06003013 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003014 int ret = 0;
3015
Jens Axboe62755e32019-10-28 21:49:21 -06003016 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3017 switch (cancel_ret) {
3018 case IO_WQ_CANCEL_OK:
3019 ret = 0;
3020 break;
3021 case IO_WQ_CANCEL_RUNNING:
3022 ret = -EALREADY;
3023 break;
3024 case IO_WQ_CANCEL_NOTFOUND:
3025 ret = -ENOENT;
3026 break;
3027 }
3028
Jens Axboee977d6d2019-11-05 12:39:45 -07003029 return ret;
3030}
3031
Jens Axboe47f46762019-11-09 17:43:02 -07003032static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3033 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003034 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07003035{
3036 unsigned long flags;
3037 int ret;
3038
3039 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3040 if (ret != -ENOENT) {
3041 spin_lock_irqsave(&ctx->completion_lock, flags);
3042 goto done;
3043 }
3044
3045 spin_lock_irqsave(&ctx->completion_lock, flags);
3046 ret = io_timeout_cancel(ctx, sqe_addr);
3047 if (ret != -ENOENT)
3048 goto done;
3049 ret = io_poll_cancel(ctx, sqe_addr);
3050done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003051 if (!ret)
3052 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07003053 io_cqring_fill_event(req, ret);
3054 io_commit_cqring(ctx);
3055 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3056 io_cqring_ev_posted(ctx);
3057
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003058 if (ret < 0)
3059 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003060 io_put_req_find_next(req, nxt);
3061}
3062
Jens Axboefbf23842019-12-17 18:45:56 -07003063static int io_async_cancel_prep(struct io_kiocb *req)
Jens Axboee977d6d2019-11-05 12:39:45 -07003064{
Jens Axboefc4df992019-12-10 14:38:45 -07003065 const struct io_uring_sqe *sqe = req->sqe;
Jens Axboee977d6d2019-11-05 12:39:45 -07003066
Jens Axboefbf23842019-12-17 18:45:56 -07003067 if (req->flags & REQ_F_PREPPED)
3068 return 0;
3069 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07003070 return -EINVAL;
3071 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3072 sqe->cancel_flags)
3073 return -EINVAL;
3074
Jens Axboefbf23842019-12-17 18:45:56 -07003075 req->flags |= REQ_F_PREPPED;
3076 req->cancel.addr = READ_ONCE(sqe->addr);
3077 return 0;
3078}
3079
3080static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
3081{
3082 struct io_ring_ctx *ctx = req->ctx;
3083 int ret;
3084
3085 ret = io_async_cancel_prep(req);
3086 if (ret)
3087 return ret;
3088
3089 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06003090 return 0;
3091}
3092
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003093static int io_req_defer_prep(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003094{
3095 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003096 struct io_async_ctx *io = req->io;
Jens Axboef67676d2019-12-02 11:03:47 -07003097 struct iov_iter iter;
Jens Axboee7815732019-12-17 19:45:06 -07003098 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003099
Jens Axboed625c6e2019-12-17 19:53:05 -07003100 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07003101 case IORING_OP_NOP:
3102 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003103 case IORING_OP_READV:
3104 case IORING_OP_READ_FIXED:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003105 /* ensure prep does right import */
3106 req->io = NULL;
Jens Axboef67676d2019-12-02 11:03:47 -07003107 ret = io_read_prep(req, &iovec, &iter, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003108 req->io = io;
3109 if (ret < 0)
3110 break;
3111 io_req_map_rw(req, ret, iovec, inline_vecs, &iter);
3112 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003113 break;
3114 case IORING_OP_WRITEV:
3115 case IORING_OP_WRITE_FIXED:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003116 /* ensure prep does right import */
3117 req->io = NULL;
Jens Axboef67676d2019-12-02 11:03:47 -07003118 ret = io_write_prep(req, &iovec, &iter, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003119 req->io = io;
3120 if (ret < 0)
3121 break;
3122 io_req_map_rw(req, ret, iovec, inline_vecs, &iter);
3123 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003124 break;
Jens Axboe0969e782019-12-17 18:40:57 -07003125 case IORING_OP_POLL_ADD:
3126 ret = io_poll_add_prep(req);
3127 break;
3128 case IORING_OP_POLL_REMOVE:
3129 ret = io_poll_remove_prep(req);
3130 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003131 case IORING_OP_FSYNC:
3132 ret = io_prep_fsync(req);
3133 break;
3134 case IORING_OP_SYNC_FILE_RANGE:
3135 ret = io_prep_sfr(req);
3136 break;
Jens Axboe03b12302019-12-02 18:50:25 -07003137 case IORING_OP_SENDMSG:
3138 ret = io_sendmsg_prep(req, io);
3139 break;
3140 case IORING_OP_RECVMSG:
3141 ret = io_recvmsg_prep(req, io);
3142 break;
Jens Axboef499a022019-12-02 16:28:46 -07003143 case IORING_OP_CONNECT:
3144 ret = io_connect_prep(req, io);
3145 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003146 case IORING_OP_TIMEOUT:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003147 ret = io_timeout_prep(req, io, false);
3148 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07003149 case IORING_OP_TIMEOUT_REMOVE:
3150 ret = io_timeout_remove_prep(req);
3151 break;
Jens Axboefbf23842019-12-17 18:45:56 -07003152 case IORING_OP_ASYNC_CANCEL:
3153 ret = io_async_cancel_prep(req);
3154 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003155 case IORING_OP_LINK_TIMEOUT:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003156 ret = io_timeout_prep(req, io, true);
3157 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003158 case IORING_OP_ACCEPT:
3159 ret = io_accept_prep(req);
3160 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003161 default:
Jens Axboee7815732019-12-17 19:45:06 -07003162 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
3163 req->opcode);
3164 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003165 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003166 }
3167
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003168 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003169}
3170
Jackie Liua197f662019-11-08 08:09:12 -07003171static int io_req_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -06003172{
Jackie Liua197f662019-11-08 08:09:12 -07003173 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07003174 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06003175
Bob Liu9d858b22019-11-13 18:06:25 +08003176 /* Still need defer if there is pending req in defer list. */
3177 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06003178 return 0;
3179
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003180 if (io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06003181 return -EAGAIN;
3182
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003183 ret = io_req_defer_prep(req);
3184 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07003185 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07003186
Jens Axboede0617e2019-04-06 21:51:27 -06003187 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08003188 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06003189 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06003190 return 0;
3191 }
3192
Jens Axboe915967f2019-11-21 09:01:20 -07003193 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06003194 list_add_tail(&req->list, &ctx->defer_list);
3195 spin_unlock_irq(&ctx->completion_lock);
3196 return -EIOCBQUEUED;
3197}
3198
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003199__attribute__((nonnull))
Pavel Begunkovd7324472019-11-21 21:24:36 +03003200static int io_issue_sqe(struct io_kiocb *req, struct io_kiocb **nxt,
3201 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003202{
Jackie Liua197f662019-11-08 08:09:12 -07003203 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07003204 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003205
Jens Axboed625c6e2019-12-17 19:53:05 -07003206 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003207 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003208 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003209 break;
3210 case IORING_OP_READV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003211 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07003212 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03003213 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003214 break;
3215 case IORING_OP_WRITEV:
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003216 if (unlikely(req->sqe->buf_index))
Jens Axboeedafcce2019-01-09 09:16:05 -07003217 return -EINVAL;
Pavel Begunkov267bc902019-11-07 01:41:08 +03003218 ret = io_write(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07003219 break;
3220 case IORING_OP_READ_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03003221 ret = io_read(req, nxt, force_nonblock);
Jens Axboeedafcce2019-01-09 09:16:05 -07003222 break;
3223 case IORING_OP_WRITE_FIXED:
Pavel Begunkov267bc902019-11-07 01:41:08 +03003224 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003225 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003226 case IORING_OP_FSYNC:
Jens Axboefc4df992019-12-10 14:38:45 -07003227 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003228 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003229 case IORING_OP_POLL_ADD:
Jens Axboefc4df992019-12-10 14:38:45 -07003230 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003231 break;
3232 case IORING_OP_POLL_REMOVE:
Jens Axboefc4df992019-12-10 14:38:45 -07003233 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003234 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003235 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboefc4df992019-12-10 14:38:45 -07003236 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003237 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003238 case IORING_OP_SENDMSG:
Jens Axboefc4df992019-12-10 14:38:45 -07003239 ret = io_sendmsg(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003240 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06003241 case IORING_OP_RECVMSG:
Jens Axboefc4df992019-12-10 14:38:45 -07003242 ret = io_recvmsg(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06003243 break;
Jens Axboe5262f562019-09-17 12:26:57 -06003244 case IORING_OP_TIMEOUT:
Jens Axboefc4df992019-12-10 14:38:45 -07003245 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003246 break;
Jens Axboe11365042019-10-16 09:08:32 -06003247 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboefc4df992019-12-10 14:38:45 -07003248 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06003249 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003250 case IORING_OP_ACCEPT:
Jens Axboefc4df992019-12-10 14:38:45 -07003251 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003252 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003253 case IORING_OP_CONNECT:
Jens Axboefc4df992019-12-10 14:38:45 -07003254 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003255 break;
Jens Axboe62755e32019-10-28 21:49:21 -06003256 case IORING_OP_ASYNC_CANCEL:
Jens Axboefc4df992019-12-10 14:38:45 -07003257 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06003258 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003259 default:
3260 ret = -EINVAL;
3261 break;
3262 }
3263
Jens Axboedef596e2019-01-09 08:59:42 -07003264 if (ret)
3265 return ret;
3266
3267 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003268 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07003269 return -EAGAIN;
3270
Jens Axboedef596e2019-01-09 08:59:42 -07003271 io_iopoll_req_issued(req);
Jens Axboedef596e2019-01-09 08:59:42 -07003272 }
3273
3274 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003275}
3276
Jens Axboeb76da702019-11-20 13:05:32 -07003277static void io_link_work_cb(struct io_wq_work **workptr)
3278{
3279 struct io_wq_work *work = *workptr;
3280 struct io_kiocb *link = work->data;
3281
3282 io_queue_linked_timeout(link);
3283 work->func = io_wq_submit_work;
3284}
3285
Jens Axboe561fb042019-10-24 07:25:42 -06003286static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07003287{
Jens Axboe561fb042019-10-24 07:25:42 -06003288 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003289 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06003290 struct io_kiocb *nxt = NULL;
3291 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003292
Jens Axboe561fb042019-10-24 07:25:42 -06003293 if (work->flags & IO_WQ_WORK_CANCEL)
3294 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07003295
Jens Axboe561fb042019-10-24 07:25:42 -06003296 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003297 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
3298 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06003299 do {
Pavel Begunkovd7324472019-11-21 21:24:36 +03003300 ret = io_issue_sqe(req, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06003301 /*
3302 * We can get EAGAIN for polled IO even though we're
3303 * forcing a sync submission from here, since we can't
3304 * wait for request slots on the block side.
3305 */
3306 if (ret != -EAGAIN)
3307 break;
3308 cond_resched();
3309 } while (1);
3310 }
Jens Axboe31b51512019-01-18 22:56:34 -07003311
Jens Axboe561fb042019-10-24 07:25:42 -06003312 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08003313 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06003314
Jens Axboe561fb042019-10-24 07:25:42 -06003315 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003316 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003317 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06003318 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07003319 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003320
Jens Axboe561fb042019-10-24 07:25:42 -06003321 /* if a dependent link is ready, pass it back */
3322 if (!ret && nxt) {
Jens Axboe94ae5e72019-11-14 19:39:52 -07003323 struct io_kiocb *link;
3324
3325 io_prep_async_work(nxt, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06003326 *workptr = &nxt->work;
Jens Axboeb76da702019-11-20 13:05:32 -07003327 if (link) {
3328 nxt->work.flags |= IO_WQ_WORK_CB;
3329 nxt->work.func = io_link_work_cb;
3330 nxt->work.data = link;
3331 }
Jens Axboeedafcce2019-01-09 09:16:05 -07003332 }
Jens Axboe31b51512019-01-18 22:56:34 -07003333}
Jens Axboe2b188cc2019-01-07 10:46:33 -07003334
Jens Axboe9e3aa612019-12-11 15:55:43 -07003335static bool io_req_op_valid(int op)
3336{
3337 return op >= IORING_OP_NOP && op < IORING_OP_LAST;
3338}
3339
Jens Axboed625c6e2019-12-17 19:53:05 -07003340static int io_req_needs_file(struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003341{
Jens Axboed625c6e2019-12-17 19:53:05 -07003342 switch (req->opcode) {
Jens Axboe09bb8392019-03-13 12:39:28 -06003343 case IORING_OP_NOP:
3344 case IORING_OP_POLL_REMOVE:
Pavel Begunkov5683e542019-11-14 00:59:19 +03003345 case IORING_OP_TIMEOUT:
Pavel Begunkova320e9f2019-11-14 00:11:01 +03003346 case IORING_OP_TIMEOUT_REMOVE:
3347 case IORING_OP_ASYNC_CANCEL:
3348 case IORING_OP_LINK_TIMEOUT:
Jens Axboe9e3aa612019-12-11 15:55:43 -07003349 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06003350 default:
Jens Axboed625c6e2019-12-17 19:53:05 -07003351 if (io_req_op_valid(req->opcode))
Jens Axboe9e3aa612019-12-11 15:55:43 -07003352 return 1;
3353 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003354 }
3355}
3356
Jens Axboe65e19f52019-10-26 07:20:21 -06003357static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
3358 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06003359{
Jens Axboe65e19f52019-10-26 07:20:21 -06003360 struct fixed_file_table *table;
3361
3362 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
3363 return table->files[index & IORING_FILE_TABLE_MASK];
3364}
3365
Jackie Liua197f662019-11-08 08:09:12 -07003366static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003367{
Jackie Liua197f662019-11-08 08:09:12 -07003368 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06003369 unsigned flags;
Jens Axboe9e3aa612019-12-11 15:55:43 -07003370 int fd, ret;
Jens Axboe09bb8392019-03-13 12:39:28 -06003371
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003372 flags = READ_ONCE(req->sqe->flags);
3373 fd = READ_ONCE(req->sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003374
Jackie Liu4fe2c962019-09-09 20:50:40 +08003375 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06003376 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06003377
Jens Axboed625c6e2019-12-17 19:53:05 -07003378 ret = io_req_needs_file(req);
Jens Axboe9e3aa612019-12-11 15:55:43 -07003379 if (ret <= 0)
3380 return ret;
Jens Axboe09bb8392019-03-13 12:39:28 -06003381
3382 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003383 if (unlikely(!ctx->file_table ||
Jens Axboe09bb8392019-03-13 12:39:28 -06003384 (unsigned) fd >= ctx->nr_user_files))
3385 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06003386 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06003387 req->file = io_file_from_index(ctx, fd);
3388 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06003389 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06003390 req->flags |= REQ_F_FIXED_FILE;
3391 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003392 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06003393 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003394 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003395 req->file = io_file_get(state, fd);
3396 if (unlikely(!req->file))
3397 return -EBADF;
3398 }
3399
3400 return 0;
3401}
3402
Jackie Liua197f662019-11-08 08:09:12 -07003403static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003404{
Jens Axboefcb323c2019-10-24 12:39:47 -06003405 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07003406 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06003407
3408 rcu_read_lock();
3409 spin_lock_irq(&ctx->inflight_lock);
3410 /*
3411 * We use the f_ops->flush() handler to ensure that we can flush
3412 * out work accessing these files if the fd is closed. Check if
3413 * the fd has changed since we started down this path, and disallow
3414 * this operation if it has.
3415 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003416 if (fcheck(req->ring_fd) == req->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06003417 list_add(&req->inflight_entry, &ctx->inflight_list);
3418 req->flags |= REQ_F_INFLIGHT;
3419 req->work.files = current->files;
3420 ret = 0;
3421 }
3422 spin_unlock_irq(&ctx->inflight_lock);
3423 rcu_read_unlock();
3424
3425 return ret;
3426}
3427
Jens Axboe2665abf2019-11-05 12:40:47 -07003428static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
3429{
Jens Axboead8a48a2019-11-15 08:49:11 -07003430 struct io_timeout_data *data = container_of(timer,
3431 struct io_timeout_data, timer);
3432 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07003433 struct io_ring_ctx *ctx = req->ctx;
3434 struct io_kiocb *prev = NULL;
3435 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07003436
3437 spin_lock_irqsave(&ctx->completion_lock, flags);
3438
3439 /*
3440 * We don't expect the list to be empty, that will only happen if we
3441 * race with the completion of the linked work.
3442 */
Pavel Begunkov44932332019-12-05 16:16:35 +03003443 if (!list_empty(&req->link_list)) {
3444 prev = list_entry(req->link_list.prev, struct io_kiocb,
3445 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003446 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03003447 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003448 prev->flags &= ~REQ_F_LINK_TIMEOUT;
3449 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07003450 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003451 }
3452
3453 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3454
3455 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003456 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003457 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
3458 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07003459 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07003460 } else {
3461 io_cqring_add_event(req, -ETIME);
3462 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003463 }
Jens Axboe2665abf2019-11-05 12:40:47 -07003464 return HRTIMER_NORESTART;
3465}
3466
Jens Axboead8a48a2019-11-15 08:49:11 -07003467static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003468{
Jens Axboe76a46e02019-11-10 23:34:16 -07003469 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07003470
Jens Axboe76a46e02019-11-10 23:34:16 -07003471 /*
3472 * If the list is now empty, then our linked request finished before
3473 * we got a chance to setup the timer
3474 */
3475 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03003476 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07003477 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07003478
Jens Axboead8a48a2019-11-15 08:49:11 -07003479 data->timer.function = io_link_timeout_fn;
3480 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
3481 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07003482 }
Jens Axboe76a46e02019-11-10 23:34:16 -07003483 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07003484
Jens Axboe2665abf2019-11-05 12:40:47 -07003485 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07003486 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003487}
3488
Jens Axboead8a48a2019-11-15 08:49:11 -07003489static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003490{
3491 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003492
Jens Axboe2665abf2019-11-05 12:40:47 -07003493 if (!(req->flags & REQ_F_LINK))
3494 return NULL;
3495
Pavel Begunkov44932332019-12-05 16:16:35 +03003496 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
3497 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07003498 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07003499 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003500
Jens Axboe76a46e02019-11-10 23:34:16 -07003501 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07003502 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07003503}
3504
Jens Axboe0e0702d2019-11-14 21:42:10 -07003505static void __io_queue_sqe(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003506{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003507 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003508 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003509 int ret;
3510
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003511again:
3512 linked_timeout = io_prep_linked_timeout(req);
3513
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003514 ret = io_issue_sqe(req, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06003515
3516 /*
3517 * We async punt it if the file wasn't marked NOWAIT, or if the file
3518 * doesn't support non-blocking read/write attempts
3519 */
3520 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
3521 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003522 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
3523 ret = io_grab_files(req);
3524 if (ret)
3525 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003526 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003527
3528 /*
3529 * Queued up for async execution, worker will release
3530 * submit reference when the iocb is actually submitted.
3531 */
3532 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003533 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003534 }
Jens Axboee65ef562019-03-12 10:16:44 -06003535
Jens Axboefcb323c2019-10-24 12:39:47 -06003536err:
Jens Axboee65ef562019-03-12 10:16:44 -06003537 /* drop submission reference */
3538 io_put_req(req);
3539
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003540 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003541 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003542 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003543 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003544 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003545 }
3546
Jens Axboee65ef562019-03-12 10:16:44 -06003547 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06003548 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003549 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003550 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003551 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003552 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003553done_req:
3554 if (nxt) {
3555 req = nxt;
3556 nxt = NULL;
3557 goto again;
3558 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003559}
3560
Jens Axboe0e0702d2019-11-14 21:42:10 -07003561static void io_queue_sqe(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003562{
3563 int ret;
3564
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003565 if (unlikely(req->ctx->drain_next)) {
3566 req->flags |= REQ_F_IO_DRAIN;
3567 req->ctx->drain_next = false;
3568 }
3569 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
3570
Jackie Liua197f662019-11-08 08:09:12 -07003571 ret = io_req_defer(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003572 if (ret) {
3573 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003574 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003575 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003576 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003577 }
Jens Axboe0e0702d2019-11-14 21:42:10 -07003578 } else
3579 __io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003580}
3581
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003582static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003583{
Jens Axboe94ae5e72019-11-14 19:39:52 -07003584 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003585 io_cqring_add_event(req, -ECANCELED);
3586 io_double_put_req(req);
3587 } else
Jens Axboe0e0702d2019-11-14 21:42:10 -07003588 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003589}
3590
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003591#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
3592 IOSQE_IO_HARDLINK)
Jens Axboe9e645e112019-05-10 16:07:28 -06003593
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003594static bool io_submit_sqe(struct io_kiocb *req, struct io_submit_state *state,
Jackie Liua197f662019-11-08 08:09:12 -07003595 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06003596{
Jackie Liua197f662019-11-08 08:09:12 -07003597 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06003598 int ret;
3599
3600 /* enforce forwards compatibility on users */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003601 if (unlikely(req->sqe->flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003602 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03003603 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06003604 }
3605
Jackie Liua197f662019-11-08 08:09:12 -07003606 ret = io_req_set_file(state, req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003607 if (unlikely(ret)) {
3608err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003609 io_cqring_add_event(req, ret);
3610 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003611 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06003612 }
3613
Jens Axboe9e645e112019-05-10 16:07:28 -06003614 /*
3615 * If we already have a head request, queue this one for async
3616 * submittal once the head completes. If we don't have a head but
3617 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3618 * submitted sync once the chain is complete. If none of those
3619 * conditions are true (normal request), then just queue it.
3620 */
3621 if (*link) {
3622 struct io_kiocb *prev = *link;
3623
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003624 if (req->sqe->flags & IOSQE_IO_DRAIN)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003625 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3626
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003627 if (req->sqe->flags & IOSQE_IO_HARDLINK)
3628 req->flags |= REQ_F_HARDLINK;
3629
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003630 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003631 ret = -EAGAIN;
3632 goto err_req;
3633 }
3634
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003635 ret = io_req_defer_prep(req);
Jens Axboe2d283902019-12-04 11:08:05 -07003636 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003637 /* fail even hard links since we don't submit */
Jens Axboe2d283902019-12-04 11:08:05 -07003638 prev->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07003639 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07003640 }
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003641 trace_io_uring_link(ctx, req, prev);
Pavel Begunkov44932332019-12-05 16:16:35 +03003642 list_add_tail(&req->link_list, &prev->link_list);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003643 } else if (req->sqe->flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003644 req->flags |= REQ_F_LINK;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003645 if (req->sqe->flags & IOSQE_IO_HARDLINK)
3646 req->flags |= REQ_F_HARDLINK;
Jens Axboe9e645e112019-05-10 16:07:28 -06003647
Jens Axboe9e645e112019-05-10 16:07:28 -06003648 INIT_LIST_HEAD(&req->link_list);
3649 *link = req;
3650 } else {
Jackie Liua197f662019-11-08 08:09:12 -07003651 io_queue_sqe(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003652 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003653
3654 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06003655}
3656
Jens Axboe9a56a232019-01-09 09:06:50 -07003657/*
3658 * Batched submission is done, ensure local IO is flushed out.
3659 */
3660static void io_submit_state_end(struct io_submit_state *state)
3661{
3662 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06003663 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07003664 if (state->free_reqs)
3665 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3666 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07003667}
3668
3669/*
3670 * Start submission side cache.
3671 */
3672static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08003673 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07003674{
3675 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07003676 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07003677 state->file = NULL;
3678 state->ios_left = max_ios;
3679}
3680
Jens Axboe2b188cc2019-01-07 10:46:33 -07003681static void io_commit_sqring(struct io_ring_ctx *ctx)
3682{
Hristo Venev75b28af2019-08-26 17:23:46 +00003683 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003684
Hristo Venev75b28af2019-08-26 17:23:46 +00003685 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003686 /*
3687 * Ensure any loads from the SQEs are done at this point,
3688 * since once we write the new head, the application could
3689 * write new data to them.
3690 */
Hristo Venev75b28af2019-08-26 17:23:46 +00003691 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003692 }
3693}
3694
3695/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08003696 * Fetch an sqe, if one is available. Note that req->sqe will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07003697 * that is mapped by userspace. This means that care needs to be taken to
3698 * ensure that reads are stable, as we cannot rely on userspace always
3699 * being a good citizen. If members of the sqe are validated and then later
3700 * used, it's important that those reads are done through READ_ONCE() to
3701 * prevent a re-load down the line.
3702 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003703static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003704{
Hristo Venev75b28af2019-08-26 17:23:46 +00003705 struct io_rings *rings = ctx->rings;
3706 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003707 unsigned head;
3708
3709 /*
3710 * The cached sq head (or cq tail) serves two purposes:
3711 *
3712 * 1) allows us to batch the cost of updating the user visible
3713 * head updates.
3714 * 2) allows the kernel side to track the head on its own, even
3715 * though the application is the one updating it.
3716 */
3717 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02003718 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003719 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07003720 return false;
3721
Hristo Venev75b28af2019-08-26 17:23:46 +00003722 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003723 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003724 /*
3725 * All io need record the previous position, if LINK vs DARIN,
3726 * it can be used to mark the position of the first IO in the
3727 * link list.
3728 */
3729 req->sequence = ctx->cached_sq_head;
3730 req->sqe = &ctx->sq_sqes[head];
Jens Axboed625c6e2019-12-17 19:53:05 -07003731 req->opcode = READ_ONCE(req->sqe->opcode);
3732 req->user_data = READ_ONCE(req->sqe->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003733 ctx->cached_sq_head++;
3734 return true;
3735 }
3736
3737 /* drop invalid entries */
3738 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06003739 ctx->cached_sq_dropped++;
3740 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003741 return false;
3742}
3743
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003744static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003745 struct file *ring_file, int ring_fd,
3746 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07003747{
3748 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003749 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003750 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003751 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003752
Jens Axboec4a2ed72019-11-21 21:01:26 -07003753 /* if we have a backlog and couldn't flush it all, return BUSY */
3754 if (!list_empty(&ctx->cq_overflow_list) &&
3755 !io_cqring_overflow_flush(ctx, false))
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003756 return -EBUSY;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003757
3758 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08003759 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003760 statep = &state;
3761 }
3762
3763 for (i = 0; i < nr; i++) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003764 struct io_kiocb *req;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003765 unsigned int sqe_flags;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003766
Pavel Begunkov196be952019-11-07 01:41:06 +03003767 req = io_get_req(ctx, statep);
3768 if (unlikely(!req)) {
3769 if (!submitted)
3770 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003771 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06003772 }
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003773 if (!io_get_sqring(ctx, req)) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003774 __io_free_req(req);
3775 break;
3776 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003777
Jens Axboed625c6e2019-12-17 19:53:05 -07003778 if (io_req_needs_user(req) && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003779 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3780 if (!mm_fault) {
3781 use_mm(ctx->sqo_mm);
3782 *mm = ctx->sqo_mm;
3783 }
3784 }
3785
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003786 submitted++;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003787 sqe_flags = req->sqe->flags;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003788
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003789 req->ring_file = ring_file;
3790 req->ring_fd = ring_fd;
3791 req->has_user = *mm != NULL;
3792 req->in_async = async;
3793 req->needs_fixed_file = async;
Jens Axboed625c6e2019-12-17 19:53:05 -07003794 trace_io_uring_submit_sqe(ctx, req->user_data, true, async);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003795 if (!io_submit_sqe(req, statep, &link))
3796 break;
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003797 /*
3798 * If previous wasn't linked and we have a linked command,
3799 * that's the end of the chain. Submit the previous link.
3800 */
Pavel Begunkovffbb8d62019-12-17 20:57:05 +03003801 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) && link) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003802 io_queue_link_head(link);
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003803 link = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003804 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003805 }
3806
Jens Axboe9e645e112019-05-10 16:07:28 -06003807 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003808 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003809 if (statep)
3810 io_submit_state_end(&state);
3811
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003812 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3813 io_commit_sqring(ctx);
3814
Jens Axboe6c271ce2019-01-10 11:22:30 -07003815 return submitted;
3816}
3817
3818static int io_sq_thread(void *data)
3819{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003820 struct io_ring_ctx *ctx = data;
3821 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07003822 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003823 mm_segment_t old_fs;
3824 DEFINE_WAIT(wait);
3825 unsigned inflight;
3826 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07003827 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003828
Jens Axboe206aefd2019-11-07 18:27:42 -07003829 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08003830
Jens Axboe6c271ce2019-01-10 11:22:30 -07003831 old_fs = get_fs();
3832 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07003833 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003834
Jens Axboec1edbf52019-11-10 16:56:04 -07003835 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003836 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003837 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003838
3839 if (inflight) {
3840 unsigned nr_events = 0;
3841
3842 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06003843 /*
3844 * inflight is the count of the maximum possible
3845 * entries we submitted, but it can be smaller
3846 * if we dropped some of them. If we don't have
3847 * poll entries available, then we know that we
3848 * have nothing left to poll for. Reset the
3849 * inflight count to zero in that case.
3850 */
3851 mutex_lock(&ctx->uring_lock);
3852 if (!list_empty(&ctx->poll_list))
3853 __io_iopoll_check(ctx, &nr_events, 0);
3854 else
3855 inflight = 0;
3856 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003857 } else {
3858 /*
3859 * Normal IO, just pretend everything completed.
3860 * We don't have to poll completions for that.
3861 */
3862 nr_events = inflight;
3863 }
3864
3865 inflight -= nr_events;
3866 if (!inflight)
3867 timeout = jiffies + ctx->sq_thread_idle;
3868 }
3869
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003870 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003871
3872 /*
3873 * If submit got -EBUSY, flag us as needing the application
3874 * to enter the kernel to reap and flush events.
3875 */
3876 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003877 /*
3878 * We're polling. If we're within the defined idle
3879 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07003880 * to sleep. The exception is if we got EBUSY doing
3881 * more IO, we should wait for the application to
3882 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07003883 */
Jens Axboec1edbf52019-11-10 16:56:04 -07003884 if (inflight ||
3885 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06003886 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003887 continue;
3888 }
3889
3890 /*
3891 * Drop cur_mm before scheduling, we can't hold it for
3892 * long periods (or over schedule()). Do this before
3893 * adding ourselves to the waitqueue, as the unuse/drop
3894 * may sleep.
3895 */
3896 if (cur_mm) {
3897 unuse_mm(cur_mm);
3898 mmput(cur_mm);
3899 cur_mm = NULL;
3900 }
3901
3902 prepare_to_wait(&ctx->sqo_wait, &wait,
3903 TASK_INTERRUPTIBLE);
3904
3905 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00003906 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02003907 /* make sure to read SQ tail after writing flags */
3908 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003909
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003910 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003911 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003912 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003913 finish_wait(&ctx->sqo_wait, &wait);
3914 break;
3915 }
3916 if (signal_pending(current))
3917 flush_signals(current);
3918 schedule();
3919 finish_wait(&ctx->sqo_wait, &wait);
3920
Hristo Venev75b28af2019-08-26 17:23:46 +00003921 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003922 continue;
3923 }
3924 finish_wait(&ctx->sqo_wait, &wait);
3925
Hristo Venev75b28af2019-08-26 17:23:46 +00003926 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003927 }
3928
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003929 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe8a4955f2019-12-09 14:52:35 -07003930 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003931 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07003932 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003933 if (ret > 0)
3934 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003935 }
3936
3937 set_fs(old_fs);
3938 if (cur_mm) {
3939 unuse_mm(cur_mm);
3940 mmput(cur_mm);
3941 }
Jens Axboe181e4482019-11-25 08:52:30 -07003942 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06003943
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003944 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06003945
Jens Axboe6c271ce2019-01-10 11:22:30 -07003946 return 0;
3947}
3948
Jens Axboebda52162019-09-24 13:47:15 -06003949struct io_wait_queue {
3950 struct wait_queue_entry wq;
3951 struct io_ring_ctx *ctx;
3952 unsigned to_wait;
3953 unsigned nr_timeouts;
3954};
3955
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003956static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06003957{
3958 struct io_ring_ctx *ctx = iowq->ctx;
3959
3960 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08003961 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06003962 * started waiting. For timeouts, we always want to return to userspace,
3963 * regardless of event count.
3964 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003965 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06003966 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3967}
3968
3969static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3970 int wake_flags, void *key)
3971{
3972 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3973 wq);
3974
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003975 /* use noflush == true, as we can't safely rely on locking context */
3976 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06003977 return -1;
3978
3979 return autoremove_wake_function(curr, mode, wake_flags, key);
3980}
3981
Jens Axboe2b188cc2019-01-07 10:46:33 -07003982/*
3983 * Wait until events become available, if we don't already have some. The
3984 * application must reap them itself, as they reside on the shared cq ring.
3985 */
3986static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3987 const sigset_t __user *sig, size_t sigsz)
3988{
Jens Axboebda52162019-09-24 13:47:15 -06003989 struct io_wait_queue iowq = {
3990 .wq = {
3991 .private = current,
3992 .func = io_wake_function,
3993 .entry = LIST_HEAD_INIT(iowq.wq.entry),
3994 },
3995 .ctx = ctx,
3996 .to_wait = min_events,
3997 };
Hristo Venev75b28af2019-08-26 17:23:46 +00003998 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08003999 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004000
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004001 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004002 return 0;
4003
4004 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004005#ifdef CONFIG_COMPAT
4006 if (in_compat_syscall())
4007 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07004008 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004009 else
4010#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07004011 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004012
Jens Axboe2b188cc2019-01-07 10:46:33 -07004013 if (ret)
4014 return ret;
4015 }
4016
Jens Axboebda52162019-09-24 13:47:15 -06004017 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004018 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06004019 do {
4020 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
4021 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004022 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06004023 break;
4024 schedule();
4025 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004026 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06004027 break;
4028 }
4029 } while (1);
4030 finish_wait(&ctx->wait, &iowq.wq);
4031
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004032 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004033
Hristo Venev75b28af2019-08-26 17:23:46 +00004034 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004035}
4036
Jens Axboe6b063142019-01-10 22:13:58 -07004037static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
4038{
4039#if defined(CONFIG_UNIX)
4040 if (ctx->ring_sock) {
4041 struct sock *sock = ctx->ring_sock->sk;
4042 struct sk_buff *skb;
4043
4044 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
4045 kfree_skb(skb);
4046 }
4047#else
4048 int i;
4049
Jens Axboe65e19f52019-10-26 07:20:21 -06004050 for (i = 0; i < ctx->nr_user_files; i++) {
4051 struct file *file;
4052
4053 file = io_file_from_index(ctx, i);
4054 if (file)
4055 fput(file);
4056 }
Jens Axboe6b063142019-01-10 22:13:58 -07004057#endif
4058}
4059
4060static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
4061{
Jens Axboe65e19f52019-10-26 07:20:21 -06004062 unsigned nr_tables, i;
4063
4064 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004065 return -ENXIO;
4066
4067 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06004068 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
4069 for (i = 0; i < nr_tables; i++)
4070 kfree(ctx->file_table[i].files);
4071 kfree(ctx->file_table);
4072 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004073 ctx->nr_user_files = 0;
4074 return 0;
4075}
4076
Jens Axboe6c271ce2019-01-10 11:22:30 -07004077static void io_sq_thread_stop(struct io_ring_ctx *ctx)
4078{
4079 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07004080 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004081 /*
4082 * The park is a bit of a work-around, without it we get
4083 * warning spews on shutdown with SQPOLL set and affinity
4084 * set to a single CPU.
4085 */
Jens Axboe06058632019-04-13 09:26:03 -06004086 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004087 kthread_stop(ctx->sqo_thread);
4088 ctx->sqo_thread = NULL;
4089 }
4090}
4091
Jens Axboe6b063142019-01-10 22:13:58 -07004092static void io_finish_async(struct io_ring_ctx *ctx)
4093{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004094 io_sq_thread_stop(ctx);
4095
Jens Axboe561fb042019-10-24 07:25:42 -06004096 if (ctx->io_wq) {
4097 io_wq_destroy(ctx->io_wq);
4098 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004099 }
4100}
4101
4102#if defined(CONFIG_UNIX)
4103static void io_destruct_skb(struct sk_buff *skb)
4104{
4105 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
4106
Jens Axboe561fb042019-10-24 07:25:42 -06004107 if (ctx->io_wq)
4108 io_wq_flush(ctx->io_wq);
Jens Axboe8a997342019-10-09 14:40:13 -06004109
Jens Axboe6b063142019-01-10 22:13:58 -07004110 unix_destruct_scm(skb);
4111}
4112
4113/*
4114 * Ensure the UNIX gc is aware of our file set, so we are certain that
4115 * the io_uring can be safely unregistered on process exit, even if we have
4116 * loops in the file referencing.
4117 */
4118static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
4119{
4120 struct sock *sk = ctx->ring_sock->sk;
4121 struct scm_fp_list *fpl;
4122 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06004123 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07004124
4125 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
4126 unsigned long inflight = ctx->user->unix_inflight + nr;
4127
4128 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
4129 return -EMFILE;
4130 }
4131
4132 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
4133 if (!fpl)
4134 return -ENOMEM;
4135
4136 skb = alloc_skb(0, GFP_KERNEL);
4137 if (!skb) {
4138 kfree(fpl);
4139 return -ENOMEM;
4140 }
4141
4142 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07004143
Jens Axboe08a45172019-10-03 08:11:03 -06004144 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07004145 fpl->user = get_uid(ctx->user);
4146 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004147 struct file *file = io_file_from_index(ctx, i + offset);
4148
4149 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06004150 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06004151 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06004152 unix_inflight(fpl->user, fpl->fp[nr_files]);
4153 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07004154 }
4155
Jens Axboe08a45172019-10-03 08:11:03 -06004156 if (nr_files) {
4157 fpl->max = SCM_MAX_FD;
4158 fpl->count = nr_files;
4159 UNIXCB(skb).fp = fpl;
4160 skb->destructor = io_destruct_skb;
4161 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
4162 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07004163
Jens Axboe08a45172019-10-03 08:11:03 -06004164 for (i = 0; i < nr_files; i++)
4165 fput(fpl->fp[i]);
4166 } else {
4167 kfree_skb(skb);
4168 kfree(fpl);
4169 }
Jens Axboe6b063142019-01-10 22:13:58 -07004170
4171 return 0;
4172}
4173
4174/*
4175 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
4176 * causes regular reference counting to break down. We rely on the UNIX
4177 * garbage collection to take care of this problem for us.
4178 */
4179static int io_sqe_files_scm(struct io_ring_ctx *ctx)
4180{
4181 unsigned left, total;
4182 int ret = 0;
4183
4184 total = 0;
4185 left = ctx->nr_user_files;
4186 while (left) {
4187 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07004188
4189 ret = __io_sqe_files_scm(ctx, this_files, total);
4190 if (ret)
4191 break;
4192 left -= this_files;
4193 total += this_files;
4194 }
4195
4196 if (!ret)
4197 return 0;
4198
4199 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004200 struct file *file = io_file_from_index(ctx, total);
4201
4202 if (file)
4203 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07004204 total++;
4205 }
4206
4207 return ret;
4208}
4209#else
4210static int io_sqe_files_scm(struct io_ring_ctx *ctx)
4211{
4212 return 0;
4213}
4214#endif
4215
Jens Axboe65e19f52019-10-26 07:20:21 -06004216static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
4217 unsigned nr_files)
4218{
4219 int i;
4220
4221 for (i = 0; i < nr_tables; i++) {
4222 struct fixed_file_table *table = &ctx->file_table[i];
4223 unsigned this_files;
4224
4225 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
4226 table->files = kcalloc(this_files, sizeof(struct file *),
4227 GFP_KERNEL);
4228 if (!table->files)
4229 break;
4230 nr_files -= this_files;
4231 }
4232
4233 if (i == nr_tables)
4234 return 0;
4235
4236 for (i = 0; i < nr_tables; i++) {
4237 struct fixed_file_table *table = &ctx->file_table[i];
4238 kfree(table->files);
4239 }
4240 return 1;
4241}
4242
Jens Axboe6b063142019-01-10 22:13:58 -07004243static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
4244 unsigned nr_args)
4245{
4246 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe65e19f52019-10-26 07:20:21 -06004247 unsigned nr_tables;
Jens Axboe6b063142019-01-10 22:13:58 -07004248 int fd, ret = 0;
4249 unsigned i;
4250
Jens Axboe65e19f52019-10-26 07:20:21 -06004251 if (ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004252 return -EBUSY;
4253 if (!nr_args)
4254 return -EINVAL;
4255 if (nr_args > IORING_MAX_FIXED_FILES)
4256 return -EMFILE;
4257
Jens Axboe65e19f52019-10-26 07:20:21 -06004258 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
4259 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
4260 GFP_KERNEL);
4261 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004262 return -ENOMEM;
4263
Jens Axboe65e19f52019-10-26 07:20:21 -06004264 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
4265 kfree(ctx->file_table);
Jens Axboe46568e92019-11-10 08:40:53 -07004266 ctx->file_table = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06004267 return -ENOMEM;
4268 }
4269
Jens Axboe08a45172019-10-03 08:11:03 -06004270 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004271 struct fixed_file_table *table;
4272 unsigned index;
4273
Jens Axboe6b063142019-01-10 22:13:58 -07004274 ret = -EFAULT;
4275 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
4276 break;
Jens Axboe08a45172019-10-03 08:11:03 -06004277 /* allow sparse sets */
4278 if (fd == -1) {
4279 ret = 0;
4280 continue;
4281 }
Jens Axboe6b063142019-01-10 22:13:58 -07004282
Jens Axboe65e19f52019-10-26 07:20:21 -06004283 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4284 index = i & IORING_FILE_TABLE_MASK;
4285 table->files[index] = fget(fd);
Jens Axboe6b063142019-01-10 22:13:58 -07004286
4287 ret = -EBADF;
Jens Axboe65e19f52019-10-26 07:20:21 -06004288 if (!table->files[index])
Jens Axboe6b063142019-01-10 22:13:58 -07004289 break;
4290 /*
4291 * Don't allow io_uring instances to be registered. If UNIX
4292 * isn't enabled, then this causes a reference cycle and this
4293 * instance can never get freed. If UNIX is enabled we'll
4294 * handle it just fine, but there's still no point in allowing
4295 * a ring fd as it doesn't support regular read/write anyway.
4296 */
Jens Axboe65e19f52019-10-26 07:20:21 -06004297 if (table->files[index]->f_op == &io_uring_fops) {
4298 fput(table->files[index]);
Jens Axboe6b063142019-01-10 22:13:58 -07004299 break;
4300 }
Jens Axboe6b063142019-01-10 22:13:58 -07004301 ret = 0;
4302 }
4303
4304 if (ret) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004305 for (i = 0; i < ctx->nr_user_files; i++) {
4306 struct file *file;
Jens Axboe6b063142019-01-10 22:13:58 -07004307
Jens Axboe65e19f52019-10-26 07:20:21 -06004308 file = io_file_from_index(ctx, i);
4309 if (file)
4310 fput(file);
4311 }
4312 for (i = 0; i < nr_tables; i++)
4313 kfree(ctx->file_table[i].files);
4314
4315 kfree(ctx->file_table);
4316 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004317 ctx->nr_user_files = 0;
4318 return ret;
4319 }
4320
4321 ret = io_sqe_files_scm(ctx);
4322 if (ret)
4323 io_sqe_files_unregister(ctx);
4324
4325 return ret;
4326}
4327
Jens Axboec3a31e62019-10-03 13:59:56 -06004328static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
4329{
4330#if defined(CONFIG_UNIX)
Jens Axboe65e19f52019-10-26 07:20:21 -06004331 struct file *file = io_file_from_index(ctx, index);
Jens Axboec3a31e62019-10-03 13:59:56 -06004332 struct sock *sock = ctx->ring_sock->sk;
4333 struct sk_buff_head list, *head = &sock->sk_receive_queue;
4334 struct sk_buff *skb;
4335 int i;
4336
4337 __skb_queue_head_init(&list);
4338
4339 /*
4340 * Find the skb that holds this file in its SCM_RIGHTS. When found,
4341 * remove this entry and rearrange the file array.
4342 */
4343 skb = skb_dequeue(head);
4344 while (skb) {
4345 struct scm_fp_list *fp;
4346
4347 fp = UNIXCB(skb).fp;
4348 for (i = 0; i < fp->count; i++) {
4349 int left;
4350
4351 if (fp->fp[i] != file)
4352 continue;
4353
4354 unix_notinflight(fp->user, fp->fp[i]);
4355 left = fp->count - 1 - i;
4356 if (left) {
4357 memmove(&fp->fp[i], &fp->fp[i + 1],
4358 left * sizeof(struct file *));
4359 }
4360 fp->count--;
4361 if (!fp->count) {
4362 kfree_skb(skb);
4363 skb = NULL;
4364 } else {
4365 __skb_queue_tail(&list, skb);
4366 }
4367 fput(file);
4368 file = NULL;
4369 break;
4370 }
4371
4372 if (!file)
4373 break;
4374
4375 __skb_queue_tail(&list, skb);
4376
4377 skb = skb_dequeue(head);
4378 }
4379
4380 if (skb_peek(&list)) {
4381 spin_lock_irq(&head->lock);
4382 while ((skb = __skb_dequeue(&list)) != NULL)
4383 __skb_queue_tail(head, skb);
4384 spin_unlock_irq(&head->lock);
4385 }
4386#else
Jens Axboe65e19f52019-10-26 07:20:21 -06004387 fput(io_file_from_index(ctx, index));
Jens Axboec3a31e62019-10-03 13:59:56 -06004388#endif
4389}
4390
4391static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
4392 int index)
4393{
4394#if defined(CONFIG_UNIX)
4395 struct sock *sock = ctx->ring_sock->sk;
4396 struct sk_buff_head *head = &sock->sk_receive_queue;
4397 struct sk_buff *skb;
4398
4399 /*
4400 * See if we can merge this file into an existing skb SCM_RIGHTS
4401 * file set. If there's no room, fall back to allocating a new skb
4402 * and filling it in.
4403 */
4404 spin_lock_irq(&head->lock);
4405 skb = skb_peek(head);
4406 if (skb) {
4407 struct scm_fp_list *fpl = UNIXCB(skb).fp;
4408
4409 if (fpl->count < SCM_MAX_FD) {
4410 __skb_unlink(skb, head);
4411 spin_unlock_irq(&head->lock);
4412 fpl->fp[fpl->count] = get_file(file);
4413 unix_inflight(fpl->user, fpl->fp[fpl->count]);
4414 fpl->count++;
4415 spin_lock_irq(&head->lock);
4416 __skb_queue_head(head, skb);
4417 } else {
4418 skb = NULL;
4419 }
4420 }
4421 spin_unlock_irq(&head->lock);
4422
4423 if (skb) {
4424 fput(file);
4425 return 0;
4426 }
4427
4428 return __io_sqe_files_scm(ctx, 1, index);
4429#else
4430 return 0;
4431#endif
4432}
4433
4434static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
4435 unsigned nr_args)
4436{
4437 struct io_uring_files_update up;
4438 __s32 __user *fds;
4439 int fd, i, err;
4440 __u32 done;
4441
Jens Axboe65e19f52019-10-26 07:20:21 -06004442 if (!ctx->file_table)
Jens Axboec3a31e62019-10-03 13:59:56 -06004443 return -ENXIO;
4444 if (!nr_args)
4445 return -EINVAL;
4446 if (copy_from_user(&up, arg, sizeof(up)))
4447 return -EFAULT;
4448 if (check_add_overflow(up.offset, nr_args, &done))
4449 return -EOVERFLOW;
4450 if (done > ctx->nr_user_files)
4451 return -EINVAL;
4452
4453 done = 0;
4454 fds = (__s32 __user *) up.fds;
4455 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004456 struct fixed_file_table *table;
4457 unsigned index;
4458
Jens Axboec3a31e62019-10-03 13:59:56 -06004459 err = 0;
4460 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
4461 err = -EFAULT;
4462 break;
4463 }
4464 i = array_index_nospec(up.offset, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004465 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4466 index = i & IORING_FILE_TABLE_MASK;
4467 if (table->files[index]) {
Jens Axboec3a31e62019-10-03 13:59:56 -06004468 io_sqe_file_unregister(ctx, i);
Jens Axboe65e19f52019-10-26 07:20:21 -06004469 table->files[index] = NULL;
Jens Axboec3a31e62019-10-03 13:59:56 -06004470 }
4471 if (fd != -1) {
4472 struct file *file;
4473
4474 file = fget(fd);
4475 if (!file) {
4476 err = -EBADF;
4477 break;
4478 }
4479 /*
4480 * Don't allow io_uring instances to be registered. If
4481 * UNIX isn't enabled, then this causes a reference
4482 * cycle and this instance can never get freed. If UNIX
4483 * is enabled we'll handle it just fine, but there's
4484 * still no point in allowing a ring fd as it doesn't
4485 * support regular read/write anyway.
4486 */
4487 if (file->f_op == &io_uring_fops) {
4488 fput(file);
4489 err = -EBADF;
4490 break;
4491 }
Jens Axboe65e19f52019-10-26 07:20:21 -06004492 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06004493 err = io_sqe_file_register(ctx, file, i);
4494 if (err)
4495 break;
4496 }
4497 nr_args--;
4498 done++;
4499 up.offset++;
4500 }
4501
4502 return done ? done : err;
4503}
4504
Jens Axboe7d723062019-11-12 22:31:31 -07004505static void io_put_work(struct io_wq_work *work)
4506{
4507 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4508
4509 io_put_req(req);
4510}
4511
4512static void io_get_work(struct io_wq_work *work)
4513{
4514 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4515
4516 refcount_inc(&req->refs);
4517}
4518
Jens Axboe6c271ce2019-01-10 11:22:30 -07004519static int io_sq_offload_start(struct io_ring_ctx *ctx,
4520 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004521{
Jens Axboe576a3472019-11-25 08:49:20 -07004522 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06004523 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004524 int ret;
4525
Jens Axboe6c271ce2019-01-10 11:22:30 -07004526 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004527 mmgrab(current->mm);
4528 ctx->sqo_mm = current->mm;
4529
Jens Axboe6c271ce2019-01-10 11:22:30 -07004530 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06004531 ret = -EPERM;
4532 if (!capable(CAP_SYS_ADMIN))
4533 goto err;
4534
Jens Axboe917257d2019-04-13 09:28:55 -06004535 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
4536 if (!ctx->sq_thread_idle)
4537 ctx->sq_thread_idle = HZ;
4538
Jens Axboe6c271ce2019-01-10 11:22:30 -07004539 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06004540 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004541
Jens Axboe917257d2019-04-13 09:28:55 -06004542 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06004543 if (cpu >= nr_cpu_ids)
4544 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08004545 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06004546 goto err;
4547
Jens Axboe6c271ce2019-01-10 11:22:30 -07004548 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
4549 ctx, cpu,
4550 "io_uring-sq");
4551 } else {
4552 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
4553 "io_uring-sq");
4554 }
4555 if (IS_ERR(ctx->sqo_thread)) {
4556 ret = PTR_ERR(ctx->sqo_thread);
4557 ctx->sqo_thread = NULL;
4558 goto err;
4559 }
4560 wake_up_process(ctx->sqo_thread);
4561 } else if (p->flags & IORING_SETUP_SQ_AFF) {
4562 /* Can't have SQ_AFF without SQPOLL */
4563 ret = -EINVAL;
4564 goto err;
4565 }
4566
Jens Axboe576a3472019-11-25 08:49:20 -07004567 data.mm = ctx->sqo_mm;
4568 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07004569 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07004570 data.get_work = io_get_work;
4571 data.put_work = io_put_work;
4572
Jens Axboe561fb042019-10-24 07:25:42 -06004573 /* Do QD, or 4 * CPUS, whatever is smallest */
4574 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07004575 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06004576 if (IS_ERR(ctx->io_wq)) {
4577 ret = PTR_ERR(ctx->io_wq);
4578 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004579 goto err;
4580 }
4581
4582 return 0;
4583err:
Jens Axboe54a91f32019-09-10 09:15:04 -06004584 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004585 mmdrop(ctx->sqo_mm);
4586 ctx->sqo_mm = NULL;
4587 return ret;
4588}
4589
4590static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
4591{
4592 atomic_long_sub(nr_pages, &user->locked_vm);
4593}
4594
4595static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
4596{
4597 unsigned long page_limit, cur_pages, new_pages;
4598
4599 /* Don't allow more pages than we can safely lock */
4600 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
4601
4602 do {
4603 cur_pages = atomic_long_read(&user->locked_vm);
4604 new_pages = cur_pages + nr_pages;
4605 if (new_pages > page_limit)
4606 return -ENOMEM;
4607 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4608 new_pages) != cur_pages);
4609
4610 return 0;
4611}
4612
4613static void io_mem_free(void *ptr)
4614{
Mark Rutland52e04ef2019-04-30 17:30:21 +01004615 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004616
Mark Rutland52e04ef2019-04-30 17:30:21 +01004617 if (!ptr)
4618 return;
4619
4620 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004621 if (put_page_testzero(page))
4622 free_compound_page(page);
4623}
4624
4625static void *io_mem_alloc(size_t size)
4626{
4627 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4628 __GFP_NORETRY;
4629
4630 return (void *) __get_free_pages(gfp_flags, get_order(size));
4631}
4632
Hristo Venev75b28af2019-08-26 17:23:46 +00004633static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4634 size_t *sq_offset)
4635{
4636 struct io_rings *rings;
4637 size_t off, sq_array_size;
4638
4639 off = struct_size(rings, cqes, cq_entries);
4640 if (off == SIZE_MAX)
4641 return SIZE_MAX;
4642
4643#ifdef CONFIG_SMP
4644 off = ALIGN(off, SMP_CACHE_BYTES);
4645 if (off == 0)
4646 return SIZE_MAX;
4647#endif
4648
4649 sq_array_size = array_size(sizeof(u32), sq_entries);
4650 if (sq_array_size == SIZE_MAX)
4651 return SIZE_MAX;
4652
4653 if (check_add_overflow(off, sq_array_size, &off))
4654 return SIZE_MAX;
4655
4656 if (sq_offset)
4657 *sq_offset = off;
4658
4659 return off;
4660}
4661
Jens Axboe2b188cc2019-01-07 10:46:33 -07004662static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4663{
Hristo Venev75b28af2019-08-26 17:23:46 +00004664 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004665
Hristo Venev75b28af2019-08-26 17:23:46 +00004666 pages = (size_t)1 << get_order(
4667 rings_size(sq_entries, cq_entries, NULL));
4668 pages += (size_t)1 << get_order(
4669 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07004670
Hristo Venev75b28af2019-08-26 17:23:46 +00004671 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004672}
4673
Jens Axboeedafcce2019-01-09 09:16:05 -07004674static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4675{
4676 int i, j;
4677
4678 if (!ctx->user_bufs)
4679 return -ENXIO;
4680
4681 for (i = 0; i < ctx->nr_user_bufs; i++) {
4682 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4683
4684 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07004685 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07004686
4687 if (ctx->account_mem)
4688 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004689 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004690 imu->nr_bvecs = 0;
4691 }
4692
4693 kfree(ctx->user_bufs);
4694 ctx->user_bufs = NULL;
4695 ctx->nr_user_bufs = 0;
4696 return 0;
4697}
4698
4699static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4700 void __user *arg, unsigned index)
4701{
4702 struct iovec __user *src;
4703
4704#ifdef CONFIG_COMPAT
4705 if (ctx->compat) {
4706 struct compat_iovec __user *ciovs;
4707 struct compat_iovec ciov;
4708
4709 ciovs = (struct compat_iovec __user *) arg;
4710 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4711 return -EFAULT;
4712
Jens Axboed55e5f52019-12-11 16:12:15 -07004713 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07004714 dst->iov_len = ciov.iov_len;
4715 return 0;
4716 }
4717#endif
4718 src = (struct iovec __user *) arg;
4719 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4720 return -EFAULT;
4721 return 0;
4722}
4723
4724static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4725 unsigned nr_args)
4726{
4727 struct vm_area_struct **vmas = NULL;
4728 struct page **pages = NULL;
4729 int i, j, got_pages = 0;
4730 int ret = -EINVAL;
4731
4732 if (ctx->user_bufs)
4733 return -EBUSY;
4734 if (!nr_args || nr_args > UIO_MAXIOV)
4735 return -EINVAL;
4736
4737 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4738 GFP_KERNEL);
4739 if (!ctx->user_bufs)
4740 return -ENOMEM;
4741
4742 for (i = 0; i < nr_args; i++) {
4743 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4744 unsigned long off, start, end, ubuf;
4745 int pret, nr_pages;
4746 struct iovec iov;
4747 size_t size;
4748
4749 ret = io_copy_iov(ctx, &iov, arg, i);
4750 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03004751 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07004752
4753 /*
4754 * Don't impose further limits on the size and buffer
4755 * constraints here, we'll -EINVAL later when IO is
4756 * submitted if they are wrong.
4757 */
4758 ret = -EFAULT;
4759 if (!iov.iov_base || !iov.iov_len)
4760 goto err;
4761
4762 /* arbitrary limit, but we need something */
4763 if (iov.iov_len > SZ_1G)
4764 goto err;
4765
4766 ubuf = (unsigned long) iov.iov_base;
4767 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4768 start = ubuf >> PAGE_SHIFT;
4769 nr_pages = end - start;
4770
4771 if (ctx->account_mem) {
4772 ret = io_account_mem(ctx->user, nr_pages);
4773 if (ret)
4774 goto err;
4775 }
4776
4777 ret = 0;
4778 if (!pages || nr_pages > got_pages) {
4779 kfree(vmas);
4780 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004781 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07004782 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004783 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07004784 sizeof(struct vm_area_struct *),
4785 GFP_KERNEL);
4786 if (!pages || !vmas) {
4787 ret = -ENOMEM;
4788 if (ctx->account_mem)
4789 io_unaccount_mem(ctx->user, nr_pages);
4790 goto err;
4791 }
4792 got_pages = nr_pages;
4793 }
4794
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004795 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07004796 GFP_KERNEL);
4797 ret = -ENOMEM;
4798 if (!imu->bvec) {
4799 if (ctx->account_mem)
4800 io_unaccount_mem(ctx->user, nr_pages);
4801 goto err;
4802 }
4803
4804 ret = 0;
4805 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07004806 pret = get_user_pages(ubuf, nr_pages,
4807 FOLL_WRITE | FOLL_LONGTERM,
4808 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004809 if (pret == nr_pages) {
4810 /* don't support file backed memory */
4811 for (j = 0; j < nr_pages; j++) {
4812 struct vm_area_struct *vma = vmas[j];
4813
4814 if (vma->vm_file &&
4815 !is_file_hugepages(vma->vm_file)) {
4816 ret = -EOPNOTSUPP;
4817 break;
4818 }
4819 }
4820 } else {
4821 ret = pret < 0 ? pret : -EFAULT;
4822 }
4823 up_read(&current->mm->mmap_sem);
4824 if (ret) {
4825 /*
4826 * if we did partial map, or found file backed vmas,
4827 * release any pages we did get
4828 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07004829 if (pret > 0)
4830 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004831 if (ctx->account_mem)
4832 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004833 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004834 goto err;
4835 }
4836
4837 off = ubuf & ~PAGE_MASK;
4838 size = iov.iov_len;
4839 for (j = 0; j < nr_pages; j++) {
4840 size_t vec_len;
4841
4842 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4843 imu->bvec[j].bv_page = pages[j];
4844 imu->bvec[j].bv_len = vec_len;
4845 imu->bvec[j].bv_offset = off;
4846 off = 0;
4847 size -= vec_len;
4848 }
4849 /* store original address for later verification */
4850 imu->ubuf = ubuf;
4851 imu->len = iov.iov_len;
4852 imu->nr_bvecs = nr_pages;
4853
4854 ctx->nr_user_bufs++;
4855 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004856 kvfree(pages);
4857 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004858 return 0;
4859err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004860 kvfree(pages);
4861 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004862 io_sqe_buffer_unregister(ctx);
4863 return ret;
4864}
4865
Jens Axboe9b402842019-04-11 11:45:41 -06004866static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4867{
4868 __s32 __user *fds = arg;
4869 int fd;
4870
4871 if (ctx->cq_ev_fd)
4872 return -EBUSY;
4873
4874 if (copy_from_user(&fd, fds, sizeof(*fds)))
4875 return -EFAULT;
4876
4877 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4878 if (IS_ERR(ctx->cq_ev_fd)) {
4879 int ret = PTR_ERR(ctx->cq_ev_fd);
4880 ctx->cq_ev_fd = NULL;
4881 return ret;
4882 }
4883
4884 return 0;
4885}
4886
4887static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4888{
4889 if (ctx->cq_ev_fd) {
4890 eventfd_ctx_put(ctx->cq_ev_fd);
4891 ctx->cq_ev_fd = NULL;
4892 return 0;
4893 }
4894
4895 return -ENXIO;
4896}
4897
Jens Axboe2b188cc2019-01-07 10:46:33 -07004898static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4899{
Jens Axboe6b063142019-01-10 22:13:58 -07004900 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004901 if (ctx->sqo_mm)
4902 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07004903
4904 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07004905 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07004906 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06004907 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07004908
Jens Axboe2b188cc2019-01-07 10:46:33 -07004909#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07004910 if (ctx->ring_sock) {
4911 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004912 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07004913 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004914#endif
4915
Hristo Venev75b28af2019-08-26 17:23:46 +00004916 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004917 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004918
4919 percpu_ref_exit(&ctx->refs);
4920 if (ctx->account_mem)
4921 io_unaccount_mem(ctx->user,
4922 ring_pages(ctx->sq_entries, ctx->cq_entries));
4923 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07004924 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07004925 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07004926 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07004927 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004928 kfree(ctx);
4929}
4930
4931static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4932{
4933 struct io_ring_ctx *ctx = file->private_data;
4934 __poll_t mask = 0;
4935
4936 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02004937 /*
4938 * synchronizes with barrier from wq_has_sleeper call in
4939 * io_commit_cqring
4940 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004941 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00004942 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4943 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004944 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08004945 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004946 mask |= EPOLLIN | EPOLLRDNORM;
4947
4948 return mask;
4949}
4950
4951static int io_uring_fasync(int fd, struct file *file, int on)
4952{
4953 struct io_ring_ctx *ctx = file->private_data;
4954
4955 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4956}
4957
4958static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4959{
4960 mutex_lock(&ctx->uring_lock);
4961 percpu_ref_kill(&ctx->refs);
4962 mutex_unlock(&ctx->uring_lock);
4963
Jens Axboe5262f562019-09-17 12:26:57 -06004964 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004965 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06004966
4967 if (ctx->io_wq)
4968 io_wq_cancel_all(ctx->io_wq);
4969
Jens Axboedef596e2019-01-09 08:59:42 -07004970 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07004971 /* if we failed setting up the ctx, we might not have any rings */
4972 if (ctx->rings)
4973 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07004974 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004975 io_ring_ctx_free(ctx);
4976}
4977
4978static int io_uring_release(struct inode *inode, struct file *file)
4979{
4980 struct io_ring_ctx *ctx = file->private_data;
4981
4982 file->private_data = NULL;
4983 io_ring_ctx_wait_and_kill(ctx);
4984 return 0;
4985}
4986
Jens Axboefcb323c2019-10-24 12:39:47 -06004987static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4988 struct files_struct *files)
4989{
4990 struct io_kiocb *req;
4991 DEFINE_WAIT(wait);
4992
4993 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07004994 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06004995
4996 spin_lock_irq(&ctx->inflight_lock);
4997 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07004998 if (req->work.files != files)
4999 continue;
5000 /* req is being completed, ignore */
5001 if (!refcount_inc_not_zero(&req->refs))
5002 continue;
5003 cancel_req = req;
5004 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06005005 }
Jens Axboe768134d2019-11-10 20:30:53 -07005006 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005007 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07005008 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06005009 spin_unlock_irq(&ctx->inflight_lock);
5010
Jens Axboe768134d2019-11-10 20:30:53 -07005011 /* We need to keep going until we don't find a matching req */
5012 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005013 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08005014
5015 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
5016 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06005017 schedule();
5018 }
Jens Axboe768134d2019-11-10 20:30:53 -07005019 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06005020}
5021
5022static int io_uring_flush(struct file *file, void *data)
5023{
5024 struct io_ring_ctx *ctx = file->private_data;
5025
5026 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005027 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
5028 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06005029 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005030 }
Jens Axboefcb323c2019-10-24 12:39:47 -06005031 return 0;
5032}
5033
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005034static void *io_uring_validate_mmap_request(struct file *file,
5035 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005036{
Jens Axboe2b188cc2019-01-07 10:46:33 -07005037 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005038 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005039 struct page *page;
5040 void *ptr;
5041
5042 switch (offset) {
5043 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00005044 case IORING_OFF_CQ_RING:
5045 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005046 break;
5047 case IORING_OFF_SQES:
5048 ptr = ctx->sq_sqes;
5049 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005050 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005051 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005052 }
5053
5054 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07005055 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005056 return ERR_PTR(-EINVAL);
5057
5058 return ptr;
5059}
5060
5061#ifdef CONFIG_MMU
5062
5063static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
5064{
5065 size_t sz = vma->vm_end - vma->vm_start;
5066 unsigned long pfn;
5067 void *ptr;
5068
5069 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
5070 if (IS_ERR(ptr))
5071 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005072
5073 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
5074 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
5075}
5076
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005077#else /* !CONFIG_MMU */
5078
5079static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
5080{
5081 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
5082}
5083
5084static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
5085{
5086 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
5087}
5088
5089static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
5090 unsigned long addr, unsigned long len,
5091 unsigned long pgoff, unsigned long flags)
5092{
5093 void *ptr;
5094
5095 ptr = io_uring_validate_mmap_request(file, pgoff, len);
5096 if (IS_ERR(ptr))
5097 return PTR_ERR(ptr);
5098
5099 return (unsigned long) ptr;
5100}
5101
5102#endif /* !CONFIG_MMU */
5103
Jens Axboe2b188cc2019-01-07 10:46:33 -07005104SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
5105 u32, min_complete, u32, flags, const sigset_t __user *, sig,
5106 size_t, sigsz)
5107{
5108 struct io_ring_ctx *ctx;
5109 long ret = -EBADF;
5110 int submitted = 0;
5111 struct fd f;
5112
Jens Axboe6c271ce2019-01-10 11:22:30 -07005113 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005114 return -EINVAL;
5115
5116 f = fdget(fd);
5117 if (!f.file)
5118 return -EBADF;
5119
5120 ret = -EOPNOTSUPP;
5121 if (f.file->f_op != &io_uring_fops)
5122 goto out_fput;
5123
5124 ret = -ENXIO;
5125 ctx = f.file->private_data;
5126 if (!percpu_ref_tryget(&ctx->refs))
5127 goto out_fput;
5128
Jens Axboe6c271ce2019-01-10 11:22:30 -07005129 /*
5130 * For SQ polling, the thread will do all submissions and completions.
5131 * Just return the requested submit count, and wake the thread if
5132 * we were asked to.
5133 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06005134 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005135 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07005136 if (!list_empty_careful(&ctx->cq_overflow_list))
5137 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005138 if (flags & IORING_ENTER_SQ_WAKEUP)
5139 wake_up(&ctx->sqo_wait);
5140 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06005141 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005142 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005143
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005144 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005145 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005146 /* already have mm, so io_submit_sqes() won't try to grab it */
5147 cur_mm = ctx->sqo_mm;
5148 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
5149 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005150 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03005151
5152 if (submitted != to_submit)
5153 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005154 }
5155 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07005156 unsigned nr_events = 0;
5157
Jens Axboe2b188cc2019-01-07 10:46:33 -07005158 min_complete = min(min_complete, ctx->cq_entries);
5159
Jens Axboedef596e2019-01-09 08:59:42 -07005160 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07005161 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07005162 } else {
5163 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
5164 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005165 }
5166
Pavel Begunkov7c504e652019-12-18 19:53:45 +03005167out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03005168 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005169out_fput:
5170 fdput(f);
5171 return submitted ? submitted : ret;
5172}
5173
5174static const struct file_operations io_uring_fops = {
5175 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06005176 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07005177 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005178#ifndef CONFIG_MMU
5179 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
5180 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
5181#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07005182 .poll = io_uring_poll,
5183 .fasync = io_uring_fasync,
5184};
5185
5186static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
5187 struct io_uring_params *p)
5188{
Hristo Venev75b28af2019-08-26 17:23:46 +00005189 struct io_rings *rings;
5190 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005191
Hristo Venev75b28af2019-08-26 17:23:46 +00005192 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
5193 if (size == SIZE_MAX)
5194 return -EOVERFLOW;
5195
5196 rings = io_mem_alloc(size);
5197 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005198 return -ENOMEM;
5199
Hristo Venev75b28af2019-08-26 17:23:46 +00005200 ctx->rings = rings;
5201 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
5202 rings->sq_ring_mask = p->sq_entries - 1;
5203 rings->cq_ring_mask = p->cq_entries - 1;
5204 rings->sq_ring_entries = p->sq_entries;
5205 rings->cq_ring_entries = p->cq_entries;
5206 ctx->sq_mask = rings->sq_ring_mask;
5207 ctx->cq_mask = rings->cq_ring_mask;
5208 ctx->sq_entries = rings->sq_ring_entries;
5209 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005210
5211 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07005212 if (size == SIZE_MAX) {
5213 io_mem_free(ctx->rings);
5214 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005215 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07005216 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005217
5218 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07005219 if (!ctx->sq_sqes) {
5220 io_mem_free(ctx->rings);
5221 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005222 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07005223 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005224
Jens Axboe2b188cc2019-01-07 10:46:33 -07005225 return 0;
5226}
5227
5228/*
5229 * Allocate an anonymous fd, this is what constitutes the application
5230 * visible backing of an io_uring instance. The application mmaps this
5231 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
5232 * we have to tie this fd to a socket for file garbage collection purposes.
5233 */
5234static int io_uring_get_fd(struct io_ring_ctx *ctx)
5235{
5236 struct file *file;
5237 int ret;
5238
5239#if defined(CONFIG_UNIX)
5240 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
5241 &ctx->ring_sock);
5242 if (ret)
5243 return ret;
5244#endif
5245
5246 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
5247 if (ret < 0)
5248 goto err;
5249
5250 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
5251 O_RDWR | O_CLOEXEC);
5252 if (IS_ERR(file)) {
5253 put_unused_fd(ret);
5254 ret = PTR_ERR(file);
5255 goto err;
5256 }
5257
5258#if defined(CONFIG_UNIX)
5259 ctx->ring_sock->file = file;
Jens Axboe6b063142019-01-10 22:13:58 -07005260 ctx->ring_sock->sk->sk_user_data = ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005261#endif
5262 fd_install(ret, file);
5263 return ret;
5264err:
5265#if defined(CONFIG_UNIX)
5266 sock_release(ctx->ring_sock);
5267 ctx->ring_sock = NULL;
5268#endif
5269 return ret;
5270}
5271
5272static int io_uring_create(unsigned entries, struct io_uring_params *p)
5273{
5274 struct user_struct *user = NULL;
5275 struct io_ring_ctx *ctx;
5276 bool account_mem;
5277 int ret;
5278
5279 if (!entries || entries > IORING_MAX_ENTRIES)
5280 return -EINVAL;
5281
5282 /*
5283 * Use twice as many entries for the CQ ring. It's possible for the
5284 * application to drive a higher depth than the size of the SQ ring,
5285 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06005286 * some flexibility in overcommitting a bit. If the application has
5287 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
5288 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07005289 */
5290 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06005291 if (p->flags & IORING_SETUP_CQSIZE) {
5292 /*
5293 * If IORING_SETUP_CQSIZE is set, we do the same roundup
5294 * to a power-of-two, if it isn't already. We do NOT impose
5295 * any cq vs sq ring sizing.
5296 */
5297 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
5298 return -EINVAL;
5299 p->cq_entries = roundup_pow_of_two(p->cq_entries);
5300 } else {
5301 p->cq_entries = 2 * p->sq_entries;
5302 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005303
5304 user = get_uid(current_user());
5305 account_mem = !capable(CAP_IPC_LOCK);
5306
5307 if (account_mem) {
5308 ret = io_account_mem(user,
5309 ring_pages(p->sq_entries, p->cq_entries));
5310 if (ret) {
5311 free_uid(user);
5312 return ret;
5313 }
5314 }
5315
5316 ctx = io_ring_ctx_alloc(p);
5317 if (!ctx) {
5318 if (account_mem)
5319 io_unaccount_mem(user, ring_pages(p->sq_entries,
5320 p->cq_entries));
5321 free_uid(user);
5322 return -ENOMEM;
5323 }
5324 ctx->compat = in_compat_syscall();
5325 ctx->account_mem = account_mem;
5326 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07005327 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07005328
5329 ret = io_allocate_scq_urings(ctx, p);
5330 if (ret)
5331 goto err;
5332
Jens Axboe6c271ce2019-01-10 11:22:30 -07005333 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005334 if (ret)
5335 goto err;
5336
Jens Axboe2b188cc2019-01-07 10:46:33 -07005337 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005338 p->sq_off.head = offsetof(struct io_rings, sq.head);
5339 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
5340 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
5341 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
5342 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
5343 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
5344 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005345
5346 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005347 p->cq_off.head = offsetof(struct io_rings, cq.head);
5348 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
5349 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
5350 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
5351 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
5352 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06005353
Jens Axboe044c1ab2019-10-28 09:15:33 -06005354 /*
5355 * Install ring fd as the very last thing, so we don't risk someone
5356 * having closed it before we finish setup
5357 */
5358 ret = io_uring_get_fd(ctx);
5359 if (ret < 0)
5360 goto err;
5361
Jens Axboeda8c9692019-12-02 18:51:26 -07005362 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
5363 IORING_FEAT_SUBMIT_STABLE;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005364 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005365 return ret;
5366err:
5367 io_ring_ctx_wait_and_kill(ctx);
5368 return ret;
5369}
5370
5371/*
5372 * Sets up an aio uring context, and returns the fd. Applications asks for a
5373 * ring size, we return the actual sq/cq ring sizes (among other things) in the
5374 * params structure passed in.
5375 */
5376static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
5377{
5378 struct io_uring_params p;
5379 long ret;
5380 int i;
5381
5382 if (copy_from_user(&p, params, sizeof(p)))
5383 return -EFAULT;
5384 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
5385 if (p.resv[i])
5386 return -EINVAL;
5387 }
5388
Jens Axboe6c271ce2019-01-10 11:22:30 -07005389 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe33a107f2019-10-04 12:10:03 -06005390 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005391 return -EINVAL;
5392
5393 ret = io_uring_create(entries, &p);
5394 if (ret < 0)
5395 return ret;
5396
5397 if (copy_to_user(params, &p, sizeof(p)))
5398 return -EFAULT;
5399
5400 return ret;
5401}
5402
5403SYSCALL_DEFINE2(io_uring_setup, u32, entries,
5404 struct io_uring_params __user *, params)
5405{
5406 return io_uring_setup(entries, params);
5407}
5408
Jens Axboeedafcce2019-01-09 09:16:05 -07005409static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
5410 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06005411 __releases(ctx->uring_lock)
5412 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07005413{
5414 int ret;
5415
Jens Axboe35fa71a2019-04-22 10:23:23 -06005416 /*
5417 * We're inside the ring mutex, if the ref is already dying, then
5418 * someone else killed the ctx or is already going through
5419 * io_uring_register().
5420 */
5421 if (percpu_ref_is_dying(&ctx->refs))
5422 return -ENXIO;
5423
Jens Axboeedafcce2019-01-09 09:16:05 -07005424 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06005425
5426 /*
5427 * Drop uring mutex before waiting for references to exit. If another
5428 * thread is currently inside io_uring_enter() it might need to grab
5429 * the uring_lock to make progress. If we hold it here across the drain
5430 * wait, then we can deadlock. It's safe to drop the mutex here, since
5431 * no new references will come in after we've killed the percpu ref.
5432 */
5433 mutex_unlock(&ctx->uring_lock);
Jens Axboe206aefd2019-11-07 18:27:42 -07005434 wait_for_completion(&ctx->completions[0]);
Jens Axboeb19062a2019-04-15 10:49:38 -06005435 mutex_lock(&ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07005436
5437 switch (opcode) {
5438 case IORING_REGISTER_BUFFERS:
5439 ret = io_sqe_buffer_register(ctx, arg, nr_args);
5440 break;
5441 case IORING_UNREGISTER_BUFFERS:
5442 ret = -EINVAL;
5443 if (arg || nr_args)
5444 break;
5445 ret = io_sqe_buffer_unregister(ctx);
5446 break;
Jens Axboe6b063142019-01-10 22:13:58 -07005447 case IORING_REGISTER_FILES:
5448 ret = io_sqe_files_register(ctx, arg, nr_args);
5449 break;
5450 case IORING_UNREGISTER_FILES:
5451 ret = -EINVAL;
5452 if (arg || nr_args)
5453 break;
5454 ret = io_sqe_files_unregister(ctx);
5455 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06005456 case IORING_REGISTER_FILES_UPDATE:
5457 ret = io_sqe_files_update(ctx, arg, nr_args);
5458 break;
Jens Axboe9b402842019-04-11 11:45:41 -06005459 case IORING_REGISTER_EVENTFD:
5460 ret = -EINVAL;
5461 if (nr_args != 1)
5462 break;
5463 ret = io_eventfd_register(ctx, arg);
5464 break;
5465 case IORING_UNREGISTER_EVENTFD:
5466 ret = -EINVAL;
5467 if (arg || nr_args)
5468 break;
5469 ret = io_eventfd_unregister(ctx);
5470 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07005471 default:
5472 ret = -EINVAL;
5473 break;
5474 }
5475
5476 /* bring the ctx back to life */
Jens Axboe206aefd2019-11-07 18:27:42 -07005477 reinit_completion(&ctx->completions[0]);
Jens Axboeedafcce2019-01-09 09:16:05 -07005478 percpu_ref_reinit(&ctx->refs);
5479 return ret;
5480}
5481
5482SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
5483 void __user *, arg, unsigned int, nr_args)
5484{
5485 struct io_ring_ctx *ctx;
5486 long ret = -EBADF;
5487 struct fd f;
5488
5489 f = fdget(fd);
5490 if (!f.file)
5491 return -EBADF;
5492
5493 ret = -EOPNOTSUPP;
5494 if (f.file->f_op != &io_uring_fops)
5495 goto out_fput;
5496
5497 ctx = f.file->private_data;
5498
5499 mutex_lock(&ctx->uring_lock);
5500 ret = __io_uring_register(ctx, opcode, arg, nr_args);
5501 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005502 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
5503 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005504out_fput:
5505 fdput(f);
5506 return ret;
5507}
5508
Jens Axboe2b188cc2019-01-07 10:46:33 -07005509static int __init io_uring_init(void)
5510{
5511 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
5512 return 0;
5513};
5514__initcall(io_uring_init);