blob: ed1adeda370e4561a3a75672a0a7ab8d38cf7f7d [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 Axboe15b71ab2019-12-11 11:20:36 -070073#include <linux/namei.h>
74#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070075#include <linux/fadvise.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070076
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020077#define CREATE_TRACE_POINTS
78#include <trace/events/io_uring.h>
79
Jens Axboe2b188cc2019-01-07 10:46:33 -070080#include <uapi/linux/io_uring.h>
81
82#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060083#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070084
Daniel Xu5277dea2019-09-14 14:23:45 -070085#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060086#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060087
88/*
89 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
90 */
91#define IORING_FILE_TABLE_SHIFT 9
92#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
93#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
94#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070095
96struct io_uring {
97 u32 head ____cacheline_aligned_in_smp;
98 u32 tail ____cacheline_aligned_in_smp;
99};
100
Stefan Bühler1e84b972019-04-24 23:54:16 +0200101/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000102 * This data is shared with the application through the mmap at offsets
103 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200104 *
105 * The offsets to the member fields are published through struct
106 * io_sqring_offsets when calling io_uring_setup.
107 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000108struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200109 /*
110 * Head and tail offsets into the ring; the offsets need to be
111 * masked to get valid indices.
112 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000113 * The kernel controls head of the sq ring and the tail of the cq ring,
114 * and the application controls tail of the sq ring and the head of the
115 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200116 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000117 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200118 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200120 * ring_entries - 1)
121 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000122 u32 sq_ring_mask, cq_ring_mask;
123 /* Ring sizes (constant, power of 2) */
124 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200125 /*
126 * Number of invalid entries dropped by the kernel due to
127 * invalid index stored in array
128 *
129 * Written by the kernel, shouldn't be modified by the
130 * application (i.e. get number of "new events" by comparing to
131 * cached value).
132 *
133 * After a new SQ head value was read by the application this
134 * counter includes all submissions that were dropped reaching
135 * the new SQ head (and possibly more).
136 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000137 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200138 /*
139 * Runtime flags
140 *
141 * Written by the kernel, shouldn't be modified by the
142 * application.
143 *
144 * The application needs a full memory barrier before checking
145 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
146 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000147 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200148 /*
149 * Number of completion events lost because the queue was full;
150 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800151 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200152 * the completion queue.
153 *
154 * Written by the kernel, shouldn't be modified by the
155 * application (i.e. get number of "new events" by comparing to
156 * cached value).
157 *
158 * As completion events come in out of order this counter is not
159 * ordered with any other data.
160 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000161 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200162 /*
163 * Ring buffer of completion events.
164 *
165 * The kernel writes completion events fresh every time they are
166 * produced, so the application is allowed to modify pending
167 * entries.
168 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000169 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700170};
171
Jens Axboeedafcce2019-01-09 09:16:05 -0700172struct io_mapped_ubuf {
173 u64 ubuf;
174 size_t len;
175 struct bio_vec *bvec;
176 unsigned int nr_bvecs;
177};
178
Jens Axboe65e19f52019-10-26 07:20:21 -0600179struct fixed_file_table {
180 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700181};
182
Jens Axboe05f3fb32019-12-09 11:22:50 -0700183enum {
184 FFD_F_ATOMIC,
185};
186
187struct fixed_file_data {
188 struct fixed_file_table *table;
189 struct io_ring_ctx *ctx;
190
191 struct percpu_ref refs;
192 struct llist_head put_llist;
193 unsigned long state;
194 struct work_struct ref_work;
195 struct completion done;
196};
197
Jens Axboe2b188cc2019-01-07 10:46:33 -0700198struct io_ring_ctx {
199 struct {
200 struct percpu_ref refs;
201 } ____cacheline_aligned_in_smp;
202
203 struct {
204 unsigned int flags;
Jens Axboe69b3e542020-01-08 11:01:46 -0700205 int compat: 1;
206 int account_mem: 1;
207 int cq_overflow_flushed: 1;
208 int drain_next: 1;
Jens Axboef2842ab2020-01-08 11:04:00 -0700209 int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700210
Hristo Venev75b28af2019-08-26 17:23:46 +0000211 /*
212 * Ring buffer of indices into array of io_uring_sqe, which is
213 * mmapped by the application using the IORING_OFF_SQES offset.
214 *
215 * This indirection could e.g. be used to assign fixed
216 * io_uring_sqe entries to operations and only submit them to
217 * the queue when needed.
218 *
219 * The kernel modifies neither the indices array nor the entries
220 * array.
221 */
222 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700223 unsigned cached_sq_head;
224 unsigned sq_entries;
225 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700226 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600227 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700228 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700229 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600230
231 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600232 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700233 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700234
Jens Axboefcb323c2019-10-24 12:39:47 -0600235 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700236 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700237 } ____cacheline_aligned_in_smp;
238
Hristo Venev75b28af2019-08-26 17:23:46 +0000239 struct io_rings *rings;
240
Jens Axboe2b188cc2019-01-07 10:46:33 -0700241 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600242 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700243 struct task_struct *sqo_thread; /* if using sq thread polling */
244 struct mm_struct *sqo_mm;
245 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700246
Jens Axboe6b063142019-01-10 22:13:58 -0700247 /*
248 * If used, fixed file set. Writers must ensure that ->refs is dead,
249 * readers must ensure that ->refs is alive as long as the file* is
250 * used. Only updated through io_uring_register(2).
251 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700252 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700253 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300254 int ring_fd;
255 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700256
Jens Axboeedafcce2019-01-09 09:16:05 -0700257 /* if used, fixed mapped user buffers */
258 unsigned nr_user_bufs;
259 struct io_mapped_ubuf *user_bufs;
260
Jens Axboe2b188cc2019-01-07 10:46:33 -0700261 struct user_struct *user;
262
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700263 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700264
Jens Axboe206aefd2019-11-07 18:27:42 -0700265 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
266 struct completion *completions;
267
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700268 /* if all else fails... */
269 struct io_kiocb *fallback_req;
270
Jens Axboe206aefd2019-11-07 18:27:42 -0700271#if defined(CONFIG_UNIX)
272 struct socket *ring_sock;
273#endif
274
275 struct {
276 unsigned cached_cq_tail;
277 unsigned cq_entries;
278 unsigned cq_mask;
279 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700280 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700281 struct wait_queue_head cq_wait;
282 struct fasync_struct *cq_fasync;
283 struct eventfd_ctx *cq_ev_fd;
284 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700285
286 struct {
287 struct mutex uring_lock;
288 wait_queue_head_t wait;
289 } ____cacheline_aligned_in_smp;
290
291 struct {
292 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700293 struct llist_head poll_llist;
294
Jens Axboedef596e2019-01-09 08:59:42 -0700295 /*
296 * ->poll_list is protected by the ctx->uring_lock for
297 * io_uring instances that don't use IORING_SETUP_SQPOLL.
298 * For SQPOLL, only the single threaded io_sq_thread() will
299 * manipulate the list, hence no extra locking is needed there.
300 */
301 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700302 struct hlist_head *cancel_hash;
303 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700304 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600305
306 spinlock_t inflight_lock;
307 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700308 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700309};
310
Jens Axboe09bb8392019-03-13 12:39:28 -0600311/*
312 * First field must be the file pointer in all the
313 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
314 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700315struct io_poll_iocb {
316 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700317 union {
318 struct wait_queue_head *head;
319 u64 addr;
320 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700321 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600322 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700323 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700324 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700325};
326
Jens Axboeb5dba592019-12-11 14:02:38 -0700327struct io_close {
328 struct file *file;
329 struct file *put_file;
330 int fd;
331};
332
Jens Axboead8a48a2019-11-15 08:49:11 -0700333struct io_timeout_data {
334 struct io_kiocb *req;
335 struct hrtimer timer;
336 struct timespec64 ts;
337 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300338 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700339};
340
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700341struct io_accept {
342 struct file *file;
343 struct sockaddr __user *addr;
344 int __user *addr_len;
345 int flags;
346};
347
348struct io_sync {
349 struct file *file;
350 loff_t len;
351 loff_t off;
352 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700353 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700354};
355
Jens Axboefbf23842019-12-17 18:45:56 -0700356struct io_cancel {
357 struct file *file;
358 u64 addr;
359};
360
Jens Axboeb29472e2019-12-17 18:50:29 -0700361struct io_timeout {
362 struct file *file;
363 u64 addr;
364 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700365 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700366};
367
Jens Axboe9adbd452019-12-20 08:45:55 -0700368struct io_rw {
369 /* NOTE: kiocb has the file as the first member, so don't do it here */
370 struct kiocb kiocb;
371 u64 addr;
372 u64 len;
373};
374
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700375struct io_connect {
376 struct file *file;
377 struct sockaddr __user *addr;
378 int addr_len;
379};
380
Jens Axboee47293f2019-12-20 08:58:21 -0700381struct io_sr_msg {
382 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700383 union {
384 struct user_msghdr __user *msg;
385 void __user *buf;
386 };
Jens Axboee47293f2019-12-20 08:58:21 -0700387 int msg_flags;
Jens Axboefddafac2020-01-04 20:19:44 -0700388 size_t len;
Jens Axboee47293f2019-12-20 08:58:21 -0700389};
390
Jens Axboe15b71ab2019-12-11 11:20:36 -0700391struct io_open {
392 struct file *file;
393 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700394 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700395 unsigned mask;
396 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700397 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700398 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700399 struct open_how how;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700400};
401
Jens Axboe05f3fb32019-12-09 11:22:50 -0700402struct io_files_update {
403 struct file *file;
404 u64 arg;
405 u32 nr_args;
406 u32 offset;
407};
408
Jens Axboe4840e412019-12-25 22:03:45 -0700409struct io_fadvise {
410 struct file *file;
411 u64 offset;
412 u32 len;
413 u32 advice;
414};
415
Jens Axboec1ca7572019-12-25 22:18:28 -0700416struct io_madvise {
417 struct file *file;
418 u64 addr;
419 u32 len;
420 u32 advice;
421};
422
Jens Axboef499a022019-12-02 16:28:46 -0700423struct io_async_connect {
424 struct sockaddr_storage address;
425};
426
Jens Axboe03b12302019-12-02 18:50:25 -0700427struct io_async_msghdr {
428 struct iovec fast_iov[UIO_FASTIOV];
429 struct iovec *iov;
430 struct sockaddr __user *uaddr;
431 struct msghdr msg;
432};
433
Jens Axboef67676d2019-12-02 11:03:47 -0700434struct io_async_rw {
435 struct iovec fast_iov[UIO_FASTIOV];
436 struct iovec *iov;
437 ssize_t nr_segs;
438 ssize_t size;
439};
440
Jens Axboe15b71ab2019-12-11 11:20:36 -0700441struct io_async_open {
442 struct filename *filename;
443};
444
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700445struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700446 union {
447 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700448 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700449 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700450 struct io_timeout_data timeout;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700451 struct io_async_open open;
Jens Axboef67676d2019-12-02 11:03:47 -0700452 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700453};
454
Jens Axboe09bb8392019-03-13 12:39:28 -0600455/*
456 * NOTE! Each of the iocb union members has the file pointer
457 * as the first entry in their struct definition. So you can
458 * access the file pointer through any of the sub-structs,
459 * or directly as just 'ki_filp' in this struct.
460 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700461struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700462 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600463 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700464 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700465 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700466 struct io_accept accept;
467 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700468 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700469 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700470 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700471 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700472 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700473 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700474 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700475 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700476 struct io_madvise madvise;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700477 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700478
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700479 struct io_async_ctx *io;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300480 /*
481 * llist_node is only used for poll deferred completions
482 */
483 struct llist_node llist_node;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300484 bool has_user;
485 bool in_async;
486 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700487 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700488
489 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700490 union {
491 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700492 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700493 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600494 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700495 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700496 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200497#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700498#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700499#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700500#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200501#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
Jens Axboe9e645e112019-05-10 16:07:28 -0600502#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700503#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800504#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Jens Axboe5262f562019-09-17 12:26:57 -0600505#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600506#define REQ_F_ISREG 2048 /* regular file */
507#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700508#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800509#define REQ_F_INFLIGHT 16384 /* on inflight list */
510#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe4e88d6e2019-12-07 20:59:47 -0700511#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
Jens Axboece35a472019-12-17 08:04:44 -0700512#define REQ_F_FORCE_ASYNC 131072 /* IOSQE_ASYNC */
Jens Axboeba042912019-12-25 16:33:42 -0700513#define REQ_F_CUR_POS 262144 /* read/write uses file position */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700514 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600515 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600516 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700517
Jens Axboefcb323c2019-10-24 12:39:47 -0600518 struct list_head inflight_entry;
519
Jens Axboe561fb042019-10-24 07:25:42 -0600520 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700521};
522
523#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700524#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700525
Jens Axboe9a56a232019-01-09 09:06:50 -0700526struct io_submit_state {
527 struct blk_plug plug;
528
529 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700530 * io_kiocb alloc cache
531 */
532 void *reqs[IO_IOPOLL_BATCH];
533 unsigned int free_reqs;
534 unsigned int cur_req;
535
536 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700537 * File reference cache
538 */
539 struct file *file;
540 unsigned int fd;
541 unsigned int has_refs;
542 unsigned int used_refs;
543 unsigned int ios_left;
544};
545
Jens Axboed3656342019-12-18 09:50:26 -0700546struct io_op_def {
547 /* needs req->io allocated for deferral/async */
548 unsigned async_ctx : 1;
549 /* needs current->mm setup, does mm access */
550 unsigned needs_mm : 1;
551 /* needs req->file assigned */
552 unsigned needs_file : 1;
553 /* needs req->file assigned IFF fd is >= 0 */
554 unsigned fd_non_neg : 1;
555 /* hash wq insertion if file is a regular file */
556 unsigned hash_reg_file : 1;
557 /* unbound wq insertion if file is a non-regular file */
558 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700559 /* opcode is not supported by this kernel */
560 unsigned not_supported : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700561};
562
563static const struct io_op_def io_op_defs[] = {
564 {
565 /* IORING_OP_NOP */
566 },
567 {
568 /* IORING_OP_READV */
569 .async_ctx = 1,
570 .needs_mm = 1,
571 .needs_file = 1,
572 .unbound_nonreg_file = 1,
573 },
574 {
575 /* IORING_OP_WRITEV */
576 .async_ctx = 1,
577 .needs_mm = 1,
578 .needs_file = 1,
579 .hash_reg_file = 1,
580 .unbound_nonreg_file = 1,
581 },
582 {
583 /* IORING_OP_FSYNC */
584 .needs_file = 1,
585 },
586 {
587 /* IORING_OP_READ_FIXED */
588 .needs_file = 1,
589 .unbound_nonreg_file = 1,
590 },
591 {
592 /* IORING_OP_WRITE_FIXED */
593 .needs_file = 1,
594 .hash_reg_file = 1,
595 .unbound_nonreg_file = 1,
596 },
597 {
598 /* IORING_OP_POLL_ADD */
599 .needs_file = 1,
600 .unbound_nonreg_file = 1,
601 },
602 {
603 /* IORING_OP_POLL_REMOVE */
604 },
605 {
606 /* IORING_OP_SYNC_FILE_RANGE */
607 .needs_file = 1,
608 },
609 {
610 /* IORING_OP_SENDMSG */
611 .async_ctx = 1,
612 .needs_mm = 1,
613 .needs_file = 1,
614 .unbound_nonreg_file = 1,
615 },
616 {
617 /* IORING_OP_RECVMSG */
618 .async_ctx = 1,
619 .needs_mm = 1,
620 .needs_file = 1,
621 .unbound_nonreg_file = 1,
622 },
623 {
624 /* IORING_OP_TIMEOUT */
625 .async_ctx = 1,
626 .needs_mm = 1,
627 },
628 {
629 /* IORING_OP_TIMEOUT_REMOVE */
630 },
631 {
632 /* IORING_OP_ACCEPT */
633 .needs_mm = 1,
634 .needs_file = 1,
635 .unbound_nonreg_file = 1,
636 },
637 {
638 /* IORING_OP_ASYNC_CANCEL */
639 },
640 {
641 /* IORING_OP_LINK_TIMEOUT */
642 .async_ctx = 1,
643 .needs_mm = 1,
644 },
645 {
646 /* IORING_OP_CONNECT */
647 .async_ctx = 1,
648 .needs_mm = 1,
649 .needs_file = 1,
650 .unbound_nonreg_file = 1,
651 },
652 {
653 /* IORING_OP_FALLOCATE */
654 .needs_file = 1,
655 },
656 {
657 /* IORING_OP_OPENAT */
658 .needs_file = 1,
659 .fd_non_neg = 1,
660 },
661 {
662 /* IORING_OP_CLOSE */
663 .needs_file = 1,
664 },
665 {
666 /* IORING_OP_FILES_UPDATE */
667 .needs_mm = 1,
668 },
669 {
670 /* IORING_OP_STATX */
671 .needs_mm = 1,
672 .needs_file = 1,
673 .fd_non_neg = 1,
674 },
Jens Axboe3a6820f2019-12-22 15:19:35 -0700675 {
676 /* IORING_OP_READ */
677 .needs_mm = 1,
678 .needs_file = 1,
679 .unbound_nonreg_file = 1,
680 },
681 {
682 /* IORING_OP_WRITE */
683 .needs_mm = 1,
684 .needs_file = 1,
685 .unbound_nonreg_file = 1,
686 },
Jens Axboe4840e412019-12-25 22:03:45 -0700687 {
688 /* IORING_OP_FADVISE */
689 .needs_file = 1,
690 },
Jens Axboec1ca7572019-12-25 22:18:28 -0700691 {
692 /* IORING_OP_MADVISE */
693 .needs_mm = 1,
694 },
Jens Axboefddafac2020-01-04 20:19:44 -0700695 {
696 /* IORING_OP_SEND */
697 .needs_mm = 1,
698 .needs_file = 1,
699 .unbound_nonreg_file = 1,
700 },
701 {
702 /* IORING_OP_RECV */
703 .needs_mm = 1,
704 .needs_file = 1,
705 .unbound_nonreg_file = 1,
706 },
Jens Axboecebdb982020-01-08 17:59:24 -0700707 {
708 /* IORING_OP_OPENAT2 */
709 .needs_file = 1,
710 .fd_non_neg = 1,
711 },
Jens Axboed3656342019-12-18 09:50:26 -0700712};
713
Jens Axboe561fb042019-10-24 07:25:42 -0600714static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700715static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800716static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700717static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700718static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
719static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700720static int __io_sqe_files_update(struct io_ring_ctx *ctx,
721 struct io_uring_files_update *ip,
722 unsigned nr_args);
Jens Axboede0617e2019-04-06 21:51:27 -0600723
Jens Axboe2b188cc2019-01-07 10:46:33 -0700724static struct kmem_cache *req_cachep;
725
726static const struct file_operations io_uring_fops;
727
728struct sock *io_uring_get_socket(struct file *file)
729{
730#if defined(CONFIG_UNIX)
731 if (file->f_op == &io_uring_fops) {
732 struct io_ring_ctx *ctx = file->private_data;
733
734 return ctx->ring_sock->sk;
735 }
736#endif
737 return NULL;
738}
739EXPORT_SYMBOL(io_uring_get_socket);
740
741static void io_ring_ctx_ref_free(struct percpu_ref *ref)
742{
743 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
744
Jens Axboe206aefd2019-11-07 18:27:42 -0700745 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700746}
747
748static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
749{
750 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700751 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700752
753 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
754 if (!ctx)
755 return NULL;
756
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700757 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
758 if (!ctx->fallback_req)
759 goto err;
760
Jens Axboe206aefd2019-11-07 18:27:42 -0700761 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
762 if (!ctx->completions)
763 goto err;
764
Jens Axboe78076bb2019-12-04 19:56:40 -0700765 /*
766 * Use 5 bits less than the max cq entries, that should give us around
767 * 32 entries per hash list if totally full and uniformly spread.
768 */
769 hash_bits = ilog2(p->cq_entries);
770 hash_bits -= 5;
771 if (hash_bits <= 0)
772 hash_bits = 1;
773 ctx->cancel_hash_bits = hash_bits;
774 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
775 GFP_KERNEL);
776 if (!ctx->cancel_hash)
777 goto err;
778 __hash_init(ctx->cancel_hash, 1U << hash_bits);
779
Roman Gushchin21482892019-05-07 10:01:48 -0700780 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700781 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
782 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700783
784 ctx->flags = p->flags;
785 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700786 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700787 init_completion(&ctx->completions[0]);
788 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700789 mutex_init(&ctx->uring_lock);
790 init_waitqueue_head(&ctx->wait);
791 spin_lock_init(&ctx->completion_lock);
Jens Axboee94f1412019-12-19 12:06:02 -0700792 init_llist_head(&ctx->poll_llist);
Jens Axboedef596e2019-01-09 08:59:42 -0700793 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600794 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600795 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600796 init_waitqueue_head(&ctx->inflight_wait);
797 spin_lock_init(&ctx->inflight_lock);
798 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700799 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700800err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700801 if (ctx->fallback_req)
802 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700803 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700804 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700805 kfree(ctx);
806 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700807}
808
Bob Liu9d858b22019-11-13 18:06:25 +0800809static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600810{
Jackie Liua197f662019-11-08 08:09:12 -0700811 struct io_ring_ctx *ctx = req->ctx;
812
Jens Axboe498ccd92019-10-25 10:04:25 -0600813 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
814 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600815}
816
Bob Liu9d858b22019-11-13 18:06:25 +0800817static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600818{
Pavel Begunkov87987892020-01-18 01:22:30 +0300819 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800820 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600821
Bob Liu9d858b22019-11-13 18:06:25 +0800822 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600823}
824
825static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600826{
827 struct io_kiocb *req;
828
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600829 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800830 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600831 list_del_init(&req->list);
832 return req;
833 }
834
835 return NULL;
836}
837
Jens Axboe5262f562019-09-17 12:26:57 -0600838static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
839{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600840 struct io_kiocb *req;
841
842 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700843 if (req) {
844 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
845 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800846 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700847 list_del_init(&req->list);
848 return req;
849 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600850 }
851
852 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600853}
854
Jens Axboede0617e2019-04-06 21:51:27 -0600855static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700856{
Hristo Venev75b28af2019-08-26 17:23:46 +0000857 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700858
Pavel Begunkov07910152020-01-17 03:52:46 +0300859 /* order cqe stores with ring update */
860 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700861
Pavel Begunkov07910152020-01-17 03:52:46 +0300862 if (wq_has_sleeper(&ctx->cq_wait)) {
863 wake_up_interruptible(&ctx->cq_wait);
864 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700865 }
866}
867
Jens Axboe94ae5e72019-11-14 19:39:52 -0700868static inline bool io_prep_async_work(struct io_kiocb *req,
869 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600870{
Jens Axboed3656342019-12-18 09:50:26 -0700871 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe561fb042019-10-24 07:25:42 -0600872 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600873
Jens Axboed3656342019-12-18 09:50:26 -0700874 if (req->flags & REQ_F_ISREG) {
875 if (def->hash_reg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700876 do_hashed = true;
Jens Axboed3656342019-12-18 09:50:26 -0700877 } else {
878 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700879 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -0600880 }
Jens Axboed3656342019-12-18 09:50:26 -0700881 if (def->needs_mm)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700882 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600883
Jens Axboe94ae5e72019-11-14 19:39:52 -0700884 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600885 return do_hashed;
886}
887
Jackie Liua197f662019-11-08 08:09:12 -0700888static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600889{
Jackie Liua197f662019-11-08 08:09:12 -0700890 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700891 struct io_kiocb *link;
892 bool do_hashed;
893
894 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600895
896 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
897 req->flags);
898 if (!do_hashed) {
899 io_wq_enqueue(ctx->io_wq, &req->work);
900 } else {
901 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
902 file_inode(req->file));
903 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700904
905 if (link)
906 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600907}
908
Jens Axboe5262f562019-09-17 12:26:57 -0600909static void io_kill_timeout(struct io_kiocb *req)
910{
911 int ret;
912
Jens Axboe2d283902019-12-04 11:08:05 -0700913 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600914 if (ret != -1) {
915 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600916 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700917 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800918 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600919 }
920}
921
922static void io_kill_timeouts(struct io_ring_ctx *ctx)
923{
924 struct io_kiocb *req, *tmp;
925
926 spin_lock_irq(&ctx->completion_lock);
927 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
928 io_kill_timeout(req);
929 spin_unlock_irq(&ctx->completion_lock);
930}
931
Jens Axboede0617e2019-04-06 21:51:27 -0600932static void io_commit_cqring(struct io_ring_ctx *ctx)
933{
934 struct io_kiocb *req;
935
Jens Axboe5262f562019-09-17 12:26:57 -0600936 while ((req = io_get_timeout_req(ctx)) != NULL)
937 io_kill_timeout(req);
938
Jens Axboede0617e2019-04-06 21:51:27 -0600939 __io_commit_cqring(ctx);
940
Pavel Begunkov87987892020-01-18 01:22:30 +0300941 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -0700942 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600943}
944
Jens Axboe2b188cc2019-01-07 10:46:33 -0700945static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
946{
Hristo Venev75b28af2019-08-26 17:23:46 +0000947 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700948 unsigned tail;
949
950 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200951 /*
952 * writes to the cq entry need to come after reading head; the
953 * control dependency is enough as we're using WRITE_ONCE to
954 * fill the cq entry
955 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000956 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700957 return NULL;
958
959 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000960 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700961}
962
Jens Axboef2842ab2020-01-08 11:04:00 -0700963static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
964{
965 if (!ctx->eventfd_async)
966 return true;
967 return io_wq_current_is_worker() || in_interrupt();
968}
969
Jens Axboe8c838782019-03-12 15:48:16 -0600970static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
971{
972 if (waitqueue_active(&ctx->wait))
973 wake_up(&ctx->wait);
974 if (waitqueue_active(&ctx->sqo_wait))
975 wake_up(&ctx->sqo_wait);
Jens Axboef2842ab2020-01-08 11:04:00 -0700976 if (ctx->cq_ev_fd && io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -0600977 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600978}
979
Jens Axboec4a2ed72019-11-21 21:01:26 -0700980/* Returns true if there are no backlogged entries after the flush */
981static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700982{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700983 struct io_rings *rings = ctx->rings;
984 struct io_uring_cqe *cqe;
985 struct io_kiocb *req;
986 unsigned long flags;
987 LIST_HEAD(list);
988
989 if (!force) {
990 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700991 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700992 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
993 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700994 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700995 }
996
997 spin_lock_irqsave(&ctx->completion_lock, flags);
998
999 /* if force is set, the ring is going away. always drop after that */
1000 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001001 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001002
Jens Axboec4a2ed72019-11-21 21:01:26 -07001003 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001004 while (!list_empty(&ctx->cq_overflow_list)) {
1005 cqe = io_get_cqring(ctx);
1006 if (!cqe && !force)
1007 break;
1008
1009 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1010 list);
1011 list_move(&req->list, &list);
1012 if (cqe) {
1013 WRITE_ONCE(cqe->user_data, req->user_data);
1014 WRITE_ONCE(cqe->res, req->result);
1015 WRITE_ONCE(cqe->flags, 0);
1016 } else {
1017 WRITE_ONCE(ctx->rings->cq_overflow,
1018 atomic_inc_return(&ctx->cached_cq_overflow));
1019 }
1020 }
1021
1022 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001023 if (cqe) {
1024 clear_bit(0, &ctx->sq_check_overflow);
1025 clear_bit(0, &ctx->cq_check_overflow);
1026 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001027 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1028 io_cqring_ev_posted(ctx);
1029
1030 while (!list_empty(&list)) {
1031 req = list_first_entry(&list, struct io_kiocb, list);
1032 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001033 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001034 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001035
1036 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001037}
1038
Jens Axboe78e19bb2019-11-06 15:21:34 -07001039static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001040{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001041 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001042 struct io_uring_cqe *cqe;
1043
Jens Axboe78e19bb2019-11-06 15:21:34 -07001044 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001045
Jens Axboe2b188cc2019-01-07 10:46:33 -07001046 /*
1047 * If we can't get a cq entry, userspace overflowed the
1048 * submission (by quite a lot). Increment the overflow count in
1049 * the ring.
1050 */
1051 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001052 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001053 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001054 WRITE_ONCE(cqe->res, res);
1055 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001056 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001057 WRITE_ONCE(ctx->rings->cq_overflow,
1058 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001059 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001060 if (list_empty(&ctx->cq_overflow_list)) {
1061 set_bit(0, &ctx->sq_check_overflow);
1062 set_bit(0, &ctx->cq_check_overflow);
1063 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001064 refcount_inc(&req->refs);
1065 req->result = res;
1066 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001067 }
1068}
1069
Jens Axboe78e19bb2019-11-06 15:21:34 -07001070static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001071{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001072 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001073 unsigned long flags;
1074
1075 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001076 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001077 io_commit_cqring(ctx);
1078 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1079
Jens Axboe8c838782019-03-12 15:48:16 -06001080 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001081}
1082
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001083static inline bool io_is_fallback_req(struct io_kiocb *req)
1084{
1085 return req == (struct io_kiocb *)
1086 ((unsigned long) req->ctx->fallback_req & ~1UL);
1087}
1088
1089static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1090{
1091 struct io_kiocb *req;
1092
1093 req = ctx->fallback_req;
1094 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1095 return req;
1096
1097 return NULL;
1098}
1099
Jens Axboe2579f912019-01-09 09:10:43 -07001100static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1101 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001102{
Jens Axboefd6fab22019-03-14 16:30:06 -06001103 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001104 struct io_kiocb *req;
1105
Jens Axboe2579f912019-01-09 09:10:43 -07001106 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001107 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001108 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001109 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001110 } else if (!state->free_reqs) {
1111 size_t sz;
1112 int ret;
1113
1114 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001115 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1116
1117 /*
1118 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1119 * retry single alloc to be on the safe side.
1120 */
1121 if (unlikely(ret <= 0)) {
1122 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1123 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001124 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001125 ret = 1;
1126 }
Jens Axboe2579f912019-01-09 09:10:43 -07001127 state->free_reqs = ret - 1;
1128 state->cur_req = 1;
1129 req = state->reqs[0];
1130 } else {
1131 req = state->reqs[state->cur_req];
1132 state->free_reqs--;
1133 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001134 }
1135
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001136got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001137 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001138 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001139 req->ctx = ctx;
1140 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001141 /* one is dropped after submission, the other at completion */
1142 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001143 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001144 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001145 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001146fallback:
1147 req = io_get_fallback_req(ctx);
1148 if (req)
1149 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001150 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001151 return NULL;
1152}
1153
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001154static void __io_req_do_free(struct io_kiocb *req)
1155{
1156 if (likely(!io_is_fallback_req(req)))
1157 kmem_cache_free(req_cachep, req);
1158 else
1159 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1160}
1161
Jens Axboec6ca97b302019-12-28 12:11:08 -07001162static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001163{
Jens Axboefcb323c2019-10-24 12:39:47 -06001164 struct io_ring_ctx *ctx = req->ctx;
1165
YueHaibing96fd84d2020-01-07 22:22:44 +08001166 kfree(req->io);
Jens Axboe05f3fb32019-12-09 11:22:50 -07001167 if (req->file) {
1168 if (req->flags & REQ_F_FIXED_FILE)
1169 percpu_ref_put(&ctx->file_data->refs);
1170 else
1171 fput(req->file);
1172 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001173}
1174
1175static void __io_free_req(struct io_kiocb *req)
1176{
1177 __io_req_aux_free(req);
1178
Jens Axboefcb323c2019-10-24 12:39:47 -06001179 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001180 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001181 unsigned long flags;
1182
1183 spin_lock_irqsave(&ctx->inflight_lock, flags);
1184 list_del(&req->inflight_entry);
1185 if (waitqueue_active(&ctx->inflight_wait))
1186 wake_up(&ctx->inflight_wait);
1187 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1188 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001189
1190 percpu_ref_put(&req->ctx->refs);
1191 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001192}
1193
Jens Axboec6ca97b302019-12-28 12:11:08 -07001194struct req_batch {
1195 void *reqs[IO_IOPOLL_BATCH];
1196 int to_free;
1197 int need_iter;
1198};
1199
1200static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1201{
Jens Axboe10fef4b2020-01-09 07:52:28 -07001202 int fixed_refs = rb->to_free;
1203
Jens Axboec6ca97b302019-12-28 12:11:08 -07001204 if (!rb->to_free)
1205 return;
1206 if (rb->need_iter) {
1207 int i, inflight = 0;
1208 unsigned long flags;
1209
Jens Axboe10fef4b2020-01-09 07:52:28 -07001210 fixed_refs = 0;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001211 for (i = 0; i < rb->to_free; i++) {
1212 struct io_kiocb *req = rb->reqs[i];
1213
Jens Axboe10fef4b2020-01-09 07:52:28 -07001214 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001215 req->file = NULL;
Jens Axboe10fef4b2020-01-09 07:52:28 -07001216 fixed_refs++;
1217 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001218 if (req->flags & REQ_F_INFLIGHT)
1219 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001220 __io_req_aux_free(req);
1221 }
1222 if (!inflight)
1223 goto do_free;
1224
1225 spin_lock_irqsave(&ctx->inflight_lock, flags);
1226 for (i = 0; i < rb->to_free; i++) {
1227 struct io_kiocb *req = rb->reqs[i];
1228
Jens Axboe10fef4b2020-01-09 07:52:28 -07001229 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001230 list_del(&req->inflight_entry);
1231 if (!--inflight)
1232 break;
1233 }
1234 }
1235 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1236
1237 if (waitqueue_active(&ctx->inflight_wait))
1238 wake_up(&ctx->inflight_wait);
1239 }
1240do_free:
1241 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001242 if (fixed_refs)
1243 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001244 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001245 rb->to_free = rb->need_iter = 0;
1246}
1247
Jackie Liua197f662019-11-08 08:09:12 -07001248static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001249{
Jackie Liua197f662019-11-08 08:09:12 -07001250 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001251 int ret;
1252
Jens Axboe2d283902019-12-04 11:08:05 -07001253 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001254 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001255 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001256 io_commit_cqring(ctx);
1257 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001258 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001259 return true;
1260 }
1261
1262 return false;
1263}
1264
Jens Axboeba816ad2019-09-28 11:36:45 -06001265static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001266{
Jens Axboe2665abf2019-11-05 12:40:47 -07001267 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001268 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001269
Jens Axboe4d7dd462019-11-20 13:03:52 -07001270 /* Already got next link */
1271 if (req->flags & REQ_F_LINK_NEXT)
1272 return;
1273
Jens Axboe9e645e112019-05-10 16:07:28 -06001274 /*
1275 * The list should never be empty when we are called here. But could
1276 * potentially happen if the chain is messed up, check to be on the
1277 * safe side.
1278 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001279 while (!list_empty(&req->link_list)) {
1280 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1281 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001282
Pavel Begunkov44932332019-12-05 16:16:35 +03001283 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1284 (nxt->flags & REQ_F_TIMEOUT))) {
1285 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001286 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001287 req->flags &= ~REQ_F_LINK_TIMEOUT;
1288 continue;
1289 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001290
Pavel Begunkov44932332019-12-05 16:16:35 +03001291 list_del_init(&req->link_list);
1292 if (!list_empty(&nxt->link_list))
1293 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001294 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001295 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001296 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001297
Jens Axboe4d7dd462019-11-20 13:03:52 -07001298 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001299 if (wake_ev)
1300 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001301}
1302
1303/*
1304 * Called if REQ_F_LINK is set, and we fail the head request
1305 */
1306static void io_fail_links(struct io_kiocb *req)
1307{
Jens Axboe2665abf2019-11-05 12:40:47 -07001308 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001309 unsigned long flags;
1310
1311 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001312
1313 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001314 struct io_kiocb *link = list_first_entry(&req->link_list,
1315 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001316
Pavel Begunkov44932332019-12-05 16:16:35 +03001317 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001318 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001319
1320 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001321 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001322 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001323 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001324 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001325 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001326 }
Jens Axboe5d960722019-11-19 15:31:28 -07001327 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001328 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001329
1330 io_commit_cqring(ctx);
1331 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1332 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001333}
1334
Jens Axboe4d7dd462019-11-20 13:03:52 -07001335static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001336{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001337 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001338 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001339
Jens Axboe9e645e112019-05-10 16:07:28 -06001340 /*
1341 * If LINK is set, we have dependent requests in this chain. If we
1342 * didn't fail this request, queue the first one up, moving any other
1343 * dependencies to the next request. In case of failure, fail the rest
1344 * of the chain.
1345 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001346 if (req->flags & REQ_F_FAIL_LINK) {
1347 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001348 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1349 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001350 struct io_ring_ctx *ctx = req->ctx;
1351 unsigned long flags;
1352
1353 /*
1354 * If this is a timeout link, we could be racing with the
1355 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001356 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001357 */
1358 spin_lock_irqsave(&ctx->completion_lock, flags);
1359 io_req_link_next(req, nxt);
1360 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1361 } else {
1362 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001363 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001364}
Jens Axboe9e645e112019-05-10 16:07:28 -06001365
Jackie Liuc69f8db2019-11-09 11:00:08 +08001366static void io_free_req(struct io_kiocb *req)
1367{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001368 struct io_kiocb *nxt = NULL;
1369
1370 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001371 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001372
1373 if (nxt)
1374 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001375}
1376
Jens Axboeba816ad2019-09-28 11:36:45 -06001377/*
1378 * Drop reference to request, return next in chain (if there is one) if this
1379 * was the last reference to this request.
1380 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001381__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001382static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001383{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001384 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001385
Jens Axboee65ef562019-03-12 10:16:44 -06001386 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001387 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001388}
1389
Jens Axboe2b188cc2019-01-07 10:46:33 -07001390static void io_put_req(struct io_kiocb *req)
1391{
Jens Axboedef596e2019-01-09 08:59:42 -07001392 if (refcount_dec_and_test(&req->refs))
1393 io_free_req(req);
1394}
1395
Jens Axboe978db572019-11-14 22:39:04 -07001396/*
1397 * Must only be used if we don't need to care about links, usually from
1398 * within the completion handling itself.
1399 */
1400static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001401{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001402 /* drop both submit and complete references */
1403 if (refcount_sub_and_test(2, &req->refs))
1404 __io_free_req(req);
1405}
1406
Jens Axboe978db572019-11-14 22:39:04 -07001407static void io_double_put_req(struct io_kiocb *req)
1408{
1409 /* drop both submit and complete references */
1410 if (refcount_sub_and_test(2, &req->refs))
1411 io_free_req(req);
1412}
1413
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001414static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001415{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001416 struct io_rings *rings = ctx->rings;
1417
Jens Axboead3eb2c2019-12-18 17:12:20 -07001418 if (test_bit(0, &ctx->cq_check_overflow)) {
1419 /*
1420 * noflush == true is from the waitqueue handler, just ensure
1421 * we wake up the task, and the next invocation will flush the
1422 * entries. We cannot safely to it from here.
1423 */
1424 if (noflush && !list_empty(&ctx->cq_overflow_list))
1425 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001426
Jens Axboead3eb2c2019-12-18 17:12:20 -07001427 io_cqring_overflow_flush(ctx, false);
1428 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001429
Jens Axboea3a0e432019-08-20 11:03:11 -06001430 /* See comment at the top of this file */
1431 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001432 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001433}
1434
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001435static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1436{
1437 struct io_rings *rings = ctx->rings;
1438
1439 /* make sure SQ entry isn't read before tail */
1440 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1441}
1442
Jens Axboe8237e042019-12-28 10:48:22 -07001443static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001444{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001445 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1446 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001447
Jens Axboec6ca97b302019-12-28 12:11:08 -07001448 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1449 rb->need_iter++;
1450
1451 rb->reqs[rb->to_free++] = req;
1452 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1453 io_free_req_many(req->ctx, rb);
1454 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001455}
1456
Jens Axboedef596e2019-01-09 08:59:42 -07001457/*
1458 * Find and free completed poll iocbs
1459 */
1460static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1461 struct list_head *done)
1462{
Jens Axboe8237e042019-12-28 10:48:22 -07001463 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001464 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001465
Jens Axboec6ca97b302019-12-28 12:11:08 -07001466 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001467 while (!list_empty(done)) {
1468 req = list_first_entry(done, struct io_kiocb, list);
1469 list_del(&req->list);
1470
Jens Axboe78e19bb2019-11-06 15:21:34 -07001471 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001472 (*nr_events)++;
1473
Jens Axboe8237e042019-12-28 10:48:22 -07001474 if (refcount_dec_and_test(&req->refs) &&
1475 !io_req_multi_free(&rb, req))
1476 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001477 }
Jens Axboedef596e2019-01-09 08:59:42 -07001478
Jens Axboe09bb8392019-03-13 12:39:28 -06001479 io_commit_cqring(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001480 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001481}
1482
1483static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1484 long min)
1485{
1486 struct io_kiocb *req, *tmp;
1487 LIST_HEAD(done);
1488 bool spin;
1489 int ret;
1490
1491 /*
1492 * Only spin for completions if we don't have multiple devices hanging
1493 * off our complete list, and we're under the requested amount.
1494 */
1495 spin = !ctx->poll_multi_file && *nr_events < min;
1496
1497 ret = 0;
1498 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001499 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001500
1501 /*
1502 * Move completed entries to our local list. If we find a
1503 * request that requires polling, break out and complete
1504 * the done list first, if we have entries there.
1505 */
1506 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1507 list_move_tail(&req->list, &done);
1508 continue;
1509 }
1510 if (!list_empty(&done))
1511 break;
1512
1513 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1514 if (ret < 0)
1515 break;
1516
1517 if (ret && spin)
1518 spin = false;
1519 ret = 0;
1520 }
1521
1522 if (!list_empty(&done))
1523 io_iopoll_complete(ctx, nr_events, &done);
1524
1525 return ret;
1526}
1527
1528/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001529 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001530 * non-spinning poll check - we'll still enter the driver poll loop, but only
1531 * as a non-spinning completion check.
1532 */
1533static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1534 long min)
1535{
Jens Axboe08f54392019-08-21 22:19:11 -06001536 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001537 int ret;
1538
1539 ret = io_do_iopoll(ctx, nr_events, min);
1540 if (ret < 0)
1541 return ret;
1542 if (!min || *nr_events >= min)
1543 return 0;
1544 }
1545
1546 return 1;
1547}
1548
1549/*
1550 * We can't just wait for polled events to come to us, we have to actively
1551 * find and complete them.
1552 */
1553static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1554{
1555 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1556 return;
1557
1558 mutex_lock(&ctx->uring_lock);
1559 while (!list_empty(&ctx->poll_list)) {
1560 unsigned int nr_events = 0;
1561
1562 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001563
1564 /*
1565 * Ensure we allow local-to-the-cpu processing to take place,
1566 * in this case we need to ensure that we reap all events.
1567 */
1568 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001569 }
1570 mutex_unlock(&ctx->uring_lock);
1571}
1572
Jens Axboe2b2ed972019-10-25 10:06:15 -06001573static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1574 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001575{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001576 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001577
1578 do {
1579 int tmin = 0;
1580
Jens Axboe500f9fb2019-08-19 12:15:59 -06001581 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001582 * Don't enter poll loop if we already have events pending.
1583 * If we do, we can potentially be spinning for commands that
1584 * already triggered a CQE (eg in error).
1585 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001586 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001587 break;
1588
1589 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001590 * If a submit got punted to a workqueue, we can have the
1591 * application entering polling for a command before it gets
1592 * issued. That app will hold the uring_lock for the duration
1593 * of the poll right here, so we need to take a breather every
1594 * now and then to ensure that the issue has a chance to add
1595 * the poll to the issued list. Otherwise we can spin here
1596 * forever, while the workqueue is stuck trying to acquire the
1597 * very same mutex.
1598 */
1599 if (!(++iters & 7)) {
1600 mutex_unlock(&ctx->uring_lock);
1601 mutex_lock(&ctx->uring_lock);
1602 }
1603
Jens Axboedef596e2019-01-09 08:59:42 -07001604 if (*nr_events < min)
1605 tmin = min - *nr_events;
1606
1607 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1608 if (ret <= 0)
1609 break;
1610 ret = 0;
1611 } while (min && !*nr_events && !need_resched());
1612
Jens Axboe2b2ed972019-10-25 10:06:15 -06001613 return ret;
1614}
1615
1616static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1617 long min)
1618{
1619 int ret;
1620
1621 /*
1622 * We disallow the app entering submit/complete with polling, but we
1623 * still need to lock the ring to prevent racing with polled issue
1624 * that got punted to a workqueue.
1625 */
1626 mutex_lock(&ctx->uring_lock);
1627 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001628 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001629 return ret;
1630}
1631
Jens Axboe491381ce2019-10-17 09:20:46 -06001632static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001633{
Jens Axboe491381ce2019-10-17 09:20:46 -06001634 /*
1635 * Tell lockdep we inherited freeze protection from submission
1636 * thread.
1637 */
1638 if (req->flags & REQ_F_ISREG) {
1639 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001640
Jens Axboe491381ce2019-10-17 09:20:46 -06001641 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001642 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001643 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001644}
1645
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001646static inline void req_set_fail_links(struct io_kiocb *req)
1647{
1648 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1649 req->flags |= REQ_F_FAIL_LINK;
1650}
1651
Jens Axboeba816ad2019-09-28 11:36:45 -06001652static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001653{
Jens Axboe9adbd452019-12-20 08:45:55 -07001654 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001655
Jens Axboe491381ce2019-10-17 09:20:46 -06001656 if (kiocb->ki_flags & IOCB_WRITE)
1657 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001658
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001659 if (res != req->result)
1660 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001661 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001662}
1663
1664static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1665{
Jens Axboe9adbd452019-12-20 08:45:55 -07001666 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001667
1668 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001669 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001670}
1671
Jens Axboeba816ad2019-09-28 11:36:45 -06001672static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1673{
Jens Axboe9adbd452019-12-20 08:45:55 -07001674 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001675 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001676
1677 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001678 io_put_req_find_next(req, &nxt);
1679
1680 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001681}
1682
Jens Axboedef596e2019-01-09 08:59:42 -07001683static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1684{
Jens Axboe9adbd452019-12-20 08:45:55 -07001685 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001686
Jens Axboe491381ce2019-10-17 09:20:46 -06001687 if (kiocb->ki_flags & IOCB_WRITE)
1688 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001689
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001690 if (res != req->result)
1691 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001692 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001693 if (res != -EAGAIN)
1694 req->flags |= REQ_F_IOPOLL_COMPLETED;
1695}
1696
1697/*
1698 * After the iocb has been issued, it's safe to be found on the poll list.
1699 * Adding the kiocb to the list AFTER submission ensures that we don't
1700 * find it from a io_iopoll_getevents() thread before the issuer is done
1701 * accessing the kiocb cookie.
1702 */
1703static void io_iopoll_req_issued(struct io_kiocb *req)
1704{
1705 struct io_ring_ctx *ctx = req->ctx;
1706
1707 /*
1708 * Track whether we have multiple files in our lists. This will impact
1709 * how we do polling eventually, not spinning if we're on potentially
1710 * different devices.
1711 */
1712 if (list_empty(&ctx->poll_list)) {
1713 ctx->poll_multi_file = false;
1714 } else if (!ctx->poll_multi_file) {
1715 struct io_kiocb *list_req;
1716
1717 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1718 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001719 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001720 ctx->poll_multi_file = true;
1721 }
1722
1723 /*
1724 * For fast devices, IO may have already completed. If it has, add
1725 * it to the front so we find it first.
1726 */
1727 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1728 list_add(&req->list, &ctx->poll_list);
1729 else
1730 list_add_tail(&req->list, &ctx->poll_list);
1731}
1732
Jens Axboe3d6770f2019-04-13 11:50:54 -06001733static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001734{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001735 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001736 int diff = state->has_refs - state->used_refs;
1737
1738 if (diff)
1739 fput_many(state->file, diff);
1740 state->file = NULL;
1741 }
1742}
1743
1744/*
1745 * Get as many references to a file as we have IOs left in this submission,
1746 * assuming most submissions are for one file, or at least that each file
1747 * has more than one submission.
1748 */
1749static struct file *io_file_get(struct io_submit_state *state, int fd)
1750{
1751 if (!state)
1752 return fget(fd);
1753
1754 if (state->file) {
1755 if (state->fd == fd) {
1756 state->used_refs++;
1757 state->ios_left--;
1758 return state->file;
1759 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001760 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001761 }
1762 state->file = fget_many(fd, state->ios_left);
1763 if (!state->file)
1764 return NULL;
1765
1766 state->fd = fd;
1767 state->has_refs = state->ios_left;
1768 state->used_refs = 1;
1769 state->ios_left--;
1770 return state->file;
1771}
1772
Jens Axboe2b188cc2019-01-07 10:46:33 -07001773/*
1774 * If we tracked the file through the SCM inflight mechanism, we could support
1775 * any file. For now, just ensure that anything potentially problematic is done
1776 * inline.
1777 */
1778static bool io_file_supports_async(struct file *file)
1779{
1780 umode_t mode = file_inode(file)->i_mode;
1781
Jens Axboe10d59342019-12-09 20:16:22 -07001782 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001783 return true;
1784 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1785 return true;
1786
1787 return false;
1788}
1789
Jens Axboe3529d8c2019-12-19 18:24:38 -07001790static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1791 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001792{
Jens Axboedef596e2019-01-09 08:59:42 -07001793 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001794 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001795 unsigned ioprio;
1796 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001797
Jens Axboe09bb8392019-03-13 12:39:28 -06001798 if (!req->file)
1799 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001800
Jens Axboe491381ce2019-10-17 09:20:46 -06001801 if (S_ISREG(file_inode(req->file)->i_mode))
1802 req->flags |= REQ_F_ISREG;
1803
Jens Axboe2b188cc2019-01-07 10:46:33 -07001804 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07001805 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
1806 req->flags |= REQ_F_CUR_POS;
1807 kiocb->ki_pos = req->file->f_pos;
1808 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001809 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1810 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1811
1812 ioprio = READ_ONCE(sqe->ioprio);
1813 if (ioprio) {
1814 ret = ioprio_check_cap(ioprio);
1815 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001816 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001817
1818 kiocb->ki_ioprio = ioprio;
1819 } else
1820 kiocb->ki_ioprio = get_current_ioprio();
1821
1822 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1823 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001824 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001825
1826 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001827 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1828 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001829 req->flags |= REQ_F_NOWAIT;
1830
1831 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001832 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001833
Jens Axboedef596e2019-01-09 08:59:42 -07001834 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001835 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1836 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001837 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001838
Jens Axboedef596e2019-01-09 08:59:42 -07001839 kiocb->ki_flags |= IOCB_HIPRI;
1840 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001841 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001842 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001843 if (kiocb->ki_flags & IOCB_HIPRI)
1844 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001845 kiocb->ki_complete = io_complete_rw;
1846 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001847
Jens Axboe3529d8c2019-12-19 18:24:38 -07001848 req->rw.addr = READ_ONCE(sqe->addr);
1849 req->rw.len = READ_ONCE(sqe->len);
Jens Axboe9adbd452019-12-20 08:45:55 -07001850 /* we own ->private, reuse it for the buffer index */
1851 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001852 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001853 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001854}
1855
1856static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1857{
1858 switch (ret) {
1859 case -EIOCBQUEUED:
1860 break;
1861 case -ERESTARTSYS:
1862 case -ERESTARTNOINTR:
1863 case -ERESTARTNOHAND:
1864 case -ERESTART_RESTARTBLOCK:
1865 /*
1866 * We can't just restart the syscall, since previously
1867 * submitted sqes may already be in progress. Just fail this
1868 * IO with EINTR.
1869 */
1870 ret = -EINTR;
1871 /* fall through */
1872 default:
1873 kiocb->ki_complete(kiocb, ret, 0);
1874 }
1875}
1876
Jens Axboeba816ad2019-09-28 11:36:45 -06001877static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1878 bool in_async)
1879{
Jens Axboeba042912019-12-25 16:33:42 -07001880 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
1881
1882 if (req->flags & REQ_F_CUR_POS)
1883 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001884 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001885 *nxt = __io_complete_rw(kiocb, ret);
1886 else
1887 io_rw_done(kiocb, ret);
1888}
1889
Jens Axboe9adbd452019-12-20 08:45:55 -07001890static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03001891 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001892{
Jens Axboe9adbd452019-12-20 08:45:55 -07001893 struct io_ring_ctx *ctx = req->ctx;
1894 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001895 struct io_mapped_ubuf *imu;
1896 unsigned index, buf_index;
1897 size_t offset;
1898 u64 buf_addr;
1899
1900 /* attempt to use fixed buffers without having provided iovecs */
1901 if (unlikely(!ctx->user_bufs))
1902 return -EFAULT;
1903
Jens Axboe9adbd452019-12-20 08:45:55 -07001904 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07001905 if (unlikely(buf_index >= ctx->nr_user_bufs))
1906 return -EFAULT;
1907
1908 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1909 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07001910 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07001911
1912 /* overflow */
1913 if (buf_addr + len < buf_addr)
1914 return -EFAULT;
1915 /* not inside the mapped region */
1916 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1917 return -EFAULT;
1918
1919 /*
1920 * May not be a start of buffer, set size appropriately
1921 * and advance us to the beginning.
1922 */
1923 offset = buf_addr - imu->ubuf;
1924 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001925
1926 if (offset) {
1927 /*
1928 * Don't use iov_iter_advance() here, as it's really slow for
1929 * using the latter parts of a big fixed buffer - it iterates
1930 * over each segment manually. We can cheat a bit here, because
1931 * we know that:
1932 *
1933 * 1) it's a BVEC iter, we set it up
1934 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1935 * first and last bvec
1936 *
1937 * So just find our index, and adjust the iterator afterwards.
1938 * If the offset is within the first bvec (or the whole first
1939 * bvec, just use iov_iter_advance(). This makes it easier
1940 * since we can just skip the first segment, which may not
1941 * be PAGE_SIZE aligned.
1942 */
1943 const struct bio_vec *bvec = imu->bvec;
1944
1945 if (offset <= bvec->bv_len) {
1946 iov_iter_advance(iter, offset);
1947 } else {
1948 unsigned long seg_skip;
1949
1950 /* skip first vec */
1951 offset -= bvec->bv_len;
1952 seg_skip = 1 + (offset >> PAGE_SHIFT);
1953
1954 iter->bvec = bvec + seg_skip;
1955 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001956 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001957 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001958 }
1959 }
1960
Jens Axboe5e559562019-11-13 16:12:46 -07001961 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001962}
1963
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001964static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1965 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001966{
Jens Axboe9adbd452019-12-20 08:45:55 -07001967 void __user *buf = u64_to_user_ptr(req->rw.addr);
1968 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001969 u8 opcode;
1970
Jens Axboed625c6e2019-12-17 19:53:05 -07001971 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001972 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001973 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07001974 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001975 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001976
Jens Axboe9adbd452019-12-20 08:45:55 -07001977 /* buffer index only valid with fixed read/write */
1978 if (req->rw.kiocb.private)
1979 return -EINVAL;
1980
Jens Axboe3a6820f2019-12-22 15:19:35 -07001981 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
1982 ssize_t ret;
1983 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
1984 *iovec = NULL;
1985 return ret;
1986 }
1987
Jens Axboef67676d2019-12-02 11:03:47 -07001988 if (req->io) {
1989 struct io_async_rw *iorw = &req->io->rw;
1990
1991 *iovec = iorw->iov;
1992 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1993 if (iorw->iov == iorw->fast_iov)
1994 *iovec = NULL;
1995 return iorw->size;
1996 }
1997
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001998 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001999 return -EFAULT;
2000
2001#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002002 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002003 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2004 iovec, iter);
2005#endif
2006
2007 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2008}
2009
Jens Axboe32960612019-09-23 11:05:34 -06002010/*
2011 * For files that don't have ->read_iter() and ->write_iter(), handle them
2012 * by looping over ->read() or ->write() manually.
2013 */
2014static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2015 struct iov_iter *iter)
2016{
2017 ssize_t ret = 0;
2018
2019 /*
2020 * Don't support polled IO through this interface, and we can't
2021 * support non-blocking either. For the latter, this just causes
2022 * the kiocb to be handled from an async context.
2023 */
2024 if (kiocb->ki_flags & IOCB_HIPRI)
2025 return -EOPNOTSUPP;
2026 if (kiocb->ki_flags & IOCB_NOWAIT)
2027 return -EAGAIN;
2028
2029 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002030 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002031 ssize_t nr;
2032
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002033 if (!iov_iter_is_bvec(iter)) {
2034 iovec = iov_iter_iovec(iter);
2035 } else {
2036 /* fixed buffers import bvec */
2037 iovec.iov_base = kmap(iter->bvec->bv_page)
2038 + iter->iov_offset;
2039 iovec.iov_len = min(iter->count,
2040 iter->bvec->bv_len - iter->iov_offset);
2041 }
2042
Jens Axboe32960612019-09-23 11:05:34 -06002043 if (rw == READ) {
2044 nr = file->f_op->read(file, iovec.iov_base,
2045 iovec.iov_len, &kiocb->ki_pos);
2046 } else {
2047 nr = file->f_op->write(file, iovec.iov_base,
2048 iovec.iov_len, &kiocb->ki_pos);
2049 }
2050
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002051 if (iov_iter_is_bvec(iter))
2052 kunmap(iter->bvec->bv_page);
2053
Jens Axboe32960612019-09-23 11:05:34 -06002054 if (nr < 0) {
2055 if (!ret)
2056 ret = nr;
2057 break;
2058 }
2059 ret += nr;
2060 if (nr != iovec.iov_len)
2061 break;
2062 iov_iter_advance(iter, nr);
2063 }
2064
2065 return ret;
2066}
2067
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002068static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002069 struct iovec *iovec, struct iovec *fast_iov,
2070 struct iov_iter *iter)
2071{
2072 req->io->rw.nr_segs = iter->nr_segs;
2073 req->io->rw.size = io_size;
2074 req->io->rw.iov = iovec;
2075 if (!req->io->rw.iov) {
2076 req->io->rw.iov = req->io->rw.fast_iov;
2077 memcpy(req->io->rw.iov, fast_iov,
2078 sizeof(struct iovec) * iter->nr_segs);
2079 }
2080}
2081
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002082static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002083{
Jens Axboed3656342019-12-18 09:50:26 -07002084 if (!io_op_defs[req->opcode].async_ctx)
2085 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002086 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002087 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002088}
2089
2090static void io_rw_async(struct io_wq_work **workptr)
2091{
2092 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2093 struct iovec *iov = NULL;
2094
2095 if (req->io->rw.iov != req->io->rw.fast_iov)
2096 iov = req->io->rw.iov;
2097 io_wq_submit_work(workptr);
2098 kfree(iov);
2099}
2100
2101static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2102 struct iovec *iovec, struct iovec *fast_iov,
2103 struct iov_iter *iter)
2104{
Jens Axboe74566df2020-01-13 19:23:24 -07002105 if (req->opcode == IORING_OP_READ_FIXED ||
2106 req->opcode == IORING_OP_WRITE_FIXED)
2107 return 0;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002108 if (!req->io && io_alloc_async_ctx(req))
2109 return -ENOMEM;
2110
2111 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2112 req->work.func = io_rw_async;
2113 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002114}
2115
Jens Axboe3529d8c2019-12-19 18:24:38 -07002116static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2117 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002118{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002119 struct io_async_ctx *io;
2120 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002121 ssize_t ret;
2122
Jens Axboe3529d8c2019-12-19 18:24:38 -07002123 ret = io_prep_rw(req, sqe, force_nonblock);
2124 if (ret)
2125 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002126
Jens Axboe3529d8c2019-12-19 18:24:38 -07002127 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2128 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002129
Jens Axboe3529d8c2019-12-19 18:24:38 -07002130 if (!req->io)
2131 return 0;
2132
2133 io = req->io;
2134 io->rw.iov = io->rw.fast_iov;
2135 req->io = NULL;
2136 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
2137 req->io = io;
2138 if (ret < 0)
2139 return ret;
2140
2141 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2142 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002143}
2144
Pavel Begunkov267bc902019-11-07 01:41:08 +03002145static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002146 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002147{
2148 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002149 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002150 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002151 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002152 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002153
Jens Axboe3529d8c2019-12-19 18:24:38 -07002154 ret = io_import_iovec(READ, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002155 if (ret < 0)
2156 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002157
Jens Axboefd6c2e42019-12-18 12:19:41 -07002158 /* Ensure we clear previously set non-block flag */
2159 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002160 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002161
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002162 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002163 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002164 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002165 req->result = io_size;
2166
2167 /*
2168 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2169 * we know to async punt it even if it was opened O_NONBLOCK
2170 */
Jens Axboe9adbd452019-12-20 08:45:55 -07002171 if (force_nonblock && !io_file_supports_async(req->file)) {
Jens Axboef67676d2019-12-02 11:03:47 -07002172 req->flags |= REQ_F_MUST_PUNT;
2173 goto copy_iov;
2174 }
Jens Axboe9e645e112019-05-10 16:07:28 -06002175
Jens Axboe31b51512019-01-18 22:56:34 -07002176 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002177 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002178 if (!ret) {
2179 ssize_t ret2;
2180
Jens Axboe9adbd452019-12-20 08:45:55 -07002181 if (req->file->f_op->read_iter)
2182 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002183 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002184 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002185
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002186 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002187 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002188 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002189 } else {
2190copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002191 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002192 inline_vecs, &iter);
2193 if (ret)
2194 goto out_free;
2195 return -EAGAIN;
2196 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002197 }
Jens Axboef67676d2019-12-02 11:03:47 -07002198out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002199 if (!io_wq_current_is_worker())
2200 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002201 return ret;
2202}
2203
Jens Axboe3529d8c2019-12-19 18:24:38 -07002204static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2205 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002206{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002207 struct io_async_ctx *io;
2208 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002209 ssize_t ret;
2210
Jens Axboe3529d8c2019-12-19 18:24:38 -07002211 ret = io_prep_rw(req, sqe, force_nonblock);
2212 if (ret)
2213 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002214
Jens Axboe3529d8c2019-12-19 18:24:38 -07002215 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2216 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002217
Jens Axboe3529d8c2019-12-19 18:24:38 -07002218 if (!req->io)
2219 return 0;
2220
2221 io = req->io;
2222 io->rw.iov = io->rw.fast_iov;
2223 req->io = NULL;
2224 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
2225 req->io = io;
2226 if (ret < 0)
2227 return ret;
2228
2229 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2230 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002231}
2232
Pavel Begunkov267bc902019-11-07 01:41:08 +03002233static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002234 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002235{
2236 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002237 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002238 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002239 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002240 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002241
Jens Axboe3529d8c2019-12-19 18:24:38 -07002242 ret = io_import_iovec(WRITE, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002243 if (ret < 0)
2244 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002245
Jens Axboefd6c2e42019-12-18 12:19:41 -07002246 /* Ensure we clear previously set non-block flag */
2247 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002248 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002249
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002250 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002251 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002252 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002253 req->result = io_size;
2254
2255 /*
2256 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2257 * we know to async punt it even if it was opened O_NONBLOCK
2258 */
2259 if (force_nonblock && !io_file_supports_async(req->file)) {
2260 req->flags |= REQ_F_MUST_PUNT;
2261 goto copy_iov;
2262 }
2263
Jens Axboe10d59342019-12-09 20:16:22 -07002264 /* file path doesn't support NOWAIT for non-direct_IO */
2265 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2266 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002267 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002268
Jens Axboe31b51512019-01-18 22:56:34 -07002269 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002270 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002271 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002272 ssize_t ret2;
2273
Jens Axboe2b188cc2019-01-07 10:46:33 -07002274 /*
2275 * Open-code file_start_write here to grab freeze protection,
2276 * which will be released by another thread in
2277 * io_complete_rw(). Fool lockdep by telling it the lock got
2278 * released so that it doesn't complain about the held lock when
2279 * we return to userspace.
2280 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002281 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002282 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002283 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002284 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002285 SB_FREEZE_WRITE);
2286 }
2287 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002288
Jens Axboe9adbd452019-12-20 08:45:55 -07002289 if (req->file->f_op->write_iter)
2290 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002291 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002292 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07002293 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002294 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002295 } else {
2296copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002297 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002298 inline_vecs, &iter);
2299 if (ret)
2300 goto out_free;
2301 return -EAGAIN;
2302 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002303 }
Jens Axboe31b51512019-01-18 22:56:34 -07002304out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002305 if (!io_wq_current_is_worker())
2306 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002307 return ret;
2308}
2309
2310/*
2311 * IORING_OP_NOP just posts a completion event, nothing else.
2312 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002313static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002314{
2315 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002316
Jens Axboedef596e2019-01-09 08:59:42 -07002317 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2318 return -EINVAL;
2319
Jens Axboe78e19bb2019-11-06 15:21:34 -07002320 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002321 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002322 return 0;
2323}
2324
Jens Axboe3529d8c2019-12-19 18:24:38 -07002325static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002326{
Jens Axboe6b063142019-01-10 22:13:58 -07002327 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002328
Jens Axboe09bb8392019-03-13 12:39:28 -06002329 if (!req->file)
2330 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002331
Jens Axboe6b063142019-01-10 22:13:58 -07002332 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002333 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002334 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002335 return -EINVAL;
2336
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002337 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2338 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2339 return -EINVAL;
2340
2341 req->sync.off = READ_ONCE(sqe->off);
2342 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002343 return 0;
2344}
2345
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002346static bool io_req_cancelled(struct io_kiocb *req)
2347{
2348 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2349 req_set_fail_links(req);
2350 io_cqring_add_event(req, -ECANCELED);
2351 io_put_req(req);
2352 return true;
2353 }
2354
2355 return false;
2356}
2357
Jens Axboe78912932020-01-14 22:09:06 -07002358static void io_link_work_cb(struct io_wq_work **workptr)
2359{
2360 struct io_wq_work *work = *workptr;
2361 struct io_kiocb *link = work->data;
2362
2363 io_queue_linked_timeout(link);
2364 work->func = io_wq_submit_work;
2365}
2366
2367static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2368{
2369 struct io_kiocb *link;
2370
2371 io_prep_async_work(nxt, &link);
2372 *workptr = &nxt->work;
2373 if (link) {
2374 nxt->work.flags |= IO_WQ_WORK_CB;
2375 nxt->work.func = io_link_work_cb;
2376 nxt->work.data = link;
2377 }
2378}
2379
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002380static void io_fsync_finish(struct io_wq_work **workptr)
2381{
2382 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2383 loff_t end = req->sync.off + req->sync.len;
2384 struct io_kiocb *nxt = NULL;
2385 int ret;
2386
2387 if (io_req_cancelled(req))
2388 return;
2389
Jens Axboe9adbd452019-12-20 08:45:55 -07002390 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002391 end > 0 ? end : LLONG_MAX,
2392 req->sync.flags & IORING_FSYNC_DATASYNC);
2393 if (ret < 0)
2394 req_set_fail_links(req);
2395 io_cqring_add_event(req, ret);
2396 io_put_req_find_next(req, &nxt);
2397 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002398 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002399}
2400
Jens Axboefc4df992019-12-10 14:38:45 -07002401static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2402 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002403{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002404 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002405
2406 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002407 if (force_nonblock) {
2408 io_put_req(req);
2409 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002410 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002411 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002412
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002413 work = old_work = &req->work;
2414 io_fsync_finish(&work);
2415 if (work && work != old_work)
2416 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002417 return 0;
2418}
2419
Jens Axboed63d1b52019-12-10 10:38:56 -07002420static void io_fallocate_finish(struct io_wq_work **workptr)
2421{
2422 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2423 struct io_kiocb *nxt = NULL;
2424 int ret;
2425
2426 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2427 req->sync.len);
2428 if (ret < 0)
2429 req_set_fail_links(req);
2430 io_cqring_add_event(req, ret);
2431 io_put_req_find_next(req, &nxt);
2432 if (nxt)
2433 io_wq_assign_next(workptr, nxt);
2434}
2435
2436static int io_fallocate_prep(struct io_kiocb *req,
2437 const struct io_uring_sqe *sqe)
2438{
2439 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2440 return -EINVAL;
2441
2442 req->sync.off = READ_ONCE(sqe->off);
2443 req->sync.len = READ_ONCE(sqe->addr);
2444 req->sync.mode = READ_ONCE(sqe->len);
2445 return 0;
2446}
2447
2448static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2449 bool force_nonblock)
2450{
2451 struct io_wq_work *work, *old_work;
2452
2453 /* fallocate always requiring blocking context */
2454 if (force_nonblock) {
2455 io_put_req(req);
2456 req->work.func = io_fallocate_finish;
2457 return -EAGAIN;
2458 }
2459
2460 work = old_work = &req->work;
2461 io_fallocate_finish(&work);
2462 if (work && work != old_work)
2463 *nxt = container_of(work, struct io_kiocb, work);
2464
2465 return 0;
2466}
2467
Jens Axboe15b71ab2019-12-11 11:20:36 -07002468static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2469{
Jens Axboef8748882020-01-08 17:47:02 -07002470 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002471 int ret;
2472
2473 if (sqe->ioprio || sqe->buf_index)
2474 return -EINVAL;
2475
2476 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002477 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002478 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002479 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002480
Jens Axboef8748882020-01-08 17:47:02 -07002481 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002482 if (IS_ERR(req->open.filename)) {
2483 ret = PTR_ERR(req->open.filename);
2484 req->open.filename = NULL;
2485 return ret;
2486 }
2487
2488 return 0;
2489}
2490
Jens Axboecebdb982020-01-08 17:59:24 -07002491static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2492{
2493 struct open_how __user *how;
2494 const char __user *fname;
2495 size_t len;
2496 int ret;
2497
2498 if (sqe->ioprio || sqe->buf_index)
2499 return -EINVAL;
2500
2501 req->open.dfd = READ_ONCE(sqe->fd);
2502 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2503 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2504 len = READ_ONCE(sqe->len);
2505
2506 if (len < OPEN_HOW_SIZE_VER0)
2507 return -EINVAL;
2508
2509 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2510 len);
2511 if (ret)
2512 return ret;
2513
2514 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2515 req->open.how.flags |= O_LARGEFILE;
2516
2517 req->open.filename = getname(fname);
2518 if (IS_ERR(req->open.filename)) {
2519 ret = PTR_ERR(req->open.filename);
2520 req->open.filename = NULL;
2521 return ret;
2522 }
2523
2524 return 0;
2525}
2526
2527static int io_openat2(struct io_kiocb *req, struct io_kiocb **nxt,
2528 bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002529{
2530 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002531 struct file *file;
2532 int ret;
2533
2534 if (force_nonblock) {
2535 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2536 return -EAGAIN;
2537 }
2538
Jens Axboecebdb982020-01-08 17:59:24 -07002539 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002540 if (ret)
2541 goto err;
2542
Jens Axboecebdb982020-01-08 17:59:24 -07002543 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002544 if (ret < 0)
2545 goto err;
2546
2547 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2548 if (IS_ERR(file)) {
2549 put_unused_fd(ret);
2550 ret = PTR_ERR(file);
2551 } else {
2552 fsnotify_open(file);
2553 fd_install(ret, file);
2554 }
2555err:
2556 putname(req->open.filename);
2557 if (ret < 0)
2558 req_set_fail_links(req);
2559 io_cqring_add_event(req, ret);
2560 io_put_req_find_next(req, nxt);
2561 return 0;
2562}
2563
Jens Axboecebdb982020-01-08 17:59:24 -07002564static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2565 bool force_nonblock)
2566{
2567 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
2568 return io_openat2(req, nxt, force_nonblock);
2569}
2570
Jens Axboec1ca7572019-12-25 22:18:28 -07002571static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2572{
2573#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2574 if (sqe->ioprio || sqe->buf_index || sqe->off)
2575 return -EINVAL;
2576
2577 req->madvise.addr = READ_ONCE(sqe->addr);
2578 req->madvise.len = READ_ONCE(sqe->len);
2579 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2580 return 0;
2581#else
2582 return -EOPNOTSUPP;
2583#endif
2584}
2585
2586static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2587 bool force_nonblock)
2588{
2589#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2590 struct io_madvise *ma = &req->madvise;
2591 int ret;
2592
2593 if (force_nonblock)
2594 return -EAGAIN;
2595
2596 ret = do_madvise(ma->addr, ma->len, ma->advice);
2597 if (ret < 0)
2598 req_set_fail_links(req);
2599 io_cqring_add_event(req, ret);
2600 io_put_req_find_next(req, nxt);
2601 return 0;
2602#else
2603 return -EOPNOTSUPP;
2604#endif
2605}
2606
Jens Axboe4840e412019-12-25 22:03:45 -07002607static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2608{
2609 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2610 return -EINVAL;
2611
2612 req->fadvise.offset = READ_ONCE(sqe->off);
2613 req->fadvise.len = READ_ONCE(sqe->len);
2614 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2615 return 0;
2616}
2617
2618static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2619 bool force_nonblock)
2620{
2621 struct io_fadvise *fa = &req->fadvise;
2622 int ret;
2623
2624 /* DONTNEED may block, others _should_ not */
2625 if (fa->advice == POSIX_FADV_DONTNEED && force_nonblock)
2626 return -EAGAIN;
2627
2628 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2629 if (ret < 0)
2630 req_set_fail_links(req);
2631 io_cqring_add_event(req, ret);
2632 io_put_req_find_next(req, nxt);
2633 return 0;
2634}
2635
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002636static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2637{
Jens Axboef8748882020-01-08 17:47:02 -07002638 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002639 unsigned lookup_flags;
2640 int ret;
2641
2642 if (sqe->ioprio || sqe->buf_index)
2643 return -EINVAL;
2644
2645 req->open.dfd = READ_ONCE(sqe->fd);
2646 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002647 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002648 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07002649 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002650
Jens Axboec12cedf2020-01-08 17:41:21 -07002651 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002652 return -EINVAL;
2653
Jens Axboef8748882020-01-08 17:47:02 -07002654 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002655 if (IS_ERR(req->open.filename)) {
2656 ret = PTR_ERR(req->open.filename);
2657 req->open.filename = NULL;
2658 return ret;
2659 }
2660
2661 return 0;
2662}
2663
2664static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2665 bool force_nonblock)
2666{
2667 struct io_open *ctx = &req->open;
2668 unsigned lookup_flags;
2669 struct path path;
2670 struct kstat stat;
2671 int ret;
2672
2673 if (force_nonblock)
2674 return -EAGAIN;
2675
Jens Axboec12cedf2020-01-08 17:41:21 -07002676 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002677 return -EINVAL;
2678
2679retry:
2680 /* filename_lookup() drops it, keep a reference */
2681 ctx->filename->refcnt++;
2682
2683 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2684 NULL);
2685 if (ret)
2686 goto err;
2687
Jens Axboec12cedf2020-01-08 17:41:21 -07002688 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002689 path_put(&path);
2690 if (retry_estale(ret, lookup_flags)) {
2691 lookup_flags |= LOOKUP_REVAL;
2692 goto retry;
2693 }
2694 if (!ret)
2695 ret = cp_statx(&stat, ctx->buffer);
2696err:
2697 putname(ctx->filename);
2698 if (ret < 0)
2699 req_set_fail_links(req);
2700 io_cqring_add_event(req, ret);
2701 io_put_req_find_next(req, nxt);
2702 return 0;
2703}
2704
Jens Axboeb5dba592019-12-11 14:02:38 -07002705static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2706{
2707 /*
2708 * If we queue this for async, it must not be cancellable. That would
2709 * leave the 'file' in an undeterminate state.
2710 */
2711 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2712
2713 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2714 sqe->rw_flags || sqe->buf_index)
2715 return -EINVAL;
2716 if (sqe->flags & IOSQE_FIXED_FILE)
2717 return -EINVAL;
2718
2719 req->close.fd = READ_ONCE(sqe->fd);
2720 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03002721 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07002722 return -EBADF;
2723
2724 return 0;
2725}
2726
2727static void io_close_finish(struct io_wq_work **workptr)
2728{
2729 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2730 struct io_kiocb *nxt = NULL;
2731
2732 /* Invoked with files, we need to do the close */
2733 if (req->work.files) {
2734 int ret;
2735
2736 ret = filp_close(req->close.put_file, req->work.files);
2737 if (ret < 0) {
2738 req_set_fail_links(req);
2739 }
2740 io_cqring_add_event(req, ret);
2741 }
2742
2743 fput(req->close.put_file);
2744
2745 /* we bypassed the re-issue, drop the submission reference */
2746 io_put_req(req);
2747 io_put_req_find_next(req, &nxt);
2748 if (nxt)
2749 io_wq_assign_next(workptr, nxt);
2750}
2751
2752static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
2753 bool force_nonblock)
2754{
2755 int ret;
2756
2757 req->close.put_file = NULL;
2758 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
2759 if (ret < 0)
2760 return ret;
2761
2762 /* if the file has a flush method, be safe and punt to async */
2763 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker()) {
2764 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2765 goto eagain;
2766 }
2767
2768 /*
2769 * No ->flush(), safely close from here and just punt the
2770 * fput() to async context.
2771 */
2772 ret = filp_close(req->close.put_file, current->files);
2773
2774 if (ret < 0)
2775 req_set_fail_links(req);
2776 io_cqring_add_event(req, ret);
2777
2778 if (io_wq_current_is_worker()) {
2779 struct io_wq_work *old_work, *work;
2780
2781 old_work = work = &req->work;
2782 io_close_finish(&work);
2783 if (work && work != old_work)
2784 *nxt = container_of(work, struct io_kiocb, work);
2785 return 0;
2786 }
2787
2788eagain:
2789 req->work.func = io_close_finish;
2790 return -EAGAIN;
2791}
2792
Jens Axboe3529d8c2019-12-19 18:24:38 -07002793static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002794{
2795 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002796
2797 if (!req->file)
2798 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002799
2800 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2801 return -EINVAL;
2802 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2803 return -EINVAL;
2804
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002805 req->sync.off = READ_ONCE(sqe->off);
2806 req->sync.len = READ_ONCE(sqe->len);
2807 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002808 return 0;
2809}
2810
2811static void io_sync_file_range_finish(struct io_wq_work **workptr)
2812{
2813 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2814 struct io_kiocb *nxt = NULL;
2815 int ret;
2816
2817 if (io_req_cancelled(req))
2818 return;
2819
Jens Axboe9adbd452019-12-20 08:45:55 -07002820 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002821 req->sync.flags);
2822 if (ret < 0)
2823 req_set_fail_links(req);
2824 io_cqring_add_event(req, ret);
2825 io_put_req_find_next(req, &nxt);
2826 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002827 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002828}
2829
Jens Axboefc4df992019-12-10 14:38:45 -07002830static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002831 bool force_nonblock)
2832{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002833 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002834
2835 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002836 if (force_nonblock) {
2837 io_put_req(req);
2838 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002839 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002840 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002841
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002842 work = old_work = &req->work;
2843 io_sync_file_range_finish(&work);
2844 if (work && work != old_work)
2845 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002846 return 0;
2847}
2848
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002849#if defined(CONFIG_NET)
2850static void io_sendrecv_async(struct io_wq_work **workptr)
2851{
2852 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2853 struct iovec *iov = NULL;
2854
2855 if (req->io->rw.iov != req->io->rw.fast_iov)
2856 iov = req->io->msg.iov;
2857 io_wq_submit_work(workptr);
2858 kfree(iov);
2859}
2860#endif
2861
Jens Axboe3529d8c2019-12-19 18:24:38 -07002862static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002863{
Jens Axboe03b12302019-12-02 18:50:25 -07002864#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002865 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002866 struct io_async_ctx *io = req->io;
Jens Axboe03b12302019-12-02 18:50:25 -07002867
Jens Axboee47293f2019-12-20 08:58:21 -07002868 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2869 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07002870 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002871
Jens Axboefddafac2020-01-04 20:19:44 -07002872 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002873 return 0;
2874
Jens Axboed9688562019-12-09 19:35:20 -07002875 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002876 return sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002877 &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002878#else
Jens Axboee47293f2019-12-20 08:58:21 -07002879 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002880#endif
2881}
2882
Jens Axboefc4df992019-12-10 14:38:45 -07002883static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2884 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002885{
2886#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002887 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07002888 struct socket *sock;
2889 int ret;
2890
2891 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2892 return -EINVAL;
2893
2894 sock = sock_from_file(req->file, &ret);
2895 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002896 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002897 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002898 unsigned flags;
2899
Jens Axboe03b12302019-12-02 18:50:25 -07002900 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002901 kmsg = &req->io->msg;
2902 kmsg->msg.msg_name = &addr;
2903 /* if iov is set, it's allocated already */
2904 if (!kmsg->iov)
2905 kmsg->iov = kmsg->fast_iov;
2906 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002907 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07002908 struct io_sr_msg *sr = &req->sr_msg;
2909
Jens Axboe0b416c32019-12-15 10:57:46 -07002910 kmsg = &io.msg;
2911 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002912
2913 io.msg.iov = io.msg.fast_iov;
2914 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
2915 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002916 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002917 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002918 }
2919
Jens Axboee47293f2019-12-20 08:58:21 -07002920 flags = req->sr_msg.msg_flags;
2921 if (flags & MSG_DONTWAIT)
2922 req->flags |= REQ_F_NOWAIT;
2923 else if (force_nonblock)
2924 flags |= MSG_DONTWAIT;
2925
Jens Axboe0b416c32019-12-15 10:57:46 -07002926 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002927 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002928 if (req->io)
2929 return -EAGAIN;
2930 if (io_alloc_async_ctx(req))
2931 return -ENOMEM;
2932 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2933 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002934 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002935 }
2936 if (ret == -ERESTARTSYS)
2937 ret = -EINTR;
2938 }
2939
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002940 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002941 kfree(kmsg->iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002942 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002943 if (ret < 0)
2944 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07002945 io_put_req_find_next(req, nxt);
2946 return 0;
2947#else
2948 return -EOPNOTSUPP;
2949#endif
2950}
2951
Jens Axboefddafac2020-01-04 20:19:44 -07002952static int io_send(struct io_kiocb *req, struct io_kiocb **nxt,
2953 bool force_nonblock)
2954{
2955#if defined(CONFIG_NET)
2956 struct socket *sock;
2957 int ret;
2958
2959 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2960 return -EINVAL;
2961
2962 sock = sock_from_file(req->file, &ret);
2963 if (sock) {
2964 struct io_sr_msg *sr = &req->sr_msg;
2965 struct msghdr msg;
2966 struct iovec iov;
2967 unsigned flags;
2968
2969 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
2970 &msg.msg_iter);
2971 if (ret)
2972 return ret;
2973
2974 msg.msg_name = NULL;
2975 msg.msg_control = NULL;
2976 msg.msg_controllen = 0;
2977 msg.msg_namelen = 0;
2978
2979 flags = req->sr_msg.msg_flags;
2980 if (flags & MSG_DONTWAIT)
2981 req->flags |= REQ_F_NOWAIT;
2982 else if (force_nonblock)
2983 flags |= MSG_DONTWAIT;
2984
2985 ret = __sys_sendmsg_sock(sock, &msg, flags);
2986 if (force_nonblock && ret == -EAGAIN)
2987 return -EAGAIN;
2988 if (ret == -ERESTARTSYS)
2989 ret = -EINTR;
2990 }
2991
2992 io_cqring_add_event(req, ret);
2993 if (ret < 0)
2994 req_set_fail_links(req);
2995 io_put_req_find_next(req, nxt);
2996 return 0;
2997#else
2998 return -EOPNOTSUPP;
2999#endif
3000}
3001
Jens Axboe3529d8c2019-12-19 18:24:38 -07003002static int io_recvmsg_prep(struct io_kiocb *req,
3003 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003004{
3005#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003006 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003007 struct io_async_ctx *io = req->io;
Jens Axboe06b76d42019-12-19 14:44:26 -07003008
Jens Axboe3529d8c2019-12-19 18:24:38 -07003009 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3010 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
3011
Jens Axboefddafac2020-01-04 20:19:44 -07003012 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003013 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003014
Jens Axboed9688562019-12-09 19:35:20 -07003015 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003016 return recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003017 &io->msg.uaddr, &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003018#else
Jens Axboee47293f2019-12-20 08:58:21 -07003019 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003020#endif
3021}
3022
Jens Axboefc4df992019-12-10 14:38:45 -07003023static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3024 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003025{
3026#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003027 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003028 struct socket *sock;
3029 int ret;
3030
3031 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3032 return -EINVAL;
3033
3034 sock = sock_from_file(req->file, &ret);
3035 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003036 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003037 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003038 unsigned flags;
3039
Jens Axboe03b12302019-12-02 18:50:25 -07003040 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003041 kmsg = &req->io->msg;
3042 kmsg->msg.msg_name = &addr;
3043 /* if iov is set, it's allocated already */
3044 if (!kmsg->iov)
3045 kmsg->iov = kmsg->fast_iov;
3046 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003047 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003048 struct io_sr_msg *sr = &req->sr_msg;
3049
Jens Axboe0b416c32019-12-15 10:57:46 -07003050 kmsg = &io.msg;
3051 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003052
3053 io.msg.iov = io.msg.fast_iov;
3054 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
3055 sr->msg_flags, &io.msg.uaddr,
3056 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003057 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003058 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003059 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003060
Jens Axboee47293f2019-12-20 08:58:21 -07003061 flags = req->sr_msg.msg_flags;
3062 if (flags & MSG_DONTWAIT)
3063 req->flags |= REQ_F_NOWAIT;
3064 else if (force_nonblock)
3065 flags |= MSG_DONTWAIT;
3066
3067 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3068 kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07003069 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003070 if (req->io)
3071 return -EAGAIN;
3072 if (io_alloc_async_ctx(req))
3073 return -ENOMEM;
3074 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
3075 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07003076 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07003077 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07003078 if (ret == -ERESTARTSYS)
3079 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003080 }
3081
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003082 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003083 kfree(kmsg->iov);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003084 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003085 if (ret < 0)
3086 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003087 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003088 return 0;
3089#else
3090 return -EOPNOTSUPP;
3091#endif
3092}
3093
Jens Axboefddafac2020-01-04 20:19:44 -07003094static int io_recv(struct io_kiocb *req, struct io_kiocb **nxt,
3095 bool force_nonblock)
3096{
3097#if defined(CONFIG_NET)
3098 struct socket *sock;
3099 int ret;
3100
3101 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3102 return -EINVAL;
3103
3104 sock = sock_from_file(req->file, &ret);
3105 if (sock) {
3106 struct io_sr_msg *sr = &req->sr_msg;
3107 struct msghdr msg;
3108 struct iovec iov;
3109 unsigned flags;
3110
3111 ret = import_single_range(READ, sr->buf, sr->len, &iov,
3112 &msg.msg_iter);
3113 if (ret)
3114 return ret;
3115
3116 msg.msg_name = NULL;
3117 msg.msg_control = NULL;
3118 msg.msg_controllen = 0;
3119 msg.msg_namelen = 0;
3120 msg.msg_iocb = NULL;
3121 msg.msg_flags = 0;
3122
3123 flags = req->sr_msg.msg_flags;
3124 if (flags & MSG_DONTWAIT)
3125 req->flags |= REQ_F_NOWAIT;
3126 else if (force_nonblock)
3127 flags |= MSG_DONTWAIT;
3128
3129 ret = __sys_recvmsg_sock(sock, &msg, NULL, NULL, flags);
3130 if (force_nonblock && ret == -EAGAIN)
3131 return -EAGAIN;
3132 if (ret == -ERESTARTSYS)
3133 ret = -EINTR;
3134 }
3135
3136 io_cqring_add_event(req, ret);
3137 if (ret < 0)
3138 req_set_fail_links(req);
3139 io_put_req_find_next(req, nxt);
3140 return 0;
3141#else
3142 return -EOPNOTSUPP;
3143#endif
3144}
3145
3146
Jens Axboe3529d8c2019-12-19 18:24:38 -07003147static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003148{
3149#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003150 struct io_accept *accept = &req->accept;
3151
Jens Axboe17f2fe32019-10-17 14:42:58 -06003152 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3153 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003154 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003155 return -EINVAL;
3156
Jens Axboed55e5f52019-12-11 16:12:15 -07003157 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3158 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003159 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003160 return 0;
3161#else
3162 return -EOPNOTSUPP;
3163#endif
3164}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003165
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003166#if defined(CONFIG_NET)
3167static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3168 bool force_nonblock)
3169{
3170 struct io_accept *accept = &req->accept;
3171 unsigned file_flags;
3172 int ret;
3173
3174 file_flags = force_nonblock ? O_NONBLOCK : 0;
3175 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3176 accept->addr_len, accept->flags);
3177 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003178 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003179 if (ret == -ERESTARTSYS)
3180 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003181 if (ret < 0)
3182 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003183 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003184 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003185 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003186}
3187
3188static void io_accept_finish(struct io_wq_work **workptr)
3189{
3190 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3191 struct io_kiocb *nxt = NULL;
3192
3193 if (io_req_cancelled(req))
3194 return;
3195 __io_accept(req, &nxt, false);
3196 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003197 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003198}
3199#endif
3200
3201static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3202 bool force_nonblock)
3203{
3204#if defined(CONFIG_NET)
3205 int ret;
3206
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003207 ret = __io_accept(req, nxt, force_nonblock);
3208 if (ret == -EAGAIN && force_nonblock) {
3209 req->work.func = io_accept_finish;
3210 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
3211 io_put_req(req);
3212 return -EAGAIN;
3213 }
3214 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003215#else
3216 return -EOPNOTSUPP;
3217#endif
3218}
3219
Jens Axboe3529d8c2019-12-19 18:24:38 -07003220static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003221{
3222#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003223 struct io_connect *conn = &req->connect;
3224 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003225
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003226 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3227 return -EINVAL;
3228 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3229 return -EINVAL;
3230
Jens Axboe3529d8c2019-12-19 18:24:38 -07003231 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3232 conn->addr_len = READ_ONCE(sqe->addr2);
3233
3234 if (!io)
3235 return 0;
3236
3237 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003238 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003239#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003240 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07003241#endif
3242}
3243
Jens Axboefc4df992019-12-10 14:38:45 -07003244static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3245 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003246{
3247#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07003248 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003249 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003250 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003251
Jens Axboef499a022019-12-02 16:28:46 -07003252 if (req->io) {
3253 io = req->io;
3254 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003255 ret = move_addr_to_kernel(req->connect.addr,
3256 req->connect.addr_len,
3257 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003258 if (ret)
3259 goto out;
3260 io = &__io;
3261 }
3262
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003263 file_flags = force_nonblock ? O_NONBLOCK : 0;
3264
3265 ret = __sys_connect_file(req->file, &io->connect.address,
3266 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003267 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003268 if (req->io)
3269 return -EAGAIN;
3270 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003271 ret = -ENOMEM;
3272 goto out;
3273 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003274 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003275 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003276 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003277 if (ret == -ERESTARTSYS)
3278 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07003279out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003280 if (ret < 0)
3281 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003282 io_cqring_add_event(req, ret);
3283 io_put_req_find_next(req, nxt);
3284 return 0;
3285#else
3286 return -EOPNOTSUPP;
3287#endif
3288}
3289
Jens Axboe221c5eb2019-01-17 09:41:58 -07003290static void io_poll_remove_one(struct io_kiocb *req)
3291{
3292 struct io_poll_iocb *poll = &req->poll;
3293
3294 spin_lock(&poll->head->lock);
3295 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07003296 if (!list_empty(&poll->wait.entry)) {
3297 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07003298 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003299 }
3300 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003301 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003302}
3303
3304static void io_poll_remove_all(struct io_ring_ctx *ctx)
3305{
Jens Axboe78076bb2019-12-04 19:56:40 -07003306 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003307 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07003308 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003309
3310 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003311 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3312 struct hlist_head *list;
3313
3314 list = &ctx->cancel_hash[i];
3315 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3316 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003317 }
3318 spin_unlock_irq(&ctx->completion_lock);
3319}
3320
Jens Axboe47f46762019-11-09 17:43:02 -07003321static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3322{
Jens Axboe78076bb2019-12-04 19:56:40 -07003323 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07003324 struct io_kiocb *req;
3325
Jens Axboe78076bb2019-12-04 19:56:40 -07003326 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3327 hlist_for_each_entry(req, list, hash_node) {
3328 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07003329 io_poll_remove_one(req);
3330 return 0;
3331 }
Jens Axboe47f46762019-11-09 17:43:02 -07003332 }
3333
3334 return -ENOENT;
3335}
3336
Jens Axboe3529d8c2019-12-19 18:24:38 -07003337static int io_poll_remove_prep(struct io_kiocb *req,
3338 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003339{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003340 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3341 return -EINVAL;
3342 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3343 sqe->poll_events)
3344 return -EINVAL;
3345
Jens Axboe0969e782019-12-17 18:40:57 -07003346 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07003347 return 0;
3348}
3349
3350/*
3351 * Find a running poll command that matches one specified in sqe->addr,
3352 * and remove it if found.
3353 */
3354static int io_poll_remove(struct io_kiocb *req)
3355{
3356 struct io_ring_ctx *ctx = req->ctx;
3357 u64 addr;
3358 int ret;
3359
Jens Axboe0969e782019-12-17 18:40:57 -07003360 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003361 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07003362 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003363 spin_unlock_irq(&ctx->completion_lock);
3364
Jens Axboe78e19bb2019-11-06 15:21:34 -07003365 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003366 if (ret < 0)
3367 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003368 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003369 return 0;
3370}
3371
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003372static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003373{
Jackie Liua197f662019-11-08 08:09:12 -07003374 struct io_ring_ctx *ctx = req->ctx;
3375
Jens Axboe8c838782019-03-12 15:48:16 -06003376 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003377 if (error)
3378 io_cqring_fill_event(req, error);
3379 else
3380 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06003381 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003382}
3383
Jens Axboe561fb042019-10-24 07:25:42 -06003384static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003385{
Jens Axboe561fb042019-10-24 07:25:42 -06003386 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003387 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3388 struct io_poll_iocb *poll = &req->poll;
3389 struct poll_table_struct pt = { ._key = poll->events };
3390 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07003391 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003392 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003393 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003394
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003395 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06003396 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003397 ret = -ECANCELED;
3398 } else if (READ_ONCE(poll->canceled)) {
3399 ret = -ECANCELED;
3400 }
Jens Axboe561fb042019-10-24 07:25:42 -06003401
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003402 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003403 mask = vfs_poll(poll->file, &pt) & poll->events;
3404
3405 /*
3406 * Note that ->ki_cancel callers also delete iocb from active_reqs after
3407 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
3408 * synchronize with them. In the cancellation case the list_del_init
3409 * itself is not actually needed, but harmless so we keep it in to
3410 * avoid further branches in the fast path.
3411 */
3412 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003413 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07003414 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003415 spin_unlock_irq(&ctx->completion_lock);
3416 return;
3417 }
Jens Axboe78076bb2019-12-04 19:56:40 -07003418 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003419 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003420 spin_unlock_irq(&ctx->completion_lock);
3421
Jens Axboe8c838782019-03-12 15:48:16 -06003422 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07003423
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003424 if (ret < 0)
3425 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003426 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07003427 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003428 io_wq_assign_next(workptr, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003429}
3430
Jens Axboee94f1412019-12-19 12:06:02 -07003431static void __io_poll_flush(struct io_ring_ctx *ctx, struct llist_node *nodes)
3432{
Jens Axboee94f1412019-12-19 12:06:02 -07003433 struct io_kiocb *req, *tmp;
Jens Axboe8237e042019-12-28 10:48:22 -07003434 struct req_batch rb;
Jens Axboee94f1412019-12-19 12:06:02 -07003435
Jens Axboec6ca97b302019-12-28 12:11:08 -07003436 rb.to_free = rb.need_iter = 0;
Jens Axboee94f1412019-12-19 12:06:02 -07003437 spin_lock_irq(&ctx->completion_lock);
3438 llist_for_each_entry_safe(req, tmp, nodes, llist_node) {
3439 hash_del(&req->hash_node);
3440 io_poll_complete(req, req->result, 0);
3441
Jens Axboe8237e042019-12-28 10:48:22 -07003442 if (refcount_dec_and_test(&req->refs) &&
3443 !io_req_multi_free(&rb, req)) {
3444 req->flags |= REQ_F_COMP_LOCKED;
3445 io_free_req(req);
Jens Axboee94f1412019-12-19 12:06:02 -07003446 }
3447 }
3448 spin_unlock_irq(&ctx->completion_lock);
3449
3450 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07003451 io_free_req_many(ctx, &rb);
Jens Axboee94f1412019-12-19 12:06:02 -07003452}
3453
3454static void io_poll_flush(struct io_wq_work **workptr)
3455{
3456 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3457 struct llist_node *nodes;
3458
3459 nodes = llist_del_all(&req->ctx->poll_llist);
3460 if (nodes)
3461 __io_poll_flush(req->ctx, nodes);
3462}
3463
Jens Axboe221c5eb2019-01-17 09:41:58 -07003464static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3465 void *key)
3466{
Jens Axboee9444752019-11-26 15:02:04 -07003467 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003468 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
3469 struct io_ring_ctx *ctx = req->ctx;
3470 __poll_t mask = key_to_poll(key);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003471
3472 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06003473 if (mask && !(mask & poll->events))
3474 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003475
Jens Axboe392edb42019-12-09 17:52:20 -07003476 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003477
Jens Axboe7c9e7f02019-11-12 08:15:53 -07003478 /*
3479 * Run completion inline if we can. We're using trylock here because
3480 * we are violating the completion_lock -> poll wq lock ordering.
3481 * If we have a link timeout we're going to need the completion_lock
3482 * for finalizing the request, mark us as having grabbed that already.
3483 */
Jens Axboee94f1412019-12-19 12:06:02 -07003484 if (mask) {
3485 unsigned long flags;
Jens Axboe8c838782019-03-12 15:48:16 -06003486
Jens Axboee94f1412019-12-19 12:06:02 -07003487 if (llist_empty(&ctx->poll_llist) &&
3488 spin_trylock_irqsave(&ctx->completion_lock, flags)) {
3489 hash_del(&req->hash_node);
3490 io_poll_complete(req, mask, 0);
3491 req->flags |= REQ_F_COMP_LOCKED;
3492 io_put_req(req);
3493 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3494
3495 io_cqring_ev_posted(ctx);
3496 req = NULL;
3497 } else {
3498 req->result = mask;
3499 req->llist_node.next = NULL;
3500 /* if the list wasn't empty, we're done */
3501 if (!llist_add(&req->llist_node, &ctx->poll_llist))
3502 req = NULL;
3503 else
3504 req->work.func = io_poll_flush;
3505 }
Jens Axboe8c838782019-03-12 15:48:16 -06003506 }
Jens Axboee94f1412019-12-19 12:06:02 -07003507 if (req)
3508 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003509
Jens Axboe221c5eb2019-01-17 09:41:58 -07003510 return 1;
3511}
3512
3513struct io_poll_table {
3514 struct poll_table_struct pt;
3515 struct io_kiocb *req;
3516 int error;
3517};
3518
3519static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3520 struct poll_table_struct *p)
3521{
3522 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3523
3524 if (unlikely(pt->req->poll.head)) {
3525 pt->error = -EINVAL;
3526 return;
3527 }
3528
3529 pt->error = 0;
3530 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07003531 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003532}
3533
Jens Axboeeac406c2019-11-14 12:09:58 -07003534static void io_poll_req_insert(struct io_kiocb *req)
3535{
3536 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07003537 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07003538
Jens Axboe78076bb2019-12-04 19:56:40 -07003539 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3540 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07003541}
3542
Jens Axboe3529d8c2019-12-19 18:24:38 -07003543static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003544{
3545 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003546 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003547
3548 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3549 return -EINVAL;
3550 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3551 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003552 if (!poll->file)
3553 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003554
Jens Axboe221c5eb2019-01-17 09:41:58 -07003555 events = READ_ONCE(sqe->poll_events);
3556 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07003557 return 0;
3558}
3559
3560static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3561{
3562 struct io_poll_iocb *poll = &req->poll;
3563 struct io_ring_ctx *ctx = req->ctx;
3564 struct io_poll_table ipt;
3565 bool cancel = false;
3566 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07003567
3568 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07003569 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003570
Jens Axboe221c5eb2019-01-17 09:41:58 -07003571 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06003572 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003573 poll->canceled = false;
3574
3575 ipt.pt._qproc = io_poll_queue_proc;
3576 ipt.pt._key = poll->events;
3577 ipt.req = req;
3578 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3579
3580 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07003581 INIT_LIST_HEAD(&poll->wait.entry);
3582 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
3583 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003584
Jens Axboe36703242019-07-25 10:20:18 -06003585 INIT_LIST_HEAD(&req->list);
3586
Jens Axboe221c5eb2019-01-17 09:41:58 -07003587 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003588
3589 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06003590 if (likely(poll->head)) {
3591 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07003592 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06003593 if (ipt.error)
3594 cancel = true;
3595 ipt.error = 0;
3596 mask = 0;
3597 }
3598 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07003599 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003600 else if (cancel)
3601 WRITE_ONCE(poll->canceled, true);
3602 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07003603 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003604 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003605 }
Jens Axboe8c838782019-03-12 15:48:16 -06003606 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06003607 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003608 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06003609 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07003610 spin_unlock_irq(&ctx->completion_lock);
3611
Jens Axboe8c838782019-03-12 15:48:16 -06003612 if (mask) {
3613 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003614 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003615 }
Jens Axboe8c838782019-03-12 15:48:16 -06003616 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003617}
3618
Jens Axboe5262f562019-09-17 12:26:57 -06003619static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3620{
Jens Axboead8a48a2019-11-15 08:49:11 -07003621 struct io_timeout_data *data = container_of(timer,
3622 struct io_timeout_data, timer);
3623 struct io_kiocb *req = data->req;
3624 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06003625 unsigned long flags;
3626
Jens Axboe5262f562019-09-17 12:26:57 -06003627 atomic_inc(&ctx->cq_timeouts);
3628
3629 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08003630 /*
Jens Axboe11365042019-10-16 09:08:32 -06003631 * We could be racing with timeout deletion. If the list is empty,
3632 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08003633 */
Jens Axboe842f9612019-10-29 12:34:10 -06003634 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06003635 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06003636
Jens Axboe11365042019-10-16 09:08:32 -06003637 /*
3638 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08003639 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06003640 * pointer will be increased, otherwise other timeout reqs may
3641 * return in advance without waiting for enough wait_nr.
3642 */
3643 prev = req;
3644 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3645 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06003646 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06003647 }
Jens Axboe842f9612019-10-29 12:34:10 -06003648
Jens Axboe78e19bb2019-11-06 15:21:34 -07003649 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06003650 io_commit_cqring(ctx);
3651 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3652
3653 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003654 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003655 io_put_req(req);
3656 return HRTIMER_NORESTART;
3657}
3658
Jens Axboe47f46762019-11-09 17:43:02 -07003659static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3660{
3661 struct io_kiocb *req;
3662 int ret = -ENOENT;
3663
3664 list_for_each_entry(req, &ctx->timeout_list, list) {
3665 if (user_data == req->user_data) {
3666 list_del_init(&req->list);
3667 ret = 0;
3668 break;
3669 }
3670 }
3671
3672 if (ret == -ENOENT)
3673 return ret;
3674
Jens Axboe2d283902019-12-04 11:08:05 -07003675 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07003676 if (ret == -1)
3677 return -EALREADY;
3678
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003679 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003680 io_cqring_fill_event(req, -ECANCELED);
3681 io_put_req(req);
3682 return 0;
3683}
3684
Jens Axboe3529d8c2019-12-19 18:24:38 -07003685static int io_timeout_remove_prep(struct io_kiocb *req,
3686 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07003687{
Jens Axboeb29472e2019-12-17 18:50:29 -07003688 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3689 return -EINVAL;
3690 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3691 return -EINVAL;
3692
3693 req->timeout.addr = READ_ONCE(sqe->addr);
3694 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3695 if (req->timeout.flags)
3696 return -EINVAL;
3697
Jens Axboeb29472e2019-12-17 18:50:29 -07003698 return 0;
3699}
3700
Jens Axboe11365042019-10-16 09:08:32 -06003701/*
3702 * Remove or update an existing timeout command
3703 */
Jens Axboefc4df992019-12-10 14:38:45 -07003704static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06003705{
3706 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07003707 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06003708
Jens Axboe11365042019-10-16 09:08:32 -06003709 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07003710 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06003711
Jens Axboe47f46762019-11-09 17:43:02 -07003712 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06003713 io_commit_cqring(ctx);
3714 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003715 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003716 if (ret < 0)
3717 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003718 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06003719 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06003720}
3721
Jens Axboe3529d8c2019-12-19 18:24:38 -07003722static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07003723 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06003724{
Jens Axboead8a48a2019-11-15 08:49:11 -07003725 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06003726 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06003727
Jens Axboead8a48a2019-11-15 08:49:11 -07003728 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06003729 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07003730 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06003731 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07003732 if (sqe->off && is_timeout_link)
3733 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06003734 flags = READ_ONCE(sqe->timeout_flags);
3735 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06003736 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06003737
Jens Axboe26a61672019-12-20 09:02:01 -07003738 req->timeout.count = READ_ONCE(sqe->off);
3739
Jens Axboe3529d8c2019-12-19 18:24:38 -07003740 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07003741 return -ENOMEM;
3742
3743 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07003744 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07003745 req->flags |= REQ_F_TIMEOUT;
3746
3747 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06003748 return -EFAULT;
3749
Jens Axboe11365042019-10-16 09:08:32 -06003750 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07003751 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06003752 else
Jens Axboead8a48a2019-11-15 08:49:11 -07003753 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06003754
Jens Axboead8a48a2019-11-15 08:49:11 -07003755 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
3756 return 0;
3757}
3758
Jens Axboefc4df992019-12-10 14:38:45 -07003759static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07003760{
3761 unsigned count;
3762 struct io_ring_ctx *ctx = req->ctx;
3763 struct io_timeout_data *data;
3764 struct list_head *entry;
3765 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07003766
Jens Axboe2d283902019-12-04 11:08:05 -07003767 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003768
Jens Axboe5262f562019-09-17 12:26:57 -06003769 /*
3770 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07003771 * timeout event to be satisfied. If it isn't set, then this is
3772 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06003773 */
Jens Axboe26a61672019-12-20 09:02:01 -07003774 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003775 if (!count) {
3776 req->flags |= REQ_F_TIMEOUT_NOSEQ;
3777 spin_lock_irq(&ctx->completion_lock);
3778 entry = ctx->timeout_list.prev;
3779 goto add;
3780 }
Jens Axboe5262f562019-09-17 12:26:57 -06003781
3782 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07003783 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06003784
3785 /*
3786 * Insertion sort, ensuring the first entry in the list is always
3787 * the one we need first.
3788 */
Jens Axboe5262f562019-09-17 12:26:57 -06003789 spin_lock_irq(&ctx->completion_lock);
3790 list_for_each_prev(entry, &ctx->timeout_list) {
3791 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08003792 unsigned nxt_sq_head;
3793 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07003794 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06003795
Jens Axboe93bd25b2019-11-11 23:34:31 -07003796 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
3797 continue;
3798
yangerkun5da0fb12019-10-15 21:59:29 +08003799 /*
3800 * Since cached_sq_head + count - 1 can overflow, use type long
3801 * long to store it.
3802 */
3803 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03003804 nxt_sq_head = nxt->sequence - nxt_offset + 1;
3805 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08003806
3807 /*
3808 * cached_sq_head may overflow, and it will never overflow twice
3809 * once there is some timeout req still be valid.
3810 */
3811 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08003812 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08003813
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003814 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06003815 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003816
3817 /*
3818 * Sequence of reqs after the insert one and itself should
3819 * be adjusted because each timeout req consumes a slot.
3820 */
3821 span++;
3822 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06003823 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003824 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003825add:
Jens Axboe5262f562019-09-17 12:26:57 -06003826 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07003827 data->timer.function = io_timeout_fn;
3828 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06003829 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003830 return 0;
3831}
3832
Jens Axboe62755e32019-10-28 21:49:21 -06003833static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06003834{
Jens Axboe62755e32019-10-28 21:49:21 -06003835 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06003836
Jens Axboe62755e32019-10-28 21:49:21 -06003837 return req->user_data == (unsigned long) data;
3838}
3839
Jens Axboee977d6d2019-11-05 12:39:45 -07003840static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003841{
Jens Axboe62755e32019-10-28 21:49:21 -06003842 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003843 int ret = 0;
3844
Jens Axboe62755e32019-10-28 21:49:21 -06003845 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3846 switch (cancel_ret) {
3847 case IO_WQ_CANCEL_OK:
3848 ret = 0;
3849 break;
3850 case IO_WQ_CANCEL_RUNNING:
3851 ret = -EALREADY;
3852 break;
3853 case IO_WQ_CANCEL_NOTFOUND:
3854 ret = -ENOENT;
3855 break;
3856 }
3857
Jens Axboee977d6d2019-11-05 12:39:45 -07003858 return ret;
3859}
3860
Jens Axboe47f46762019-11-09 17:43:02 -07003861static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3862 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003863 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07003864{
3865 unsigned long flags;
3866 int ret;
3867
3868 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3869 if (ret != -ENOENT) {
3870 spin_lock_irqsave(&ctx->completion_lock, flags);
3871 goto done;
3872 }
3873
3874 spin_lock_irqsave(&ctx->completion_lock, flags);
3875 ret = io_timeout_cancel(ctx, sqe_addr);
3876 if (ret != -ENOENT)
3877 goto done;
3878 ret = io_poll_cancel(ctx, sqe_addr);
3879done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003880 if (!ret)
3881 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07003882 io_cqring_fill_event(req, ret);
3883 io_commit_cqring(ctx);
3884 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3885 io_cqring_ev_posted(ctx);
3886
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003887 if (ret < 0)
3888 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003889 io_put_req_find_next(req, nxt);
3890}
3891
Jens Axboe3529d8c2019-12-19 18:24:38 -07003892static int io_async_cancel_prep(struct io_kiocb *req,
3893 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07003894{
Jens Axboefbf23842019-12-17 18:45:56 -07003895 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07003896 return -EINVAL;
3897 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3898 sqe->cancel_flags)
3899 return -EINVAL;
3900
Jens Axboefbf23842019-12-17 18:45:56 -07003901 req->cancel.addr = READ_ONCE(sqe->addr);
3902 return 0;
3903}
3904
3905static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
3906{
3907 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07003908
3909 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06003910 return 0;
3911}
3912
Jens Axboe05f3fb32019-12-09 11:22:50 -07003913static int io_files_update_prep(struct io_kiocb *req,
3914 const struct io_uring_sqe *sqe)
3915{
3916 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
3917 return -EINVAL;
3918
3919 req->files_update.offset = READ_ONCE(sqe->off);
3920 req->files_update.nr_args = READ_ONCE(sqe->len);
3921 if (!req->files_update.nr_args)
3922 return -EINVAL;
3923 req->files_update.arg = READ_ONCE(sqe->addr);
3924 return 0;
3925}
3926
3927static int io_files_update(struct io_kiocb *req, bool force_nonblock)
3928{
3929 struct io_ring_ctx *ctx = req->ctx;
3930 struct io_uring_files_update up;
3931 int ret;
3932
3933 if (force_nonblock) {
3934 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
3935 return -EAGAIN;
3936 }
3937
3938 up.offset = req->files_update.offset;
3939 up.fds = req->files_update.arg;
3940
3941 mutex_lock(&ctx->uring_lock);
3942 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
3943 mutex_unlock(&ctx->uring_lock);
3944
3945 if (ret < 0)
3946 req_set_fail_links(req);
3947 io_cqring_add_event(req, ret);
3948 io_put_req(req);
3949 return 0;
3950}
3951
Jens Axboe3529d8c2019-12-19 18:24:38 -07003952static int io_req_defer_prep(struct io_kiocb *req,
3953 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003954{
Jens Axboee7815732019-12-17 19:45:06 -07003955 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003956
Jens Axboed625c6e2019-12-17 19:53:05 -07003957 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07003958 case IORING_OP_NOP:
3959 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003960 case IORING_OP_READV:
3961 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07003962 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003963 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07003964 break;
3965 case IORING_OP_WRITEV:
3966 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07003967 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003968 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07003969 break;
Jens Axboe0969e782019-12-17 18:40:57 -07003970 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003971 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07003972 break;
3973 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003974 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07003975 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003976 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003977 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003978 break;
3979 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003980 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003981 break;
Jens Axboe03b12302019-12-02 18:50:25 -07003982 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07003983 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003984 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07003985 break;
3986 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07003987 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003988 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07003989 break;
Jens Axboef499a022019-12-02 16:28:46 -07003990 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003991 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07003992 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003993 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003994 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003995 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07003996 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003997 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07003998 break;
Jens Axboefbf23842019-12-17 18:45:56 -07003999 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004000 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004001 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004002 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004003 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004004 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004005 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004006 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004007 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004008 case IORING_OP_FALLOCATE:
4009 ret = io_fallocate_prep(req, sqe);
4010 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004011 case IORING_OP_OPENAT:
4012 ret = io_openat_prep(req, sqe);
4013 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004014 case IORING_OP_CLOSE:
4015 ret = io_close_prep(req, sqe);
4016 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004017 case IORING_OP_FILES_UPDATE:
4018 ret = io_files_update_prep(req, sqe);
4019 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004020 case IORING_OP_STATX:
4021 ret = io_statx_prep(req, sqe);
4022 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004023 case IORING_OP_FADVISE:
4024 ret = io_fadvise_prep(req, sqe);
4025 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004026 case IORING_OP_MADVISE:
4027 ret = io_madvise_prep(req, sqe);
4028 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004029 case IORING_OP_OPENAT2:
4030 ret = io_openat2_prep(req, sqe);
4031 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004032 default:
Jens Axboee7815732019-12-17 19:45:06 -07004033 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4034 req->opcode);
4035 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004036 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004037 }
4038
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004039 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004040}
4041
Jens Axboe3529d8c2019-12-19 18:24:38 -07004042static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004043{
Jackie Liua197f662019-11-08 08:09:12 -07004044 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004045 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004046
Bob Liu9d858b22019-11-13 18:06:25 +08004047 /* Still need defer if there is pending req in defer list. */
4048 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004049 return 0;
4050
Jens Axboe3529d8c2019-12-19 18:24:38 -07004051 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004052 return -EAGAIN;
4053
Jens Axboe3529d8c2019-12-19 18:24:38 -07004054 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004055 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004056 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004057
Jens Axboede0617e2019-04-06 21:51:27 -06004058 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004059 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004060 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004061 return 0;
4062 }
4063
Jens Axboe915967f2019-11-21 09:01:20 -07004064 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004065 list_add_tail(&req->list, &ctx->defer_list);
4066 spin_unlock_irq(&ctx->completion_lock);
4067 return -EIOCBQUEUED;
4068}
4069
Jens Axboe3529d8c2019-12-19 18:24:38 -07004070static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4071 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004072{
Jackie Liua197f662019-11-08 08:09:12 -07004073 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004074 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004075
Jens Axboed625c6e2019-12-17 19:53:05 -07004076 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004077 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004078 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004079 break;
4080 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004081 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004082 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004083 if (sqe) {
4084 ret = io_read_prep(req, sqe, force_nonblock);
4085 if (ret < 0)
4086 break;
4087 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004088 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004089 break;
4090 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07004091 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004092 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004093 if (sqe) {
4094 ret = io_write_prep(req, sqe, force_nonblock);
4095 if (ret < 0)
4096 break;
4097 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004098 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004099 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004100 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004101 if (sqe) {
4102 ret = io_prep_fsync(req, sqe);
4103 if (ret < 0)
4104 break;
4105 }
Jens Axboefc4df992019-12-10 14:38:45 -07004106 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004107 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004108 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004109 if (sqe) {
4110 ret = io_poll_add_prep(req, sqe);
4111 if (ret)
4112 break;
4113 }
Jens Axboefc4df992019-12-10 14:38:45 -07004114 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004115 break;
4116 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004117 if (sqe) {
4118 ret = io_poll_remove_prep(req, sqe);
4119 if (ret < 0)
4120 break;
4121 }
Jens Axboefc4df992019-12-10 14:38:45 -07004122 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004123 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004124 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004125 if (sqe) {
4126 ret = io_prep_sfr(req, sqe);
4127 if (ret < 0)
4128 break;
4129 }
Jens Axboefc4df992019-12-10 14:38:45 -07004130 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004131 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004132 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004133 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004134 if (sqe) {
4135 ret = io_sendmsg_prep(req, sqe);
4136 if (ret < 0)
4137 break;
4138 }
Jens Axboefddafac2020-01-04 20:19:44 -07004139 if (req->opcode == IORING_OP_SENDMSG)
4140 ret = io_sendmsg(req, nxt, force_nonblock);
4141 else
4142 ret = io_send(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004143 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06004144 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004145 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004146 if (sqe) {
4147 ret = io_recvmsg_prep(req, sqe);
4148 if (ret)
4149 break;
4150 }
Jens Axboefddafac2020-01-04 20:19:44 -07004151 if (req->opcode == IORING_OP_RECVMSG)
4152 ret = io_recvmsg(req, nxt, force_nonblock);
4153 else
4154 ret = io_recv(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06004155 break;
Jens Axboe5262f562019-09-17 12:26:57 -06004156 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004157 if (sqe) {
4158 ret = io_timeout_prep(req, sqe, false);
4159 if (ret)
4160 break;
4161 }
Jens Axboefc4df992019-12-10 14:38:45 -07004162 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004163 break;
Jens Axboe11365042019-10-16 09:08:32 -06004164 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004165 if (sqe) {
4166 ret = io_timeout_remove_prep(req, sqe);
4167 if (ret)
4168 break;
4169 }
Jens Axboefc4df992019-12-10 14:38:45 -07004170 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06004171 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06004172 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004173 if (sqe) {
4174 ret = io_accept_prep(req, sqe);
4175 if (ret)
4176 break;
4177 }
Jens Axboefc4df992019-12-10 14:38:45 -07004178 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004179 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004180 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004181 if (sqe) {
4182 ret = io_connect_prep(req, sqe);
4183 if (ret)
4184 break;
4185 }
Jens Axboefc4df992019-12-10 14:38:45 -07004186 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004187 break;
Jens Axboe62755e32019-10-28 21:49:21 -06004188 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004189 if (sqe) {
4190 ret = io_async_cancel_prep(req, sqe);
4191 if (ret)
4192 break;
4193 }
Jens Axboefc4df992019-12-10 14:38:45 -07004194 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06004195 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004196 case IORING_OP_FALLOCATE:
4197 if (sqe) {
4198 ret = io_fallocate_prep(req, sqe);
4199 if (ret)
4200 break;
4201 }
4202 ret = io_fallocate(req, nxt, force_nonblock);
4203 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004204 case IORING_OP_OPENAT:
4205 if (sqe) {
4206 ret = io_openat_prep(req, sqe);
4207 if (ret)
4208 break;
4209 }
4210 ret = io_openat(req, nxt, force_nonblock);
4211 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004212 case IORING_OP_CLOSE:
4213 if (sqe) {
4214 ret = io_close_prep(req, sqe);
4215 if (ret)
4216 break;
4217 }
4218 ret = io_close(req, nxt, force_nonblock);
4219 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004220 case IORING_OP_FILES_UPDATE:
4221 if (sqe) {
4222 ret = io_files_update_prep(req, sqe);
4223 if (ret)
4224 break;
4225 }
4226 ret = io_files_update(req, force_nonblock);
4227 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004228 case IORING_OP_STATX:
4229 if (sqe) {
4230 ret = io_statx_prep(req, sqe);
4231 if (ret)
4232 break;
4233 }
4234 ret = io_statx(req, nxt, force_nonblock);
4235 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004236 case IORING_OP_FADVISE:
4237 if (sqe) {
4238 ret = io_fadvise_prep(req, sqe);
4239 if (ret)
4240 break;
4241 }
4242 ret = io_fadvise(req, nxt, force_nonblock);
4243 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004244 case IORING_OP_MADVISE:
4245 if (sqe) {
4246 ret = io_madvise_prep(req, sqe);
4247 if (ret)
4248 break;
4249 }
4250 ret = io_madvise(req, nxt, force_nonblock);
4251 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004252 case IORING_OP_OPENAT2:
4253 if (sqe) {
4254 ret = io_openat2_prep(req, sqe);
4255 if (ret)
4256 break;
4257 }
4258 ret = io_openat2(req, nxt, force_nonblock);
4259 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004260 default:
4261 ret = -EINVAL;
4262 break;
4263 }
4264
Jens Axboedef596e2019-01-09 08:59:42 -07004265 if (ret)
4266 return ret;
4267
4268 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07004269 const bool in_async = io_wq_current_is_worker();
4270
Jens Axboe9e645e112019-05-10 16:07:28 -06004271 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07004272 return -EAGAIN;
4273
Jens Axboe11ba8202020-01-15 21:51:17 -07004274 /* workqueue context doesn't hold uring_lock, grab it now */
4275 if (in_async)
4276 mutex_lock(&ctx->uring_lock);
4277
Jens Axboedef596e2019-01-09 08:59:42 -07004278 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07004279
4280 if (in_async)
4281 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07004282 }
4283
4284 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004285}
4286
Jens Axboe561fb042019-10-24 07:25:42 -06004287static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07004288{
Jens Axboe561fb042019-10-24 07:25:42 -06004289 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004290 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06004291 struct io_kiocb *nxt = NULL;
4292 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004293
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004294 /* if NO_CANCEL is set, we must still run the work */
4295 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4296 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06004297 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004298 }
Jens Axboe31b51512019-01-18 22:56:34 -07004299
Jens Axboe561fb042019-10-24 07:25:42 -06004300 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004301 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
4302 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06004303 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004304 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06004305 /*
4306 * We can get EAGAIN for polled IO even though we're
4307 * forcing a sync submission from here, since we can't
4308 * wait for request slots on the block side.
4309 */
4310 if (ret != -EAGAIN)
4311 break;
4312 cond_resched();
4313 } while (1);
4314 }
Jens Axboe31b51512019-01-18 22:56:34 -07004315
Jens Axboe561fb042019-10-24 07:25:42 -06004316 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08004317 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06004318
Jens Axboe561fb042019-10-24 07:25:42 -06004319 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004320 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004321 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06004322 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07004323 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004324
Jens Axboe561fb042019-10-24 07:25:42 -06004325 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07004326 if (!ret && nxt)
4327 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07004328}
Jens Axboe2b188cc2019-01-07 10:46:33 -07004329
Jens Axboe15b71ab2019-12-11 11:20:36 -07004330static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06004331{
Jens Axboed3656342019-12-18 09:50:26 -07004332 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004333 return 0;
Jens Axboed3656342019-12-18 09:50:26 -07004334 if (fd == -1 && io_op_defs[req->opcode].fd_non_neg)
4335 return 0;
4336 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06004337}
4338
Jens Axboe65e19f52019-10-26 07:20:21 -06004339static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4340 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06004341{
Jens Axboe65e19f52019-10-26 07:20:21 -06004342 struct fixed_file_table *table;
4343
Jens Axboe05f3fb32019-12-09 11:22:50 -07004344 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4345 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06004346}
4347
Jens Axboe3529d8c2019-12-19 18:24:38 -07004348static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4349 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06004350{
Jackie Liua197f662019-11-08 08:09:12 -07004351 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06004352 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07004353 int fd;
Jens Axboe09bb8392019-03-13 12:39:28 -06004354
Jens Axboe3529d8c2019-12-19 18:24:38 -07004355 flags = READ_ONCE(sqe->flags);
4356 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004357
Jackie Liu4fe2c962019-09-09 20:50:40 +08004358 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06004359 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06004360
Jens Axboed3656342019-12-18 09:50:26 -07004361 if (!io_req_needs_file(req, fd))
4362 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06004363
4364 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07004365 if (unlikely(!ctx->file_data ||
Jens Axboe09bb8392019-03-13 12:39:28 -06004366 (unsigned) fd >= ctx->nr_user_files))
4367 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06004368 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004369 req->file = io_file_from_index(ctx, fd);
4370 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06004371 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06004372 req->flags |= REQ_F_FIXED_FILE;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004373 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe09bb8392019-03-13 12:39:28 -06004374 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004375 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06004376 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004377 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004378 req->file = io_file_get(state, fd);
4379 if (unlikely(!req->file))
4380 return -EBADF;
4381 }
4382
4383 return 0;
4384}
4385
Jackie Liua197f662019-11-08 08:09:12 -07004386static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004387{
Jens Axboefcb323c2019-10-24 12:39:47 -06004388 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07004389 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06004390
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004391 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07004392 return -EBADF;
4393
Jens Axboefcb323c2019-10-24 12:39:47 -06004394 rcu_read_lock();
4395 spin_lock_irq(&ctx->inflight_lock);
4396 /*
4397 * We use the f_ops->flush() handler to ensure that we can flush
4398 * out work accessing these files if the fd is closed. Check if
4399 * the fd has changed since we started down this path, and disallow
4400 * this operation if it has.
4401 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004402 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06004403 list_add(&req->inflight_entry, &ctx->inflight_list);
4404 req->flags |= REQ_F_INFLIGHT;
4405 req->work.files = current->files;
4406 ret = 0;
4407 }
4408 spin_unlock_irq(&ctx->inflight_lock);
4409 rcu_read_unlock();
4410
4411 return ret;
4412}
4413
Jens Axboe2665abf2019-11-05 12:40:47 -07004414static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
4415{
Jens Axboead8a48a2019-11-15 08:49:11 -07004416 struct io_timeout_data *data = container_of(timer,
4417 struct io_timeout_data, timer);
4418 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07004419 struct io_ring_ctx *ctx = req->ctx;
4420 struct io_kiocb *prev = NULL;
4421 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07004422
4423 spin_lock_irqsave(&ctx->completion_lock, flags);
4424
4425 /*
4426 * We don't expect the list to be empty, that will only happen if we
4427 * race with the completion of the linked work.
4428 */
Pavel Begunkov44932332019-12-05 16:16:35 +03004429 if (!list_empty(&req->link_list)) {
4430 prev = list_entry(req->link_list.prev, struct io_kiocb,
4431 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004432 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03004433 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004434 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4435 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07004436 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004437 }
4438
4439 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4440
4441 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004442 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004443 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4444 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07004445 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07004446 } else {
4447 io_cqring_add_event(req, -ETIME);
4448 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004449 }
Jens Axboe2665abf2019-11-05 12:40:47 -07004450 return HRTIMER_NORESTART;
4451}
4452
Jens Axboead8a48a2019-11-15 08:49:11 -07004453static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004454{
Jens Axboe76a46e02019-11-10 23:34:16 -07004455 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07004456
Jens Axboe76a46e02019-11-10 23:34:16 -07004457 /*
4458 * If the list is now empty, then our linked request finished before
4459 * we got a chance to setup the timer
4460 */
4461 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03004462 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07004463 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07004464
Jens Axboead8a48a2019-11-15 08:49:11 -07004465 data->timer.function = io_link_timeout_fn;
4466 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4467 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07004468 }
Jens Axboe76a46e02019-11-10 23:34:16 -07004469 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07004470
Jens Axboe2665abf2019-11-05 12:40:47 -07004471 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07004472 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004473}
4474
Jens Axboead8a48a2019-11-15 08:49:11 -07004475static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004476{
4477 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004478
Jens Axboe2665abf2019-11-05 12:40:47 -07004479 if (!(req->flags & REQ_F_LINK))
4480 return NULL;
4481
Pavel Begunkov44932332019-12-05 16:16:35 +03004482 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4483 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07004484 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07004485 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004486
Jens Axboe76a46e02019-11-10 23:34:16 -07004487 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07004488 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07004489}
4490
Jens Axboe3529d8c2019-12-19 18:24:38 -07004491static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004492{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004493 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004494 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004495 int ret;
4496
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004497again:
4498 linked_timeout = io_prep_linked_timeout(req);
4499
Jens Axboe3529d8c2019-12-19 18:24:38 -07004500 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06004501
4502 /*
4503 * We async punt it if the file wasn't marked NOWAIT, or if the file
4504 * doesn't support non-blocking read/write attempts
4505 */
4506 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4507 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004508 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
4509 ret = io_grab_files(req);
4510 if (ret)
4511 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004512 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004513
4514 /*
4515 * Queued up for async execution, worker will release
4516 * submit reference when the iocb is actually submitted.
4517 */
4518 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004519 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004520 }
Jens Axboee65ef562019-03-12 10:16:44 -06004521
Jens Axboefcb323c2019-10-24 12:39:47 -06004522err:
Jens Axboee65ef562019-03-12 10:16:44 -06004523 /* drop submission reference */
4524 io_put_req(req);
4525
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004526 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07004527 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004528 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004529 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004530 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004531 }
4532
Jens Axboee65ef562019-03-12 10:16:44 -06004533 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06004534 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004535 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004536 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004537 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06004538 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004539done_req:
4540 if (nxt) {
4541 req = nxt;
4542 nxt = NULL;
4543 goto again;
4544 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004545}
4546
Jens Axboe3529d8c2019-12-19 18:24:38 -07004547static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004548{
4549 int ret;
4550
Jens Axboe3529d8c2019-12-19 18:24:38 -07004551 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004552 if (ret) {
4553 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004554 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004555 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004556 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004557 }
Pavel Begunkov25508782019-12-30 21:24:47 +03004558 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Jens Axboece35a472019-12-17 08:04:44 -07004559 /*
4560 * Never try inline submit of IOSQE_ASYNC is set, go straight
4561 * to async execution.
4562 */
4563 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4564 io_queue_async_work(req);
4565 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004566 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07004567 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08004568}
4569
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004570static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004571{
Jens Axboe94ae5e72019-11-14 19:39:52 -07004572 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004573 io_cqring_add_event(req, -ECANCELED);
4574 io_double_put_req(req);
4575 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07004576 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004577}
4578
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004579#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboece35a472019-12-17 08:04:44 -07004580 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
Jens Axboe9e645e112019-05-10 16:07:28 -06004581
Jens Axboe3529d8c2019-12-19 18:24:38 -07004582static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4583 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06004584{
Jackie Liua197f662019-11-08 08:09:12 -07004585 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004586 unsigned int sqe_flags;
Jens Axboe9e645e112019-05-10 16:07:28 -06004587 int ret;
4588
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004589 sqe_flags = READ_ONCE(sqe->flags);
4590
Jens Axboe9e645e112019-05-10 16:07:28 -06004591 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004592 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004593 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03004594 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06004595 }
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004596 if (sqe_flags & IOSQE_ASYNC)
Jens Axboece35a472019-12-17 08:04:44 -07004597 req->flags |= REQ_F_FORCE_ASYNC;
Jens Axboe9e645e112019-05-10 16:07:28 -06004598
Jens Axboe3529d8c2019-12-19 18:24:38 -07004599 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004600 if (unlikely(ret)) {
4601err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004602 io_cqring_add_event(req, ret);
4603 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004604 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06004605 }
4606
Jens Axboe9e645e112019-05-10 16:07:28 -06004607 /*
4608 * If we already have a head request, queue this one for async
4609 * submittal once the head completes. If we don't have a head but
4610 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4611 * submitted sync once the chain is complete. If none of those
4612 * conditions are true (normal request), then just queue it.
4613 */
4614 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03004615 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06004616
Pavel Begunkov711be032020-01-17 03:57:59 +03004617 if (sqe_flags & IOSQE_IO_DRAIN) {
4618 head->flags |= REQ_F_IO_DRAIN;
4619 ctx->drain_next = 1;
4620 }
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004621
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004622 if (sqe_flags & IOSQE_IO_HARDLINK)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004623 req->flags |= REQ_F_HARDLINK;
4624
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004625 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004626 ret = -EAGAIN;
4627 goto err_req;
4628 }
4629
Jens Axboe3529d8c2019-12-19 18:24:38 -07004630 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07004631 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004632 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03004633 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07004634 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07004635 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03004636 trace_io_uring_link(ctx, req, head);
4637 list_add_tail(&req->link_list, &head->link_list);
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004638
4639 /* last request of a link, enqueue the link */
4640 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
4641 io_queue_link_head(head);
4642 *link = NULL;
4643 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004644 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03004645 if (unlikely(ctx->drain_next)) {
4646 req->flags |= REQ_F_IO_DRAIN;
4647 req->ctx->drain_next = 0;
4648 }
4649 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
4650 req->flags |= REQ_F_LINK;
4651 if (sqe_flags & IOSQE_IO_HARDLINK)
4652 req->flags |= REQ_F_HARDLINK;
4653
4654 INIT_LIST_HEAD(&req->link_list);
4655 ret = io_req_defer_prep(req, sqe);
4656 if (ret)
4657 req->flags |= REQ_F_FAIL_LINK;
4658 *link = req;
4659 } else {
4660 io_queue_sqe(req, sqe);
4661 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004662 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004663
4664 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06004665}
4666
Jens Axboe9a56a232019-01-09 09:06:50 -07004667/*
4668 * Batched submission is done, ensure local IO is flushed out.
4669 */
4670static void io_submit_state_end(struct io_submit_state *state)
4671{
4672 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06004673 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07004674 if (state->free_reqs)
4675 kmem_cache_free_bulk(req_cachep, state->free_reqs,
4676 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07004677}
4678
4679/*
4680 * Start submission side cache.
4681 */
4682static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08004683 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07004684{
4685 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07004686 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07004687 state->file = NULL;
4688 state->ios_left = max_ios;
4689}
4690
Jens Axboe2b188cc2019-01-07 10:46:33 -07004691static void io_commit_sqring(struct io_ring_ctx *ctx)
4692{
Hristo Venev75b28af2019-08-26 17:23:46 +00004693 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004694
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03004695 /*
4696 * Ensure any loads from the SQEs are done at this point,
4697 * since once we write the new head, the application could
4698 * write new data to them.
4699 */
4700 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004701}
4702
4703/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07004704 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07004705 * that is mapped by userspace. This means that care needs to be taken to
4706 * ensure that reads are stable, as we cannot rely on userspace always
4707 * being a good citizen. If members of the sqe are validated and then later
4708 * used, it's important that those reads are done through READ_ONCE() to
4709 * prevent a re-load down the line.
4710 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07004711static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
4712 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004713{
Hristo Venev75b28af2019-08-26 17:23:46 +00004714 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004715 unsigned head;
4716
4717 /*
4718 * The cached sq head (or cq tail) serves two purposes:
4719 *
4720 * 1) allows us to batch the cost of updating the user visible
4721 * head updates.
4722 * 2) allows the kernel side to track the head on its own, even
4723 * though the application is the one updating it.
4724 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004725 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03004726 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004727 /*
4728 * All io need record the previous position, if LINK vs DARIN,
4729 * it can be used to mark the position of the first IO in the
4730 * link list.
4731 */
4732 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004733 *sqe_ptr = &ctx->sq_sqes[head];
4734 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
4735 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004736 ctx->cached_sq_head++;
4737 return true;
4738 }
4739
4740 /* drop invalid entries */
4741 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06004742 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004743 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004744 return false;
4745}
4746
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004747static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004748 struct file *ring_file, int ring_fd,
4749 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07004750{
4751 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004752 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004753 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004754 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004755
Jens Axboec4a2ed72019-11-21 21:01:26 -07004756 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07004757 if (test_bit(0, &ctx->sq_check_overflow)) {
4758 if (!list_empty(&ctx->cq_overflow_list) &&
4759 !io_cqring_overflow_flush(ctx, false))
4760 return -EBUSY;
4761 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07004762
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004763 /* make sure SQ entry isn't read before tail */
4764 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03004765
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004766 if (!percpu_ref_tryget_many(&ctx->refs, nr))
4767 return -EAGAIN;
4768
Jens Axboe6c271ce2019-01-10 11:22:30 -07004769 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08004770 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004771 statep = &state;
4772 }
4773
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004774 ctx->ring_fd = ring_fd;
4775 ctx->ring_file = ring_file;
4776
Jens Axboe6c271ce2019-01-10 11:22:30 -07004777 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004778 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03004779 struct io_kiocb *req;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004780
Pavel Begunkov196be952019-11-07 01:41:06 +03004781 req = io_get_req(ctx, statep);
4782 if (unlikely(!req)) {
4783 if (!submitted)
4784 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004785 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06004786 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07004787 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004788 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03004789 break;
4790 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004791
Jens Axboed3656342019-12-18 09:50:26 -07004792 /* will complete beyond this point, count as submitted */
4793 submitted++;
4794
4795 if (unlikely(req->opcode >= IORING_OP_LAST)) {
4796 io_cqring_add_event(req, -EINVAL);
4797 io_double_put_req(req);
4798 break;
4799 }
4800
4801 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004802 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
4803 if (!mm_fault) {
4804 use_mm(ctx->sqo_mm);
4805 *mm = ctx->sqo_mm;
4806 }
4807 }
4808
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004809 req->has_user = *mm != NULL;
4810 req->in_async = async;
4811 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07004812 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
4813 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004814 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004815 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004816 }
4817
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004818 if (submitted != nr)
4819 percpu_ref_put_many(&ctx->refs, nr - submitted);
Jens Axboe9e645e112019-05-10 16:07:28 -06004820 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004821 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004822 if (statep)
4823 io_submit_state_end(&state);
4824
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004825 /* Commit SQ ring head once we've consumed and submitted all SQEs */
4826 io_commit_sqring(ctx);
4827
Jens Axboe6c271ce2019-01-10 11:22:30 -07004828 return submitted;
4829}
4830
4831static int io_sq_thread(void *data)
4832{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004833 struct io_ring_ctx *ctx = data;
4834 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07004835 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004836 mm_segment_t old_fs;
4837 DEFINE_WAIT(wait);
4838 unsigned inflight;
4839 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07004840 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004841
Jens Axboe206aefd2019-11-07 18:27:42 -07004842 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08004843
Jens Axboe6c271ce2019-01-10 11:22:30 -07004844 old_fs = get_fs();
4845 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07004846 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004847
Jens Axboec1edbf52019-11-10 16:56:04 -07004848 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004849 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004850 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004851
4852 if (inflight) {
4853 unsigned nr_events = 0;
4854
4855 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06004856 /*
4857 * inflight is the count of the maximum possible
4858 * entries we submitted, but it can be smaller
4859 * if we dropped some of them. If we don't have
4860 * poll entries available, then we know that we
4861 * have nothing left to poll for. Reset the
4862 * inflight count to zero in that case.
4863 */
4864 mutex_lock(&ctx->uring_lock);
4865 if (!list_empty(&ctx->poll_list))
4866 __io_iopoll_check(ctx, &nr_events, 0);
4867 else
4868 inflight = 0;
4869 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004870 } else {
4871 /*
4872 * Normal IO, just pretend everything completed.
4873 * We don't have to poll completions for that.
4874 */
4875 nr_events = inflight;
4876 }
4877
4878 inflight -= nr_events;
4879 if (!inflight)
4880 timeout = jiffies + ctx->sq_thread_idle;
4881 }
4882
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004883 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07004884
4885 /*
4886 * If submit got -EBUSY, flag us as needing the application
4887 * to enter the kernel to reap and flush events.
4888 */
4889 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07004890 /*
4891 * We're polling. If we're within the defined idle
4892 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07004893 * to sleep. The exception is if we got EBUSY doing
4894 * more IO, we should wait for the application to
4895 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07004896 */
Jens Axboec1edbf52019-11-10 16:56:04 -07004897 if (inflight ||
4898 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06004899 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07004900 continue;
4901 }
4902
4903 /*
4904 * Drop cur_mm before scheduling, we can't hold it for
4905 * long periods (or over schedule()). Do this before
4906 * adding ourselves to the waitqueue, as the unuse/drop
4907 * may sleep.
4908 */
4909 if (cur_mm) {
4910 unuse_mm(cur_mm);
4911 mmput(cur_mm);
4912 cur_mm = NULL;
4913 }
4914
4915 prepare_to_wait(&ctx->sqo_wait, &wait,
4916 TASK_INTERRUPTIBLE);
4917
4918 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00004919 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02004920 /* make sure to read SQ tail after writing flags */
4921 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07004922
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004923 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07004924 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004925 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07004926 finish_wait(&ctx->sqo_wait, &wait);
4927 break;
4928 }
4929 if (signal_pending(current))
4930 flush_signals(current);
4931 schedule();
4932 finish_wait(&ctx->sqo_wait, &wait);
4933
Hristo Venev75b28af2019-08-26 17:23:46 +00004934 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004935 continue;
4936 }
4937 finish_wait(&ctx->sqo_wait, &wait);
4938
Hristo Venev75b28af2019-08-26 17:23:46 +00004939 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004940 }
4941
Jens Axboe8a4955f2019-12-09 14:52:35 -07004942 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004943 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07004944 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004945 if (ret > 0)
4946 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004947 }
4948
4949 set_fs(old_fs);
4950 if (cur_mm) {
4951 unuse_mm(cur_mm);
4952 mmput(cur_mm);
4953 }
Jens Axboe181e4482019-11-25 08:52:30 -07004954 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06004955
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004956 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06004957
Jens Axboe6c271ce2019-01-10 11:22:30 -07004958 return 0;
4959}
4960
Jens Axboebda52162019-09-24 13:47:15 -06004961struct io_wait_queue {
4962 struct wait_queue_entry wq;
4963 struct io_ring_ctx *ctx;
4964 unsigned to_wait;
4965 unsigned nr_timeouts;
4966};
4967
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004968static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06004969{
4970 struct io_ring_ctx *ctx = iowq->ctx;
4971
4972 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08004973 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06004974 * started waiting. For timeouts, we always want to return to userspace,
4975 * regardless of event count.
4976 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004977 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06004978 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
4979}
4980
4981static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
4982 int wake_flags, void *key)
4983{
4984 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
4985 wq);
4986
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004987 /* use noflush == true, as we can't safely rely on locking context */
4988 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06004989 return -1;
4990
4991 return autoremove_wake_function(curr, mode, wake_flags, key);
4992}
4993
Jens Axboe2b188cc2019-01-07 10:46:33 -07004994/*
4995 * Wait until events become available, if we don't already have some. The
4996 * application must reap them itself, as they reside on the shared cq ring.
4997 */
4998static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
4999 const sigset_t __user *sig, size_t sigsz)
5000{
Jens Axboebda52162019-09-24 13:47:15 -06005001 struct io_wait_queue iowq = {
5002 .wq = {
5003 .private = current,
5004 .func = io_wake_function,
5005 .entry = LIST_HEAD_INIT(iowq.wq.entry),
5006 },
5007 .ctx = ctx,
5008 .to_wait = min_events,
5009 };
Hristo Venev75b28af2019-08-26 17:23:46 +00005010 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005011 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005012
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005013 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005014 return 0;
5015
5016 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005017#ifdef CONFIG_COMPAT
5018 if (in_compat_syscall())
5019 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07005020 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005021 else
5022#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07005023 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005024
Jens Axboe2b188cc2019-01-07 10:46:33 -07005025 if (ret)
5026 return ret;
5027 }
5028
Jens Axboebda52162019-09-24 13:47:15 -06005029 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005030 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06005031 do {
5032 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
5033 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005034 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06005035 break;
5036 schedule();
5037 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005038 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06005039 break;
5040 }
5041 } while (1);
5042 finish_wait(&ctx->wait, &iowq.wq);
5043
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005044 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005045
Hristo Venev75b28af2019-08-26 17:23:46 +00005046 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005047}
5048
Jens Axboe6b063142019-01-10 22:13:58 -07005049static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
5050{
5051#if defined(CONFIG_UNIX)
5052 if (ctx->ring_sock) {
5053 struct sock *sock = ctx->ring_sock->sk;
5054 struct sk_buff *skb;
5055
5056 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
5057 kfree_skb(skb);
5058 }
5059#else
5060 int i;
5061
Jens Axboe65e19f52019-10-26 07:20:21 -06005062 for (i = 0; i < ctx->nr_user_files; i++) {
5063 struct file *file;
5064
5065 file = io_file_from_index(ctx, i);
5066 if (file)
5067 fput(file);
5068 }
Jens Axboe6b063142019-01-10 22:13:58 -07005069#endif
5070}
5071
Jens Axboe05f3fb32019-12-09 11:22:50 -07005072static void io_file_ref_kill(struct percpu_ref *ref)
5073{
5074 struct fixed_file_data *data;
5075
5076 data = container_of(ref, struct fixed_file_data, refs);
5077 complete(&data->done);
5078}
5079
Jens Axboe6b063142019-01-10 22:13:58 -07005080static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
5081{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005082 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06005083 unsigned nr_tables, i;
5084
Jens Axboe05f3fb32019-12-09 11:22:50 -07005085 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07005086 return -ENXIO;
5087
Jens Axboe05f3fb32019-12-09 11:22:50 -07005088 /* protect against inflight atomic switch, which drops the ref */
Jens Axboe05f3fb32019-12-09 11:22:50 -07005089 percpu_ref_get(&data->refs);
Jens Axboee46a7952020-01-17 11:15:34 -07005090 /* wait for existing switches */
5091 flush_work(&data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005092 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
5093 wait_for_completion(&data->done);
5094 percpu_ref_put(&data->refs);
Jens Axboee46a7952020-01-17 11:15:34 -07005095 /* flush potential new switch */
5096 flush_work(&data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005097 percpu_ref_exit(&data->refs);
5098
Jens Axboe6b063142019-01-10 22:13:58 -07005099 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06005100 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
5101 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005102 kfree(data->table[i].files);
5103 kfree(data->table);
5104 kfree(data);
5105 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005106 ctx->nr_user_files = 0;
5107 return 0;
5108}
5109
Jens Axboe6c271ce2019-01-10 11:22:30 -07005110static void io_sq_thread_stop(struct io_ring_ctx *ctx)
5111{
5112 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07005113 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005114 /*
5115 * The park is a bit of a work-around, without it we get
5116 * warning spews on shutdown with SQPOLL set and affinity
5117 * set to a single CPU.
5118 */
Jens Axboe06058632019-04-13 09:26:03 -06005119 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005120 kthread_stop(ctx->sqo_thread);
5121 ctx->sqo_thread = NULL;
5122 }
5123}
5124
Jens Axboe6b063142019-01-10 22:13:58 -07005125static void io_finish_async(struct io_ring_ctx *ctx)
5126{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005127 io_sq_thread_stop(ctx);
5128
Jens Axboe561fb042019-10-24 07:25:42 -06005129 if (ctx->io_wq) {
5130 io_wq_destroy(ctx->io_wq);
5131 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005132 }
5133}
5134
5135#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07005136/*
5137 * Ensure the UNIX gc is aware of our file set, so we are certain that
5138 * the io_uring can be safely unregistered on process exit, even if we have
5139 * loops in the file referencing.
5140 */
5141static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
5142{
5143 struct sock *sk = ctx->ring_sock->sk;
5144 struct scm_fp_list *fpl;
5145 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06005146 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07005147
5148 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
5149 unsigned long inflight = ctx->user->unix_inflight + nr;
5150
5151 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
5152 return -EMFILE;
5153 }
5154
5155 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
5156 if (!fpl)
5157 return -ENOMEM;
5158
5159 skb = alloc_skb(0, GFP_KERNEL);
5160 if (!skb) {
5161 kfree(fpl);
5162 return -ENOMEM;
5163 }
5164
5165 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07005166
Jens Axboe08a45172019-10-03 08:11:03 -06005167 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07005168 fpl->user = get_uid(ctx->user);
5169 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005170 struct file *file = io_file_from_index(ctx, i + offset);
5171
5172 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06005173 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06005174 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06005175 unix_inflight(fpl->user, fpl->fp[nr_files]);
5176 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07005177 }
5178
Jens Axboe08a45172019-10-03 08:11:03 -06005179 if (nr_files) {
5180 fpl->max = SCM_MAX_FD;
5181 fpl->count = nr_files;
5182 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005183 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06005184 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
5185 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07005186
Jens Axboe08a45172019-10-03 08:11:03 -06005187 for (i = 0; i < nr_files; i++)
5188 fput(fpl->fp[i]);
5189 } else {
5190 kfree_skb(skb);
5191 kfree(fpl);
5192 }
Jens Axboe6b063142019-01-10 22:13:58 -07005193
5194 return 0;
5195}
5196
5197/*
5198 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
5199 * causes regular reference counting to break down. We rely on the UNIX
5200 * garbage collection to take care of this problem for us.
5201 */
5202static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5203{
5204 unsigned left, total;
5205 int ret = 0;
5206
5207 total = 0;
5208 left = ctx->nr_user_files;
5209 while (left) {
5210 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07005211
5212 ret = __io_sqe_files_scm(ctx, this_files, total);
5213 if (ret)
5214 break;
5215 left -= this_files;
5216 total += this_files;
5217 }
5218
5219 if (!ret)
5220 return 0;
5221
5222 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005223 struct file *file = io_file_from_index(ctx, total);
5224
5225 if (file)
5226 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07005227 total++;
5228 }
5229
5230 return ret;
5231}
5232#else
5233static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5234{
5235 return 0;
5236}
5237#endif
5238
Jens Axboe65e19f52019-10-26 07:20:21 -06005239static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
5240 unsigned nr_files)
5241{
5242 int i;
5243
5244 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005245 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005246 unsigned this_files;
5247
5248 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
5249 table->files = kcalloc(this_files, sizeof(struct file *),
5250 GFP_KERNEL);
5251 if (!table->files)
5252 break;
5253 nr_files -= this_files;
5254 }
5255
5256 if (i == nr_tables)
5257 return 0;
5258
5259 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005260 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005261 kfree(table->files);
5262 }
5263 return 1;
5264}
5265
Jens Axboe05f3fb32019-12-09 11:22:50 -07005266static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06005267{
5268#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06005269 struct sock *sock = ctx->ring_sock->sk;
5270 struct sk_buff_head list, *head = &sock->sk_receive_queue;
5271 struct sk_buff *skb;
5272 int i;
5273
5274 __skb_queue_head_init(&list);
5275
5276 /*
5277 * Find the skb that holds this file in its SCM_RIGHTS. When found,
5278 * remove this entry and rearrange the file array.
5279 */
5280 skb = skb_dequeue(head);
5281 while (skb) {
5282 struct scm_fp_list *fp;
5283
5284 fp = UNIXCB(skb).fp;
5285 for (i = 0; i < fp->count; i++) {
5286 int left;
5287
5288 if (fp->fp[i] != file)
5289 continue;
5290
5291 unix_notinflight(fp->user, fp->fp[i]);
5292 left = fp->count - 1 - i;
5293 if (left) {
5294 memmove(&fp->fp[i], &fp->fp[i + 1],
5295 left * sizeof(struct file *));
5296 }
5297 fp->count--;
5298 if (!fp->count) {
5299 kfree_skb(skb);
5300 skb = NULL;
5301 } else {
5302 __skb_queue_tail(&list, skb);
5303 }
5304 fput(file);
5305 file = NULL;
5306 break;
5307 }
5308
5309 if (!file)
5310 break;
5311
5312 __skb_queue_tail(&list, skb);
5313
5314 skb = skb_dequeue(head);
5315 }
5316
5317 if (skb_peek(&list)) {
5318 spin_lock_irq(&head->lock);
5319 while ((skb = __skb_dequeue(&list)) != NULL)
5320 __skb_queue_tail(head, skb);
5321 spin_unlock_irq(&head->lock);
5322 }
5323#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07005324 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06005325#endif
5326}
5327
Jens Axboe05f3fb32019-12-09 11:22:50 -07005328struct io_file_put {
5329 struct llist_node llist;
5330 struct file *file;
5331 struct completion *done;
5332};
5333
5334static void io_ring_file_ref_switch(struct work_struct *work)
5335{
5336 struct io_file_put *pfile, *tmp;
5337 struct fixed_file_data *data;
5338 struct llist_node *node;
5339
5340 data = container_of(work, struct fixed_file_data, ref_work);
5341
5342 while ((node = llist_del_all(&data->put_llist)) != NULL) {
5343 llist_for_each_entry_safe(pfile, tmp, node, llist) {
5344 io_ring_file_put(data->ctx, pfile->file);
5345 if (pfile->done)
5346 complete(pfile->done);
5347 else
5348 kfree(pfile);
5349 }
5350 }
5351
5352 percpu_ref_get(&data->refs);
5353 percpu_ref_switch_to_percpu(&data->refs);
5354}
5355
5356static void io_file_data_ref_zero(struct percpu_ref *ref)
5357{
5358 struct fixed_file_data *data;
5359
5360 data = container_of(ref, struct fixed_file_data, refs);
5361
5362 /* we can't safely switch from inside this context, punt to wq */
5363 queue_work(system_wq, &data->ref_work);
5364}
5365
5366static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
5367 unsigned nr_args)
5368{
5369 __s32 __user *fds = (__s32 __user *) arg;
5370 unsigned nr_tables;
5371 struct file *file;
5372 int fd, ret = 0;
5373 unsigned i;
5374
5375 if (ctx->file_data)
5376 return -EBUSY;
5377 if (!nr_args)
5378 return -EINVAL;
5379 if (nr_args > IORING_MAX_FIXED_FILES)
5380 return -EMFILE;
5381
5382 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
5383 if (!ctx->file_data)
5384 return -ENOMEM;
5385 ctx->file_data->ctx = ctx;
5386 init_completion(&ctx->file_data->done);
5387
5388 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
5389 ctx->file_data->table = kcalloc(nr_tables,
5390 sizeof(struct fixed_file_table),
5391 GFP_KERNEL);
5392 if (!ctx->file_data->table) {
5393 kfree(ctx->file_data);
5394 ctx->file_data = NULL;
5395 return -ENOMEM;
5396 }
5397
5398 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
5399 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
5400 kfree(ctx->file_data->table);
5401 kfree(ctx->file_data);
5402 ctx->file_data = NULL;
5403 return -ENOMEM;
5404 }
5405 ctx->file_data->put_llist.first = NULL;
5406 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
5407
5408 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
5409 percpu_ref_exit(&ctx->file_data->refs);
5410 kfree(ctx->file_data->table);
5411 kfree(ctx->file_data);
5412 ctx->file_data = NULL;
5413 return -ENOMEM;
5414 }
5415
5416 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
5417 struct fixed_file_table *table;
5418 unsigned index;
5419
5420 ret = -EFAULT;
5421 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
5422 break;
5423 /* allow sparse sets */
5424 if (fd == -1) {
5425 ret = 0;
5426 continue;
5427 }
5428
5429 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
5430 index = i & IORING_FILE_TABLE_MASK;
5431 file = fget(fd);
5432
5433 ret = -EBADF;
5434 if (!file)
5435 break;
5436
5437 /*
5438 * Don't allow io_uring instances to be registered. If UNIX
5439 * isn't enabled, then this causes a reference cycle and this
5440 * instance can never get freed. If UNIX is enabled we'll
5441 * handle it just fine, but there's still no point in allowing
5442 * a ring fd as it doesn't support regular read/write anyway.
5443 */
5444 if (file->f_op == &io_uring_fops) {
5445 fput(file);
5446 break;
5447 }
5448 ret = 0;
5449 table->files[index] = file;
5450 }
5451
5452 if (ret) {
5453 for (i = 0; i < ctx->nr_user_files; i++) {
5454 file = io_file_from_index(ctx, i);
5455 if (file)
5456 fput(file);
5457 }
5458 for (i = 0; i < nr_tables; i++)
5459 kfree(ctx->file_data->table[i].files);
5460
5461 kfree(ctx->file_data->table);
5462 kfree(ctx->file_data);
5463 ctx->file_data = NULL;
5464 ctx->nr_user_files = 0;
5465 return ret;
5466 }
5467
5468 ret = io_sqe_files_scm(ctx);
5469 if (ret)
5470 io_sqe_files_unregister(ctx);
5471
5472 return ret;
5473}
5474
Jens Axboec3a31e62019-10-03 13:59:56 -06005475static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
5476 int index)
5477{
5478#if defined(CONFIG_UNIX)
5479 struct sock *sock = ctx->ring_sock->sk;
5480 struct sk_buff_head *head = &sock->sk_receive_queue;
5481 struct sk_buff *skb;
5482
5483 /*
5484 * See if we can merge this file into an existing skb SCM_RIGHTS
5485 * file set. If there's no room, fall back to allocating a new skb
5486 * and filling it in.
5487 */
5488 spin_lock_irq(&head->lock);
5489 skb = skb_peek(head);
5490 if (skb) {
5491 struct scm_fp_list *fpl = UNIXCB(skb).fp;
5492
5493 if (fpl->count < SCM_MAX_FD) {
5494 __skb_unlink(skb, head);
5495 spin_unlock_irq(&head->lock);
5496 fpl->fp[fpl->count] = get_file(file);
5497 unix_inflight(fpl->user, fpl->fp[fpl->count]);
5498 fpl->count++;
5499 spin_lock_irq(&head->lock);
5500 __skb_queue_head(head, skb);
5501 } else {
5502 skb = NULL;
5503 }
5504 }
5505 spin_unlock_irq(&head->lock);
5506
5507 if (skb) {
5508 fput(file);
5509 return 0;
5510 }
5511
5512 return __io_sqe_files_scm(ctx, 1, index);
5513#else
5514 return 0;
5515#endif
5516}
5517
Jens Axboe05f3fb32019-12-09 11:22:50 -07005518static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06005519{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005520 struct fixed_file_data *data;
5521
5522 data = container_of(ref, struct fixed_file_data, refs);
5523 clear_bit(FFD_F_ATOMIC, &data->state);
5524}
5525
5526static bool io_queue_file_removal(struct fixed_file_data *data,
5527 struct file *file)
5528{
5529 struct io_file_put *pfile, pfile_stack;
5530 DECLARE_COMPLETION_ONSTACK(done);
5531
5532 /*
5533 * If we fail allocating the struct we need for doing async reomval
5534 * of this file, just punt to sync and wait for it.
5535 */
5536 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
5537 if (!pfile) {
5538 pfile = &pfile_stack;
5539 pfile->done = &done;
5540 }
5541
5542 pfile->file = file;
5543 llist_add(&pfile->llist, &data->put_llist);
5544
5545 if (pfile == &pfile_stack) {
5546 if (!test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5547 percpu_ref_put(&data->refs);
5548 percpu_ref_switch_to_atomic(&data->refs,
5549 io_atomic_switch);
5550 }
5551 wait_for_completion(&done);
5552 flush_work(&data->ref_work);
5553 return false;
5554 }
5555
5556 return true;
5557}
5558
5559static int __io_sqe_files_update(struct io_ring_ctx *ctx,
5560 struct io_uring_files_update *up,
5561 unsigned nr_args)
5562{
5563 struct fixed_file_data *data = ctx->file_data;
5564 bool ref_switch = false;
5565 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005566 __s32 __user *fds;
5567 int fd, i, err;
5568 __u32 done;
5569
Jens Axboe05f3fb32019-12-09 11:22:50 -07005570 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06005571 return -EOVERFLOW;
5572 if (done > ctx->nr_user_files)
5573 return -EINVAL;
5574
5575 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005576 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06005577 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005578 struct fixed_file_table *table;
5579 unsigned index;
5580
Jens Axboec3a31e62019-10-03 13:59:56 -06005581 err = 0;
5582 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
5583 err = -EFAULT;
5584 break;
5585 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07005586 i = array_index_nospec(up->offset, ctx->nr_user_files);
5587 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06005588 index = i & IORING_FILE_TABLE_MASK;
5589 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005590 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06005591 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005592 if (io_queue_file_removal(data, file))
5593 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06005594 }
5595 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06005596 file = fget(fd);
5597 if (!file) {
5598 err = -EBADF;
5599 break;
5600 }
5601 /*
5602 * Don't allow io_uring instances to be registered. If
5603 * UNIX isn't enabled, then this causes a reference
5604 * cycle and this instance can never get freed. If UNIX
5605 * is enabled we'll handle it just fine, but there's
5606 * still no point in allowing a ring fd as it doesn't
5607 * support regular read/write anyway.
5608 */
5609 if (file->f_op == &io_uring_fops) {
5610 fput(file);
5611 err = -EBADF;
5612 break;
5613 }
Jens Axboe65e19f52019-10-26 07:20:21 -06005614 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005615 err = io_sqe_file_register(ctx, file, i);
5616 if (err)
5617 break;
5618 }
5619 nr_args--;
5620 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005621 up->offset++;
5622 }
5623
5624 if (ref_switch && !test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5625 percpu_ref_put(&data->refs);
5626 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06005627 }
5628
5629 return done ? done : err;
5630}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005631static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
5632 unsigned nr_args)
5633{
5634 struct io_uring_files_update up;
5635
5636 if (!ctx->file_data)
5637 return -ENXIO;
5638 if (!nr_args)
5639 return -EINVAL;
5640 if (copy_from_user(&up, arg, sizeof(up)))
5641 return -EFAULT;
5642 if (up.resv)
5643 return -EINVAL;
5644
5645 return __io_sqe_files_update(ctx, &up, nr_args);
5646}
Jens Axboec3a31e62019-10-03 13:59:56 -06005647
Jens Axboe7d723062019-11-12 22:31:31 -07005648static void io_put_work(struct io_wq_work *work)
5649{
5650 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5651
5652 io_put_req(req);
5653}
5654
5655static void io_get_work(struct io_wq_work *work)
5656{
5657 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5658
5659 refcount_inc(&req->refs);
5660}
5661
Jens Axboe6c271ce2019-01-10 11:22:30 -07005662static int io_sq_offload_start(struct io_ring_ctx *ctx,
5663 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005664{
Jens Axboe576a3472019-11-25 08:49:20 -07005665 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06005666 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005667 int ret;
5668
Jens Axboe6c271ce2019-01-10 11:22:30 -07005669 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005670 mmgrab(current->mm);
5671 ctx->sqo_mm = current->mm;
5672
Jens Axboe6c271ce2019-01-10 11:22:30 -07005673 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06005674 ret = -EPERM;
5675 if (!capable(CAP_SYS_ADMIN))
5676 goto err;
5677
Jens Axboe917257d2019-04-13 09:28:55 -06005678 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
5679 if (!ctx->sq_thread_idle)
5680 ctx->sq_thread_idle = HZ;
5681
Jens Axboe6c271ce2019-01-10 11:22:30 -07005682 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06005683 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005684
Jens Axboe917257d2019-04-13 09:28:55 -06005685 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06005686 if (cpu >= nr_cpu_ids)
5687 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08005688 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06005689 goto err;
5690
Jens Axboe6c271ce2019-01-10 11:22:30 -07005691 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
5692 ctx, cpu,
5693 "io_uring-sq");
5694 } else {
5695 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
5696 "io_uring-sq");
5697 }
5698 if (IS_ERR(ctx->sqo_thread)) {
5699 ret = PTR_ERR(ctx->sqo_thread);
5700 ctx->sqo_thread = NULL;
5701 goto err;
5702 }
5703 wake_up_process(ctx->sqo_thread);
5704 } else if (p->flags & IORING_SETUP_SQ_AFF) {
5705 /* Can't have SQ_AFF without SQPOLL */
5706 ret = -EINVAL;
5707 goto err;
5708 }
5709
Jens Axboe576a3472019-11-25 08:49:20 -07005710 data.mm = ctx->sqo_mm;
5711 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07005712 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07005713 data.get_work = io_get_work;
5714 data.put_work = io_put_work;
5715
Jens Axboe561fb042019-10-24 07:25:42 -06005716 /* Do QD, or 4 * CPUS, whatever is smallest */
5717 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07005718 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06005719 if (IS_ERR(ctx->io_wq)) {
5720 ret = PTR_ERR(ctx->io_wq);
5721 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005722 goto err;
5723 }
5724
5725 return 0;
5726err:
Jens Axboe54a91f32019-09-10 09:15:04 -06005727 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005728 mmdrop(ctx->sqo_mm);
5729 ctx->sqo_mm = NULL;
5730 return ret;
5731}
5732
5733static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
5734{
5735 atomic_long_sub(nr_pages, &user->locked_vm);
5736}
5737
5738static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
5739{
5740 unsigned long page_limit, cur_pages, new_pages;
5741
5742 /* Don't allow more pages than we can safely lock */
5743 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
5744
5745 do {
5746 cur_pages = atomic_long_read(&user->locked_vm);
5747 new_pages = cur_pages + nr_pages;
5748 if (new_pages > page_limit)
5749 return -ENOMEM;
5750 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
5751 new_pages) != cur_pages);
5752
5753 return 0;
5754}
5755
5756static void io_mem_free(void *ptr)
5757{
Mark Rutland52e04ef2019-04-30 17:30:21 +01005758 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005759
Mark Rutland52e04ef2019-04-30 17:30:21 +01005760 if (!ptr)
5761 return;
5762
5763 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005764 if (put_page_testzero(page))
5765 free_compound_page(page);
5766}
5767
5768static void *io_mem_alloc(size_t size)
5769{
5770 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
5771 __GFP_NORETRY;
5772
5773 return (void *) __get_free_pages(gfp_flags, get_order(size));
5774}
5775
Hristo Venev75b28af2019-08-26 17:23:46 +00005776static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
5777 size_t *sq_offset)
5778{
5779 struct io_rings *rings;
5780 size_t off, sq_array_size;
5781
5782 off = struct_size(rings, cqes, cq_entries);
5783 if (off == SIZE_MAX)
5784 return SIZE_MAX;
5785
5786#ifdef CONFIG_SMP
5787 off = ALIGN(off, SMP_CACHE_BYTES);
5788 if (off == 0)
5789 return SIZE_MAX;
5790#endif
5791
5792 sq_array_size = array_size(sizeof(u32), sq_entries);
5793 if (sq_array_size == SIZE_MAX)
5794 return SIZE_MAX;
5795
5796 if (check_add_overflow(off, sq_array_size, &off))
5797 return SIZE_MAX;
5798
5799 if (sq_offset)
5800 *sq_offset = off;
5801
5802 return off;
5803}
5804
Jens Axboe2b188cc2019-01-07 10:46:33 -07005805static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
5806{
Hristo Venev75b28af2019-08-26 17:23:46 +00005807 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005808
Hristo Venev75b28af2019-08-26 17:23:46 +00005809 pages = (size_t)1 << get_order(
5810 rings_size(sq_entries, cq_entries, NULL));
5811 pages += (size_t)1 << get_order(
5812 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07005813
Hristo Venev75b28af2019-08-26 17:23:46 +00005814 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005815}
5816
Jens Axboeedafcce2019-01-09 09:16:05 -07005817static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
5818{
5819 int i, j;
5820
5821 if (!ctx->user_bufs)
5822 return -ENXIO;
5823
5824 for (i = 0; i < ctx->nr_user_bufs; i++) {
5825 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
5826
5827 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07005828 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07005829
5830 if (ctx->account_mem)
5831 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005832 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07005833 imu->nr_bvecs = 0;
5834 }
5835
5836 kfree(ctx->user_bufs);
5837 ctx->user_bufs = NULL;
5838 ctx->nr_user_bufs = 0;
5839 return 0;
5840}
5841
5842static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
5843 void __user *arg, unsigned index)
5844{
5845 struct iovec __user *src;
5846
5847#ifdef CONFIG_COMPAT
5848 if (ctx->compat) {
5849 struct compat_iovec __user *ciovs;
5850 struct compat_iovec ciov;
5851
5852 ciovs = (struct compat_iovec __user *) arg;
5853 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
5854 return -EFAULT;
5855
Jens Axboed55e5f52019-12-11 16:12:15 -07005856 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07005857 dst->iov_len = ciov.iov_len;
5858 return 0;
5859 }
5860#endif
5861 src = (struct iovec __user *) arg;
5862 if (copy_from_user(dst, &src[index], sizeof(*dst)))
5863 return -EFAULT;
5864 return 0;
5865}
5866
5867static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
5868 unsigned nr_args)
5869{
5870 struct vm_area_struct **vmas = NULL;
5871 struct page **pages = NULL;
5872 int i, j, got_pages = 0;
5873 int ret = -EINVAL;
5874
5875 if (ctx->user_bufs)
5876 return -EBUSY;
5877 if (!nr_args || nr_args > UIO_MAXIOV)
5878 return -EINVAL;
5879
5880 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
5881 GFP_KERNEL);
5882 if (!ctx->user_bufs)
5883 return -ENOMEM;
5884
5885 for (i = 0; i < nr_args; i++) {
5886 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
5887 unsigned long off, start, end, ubuf;
5888 int pret, nr_pages;
5889 struct iovec iov;
5890 size_t size;
5891
5892 ret = io_copy_iov(ctx, &iov, arg, i);
5893 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03005894 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07005895
5896 /*
5897 * Don't impose further limits on the size and buffer
5898 * constraints here, we'll -EINVAL later when IO is
5899 * submitted if they are wrong.
5900 */
5901 ret = -EFAULT;
5902 if (!iov.iov_base || !iov.iov_len)
5903 goto err;
5904
5905 /* arbitrary limit, but we need something */
5906 if (iov.iov_len > SZ_1G)
5907 goto err;
5908
5909 ubuf = (unsigned long) iov.iov_base;
5910 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
5911 start = ubuf >> PAGE_SHIFT;
5912 nr_pages = end - start;
5913
5914 if (ctx->account_mem) {
5915 ret = io_account_mem(ctx->user, nr_pages);
5916 if (ret)
5917 goto err;
5918 }
5919
5920 ret = 0;
5921 if (!pages || nr_pages > got_pages) {
5922 kfree(vmas);
5923 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005924 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07005925 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005926 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07005927 sizeof(struct vm_area_struct *),
5928 GFP_KERNEL);
5929 if (!pages || !vmas) {
5930 ret = -ENOMEM;
5931 if (ctx->account_mem)
5932 io_unaccount_mem(ctx->user, nr_pages);
5933 goto err;
5934 }
5935 got_pages = nr_pages;
5936 }
5937
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005938 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07005939 GFP_KERNEL);
5940 ret = -ENOMEM;
5941 if (!imu->bvec) {
5942 if (ctx->account_mem)
5943 io_unaccount_mem(ctx->user, nr_pages);
5944 goto err;
5945 }
5946
5947 ret = 0;
5948 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07005949 pret = get_user_pages(ubuf, nr_pages,
5950 FOLL_WRITE | FOLL_LONGTERM,
5951 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07005952 if (pret == nr_pages) {
5953 /* don't support file backed memory */
5954 for (j = 0; j < nr_pages; j++) {
5955 struct vm_area_struct *vma = vmas[j];
5956
5957 if (vma->vm_file &&
5958 !is_file_hugepages(vma->vm_file)) {
5959 ret = -EOPNOTSUPP;
5960 break;
5961 }
5962 }
5963 } else {
5964 ret = pret < 0 ? pret : -EFAULT;
5965 }
5966 up_read(&current->mm->mmap_sem);
5967 if (ret) {
5968 /*
5969 * if we did partial map, or found file backed vmas,
5970 * release any pages we did get
5971 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07005972 if (pret > 0)
5973 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005974 if (ctx->account_mem)
5975 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005976 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07005977 goto err;
5978 }
5979
5980 off = ubuf & ~PAGE_MASK;
5981 size = iov.iov_len;
5982 for (j = 0; j < nr_pages; j++) {
5983 size_t vec_len;
5984
5985 vec_len = min_t(size_t, size, PAGE_SIZE - off);
5986 imu->bvec[j].bv_page = pages[j];
5987 imu->bvec[j].bv_len = vec_len;
5988 imu->bvec[j].bv_offset = off;
5989 off = 0;
5990 size -= vec_len;
5991 }
5992 /* store original address for later verification */
5993 imu->ubuf = ubuf;
5994 imu->len = iov.iov_len;
5995 imu->nr_bvecs = nr_pages;
5996
5997 ctx->nr_user_bufs++;
5998 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005999 kvfree(pages);
6000 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006001 return 0;
6002err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006003 kvfree(pages);
6004 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006005 io_sqe_buffer_unregister(ctx);
6006 return ret;
6007}
6008
Jens Axboe9b402842019-04-11 11:45:41 -06006009static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
6010{
6011 __s32 __user *fds = arg;
6012 int fd;
6013
6014 if (ctx->cq_ev_fd)
6015 return -EBUSY;
6016
6017 if (copy_from_user(&fd, fds, sizeof(*fds)))
6018 return -EFAULT;
6019
6020 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
6021 if (IS_ERR(ctx->cq_ev_fd)) {
6022 int ret = PTR_ERR(ctx->cq_ev_fd);
6023 ctx->cq_ev_fd = NULL;
6024 return ret;
6025 }
6026
6027 return 0;
6028}
6029
6030static int io_eventfd_unregister(struct io_ring_ctx *ctx)
6031{
6032 if (ctx->cq_ev_fd) {
6033 eventfd_ctx_put(ctx->cq_ev_fd);
6034 ctx->cq_ev_fd = NULL;
6035 return 0;
6036 }
6037
6038 return -ENXIO;
6039}
6040
Jens Axboe2b188cc2019-01-07 10:46:33 -07006041static void io_ring_ctx_free(struct io_ring_ctx *ctx)
6042{
Jens Axboe6b063142019-01-10 22:13:58 -07006043 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006044 if (ctx->sqo_mm)
6045 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07006046
6047 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07006048 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07006049 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06006050 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07006051
Jens Axboe2b188cc2019-01-07 10:46:33 -07006052#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07006053 if (ctx->ring_sock) {
6054 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006055 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07006056 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006057#endif
6058
Hristo Venev75b28af2019-08-26 17:23:46 +00006059 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006060 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006061
6062 percpu_ref_exit(&ctx->refs);
6063 if (ctx->account_mem)
6064 io_unaccount_mem(ctx->user,
6065 ring_pages(ctx->sq_entries, ctx->cq_entries));
6066 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07006067 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07006068 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07006069 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07006070 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006071 kfree(ctx);
6072}
6073
6074static __poll_t io_uring_poll(struct file *file, poll_table *wait)
6075{
6076 struct io_ring_ctx *ctx = file->private_data;
6077 __poll_t mask = 0;
6078
6079 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02006080 /*
6081 * synchronizes with barrier from wq_has_sleeper call in
6082 * io_commit_cqring
6083 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006084 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00006085 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
6086 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006087 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08006088 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006089 mask |= EPOLLIN | EPOLLRDNORM;
6090
6091 return mask;
6092}
6093
6094static int io_uring_fasync(int fd, struct file *file, int on)
6095{
6096 struct io_ring_ctx *ctx = file->private_data;
6097
6098 return fasync_helper(fd, file, on, &ctx->cq_fasync);
6099}
6100
6101static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
6102{
6103 mutex_lock(&ctx->uring_lock);
6104 percpu_ref_kill(&ctx->refs);
6105 mutex_unlock(&ctx->uring_lock);
6106
Jens Axboe5262f562019-09-17 12:26:57 -06006107 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07006108 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06006109
6110 if (ctx->io_wq)
6111 io_wq_cancel_all(ctx->io_wq);
6112
Jens Axboedef596e2019-01-09 08:59:42 -07006113 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07006114 /* if we failed setting up the ctx, we might not have any rings */
6115 if (ctx->rings)
6116 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07006117 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006118 io_ring_ctx_free(ctx);
6119}
6120
6121static int io_uring_release(struct inode *inode, struct file *file)
6122{
6123 struct io_ring_ctx *ctx = file->private_data;
6124
6125 file->private_data = NULL;
6126 io_ring_ctx_wait_and_kill(ctx);
6127 return 0;
6128}
6129
Jens Axboefcb323c2019-10-24 12:39:47 -06006130static void io_uring_cancel_files(struct io_ring_ctx *ctx,
6131 struct files_struct *files)
6132{
6133 struct io_kiocb *req;
6134 DEFINE_WAIT(wait);
6135
6136 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07006137 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06006138
6139 spin_lock_irq(&ctx->inflight_lock);
6140 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07006141 if (req->work.files != files)
6142 continue;
6143 /* req is being completed, ignore */
6144 if (!refcount_inc_not_zero(&req->refs))
6145 continue;
6146 cancel_req = req;
6147 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06006148 }
Jens Axboe768134d2019-11-10 20:30:53 -07006149 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006150 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07006151 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06006152 spin_unlock_irq(&ctx->inflight_lock);
6153
Jens Axboe768134d2019-11-10 20:30:53 -07006154 /* We need to keep going until we don't find a matching req */
6155 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006156 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08006157
6158 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
6159 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06006160 schedule();
6161 }
Jens Axboe768134d2019-11-10 20:30:53 -07006162 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06006163}
6164
6165static int io_uring_flush(struct file *file, void *data)
6166{
6167 struct io_ring_ctx *ctx = file->private_data;
6168
6169 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006170 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
6171 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06006172 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006173 }
Jens Axboefcb323c2019-10-24 12:39:47 -06006174 return 0;
6175}
6176
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006177static void *io_uring_validate_mmap_request(struct file *file,
6178 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006179{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006180 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006181 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006182 struct page *page;
6183 void *ptr;
6184
6185 switch (offset) {
6186 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00006187 case IORING_OFF_CQ_RING:
6188 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006189 break;
6190 case IORING_OFF_SQES:
6191 ptr = ctx->sq_sqes;
6192 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006193 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006194 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006195 }
6196
6197 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07006198 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006199 return ERR_PTR(-EINVAL);
6200
6201 return ptr;
6202}
6203
6204#ifdef CONFIG_MMU
6205
6206static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6207{
6208 size_t sz = vma->vm_end - vma->vm_start;
6209 unsigned long pfn;
6210 void *ptr;
6211
6212 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
6213 if (IS_ERR(ptr))
6214 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006215
6216 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
6217 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
6218}
6219
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006220#else /* !CONFIG_MMU */
6221
6222static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6223{
6224 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
6225}
6226
6227static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
6228{
6229 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
6230}
6231
6232static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
6233 unsigned long addr, unsigned long len,
6234 unsigned long pgoff, unsigned long flags)
6235{
6236 void *ptr;
6237
6238 ptr = io_uring_validate_mmap_request(file, pgoff, len);
6239 if (IS_ERR(ptr))
6240 return PTR_ERR(ptr);
6241
6242 return (unsigned long) ptr;
6243}
6244
6245#endif /* !CONFIG_MMU */
6246
Jens Axboe2b188cc2019-01-07 10:46:33 -07006247SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
6248 u32, min_complete, u32, flags, const sigset_t __user *, sig,
6249 size_t, sigsz)
6250{
6251 struct io_ring_ctx *ctx;
6252 long ret = -EBADF;
6253 int submitted = 0;
6254 struct fd f;
6255
Jens Axboe6c271ce2019-01-10 11:22:30 -07006256 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006257 return -EINVAL;
6258
6259 f = fdget(fd);
6260 if (!f.file)
6261 return -EBADF;
6262
6263 ret = -EOPNOTSUPP;
6264 if (f.file->f_op != &io_uring_fops)
6265 goto out_fput;
6266
6267 ret = -ENXIO;
6268 ctx = f.file->private_data;
6269 if (!percpu_ref_tryget(&ctx->refs))
6270 goto out_fput;
6271
Jens Axboe6c271ce2019-01-10 11:22:30 -07006272 /*
6273 * For SQ polling, the thread will do all submissions and completions.
6274 * Just return the requested submit count, and wake the thread if
6275 * we were asked to.
6276 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006277 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006278 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07006279 if (!list_empty_careful(&ctx->cq_overflow_list))
6280 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006281 if (flags & IORING_ENTER_SQ_WAKEUP)
6282 wake_up(&ctx->sqo_wait);
6283 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006284 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006285 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006286
Jens Axboe44d28272020-01-16 19:00:24 -07006287 if (current->mm != ctx->sqo_mm ||
6288 current_cred() != ctx->creds) {
6289 ret = -EPERM;
6290 goto out;
6291 }
6292
Jens Axboe2b188cc2019-01-07 10:46:33 -07006293 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006294 /* already have mm, so io_submit_sqes() won't try to grab it */
6295 cur_mm = ctx->sqo_mm;
6296 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
6297 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006298 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006299
6300 if (submitted != to_submit)
6301 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006302 }
6303 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07006304 unsigned nr_events = 0;
6305
Jens Axboe2b188cc2019-01-07 10:46:33 -07006306 min_complete = min(min_complete, ctx->cq_entries);
6307
Jens Axboedef596e2019-01-09 08:59:42 -07006308 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07006309 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07006310 } else {
6311 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
6312 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006313 }
6314
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006315out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03006316 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006317out_fput:
6318 fdput(f);
6319 return submitted ? submitted : ret;
6320}
6321
6322static const struct file_operations io_uring_fops = {
6323 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06006324 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07006325 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006326#ifndef CONFIG_MMU
6327 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
6328 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
6329#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006330 .poll = io_uring_poll,
6331 .fasync = io_uring_fasync,
6332};
6333
6334static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
6335 struct io_uring_params *p)
6336{
Hristo Venev75b28af2019-08-26 17:23:46 +00006337 struct io_rings *rings;
6338 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006339
Hristo Venev75b28af2019-08-26 17:23:46 +00006340 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
6341 if (size == SIZE_MAX)
6342 return -EOVERFLOW;
6343
6344 rings = io_mem_alloc(size);
6345 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006346 return -ENOMEM;
6347
Hristo Venev75b28af2019-08-26 17:23:46 +00006348 ctx->rings = rings;
6349 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
6350 rings->sq_ring_mask = p->sq_entries - 1;
6351 rings->cq_ring_mask = p->cq_entries - 1;
6352 rings->sq_ring_entries = p->sq_entries;
6353 rings->cq_ring_entries = p->cq_entries;
6354 ctx->sq_mask = rings->sq_ring_mask;
6355 ctx->cq_mask = rings->cq_ring_mask;
6356 ctx->sq_entries = rings->sq_ring_entries;
6357 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006358
6359 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07006360 if (size == SIZE_MAX) {
6361 io_mem_free(ctx->rings);
6362 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006363 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07006364 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006365
6366 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07006367 if (!ctx->sq_sqes) {
6368 io_mem_free(ctx->rings);
6369 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006370 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07006371 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006372
Jens Axboe2b188cc2019-01-07 10:46:33 -07006373 return 0;
6374}
6375
6376/*
6377 * Allocate an anonymous fd, this is what constitutes the application
6378 * visible backing of an io_uring instance. The application mmaps this
6379 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
6380 * we have to tie this fd to a socket for file garbage collection purposes.
6381 */
6382static int io_uring_get_fd(struct io_ring_ctx *ctx)
6383{
6384 struct file *file;
6385 int ret;
6386
6387#if defined(CONFIG_UNIX)
6388 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
6389 &ctx->ring_sock);
6390 if (ret)
6391 return ret;
6392#endif
6393
6394 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
6395 if (ret < 0)
6396 goto err;
6397
6398 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
6399 O_RDWR | O_CLOEXEC);
6400 if (IS_ERR(file)) {
6401 put_unused_fd(ret);
6402 ret = PTR_ERR(file);
6403 goto err;
6404 }
6405
6406#if defined(CONFIG_UNIX)
6407 ctx->ring_sock->file = file;
6408#endif
6409 fd_install(ret, file);
6410 return ret;
6411err:
6412#if defined(CONFIG_UNIX)
6413 sock_release(ctx->ring_sock);
6414 ctx->ring_sock = NULL;
6415#endif
6416 return ret;
6417}
6418
6419static int io_uring_create(unsigned entries, struct io_uring_params *p)
6420{
6421 struct user_struct *user = NULL;
6422 struct io_ring_ctx *ctx;
6423 bool account_mem;
6424 int ret;
6425
Jens Axboe8110c1a2019-12-28 15:39:54 -07006426 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006427 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006428 if (entries > IORING_MAX_ENTRIES) {
6429 if (!(p->flags & IORING_SETUP_CLAMP))
6430 return -EINVAL;
6431 entries = IORING_MAX_ENTRIES;
6432 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006433
6434 /*
6435 * Use twice as many entries for the CQ ring. It's possible for the
6436 * application to drive a higher depth than the size of the SQ ring,
6437 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06006438 * some flexibility in overcommitting a bit. If the application has
6439 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
6440 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07006441 */
6442 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06006443 if (p->flags & IORING_SETUP_CQSIZE) {
6444 /*
6445 * If IORING_SETUP_CQSIZE is set, we do the same roundup
6446 * to a power-of-two, if it isn't already. We do NOT impose
6447 * any cq vs sq ring sizing.
6448 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07006449 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06006450 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006451 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
6452 if (!(p->flags & IORING_SETUP_CLAMP))
6453 return -EINVAL;
6454 p->cq_entries = IORING_MAX_CQ_ENTRIES;
6455 }
Jens Axboe33a107f2019-10-04 12:10:03 -06006456 p->cq_entries = roundup_pow_of_two(p->cq_entries);
6457 } else {
6458 p->cq_entries = 2 * p->sq_entries;
6459 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006460
6461 user = get_uid(current_user());
6462 account_mem = !capable(CAP_IPC_LOCK);
6463
6464 if (account_mem) {
6465 ret = io_account_mem(user,
6466 ring_pages(p->sq_entries, p->cq_entries));
6467 if (ret) {
6468 free_uid(user);
6469 return ret;
6470 }
6471 }
6472
6473 ctx = io_ring_ctx_alloc(p);
6474 if (!ctx) {
6475 if (account_mem)
6476 io_unaccount_mem(user, ring_pages(p->sq_entries,
6477 p->cq_entries));
6478 free_uid(user);
6479 return -ENOMEM;
6480 }
6481 ctx->compat = in_compat_syscall();
6482 ctx->account_mem = account_mem;
6483 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07006484 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07006485
6486 ret = io_allocate_scq_urings(ctx, p);
6487 if (ret)
6488 goto err;
6489
Jens Axboe6c271ce2019-01-10 11:22:30 -07006490 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006491 if (ret)
6492 goto err;
6493
Jens Axboe2b188cc2019-01-07 10:46:33 -07006494 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006495 p->sq_off.head = offsetof(struct io_rings, sq.head);
6496 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
6497 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
6498 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
6499 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
6500 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
6501 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006502
6503 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006504 p->cq_off.head = offsetof(struct io_rings, cq.head);
6505 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
6506 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
6507 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
6508 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
6509 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06006510
Jens Axboe044c1ab2019-10-28 09:15:33 -06006511 /*
6512 * Install ring fd as the very last thing, so we don't risk someone
6513 * having closed it before we finish setup
6514 */
6515 ret = io_uring_get_fd(ctx);
6516 if (ret < 0)
6517 goto err;
6518
Jens Axboeda8c9692019-12-02 18:51:26 -07006519 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboeba042912019-12-25 16:33:42 -07006520 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006521 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006522 return ret;
6523err:
6524 io_ring_ctx_wait_and_kill(ctx);
6525 return ret;
6526}
6527
6528/*
6529 * Sets up an aio uring context, and returns the fd. Applications asks for a
6530 * ring size, we return the actual sq/cq ring sizes (among other things) in the
6531 * params structure passed in.
6532 */
6533static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
6534{
6535 struct io_uring_params p;
6536 long ret;
6537 int i;
6538
6539 if (copy_from_user(&p, params, sizeof(p)))
6540 return -EFAULT;
6541 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
6542 if (p.resv[i])
6543 return -EINVAL;
6544 }
6545
Jens Axboe6c271ce2019-01-10 11:22:30 -07006546 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07006547 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
6548 IORING_SETUP_CLAMP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006549 return -EINVAL;
6550
6551 ret = io_uring_create(entries, &p);
6552 if (ret < 0)
6553 return ret;
6554
6555 if (copy_to_user(params, &p, sizeof(p)))
6556 return -EFAULT;
6557
6558 return ret;
6559}
6560
6561SYSCALL_DEFINE2(io_uring_setup, u32, entries,
6562 struct io_uring_params __user *, params)
6563{
6564 return io_uring_setup(entries, params);
6565}
6566
Jens Axboe66f4af92020-01-16 15:36:52 -07006567static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
6568{
6569 struct io_uring_probe *p;
6570 size_t size;
6571 int i, ret;
6572
6573 size = struct_size(p, ops, nr_args);
6574 if (size == SIZE_MAX)
6575 return -EOVERFLOW;
6576 p = kzalloc(size, GFP_KERNEL);
6577 if (!p)
6578 return -ENOMEM;
6579
6580 ret = -EFAULT;
6581 if (copy_from_user(p, arg, size))
6582 goto out;
6583 ret = -EINVAL;
6584 if (memchr_inv(p, 0, size))
6585 goto out;
6586
6587 p->last_op = IORING_OP_LAST - 1;
6588 if (nr_args > IORING_OP_LAST)
6589 nr_args = IORING_OP_LAST;
6590
6591 for (i = 0; i < nr_args; i++) {
6592 p->ops[i].op = i;
6593 if (!io_op_defs[i].not_supported)
6594 p->ops[i].flags = IO_URING_OP_SUPPORTED;
6595 }
6596 p->ops_len = i;
6597
6598 ret = 0;
6599 if (copy_to_user(arg, p, size))
6600 ret = -EFAULT;
6601out:
6602 kfree(p);
6603 return ret;
6604}
6605
Jens Axboeedafcce2019-01-09 09:16:05 -07006606static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
6607 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06006608 __releases(ctx->uring_lock)
6609 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07006610{
6611 int ret;
6612
Jens Axboe35fa71a2019-04-22 10:23:23 -06006613 /*
6614 * We're inside the ring mutex, if the ref is already dying, then
6615 * someone else killed the ctx or is already going through
6616 * io_uring_register().
6617 */
6618 if (percpu_ref_is_dying(&ctx->refs))
6619 return -ENXIO;
6620
Jens Axboe05f3fb32019-12-09 11:22:50 -07006621 if (opcode != IORING_UNREGISTER_FILES &&
Jens Axboe66f4af92020-01-16 15:36:52 -07006622 opcode != IORING_REGISTER_FILES_UPDATE &&
6623 opcode != IORING_REGISTER_PROBE) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006624 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06006625
Jens Axboe05f3fb32019-12-09 11:22:50 -07006626 /*
6627 * Drop uring mutex before waiting for references to exit. If
6628 * another thread is currently inside io_uring_enter() it might
6629 * need to grab the uring_lock to make progress. If we hold it
6630 * here across the drain wait, then we can deadlock. It's safe
6631 * to drop the mutex here, since no new references will come in
6632 * after we've killed the percpu ref.
6633 */
6634 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07006635 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006636 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07006637 if (ret) {
6638 percpu_ref_resurrect(&ctx->refs);
6639 ret = -EINTR;
6640 goto out;
6641 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006642 }
Jens Axboeedafcce2019-01-09 09:16:05 -07006643
6644 switch (opcode) {
6645 case IORING_REGISTER_BUFFERS:
6646 ret = io_sqe_buffer_register(ctx, arg, nr_args);
6647 break;
6648 case IORING_UNREGISTER_BUFFERS:
6649 ret = -EINVAL;
6650 if (arg || nr_args)
6651 break;
6652 ret = io_sqe_buffer_unregister(ctx);
6653 break;
Jens Axboe6b063142019-01-10 22:13:58 -07006654 case IORING_REGISTER_FILES:
6655 ret = io_sqe_files_register(ctx, arg, nr_args);
6656 break;
6657 case IORING_UNREGISTER_FILES:
6658 ret = -EINVAL;
6659 if (arg || nr_args)
6660 break;
6661 ret = io_sqe_files_unregister(ctx);
6662 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06006663 case IORING_REGISTER_FILES_UPDATE:
6664 ret = io_sqe_files_update(ctx, arg, nr_args);
6665 break;
Jens Axboe9b402842019-04-11 11:45:41 -06006666 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07006667 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06006668 ret = -EINVAL;
6669 if (nr_args != 1)
6670 break;
6671 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07006672 if (ret)
6673 break;
6674 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
6675 ctx->eventfd_async = 1;
6676 else
6677 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06006678 break;
6679 case IORING_UNREGISTER_EVENTFD:
6680 ret = -EINVAL;
6681 if (arg || nr_args)
6682 break;
6683 ret = io_eventfd_unregister(ctx);
6684 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07006685 case IORING_REGISTER_PROBE:
6686 ret = -EINVAL;
6687 if (!arg || nr_args > 256)
6688 break;
6689 ret = io_probe(ctx, arg, nr_args);
6690 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07006691 default:
6692 ret = -EINVAL;
6693 break;
6694 }
6695
Jens Axboe05f3fb32019-12-09 11:22:50 -07006696
6697 if (opcode != IORING_UNREGISTER_FILES &&
Jens Axboe66f4af92020-01-16 15:36:52 -07006698 opcode != IORING_REGISTER_FILES_UPDATE &&
6699 opcode != IORING_REGISTER_PROBE) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006700 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07006701 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07006702out:
6703 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006704 }
Jens Axboeedafcce2019-01-09 09:16:05 -07006705 return ret;
6706}
6707
6708SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
6709 void __user *, arg, unsigned int, nr_args)
6710{
6711 struct io_ring_ctx *ctx;
6712 long ret = -EBADF;
6713 struct fd f;
6714
6715 f = fdget(fd);
6716 if (!f.file)
6717 return -EBADF;
6718
6719 ret = -EOPNOTSUPP;
6720 if (f.file->f_op != &io_uring_fops)
6721 goto out_fput;
6722
6723 ctx = f.file->private_data;
6724
6725 mutex_lock(&ctx->uring_lock);
6726 ret = __io_uring_register(ctx, opcode, arg, nr_args);
6727 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006728 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
6729 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006730out_fput:
6731 fdput(f);
6732 return ret;
6733}
6734
Jens Axboe2b188cc2019-01-07 10:46:33 -07006735static int __init io_uring_init(void)
6736{
Jens Axboed3656342019-12-18 09:50:26 -07006737 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006738 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
6739 return 0;
6740};
6741__initcall(io_uring_init);