blob: e32268ce38a5f07c9ab39a4e8167059be8f6c3e0 [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
47#include <linux/refcount.h>
48#include <linux/uio.h>
49
50#include <linux/sched/signal.h>
51#include <linux/fs.h>
52#include <linux/file.h>
53#include <linux/fdtable.h>
54#include <linux/mm.h>
55#include <linux/mman.h>
56#include <linux/mmu_context.h>
57#include <linux/percpu.h>
58#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070059#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070060#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070061#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/net.h>
63#include <net/sock.h>
64#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070065#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070066#include <linux/anon_inodes.h>
67#include <linux/sched/mm.h>
68#include <linux/uaccess.h>
69#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070070#include <linux/sizes.h>
71#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070072#include <linux/highmem.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070073
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020074#define CREATE_TRACE_POINTS
75#include <trace/events/io_uring.h>
76
Jens Axboe2b188cc2019-01-07 10:46:33 -070077#include <uapi/linux/io_uring.h>
78
79#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060080#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070081
Daniel Xu5277dea2019-09-14 14:23:45 -070082#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060083#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060084
85/*
86 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
87 */
88#define IORING_FILE_TABLE_SHIFT 9
89#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
90#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
91#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070092
93struct io_uring {
94 u32 head ____cacheline_aligned_in_smp;
95 u32 tail ____cacheline_aligned_in_smp;
96};
97
Stefan Bühler1e84b972019-04-24 23:54:16 +020098/*
Hristo Venev75b28af2019-08-26 17:23:46 +000099 * This data is shared with the application through the mmap at offsets
100 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200101 *
102 * The offsets to the member fields are published through struct
103 * io_sqring_offsets when calling io_uring_setup.
104 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000105struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200106 /*
107 * Head and tail offsets into the ring; the offsets need to be
108 * masked to get valid indices.
109 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000110 * The kernel controls head of the sq ring and the tail of the cq ring,
111 * and the application controls tail of the sq ring and the head of the
112 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200113 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000114 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000116 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200117 * ring_entries - 1)
118 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 u32 sq_ring_mask, cq_ring_mask;
120 /* Ring sizes (constant, power of 2) */
121 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 /*
123 * Number of invalid entries dropped by the kernel due to
124 * invalid index stored in array
125 *
126 * Written by the kernel, shouldn't be modified by the
127 * application (i.e. get number of "new events" by comparing to
128 * cached value).
129 *
130 * After a new SQ head value was read by the application this
131 * counter includes all submissions that were dropped reaching
132 * the new SQ head (and possibly more).
133 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000134 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200135 /*
136 * Runtime flags
137 *
138 * Written by the kernel, shouldn't be modified by the
139 * application.
140 *
141 * The application needs a full memory barrier before checking
142 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
143 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000144 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200145 /*
146 * Number of completion events lost because the queue was full;
147 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800148 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200149 * the completion queue.
150 *
151 * Written by the kernel, shouldn't be modified by the
152 * application (i.e. get number of "new events" by comparing to
153 * cached value).
154 *
155 * As completion events come in out of order this counter is not
156 * ordered with any other data.
157 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000158 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200159 /*
160 * Ring buffer of completion events.
161 *
162 * The kernel writes completion events fresh every time they are
163 * produced, so the application is allowed to modify pending
164 * entries.
165 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000166 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700167};
168
Jens Axboeedafcce2019-01-09 09:16:05 -0700169struct io_mapped_ubuf {
170 u64 ubuf;
171 size_t len;
172 struct bio_vec *bvec;
173 unsigned int nr_bvecs;
174};
175
Jens Axboe65e19f52019-10-26 07:20:21 -0600176struct fixed_file_table {
177 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700178};
179
Jens Axboe2b188cc2019-01-07 10:46:33 -0700180struct io_ring_ctx {
181 struct {
182 struct percpu_ref refs;
183 } ____cacheline_aligned_in_smp;
184
185 struct {
186 unsigned int flags;
187 bool compat;
188 bool account_mem;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700189 bool cq_overflow_flushed;
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300190 bool drain_next;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700191
Hristo Venev75b28af2019-08-26 17:23:46 +0000192 /*
193 * Ring buffer of indices into array of io_uring_sqe, which is
194 * mmapped by the application using the IORING_OFF_SQES offset.
195 *
196 * This indirection could e.g. be used to assign fixed
197 * io_uring_sqe entries to operations and only submit them to
198 * the queue when needed.
199 *
200 * The kernel modifies neither the indices array nor the entries
201 * array.
202 */
203 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700204 unsigned cached_sq_head;
205 unsigned sq_entries;
206 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700207 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600208 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700209 atomic_t cached_cq_overflow;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700210 struct io_uring_sqe *sq_sqes;
Jens Axboede0617e2019-04-06 21:51:27 -0600211
212 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600213 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700214 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700215
Jens Axboefcb323c2019-10-24 12:39:47 -0600216 wait_queue_head_t inflight_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700217 } ____cacheline_aligned_in_smp;
218
Hristo Venev75b28af2019-08-26 17:23:46 +0000219 struct io_rings *rings;
220
Jens Axboe2b188cc2019-01-07 10:46:33 -0700221 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600222 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700223 struct task_struct *sqo_thread; /* if using sq thread polling */
224 struct mm_struct *sqo_mm;
225 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700226
Jens Axboe6b063142019-01-10 22:13:58 -0700227 /*
228 * If used, fixed file set. Writers must ensure that ->refs is dead,
229 * readers must ensure that ->refs is alive as long as the file* is
230 * used. Only updated through io_uring_register(2).
231 */
Jens Axboe65e19f52019-10-26 07:20:21 -0600232 struct fixed_file_table *file_table;
Jens Axboe6b063142019-01-10 22:13:58 -0700233 unsigned nr_user_files;
234
Jens Axboeedafcce2019-01-09 09:16:05 -0700235 /* if used, fixed mapped user buffers */
236 unsigned nr_user_bufs;
237 struct io_mapped_ubuf *user_bufs;
238
Jens Axboe2b188cc2019-01-07 10:46:33 -0700239 struct user_struct *user;
240
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700241 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700242
Jens Axboe206aefd2019-11-07 18:27:42 -0700243 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
244 struct completion *completions;
245
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700246 /* if all else fails... */
247 struct io_kiocb *fallback_req;
248
Jens Axboe206aefd2019-11-07 18:27:42 -0700249#if defined(CONFIG_UNIX)
250 struct socket *ring_sock;
251#endif
252
253 struct {
254 unsigned cached_cq_tail;
255 unsigned cq_entries;
256 unsigned cq_mask;
257 atomic_t cq_timeouts;
258 struct wait_queue_head cq_wait;
259 struct fasync_struct *cq_fasync;
260 struct eventfd_ctx *cq_ev_fd;
261 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700262
263 struct {
264 struct mutex uring_lock;
265 wait_queue_head_t wait;
266 } ____cacheline_aligned_in_smp;
267
268 struct {
269 spinlock_t completion_lock;
Jens Axboedef596e2019-01-09 08:59:42 -0700270 bool poll_multi_file;
271 /*
272 * ->poll_list is protected by the ctx->uring_lock for
273 * io_uring instances that don't use IORING_SETUP_SQPOLL.
274 * For SQPOLL, only the single threaded io_sq_thread() will
275 * manipulate the list, hence no extra locking is needed there.
276 */
277 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700278 struct hlist_head *cancel_hash;
279 unsigned cancel_hash_bits;
Jens Axboefcb323c2019-10-24 12:39:47 -0600280
281 spinlock_t inflight_lock;
282 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700283 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700284};
285
Jens Axboe09bb8392019-03-13 12:39:28 -0600286/*
287 * First field must be the file pointer in all the
288 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
289 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700290struct io_poll_iocb {
291 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700292 union {
293 struct wait_queue_head *head;
294 u64 addr;
295 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700296 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600297 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700298 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700299 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700300};
301
Jens Axboead8a48a2019-11-15 08:49:11 -0700302struct io_timeout_data {
303 struct io_kiocb *req;
304 struct hrtimer timer;
305 struct timespec64 ts;
306 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300307 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700308};
309
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700310struct io_accept {
311 struct file *file;
312 struct sockaddr __user *addr;
313 int __user *addr_len;
314 int flags;
315};
316
317struct io_sync {
318 struct file *file;
319 loff_t len;
320 loff_t off;
321 int flags;
322};
323
Jens Axboefbf23842019-12-17 18:45:56 -0700324struct io_cancel {
325 struct file *file;
326 u64 addr;
327};
328
Jens Axboeb29472e2019-12-17 18:50:29 -0700329struct io_timeout {
330 struct file *file;
331 u64 addr;
332 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700333 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700334};
335
Jens Axboe9adbd452019-12-20 08:45:55 -0700336struct io_rw {
337 /* NOTE: kiocb has the file as the first member, so don't do it here */
338 struct kiocb kiocb;
339 u64 addr;
340 u64 len;
341};
342
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700343struct io_connect {
344 struct file *file;
345 struct sockaddr __user *addr;
346 int addr_len;
347};
348
Jens Axboee47293f2019-12-20 08:58:21 -0700349struct io_sr_msg {
350 struct file *file;
351 struct user_msghdr __user *msg;
352 int msg_flags;
353};
354
Jens Axboef499a022019-12-02 16:28:46 -0700355struct io_async_connect {
356 struct sockaddr_storage address;
357};
358
Jens Axboe03b12302019-12-02 18:50:25 -0700359struct io_async_msghdr {
360 struct iovec fast_iov[UIO_FASTIOV];
361 struct iovec *iov;
362 struct sockaddr __user *uaddr;
363 struct msghdr msg;
364};
365
Jens Axboef67676d2019-12-02 11:03:47 -0700366struct io_async_rw {
367 struct iovec fast_iov[UIO_FASTIOV];
368 struct iovec *iov;
369 ssize_t nr_segs;
370 ssize_t size;
371};
372
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700373struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700374 union {
375 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700376 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700377 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700378 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700379 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700380};
381
Jens Axboe09bb8392019-03-13 12:39:28 -0600382/*
383 * NOTE! Each of the iocb union members has the file pointer
384 * as the first entry in their struct definition. So you can
385 * access the file pointer through any of the sub-structs,
386 * or directly as just 'ki_filp' in this struct.
387 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700388struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700389 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600390 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700391 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700392 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700393 struct io_accept accept;
394 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700395 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700396 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700397 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700398 struct io_sr_msg sr_msg;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700399 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700400
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700401 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300402 struct file *ring_file;
403 int ring_fd;
404 bool has_user;
405 bool in_async;
406 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700407 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700408
409 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700410 union {
411 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700412 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700413 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600414 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700415 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700416 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200417#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700418#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700419#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700420#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200421#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
422#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600423#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700424#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800425#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300426#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600427#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600428#define REQ_F_ISREG 2048 /* regular file */
429#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700430#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800431#define REQ_F_INFLIGHT 16384 /* on inflight list */
432#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe4e88d6e2019-12-07 20:59:47 -0700433#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700434 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600435 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600436 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700437
Jens Axboefcb323c2019-10-24 12:39:47 -0600438 struct list_head inflight_entry;
439
Jens Axboe561fb042019-10-24 07:25:42 -0600440 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700441};
442
443#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700444#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700445
Jens Axboe9a56a232019-01-09 09:06:50 -0700446struct io_submit_state {
447 struct blk_plug plug;
448
449 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700450 * io_kiocb alloc cache
451 */
452 void *reqs[IO_IOPOLL_BATCH];
453 unsigned int free_reqs;
454 unsigned int cur_req;
455
456 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700457 * File reference cache
458 */
459 struct file *file;
460 unsigned int fd;
461 unsigned int has_refs;
462 unsigned int used_refs;
463 unsigned int ios_left;
464};
465
Jens Axboe561fb042019-10-24 07:25:42 -0600466static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700467static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liu4fe2c962019-09-09 20:50:40 +0800468static void __io_free_req(struct io_kiocb *req);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800469static void io_put_req(struct io_kiocb *req);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700470static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700471static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700472static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
473static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600474
Jens Axboe2b188cc2019-01-07 10:46:33 -0700475static struct kmem_cache *req_cachep;
476
477static const struct file_operations io_uring_fops;
478
479struct sock *io_uring_get_socket(struct file *file)
480{
481#if defined(CONFIG_UNIX)
482 if (file->f_op == &io_uring_fops) {
483 struct io_ring_ctx *ctx = file->private_data;
484
485 return ctx->ring_sock->sk;
486 }
487#endif
488 return NULL;
489}
490EXPORT_SYMBOL(io_uring_get_socket);
491
492static void io_ring_ctx_ref_free(struct percpu_ref *ref)
493{
494 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
495
Jens Axboe206aefd2019-11-07 18:27:42 -0700496 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700497}
498
499static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
500{
501 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700502 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700503
504 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
505 if (!ctx)
506 return NULL;
507
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700508 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
509 if (!ctx->fallback_req)
510 goto err;
511
Jens Axboe206aefd2019-11-07 18:27:42 -0700512 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
513 if (!ctx->completions)
514 goto err;
515
Jens Axboe78076bb2019-12-04 19:56:40 -0700516 /*
517 * Use 5 bits less than the max cq entries, that should give us around
518 * 32 entries per hash list if totally full and uniformly spread.
519 */
520 hash_bits = ilog2(p->cq_entries);
521 hash_bits -= 5;
522 if (hash_bits <= 0)
523 hash_bits = 1;
524 ctx->cancel_hash_bits = hash_bits;
525 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
526 GFP_KERNEL);
527 if (!ctx->cancel_hash)
528 goto err;
529 __hash_init(ctx->cancel_hash, 1U << hash_bits);
530
Roman Gushchin21482892019-05-07 10:01:48 -0700531 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700532 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
533 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700534
535 ctx->flags = p->flags;
536 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700537 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700538 init_completion(&ctx->completions[0]);
539 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700540 mutex_init(&ctx->uring_lock);
541 init_waitqueue_head(&ctx->wait);
542 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700543 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600544 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600545 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600546 init_waitqueue_head(&ctx->inflight_wait);
547 spin_lock_init(&ctx->inflight_lock);
548 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700549 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700550err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700551 if (ctx->fallback_req)
552 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700553 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700554 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700555 kfree(ctx);
556 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700557}
558
Bob Liu9d858b22019-11-13 18:06:25 +0800559static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600560{
Jackie Liua197f662019-11-08 08:09:12 -0700561 struct io_ring_ctx *ctx = req->ctx;
562
Jens Axboe498ccd92019-10-25 10:04:25 -0600563 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
564 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600565}
566
Bob Liu9d858b22019-11-13 18:06:25 +0800567static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600568{
Bob Liu9d858b22019-11-13 18:06:25 +0800569 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
570 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600571
Bob Liu9d858b22019-11-13 18:06:25 +0800572 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600573}
574
575static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600576{
577 struct io_kiocb *req;
578
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600579 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800580 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600581 list_del_init(&req->list);
582 return req;
583 }
584
585 return NULL;
586}
587
Jens Axboe5262f562019-09-17 12:26:57 -0600588static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
589{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600590 struct io_kiocb *req;
591
592 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700593 if (req) {
594 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
595 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800596 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700597 list_del_init(&req->list);
598 return req;
599 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600600 }
601
602 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600603}
604
Jens Axboede0617e2019-04-06 21:51:27 -0600605static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700606{
Hristo Venev75b28af2019-08-26 17:23:46 +0000607 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700608
Hristo Venev75b28af2019-08-26 17:23:46 +0000609 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700610 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000611 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700612
Jens Axboe2b188cc2019-01-07 10:46:33 -0700613 if (wq_has_sleeper(&ctx->cq_wait)) {
614 wake_up_interruptible(&ctx->cq_wait);
615 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
616 }
617 }
618}
619
Jens Axboed625c6e2019-12-17 19:53:05 -0700620static inline bool io_req_needs_user(struct io_kiocb *req)
Jens Axboe18d9be12019-09-10 09:13:05 -0600621{
Jens Axboed625c6e2019-12-17 19:53:05 -0700622 return !(req->opcode == IORING_OP_READ_FIXED ||
623 req->opcode == IORING_OP_WRITE_FIXED);
Jens Axboe561fb042019-10-24 07:25:42 -0600624}
625
Jens Axboe94ae5e72019-11-14 19:39:52 -0700626static inline bool io_prep_async_work(struct io_kiocb *req,
627 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600628{
629 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600630
Jens Axboe3529d8c2019-12-19 18:24:38 -0700631 switch (req->opcode) {
632 case IORING_OP_WRITEV:
633 case IORING_OP_WRITE_FIXED:
634 /* only regular files should be hashed for writes */
635 if (req->flags & REQ_F_ISREG)
636 do_hashed = true;
637 /* fall-through */
638 case IORING_OP_READV:
639 case IORING_OP_READ_FIXED:
640 case IORING_OP_SENDMSG:
641 case IORING_OP_RECVMSG:
642 case IORING_OP_ACCEPT:
643 case IORING_OP_POLL_ADD:
644 case IORING_OP_CONNECT:
645 /*
646 * We know REQ_F_ISREG is not set on some of these
647 * opcodes, but this enables us to keep the check in
648 * just one place.
649 */
650 if (!(req->flags & REQ_F_ISREG))
651 req->work.flags |= IO_WQ_WORK_UNBOUND;
652 break;
Jens Axboe54a91f32019-09-10 09:15:04 -0600653 }
Jens Axboe3529d8c2019-12-19 18:24:38 -0700654 if (io_req_needs_user(req))
655 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600656
Jens Axboe94ae5e72019-11-14 19:39:52 -0700657 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600658 return do_hashed;
659}
660
Jackie Liua197f662019-11-08 08:09:12 -0700661static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600662{
Jackie Liua197f662019-11-08 08:09:12 -0700663 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700664 struct io_kiocb *link;
665 bool do_hashed;
666
667 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600668
669 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
670 req->flags);
671 if (!do_hashed) {
672 io_wq_enqueue(ctx->io_wq, &req->work);
673 } else {
674 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
675 file_inode(req->file));
676 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700677
678 if (link)
679 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600680}
681
Jens Axboe5262f562019-09-17 12:26:57 -0600682static void io_kill_timeout(struct io_kiocb *req)
683{
684 int ret;
685
Jens Axboe2d283902019-12-04 11:08:05 -0700686 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600687 if (ret != -1) {
688 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600689 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700690 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800691 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600692 }
693}
694
695static void io_kill_timeouts(struct io_ring_ctx *ctx)
696{
697 struct io_kiocb *req, *tmp;
698
699 spin_lock_irq(&ctx->completion_lock);
700 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
701 io_kill_timeout(req);
702 spin_unlock_irq(&ctx->completion_lock);
703}
704
Jens Axboede0617e2019-04-06 21:51:27 -0600705static void io_commit_cqring(struct io_ring_ctx *ctx)
706{
707 struct io_kiocb *req;
708
Jens Axboe5262f562019-09-17 12:26:57 -0600709 while ((req = io_get_timeout_req(ctx)) != NULL)
710 io_kill_timeout(req);
711
Jens Axboede0617e2019-04-06 21:51:27 -0600712 __io_commit_cqring(ctx);
713
714 while ((req = io_get_deferred_req(ctx)) != NULL) {
715 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700716 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600717 }
718}
719
Jens Axboe2b188cc2019-01-07 10:46:33 -0700720static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
721{
Hristo Venev75b28af2019-08-26 17:23:46 +0000722 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700723 unsigned tail;
724
725 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200726 /*
727 * writes to the cq entry need to come after reading head; the
728 * control dependency is enough as we're using WRITE_ONCE to
729 * fill the cq entry
730 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000731 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700732 return NULL;
733
734 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000735 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700736}
737
Jens Axboe8c838782019-03-12 15:48:16 -0600738static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
739{
740 if (waitqueue_active(&ctx->wait))
741 wake_up(&ctx->wait);
742 if (waitqueue_active(&ctx->sqo_wait))
743 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600744 if (ctx->cq_ev_fd)
745 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600746}
747
Jens Axboec4a2ed72019-11-21 21:01:26 -0700748/* Returns true if there are no backlogged entries after the flush */
749static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700750{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700751 struct io_rings *rings = ctx->rings;
752 struct io_uring_cqe *cqe;
753 struct io_kiocb *req;
754 unsigned long flags;
755 LIST_HEAD(list);
756
757 if (!force) {
758 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700759 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700760 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
761 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700762 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700763 }
764
765 spin_lock_irqsave(&ctx->completion_lock, flags);
766
767 /* if force is set, the ring is going away. always drop after that */
768 if (force)
769 ctx->cq_overflow_flushed = true;
770
Jens Axboec4a2ed72019-11-21 21:01:26 -0700771 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700772 while (!list_empty(&ctx->cq_overflow_list)) {
773 cqe = io_get_cqring(ctx);
774 if (!cqe && !force)
775 break;
776
777 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
778 list);
779 list_move(&req->list, &list);
780 if (cqe) {
781 WRITE_ONCE(cqe->user_data, req->user_data);
782 WRITE_ONCE(cqe->res, req->result);
783 WRITE_ONCE(cqe->flags, 0);
784 } else {
785 WRITE_ONCE(ctx->rings->cq_overflow,
786 atomic_inc_return(&ctx->cached_cq_overflow));
787 }
788 }
789
790 io_commit_cqring(ctx);
791 spin_unlock_irqrestore(&ctx->completion_lock, flags);
792 io_cqring_ev_posted(ctx);
793
794 while (!list_empty(&list)) {
795 req = list_first_entry(&list, struct io_kiocb, list);
796 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800797 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700798 }
Jens Axboec4a2ed72019-11-21 21:01:26 -0700799
800 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700801}
802
Jens Axboe78e19bb2019-11-06 15:21:34 -0700803static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700804{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700805 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700806 struct io_uring_cqe *cqe;
807
Jens Axboe78e19bb2019-11-06 15:21:34 -0700808 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -0700809
Jens Axboe2b188cc2019-01-07 10:46:33 -0700810 /*
811 * If we can't get a cq entry, userspace overflowed the
812 * submission (by quite a lot). Increment the overflow count in
813 * the ring.
814 */
815 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700816 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700817 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700818 WRITE_ONCE(cqe->res, res);
819 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700820 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700821 WRITE_ONCE(ctx->rings->cq_overflow,
822 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700823 } else {
824 refcount_inc(&req->refs);
825 req->result = res;
826 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700827 }
828}
829
Jens Axboe78e19bb2019-11-06 15:21:34 -0700830static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700831{
Jens Axboe78e19bb2019-11-06 15:21:34 -0700832 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700833 unsigned long flags;
834
835 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700836 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700837 io_commit_cqring(ctx);
838 spin_unlock_irqrestore(&ctx->completion_lock, flags);
839
Jens Axboe8c838782019-03-12 15:48:16 -0600840 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700841}
842
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700843static inline bool io_is_fallback_req(struct io_kiocb *req)
844{
845 return req == (struct io_kiocb *)
846 ((unsigned long) req->ctx->fallback_req & ~1UL);
847}
848
849static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
850{
851 struct io_kiocb *req;
852
853 req = ctx->fallback_req;
854 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
855 return req;
856
857 return NULL;
858}
859
Jens Axboe2579f912019-01-09 09:10:43 -0700860static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
861 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700862{
Jens Axboefd6fab22019-03-14 16:30:06 -0600863 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700864 struct io_kiocb *req;
865
866 if (!percpu_ref_tryget(&ctx->refs))
867 return NULL;
868
Jens Axboe2579f912019-01-09 09:10:43 -0700869 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -0600870 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -0700871 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700872 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -0700873 } else if (!state->free_reqs) {
874 size_t sz;
875 int ret;
876
877 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -0600878 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
879
880 /*
881 * Bulk alloc is all-or-nothing. If we fail to get a batch,
882 * retry single alloc to be on the safe side.
883 */
884 if (unlikely(ret <= 0)) {
885 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
886 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700887 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -0600888 ret = 1;
889 }
Jens Axboe2579f912019-01-09 09:10:43 -0700890 state->free_reqs = ret - 1;
891 state->cur_req = 1;
892 req = state->reqs[0];
893 } else {
894 req = state->reqs[state->cur_req];
895 state->free_reqs--;
896 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700897 }
898
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700899got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700900 req->io = NULL;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300901 req->ring_file = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -0600902 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -0700903 req->ctx = ctx;
904 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -0600905 /* one is dropped after submission, the other at completion */
906 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -0600907 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -0600908 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -0700909 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700910fallback:
911 req = io_get_fallback_req(ctx);
912 if (req)
913 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +0300914 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700915 return NULL;
916}
917
Jens Axboedef596e2019-01-09 08:59:42 -0700918static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
919{
920 if (*nr) {
921 kmem_cache_free_bulk(req_cachep, *nr, reqs);
Pavel Begunkov6805b322019-10-08 02:18:42 +0300922 percpu_ref_put_many(&ctx->refs, *nr);
Jens Axboedef596e2019-01-09 08:59:42 -0700923 *nr = 0;
924 }
925}
926
Jens Axboe9e645e112019-05-10 16:07:28 -0600927static void __io_free_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700928{
Jens Axboefcb323c2019-10-24 12:39:47 -0600929 struct io_ring_ctx *ctx = req->ctx;
930
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700931 if (req->io)
932 kfree(req->io);
Jens Axboe09bb8392019-03-13 12:39:28 -0600933 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
934 fput(req->file);
Jens Axboefcb323c2019-10-24 12:39:47 -0600935 if (req->flags & REQ_F_INFLIGHT) {
936 unsigned long flags;
937
938 spin_lock_irqsave(&ctx->inflight_lock, flags);
939 list_del(&req->inflight_entry);
940 if (waitqueue_active(&ctx->inflight_wait))
941 wake_up(&ctx->inflight_wait);
942 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
943 }
944 percpu_ref_put(&ctx->refs);
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700945 if (likely(!io_is_fallback_req(req)))
946 kmem_cache_free(req_cachep, req);
947 else
948 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -0600949}
950
Jackie Liua197f662019-11-08 08:09:12 -0700951static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -0600952{
Jackie Liua197f662019-11-08 08:09:12 -0700953 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700954 int ret;
955
Jens Axboe2d283902019-12-04 11:08:05 -0700956 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -0700957 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -0700958 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -0700959 io_commit_cqring(ctx);
960 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +0800961 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -0700962 return true;
963 }
964
965 return false;
966}
967
Jens Axboeba816ad2019-09-28 11:36:45 -0600968static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -0600969{
Jens Axboe2665abf2019-11-05 12:40:47 -0700970 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -0700971 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -0600972
Jens Axboe4d7dd462019-11-20 13:03:52 -0700973 /* Already got next link */
974 if (req->flags & REQ_F_LINK_NEXT)
975 return;
976
Jens Axboe9e645e112019-05-10 16:07:28 -0600977 /*
978 * The list should never be empty when we are called here. But could
979 * potentially happen if the chain is messed up, check to be on the
980 * safe side.
981 */
Pavel Begunkov44932332019-12-05 16:16:35 +0300982 while (!list_empty(&req->link_list)) {
983 struct io_kiocb *nxt = list_first_entry(&req->link_list,
984 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700985
Pavel Begunkov44932332019-12-05 16:16:35 +0300986 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
987 (nxt->flags & REQ_F_TIMEOUT))) {
988 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700989 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700990 req->flags &= ~REQ_F_LINK_TIMEOUT;
991 continue;
992 }
Jens Axboe9e645e112019-05-10 16:07:28 -0600993
Pavel Begunkov44932332019-12-05 16:16:35 +0300994 list_del_init(&req->link_list);
995 if (!list_empty(&nxt->link_list))
996 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +0300997 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700998 break;
Jens Axboe9e645e112019-05-10 16:07:28 -0600999 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001000
Jens Axboe4d7dd462019-11-20 13:03:52 -07001001 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001002 if (wake_ev)
1003 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001004}
1005
1006/*
1007 * Called if REQ_F_LINK is set, and we fail the head request
1008 */
1009static void io_fail_links(struct io_kiocb *req)
1010{
Jens Axboe2665abf2019-11-05 12:40:47 -07001011 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001012 unsigned long flags;
1013
1014 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001015
1016 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001017 struct io_kiocb *link = list_first_entry(&req->link_list,
1018 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001019
Pavel Begunkov44932332019-12-05 16:16:35 +03001020 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001021 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001022
1023 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001024 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001025 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001026 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001027 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001028 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001029 }
Jens Axboe5d960722019-11-19 15:31:28 -07001030 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001031 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001032
1033 io_commit_cqring(ctx);
1034 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1035 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001036}
1037
Jens Axboe4d7dd462019-11-20 13:03:52 -07001038static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001039{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001040 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001041 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001042
Jens Axboe9e645e112019-05-10 16:07:28 -06001043 /*
1044 * If LINK is set, we have dependent requests in this chain. If we
1045 * didn't fail this request, queue the first one up, moving any other
1046 * dependencies to the next request. In case of failure, fail the rest
1047 * of the chain.
1048 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001049 if (req->flags & REQ_F_FAIL_LINK) {
1050 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001051 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1052 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001053 struct io_ring_ctx *ctx = req->ctx;
1054 unsigned long flags;
1055
1056 /*
1057 * If this is a timeout link, we could be racing with the
1058 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001059 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001060 */
1061 spin_lock_irqsave(&ctx->completion_lock, flags);
1062 io_req_link_next(req, nxt);
1063 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1064 } else {
1065 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001066 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001067}
Jens Axboe9e645e112019-05-10 16:07:28 -06001068
Jackie Liuc69f8db2019-11-09 11:00:08 +08001069static void io_free_req(struct io_kiocb *req)
1070{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001071 struct io_kiocb *nxt = NULL;
1072
1073 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001074 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001075
1076 if (nxt)
1077 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001078}
1079
Jens Axboeba816ad2019-09-28 11:36:45 -06001080/*
1081 * Drop reference to request, return next in chain (if there is one) if this
1082 * was the last reference to this request.
1083 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001084__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001085static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001086{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001087 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001088
Jens Axboee65ef562019-03-12 10:16:44 -06001089 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001090 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001091}
1092
Jens Axboe2b188cc2019-01-07 10:46:33 -07001093static void io_put_req(struct io_kiocb *req)
1094{
Jens Axboedef596e2019-01-09 08:59:42 -07001095 if (refcount_dec_and_test(&req->refs))
1096 io_free_req(req);
1097}
1098
Jens Axboe978db572019-11-14 22:39:04 -07001099/*
1100 * Must only be used if we don't need to care about links, usually from
1101 * within the completion handling itself.
1102 */
1103static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001104{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001105 /* drop both submit and complete references */
1106 if (refcount_sub_and_test(2, &req->refs))
1107 __io_free_req(req);
1108}
1109
Jens Axboe978db572019-11-14 22:39:04 -07001110static void io_double_put_req(struct io_kiocb *req)
1111{
1112 /* drop both submit and complete references */
1113 if (refcount_sub_and_test(2, &req->refs))
1114 io_free_req(req);
1115}
1116
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001117static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001118{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001119 struct io_rings *rings = ctx->rings;
1120
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001121 /*
1122 * noflush == true is from the waitqueue handler, just ensure we wake
1123 * up the task, and the next invocation will flush the entries. We
1124 * cannot safely to it from here.
1125 */
1126 if (noflush && !list_empty(&ctx->cq_overflow_list))
1127 return -1U;
1128
1129 io_cqring_overflow_flush(ctx, false);
1130
Jens Axboea3a0e432019-08-20 11:03:11 -06001131 /* See comment at the top of this file */
1132 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00001133 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001134}
1135
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001136static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1137{
1138 struct io_rings *rings = ctx->rings;
1139
1140 /* make sure SQ entry isn't read before tail */
1141 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1142}
1143
Jens Axboedef596e2019-01-09 08:59:42 -07001144/*
1145 * Find and free completed poll iocbs
1146 */
1147static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1148 struct list_head *done)
1149{
1150 void *reqs[IO_IOPOLL_BATCH];
1151 struct io_kiocb *req;
Jens Axboe09bb8392019-03-13 12:39:28 -06001152 int to_free;
Jens Axboedef596e2019-01-09 08:59:42 -07001153
Jens Axboe09bb8392019-03-13 12:39:28 -06001154 to_free = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001155 while (!list_empty(done)) {
1156 req = list_first_entry(done, struct io_kiocb, list);
1157 list_del(&req->list);
1158
Jens Axboe78e19bb2019-11-06 15:21:34 -07001159 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001160 (*nr_events)++;
1161
Jens Axboe09bb8392019-03-13 12:39:28 -06001162 if (refcount_dec_and_test(&req->refs)) {
1163 /* If we're not using fixed files, we have to pair the
1164 * completion part with the file put. Use regular
1165 * completions for those, only batch free for fixed
Jens Axboe9e645e112019-05-10 16:07:28 -06001166 * file and non-linked commands.
Jens Axboe09bb8392019-03-13 12:39:28 -06001167 */
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001168 if (((req->flags & (REQ_F_FIXED_FILE|REQ_F_LINK)) ==
1169 REQ_F_FIXED_FILE) && !io_is_fallback_req(req) &&
1170 !req->io) {
Jens Axboe09bb8392019-03-13 12:39:28 -06001171 reqs[to_free++] = req;
1172 if (to_free == ARRAY_SIZE(reqs))
1173 io_free_req_many(ctx, reqs, &to_free);
Jens Axboe6b063142019-01-10 22:13:58 -07001174 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001175 io_free_req(req);
Jens Axboe6b063142019-01-10 22:13:58 -07001176 }
Jens Axboe9a56a232019-01-09 09:06:50 -07001177 }
Jens Axboedef596e2019-01-09 08:59:42 -07001178 }
Jens Axboedef596e2019-01-09 08:59:42 -07001179
Jens Axboe09bb8392019-03-13 12:39:28 -06001180 io_commit_cqring(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07001181 io_free_req_many(ctx, reqs, &to_free);
1182}
1183
1184static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1185 long min)
1186{
1187 struct io_kiocb *req, *tmp;
1188 LIST_HEAD(done);
1189 bool spin;
1190 int ret;
1191
1192 /*
1193 * Only spin for completions if we don't have multiple devices hanging
1194 * off our complete list, and we're under the requested amount.
1195 */
1196 spin = !ctx->poll_multi_file && *nr_events < min;
1197
1198 ret = 0;
1199 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001200 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001201
1202 /*
1203 * Move completed entries to our local list. If we find a
1204 * request that requires polling, break out and complete
1205 * the done list first, if we have entries there.
1206 */
1207 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1208 list_move_tail(&req->list, &done);
1209 continue;
1210 }
1211 if (!list_empty(&done))
1212 break;
1213
1214 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1215 if (ret < 0)
1216 break;
1217
1218 if (ret && spin)
1219 spin = false;
1220 ret = 0;
1221 }
1222
1223 if (!list_empty(&done))
1224 io_iopoll_complete(ctx, nr_events, &done);
1225
1226 return ret;
1227}
1228
1229/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001230 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001231 * non-spinning poll check - we'll still enter the driver poll loop, but only
1232 * as a non-spinning completion check.
1233 */
1234static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1235 long min)
1236{
Jens Axboe08f54392019-08-21 22:19:11 -06001237 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001238 int ret;
1239
1240 ret = io_do_iopoll(ctx, nr_events, min);
1241 if (ret < 0)
1242 return ret;
1243 if (!min || *nr_events >= min)
1244 return 0;
1245 }
1246
1247 return 1;
1248}
1249
1250/*
1251 * We can't just wait for polled events to come to us, we have to actively
1252 * find and complete them.
1253 */
1254static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1255{
1256 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1257 return;
1258
1259 mutex_lock(&ctx->uring_lock);
1260 while (!list_empty(&ctx->poll_list)) {
1261 unsigned int nr_events = 0;
1262
1263 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001264
1265 /*
1266 * Ensure we allow local-to-the-cpu processing to take place,
1267 * in this case we need to ensure that we reap all events.
1268 */
1269 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001270 }
1271 mutex_unlock(&ctx->uring_lock);
1272}
1273
Jens Axboe2b2ed972019-10-25 10:06:15 -06001274static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1275 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001276{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001277 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001278
1279 do {
1280 int tmin = 0;
1281
Jens Axboe500f9fb2019-08-19 12:15:59 -06001282 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001283 * Don't enter poll loop if we already have events pending.
1284 * If we do, we can potentially be spinning for commands that
1285 * already triggered a CQE (eg in error).
1286 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001287 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001288 break;
1289
1290 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001291 * If a submit got punted to a workqueue, we can have the
1292 * application entering polling for a command before it gets
1293 * issued. That app will hold the uring_lock for the duration
1294 * of the poll right here, so we need to take a breather every
1295 * now and then to ensure that the issue has a chance to add
1296 * the poll to the issued list. Otherwise we can spin here
1297 * forever, while the workqueue is stuck trying to acquire the
1298 * very same mutex.
1299 */
1300 if (!(++iters & 7)) {
1301 mutex_unlock(&ctx->uring_lock);
1302 mutex_lock(&ctx->uring_lock);
1303 }
1304
Jens Axboedef596e2019-01-09 08:59:42 -07001305 if (*nr_events < min)
1306 tmin = min - *nr_events;
1307
1308 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1309 if (ret <= 0)
1310 break;
1311 ret = 0;
1312 } while (min && !*nr_events && !need_resched());
1313
Jens Axboe2b2ed972019-10-25 10:06:15 -06001314 return ret;
1315}
1316
1317static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1318 long min)
1319{
1320 int ret;
1321
1322 /*
1323 * We disallow the app entering submit/complete with polling, but we
1324 * still need to lock the ring to prevent racing with polled issue
1325 * that got punted to a workqueue.
1326 */
1327 mutex_lock(&ctx->uring_lock);
1328 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001329 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001330 return ret;
1331}
1332
Jens Axboe491381ce2019-10-17 09:20:46 -06001333static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001334{
Jens Axboe491381ce2019-10-17 09:20:46 -06001335 /*
1336 * Tell lockdep we inherited freeze protection from submission
1337 * thread.
1338 */
1339 if (req->flags & REQ_F_ISREG) {
1340 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001341
Jens Axboe491381ce2019-10-17 09:20:46 -06001342 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001343 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001344 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001345}
1346
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001347static inline void req_set_fail_links(struct io_kiocb *req)
1348{
1349 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1350 req->flags |= REQ_F_FAIL_LINK;
1351}
1352
Jens Axboeba816ad2019-09-28 11:36:45 -06001353static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001354{
Jens Axboe9adbd452019-12-20 08:45:55 -07001355 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001356
Jens Axboe491381ce2019-10-17 09:20:46 -06001357 if (kiocb->ki_flags & IOCB_WRITE)
1358 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001359
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001360 if (res != req->result)
1361 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001362 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001363}
1364
1365static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1366{
Jens Axboe9adbd452019-12-20 08:45:55 -07001367 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001368
1369 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001370 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001371}
1372
Jens Axboeba816ad2019-09-28 11:36:45 -06001373static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1374{
Jens Axboe9adbd452019-12-20 08:45:55 -07001375 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001376 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001377
1378 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001379 io_put_req_find_next(req, &nxt);
1380
1381 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001382}
1383
Jens Axboedef596e2019-01-09 08:59:42 -07001384static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1385{
Jens Axboe9adbd452019-12-20 08:45:55 -07001386 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001387
Jens Axboe491381ce2019-10-17 09:20:46 -06001388 if (kiocb->ki_flags & IOCB_WRITE)
1389 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001390
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001391 if (res != req->result)
1392 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001393 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001394 if (res != -EAGAIN)
1395 req->flags |= REQ_F_IOPOLL_COMPLETED;
1396}
1397
1398/*
1399 * After the iocb has been issued, it's safe to be found on the poll list.
1400 * Adding the kiocb to the list AFTER submission ensures that we don't
1401 * find it from a io_iopoll_getevents() thread before the issuer is done
1402 * accessing the kiocb cookie.
1403 */
1404static void io_iopoll_req_issued(struct io_kiocb *req)
1405{
1406 struct io_ring_ctx *ctx = req->ctx;
1407
1408 /*
1409 * Track whether we have multiple files in our lists. This will impact
1410 * how we do polling eventually, not spinning if we're on potentially
1411 * different devices.
1412 */
1413 if (list_empty(&ctx->poll_list)) {
1414 ctx->poll_multi_file = false;
1415 } else if (!ctx->poll_multi_file) {
1416 struct io_kiocb *list_req;
1417
1418 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1419 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001420 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001421 ctx->poll_multi_file = true;
1422 }
1423
1424 /*
1425 * For fast devices, IO may have already completed. If it has, add
1426 * it to the front so we find it first.
1427 */
1428 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1429 list_add(&req->list, &ctx->poll_list);
1430 else
1431 list_add_tail(&req->list, &ctx->poll_list);
1432}
1433
Jens Axboe3d6770f2019-04-13 11:50:54 -06001434static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001435{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001436 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001437 int diff = state->has_refs - state->used_refs;
1438
1439 if (diff)
1440 fput_many(state->file, diff);
1441 state->file = NULL;
1442 }
1443}
1444
1445/*
1446 * Get as many references to a file as we have IOs left in this submission,
1447 * assuming most submissions are for one file, or at least that each file
1448 * has more than one submission.
1449 */
1450static struct file *io_file_get(struct io_submit_state *state, int fd)
1451{
1452 if (!state)
1453 return fget(fd);
1454
1455 if (state->file) {
1456 if (state->fd == fd) {
1457 state->used_refs++;
1458 state->ios_left--;
1459 return state->file;
1460 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001461 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001462 }
1463 state->file = fget_many(fd, state->ios_left);
1464 if (!state->file)
1465 return NULL;
1466
1467 state->fd = fd;
1468 state->has_refs = state->ios_left;
1469 state->used_refs = 1;
1470 state->ios_left--;
1471 return state->file;
1472}
1473
Jens Axboe2b188cc2019-01-07 10:46:33 -07001474/*
1475 * If we tracked the file through the SCM inflight mechanism, we could support
1476 * any file. For now, just ensure that anything potentially problematic is done
1477 * inline.
1478 */
1479static bool io_file_supports_async(struct file *file)
1480{
1481 umode_t mode = file_inode(file)->i_mode;
1482
Jens Axboe10d59342019-12-09 20:16:22 -07001483 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001484 return true;
1485 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1486 return true;
1487
1488 return false;
1489}
1490
Jens Axboe3529d8c2019-12-19 18:24:38 -07001491static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1492 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001493{
Jens Axboedef596e2019-01-09 08:59:42 -07001494 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001495 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001496 unsigned ioprio;
1497 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001498
Jens Axboe09bb8392019-03-13 12:39:28 -06001499 if (!req->file)
1500 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001501
Jens Axboe491381ce2019-10-17 09:20:46 -06001502 if (S_ISREG(file_inode(req->file)->i_mode))
1503 req->flags |= REQ_F_ISREG;
1504
Jens Axboe2b188cc2019-01-07 10:46:33 -07001505 kiocb->ki_pos = READ_ONCE(sqe->off);
1506 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1507 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1508
1509 ioprio = READ_ONCE(sqe->ioprio);
1510 if (ioprio) {
1511 ret = ioprio_check_cap(ioprio);
1512 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001513 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001514
1515 kiocb->ki_ioprio = ioprio;
1516 } else
1517 kiocb->ki_ioprio = get_current_ioprio();
1518
1519 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1520 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001521 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001522
1523 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001524 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1525 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001526 req->flags |= REQ_F_NOWAIT;
1527
1528 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001529 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001530
Jens Axboedef596e2019-01-09 08:59:42 -07001531 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001532 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1533 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001534 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001535
Jens Axboedef596e2019-01-09 08:59:42 -07001536 kiocb->ki_flags |= IOCB_HIPRI;
1537 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001538 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001539 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001540 if (kiocb->ki_flags & IOCB_HIPRI)
1541 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001542 kiocb->ki_complete = io_complete_rw;
1543 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001544
Jens Axboe3529d8c2019-12-19 18:24:38 -07001545 req->rw.addr = READ_ONCE(sqe->addr);
1546 req->rw.len = READ_ONCE(sqe->len);
Jens Axboe9adbd452019-12-20 08:45:55 -07001547 /* we own ->private, reuse it for the buffer index */
1548 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001549 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001550 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001551}
1552
1553static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1554{
1555 switch (ret) {
1556 case -EIOCBQUEUED:
1557 break;
1558 case -ERESTARTSYS:
1559 case -ERESTARTNOINTR:
1560 case -ERESTARTNOHAND:
1561 case -ERESTART_RESTARTBLOCK:
1562 /*
1563 * We can't just restart the syscall, since previously
1564 * submitted sqes may already be in progress. Just fail this
1565 * IO with EINTR.
1566 */
1567 ret = -EINTR;
1568 /* fall through */
1569 default:
1570 kiocb->ki_complete(kiocb, ret, 0);
1571 }
1572}
1573
Jens Axboeba816ad2019-09-28 11:36:45 -06001574static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1575 bool in_async)
1576{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001577 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001578 *nxt = __io_complete_rw(kiocb, ret);
1579 else
1580 io_rw_done(kiocb, ret);
1581}
1582
Jens Axboe9adbd452019-12-20 08:45:55 -07001583static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03001584 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001585{
Jens Axboe9adbd452019-12-20 08:45:55 -07001586 struct io_ring_ctx *ctx = req->ctx;
1587 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001588 struct io_mapped_ubuf *imu;
1589 unsigned index, buf_index;
1590 size_t offset;
1591 u64 buf_addr;
1592
1593 /* attempt to use fixed buffers without having provided iovecs */
1594 if (unlikely(!ctx->user_bufs))
1595 return -EFAULT;
1596
Jens Axboe9adbd452019-12-20 08:45:55 -07001597 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07001598 if (unlikely(buf_index >= ctx->nr_user_bufs))
1599 return -EFAULT;
1600
1601 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1602 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07001603 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07001604
1605 /* overflow */
1606 if (buf_addr + len < buf_addr)
1607 return -EFAULT;
1608 /* not inside the mapped region */
1609 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1610 return -EFAULT;
1611
1612 /*
1613 * May not be a start of buffer, set size appropriately
1614 * and advance us to the beginning.
1615 */
1616 offset = buf_addr - imu->ubuf;
1617 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001618
1619 if (offset) {
1620 /*
1621 * Don't use iov_iter_advance() here, as it's really slow for
1622 * using the latter parts of a big fixed buffer - it iterates
1623 * over each segment manually. We can cheat a bit here, because
1624 * we know that:
1625 *
1626 * 1) it's a BVEC iter, we set it up
1627 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1628 * first and last bvec
1629 *
1630 * So just find our index, and adjust the iterator afterwards.
1631 * If the offset is within the first bvec (or the whole first
1632 * bvec, just use iov_iter_advance(). This makes it easier
1633 * since we can just skip the first segment, which may not
1634 * be PAGE_SIZE aligned.
1635 */
1636 const struct bio_vec *bvec = imu->bvec;
1637
1638 if (offset <= bvec->bv_len) {
1639 iov_iter_advance(iter, offset);
1640 } else {
1641 unsigned long seg_skip;
1642
1643 /* skip first vec */
1644 offset -= bvec->bv_len;
1645 seg_skip = 1 + (offset >> PAGE_SHIFT);
1646
1647 iter->bvec = bvec + seg_skip;
1648 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001649 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001650 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001651 }
1652 }
1653
Jens Axboe5e559562019-11-13 16:12:46 -07001654 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001655}
1656
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001657static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1658 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001659{
Jens Axboe9adbd452019-12-20 08:45:55 -07001660 void __user *buf = u64_to_user_ptr(req->rw.addr);
1661 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001662 u8 opcode;
1663
Jens Axboed625c6e2019-12-17 19:53:05 -07001664 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001665 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001666 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07001667 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001668 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001669
Jens Axboe9adbd452019-12-20 08:45:55 -07001670 /* buffer index only valid with fixed read/write */
1671 if (req->rw.kiocb.private)
1672 return -EINVAL;
1673
Jens Axboef67676d2019-12-02 11:03:47 -07001674 if (req->io) {
1675 struct io_async_rw *iorw = &req->io->rw;
1676
1677 *iovec = iorw->iov;
1678 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1679 if (iorw->iov == iorw->fast_iov)
1680 *iovec = NULL;
1681 return iorw->size;
1682 }
1683
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001684 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001685 return -EFAULT;
1686
1687#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001688 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001689 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1690 iovec, iter);
1691#endif
1692
1693 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1694}
1695
Jens Axboe32960612019-09-23 11:05:34 -06001696/*
1697 * For files that don't have ->read_iter() and ->write_iter(), handle them
1698 * by looping over ->read() or ->write() manually.
1699 */
1700static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1701 struct iov_iter *iter)
1702{
1703 ssize_t ret = 0;
1704
1705 /*
1706 * Don't support polled IO through this interface, and we can't
1707 * support non-blocking either. For the latter, this just causes
1708 * the kiocb to be handled from an async context.
1709 */
1710 if (kiocb->ki_flags & IOCB_HIPRI)
1711 return -EOPNOTSUPP;
1712 if (kiocb->ki_flags & IOCB_NOWAIT)
1713 return -EAGAIN;
1714
1715 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001716 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06001717 ssize_t nr;
1718
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001719 if (!iov_iter_is_bvec(iter)) {
1720 iovec = iov_iter_iovec(iter);
1721 } else {
1722 /* fixed buffers import bvec */
1723 iovec.iov_base = kmap(iter->bvec->bv_page)
1724 + iter->iov_offset;
1725 iovec.iov_len = min(iter->count,
1726 iter->bvec->bv_len - iter->iov_offset);
1727 }
1728
Jens Axboe32960612019-09-23 11:05:34 -06001729 if (rw == READ) {
1730 nr = file->f_op->read(file, iovec.iov_base,
1731 iovec.iov_len, &kiocb->ki_pos);
1732 } else {
1733 nr = file->f_op->write(file, iovec.iov_base,
1734 iovec.iov_len, &kiocb->ki_pos);
1735 }
1736
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03001737 if (iov_iter_is_bvec(iter))
1738 kunmap(iter->bvec->bv_page);
1739
Jens Axboe32960612019-09-23 11:05:34 -06001740 if (nr < 0) {
1741 if (!ret)
1742 ret = nr;
1743 break;
1744 }
1745 ret += nr;
1746 if (nr != iovec.iov_len)
1747 break;
1748 iov_iter_advance(iter, nr);
1749 }
1750
1751 return ret;
1752}
1753
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001754static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07001755 struct iovec *iovec, struct iovec *fast_iov,
1756 struct iov_iter *iter)
1757{
1758 req->io->rw.nr_segs = iter->nr_segs;
1759 req->io->rw.size = io_size;
1760 req->io->rw.iov = iovec;
1761 if (!req->io->rw.iov) {
1762 req->io->rw.iov = req->io->rw.fast_iov;
1763 memcpy(req->io->rw.iov, fast_iov,
1764 sizeof(struct iovec) * iter->nr_segs);
1765 }
1766}
1767
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001768static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07001769{
1770 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07001771 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001772}
1773
1774static void io_rw_async(struct io_wq_work **workptr)
1775{
1776 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1777 struct iovec *iov = NULL;
1778
1779 if (req->io->rw.iov != req->io->rw.fast_iov)
1780 iov = req->io->rw.iov;
1781 io_wq_submit_work(workptr);
1782 kfree(iov);
1783}
1784
1785static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
1786 struct iovec *iovec, struct iovec *fast_iov,
1787 struct iov_iter *iter)
1788{
Jens Axboe74566df2020-01-13 19:23:24 -07001789 if (req->opcode == IORING_OP_READ_FIXED ||
1790 req->opcode == IORING_OP_WRITE_FIXED)
1791 return 0;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001792 if (!req->io && io_alloc_async_ctx(req))
1793 return -ENOMEM;
1794
1795 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
1796 req->work.func = io_rw_async;
1797 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07001798}
1799
Jens Axboe3529d8c2019-12-19 18:24:38 -07001800static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1801 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07001802{
Jens Axboe3529d8c2019-12-19 18:24:38 -07001803 struct io_async_ctx *io;
1804 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07001805 ssize_t ret;
1806
Jens Axboe3529d8c2019-12-19 18:24:38 -07001807 ret = io_prep_rw(req, sqe, force_nonblock);
1808 if (ret)
1809 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07001810
Jens Axboe3529d8c2019-12-19 18:24:38 -07001811 if (unlikely(!(req->file->f_mode & FMODE_READ)))
1812 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07001813
Jens Axboe3529d8c2019-12-19 18:24:38 -07001814 if (!req->io)
1815 return 0;
1816
1817 io = req->io;
1818 io->rw.iov = io->rw.fast_iov;
1819 req->io = NULL;
1820 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
1821 req->io = io;
1822 if (ret < 0)
1823 return ret;
1824
1825 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
1826 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07001827}
1828
Pavel Begunkov267bc902019-11-07 01:41:08 +03001829static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001830 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001831{
1832 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07001833 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001834 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07001835 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001836 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001837
Jens Axboe3529d8c2019-12-19 18:24:38 -07001838 ret = io_import_iovec(READ, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07001839 if (ret < 0)
1840 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001841
Jens Axboefd6c2e42019-12-18 12:19:41 -07001842 /* Ensure we clear previously set non-block flag */
1843 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07001844 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07001845
Jens Axboef67676d2019-12-02 11:03:47 -07001846 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001847 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001848 req->result = io_size;
1849
1850 /*
1851 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1852 * we know to async punt it even if it was opened O_NONBLOCK
1853 */
Jens Axboe9adbd452019-12-20 08:45:55 -07001854 if (force_nonblock && !io_file_supports_async(req->file)) {
Jens Axboef67676d2019-12-02 11:03:47 -07001855 req->flags |= REQ_F_MUST_PUNT;
1856 goto copy_iov;
1857 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001858
Jens Axboe31b51512019-01-18 22:56:34 -07001859 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07001860 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001861 if (!ret) {
1862 ssize_t ret2;
1863
Jens Axboe9adbd452019-12-20 08:45:55 -07001864 if (req->file->f_op->read_iter)
1865 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001866 else
Jens Axboe9adbd452019-12-20 08:45:55 -07001867 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001868
Jens Axboe9d93a3f2019-05-15 13:53:07 -06001869 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07001870 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001871 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001872 } else {
1873copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001874 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07001875 inline_vecs, &iter);
1876 if (ret)
1877 goto out_free;
1878 return -EAGAIN;
1879 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001880 }
Jens Axboef67676d2019-12-02 11:03:47 -07001881out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001882 if (!io_wq_current_is_worker())
1883 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001884 return ret;
1885}
1886
Jens Axboe3529d8c2019-12-19 18:24:38 -07001887static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1888 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07001889{
Jens Axboe3529d8c2019-12-19 18:24:38 -07001890 struct io_async_ctx *io;
1891 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07001892 ssize_t ret;
1893
Jens Axboe3529d8c2019-12-19 18:24:38 -07001894 ret = io_prep_rw(req, sqe, force_nonblock);
1895 if (ret)
1896 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07001897
Jens Axboe3529d8c2019-12-19 18:24:38 -07001898 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
1899 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07001900
Jens Axboe3529d8c2019-12-19 18:24:38 -07001901 if (!req->io)
1902 return 0;
1903
1904 io = req->io;
1905 io->rw.iov = io->rw.fast_iov;
1906 req->io = NULL;
1907 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
1908 req->io = io;
1909 if (ret < 0)
1910 return ret;
1911
1912 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
1913 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07001914}
1915
Pavel Begunkov267bc902019-11-07 01:41:08 +03001916static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06001917 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001918{
1919 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07001920 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001921 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07001922 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07001923 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001924
Jens Axboe3529d8c2019-12-19 18:24:38 -07001925 ret = io_import_iovec(WRITE, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07001926 if (ret < 0)
1927 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001928
Jens Axboefd6c2e42019-12-18 12:19:41 -07001929 /* Ensure we clear previously set non-block flag */
1930 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07001931 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07001932
Jens Axboef67676d2019-12-02 11:03:47 -07001933 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06001934 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07001935 req->result = io_size;
1936
1937 /*
1938 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1939 * we know to async punt it even if it was opened O_NONBLOCK
1940 */
1941 if (force_nonblock && !io_file_supports_async(req->file)) {
1942 req->flags |= REQ_F_MUST_PUNT;
1943 goto copy_iov;
1944 }
1945
Jens Axboe10d59342019-12-09 20:16:22 -07001946 /* file path doesn't support NOWAIT for non-direct_IO */
1947 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
1948 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07001949 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06001950
Jens Axboe31b51512019-01-18 22:56:34 -07001951 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07001952 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001953 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01001954 ssize_t ret2;
1955
Jens Axboe2b188cc2019-01-07 10:46:33 -07001956 /*
1957 * Open-code file_start_write here to grab freeze protection,
1958 * which will be released by another thread in
1959 * io_complete_rw(). Fool lockdep by telling it the lock got
1960 * released so that it doesn't complain about the held lock when
1961 * we return to userspace.
1962 */
Jens Axboe491381ce2019-10-17 09:20:46 -06001963 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001964 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07001965 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07001966 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07001967 SB_FREEZE_WRITE);
1968 }
1969 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01001970
Jens Axboe9adbd452019-12-20 08:45:55 -07001971 if (req->file->f_op->write_iter)
1972 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06001973 else
Jens Axboe9adbd452019-12-20 08:45:55 -07001974 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07001975 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001976 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07001977 } else {
1978copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001979 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07001980 inline_vecs, &iter);
1981 if (ret)
1982 goto out_free;
1983 return -EAGAIN;
1984 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001985 }
Jens Axboe31b51512019-01-18 22:56:34 -07001986out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07001987 if (!io_wq_current_is_worker())
1988 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001989 return ret;
1990}
1991
1992/*
1993 * IORING_OP_NOP just posts a completion event, nothing else.
1994 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07001995static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001996{
1997 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001998
Jens Axboedef596e2019-01-09 08:59:42 -07001999 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2000 return -EINVAL;
2001
Jens Axboe78e19bb2019-11-06 15:21:34 -07002002 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002003 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002004 return 0;
2005}
2006
Jens Axboe3529d8c2019-12-19 18:24:38 -07002007static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002008{
Jens Axboe6b063142019-01-10 22:13:58 -07002009 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002010
Jens Axboe09bb8392019-03-13 12:39:28 -06002011 if (!req->file)
2012 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002013
Jens Axboe6b063142019-01-10 22:13:58 -07002014 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002015 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002016 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002017 return -EINVAL;
2018
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002019 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2020 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2021 return -EINVAL;
2022
2023 req->sync.off = READ_ONCE(sqe->off);
2024 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002025 return 0;
2026}
2027
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002028static bool io_req_cancelled(struct io_kiocb *req)
2029{
2030 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2031 req_set_fail_links(req);
2032 io_cqring_add_event(req, -ECANCELED);
2033 io_put_req(req);
2034 return true;
2035 }
2036
2037 return false;
2038}
2039
Jens Axboe78912932020-01-14 22:09:06 -07002040static void io_link_work_cb(struct io_wq_work **workptr)
2041{
2042 struct io_wq_work *work = *workptr;
2043 struct io_kiocb *link = work->data;
2044
2045 io_queue_linked_timeout(link);
2046 work->func = io_wq_submit_work;
2047}
2048
2049static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2050{
2051 struct io_kiocb *link;
2052
2053 io_prep_async_work(nxt, &link);
2054 *workptr = &nxt->work;
2055 if (link) {
2056 nxt->work.flags |= IO_WQ_WORK_CB;
2057 nxt->work.func = io_link_work_cb;
2058 nxt->work.data = link;
2059 }
2060}
2061
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002062static void io_fsync_finish(struct io_wq_work **workptr)
2063{
2064 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2065 loff_t end = req->sync.off + req->sync.len;
2066 struct io_kiocb *nxt = NULL;
2067 int ret;
2068
2069 if (io_req_cancelled(req))
2070 return;
2071
Jens Axboe9adbd452019-12-20 08:45:55 -07002072 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002073 end > 0 ? end : LLONG_MAX,
2074 req->sync.flags & IORING_FSYNC_DATASYNC);
2075 if (ret < 0)
2076 req_set_fail_links(req);
2077 io_cqring_add_event(req, ret);
2078 io_put_req_find_next(req, &nxt);
2079 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002080 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002081}
2082
Jens Axboefc4df992019-12-10 14:38:45 -07002083static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2084 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002085{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002086 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002087
2088 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002089 if (force_nonblock) {
2090 io_put_req(req);
2091 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002092 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002093 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002094
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002095 work = old_work = &req->work;
2096 io_fsync_finish(&work);
2097 if (work && work != old_work)
2098 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002099 return 0;
2100}
2101
Jens Axboe3529d8c2019-12-19 18:24:38 -07002102static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002103{
2104 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002105
2106 if (!req->file)
2107 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002108
2109 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2110 return -EINVAL;
2111 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2112 return -EINVAL;
2113
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002114 req->sync.off = READ_ONCE(sqe->off);
2115 req->sync.len = READ_ONCE(sqe->len);
2116 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002117 return 0;
2118}
2119
2120static void io_sync_file_range_finish(struct io_wq_work **workptr)
2121{
2122 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2123 struct io_kiocb *nxt = NULL;
2124 int ret;
2125
2126 if (io_req_cancelled(req))
2127 return;
2128
Jens Axboe9adbd452019-12-20 08:45:55 -07002129 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002130 req->sync.flags);
2131 if (ret < 0)
2132 req_set_fail_links(req);
2133 io_cqring_add_event(req, ret);
2134 io_put_req_find_next(req, &nxt);
2135 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002136 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002137}
2138
Jens Axboefc4df992019-12-10 14:38:45 -07002139static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002140 bool force_nonblock)
2141{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002142 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002143
2144 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002145 if (force_nonblock) {
2146 io_put_req(req);
2147 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002148 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002149 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002150
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002151 work = old_work = &req->work;
2152 io_sync_file_range_finish(&work);
2153 if (work && work != old_work)
2154 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002155 return 0;
2156}
2157
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002158#if defined(CONFIG_NET)
2159static void io_sendrecv_async(struct io_wq_work **workptr)
2160{
2161 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2162 struct iovec *iov = NULL;
2163
2164 if (req->io->rw.iov != req->io->rw.fast_iov)
2165 iov = req->io->msg.iov;
2166 io_wq_submit_work(workptr);
2167 kfree(iov);
2168}
2169#endif
2170
Jens Axboe3529d8c2019-12-19 18:24:38 -07002171static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002172{
Jens Axboe03b12302019-12-02 18:50:25 -07002173#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002174 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002175 struct io_async_ctx *io = req->io;
Jens Axboe03b12302019-12-02 18:50:25 -07002176
Jens Axboee47293f2019-12-20 08:58:21 -07002177 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2178 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe3529d8c2019-12-19 18:24:38 -07002179
2180 if (!io)
2181 return 0;
2182
Jens Axboed9688562019-12-09 19:35:20 -07002183 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002184 return sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002185 &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002186#else
Jens Axboee47293f2019-12-20 08:58:21 -07002187 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002188#endif
2189}
2190
Jens Axboefc4df992019-12-10 14:38:45 -07002191static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2192 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002193{
2194#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002195 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07002196 struct socket *sock;
2197 int ret;
2198
2199 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2200 return -EINVAL;
2201
2202 sock = sock_from_file(req->file, &ret);
2203 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002204 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002205 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002206 unsigned flags;
2207
Jens Axboe03b12302019-12-02 18:50:25 -07002208 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002209 kmsg = &req->io->msg;
2210 kmsg->msg.msg_name = &addr;
2211 /* if iov is set, it's allocated already */
2212 if (!kmsg->iov)
2213 kmsg->iov = kmsg->fast_iov;
2214 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002215 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07002216 struct io_sr_msg *sr = &req->sr_msg;
2217
Jens Axboe0b416c32019-12-15 10:57:46 -07002218 kmsg = &io.msg;
2219 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002220
2221 io.msg.iov = io.msg.fast_iov;
2222 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
2223 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002224 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002225 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002226 }
2227
Jens Axboee47293f2019-12-20 08:58:21 -07002228 flags = req->sr_msg.msg_flags;
2229 if (flags & MSG_DONTWAIT)
2230 req->flags |= REQ_F_NOWAIT;
2231 else if (force_nonblock)
2232 flags |= MSG_DONTWAIT;
2233
Jens Axboe0b416c32019-12-15 10:57:46 -07002234 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002235 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002236 if (req->io)
2237 return -EAGAIN;
2238 if (io_alloc_async_ctx(req))
2239 return -ENOMEM;
2240 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2241 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002242 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002243 }
2244 if (ret == -ERESTARTSYS)
2245 ret = -EINTR;
2246 }
2247
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002248 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002249 kfree(kmsg->iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002250 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002251 if (ret < 0)
2252 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07002253 io_put_req_find_next(req, nxt);
2254 return 0;
2255#else
2256 return -EOPNOTSUPP;
2257#endif
2258}
2259
Jens Axboe3529d8c2019-12-19 18:24:38 -07002260static int io_recvmsg_prep(struct io_kiocb *req,
2261 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07002262{
2263#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002264 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002265 struct io_async_ctx *io = req->io;
Jens Axboe06b76d42019-12-19 14:44:26 -07002266
Jens Axboe3529d8c2019-12-19 18:24:38 -07002267 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2268 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
2269
2270 if (!io)
Jens Axboe06b76d42019-12-19 14:44:26 -07002271 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07002272
Jens Axboed9688562019-12-09 19:35:20 -07002273 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002274 return recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002275 &io->msg.uaddr, &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002276#else
Jens Axboee47293f2019-12-20 08:58:21 -07002277 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002278#endif
2279}
2280
Jens Axboefc4df992019-12-10 14:38:45 -07002281static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2282 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002283{
2284#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002285 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002286 struct socket *sock;
2287 int ret;
2288
2289 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2290 return -EINVAL;
2291
2292 sock = sock_from_file(req->file, &ret);
2293 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002294 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002295 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002296 unsigned flags;
2297
Jens Axboe03b12302019-12-02 18:50:25 -07002298 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002299 kmsg = &req->io->msg;
2300 kmsg->msg.msg_name = &addr;
2301 /* if iov is set, it's allocated already */
2302 if (!kmsg->iov)
2303 kmsg->iov = kmsg->fast_iov;
2304 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002305 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07002306 struct io_sr_msg *sr = &req->sr_msg;
2307
Jens Axboe0b416c32019-12-15 10:57:46 -07002308 kmsg = &io.msg;
2309 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002310
2311 io.msg.iov = io.msg.fast_iov;
2312 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
2313 sr->msg_flags, &io.msg.uaddr,
2314 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002315 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002316 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002317 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06002318
Jens Axboee47293f2019-12-20 08:58:21 -07002319 flags = req->sr_msg.msg_flags;
2320 if (flags & MSG_DONTWAIT)
2321 req->flags |= REQ_F_NOWAIT;
2322 else if (force_nonblock)
2323 flags |= MSG_DONTWAIT;
2324
2325 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
2326 kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002327 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002328 if (req->io)
2329 return -EAGAIN;
2330 if (io_alloc_async_ctx(req))
2331 return -ENOMEM;
2332 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2333 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002334 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002335 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07002336 if (ret == -ERESTARTSYS)
2337 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002338 }
2339
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002340 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002341 kfree(kmsg->iov);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002342 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002343 if (ret < 0)
2344 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002345 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002346 return 0;
2347#else
2348 return -EOPNOTSUPP;
2349#endif
2350}
2351
Jens Axboe3529d8c2019-12-19 18:24:38 -07002352static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002353{
2354#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002355 struct io_accept *accept = &req->accept;
2356
Jens Axboe17f2fe32019-10-17 14:42:58 -06002357 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2358 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05002359 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002360 return -EINVAL;
2361
Jens Axboed55e5f52019-12-11 16:12:15 -07002362 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
2363 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002364 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002365 return 0;
2366#else
2367 return -EOPNOTSUPP;
2368#endif
2369}
Jens Axboe17f2fe32019-10-17 14:42:58 -06002370
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002371#if defined(CONFIG_NET)
2372static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2373 bool force_nonblock)
2374{
2375 struct io_accept *accept = &req->accept;
2376 unsigned file_flags;
2377 int ret;
2378
2379 file_flags = force_nonblock ? O_NONBLOCK : 0;
2380 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
2381 accept->addr_len, accept->flags);
2382 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002383 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07002384 if (ret == -ERESTARTSYS)
2385 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002386 if (ret < 0)
2387 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002388 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002389 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06002390 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002391}
2392
2393static void io_accept_finish(struct io_wq_work **workptr)
2394{
2395 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2396 struct io_kiocb *nxt = NULL;
2397
2398 if (io_req_cancelled(req))
2399 return;
2400 __io_accept(req, &nxt, false);
2401 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002402 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002403}
2404#endif
2405
2406static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2407 bool force_nonblock)
2408{
2409#if defined(CONFIG_NET)
2410 int ret;
2411
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002412 ret = __io_accept(req, nxt, force_nonblock);
2413 if (ret == -EAGAIN && force_nonblock) {
2414 req->work.func = io_accept_finish;
2415 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2416 io_put_req(req);
2417 return -EAGAIN;
2418 }
2419 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06002420#else
2421 return -EOPNOTSUPP;
2422#endif
2423}
2424
Jens Axboe3529d8c2019-12-19 18:24:38 -07002425static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07002426{
2427#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002428 struct io_connect *conn = &req->connect;
2429 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07002430
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002431 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2432 return -EINVAL;
2433 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
2434 return -EINVAL;
2435
Jens Axboe3529d8c2019-12-19 18:24:38 -07002436 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
2437 conn->addr_len = READ_ONCE(sqe->addr2);
2438
2439 if (!io)
2440 return 0;
2441
2442 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002443 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07002444#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002445 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07002446#endif
2447}
2448
Jens Axboefc4df992019-12-10 14:38:45 -07002449static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
2450 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07002451{
2452#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07002453 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002454 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002455 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07002456
Jens Axboef499a022019-12-02 16:28:46 -07002457 if (req->io) {
2458 io = req->io;
2459 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07002460 ret = move_addr_to_kernel(req->connect.addr,
2461 req->connect.addr_len,
2462 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07002463 if (ret)
2464 goto out;
2465 io = &__io;
2466 }
2467
Jens Axboe3fbb51c2019-12-20 08:51:52 -07002468 file_flags = force_nonblock ? O_NONBLOCK : 0;
2469
2470 ret = __sys_connect_file(req->file, &io->connect.address,
2471 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07002472 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002473 if (req->io)
2474 return -EAGAIN;
2475 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07002476 ret = -ENOMEM;
2477 goto out;
2478 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002479 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07002480 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07002481 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07002482 if (ret == -ERESTARTSYS)
2483 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07002484out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002485 if (ret < 0)
2486 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07002487 io_cqring_add_event(req, ret);
2488 io_put_req_find_next(req, nxt);
2489 return 0;
2490#else
2491 return -EOPNOTSUPP;
2492#endif
2493}
2494
Jens Axboe221c5eb2019-01-17 09:41:58 -07002495static void io_poll_remove_one(struct io_kiocb *req)
2496{
2497 struct io_poll_iocb *poll = &req->poll;
2498
2499 spin_lock(&poll->head->lock);
2500 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07002501 if (!list_empty(&poll->wait.entry)) {
2502 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07002503 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002504 }
2505 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002506 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002507}
2508
2509static void io_poll_remove_all(struct io_ring_ctx *ctx)
2510{
Jens Axboe78076bb2019-12-04 19:56:40 -07002511 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002512 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07002513 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002514
2515 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07002516 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
2517 struct hlist_head *list;
2518
2519 list = &ctx->cancel_hash[i];
2520 hlist_for_each_entry_safe(req, tmp, list, hash_node)
2521 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002522 }
2523 spin_unlock_irq(&ctx->completion_lock);
2524}
2525
Jens Axboe47f46762019-11-09 17:43:02 -07002526static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2527{
Jens Axboe78076bb2019-12-04 19:56:40 -07002528 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07002529 struct io_kiocb *req;
2530
Jens Axboe78076bb2019-12-04 19:56:40 -07002531 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
2532 hlist_for_each_entry(req, list, hash_node) {
2533 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07002534 io_poll_remove_one(req);
2535 return 0;
2536 }
Jens Axboe47f46762019-11-09 17:43:02 -07002537 }
2538
2539 return -ENOENT;
2540}
2541
Jens Axboe3529d8c2019-12-19 18:24:38 -07002542static int io_poll_remove_prep(struct io_kiocb *req,
2543 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002544{
Jens Axboe221c5eb2019-01-17 09:41:58 -07002545 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2546 return -EINVAL;
2547 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2548 sqe->poll_events)
2549 return -EINVAL;
2550
Jens Axboe0969e782019-12-17 18:40:57 -07002551 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07002552 return 0;
2553}
2554
2555/*
2556 * Find a running poll command that matches one specified in sqe->addr,
2557 * and remove it if found.
2558 */
2559static int io_poll_remove(struct io_kiocb *req)
2560{
2561 struct io_ring_ctx *ctx = req->ctx;
2562 u64 addr;
2563 int ret;
2564
Jens Axboe0969e782019-12-17 18:40:57 -07002565 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002566 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07002567 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002568 spin_unlock_irq(&ctx->completion_lock);
2569
Jens Axboe78e19bb2019-11-06 15:21:34 -07002570 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002571 if (ret < 0)
2572 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002573 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002574 return 0;
2575}
2576
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002577static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002578{
Jackie Liua197f662019-11-08 08:09:12 -07002579 struct io_ring_ctx *ctx = req->ctx;
2580
Jens Axboe8c838782019-03-12 15:48:16 -06002581 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002582 if (error)
2583 io_cqring_fill_event(req, error);
2584 else
2585 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06002586 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002587}
2588
Jens Axboe561fb042019-10-24 07:25:42 -06002589static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002590{
Jens Axboe561fb042019-10-24 07:25:42 -06002591 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002592 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2593 struct io_poll_iocb *poll = &req->poll;
2594 struct poll_table_struct pt = { ._key = poll->events };
2595 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07002596 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002597 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002598 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002599
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002600 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06002601 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002602 ret = -ECANCELED;
2603 } else if (READ_ONCE(poll->canceled)) {
2604 ret = -ECANCELED;
2605 }
Jens Axboe561fb042019-10-24 07:25:42 -06002606
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002607 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002608 mask = vfs_poll(poll->file, &pt) & poll->events;
2609
2610 /*
2611 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2612 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2613 * synchronize with them. In the cancellation case the list_del_init
2614 * itself is not actually needed, but harmless so we keep it in to
2615 * avoid further branches in the fast path.
2616 */
2617 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002618 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07002619 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002620 spin_unlock_irq(&ctx->completion_lock);
2621 return;
2622 }
Jens Axboe78076bb2019-12-04 19:56:40 -07002623 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002624 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002625 spin_unlock_irq(&ctx->completion_lock);
2626
Jens Axboe8c838782019-03-12 15:48:16 -06002627 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07002628
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002629 if (ret < 0)
2630 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002631 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07002632 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002633 io_wq_assign_next(workptr, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002634}
2635
2636static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2637 void *key)
2638{
Jens Axboee9444752019-11-26 15:02:04 -07002639 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002640 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2641 struct io_ring_ctx *ctx = req->ctx;
2642 __poll_t mask = key_to_poll(key);
Jens Axboe8c838782019-03-12 15:48:16 -06002643 unsigned long flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002644
2645 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06002646 if (mask && !(mask & poll->events))
2647 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002648
Jens Axboe392edb42019-12-09 17:52:20 -07002649 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002650
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002651 /*
2652 * Run completion inline if we can. We're using trylock here because
2653 * we are violating the completion_lock -> poll wq lock ordering.
2654 * If we have a link timeout we're going to need the completion_lock
2655 * for finalizing the request, mark us as having grabbed that already.
2656 */
Jens Axboe8c838782019-03-12 15:48:16 -06002657 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboe78076bb2019-12-04 19:56:40 -07002658 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002659 io_poll_complete(req, mask, 0);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07002660 req->flags |= REQ_F_COMP_LOCKED;
2661 io_put_req(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002662 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2663
2664 io_cqring_ev_posted(ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06002665 } else {
Jackie Liua197f662019-11-08 08:09:12 -07002666 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002667 }
2668
Jens Axboe221c5eb2019-01-17 09:41:58 -07002669 return 1;
2670}
2671
2672struct io_poll_table {
2673 struct poll_table_struct pt;
2674 struct io_kiocb *req;
2675 int error;
2676};
2677
2678static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2679 struct poll_table_struct *p)
2680{
2681 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2682
2683 if (unlikely(pt->req->poll.head)) {
2684 pt->error = -EINVAL;
2685 return;
2686 }
2687
2688 pt->error = 0;
2689 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07002690 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002691}
2692
Jens Axboeeac406c2019-11-14 12:09:58 -07002693static void io_poll_req_insert(struct io_kiocb *req)
2694{
2695 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07002696 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07002697
Jens Axboe78076bb2019-12-04 19:56:40 -07002698 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
2699 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07002700}
2701
Jens Axboe3529d8c2019-12-19 18:24:38 -07002702static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07002703{
2704 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002705 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002706
2707 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2708 return -EINVAL;
2709 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2710 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06002711 if (!poll->file)
2712 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002713
Jens Axboe221c5eb2019-01-17 09:41:58 -07002714 events = READ_ONCE(sqe->poll_events);
2715 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07002716 return 0;
2717}
2718
2719static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
2720{
2721 struct io_poll_iocb *poll = &req->poll;
2722 struct io_ring_ctx *ctx = req->ctx;
2723 struct io_poll_table ipt;
2724 bool cancel = false;
2725 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07002726
2727 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07002728 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002729
Jens Axboe221c5eb2019-01-17 09:41:58 -07002730 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06002731 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002732 poll->canceled = false;
2733
2734 ipt.pt._qproc = io_poll_queue_proc;
2735 ipt.pt._key = poll->events;
2736 ipt.req = req;
2737 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2738
2739 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07002740 INIT_LIST_HEAD(&poll->wait.entry);
2741 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
2742 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002743
Jens Axboe36703242019-07-25 10:20:18 -06002744 INIT_LIST_HEAD(&req->list);
2745
Jens Axboe221c5eb2019-01-17 09:41:58 -07002746 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002747
2748 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06002749 if (likely(poll->head)) {
2750 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07002751 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06002752 if (ipt.error)
2753 cancel = true;
2754 ipt.error = 0;
2755 mask = 0;
2756 }
2757 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07002758 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06002759 else if (cancel)
2760 WRITE_ONCE(poll->canceled, true);
2761 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07002762 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06002763 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002764 }
Jens Axboe8c838782019-03-12 15:48:16 -06002765 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06002766 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07002767 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06002768 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07002769 spin_unlock_irq(&ctx->completion_lock);
2770
Jens Axboe8c838782019-03-12 15:48:16 -06002771 if (mask) {
2772 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002773 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07002774 }
Jens Axboe8c838782019-03-12 15:48:16 -06002775 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07002776}
2777
Jens Axboe5262f562019-09-17 12:26:57 -06002778static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2779{
Jens Axboead8a48a2019-11-15 08:49:11 -07002780 struct io_timeout_data *data = container_of(timer,
2781 struct io_timeout_data, timer);
2782 struct io_kiocb *req = data->req;
2783 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06002784 unsigned long flags;
2785
Jens Axboe5262f562019-09-17 12:26:57 -06002786 atomic_inc(&ctx->cq_timeouts);
2787
2788 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08002789 /*
Jens Axboe11365042019-10-16 09:08:32 -06002790 * We could be racing with timeout deletion. If the list is empty,
2791 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08002792 */
Jens Axboe842f9612019-10-29 12:34:10 -06002793 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06002794 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06002795
Jens Axboe11365042019-10-16 09:08:32 -06002796 /*
2797 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08002798 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06002799 * pointer will be increased, otherwise other timeout reqs may
2800 * return in advance without waiting for enough wait_nr.
2801 */
2802 prev = req;
2803 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2804 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06002805 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06002806 }
Jens Axboe842f9612019-10-29 12:34:10 -06002807
Jens Axboe78e19bb2019-11-06 15:21:34 -07002808 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06002809 io_commit_cqring(ctx);
2810 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2811
2812 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002813 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06002814 io_put_req(req);
2815 return HRTIMER_NORESTART;
2816}
2817
Jens Axboe47f46762019-11-09 17:43:02 -07002818static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2819{
2820 struct io_kiocb *req;
2821 int ret = -ENOENT;
2822
2823 list_for_each_entry(req, &ctx->timeout_list, list) {
2824 if (user_data == req->user_data) {
2825 list_del_init(&req->list);
2826 ret = 0;
2827 break;
2828 }
2829 }
2830
2831 if (ret == -ENOENT)
2832 return ret;
2833
Jens Axboe2d283902019-12-04 11:08:05 -07002834 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07002835 if (ret == -1)
2836 return -EALREADY;
2837
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002838 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07002839 io_cqring_fill_event(req, -ECANCELED);
2840 io_put_req(req);
2841 return 0;
2842}
2843
Jens Axboe3529d8c2019-12-19 18:24:38 -07002844static int io_timeout_remove_prep(struct io_kiocb *req,
2845 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07002846{
Jens Axboeb29472e2019-12-17 18:50:29 -07002847 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2848 return -EINVAL;
2849 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2850 return -EINVAL;
2851
2852 req->timeout.addr = READ_ONCE(sqe->addr);
2853 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
2854 if (req->timeout.flags)
2855 return -EINVAL;
2856
Jens Axboeb29472e2019-12-17 18:50:29 -07002857 return 0;
2858}
2859
Jens Axboe11365042019-10-16 09:08:32 -06002860/*
2861 * Remove or update an existing timeout command
2862 */
Jens Axboefc4df992019-12-10 14:38:45 -07002863static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06002864{
2865 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07002866 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06002867
Jens Axboe11365042019-10-16 09:08:32 -06002868 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07002869 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06002870
Jens Axboe47f46762019-11-09 17:43:02 -07002871 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06002872 io_commit_cqring(ctx);
2873 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002874 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002875 if (ret < 0)
2876 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002877 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06002878 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06002879}
2880
Jens Axboe3529d8c2019-12-19 18:24:38 -07002881static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07002882 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06002883{
Jens Axboead8a48a2019-11-15 08:49:11 -07002884 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06002885 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06002886
Jens Axboead8a48a2019-11-15 08:49:11 -07002887 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06002888 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07002889 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06002890 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07002891 if (sqe->off && is_timeout_link)
2892 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06002893 flags = READ_ONCE(sqe->timeout_flags);
2894 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06002895 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06002896
Jens Axboe26a61672019-12-20 09:02:01 -07002897 req->timeout.count = READ_ONCE(sqe->off);
2898
Jens Axboe3529d8c2019-12-19 18:24:38 -07002899 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07002900 return -ENOMEM;
2901
2902 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07002903 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07002904 req->flags |= REQ_F_TIMEOUT;
2905
2906 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06002907 return -EFAULT;
2908
Jens Axboe11365042019-10-16 09:08:32 -06002909 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07002910 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06002911 else
Jens Axboead8a48a2019-11-15 08:49:11 -07002912 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06002913
Jens Axboead8a48a2019-11-15 08:49:11 -07002914 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
2915 return 0;
2916}
2917
Jens Axboefc4df992019-12-10 14:38:45 -07002918static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07002919{
2920 unsigned count;
2921 struct io_ring_ctx *ctx = req->ctx;
2922 struct io_timeout_data *data;
2923 struct list_head *entry;
2924 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07002925
Jens Axboe2d283902019-12-04 11:08:05 -07002926 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002927
Jens Axboe5262f562019-09-17 12:26:57 -06002928 /*
2929 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07002930 * timeout event to be satisfied. If it isn't set, then this is
2931 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06002932 */
Jens Axboe26a61672019-12-20 09:02:01 -07002933 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002934 if (!count) {
2935 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2936 spin_lock_irq(&ctx->completion_lock);
2937 entry = ctx->timeout_list.prev;
2938 goto add;
2939 }
Jens Axboe5262f562019-09-17 12:26:57 -06002940
2941 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07002942 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06002943
2944 /*
2945 * Insertion sort, ensuring the first entry in the list is always
2946 * the one we need first.
2947 */
Jens Axboe5262f562019-09-17 12:26:57 -06002948 spin_lock_irq(&ctx->completion_lock);
2949 list_for_each_prev(entry, &ctx->timeout_list) {
2950 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08002951 unsigned nxt_sq_head;
2952 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07002953 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06002954
Jens Axboe93bd25b2019-11-11 23:34:31 -07002955 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2956 continue;
2957
yangerkun5da0fb12019-10-15 21:59:29 +08002958 /*
2959 * Since cached_sq_head + count - 1 can overflow, use type long
2960 * long to store it.
2961 */
2962 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03002963 nxt_sq_head = nxt->sequence - nxt_offset + 1;
2964 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08002965
2966 /*
2967 * cached_sq_head may overflow, and it will never overflow twice
2968 * once there is some timeout req still be valid.
2969 */
2970 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08002971 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08002972
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002973 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06002974 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002975
2976 /*
2977 * Sequence of reqs after the insert one and itself should
2978 * be adjusted because each timeout req consumes a slot.
2979 */
2980 span++;
2981 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06002982 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08002983 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07002984add:
Jens Axboe5262f562019-09-17 12:26:57 -06002985 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07002986 data->timer.function = io_timeout_fn;
2987 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06002988 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06002989 return 0;
2990}
2991
Jens Axboe62755e32019-10-28 21:49:21 -06002992static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06002993{
Jens Axboe62755e32019-10-28 21:49:21 -06002994 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06002995
Jens Axboe62755e32019-10-28 21:49:21 -06002996 return req->user_data == (unsigned long) data;
2997}
2998
Jens Axboee977d6d2019-11-05 12:39:45 -07002999static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003000{
Jens Axboe62755e32019-10-28 21:49:21 -06003001 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003002 int ret = 0;
3003
Jens Axboe62755e32019-10-28 21:49:21 -06003004 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3005 switch (cancel_ret) {
3006 case IO_WQ_CANCEL_OK:
3007 ret = 0;
3008 break;
3009 case IO_WQ_CANCEL_RUNNING:
3010 ret = -EALREADY;
3011 break;
3012 case IO_WQ_CANCEL_NOTFOUND:
3013 ret = -ENOENT;
3014 break;
3015 }
3016
Jens Axboee977d6d2019-11-05 12:39:45 -07003017 return ret;
3018}
3019
Jens Axboe47f46762019-11-09 17:43:02 -07003020static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3021 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003022 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07003023{
3024 unsigned long flags;
3025 int ret;
3026
3027 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3028 if (ret != -ENOENT) {
3029 spin_lock_irqsave(&ctx->completion_lock, flags);
3030 goto done;
3031 }
3032
3033 spin_lock_irqsave(&ctx->completion_lock, flags);
3034 ret = io_timeout_cancel(ctx, sqe_addr);
3035 if (ret != -ENOENT)
3036 goto done;
3037 ret = io_poll_cancel(ctx, sqe_addr);
3038done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003039 if (!ret)
3040 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07003041 io_cqring_fill_event(req, ret);
3042 io_commit_cqring(ctx);
3043 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3044 io_cqring_ev_posted(ctx);
3045
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003046 if (ret < 0)
3047 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003048 io_put_req_find_next(req, nxt);
3049}
3050
Jens Axboe3529d8c2019-12-19 18:24:38 -07003051static int io_async_cancel_prep(struct io_kiocb *req,
3052 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07003053{
Jens Axboefbf23842019-12-17 18:45:56 -07003054 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07003055 return -EINVAL;
3056 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3057 sqe->cancel_flags)
3058 return -EINVAL;
3059
Jens Axboefbf23842019-12-17 18:45:56 -07003060 req->cancel.addr = READ_ONCE(sqe->addr);
3061 return 0;
3062}
3063
3064static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
3065{
3066 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07003067
3068 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06003069 return 0;
3070}
3071
Jens Axboe3529d8c2019-12-19 18:24:38 -07003072static int io_req_defer_prep(struct io_kiocb *req,
3073 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003074{
Jens Axboee7815732019-12-17 19:45:06 -07003075 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003076
Jens Axboed625c6e2019-12-17 19:53:05 -07003077 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07003078 case IORING_OP_NOP:
3079 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003080 case IORING_OP_READV:
3081 case IORING_OP_READ_FIXED:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003082 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07003083 break;
3084 case IORING_OP_WRITEV:
3085 case IORING_OP_WRITE_FIXED:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003086 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07003087 break;
Jens Axboe0969e782019-12-17 18:40:57 -07003088 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003089 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07003090 break;
3091 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003092 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07003093 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003094 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003095 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003096 break;
3097 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003098 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003099 break;
Jens Axboe03b12302019-12-02 18:50:25 -07003100 case IORING_OP_SENDMSG:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003101 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07003102 break;
3103 case IORING_OP_RECVMSG:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003104 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07003105 break;
Jens Axboef499a022019-12-02 16:28:46 -07003106 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003107 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07003108 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003109 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003110 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003111 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07003112 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003113 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07003114 break;
Jens Axboefbf23842019-12-17 18:45:56 -07003115 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003116 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07003117 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003118 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003119 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003120 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003121 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003122 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003123 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003124 default:
Jens Axboee7815732019-12-17 19:45:06 -07003125 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
3126 req->opcode);
3127 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003128 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003129 }
3130
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003131 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003132}
3133
Jens Axboe3529d8c2019-12-19 18:24:38 -07003134static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06003135{
Jackie Liua197f662019-11-08 08:09:12 -07003136 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07003137 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06003138
Bob Liu9d858b22019-11-13 18:06:25 +08003139 /* Still need defer if there is pending req in defer list. */
3140 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06003141 return 0;
3142
Jens Axboe3529d8c2019-12-19 18:24:38 -07003143 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06003144 return -EAGAIN;
3145
Jens Axboe3529d8c2019-12-19 18:24:38 -07003146 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003147 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07003148 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07003149
Jens Axboede0617e2019-04-06 21:51:27 -06003150 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08003151 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06003152 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06003153 return 0;
3154 }
3155
Jens Axboe915967f2019-11-21 09:01:20 -07003156 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06003157 list_add_tail(&req->list, &ctx->defer_list);
3158 spin_unlock_irq(&ctx->completion_lock);
3159 return -EIOCBQUEUED;
3160}
3161
Jens Axboe3529d8c2019-12-19 18:24:38 -07003162static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3163 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003164{
Jackie Liua197f662019-11-08 08:09:12 -07003165 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07003166 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003167
Jens Axboed625c6e2019-12-17 19:53:05 -07003168 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003169 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003170 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003171 break;
3172 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003173 case IORING_OP_READ_FIXED:
3174 if (sqe) {
3175 ret = io_read_prep(req, sqe, force_nonblock);
3176 if (ret < 0)
3177 break;
3178 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03003179 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003180 break;
3181 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07003182 case IORING_OP_WRITE_FIXED:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003183 if (sqe) {
3184 ret = io_write_prep(req, sqe, force_nonblock);
3185 if (ret < 0)
3186 break;
3187 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03003188 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003189 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003190 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003191 if (sqe) {
3192 ret = io_prep_fsync(req, sqe);
3193 if (ret < 0)
3194 break;
3195 }
Jens Axboefc4df992019-12-10 14:38:45 -07003196 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003197 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003198 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003199 if (sqe) {
3200 ret = io_poll_add_prep(req, sqe);
3201 if (ret)
3202 break;
3203 }
Jens Axboefc4df992019-12-10 14:38:45 -07003204 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003205 break;
3206 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003207 if (sqe) {
3208 ret = io_poll_remove_prep(req, sqe);
3209 if (ret < 0)
3210 break;
3211 }
Jens Axboefc4df992019-12-10 14:38:45 -07003212 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003213 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003214 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003215 if (sqe) {
3216 ret = io_prep_sfr(req, sqe);
3217 if (ret < 0)
3218 break;
3219 }
Jens Axboefc4df992019-12-10 14:38:45 -07003220 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003221 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003222 case IORING_OP_SENDMSG:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003223 if (sqe) {
3224 ret = io_sendmsg_prep(req, sqe);
3225 if (ret < 0)
3226 break;
3227 }
Jens Axboefc4df992019-12-10 14:38:45 -07003228 ret = io_sendmsg(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003229 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06003230 case IORING_OP_RECVMSG:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003231 if (sqe) {
3232 ret = io_recvmsg_prep(req, sqe);
3233 if (ret)
3234 break;
3235 }
Jens Axboefc4df992019-12-10 14:38:45 -07003236 ret = io_recvmsg(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06003237 break;
Jens Axboe5262f562019-09-17 12:26:57 -06003238 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003239 if (sqe) {
3240 ret = io_timeout_prep(req, sqe, false);
3241 if (ret)
3242 break;
3243 }
Jens Axboefc4df992019-12-10 14:38:45 -07003244 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003245 break;
Jens Axboe11365042019-10-16 09:08:32 -06003246 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003247 if (sqe) {
3248 ret = io_timeout_remove_prep(req, sqe);
3249 if (ret)
3250 break;
3251 }
Jens Axboefc4df992019-12-10 14:38:45 -07003252 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06003253 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003254 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003255 if (sqe) {
3256 ret = io_accept_prep(req, sqe);
3257 if (ret)
3258 break;
3259 }
Jens Axboefc4df992019-12-10 14:38:45 -07003260 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003261 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003262 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003263 if (sqe) {
3264 ret = io_connect_prep(req, sqe);
3265 if (ret)
3266 break;
3267 }
Jens Axboefc4df992019-12-10 14:38:45 -07003268 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003269 break;
Jens Axboe62755e32019-10-28 21:49:21 -06003270 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003271 if (sqe) {
3272 ret = io_async_cancel_prep(req, sqe);
3273 if (ret)
3274 break;
3275 }
Jens Axboefc4df992019-12-10 14:38:45 -07003276 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06003277 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003278 default:
3279 ret = -EINVAL;
3280 break;
3281 }
3282
Jens Axboedef596e2019-01-09 08:59:42 -07003283 if (ret)
3284 return ret;
3285
3286 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003287 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07003288 return -EAGAIN;
3289
Jens Axboedef596e2019-01-09 08:59:42 -07003290 io_iopoll_req_issued(req);
Jens Axboedef596e2019-01-09 08:59:42 -07003291 }
3292
3293 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003294}
3295
Jens Axboe561fb042019-10-24 07:25:42 -06003296static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07003297{
Jens Axboe561fb042019-10-24 07:25:42 -06003298 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003299 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06003300 struct io_kiocb *nxt = NULL;
3301 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003302
Jens Axboe561fb042019-10-24 07:25:42 -06003303 if (work->flags & IO_WQ_WORK_CANCEL)
3304 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07003305
Jens Axboe561fb042019-10-24 07:25:42 -06003306 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003307 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
3308 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06003309 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003310 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06003311 /*
3312 * We can get EAGAIN for polled IO even though we're
3313 * forcing a sync submission from here, since we can't
3314 * wait for request slots on the block side.
3315 */
3316 if (ret != -EAGAIN)
3317 break;
3318 cond_resched();
3319 } while (1);
3320 }
Jens Axboe31b51512019-01-18 22:56:34 -07003321
Jens Axboe561fb042019-10-24 07:25:42 -06003322 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08003323 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06003324
Jens Axboe561fb042019-10-24 07:25:42 -06003325 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003326 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003327 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06003328 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07003329 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003330
Jens Axboe561fb042019-10-24 07:25:42 -06003331 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07003332 if (!ret && nxt)
3333 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07003334}
Jens Axboe2b188cc2019-01-07 10:46:33 -07003335
Jens Axboe9e3aa612019-12-11 15:55:43 -07003336static bool io_req_op_valid(int op)
3337{
3338 return op >= IORING_OP_NOP && op < IORING_OP_LAST;
3339}
3340
Jens Axboed625c6e2019-12-17 19:53:05 -07003341static int io_req_needs_file(struct io_kiocb *req)
Jens Axboe09bb8392019-03-13 12:39:28 -06003342{
Jens Axboed625c6e2019-12-17 19:53:05 -07003343 switch (req->opcode) {
Jens Axboe09bb8392019-03-13 12:39:28 -06003344 case IORING_OP_NOP:
3345 case IORING_OP_POLL_REMOVE:
Pavel Begunkov5683e542019-11-14 00:59:19 +03003346 case IORING_OP_TIMEOUT:
Pavel Begunkova320e9f2019-11-14 00:11:01 +03003347 case IORING_OP_TIMEOUT_REMOVE:
3348 case IORING_OP_ASYNC_CANCEL:
3349 case IORING_OP_LINK_TIMEOUT:
Jens Axboe9e3aa612019-12-11 15:55:43 -07003350 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06003351 default:
Jens Axboed625c6e2019-12-17 19:53:05 -07003352 if (io_req_op_valid(req->opcode))
Jens Axboe9e3aa612019-12-11 15:55:43 -07003353 return 1;
3354 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003355 }
3356}
3357
Jens Axboe65e19f52019-10-26 07:20:21 -06003358static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
3359 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06003360{
Jens Axboe65e19f52019-10-26 07:20:21 -06003361 struct fixed_file_table *table;
3362
3363 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
3364 return table->files[index & IORING_FILE_TABLE_MASK];
3365}
3366
Jens Axboe3529d8c2019-12-19 18:24:38 -07003367static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
3368 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06003369{
Jackie Liua197f662019-11-08 08:09:12 -07003370 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06003371 unsigned flags;
Jens Axboe9e3aa612019-12-11 15:55:43 -07003372 int fd, ret;
Jens Axboe09bb8392019-03-13 12:39:28 -06003373
Jens Axboe3529d8c2019-12-19 18:24:38 -07003374 flags = READ_ONCE(sqe->flags);
3375 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003376
Jackie Liu4fe2c962019-09-09 20:50:40 +08003377 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06003378 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06003379
Jens Axboed625c6e2019-12-17 19:53:05 -07003380 ret = io_req_needs_file(req);
Jens Axboe9e3aa612019-12-11 15:55:43 -07003381 if (ret <= 0)
3382 return ret;
Jens Axboe09bb8392019-03-13 12:39:28 -06003383
3384 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe65e19f52019-10-26 07:20:21 -06003385 if (unlikely(!ctx->file_table ||
Jens Axboe09bb8392019-03-13 12:39:28 -06003386 (unsigned) fd >= ctx->nr_user_files))
3387 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06003388 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06003389 req->file = io_file_from_index(ctx, fd);
3390 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06003391 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06003392 req->flags |= REQ_F_FIXED_FILE;
3393 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003394 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06003395 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003396 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06003397 req->file = io_file_get(state, fd);
3398 if (unlikely(!req->file))
3399 return -EBADF;
3400 }
3401
3402 return 0;
3403}
3404
Jackie Liua197f662019-11-08 08:09:12 -07003405static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003406{
Jens Axboefcb323c2019-10-24 12:39:47 -06003407 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07003408 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06003409
3410 rcu_read_lock();
3411 spin_lock_irq(&ctx->inflight_lock);
3412 /*
3413 * We use the f_ops->flush() handler to ensure that we can flush
3414 * out work accessing these files if the fd is closed. Check if
3415 * the fd has changed since we started down this path, and disallow
3416 * this operation if it has.
3417 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003418 if (fcheck(req->ring_fd) == req->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06003419 list_add(&req->inflight_entry, &ctx->inflight_list);
3420 req->flags |= REQ_F_INFLIGHT;
3421 req->work.files = current->files;
3422 ret = 0;
3423 }
3424 spin_unlock_irq(&ctx->inflight_lock);
3425 rcu_read_unlock();
3426
3427 return ret;
3428}
3429
Jens Axboe2665abf2019-11-05 12:40:47 -07003430static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
3431{
Jens Axboead8a48a2019-11-15 08:49:11 -07003432 struct io_timeout_data *data = container_of(timer,
3433 struct io_timeout_data, timer);
3434 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07003435 struct io_ring_ctx *ctx = req->ctx;
3436 struct io_kiocb *prev = NULL;
3437 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07003438
3439 spin_lock_irqsave(&ctx->completion_lock, flags);
3440
3441 /*
3442 * We don't expect the list to be empty, that will only happen if we
3443 * race with the completion of the linked work.
3444 */
Pavel Begunkov44932332019-12-05 16:16:35 +03003445 if (!list_empty(&req->link_list)) {
3446 prev = list_entry(req->link_list.prev, struct io_kiocb,
3447 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003448 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03003449 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07003450 prev->flags &= ~REQ_F_LINK_TIMEOUT;
3451 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07003452 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003453 }
3454
3455 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3456
3457 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003458 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003459 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
3460 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07003461 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07003462 } else {
3463 io_cqring_add_event(req, -ETIME);
3464 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003465 }
Jens Axboe2665abf2019-11-05 12:40:47 -07003466 return HRTIMER_NORESTART;
3467}
3468
Jens Axboead8a48a2019-11-15 08:49:11 -07003469static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003470{
Jens Axboe76a46e02019-11-10 23:34:16 -07003471 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07003472
Jens Axboe76a46e02019-11-10 23:34:16 -07003473 /*
3474 * If the list is now empty, then our linked request finished before
3475 * we got a chance to setup the timer
3476 */
3477 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03003478 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07003479 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07003480
Jens Axboead8a48a2019-11-15 08:49:11 -07003481 data->timer.function = io_link_timeout_fn;
3482 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
3483 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07003484 }
Jens Axboe76a46e02019-11-10 23:34:16 -07003485 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07003486
Jens Axboe2665abf2019-11-05 12:40:47 -07003487 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07003488 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07003489}
3490
Jens Axboead8a48a2019-11-15 08:49:11 -07003491static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07003492{
3493 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003494
Jens Axboe2665abf2019-11-05 12:40:47 -07003495 if (!(req->flags & REQ_F_LINK))
3496 return NULL;
3497
Pavel Begunkov44932332019-12-05 16:16:35 +03003498 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
3499 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07003500 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07003501 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07003502
Jens Axboe76a46e02019-11-10 23:34:16 -07003503 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07003504 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07003505}
3506
Jens Axboe3529d8c2019-12-19 18:24:38 -07003507static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003508{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003509 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003510 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003511 int ret;
3512
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003513again:
3514 linked_timeout = io_prep_linked_timeout(req);
3515
Jens Axboe3529d8c2019-12-19 18:24:38 -07003516 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06003517
3518 /*
3519 * We async punt it if the file wasn't marked NOWAIT, or if the file
3520 * doesn't support non-blocking read/write attempts
3521 */
3522 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
3523 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003524 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
3525 ret = io_grab_files(req);
3526 if (ret)
3527 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003528 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03003529
3530 /*
3531 * Queued up for async execution, worker will release
3532 * submit reference when the iocb is actually submitted.
3533 */
3534 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003535 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003536 }
Jens Axboee65ef562019-03-12 10:16:44 -06003537
Jens Axboefcb323c2019-10-24 12:39:47 -06003538err:
Jens Axboee65ef562019-03-12 10:16:44 -06003539 /* drop submission reference */
3540 io_put_req(req);
3541
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003542 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07003543 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003544 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003545 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03003546 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07003547 }
3548
Jens Axboee65ef562019-03-12 10:16:44 -06003549 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06003550 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003551 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003552 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003553 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06003554 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07003555done_req:
3556 if (nxt) {
3557 req = nxt;
3558 nxt = NULL;
3559 goto again;
3560 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003561}
3562
Jens Axboe3529d8c2019-12-19 18:24:38 -07003563static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003564{
3565 int ret;
3566
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003567 if (unlikely(req->ctx->drain_next)) {
3568 req->flags |= REQ_F_IO_DRAIN;
3569 req->ctx->drain_next = false;
3570 }
3571 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
3572
Jens Axboe3529d8c2019-12-19 18:24:38 -07003573 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003574 if (ret) {
3575 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07003576 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003577 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003578 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003579 }
Jens Axboe0e0702d2019-11-14 21:42:10 -07003580 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07003581 __io_queue_sqe(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003582}
3583
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003584static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08003585{
Jens Axboe94ae5e72019-11-14 19:39:52 -07003586 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003587 io_cqring_add_event(req, -ECANCELED);
3588 io_double_put_req(req);
3589 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07003590 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08003591}
3592
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003593#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
3594 IOSQE_IO_HARDLINK)
Jens Axboe9e645e112019-05-10 16:07:28 -06003595
Jens Axboe3529d8c2019-12-19 18:24:38 -07003596static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3597 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06003598{
Jackie Liua197f662019-11-08 08:09:12 -07003599 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06003600 int ret;
3601
3602 /* enforce forwards compatibility on users */
Jens Axboe3529d8c2019-12-19 18:24:38 -07003603 if (unlikely(sqe->flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003604 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03003605 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06003606 }
3607
Jens Axboe3529d8c2019-12-19 18:24:38 -07003608 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06003609 if (unlikely(ret)) {
3610err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003611 io_cqring_add_event(req, ret);
3612 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003613 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06003614 }
3615
Jens Axboe9e645e112019-05-10 16:07:28 -06003616 /*
3617 * If we already have a head request, queue this one for async
3618 * submittal once the head completes. If we don't have a head but
3619 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3620 * submitted sync once the chain is complete. If none of those
3621 * conditions are true (normal request), then just queue it.
3622 */
3623 if (*link) {
3624 struct io_kiocb *prev = *link;
3625
Jens Axboe3529d8c2019-12-19 18:24:38 -07003626 if (sqe->flags & IOSQE_IO_DRAIN)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003627 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3628
Jens Axboe3529d8c2019-12-19 18:24:38 -07003629 if (sqe->flags & IOSQE_IO_HARDLINK)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003630 req->flags |= REQ_F_HARDLINK;
3631
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003632 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003633 ret = -EAGAIN;
3634 goto err_req;
3635 }
3636
Jens Axboe3529d8c2019-12-19 18:24:38 -07003637 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07003638 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003639 /* fail even hard links since we don't submit */
Jens Axboe2d283902019-12-04 11:08:05 -07003640 prev->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07003641 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07003642 }
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02003643 trace_io_uring_link(ctx, req, prev);
Pavel Begunkov44932332019-12-05 16:16:35 +03003644 list_add_tail(&req->link_list, &prev->link_list);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003645 } else if (sqe->flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06003646 req->flags |= REQ_F_LINK;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003647 if (sqe->flags & IOSQE_IO_HARDLINK)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003648 req->flags |= REQ_F_HARDLINK;
Jens Axboe9e645e112019-05-10 16:07:28 -06003649
Jens Axboe9e645e112019-05-10 16:07:28 -06003650 INIT_LIST_HEAD(&req->link_list);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003651 ret = io_req_defer_prep(req, sqe);
3652 if (ret)
3653 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe9e645e112019-05-10 16:07:28 -06003654 *link = req;
3655 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003656 io_queue_sqe(req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06003657 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003658
3659 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06003660}
3661
Jens Axboe9a56a232019-01-09 09:06:50 -07003662/*
3663 * Batched submission is done, ensure local IO is flushed out.
3664 */
3665static void io_submit_state_end(struct io_submit_state *state)
3666{
3667 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06003668 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07003669 if (state->free_reqs)
3670 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3671 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07003672}
3673
3674/*
3675 * Start submission side cache.
3676 */
3677static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08003678 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07003679{
3680 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07003681 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07003682 state->file = NULL;
3683 state->ios_left = max_ios;
3684}
3685
Jens Axboe2b188cc2019-01-07 10:46:33 -07003686static void io_commit_sqring(struct io_ring_ctx *ctx)
3687{
Hristo Venev75b28af2019-08-26 17:23:46 +00003688 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003689
Hristo Venev75b28af2019-08-26 17:23:46 +00003690 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003691 /*
3692 * Ensure any loads from the SQEs are done at this point,
3693 * since once we write the new head, the application could
3694 * write new data to them.
3695 */
Hristo Venev75b28af2019-08-26 17:23:46 +00003696 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003697 }
3698}
3699
3700/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07003701 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07003702 * that is mapped by userspace. This means that care needs to be taken to
3703 * ensure that reads are stable, as we cannot rely on userspace always
3704 * being a good citizen. If members of the sqe are validated and then later
3705 * used, it's important that those reads are done through READ_ONCE() to
3706 * prevent a re-load down the line.
3707 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07003708static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
3709 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003710{
Hristo Venev75b28af2019-08-26 17:23:46 +00003711 struct io_rings *rings = ctx->rings;
3712 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003713 unsigned head;
3714
3715 /*
3716 * The cached sq head (or cq tail) serves two purposes:
3717 *
3718 * 1) allows us to batch the cost of updating the user visible
3719 * head updates.
3720 * 2) allows the kernel side to track the head on its own, even
3721 * though the application is the one updating it.
3722 */
3723 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02003724 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003725 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07003726 return false;
3727
Hristo Venev75b28af2019-08-26 17:23:46 +00003728 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03003729 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003730 /*
3731 * All io need record the previous position, if LINK vs DARIN,
3732 * it can be used to mark the position of the first IO in the
3733 * link list.
3734 */
3735 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003736 *sqe_ptr = &ctx->sq_sqes[head];
3737 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
3738 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003739 ctx->cached_sq_head++;
3740 return true;
3741 }
3742
3743 /* drop invalid entries */
3744 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06003745 ctx->cached_sq_dropped++;
3746 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003747 return false;
3748}
3749
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003750static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003751 struct file *ring_file, int ring_fd,
3752 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07003753{
3754 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003755 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06003756 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003757 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003758
Jens Axboec4a2ed72019-11-21 21:01:26 -07003759 /* if we have a backlog and couldn't flush it all, return BUSY */
3760 if (!list_empty(&ctx->cq_overflow_list) &&
3761 !io_cqring_overflow_flush(ctx, false))
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003762 return -EBUSY;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003763
3764 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08003765 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003766 statep = &state;
3767 }
3768
3769 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003770 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03003771 struct io_kiocb *req;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003772 unsigned int sqe_flags;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003773
Pavel Begunkov196be952019-11-07 01:41:06 +03003774 req = io_get_req(ctx, statep);
3775 if (unlikely(!req)) {
3776 if (!submitted)
3777 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003778 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06003779 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07003780 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov196be952019-11-07 01:41:06 +03003781 __io_free_req(req);
3782 break;
3783 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003784
Jens Axboed625c6e2019-12-17 19:53:05 -07003785 if (io_req_needs_user(req) && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03003786 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3787 if (!mm_fault) {
3788 use_mm(ctx->sqo_mm);
3789 *mm = ctx->sqo_mm;
3790 }
3791 }
3792
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003793 submitted++;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003794 sqe_flags = sqe->flags;
Pavel Begunkov50585b92019-11-07 01:41:07 +03003795
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03003796 req->ring_file = ring_file;
3797 req->ring_fd = ring_fd;
3798 req->has_user = *mm != NULL;
3799 req->in_async = async;
3800 req->needs_fixed_file = async;
Jens Axboed625c6e2019-12-17 19:53:05 -07003801 trace_io_uring_submit_sqe(ctx, req->user_data, true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003802 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03003803 break;
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003804 /*
3805 * If previous wasn't linked and we have a linked command,
3806 * that's the end of the chain. Submit the previous link.
3807 */
Pavel Begunkovffbb8d62019-12-17 20:57:05 +03003808 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) && link) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003809 io_queue_link_head(link);
Pavel Begunkove5eb6362019-11-06 00:22:15 +03003810 link = NULL;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003811 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07003812 }
3813
Jens Axboe9e645e112019-05-10 16:07:28 -06003814 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03003815 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003816 if (statep)
3817 io_submit_state_end(&state);
3818
Pavel Begunkovae9428c2019-11-06 00:22:14 +03003819 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3820 io_commit_sqring(ctx);
3821
Jens Axboe6c271ce2019-01-10 11:22:30 -07003822 return submitted;
3823}
3824
3825static int io_sq_thread(void *data)
3826{
Jens Axboe6c271ce2019-01-10 11:22:30 -07003827 struct io_ring_ctx *ctx = data;
3828 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07003829 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003830 mm_segment_t old_fs;
3831 DEFINE_WAIT(wait);
3832 unsigned inflight;
3833 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07003834 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003835
Jens Axboe206aefd2019-11-07 18:27:42 -07003836 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08003837
Jens Axboe6c271ce2019-01-10 11:22:30 -07003838 old_fs = get_fs();
3839 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07003840 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003841
Jens Axboec1edbf52019-11-10 16:56:04 -07003842 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003843 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003844 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003845
3846 if (inflight) {
3847 unsigned nr_events = 0;
3848
3849 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06003850 /*
3851 * inflight is the count of the maximum possible
3852 * entries we submitted, but it can be smaller
3853 * if we dropped some of them. If we don't have
3854 * poll entries available, then we know that we
3855 * have nothing left to poll for. Reset the
3856 * inflight count to zero in that case.
3857 */
3858 mutex_lock(&ctx->uring_lock);
3859 if (!list_empty(&ctx->poll_list))
3860 __io_iopoll_check(ctx, &nr_events, 0);
3861 else
3862 inflight = 0;
3863 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07003864 } else {
3865 /*
3866 * Normal IO, just pretend everything completed.
3867 * We don't have to poll completions for that.
3868 */
3869 nr_events = inflight;
3870 }
3871
3872 inflight -= nr_events;
3873 if (!inflight)
3874 timeout = jiffies + ctx->sq_thread_idle;
3875 }
3876
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003877 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003878
3879 /*
3880 * If submit got -EBUSY, flag us as needing the application
3881 * to enter the kernel to reap and flush events.
3882 */
3883 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003884 /*
3885 * We're polling. If we're within the defined idle
3886 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07003887 * to sleep. The exception is if we got EBUSY doing
3888 * more IO, we should wait for the application to
3889 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07003890 */
Jens Axboec1edbf52019-11-10 16:56:04 -07003891 if (inflight ||
3892 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06003893 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003894 continue;
3895 }
3896
3897 /*
3898 * Drop cur_mm before scheduling, we can't hold it for
3899 * long periods (or over schedule()). Do this before
3900 * adding ourselves to the waitqueue, as the unuse/drop
3901 * may sleep.
3902 */
3903 if (cur_mm) {
3904 unuse_mm(cur_mm);
3905 mmput(cur_mm);
3906 cur_mm = NULL;
3907 }
3908
3909 prepare_to_wait(&ctx->sqo_wait, &wait,
3910 TASK_INTERRUPTIBLE);
3911
3912 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00003913 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02003914 /* make sure to read SQ tail after writing flags */
3915 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07003916
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003917 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07003918 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003919 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07003920 finish_wait(&ctx->sqo_wait, &wait);
3921 break;
3922 }
3923 if (signal_pending(current))
3924 flush_signals(current);
3925 schedule();
3926 finish_wait(&ctx->sqo_wait, &wait);
3927
Hristo Venev75b28af2019-08-26 17:23:46 +00003928 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003929 continue;
3930 }
3931 finish_wait(&ctx->sqo_wait, &wait);
3932
Hristo Venev75b28af2019-08-26 17:23:46 +00003933 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003934 }
3935
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03003936 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe8a4955f2019-12-09 14:52:35 -07003937 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003938 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07003939 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003940 if (ret > 0)
3941 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07003942 }
3943
3944 set_fs(old_fs);
3945 if (cur_mm) {
3946 unuse_mm(cur_mm);
3947 mmput(cur_mm);
3948 }
Jens Axboe181e4482019-11-25 08:52:30 -07003949 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06003950
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02003951 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06003952
Jens Axboe6c271ce2019-01-10 11:22:30 -07003953 return 0;
3954}
3955
Jens Axboebda52162019-09-24 13:47:15 -06003956struct io_wait_queue {
3957 struct wait_queue_entry wq;
3958 struct io_ring_ctx *ctx;
3959 unsigned to_wait;
3960 unsigned nr_timeouts;
3961};
3962
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003963static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06003964{
3965 struct io_ring_ctx *ctx = iowq->ctx;
3966
3967 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08003968 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06003969 * started waiting. For timeouts, we always want to return to userspace,
3970 * regardless of event count.
3971 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003972 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06003973 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3974}
3975
3976static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3977 int wake_flags, void *key)
3978{
3979 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3980 wq);
3981
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07003982 /* use noflush == true, as we can't safely rely on locking context */
3983 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06003984 return -1;
3985
3986 return autoremove_wake_function(curr, mode, wake_flags, key);
3987}
3988
Jens Axboe2b188cc2019-01-07 10:46:33 -07003989/*
3990 * Wait until events become available, if we don't already have some. The
3991 * application must reap them itself, as they reside on the shared cq ring.
3992 */
3993static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3994 const sigset_t __user *sig, size_t sigsz)
3995{
Jens Axboebda52162019-09-24 13:47:15 -06003996 struct io_wait_queue iowq = {
3997 .wq = {
3998 .private = current,
3999 .func = io_wake_function,
4000 .entry = LIST_HEAD_INIT(iowq.wq.entry),
4001 },
4002 .ctx = ctx,
4003 .to_wait = min_events,
4004 };
Hristo Venev75b28af2019-08-26 17:23:46 +00004005 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004006 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004007
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004008 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004009 return 0;
4010
4011 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004012#ifdef CONFIG_COMPAT
4013 if (in_compat_syscall())
4014 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07004015 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004016 else
4017#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07004018 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004019
Jens Axboe2b188cc2019-01-07 10:46:33 -07004020 if (ret)
4021 return ret;
4022 }
4023
Jens Axboebda52162019-09-24 13:47:15 -06004024 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004025 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06004026 do {
4027 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
4028 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004029 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06004030 break;
4031 schedule();
4032 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004033 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06004034 break;
4035 }
4036 } while (1);
4037 finish_wait(&ctx->wait, &iowq.wq);
4038
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004039 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004040
Hristo Venev75b28af2019-08-26 17:23:46 +00004041 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004042}
4043
Jens Axboe6b063142019-01-10 22:13:58 -07004044static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
4045{
4046#if defined(CONFIG_UNIX)
4047 if (ctx->ring_sock) {
4048 struct sock *sock = ctx->ring_sock->sk;
4049 struct sk_buff *skb;
4050
4051 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
4052 kfree_skb(skb);
4053 }
4054#else
4055 int i;
4056
Jens Axboe65e19f52019-10-26 07:20:21 -06004057 for (i = 0; i < ctx->nr_user_files; i++) {
4058 struct file *file;
4059
4060 file = io_file_from_index(ctx, i);
4061 if (file)
4062 fput(file);
4063 }
Jens Axboe6b063142019-01-10 22:13:58 -07004064#endif
4065}
4066
4067static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
4068{
Jens Axboe65e19f52019-10-26 07:20:21 -06004069 unsigned nr_tables, i;
4070
4071 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004072 return -ENXIO;
4073
4074 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06004075 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
4076 for (i = 0; i < nr_tables; i++)
4077 kfree(ctx->file_table[i].files);
4078 kfree(ctx->file_table);
4079 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004080 ctx->nr_user_files = 0;
4081 return 0;
4082}
4083
Jens Axboe6c271ce2019-01-10 11:22:30 -07004084static void io_sq_thread_stop(struct io_ring_ctx *ctx)
4085{
4086 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07004087 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004088 /*
4089 * The park is a bit of a work-around, without it we get
4090 * warning spews on shutdown with SQPOLL set and affinity
4091 * set to a single CPU.
4092 */
Jens Axboe06058632019-04-13 09:26:03 -06004093 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004094 kthread_stop(ctx->sqo_thread);
4095 ctx->sqo_thread = NULL;
4096 }
4097}
4098
Jens Axboe6b063142019-01-10 22:13:58 -07004099static void io_finish_async(struct io_ring_ctx *ctx)
4100{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004101 io_sq_thread_stop(ctx);
4102
Jens Axboe561fb042019-10-24 07:25:42 -06004103 if (ctx->io_wq) {
4104 io_wq_destroy(ctx->io_wq);
4105 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004106 }
4107}
4108
4109#if defined(CONFIG_UNIX)
4110static void io_destruct_skb(struct sk_buff *skb)
4111{
4112 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
4113
Jens Axboe561fb042019-10-24 07:25:42 -06004114 if (ctx->io_wq)
4115 io_wq_flush(ctx->io_wq);
Jens Axboe8a997342019-10-09 14:40:13 -06004116
Jens Axboe6b063142019-01-10 22:13:58 -07004117 unix_destruct_scm(skb);
4118}
4119
4120/*
4121 * Ensure the UNIX gc is aware of our file set, so we are certain that
4122 * the io_uring can be safely unregistered on process exit, even if we have
4123 * loops in the file referencing.
4124 */
4125static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
4126{
4127 struct sock *sk = ctx->ring_sock->sk;
4128 struct scm_fp_list *fpl;
4129 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06004130 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07004131
4132 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
4133 unsigned long inflight = ctx->user->unix_inflight + nr;
4134
4135 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
4136 return -EMFILE;
4137 }
4138
4139 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
4140 if (!fpl)
4141 return -ENOMEM;
4142
4143 skb = alloc_skb(0, GFP_KERNEL);
4144 if (!skb) {
4145 kfree(fpl);
4146 return -ENOMEM;
4147 }
4148
4149 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07004150
Jens Axboe08a45172019-10-03 08:11:03 -06004151 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07004152 fpl->user = get_uid(ctx->user);
4153 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004154 struct file *file = io_file_from_index(ctx, i + offset);
4155
4156 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06004157 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06004158 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06004159 unix_inflight(fpl->user, fpl->fp[nr_files]);
4160 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07004161 }
4162
Jens Axboe08a45172019-10-03 08:11:03 -06004163 if (nr_files) {
4164 fpl->max = SCM_MAX_FD;
4165 fpl->count = nr_files;
4166 UNIXCB(skb).fp = fpl;
4167 skb->destructor = io_destruct_skb;
4168 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
4169 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07004170
Jens Axboe08a45172019-10-03 08:11:03 -06004171 for (i = 0; i < nr_files; i++)
4172 fput(fpl->fp[i]);
4173 } else {
4174 kfree_skb(skb);
4175 kfree(fpl);
4176 }
Jens Axboe6b063142019-01-10 22:13:58 -07004177
4178 return 0;
4179}
4180
4181/*
4182 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
4183 * causes regular reference counting to break down. We rely on the UNIX
4184 * garbage collection to take care of this problem for us.
4185 */
4186static int io_sqe_files_scm(struct io_ring_ctx *ctx)
4187{
4188 unsigned left, total;
4189 int ret = 0;
4190
4191 total = 0;
4192 left = ctx->nr_user_files;
4193 while (left) {
4194 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07004195
4196 ret = __io_sqe_files_scm(ctx, this_files, total);
4197 if (ret)
4198 break;
4199 left -= this_files;
4200 total += this_files;
4201 }
4202
4203 if (!ret)
4204 return 0;
4205
4206 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004207 struct file *file = io_file_from_index(ctx, total);
4208
4209 if (file)
4210 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07004211 total++;
4212 }
4213
4214 return ret;
4215}
4216#else
4217static int io_sqe_files_scm(struct io_ring_ctx *ctx)
4218{
4219 return 0;
4220}
4221#endif
4222
Jens Axboe65e19f52019-10-26 07:20:21 -06004223static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
4224 unsigned nr_files)
4225{
4226 int i;
4227
4228 for (i = 0; i < nr_tables; i++) {
4229 struct fixed_file_table *table = &ctx->file_table[i];
4230 unsigned this_files;
4231
4232 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
4233 table->files = kcalloc(this_files, sizeof(struct file *),
4234 GFP_KERNEL);
4235 if (!table->files)
4236 break;
4237 nr_files -= this_files;
4238 }
4239
4240 if (i == nr_tables)
4241 return 0;
4242
4243 for (i = 0; i < nr_tables; i++) {
4244 struct fixed_file_table *table = &ctx->file_table[i];
4245 kfree(table->files);
4246 }
4247 return 1;
4248}
4249
Jens Axboe6b063142019-01-10 22:13:58 -07004250static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
4251 unsigned nr_args)
4252{
4253 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe65e19f52019-10-26 07:20:21 -06004254 unsigned nr_tables;
Jens Axboe6b063142019-01-10 22:13:58 -07004255 int fd, ret = 0;
4256 unsigned i;
4257
Jens Axboe65e19f52019-10-26 07:20:21 -06004258 if (ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004259 return -EBUSY;
4260 if (!nr_args)
4261 return -EINVAL;
4262 if (nr_args > IORING_MAX_FIXED_FILES)
4263 return -EMFILE;
4264
Jens Axboe65e19f52019-10-26 07:20:21 -06004265 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
4266 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
4267 GFP_KERNEL);
4268 if (!ctx->file_table)
Jens Axboe6b063142019-01-10 22:13:58 -07004269 return -ENOMEM;
4270
Jens Axboe65e19f52019-10-26 07:20:21 -06004271 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
4272 kfree(ctx->file_table);
Jens Axboe46568e92019-11-10 08:40:53 -07004273 ctx->file_table = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06004274 return -ENOMEM;
4275 }
4276
Jens Axboe08a45172019-10-03 08:11:03 -06004277 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004278 struct fixed_file_table *table;
4279 unsigned index;
4280
Jens Axboe6b063142019-01-10 22:13:58 -07004281 ret = -EFAULT;
4282 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
4283 break;
Jens Axboe08a45172019-10-03 08:11:03 -06004284 /* allow sparse sets */
4285 if (fd == -1) {
4286 ret = 0;
4287 continue;
4288 }
Jens Axboe6b063142019-01-10 22:13:58 -07004289
Jens Axboe65e19f52019-10-26 07:20:21 -06004290 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4291 index = i & IORING_FILE_TABLE_MASK;
4292 table->files[index] = fget(fd);
Jens Axboe6b063142019-01-10 22:13:58 -07004293
4294 ret = -EBADF;
Jens Axboe65e19f52019-10-26 07:20:21 -06004295 if (!table->files[index])
Jens Axboe6b063142019-01-10 22:13:58 -07004296 break;
4297 /*
4298 * Don't allow io_uring instances to be registered. If UNIX
4299 * isn't enabled, then this causes a reference cycle and this
4300 * instance can never get freed. If UNIX is enabled we'll
4301 * handle it just fine, but there's still no point in allowing
4302 * a ring fd as it doesn't support regular read/write anyway.
4303 */
Jens Axboe65e19f52019-10-26 07:20:21 -06004304 if (table->files[index]->f_op == &io_uring_fops) {
4305 fput(table->files[index]);
Jens Axboe6b063142019-01-10 22:13:58 -07004306 break;
4307 }
Jens Axboe6b063142019-01-10 22:13:58 -07004308 ret = 0;
4309 }
4310
4311 if (ret) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004312 for (i = 0; i < ctx->nr_user_files; i++) {
4313 struct file *file;
Jens Axboe6b063142019-01-10 22:13:58 -07004314
Jens Axboe65e19f52019-10-26 07:20:21 -06004315 file = io_file_from_index(ctx, i);
4316 if (file)
4317 fput(file);
4318 }
4319 for (i = 0; i < nr_tables; i++)
4320 kfree(ctx->file_table[i].files);
4321
4322 kfree(ctx->file_table);
4323 ctx->file_table = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004324 ctx->nr_user_files = 0;
4325 return ret;
4326 }
4327
4328 ret = io_sqe_files_scm(ctx);
4329 if (ret)
4330 io_sqe_files_unregister(ctx);
4331
4332 return ret;
4333}
4334
Jens Axboec3a31e62019-10-03 13:59:56 -06004335static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
4336{
4337#if defined(CONFIG_UNIX)
Jens Axboe65e19f52019-10-26 07:20:21 -06004338 struct file *file = io_file_from_index(ctx, index);
Jens Axboec3a31e62019-10-03 13:59:56 -06004339 struct sock *sock = ctx->ring_sock->sk;
4340 struct sk_buff_head list, *head = &sock->sk_receive_queue;
4341 struct sk_buff *skb;
4342 int i;
4343
4344 __skb_queue_head_init(&list);
4345
4346 /*
4347 * Find the skb that holds this file in its SCM_RIGHTS. When found,
4348 * remove this entry and rearrange the file array.
4349 */
4350 skb = skb_dequeue(head);
4351 while (skb) {
4352 struct scm_fp_list *fp;
4353
4354 fp = UNIXCB(skb).fp;
4355 for (i = 0; i < fp->count; i++) {
4356 int left;
4357
4358 if (fp->fp[i] != file)
4359 continue;
4360
4361 unix_notinflight(fp->user, fp->fp[i]);
4362 left = fp->count - 1 - i;
4363 if (left) {
4364 memmove(&fp->fp[i], &fp->fp[i + 1],
4365 left * sizeof(struct file *));
4366 }
4367 fp->count--;
4368 if (!fp->count) {
4369 kfree_skb(skb);
4370 skb = NULL;
4371 } else {
4372 __skb_queue_tail(&list, skb);
4373 }
4374 fput(file);
4375 file = NULL;
4376 break;
4377 }
4378
4379 if (!file)
4380 break;
4381
4382 __skb_queue_tail(&list, skb);
4383
4384 skb = skb_dequeue(head);
4385 }
4386
4387 if (skb_peek(&list)) {
4388 spin_lock_irq(&head->lock);
4389 while ((skb = __skb_dequeue(&list)) != NULL)
4390 __skb_queue_tail(head, skb);
4391 spin_unlock_irq(&head->lock);
4392 }
4393#else
Jens Axboe65e19f52019-10-26 07:20:21 -06004394 fput(io_file_from_index(ctx, index));
Jens Axboec3a31e62019-10-03 13:59:56 -06004395#endif
4396}
4397
4398static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
4399 int index)
4400{
4401#if defined(CONFIG_UNIX)
4402 struct sock *sock = ctx->ring_sock->sk;
4403 struct sk_buff_head *head = &sock->sk_receive_queue;
4404 struct sk_buff *skb;
4405
4406 /*
4407 * See if we can merge this file into an existing skb SCM_RIGHTS
4408 * file set. If there's no room, fall back to allocating a new skb
4409 * and filling it in.
4410 */
4411 spin_lock_irq(&head->lock);
4412 skb = skb_peek(head);
4413 if (skb) {
4414 struct scm_fp_list *fpl = UNIXCB(skb).fp;
4415
4416 if (fpl->count < SCM_MAX_FD) {
4417 __skb_unlink(skb, head);
4418 spin_unlock_irq(&head->lock);
4419 fpl->fp[fpl->count] = get_file(file);
4420 unix_inflight(fpl->user, fpl->fp[fpl->count]);
4421 fpl->count++;
4422 spin_lock_irq(&head->lock);
4423 __skb_queue_head(head, skb);
4424 } else {
4425 skb = NULL;
4426 }
4427 }
4428 spin_unlock_irq(&head->lock);
4429
4430 if (skb) {
4431 fput(file);
4432 return 0;
4433 }
4434
4435 return __io_sqe_files_scm(ctx, 1, index);
4436#else
4437 return 0;
4438#endif
4439}
4440
4441static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
4442 unsigned nr_args)
4443{
4444 struct io_uring_files_update up;
4445 __s32 __user *fds;
4446 int fd, i, err;
4447 __u32 done;
4448
Jens Axboe65e19f52019-10-26 07:20:21 -06004449 if (!ctx->file_table)
Jens Axboec3a31e62019-10-03 13:59:56 -06004450 return -ENXIO;
4451 if (!nr_args)
4452 return -EINVAL;
4453 if (copy_from_user(&up, arg, sizeof(up)))
4454 return -EFAULT;
4455 if (check_add_overflow(up.offset, nr_args, &done))
4456 return -EOVERFLOW;
4457 if (done > ctx->nr_user_files)
4458 return -EINVAL;
4459
4460 done = 0;
4461 fds = (__s32 __user *) up.fds;
4462 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004463 struct fixed_file_table *table;
4464 unsigned index;
4465
Jens Axboec3a31e62019-10-03 13:59:56 -06004466 err = 0;
4467 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
4468 err = -EFAULT;
4469 break;
4470 }
4471 i = array_index_nospec(up.offset, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004472 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4473 index = i & IORING_FILE_TABLE_MASK;
4474 if (table->files[index]) {
Jens Axboec3a31e62019-10-03 13:59:56 -06004475 io_sqe_file_unregister(ctx, i);
Jens Axboe65e19f52019-10-26 07:20:21 -06004476 table->files[index] = NULL;
Jens Axboec3a31e62019-10-03 13:59:56 -06004477 }
4478 if (fd != -1) {
4479 struct file *file;
4480
4481 file = fget(fd);
4482 if (!file) {
4483 err = -EBADF;
4484 break;
4485 }
4486 /*
4487 * Don't allow io_uring instances to be registered. If
4488 * UNIX isn't enabled, then this causes a reference
4489 * cycle and this instance can never get freed. If UNIX
4490 * is enabled we'll handle it just fine, but there's
4491 * still no point in allowing a ring fd as it doesn't
4492 * support regular read/write anyway.
4493 */
4494 if (file->f_op == &io_uring_fops) {
4495 fput(file);
4496 err = -EBADF;
4497 break;
4498 }
Jens Axboe65e19f52019-10-26 07:20:21 -06004499 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06004500 err = io_sqe_file_register(ctx, file, i);
4501 if (err)
4502 break;
4503 }
4504 nr_args--;
4505 done++;
4506 up.offset++;
4507 }
4508
4509 return done ? done : err;
4510}
4511
Jens Axboe7d723062019-11-12 22:31:31 -07004512static void io_put_work(struct io_wq_work *work)
4513{
4514 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4515
4516 io_put_req(req);
4517}
4518
4519static void io_get_work(struct io_wq_work *work)
4520{
4521 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4522
4523 refcount_inc(&req->refs);
4524}
4525
Jens Axboe6c271ce2019-01-10 11:22:30 -07004526static int io_sq_offload_start(struct io_ring_ctx *ctx,
4527 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004528{
Jens Axboe576a3472019-11-25 08:49:20 -07004529 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06004530 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004531 int ret;
4532
Jens Axboe6c271ce2019-01-10 11:22:30 -07004533 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004534 mmgrab(current->mm);
4535 ctx->sqo_mm = current->mm;
4536
Jens Axboe6c271ce2019-01-10 11:22:30 -07004537 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06004538 ret = -EPERM;
4539 if (!capable(CAP_SYS_ADMIN))
4540 goto err;
4541
Jens Axboe917257d2019-04-13 09:28:55 -06004542 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
4543 if (!ctx->sq_thread_idle)
4544 ctx->sq_thread_idle = HZ;
4545
Jens Axboe6c271ce2019-01-10 11:22:30 -07004546 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06004547 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004548
Jens Axboe917257d2019-04-13 09:28:55 -06004549 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06004550 if (cpu >= nr_cpu_ids)
4551 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08004552 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06004553 goto err;
4554
Jens Axboe6c271ce2019-01-10 11:22:30 -07004555 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
4556 ctx, cpu,
4557 "io_uring-sq");
4558 } else {
4559 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
4560 "io_uring-sq");
4561 }
4562 if (IS_ERR(ctx->sqo_thread)) {
4563 ret = PTR_ERR(ctx->sqo_thread);
4564 ctx->sqo_thread = NULL;
4565 goto err;
4566 }
4567 wake_up_process(ctx->sqo_thread);
4568 } else if (p->flags & IORING_SETUP_SQ_AFF) {
4569 /* Can't have SQ_AFF without SQPOLL */
4570 ret = -EINVAL;
4571 goto err;
4572 }
4573
Jens Axboe576a3472019-11-25 08:49:20 -07004574 data.mm = ctx->sqo_mm;
4575 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07004576 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07004577 data.get_work = io_get_work;
4578 data.put_work = io_put_work;
4579
Jens Axboe561fb042019-10-24 07:25:42 -06004580 /* Do QD, or 4 * CPUS, whatever is smallest */
4581 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07004582 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06004583 if (IS_ERR(ctx->io_wq)) {
4584 ret = PTR_ERR(ctx->io_wq);
4585 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004586 goto err;
4587 }
4588
4589 return 0;
4590err:
Jens Axboe54a91f32019-09-10 09:15:04 -06004591 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004592 mmdrop(ctx->sqo_mm);
4593 ctx->sqo_mm = NULL;
4594 return ret;
4595}
4596
4597static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
4598{
4599 atomic_long_sub(nr_pages, &user->locked_vm);
4600}
4601
4602static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
4603{
4604 unsigned long page_limit, cur_pages, new_pages;
4605
4606 /* Don't allow more pages than we can safely lock */
4607 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
4608
4609 do {
4610 cur_pages = atomic_long_read(&user->locked_vm);
4611 new_pages = cur_pages + nr_pages;
4612 if (new_pages > page_limit)
4613 return -ENOMEM;
4614 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4615 new_pages) != cur_pages);
4616
4617 return 0;
4618}
4619
4620static void io_mem_free(void *ptr)
4621{
Mark Rutland52e04ef2019-04-30 17:30:21 +01004622 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004623
Mark Rutland52e04ef2019-04-30 17:30:21 +01004624 if (!ptr)
4625 return;
4626
4627 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004628 if (put_page_testzero(page))
4629 free_compound_page(page);
4630}
4631
4632static void *io_mem_alloc(size_t size)
4633{
4634 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4635 __GFP_NORETRY;
4636
4637 return (void *) __get_free_pages(gfp_flags, get_order(size));
4638}
4639
Hristo Venev75b28af2019-08-26 17:23:46 +00004640static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4641 size_t *sq_offset)
4642{
4643 struct io_rings *rings;
4644 size_t off, sq_array_size;
4645
4646 off = struct_size(rings, cqes, cq_entries);
4647 if (off == SIZE_MAX)
4648 return SIZE_MAX;
4649
4650#ifdef CONFIG_SMP
4651 off = ALIGN(off, SMP_CACHE_BYTES);
4652 if (off == 0)
4653 return SIZE_MAX;
4654#endif
4655
4656 sq_array_size = array_size(sizeof(u32), sq_entries);
4657 if (sq_array_size == SIZE_MAX)
4658 return SIZE_MAX;
4659
4660 if (check_add_overflow(off, sq_array_size, &off))
4661 return SIZE_MAX;
4662
4663 if (sq_offset)
4664 *sq_offset = off;
4665
4666 return off;
4667}
4668
Jens Axboe2b188cc2019-01-07 10:46:33 -07004669static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4670{
Hristo Venev75b28af2019-08-26 17:23:46 +00004671 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004672
Hristo Venev75b28af2019-08-26 17:23:46 +00004673 pages = (size_t)1 << get_order(
4674 rings_size(sq_entries, cq_entries, NULL));
4675 pages += (size_t)1 << get_order(
4676 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07004677
Hristo Venev75b28af2019-08-26 17:23:46 +00004678 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004679}
4680
Jens Axboeedafcce2019-01-09 09:16:05 -07004681static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4682{
4683 int i, j;
4684
4685 if (!ctx->user_bufs)
4686 return -ENXIO;
4687
4688 for (i = 0; i < ctx->nr_user_bufs; i++) {
4689 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4690
4691 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07004692 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07004693
4694 if (ctx->account_mem)
4695 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004696 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004697 imu->nr_bvecs = 0;
4698 }
4699
4700 kfree(ctx->user_bufs);
4701 ctx->user_bufs = NULL;
4702 ctx->nr_user_bufs = 0;
4703 return 0;
4704}
4705
4706static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4707 void __user *arg, unsigned index)
4708{
4709 struct iovec __user *src;
4710
4711#ifdef CONFIG_COMPAT
4712 if (ctx->compat) {
4713 struct compat_iovec __user *ciovs;
4714 struct compat_iovec ciov;
4715
4716 ciovs = (struct compat_iovec __user *) arg;
4717 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4718 return -EFAULT;
4719
Jens Axboed55e5f52019-12-11 16:12:15 -07004720 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07004721 dst->iov_len = ciov.iov_len;
4722 return 0;
4723 }
4724#endif
4725 src = (struct iovec __user *) arg;
4726 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4727 return -EFAULT;
4728 return 0;
4729}
4730
4731static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4732 unsigned nr_args)
4733{
4734 struct vm_area_struct **vmas = NULL;
4735 struct page **pages = NULL;
4736 int i, j, got_pages = 0;
4737 int ret = -EINVAL;
4738
4739 if (ctx->user_bufs)
4740 return -EBUSY;
4741 if (!nr_args || nr_args > UIO_MAXIOV)
4742 return -EINVAL;
4743
4744 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4745 GFP_KERNEL);
4746 if (!ctx->user_bufs)
4747 return -ENOMEM;
4748
4749 for (i = 0; i < nr_args; i++) {
4750 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4751 unsigned long off, start, end, ubuf;
4752 int pret, nr_pages;
4753 struct iovec iov;
4754 size_t size;
4755
4756 ret = io_copy_iov(ctx, &iov, arg, i);
4757 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03004758 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07004759
4760 /*
4761 * Don't impose further limits on the size and buffer
4762 * constraints here, we'll -EINVAL later when IO is
4763 * submitted if they are wrong.
4764 */
4765 ret = -EFAULT;
4766 if (!iov.iov_base || !iov.iov_len)
4767 goto err;
4768
4769 /* arbitrary limit, but we need something */
4770 if (iov.iov_len > SZ_1G)
4771 goto err;
4772
4773 ubuf = (unsigned long) iov.iov_base;
4774 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4775 start = ubuf >> PAGE_SHIFT;
4776 nr_pages = end - start;
4777
4778 if (ctx->account_mem) {
4779 ret = io_account_mem(ctx->user, nr_pages);
4780 if (ret)
4781 goto err;
4782 }
4783
4784 ret = 0;
4785 if (!pages || nr_pages > got_pages) {
4786 kfree(vmas);
4787 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004788 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07004789 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004790 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07004791 sizeof(struct vm_area_struct *),
4792 GFP_KERNEL);
4793 if (!pages || !vmas) {
4794 ret = -ENOMEM;
4795 if (ctx->account_mem)
4796 io_unaccount_mem(ctx->user, nr_pages);
4797 goto err;
4798 }
4799 got_pages = nr_pages;
4800 }
4801
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004802 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07004803 GFP_KERNEL);
4804 ret = -ENOMEM;
4805 if (!imu->bvec) {
4806 if (ctx->account_mem)
4807 io_unaccount_mem(ctx->user, nr_pages);
4808 goto err;
4809 }
4810
4811 ret = 0;
4812 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07004813 pret = get_user_pages(ubuf, nr_pages,
4814 FOLL_WRITE | FOLL_LONGTERM,
4815 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004816 if (pret == nr_pages) {
4817 /* don't support file backed memory */
4818 for (j = 0; j < nr_pages; j++) {
4819 struct vm_area_struct *vma = vmas[j];
4820
4821 if (vma->vm_file &&
4822 !is_file_hugepages(vma->vm_file)) {
4823 ret = -EOPNOTSUPP;
4824 break;
4825 }
4826 }
4827 } else {
4828 ret = pret < 0 ? pret : -EFAULT;
4829 }
4830 up_read(&current->mm->mmap_sem);
4831 if (ret) {
4832 /*
4833 * if we did partial map, or found file backed vmas,
4834 * release any pages we did get
4835 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07004836 if (pret > 0)
4837 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07004838 if (ctx->account_mem)
4839 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004840 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07004841 goto err;
4842 }
4843
4844 off = ubuf & ~PAGE_MASK;
4845 size = iov.iov_len;
4846 for (j = 0; j < nr_pages; j++) {
4847 size_t vec_len;
4848
4849 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4850 imu->bvec[j].bv_page = pages[j];
4851 imu->bvec[j].bv_len = vec_len;
4852 imu->bvec[j].bv_offset = off;
4853 off = 0;
4854 size -= vec_len;
4855 }
4856 /* store original address for later verification */
4857 imu->ubuf = ubuf;
4858 imu->len = iov.iov_len;
4859 imu->nr_bvecs = nr_pages;
4860
4861 ctx->nr_user_bufs++;
4862 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004863 kvfree(pages);
4864 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004865 return 0;
4866err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01004867 kvfree(pages);
4868 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07004869 io_sqe_buffer_unregister(ctx);
4870 return ret;
4871}
4872
Jens Axboe9b402842019-04-11 11:45:41 -06004873static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4874{
4875 __s32 __user *fds = arg;
4876 int fd;
4877
4878 if (ctx->cq_ev_fd)
4879 return -EBUSY;
4880
4881 if (copy_from_user(&fd, fds, sizeof(*fds)))
4882 return -EFAULT;
4883
4884 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4885 if (IS_ERR(ctx->cq_ev_fd)) {
4886 int ret = PTR_ERR(ctx->cq_ev_fd);
4887 ctx->cq_ev_fd = NULL;
4888 return ret;
4889 }
4890
4891 return 0;
4892}
4893
4894static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4895{
4896 if (ctx->cq_ev_fd) {
4897 eventfd_ctx_put(ctx->cq_ev_fd);
4898 ctx->cq_ev_fd = NULL;
4899 return 0;
4900 }
4901
4902 return -ENXIO;
4903}
4904
Jens Axboe2b188cc2019-01-07 10:46:33 -07004905static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4906{
Jens Axboe6b063142019-01-10 22:13:58 -07004907 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004908 if (ctx->sqo_mm)
4909 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07004910
4911 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07004912 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07004913 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06004914 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07004915
Jens Axboe2b188cc2019-01-07 10:46:33 -07004916#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07004917 if (ctx->ring_sock) {
4918 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004919 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07004920 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004921#endif
4922
Hristo Venev75b28af2019-08-26 17:23:46 +00004923 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004924 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004925
4926 percpu_ref_exit(&ctx->refs);
4927 if (ctx->account_mem)
4928 io_unaccount_mem(ctx->user,
4929 ring_pages(ctx->sq_entries, ctx->cq_entries));
4930 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07004931 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07004932 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07004933 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07004934 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004935 kfree(ctx);
4936}
4937
4938static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4939{
4940 struct io_ring_ctx *ctx = file->private_data;
4941 __poll_t mask = 0;
4942
4943 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02004944 /*
4945 * synchronizes with barrier from wq_has_sleeper call in
4946 * io_commit_cqring
4947 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004948 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00004949 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4950 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004951 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08004952 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004953 mask |= EPOLLIN | EPOLLRDNORM;
4954
4955 return mask;
4956}
4957
4958static int io_uring_fasync(int fd, struct file *file, int on)
4959{
4960 struct io_ring_ctx *ctx = file->private_data;
4961
4962 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4963}
4964
4965static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4966{
4967 mutex_lock(&ctx->uring_lock);
4968 percpu_ref_kill(&ctx->refs);
4969 mutex_unlock(&ctx->uring_lock);
4970
Jens Axboe5262f562019-09-17 12:26:57 -06004971 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004972 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06004973
4974 if (ctx->io_wq)
4975 io_wq_cancel_all(ctx->io_wq);
4976
Jens Axboedef596e2019-01-09 08:59:42 -07004977 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07004978 /* if we failed setting up the ctx, we might not have any rings */
4979 if (ctx->rings)
4980 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07004981 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004982 io_ring_ctx_free(ctx);
4983}
4984
4985static int io_uring_release(struct inode *inode, struct file *file)
4986{
4987 struct io_ring_ctx *ctx = file->private_data;
4988
4989 file->private_data = NULL;
4990 io_ring_ctx_wait_and_kill(ctx);
4991 return 0;
4992}
4993
Jens Axboefcb323c2019-10-24 12:39:47 -06004994static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4995 struct files_struct *files)
4996{
4997 struct io_kiocb *req;
4998 DEFINE_WAIT(wait);
4999
5000 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07005001 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06005002
5003 spin_lock_irq(&ctx->inflight_lock);
5004 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07005005 if (req->work.files != files)
5006 continue;
5007 /* req is being completed, ignore */
5008 if (!refcount_inc_not_zero(&req->refs))
5009 continue;
5010 cancel_req = req;
5011 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06005012 }
Jens Axboe768134d2019-11-10 20:30:53 -07005013 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005014 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07005015 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06005016 spin_unlock_irq(&ctx->inflight_lock);
5017
Jens Axboe768134d2019-11-10 20:30:53 -07005018 /* We need to keep going until we don't find a matching req */
5019 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005020 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08005021
5022 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
5023 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06005024 schedule();
5025 }
Jens Axboe768134d2019-11-10 20:30:53 -07005026 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06005027}
5028
5029static int io_uring_flush(struct file *file, void *data)
5030{
5031 struct io_ring_ctx *ctx = file->private_data;
5032
5033 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005034 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
5035 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06005036 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005037 }
Jens Axboefcb323c2019-10-24 12:39:47 -06005038 return 0;
5039}
5040
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005041static void *io_uring_validate_mmap_request(struct file *file,
5042 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005043{
Jens Axboe2b188cc2019-01-07 10:46:33 -07005044 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005045 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005046 struct page *page;
5047 void *ptr;
5048
5049 switch (offset) {
5050 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00005051 case IORING_OFF_CQ_RING:
5052 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005053 break;
5054 case IORING_OFF_SQES:
5055 ptr = ctx->sq_sqes;
5056 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005057 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005058 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005059 }
5060
5061 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07005062 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005063 return ERR_PTR(-EINVAL);
5064
5065 return ptr;
5066}
5067
5068#ifdef CONFIG_MMU
5069
5070static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
5071{
5072 size_t sz = vma->vm_end - vma->vm_start;
5073 unsigned long pfn;
5074 void *ptr;
5075
5076 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
5077 if (IS_ERR(ptr))
5078 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005079
5080 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
5081 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
5082}
5083
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005084#else /* !CONFIG_MMU */
5085
5086static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
5087{
5088 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
5089}
5090
5091static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
5092{
5093 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
5094}
5095
5096static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
5097 unsigned long addr, unsigned long len,
5098 unsigned long pgoff, unsigned long flags)
5099{
5100 void *ptr;
5101
5102 ptr = io_uring_validate_mmap_request(file, pgoff, len);
5103 if (IS_ERR(ptr))
5104 return PTR_ERR(ptr);
5105
5106 return (unsigned long) ptr;
5107}
5108
5109#endif /* !CONFIG_MMU */
5110
Jens Axboe2b188cc2019-01-07 10:46:33 -07005111SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
5112 u32, min_complete, u32, flags, const sigset_t __user *, sig,
5113 size_t, sigsz)
5114{
5115 struct io_ring_ctx *ctx;
5116 long ret = -EBADF;
5117 int submitted = 0;
5118 struct fd f;
5119
Jens Axboe6c271ce2019-01-10 11:22:30 -07005120 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005121 return -EINVAL;
5122
5123 f = fdget(fd);
5124 if (!f.file)
5125 return -EBADF;
5126
5127 ret = -EOPNOTSUPP;
5128 if (f.file->f_op != &io_uring_fops)
5129 goto out_fput;
5130
5131 ret = -ENXIO;
5132 ctx = f.file->private_data;
5133 if (!percpu_ref_tryget(&ctx->refs))
5134 goto out_fput;
5135
Jens Axboe6c271ce2019-01-10 11:22:30 -07005136 /*
5137 * For SQ polling, the thread will do all submissions and completions.
5138 * Just return the requested submit count, and wake the thread if
5139 * we were asked to.
5140 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06005141 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005142 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07005143 if (!list_empty_careful(&ctx->cq_overflow_list))
5144 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005145 if (flags & IORING_ENTER_SQ_WAKEUP)
5146 wake_up(&ctx->sqo_wait);
5147 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06005148 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005149 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005150
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005151 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005152 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005153 /* already have mm, so io_submit_sqes() won't try to grab it */
5154 cur_mm = ctx->sqo_mm;
5155 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
5156 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005157 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03005158
5159 if (submitted != to_submit)
5160 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005161 }
5162 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07005163 unsigned nr_events = 0;
5164
Jens Axboe2b188cc2019-01-07 10:46:33 -07005165 min_complete = min(min_complete, ctx->cq_entries);
5166
Jens Axboedef596e2019-01-09 08:59:42 -07005167 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07005168 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07005169 } else {
5170 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
5171 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005172 }
5173
Pavel Begunkov7c504e652019-12-18 19:53:45 +03005174out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03005175 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005176out_fput:
5177 fdput(f);
5178 return submitted ? submitted : ret;
5179}
5180
5181static const struct file_operations io_uring_fops = {
5182 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06005183 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07005184 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005185#ifndef CONFIG_MMU
5186 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
5187 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
5188#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07005189 .poll = io_uring_poll,
5190 .fasync = io_uring_fasync,
5191};
5192
5193static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
5194 struct io_uring_params *p)
5195{
Hristo Venev75b28af2019-08-26 17:23:46 +00005196 struct io_rings *rings;
5197 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005198
Hristo Venev75b28af2019-08-26 17:23:46 +00005199 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
5200 if (size == SIZE_MAX)
5201 return -EOVERFLOW;
5202
5203 rings = io_mem_alloc(size);
5204 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005205 return -ENOMEM;
5206
Hristo Venev75b28af2019-08-26 17:23:46 +00005207 ctx->rings = rings;
5208 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
5209 rings->sq_ring_mask = p->sq_entries - 1;
5210 rings->cq_ring_mask = p->cq_entries - 1;
5211 rings->sq_ring_entries = p->sq_entries;
5212 rings->cq_ring_entries = p->cq_entries;
5213 ctx->sq_mask = rings->sq_ring_mask;
5214 ctx->cq_mask = rings->cq_ring_mask;
5215 ctx->sq_entries = rings->sq_ring_entries;
5216 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005217
5218 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07005219 if (size == SIZE_MAX) {
5220 io_mem_free(ctx->rings);
5221 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005222 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07005223 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005224
5225 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07005226 if (!ctx->sq_sqes) {
5227 io_mem_free(ctx->rings);
5228 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005229 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07005230 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005231
Jens Axboe2b188cc2019-01-07 10:46:33 -07005232 return 0;
5233}
5234
5235/*
5236 * Allocate an anonymous fd, this is what constitutes the application
5237 * visible backing of an io_uring instance. The application mmaps this
5238 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
5239 * we have to tie this fd to a socket for file garbage collection purposes.
5240 */
5241static int io_uring_get_fd(struct io_ring_ctx *ctx)
5242{
5243 struct file *file;
5244 int ret;
5245
5246#if defined(CONFIG_UNIX)
5247 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
5248 &ctx->ring_sock);
5249 if (ret)
5250 return ret;
5251#endif
5252
5253 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
5254 if (ret < 0)
5255 goto err;
5256
5257 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
5258 O_RDWR | O_CLOEXEC);
5259 if (IS_ERR(file)) {
5260 put_unused_fd(ret);
5261 ret = PTR_ERR(file);
5262 goto err;
5263 }
5264
5265#if defined(CONFIG_UNIX)
5266 ctx->ring_sock->file = file;
Jens Axboe6b063142019-01-10 22:13:58 -07005267 ctx->ring_sock->sk->sk_user_data = ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005268#endif
5269 fd_install(ret, file);
5270 return ret;
5271err:
5272#if defined(CONFIG_UNIX)
5273 sock_release(ctx->ring_sock);
5274 ctx->ring_sock = NULL;
5275#endif
5276 return ret;
5277}
5278
5279static int io_uring_create(unsigned entries, struct io_uring_params *p)
5280{
5281 struct user_struct *user = NULL;
5282 struct io_ring_ctx *ctx;
5283 bool account_mem;
5284 int ret;
5285
5286 if (!entries || entries > IORING_MAX_ENTRIES)
5287 return -EINVAL;
5288
5289 /*
5290 * Use twice as many entries for the CQ ring. It's possible for the
5291 * application to drive a higher depth than the size of the SQ ring,
5292 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06005293 * some flexibility in overcommitting a bit. If the application has
5294 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
5295 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07005296 */
5297 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06005298 if (p->flags & IORING_SETUP_CQSIZE) {
5299 /*
5300 * If IORING_SETUP_CQSIZE is set, we do the same roundup
5301 * to a power-of-two, if it isn't already. We do NOT impose
5302 * any cq vs sq ring sizing.
5303 */
5304 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
5305 return -EINVAL;
5306 p->cq_entries = roundup_pow_of_two(p->cq_entries);
5307 } else {
5308 p->cq_entries = 2 * p->sq_entries;
5309 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005310
5311 user = get_uid(current_user());
5312 account_mem = !capable(CAP_IPC_LOCK);
5313
5314 if (account_mem) {
5315 ret = io_account_mem(user,
5316 ring_pages(p->sq_entries, p->cq_entries));
5317 if (ret) {
5318 free_uid(user);
5319 return ret;
5320 }
5321 }
5322
5323 ctx = io_ring_ctx_alloc(p);
5324 if (!ctx) {
5325 if (account_mem)
5326 io_unaccount_mem(user, ring_pages(p->sq_entries,
5327 p->cq_entries));
5328 free_uid(user);
5329 return -ENOMEM;
5330 }
5331 ctx->compat = in_compat_syscall();
5332 ctx->account_mem = account_mem;
5333 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07005334 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07005335
5336 ret = io_allocate_scq_urings(ctx, p);
5337 if (ret)
5338 goto err;
5339
Jens Axboe6c271ce2019-01-10 11:22:30 -07005340 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005341 if (ret)
5342 goto err;
5343
Jens Axboe2b188cc2019-01-07 10:46:33 -07005344 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005345 p->sq_off.head = offsetof(struct io_rings, sq.head);
5346 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
5347 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
5348 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
5349 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
5350 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
5351 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005352
5353 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00005354 p->cq_off.head = offsetof(struct io_rings, cq.head);
5355 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
5356 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
5357 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
5358 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
5359 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06005360
Jens Axboe044c1ab2019-10-28 09:15:33 -06005361 /*
5362 * Install ring fd as the very last thing, so we don't risk someone
5363 * having closed it before we finish setup
5364 */
5365 ret = io_uring_get_fd(ctx);
5366 if (ret < 0)
5367 goto err;
5368
Jens Axboeda8c9692019-12-02 18:51:26 -07005369 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
5370 IORING_FEAT_SUBMIT_STABLE;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005371 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005372 return ret;
5373err:
5374 io_ring_ctx_wait_and_kill(ctx);
5375 return ret;
5376}
5377
5378/*
5379 * Sets up an aio uring context, and returns the fd. Applications asks for a
5380 * ring size, we return the actual sq/cq ring sizes (among other things) in the
5381 * params structure passed in.
5382 */
5383static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
5384{
5385 struct io_uring_params p;
5386 long ret;
5387 int i;
5388
5389 if (copy_from_user(&p, params, sizeof(p)))
5390 return -EFAULT;
5391 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
5392 if (p.resv[i])
5393 return -EINVAL;
5394 }
5395
Jens Axboe6c271ce2019-01-10 11:22:30 -07005396 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe33a107f2019-10-04 12:10:03 -06005397 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
Jens Axboe2b188cc2019-01-07 10:46:33 -07005398 return -EINVAL;
5399
5400 ret = io_uring_create(entries, &p);
5401 if (ret < 0)
5402 return ret;
5403
5404 if (copy_to_user(params, &p, sizeof(p)))
5405 return -EFAULT;
5406
5407 return ret;
5408}
5409
5410SYSCALL_DEFINE2(io_uring_setup, u32, entries,
5411 struct io_uring_params __user *, params)
5412{
5413 return io_uring_setup(entries, params);
5414}
5415
Jens Axboeedafcce2019-01-09 09:16:05 -07005416static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
5417 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06005418 __releases(ctx->uring_lock)
5419 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07005420{
5421 int ret;
5422
Jens Axboe35fa71a2019-04-22 10:23:23 -06005423 /*
5424 * We're inside the ring mutex, if the ref is already dying, then
5425 * someone else killed the ctx or is already going through
5426 * io_uring_register().
5427 */
5428 if (percpu_ref_is_dying(&ctx->refs))
5429 return -ENXIO;
5430
Jens Axboeedafcce2019-01-09 09:16:05 -07005431 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06005432
5433 /*
5434 * Drop uring mutex before waiting for references to exit. If another
5435 * thread is currently inside io_uring_enter() it might need to grab
5436 * the uring_lock to make progress. If we hold it here across the drain
5437 * wait, then we can deadlock. It's safe to drop the mutex here, since
5438 * no new references will come in after we've killed the percpu ref.
5439 */
5440 mutex_unlock(&ctx->uring_lock);
Jens Axboe206aefd2019-11-07 18:27:42 -07005441 wait_for_completion(&ctx->completions[0]);
Jens Axboeb19062a2019-04-15 10:49:38 -06005442 mutex_lock(&ctx->uring_lock);
Jens Axboeedafcce2019-01-09 09:16:05 -07005443
5444 switch (opcode) {
5445 case IORING_REGISTER_BUFFERS:
5446 ret = io_sqe_buffer_register(ctx, arg, nr_args);
5447 break;
5448 case IORING_UNREGISTER_BUFFERS:
5449 ret = -EINVAL;
5450 if (arg || nr_args)
5451 break;
5452 ret = io_sqe_buffer_unregister(ctx);
5453 break;
Jens Axboe6b063142019-01-10 22:13:58 -07005454 case IORING_REGISTER_FILES:
5455 ret = io_sqe_files_register(ctx, arg, nr_args);
5456 break;
5457 case IORING_UNREGISTER_FILES:
5458 ret = -EINVAL;
5459 if (arg || nr_args)
5460 break;
5461 ret = io_sqe_files_unregister(ctx);
5462 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06005463 case IORING_REGISTER_FILES_UPDATE:
5464 ret = io_sqe_files_update(ctx, arg, nr_args);
5465 break;
Jens Axboe9b402842019-04-11 11:45:41 -06005466 case IORING_REGISTER_EVENTFD:
5467 ret = -EINVAL;
5468 if (nr_args != 1)
5469 break;
5470 ret = io_eventfd_register(ctx, arg);
5471 break;
5472 case IORING_UNREGISTER_EVENTFD:
5473 ret = -EINVAL;
5474 if (arg || nr_args)
5475 break;
5476 ret = io_eventfd_unregister(ctx);
5477 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07005478 default:
5479 ret = -EINVAL;
5480 break;
5481 }
5482
5483 /* bring the ctx back to life */
Jens Axboe206aefd2019-11-07 18:27:42 -07005484 reinit_completion(&ctx->completions[0]);
Jens Axboeedafcce2019-01-09 09:16:05 -07005485 percpu_ref_reinit(&ctx->refs);
5486 return ret;
5487}
5488
5489SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
5490 void __user *, arg, unsigned int, nr_args)
5491{
5492 struct io_ring_ctx *ctx;
5493 long ret = -EBADF;
5494 struct fd f;
5495
5496 f = fdget(fd);
5497 if (!f.file)
5498 return -EBADF;
5499
5500 ret = -EOPNOTSUPP;
5501 if (f.file->f_op != &io_uring_fops)
5502 goto out_fput;
5503
5504 ctx = f.file->private_data;
5505
5506 mutex_lock(&ctx->uring_lock);
5507 ret = __io_uring_register(ctx, opcode, arg, nr_args);
5508 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005509 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
5510 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005511out_fput:
5512 fdput(f);
5513 return ret;
5514}
5515
Jens Axboe2b188cc2019-01-07 10:46:33 -07005516static int __init io_uring_init(void)
5517{
5518 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
5519 return 0;
5520};
5521__initcall(io_uring_init);