blob: 46cc1bc4806260a8194b374e7973f1dcd1512ac7 [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 */
502#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600503#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700504#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800505#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Jens Axboe5262f562019-09-17 12:26:57 -0600506#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600507#define REQ_F_ISREG 2048 /* regular file */
508#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700509#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800510#define REQ_F_INFLIGHT 16384 /* on inflight list */
511#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe4e88d6e2019-12-07 20:59:47 -0700512#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
Jens Axboece35a472019-12-17 08:04:44 -0700513#define REQ_F_FORCE_ASYNC 131072 /* IOSQE_ASYNC */
Jens Axboeba042912019-12-25 16:33:42 -0700514#define REQ_F_CUR_POS 262144 /* read/write uses file position */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700515 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600516 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600517 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700518
Jens Axboefcb323c2019-10-24 12:39:47 -0600519 struct list_head inflight_entry;
520
Jens Axboe561fb042019-10-24 07:25:42 -0600521 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700522};
523
524#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700525#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700526
Jens Axboe9a56a232019-01-09 09:06:50 -0700527struct io_submit_state {
528 struct blk_plug plug;
529
530 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700531 * io_kiocb alloc cache
532 */
533 void *reqs[IO_IOPOLL_BATCH];
534 unsigned int free_reqs;
535 unsigned int cur_req;
536
537 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700538 * File reference cache
539 */
540 struct file *file;
541 unsigned int fd;
542 unsigned int has_refs;
543 unsigned int used_refs;
544 unsigned int ios_left;
545};
546
Jens Axboed3656342019-12-18 09:50:26 -0700547struct io_op_def {
548 /* needs req->io allocated for deferral/async */
549 unsigned async_ctx : 1;
550 /* needs current->mm setup, does mm access */
551 unsigned needs_mm : 1;
552 /* needs req->file assigned */
553 unsigned needs_file : 1;
554 /* needs req->file assigned IFF fd is >= 0 */
555 unsigned fd_non_neg : 1;
556 /* hash wq insertion if file is a regular file */
557 unsigned hash_reg_file : 1;
558 /* unbound wq insertion if file is a non-regular file */
559 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700560 /* opcode is not supported by this kernel */
561 unsigned not_supported : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700562};
563
564static const struct io_op_def io_op_defs[] = {
565 {
566 /* IORING_OP_NOP */
567 },
568 {
569 /* IORING_OP_READV */
570 .async_ctx = 1,
571 .needs_mm = 1,
572 .needs_file = 1,
573 .unbound_nonreg_file = 1,
574 },
575 {
576 /* IORING_OP_WRITEV */
577 .async_ctx = 1,
578 .needs_mm = 1,
579 .needs_file = 1,
580 .hash_reg_file = 1,
581 .unbound_nonreg_file = 1,
582 },
583 {
584 /* IORING_OP_FSYNC */
585 .needs_file = 1,
586 },
587 {
588 /* IORING_OP_READ_FIXED */
589 .needs_file = 1,
590 .unbound_nonreg_file = 1,
591 },
592 {
593 /* IORING_OP_WRITE_FIXED */
594 .needs_file = 1,
595 .hash_reg_file = 1,
596 .unbound_nonreg_file = 1,
597 },
598 {
599 /* IORING_OP_POLL_ADD */
600 .needs_file = 1,
601 .unbound_nonreg_file = 1,
602 },
603 {
604 /* IORING_OP_POLL_REMOVE */
605 },
606 {
607 /* IORING_OP_SYNC_FILE_RANGE */
608 .needs_file = 1,
609 },
610 {
611 /* IORING_OP_SENDMSG */
612 .async_ctx = 1,
613 .needs_mm = 1,
614 .needs_file = 1,
615 .unbound_nonreg_file = 1,
616 },
617 {
618 /* IORING_OP_RECVMSG */
619 .async_ctx = 1,
620 .needs_mm = 1,
621 .needs_file = 1,
622 .unbound_nonreg_file = 1,
623 },
624 {
625 /* IORING_OP_TIMEOUT */
626 .async_ctx = 1,
627 .needs_mm = 1,
628 },
629 {
630 /* IORING_OP_TIMEOUT_REMOVE */
631 },
632 {
633 /* IORING_OP_ACCEPT */
634 .needs_mm = 1,
635 .needs_file = 1,
636 .unbound_nonreg_file = 1,
637 },
638 {
639 /* IORING_OP_ASYNC_CANCEL */
640 },
641 {
642 /* IORING_OP_LINK_TIMEOUT */
643 .async_ctx = 1,
644 .needs_mm = 1,
645 },
646 {
647 /* IORING_OP_CONNECT */
648 .async_ctx = 1,
649 .needs_mm = 1,
650 .needs_file = 1,
651 .unbound_nonreg_file = 1,
652 },
653 {
654 /* IORING_OP_FALLOCATE */
655 .needs_file = 1,
656 },
657 {
658 /* IORING_OP_OPENAT */
659 .needs_file = 1,
660 .fd_non_neg = 1,
661 },
662 {
663 /* IORING_OP_CLOSE */
664 .needs_file = 1,
665 },
666 {
667 /* IORING_OP_FILES_UPDATE */
668 .needs_mm = 1,
669 },
670 {
671 /* IORING_OP_STATX */
672 .needs_mm = 1,
673 .needs_file = 1,
674 .fd_non_neg = 1,
675 },
Jens Axboe3a6820f2019-12-22 15:19:35 -0700676 {
677 /* IORING_OP_READ */
678 .needs_mm = 1,
679 .needs_file = 1,
680 .unbound_nonreg_file = 1,
681 },
682 {
683 /* IORING_OP_WRITE */
684 .needs_mm = 1,
685 .needs_file = 1,
686 .unbound_nonreg_file = 1,
687 },
Jens Axboe4840e412019-12-25 22:03:45 -0700688 {
689 /* IORING_OP_FADVISE */
690 .needs_file = 1,
691 },
Jens Axboec1ca7572019-12-25 22:18:28 -0700692 {
693 /* IORING_OP_MADVISE */
694 .needs_mm = 1,
695 },
Jens Axboefddafac2020-01-04 20:19:44 -0700696 {
697 /* IORING_OP_SEND */
698 .needs_mm = 1,
699 .needs_file = 1,
700 .unbound_nonreg_file = 1,
701 },
702 {
703 /* IORING_OP_RECV */
704 .needs_mm = 1,
705 .needs_file = 1,
706 .unbound_nonreg_file = 1,
707 },
Jens Axboecebdb982020-01-08 17:59:24 -0700708 {
709 /* IORING_OP_OPENAT2 */
710 .needs_file = 1,
711 .fd_non_neg = 1,
712 },
Jens Axboed3656342019-12-18 09:50:26 -0700713};
714
Jens Axboe561fb042019-10-24 07:25:42 -0600715static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700716static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800717static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700718static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700719static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
720static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700721static int __io_sqe_files_update(struct io_ring_ctx *ctx,
722 struct io_uring_files_update *ip,
723 unsigned nr_args);
Jens Axboede0617e2019-04-06 21:51:27 -0600724
Jens Axboe2b188cc2019-01-07 10:46:33 -0700725static struct kmem_cache *req_cachep;
726
727static const struct file_operations io_uring_fops;
728
729struct sock *io_uring_get_socket(struct file *file)
730{
731#if defined(CONFIG_UNIX)
732 if (file->f_op == &io_uring_fops) {
733 struct io_ring_ctx *ctx = file->private_data;
734
735 return ctx->ring_sock->sk;
736 }
737#endif
738 return NULL;
739}
740EXPORT_SYMBOL(io_uring_get_socket);
741
742static void io_ring_ctx_ref_free(struct percpu_ref *ref)
743{
744 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
745
Jens Axboe206aefd2019-11-07 18:27:42 -0700746 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700747}
748
749static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
750{
751 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700752 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700753
754 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
755 if (!ctx)
756 return NULL;
757
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700758 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
759 if (!ctx->fallback_req)
760 goto err;
761
Jens Axboe206aefd2019-11-07 18:27:42 -0700762 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
763 if (!ctx->completions)
764 goto err;
765
Jens Axboe78076bb2019-12-04 19:56:40 -0700766 /*
767 * Use 5 bits less than the max cq entries, that should give us around
768 * 32 entries per hash list if totally full and uniformly spread.
769 */
770 hash_bits = ilog2(p->cq_entries);
771 hash_bits -= 5;
772 if (hash_bits <= 0)
773 hash_bits = 1;
774 ctx->cancel_hash_bits = hash_bits;
775 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
776 GFP_KERNEL);
777 if (!ctx->cancel_hash)
778 goto err;
779 __hash_init(ctx->cancel_hash, 1U << hash_bits);
780
Roman Gushchin21482892019-05-07 10:01:48 -0700781 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700782 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
783 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700784
785 ctx->flags = p->flags;
786 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700787 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700788 init_completion(&ctx->completions[0]);
789 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700790 mutex_init(&ctx->uring_lock);
791 init_waitqueue_head(&ctx->wait);
792 spin_lock_init(&ctx->completion_lock);
Jens Axboee94f1412019-12-19 12:06:02 -0700793 init_llist_head(&ctx->poll_llist);
Jens Axboedef596e2019-01-09 08:59:42 -0700794 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600795 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600796 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600797 init_waitqueue_head(&ctx->inflight_wait);
798 spin_lock_init(&ctx->inflight_lock);
799 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700800 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700801err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700802 if (ctx->fallback_req)
803 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700804 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700805 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700806 kfree(ctx);
807 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700808}
809
Bob Liu9d858b22019-11-13 18:06:25 +0800810static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600811{
Jackie Liua197f662019-11-08 08:09:12 -0700812 struct io_ring_ctx *ctx = req->ctx;
813
Jens Axboe498ccd92019-10-25 10:04:25 -0600814 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
815 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600816}
817
Bob Liu9d858b22019-11-13 18:06:25 +0800818static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600819{
Bob Liu9d858b22019-11-13 18:06:25 +0800820 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
821 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600822
Bob Liu9d858b22019-11-13 18:06:25 +0800823 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600824}
825
826static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600827{
828 struct io_kiocb *req;
829
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600830 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800831 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600832 list_del_init(&req->list);
833 return req;
834 }
835
836 return NULL;
837}
838
Jens Axboe5262f562019-09-17 12:26:57 -0600839static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
840{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600841 struct io_kiocb *req;
842
843 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700844 if (req) {
845 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
846 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800847 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700848 list_del_init(&req->list);
849 return req;
850 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600851 }
852
853 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600854}
855
Jens Axboede0617e2019-04-06 21:51:27 -0600856static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700857{
Hristo Venev75b28af2019-08-26 17:23:46 +0000858 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700859
Pavel Begunkov07910152020-01-17 03:52:46 +0300860 /* order cqe stores with ring update */
861 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700862
Pavel Begunkov07910152020-01-17 03:52:46 +0300863 if (wq_has_sleeper(&ctx->cq_wait)) {
864 wake_up_interruptible(&ctx->cq_wait);
865 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700866 }
867}
868
Jens Axboe94ae5e72019-11-14 19:39:52 -0700869static inline bool io_prep_async_work(struct io_kiocb *req,
870 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600871{
Jens Axboed3656342019-12-18 09:50:26 -0700872 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe561fb042019-10-24 07:25:42 -0600873 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600874
Jens Axboed3656342019-12-18 09:50:26 -0700875 if (req->flags & REQ_F_ISREG) {
876 if (def->hash_reg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700877 do_hashed = true;
Jens Axboed3656342019-12-18 09:50:26 -0700878 } else {
879 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700880 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -0600881 }
Jens Axboed3656342019-12-18 09:50:26 -0700882 if (def->needs_mm)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700883 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600884
Jens Axboe94ae5e72019-11-14 19:39:52 -0700885 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600886 return do_hashed;
887}
888
Jackie Liua197f662019-11-08 08:09:12 -0700889static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600890{
Jackie Liua197f662019-11-08 08:09:12 -0700891 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700892 struct io_kiocb *link;
893 bool do_hashed;
894
895 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600896
897 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
898 req->flags);
899 if (!do_hashed) {
900 io_wq_enqueue(ctx->io_wq, &req->work);
901 } else {
902 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
903 file_inode(req->file));
904 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700905
906 if (link)
907 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600908}
909
Jens Axboe5262f562019-09-17 12:26:57 -0600910static void io_kill_timeout(struct io_kiocb *req)
911{
912 int ret;
913
Jens Axboe2d283902019-12-04 11:08:05 -0700914 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600915 if (ret != -1) {
916 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600917 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700918 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800919 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600920 }
921}
922
923static void io_kill_timeouts(struct io_ring_ctx *ctx)
924{
925 struct io_kiocb *req, *tmp;
926
927 spin_lock_irq(&ctx->completion_lock);
928 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
929 io_kill_timeout(req);
930 spin_unlock_irq(&ctx->completion_lock);
931}
932
Jens Axboede0617e2019-04-06 21:51:27 -0600933static void io_commit_cqring(struct io_ring_ctx *ctx)
934{
935 struct io_kiocb *req;
936
Jens Axboe5262f562019-09-17 12:26:57 -0600937 while ((req = io_get_timeout_req(ctx)) != NULL)
938 io_kill_timeout(req);
939
Jens Axboede0617e2019-04-06 21:51:27 -0600940 __io_commit_cqring(ctx);
941
942 while ((req = io_get_deferred_req(ctx)) != NULL) {
943 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700944 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600945 }
946}
947
Jens Axboe2b188cc2019-01-07 10:46:33 -0700948static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
949{
Hristo Venev75b28af2019-08-26 17:23:46 +0000950 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700951 unsigned tail;
952
953 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200954 /*
955 * writes to the cq entry need to come after reading head; the
956 * control dependency is enough as we're using WRITE_ONCE to
957 * fill the cq entry
958 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000959 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700960 return NULL;
961
962 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000963 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700964}
965
Jens Axboef2842ab2020-01-08 11:04:00 -0700966static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
967{
968 if (!ctx->eventfd_async)
969 return true;
970 return io_wq_current_is_worker() || in_interrupt();
971}
972
Jens Axboe8c838782019-03-12 15:48:16 -0600973static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
974{
975 if (waitqueue_active(&ctx->wait))
976 wake_up(&ctx->wait);
977 if (waitqueue_active(&ctx->sqo_wait))
978 wake_up(&ctx->sqo_wait);
Jens Axboef2842ab2020-01-08 11:04:00 -0700979 if (ctx->cq_ev_fd && io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -0600980 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600981}
982
Jens Axboec4a2ed72019-11-21 21:01:26 -0700983/* Returns true if there are no backlogged entries after the flush */
984static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700985{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700986 struct io_rings *rings = ctx->rings;
987 struct io_uring_cqe *cqe;
988 struct io_kiocb *req;
989 unsigned long flags;
990 LIST_HEAD(list);
991
992 if (!force) {
993 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700994 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700995 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
996 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700997 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700998 }
999
1000 spin_lock_irqsave(&ctx->completion_lock, flags);
1001
1002 /* if force is set, the ring is going away. always drop after that */
1003 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001004 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001005
Jens Axboec4a2ed72019-11-21 21:01:26 -07001006 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001007 while (!list_empty(&ctx->cq_overflow_list)) {
1008 cqe = io_get_cqring(ctx);
1009 if (!cqe && !force)
1010 break;
1011
1012 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1013 list);
1014 list_move(&req->list, &list);
1015 if (cqe) {
1016 WRITE_ONCE(cqe->user_data, req->user_data);
1017 WRITE_ONCE(cqe->res, req->result);
1018 WRITE_ONCE(cqe->flags, 0);
1019 } else {
1020 WRITE_ONCE(ctx->rings->cq_overflow,
1021 atomic_inc_return(&ctx->cached_cq_overflow));
1022 }
1023 }
1024
1025 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001026 if (cqe) {
1027 clear_bit(0, &ctx->sq_check_overflow);
1028 clear_bit(0, &ctx->cq_check_overflow);
1029 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001030 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1031 io_cqring_ev_posted(ctx);
1032
1033 while (!list_empty(&list)) {
1034 req = list_first_entry(&list, struct io_kiocb, list);
1035 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001036 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001037 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001038
1039 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001040}
1041
Jens Axboe78e19bb2019-11-06 15:21:34 -07001042static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001043{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001044 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001045 struct io_uring_cqe *cqe;
1046
Jens Axboe78e19bb2019-11-06 15:21:34 -07001047 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001048
Jens Axboe2b188cc2019-01-07 10:46:33 -07001049 /*
1050 * If we can't get a cq entry, userspace overflowed the
1051 * submission (by quite a lot). Increment the overflow count in
1052 * the ring.
1053 */
1054 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001055 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001056 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001057 WRITE_ONCE(cqe->res, res);
1058 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001059 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001060 WRITE_ONCE(ctx->rings->cq_overflow,
1061 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001062 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001063 if (list_empty(&ctx->cq_overflow_list)) {
1064 set_bit(0, &ctx->sq_check_overflow);
1065 set_bit(0, &ctx->cq_check_overflow);
1066 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001067 refcount_inc(&req->refs);
1068 req->result = res;
1069 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001070 }
1071}
1072
Jens Axboe78e19bb2019-11-06 15:21:34 -07001073static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001074{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001075 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001076 unsigned long flags;
1077
1078 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001079 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001080 io_commit_cqring(ctx);
1081 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1082
Jens Axboe8c838782019-03-12 15:48:16 -06001083 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001084}
1085
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001086static inline bool io_is_fallback_req(struct io_kiocb *req)
1087{
1088 return req == (struct io_kiocb *)
1089 ((unsigned long) req->ctx->fallback_req & ~1UL);
1090}
1091
1092static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1093{
1094 struct io_kiocb *req;
1095
1096 req = ctx->fallback_req;
1097 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1098 return req;
1099
1100 return NULL;
1101}
1102
Jens Axboe2579f912019-01-09 09:10:43 -07001103static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1104 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001105{
Jens Axboefd6fab22019-03-14 16:30:06 -06001106 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001107 struct io_kiocb *req;
1108
Jens Axboe2579f912019-01-09 09:10:43 -07001109 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001110 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001111 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001112 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001113 } else if (!state->free_reqs) {
1114 size_t sz;
1115 int ret;
1116
1117 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001118 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1119
1120 /*
1121 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1122 * retry single alloc to be on the safe side.
1123 */
1124 if (unlikely(ret <= 0)) {
1125 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1126 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001127 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001128 ret = 1;
1129 }
Jens Axboe2579f912019-01-09 09:10:43 -07001130 state->free_reqs = ret - 1;
1131 state->cur_req = 1;
1132 req = state->reqs[0];
1133 } else {
1134 req = state->reqs[state->cur_req];
1135 state->free_reqs--;
1136 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001137 }
1138
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001139got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001140 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001141 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001142 req->ctx = ctx;
1143 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001144 /* one is dropped after submission, the other at completion */
1145 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001146 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001147 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001148 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001149fallback:
1150 req = io_get_fallback_req(ctx);
1151 if (req)
1152 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001153 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001154 return NULL;
1155}
1156
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001157static void __io_req_do_free(struct io_kiocb *req)
1158{
1159 if (likely(!io_is_fallback_req(req)))
1160 kmem_cache_free(req_cachep, req);
1161 else
1162 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1163}
1164
Jens Axboec6ca97b302019-12-28 12:11:08 -07001165static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001166{
Jens Axboefcb323c2019-10-24 12:39:47 -06001167 struct io_ring_ctx *ctx = req->ctx;
1168
YueHaibing96fd84d2020-01-07 22:22:44 +08001169 kfree(req->io);
Jens Axboe05f3fb32019-12-09 11:22:50 -07001170 if (req->file) {
1171 if (req->flags & REQ_F_FIXED_FILE)
1172 percpu_ref_put(&ctx->file_data->refs);
1173 else
1174 fput(req->file);
1175 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001176}
1177
1178static void __io_free_req(struct io_kiocb *req)
1179{
1180 __io_req_aux_free(req);
1181
Jens Axboefcb323c2019-10-24 12:39:47 -06001182 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001183 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001184 unsigned long flags;
1185
1186 spin_lock_irqsave(&ctx->inflight_lock, flags);
1187 list_del(&req->inflight_entry);
1188 if (waitqueue_active(&ctx->inflight_wait))
1189 wake_up(&ctx->inflight_wait);
1190 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1191 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001192
1193 percpu_ref_put(&req->ctx->refs);
1194 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001195}
1196
Jens Axboec6ca97b302019-12-28 12:11:08 -07001197struct req_batch {
1198 void *reqs[IO_IOPOLL_BATCH];
1199 int to_free;
1200 int need_iter;
1201};
1202
1203static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1204{
Jens Axboe10fef4b2020-01-09 07:52:28 -07001205 int fixed_refs = rb->to_free;
1206
Jens Axboec6ca97b302019-12-28 12:11:08 -07001207 if (!rb->to_free)
1208 return;
1209 if (rb->need_iter) {
1210 int i, inflight = 0;
1211 unsigned long flags;
1212
Jens Axboe10fef4b2020-01-09 07:52:28 -07001213 fixed_refs = 0;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001214 for (i = 0; i < rb->to_free; i++) {
1215 struct io_kiocb *req = rb->reqs[i];
1216
Jens Axboe10fef4b2020-01-09 07:52:28 -07001217 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001218 req->file = NULL;
Jens Axboe10fef4b2020-01-09 07:52:28 -07001219 fixed_refs++;
1220 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001221 if (req->flags & REQ_F_INFLIGHT)
1222 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001223 __io_req_aux_free(req);
1224 }
1225 if (!inflight)
1226 goto do_free;
1227
1228 spin_lock_irqsave(&ctx->inflight_lock, flags);
1229 for (i = 0; i < rb->to_free; i++) {
1230 struct io_kiocb *req = rb->reqs[i];
1231
Jens Axboe10fef4b2020-01-09 07:52:28 -07001232 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001233 list_del(&req->inflight_entry);
1234 if (!--inflight)
1235 break;
1236 }
1237 }
1238 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1239
1240 if (waitqueue_active(&ctx->inflight_wait))
1241 wake_up(&ctx->inflight_wait);
1242 }
1243do_free:
1244 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001245 if (fixed_refs)
1246 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001247 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001248 rb->to_free = rb->need_iter = 0;
1249}
1250
Jackie Liua197f662019-11-08 08:09:12 -07001251static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001252{
Jackie Liua197f662019-11-08 08:09:12 -07001253 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001254 int ret;
1255
Jens Axboe2d283902019-12-04 11:08:05 -07001256 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001257 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001258 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001259 io_commit_cqring(ctx);
1260 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001261 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001262 return true;
1263 }
1264
1265 return false;
1266}
1267
Jens Axboeba816ad2019-09-28 11:36:45 -06001268static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001269{
Jens Axboe2665abf2019-11-05 12:40:47 -07001270 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001271 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001272
Jens Axboe4d7dd462019-11-20 13:03:52 -07001273 /* Already got next link */
1274 if (req->flags & REQ_F_LINK_NEXT)
1275 return;
1276
Jens Axboe9e645e112019-05-10 16:07:28 -06001277 /*
1278 * The list should never be empty when we are called here. But could
1279 * potentially happen if the chain is messed up, check to be on the
1280 * safe side.
1281 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001282 while (!list_empty(&req->link_list)) {
1283 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1284 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001285
Pavel Begunkov44932332019-12-05 16:16:35 +03001286 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1287 (nxt->flags & REQ_F_TIMEOUT))) {
1288 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001289 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001290 req->flags &= ~REQ_F_LINK_TIMEOUT;
1291 continue;
1292 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001293
Pavel Begunkov44932332019-12-05 16:16:35 +03001294 list_del_init(&req->link_list);
1295 if (!list_empty(&nxt->link_list))
1296 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001297 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001298 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001299 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001300
Jens Axboe4d7dd462019-11-20 13:03:52 -07001301 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001302 if (wake_ev)
1303 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001304}
1305
1306/*
1307 * Called if REQ_F_LINK is set, and we fail the head request
1308 */
1309static void io_fail_links(struct io_kiocb *req)
1310{
Jens Axboe2665abf2019-11-05 12:40:47 -07001311 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001312 unsigned long flags;
1313
1314 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001315
1316 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001317 struct io_kiocb *link = list_first_entry(&req->link_list,
1318 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001319
Pavel Begunkov44932332019-12-05 16:16:35 +03001320 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001321 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001322
1323 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001324 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001325 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001326 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001327 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001328 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001329 }
Jens Axboe5d960722019-11-19 15:31:28 -07001330 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001331 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001332
1333 io_commit_cqring(ctx);
1334 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1335 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001336}
1337
Jens Axboe4d7dd462019-11-20 13:03:52 -07001338static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001339{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001340 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001341 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001342
Jens Axboe9e645e112019-05-10 16:07:28 -06001343 /*
1344 * If LINK is set, we have dependent requests in this chain. If we
1345 * didn't fail this request, queue the first one up, moving any other
1346 * dependencies to the next request. In case of failure, fail the rest
1347 * of the chain.
1348 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001349 if (req->flags & REQ_F_FAIL_LINK) {
1350 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001351 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1352 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001353 struct io_ring_ctx *ctx = req->ctx;
1354 unsigned long flags;
1355
1356 /*
1357 * If this is a timeout link, we could be racing with the
1358 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001359 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001360 */
1361 spin_lock_irqsave(&ctx->completion_lock, flags);
1362 io_req_link_next(req, nxt);
1363 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1364 } else {
1365 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001366 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001367}
Jens Axboe9e645e112019-05-10 16:07:28 -06001368
Jackie Liuc69f8db2019-11-09 11:00:08 +08001369static void io_free_req(struct io_kiocb *req)
1370{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001371 struct io_kiocb *nxt = NULL;
1372
1373 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001374 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001375
1376 if (nxt)
1377 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001378}
1379
Jens Axboeba816ad2019-09-28 11:36:45 -06001380/*
1381 * Drop reference to request, return next in chain (if there is one) if this
1382 * was the last reference to this request.
1383 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001384__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001385static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001386{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001387 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001388
Jens Axboee65ef562019-03-12 10:16:44 -06001389 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001390 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001391}
1392
Jens Axboe2b188cc2019-01-07 10:46:33 -07001393static void io_put_req(struct io_kiocb *req)
1394{
Jens Axboedef596e2019-01-09 08:59:42 -07001395 if (refcount_dec_and_test(&req->refs))
1396 io_free_req(req);
1397}
1398
Jens Axboe978db572019-11-14 22:39:04 -07001399/*
1400 * Must only be used if we don't need to care about links, usually from
1401 * within the completion handling itself.
1402 */
1403static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001404{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001405 /* drop both submit and complete references */
1406 if (refcount_sub_and_test(2, &req->refs))
1407 __io_free_req(req);
1408}
1409
Jens Axboe978db572019-11-14 22:39:04 -07001410static void io_double_put_req(struct io_kiocb *req)
1411{
1412 /* drop both submit and complete references */
1413 if (refcount_sub_and_test(2, &req->refs))
1414 io_free_req(req);
1415}
1416
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001417static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001418{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001419 struct io_rings *rings = ctx->rings;
1420
Jens Axboead3eb2c2019-12-18 17:12:20 -07001421 if (test_bit(0, &ctx->cq_check_overflow)) {
1422 /*
1423 * noflush == true is from the waitqueue handler, just ensure
1424 * we wake up the task, and the next invocation will flush the
1425 * entries. We cannot safely to it from here.
1426 */
1427 if (noflush && !list_empty(&ctx->cq_overflow_list))
1428 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001429
Jens Axboead3eb2c2019-12-18 17:12:20 -07001430 io_cqring_overflow_flush(ctx, false);
1431 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001432
Jens Axboea3a0e432019-08-20 11:03:11 -06001433 /* See comment at the top of this file */
1434 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001435 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001436}
1437
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001438static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1439{
1440 struct io_rings *rings = ctx->rings;
1441
1442 /* make sure SQ entry isn't read before tail */
1443 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1444}
1445
Jens Axboe8237e042019-12-28 10:48:22 -07001446static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001447{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001448 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1449 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001450
Jens Axboec6ca97b302019-12-28 12:11:08 -07001451 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1452 rb->need_iter++;
1453
1454 rb->reqs[rb->to_free++] = req;
1455 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1456 io_free_req_many(req->ctx, rb);
1457 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001458}
1459
Jens Axboedef596e2019-01-09 08:59:42 -07001460/*
1461 * Find and free completed poll iocbs
1462 */
1463static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1464 struct list_head *done)
1465{
Jens Axboe8237e042019-12-28 10:48:22 -07001466 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001467 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001468
Jens Axboec6ca97b302019-12-28 12:11:08 -07001469 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001470 while (!list_empty(done)) {
1471 req = list_first_entry(done, struct io_kiocb, list);
1472 list_del(&req->list);
1473
Jens Axboe78e19bb2019-11-06 15:21:34 -07001474 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001475 (*nr_events)++;
1476
Jens Axboe8237e042019-12-28 10:48:22 -07001477 if (refcount_dec_and_test(&req->refs) &&
1478 !io_req_multi_free(&rb, req))
1479 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001480 }
Jens Axboedef596e2019-01-09 08:59:42 -07001481
Jens Axboe09bb8392019-03-13 12:39:28 -06001482 io_commit_cqring(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001483 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001484}
1485
1486static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1487 long min)
1488{
1489 struct io_kiocb *req, *tmp;
1490 LIST_HEAD(done);
1491 bool spin;
1492 int ret;
1493
1494 /*
1495 * Only spin for completions if we don't have multiple devices hanging
1496 * off our complete list, and we're under the requested amount.
1497 */
1498 spin = !ctx->poll_multi_file && *nr_events < min;
1499
1500 ret = 0;
1501 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001502 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001503
1504 /*
1505 * Move completed entries to our local list. If we find a
1506 * request that requires polling, break out and complete
1507 * the done list first, if we have entries there.
1508 */
1509 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1510 list_move_tail(&req->list, &done);
1511 continue;
1512 }
1513 if (!list_empty(&done))
1514 break;
1515
1516 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1517 if (ret < 0)
1518 break;
1519
1520 if (ret && spin)
1521 spin = false;
1522 ret = 0;
1523 }
1524
1525 if (!list_empty(&done))
1526 io_iopoll_complete(ctx, nr_events, &done);
1527
1528 return ret;
1529}
1530
1531/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001532 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001533 * non-spinning poll check - we'll still enter the driver poll loop, but only
1534 * as a non-spinning completion check.
1535 */
1536static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1537 long min)
1538{
Jens Axboe08f54392019-08-21 22:19:11 -06001539 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001540 int ret;
1541
1542 ret = io_do_iopoll(ctx, nr_events, min);
1543 if (ret < 0)
1544 return ret;
1545 if (!min || *nr_events >= min)
1546 return 0;
1547 }
1548
1549 return 1;
1550}
1551
1552/*
1553 * We can't just wait for polled events to come to us, we have to actively
1554 * find and complete them.
1555 */
1556static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1557{
1558 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1559 return;
1560
1561 mutex_lock(&ctx->uring_lock);
1562 while (!list_empty(&ctx->poll_list)) {
1563 unsigned int nr_events = 0;
1564
1565 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001566
1567 /*
1568 * Ensure we allow local-to-the-cpu processing to take place,
1569 * in this case we need to ensure that we reap all events.
1570 */
1571 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001572 }
1573 mutex_unlock(&ctx->uring_lock);
1574}
1575
Jens Axboe2b2ed972019-10-25 10:06:15 -06001576static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1577 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001578{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001579 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001580
1581 do {
1582 int tmin = 0;
1583
Jens Axboe500f9fb2019-08-19 12:15:59 -06001584 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001585 * Don't enter poll loop if we already have events pending.
1586 * If we do, we can potentially be spinning for commands that
1587 * already triggered a CQE (eg in error).
1588 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001589 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001590 break;
1591
1592 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001593 * If a submit got punted to a workqueue, we can have the
1594 * application entering polling for a command before it gets
1595 * issued. That app will hold the uring_lock for the duration
1596 * of the poll right here, so we need to take a breather every
1597 * now and then to ensure that the issue has a chance to add
1598 * the poll to the issued list. Otherwise we can spin here
1599 * forever, while the workqueue is stuck trying to acquire the
1600 * very same mutex.
1601 */
1602 if (!(++iters & 7)) {
1603 mutex_unlock(&ctx->uring_lock);
1604 mutex_lock(&ctx->uring_lock);
1605 }
1606
Jens Axboedef596e2019-01-09 08:59:42 -07001607 if (*nr_events < min)
1608 tmin = min - *nr_events;
1609
1610 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1611 if (ret <= 0)
1612 break;
1613 ret = 0;
1614 } while (min && !*nr_events && !need_resched());
1615
Jens Axboe2b2ed972019-10-25 10:06:15 -06001616 return ret;
1617}
1618
1619static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1620 long min)
1621{
1622 int ret;
1623
1624 /*
1625 * We disallow the app entering submit/complete with polling, but we
1626 * still need to lock the ring to prevent racing with polled issue
1627 * that got punted to a workqueue.
1628 */
1629 mutex_lock(&ctx->uring_lock);
1630 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001631 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001632 return ret;
1633}
1634
Jens Axboe491381ce2019-10-17 09:20:46 -06001635static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001636{
Jens Axboe491381ce2019-10-17 09:20:46 -06001637 /*
1638 * Tell lockdep we inherited freeze protection from submission
1639 * thread.
1640 */
1641 if (req->flags & REQ_F_ISREG) {
1642 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001643
Jens Axboe491381ce2019-10-17 09:20:46 -06001644 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001645 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001646 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001647}
1648
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001649static inline void req_set_fail_links(struct io_kiocb *req)
1650{
1651 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1652 req->flags |= REQ_F_FAIL_LINK;
1653}
1654
Jens Axboeba816ad2019-09-28 11:36:45 -06001655static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001656{
Jens Axboe9adbd452019-12-20 08:45:55 -07001657 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001658
Jens Axboe491381ce2019-10-17 09:20:46 -06001659 if (kiocb->ki_flags & IOCB_WRITE)
1660 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001661
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001662 if (res != req->result)
1663 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001664 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001665}
1666
1667static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1668{
Jens Axboe9adbd452019-12-20 08:45:55 -07001669 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001670
1671 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001672 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001673}
1674
Jens Axboeba816ad2019-09-28 11:36:45 -06001675static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1676{
Jens Axboe9adbd452019-12-20 08:45:55 -07001677 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001678 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001679
1680 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001681 io_put_req_find_next(req, &nxt);
1682
1683 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001684}
1685
Jens Axboedef596e2019-01-09 08:59:42 -07001686static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1687{
Jens Axboe9adbd452019-12-20 08:45:55 -07001688 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001689
Jens Axboe491381ce2019-10-17 09:20:46 -06001690 if (kiocb->ki_flags & IOCB_WRITE)
1691 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001692
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001693 if (res != req->result)
1694 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001695 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001696 if (res != -EAGAIN)
1697 req->flags |= REQ_F_IOPOLL_COMPLETED;
1698}
1699
1700/*
1701 * After the iocb has been issued, it's safe to be found on the poll list.
1702 * Adding the kiocb to the list AFTER submission ensures that we don't
1703 * find it from a io_iopoll_getevents() thread before the issuer is done
1704 * accessing the kiocb cookie.
1705 */
1706static void io_iopoll_req_issued(struct io_kiocb *req)
1707{
1708 struct io_ring_ctx *ctx = req->ctx;
1709
1710 /*
1711 * Track whether we have multiple files in our lists. This will impact
1712 * how we do polling eventually, not spinning if we're on potentially
1713 * different devices.
1714 */
1715 if (list_empty(&ctx->poll_list)) {
1716 ctx->poll_multi_file = false;
1717 } else if (!ctx->poll_multi_file) {
1718 struct io_kiocb *list_req;
1719
1720 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1721 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001722 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001723 ctx->poll_multi_file = true;
1724 }
1725
1726 /*
1727 * For fast devices, IO may have already completed. If it has, add
1728 * it to the front so we find it first.
1729 */
1730 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1731 list_add(&req->list, &ctx->poll_list);
1732 else
1733 list_add_tail(&req->list, &ctx->poll_list);
1734}
1735
Jens Axboe3d6770f2019-04-13 11:50:54 -06001736static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001737{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001738 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001739 int diff = state->has_refs - state->used_refs;
1740
1741 if (diff)
1742 fput_many(state->file, diff);
1743 state->file = NULL;
1744 }
1745}
1746
1747/*
1748 * Get as many references to a file as we have IOs left in this submission,
1749 * assuming most submissions are for one file, or at least that each file
1750 * has more than one submission.
1751 */
1752static struct file *io_file_get(struct io_submit_state *state, int fd)
1753{
1754 if (!state)
1755 return fget(fd);
1756
1757 if (state->file) {
1758 if (state->fd == fd) {
1759 state->used_refs++;
1760 state->ios_left--;
1761 return state->file;
1762 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001763 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001764 }
1765 state->file = fget_many(fd, state->ios_left);
1766 if (!state->file)
1767 return NULL;
1768
1769 state->fd = fd;
1770 state->has_refs = state->ios_left;
1771 state->used_refs = 1;
1772 state->ios_left--;
1773 return state->file;
1774}
1775
Jens Axboe2b188cc2019-01-07 10:46:33 -07001776/*
1777 * If we tracked the file through the SCM inflight mechanism, we could support
1778 * any file. For now, just ensure that anything potentially problematic is done
1779 * inline.
1780 */
1781static bool io_file_supports_async(struct file *file)
1782{
1783 umode_t mode = file_inode(file)->i_mode;
1784
Jens Axboe10d59342019-12-09 20:16:22 -07001785 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001786 return true;
1787 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1788 return true;
1789
1790 return false;
1791}
1792
Jens Axboe3529d8c2019-12-19 18:24:38 -07001793static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1794 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001795{
Jens Axboedef596e2019-01-09 08:59:42 -07001796 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001797 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001798 unsigned ioprio;
1799 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001800
Jens Axboe09bb8392019-03-13 12:39:28 -06001801 if (!req->file)
1802 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001803
Jens Axboe491381ce2019-10-17 09:20:46 -06001804 if (S_ISREG(file_inode(req->file)->i_mode))
1805 req->flags |= REQ_F_ISREG;
1806
Jens Axboe2b188cc2019-01-07 10:46:33 -07001807 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07001808 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
1809 req->flags |= REQ_F_CUR_POS;
1810 kiocb->ki_pos = req->file->f_pos;
1811 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001812 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1813 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1814
1815 ioprio = READ_ONCE(sqe->ioprio);
1816 if (ioprio) {
1817 ret = ioprio_check_cap(ioprio);
1818 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001819 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001820
1821 kiocb->ki_ioprio = ioprio;
1822 } else
1823 kiocb->ki_ioprio = get_current_ioprio();
1824
1825 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1826 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001827 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001828
1829 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001830 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1831 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001832 req->flags |= REQ_F_NOWAIT;
1833
1834 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001835 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001836
Jens Axboedef596e2019-01-09 08:59:42 -07001837 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001838 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1839 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001840 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001841
Jens Axboedef596e2019-01-09 08:59:42 -07001842 kiocb->ki_flags |= IOCB_HIPRI;
1843 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001844 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001845 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001846 if (kiocb->ki_flags & IOCB_HIPRI)
1847 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001848 kiocb->ki_complete = io_complete_rw;
1849 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001850
Jens Axboe3529d8c2019-12-19 18:24:38 -07001851 req->rw.addr = READ_ONCE(sqe->addr);
1852 req->rw.len = READ_ONCE(sqe->len);
Jens Axboe9adbd452019-12-20 08:45:55 -07001853 /* we own ->private, reuse it for the buffer index */
1854 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001855 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001856 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001857}
1858
1859static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1860{
1861 switch (ret) {
1862 case -EIOCBQUEUED:
1863 break;
1864 case -ERESTARTSYS:
1865 case -ERESTARTNOINTR:
1866 case -ERESTARTNOHAND:
1867 case -ERESTART_RESTARTBLOCK:
1868 /*
1869 * We can't just restart the syscall, since previously
1870 * submitted sqes may already be in progress. Just fail this
1871 * IO with EINTR.
1872 */
1873 ret = -EINTR;
1874 /* fall through */
1875 default:
1876 kiocb->ki_complete(kiocb, ret, 0);
1877 }
1878}
1879
Jens Axboeba816ad2019-09-28 11:36:45 -06001880static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1881 bool in_async)
1882{
Jens Axboeba042912019-12-25 16:33:42 -07001883 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
1884
1885 if (req->flags & REQ_F_CUR_POS)
1886 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001887 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001888 *nxt = __io_complete_rw(kiocb, ret);
1889 else
1890 io_rw_done(kiocb, ret);
1891}
1892
Jens Axboe9adbd452019-12-20 08:45:55 -07001893static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03001894 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001895{
Jens Axboe9adbd452019-12-20 08:45:55 -07001896 struct io_ring_ctx *ctx = req->ctx;
1897 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001898 struct io_mapped_ubuf *imu;
1899 unsigned index, buf_index;
1900 size_t offset;
1901 u64 buf_addr;
1902
1903 /* attempt to use fixed buffers without having provided iovecs */
1904 if (unlikely(!ctx->user_bufs))
1905 return -EFAULT;
1906
Jens Axboe9adbd452019-12-20 08:45:55 -07001907 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07001908 if (unlikely(buf_index >= ctx->nr_user_bufs))
1909 return -EFAULT;
1910
1911 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1912 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07001913 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07001914
1915 /* overflow */
1916 if (buf_addr + len < buf_addr)
1917 return -EFAULT;
1918 /* not inside the mapped region */
1919 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1920 return -EFAULT;
1921
1922 /*
1923 * May not be a start of buffer, set size appropriately
1924 * and advance us to the beginning.
1925 */
1926 offset = buf_addr - imu->ubuf;
1927 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001928
1929 if (offset) {
1930 /*
1931 * Don't use iov_iter_advance() here, as it's really slow for
1932 * using the latter parts of a big fixed buffer - it iterates
1933 * over each segment manually. We can cheat a bit here, because
1934 * we know that:
1935 *
1936 * 1) it's a BVEC iter, we set it up
1937 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1938 * first and last bvec
1939 *
1940 * So just find our index, and adjust the iterator afterwards.
1941 * If the offset is within the first bvec (or the whole first
1942 * bvec, just use iov_iter_advance(). This makes it easier
1943 * since we can just skip the first segment, which may not
1944 * be PAGE_SIZE aligned.
1945 */
1946 const struct bio_vec *bvec = imu->bvec;
1947
1948 if (offset <= bvec->bv_len) {
1949 iov_iter_advance(iter, offset);
1950 } else {
1951 unsigned long seg_skip;
1952
1953 /* skip first vec */
1954 offset -= bvec->bv_len;
1955 seg_skip = 1 + (offset >> PAGE_SHIFT);
1956
1957 iter->bvec = bvec + seg_skip;
1958 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001959 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001960 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001961 }
1962 }
1963
Jens Axboe5e559562019-11-13 16:12:46 -07001964 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001965}
1966
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001967static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1968 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001969{
Jens Axboe9adbd452019-12-20 08:45:55 -07001970 void __user *buf = u64_to_user_ptr(req->rw.addr);
1971 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001972 u8 opcode;
1973
Jens Axboed625c6e2019-12-17 19:53:05 -07001974 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001975 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001976 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07001977 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001978 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001979
Jens Axboe9adbd452019-12-20 08:45:55 -07001980 /* buffer index only valid with fixed read/write */
1981 if (req->rw.kiocb.private)
1982 return -EINVAL;
1983
Jens Axboe3a6820f2019-12-22 15:19:35 -07001984 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
1985 ssize_t ret;
1986 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
1987 *iovec = NULL;
1988 return ret;
1989 }
1990
Jens Axboef67676d2019-12-02 11:03:47 -07001991 if (req->io) {
1992 struct io_async_rw *iorw = &req->io->rw;
1993
1994 *iovec = iorw->iov;
1995 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1996 if (iorw->iov == iorw->fast_iov)
1997 *iovec = NULL;
1998 return iorw->size;
1999 }
2000
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002001 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002002 return -EFAULT;
2003
2004#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002005 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002006 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2007 iovec, iter);
2008#endif
2009
2010 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2011}
2012
Jens Axboe32960612019-09-23 11:05:34 -06002013/*
2014 * For files that don't have ->read_iter() and ->write_iter(), handle them
2015 * by looping over ->read() or ->write() manually.
2016 */
2017static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2018 struct iov_iter *iter)
2019{
2020 ssize_t ret = 0;
2021
2022 /*
2023 * Don't support polled IO through this interface, and we can't
2024 * support non-blocking either. For the latter, this just causes
2025 * the kiocb to be handled from an async context.
2026 */
2027 if (kiocb->ki_flags & IOCB_HIPRI)
2028 return -EOPNOTSUPP;
2029 if (kiocb->ki_flags & IOCB_NOWAIT)
2030 return -EAGAIN;
2031
2032 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002033 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002034 ssize_t nr;
2035
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002036 if (!iov_iter_is_bvec(iter)) {
2037 iovec = iov_iter_iovec(iter);
2038 } else {
2039 /* fixed buffers import bvec */
2040 iovec.iov_base = kmap(iter->bvec->bv_page)
2041 + iter->iov_offset;
2042 iovec.iov_len = min(iter->count,
2043 iter->bvec->bv_len - iter->iov_offset);
2044 }
2045
Jens Axboe32960612019-09-23 11:05:34 -06002046 if (rw == READ) {
2047 nr = file->f_op->read(file, iovec.iov_base,
2048 iovec.iov_len, &kiocb->ki_pos);
2049 } else {
2050 nr = file->f_op->write(file, iovec.iov_base,
2051 iovec.iov_len, &kiocb->ki_pos);
2052 }
2053
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002054 if (iov_iter_is_bvec(iter))
2055 kunmap(iter->bvec->bv_page);
2056
Jens Axboe32960612019-09-23 11:05:34 -06002057 if (nr < 0) {
2058 if (!ret)
2059 ret = nr;
2060 break;
2061 }
2062 ret += nr;
2063 if (nr != iovec.iov_len)
2064 break;
2065 iov_iter_advance(iter, nr);
2066 }
2067
2068 return ret;
2069}
2070
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002071static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002072 struct iovec *iovec, struct iovec *fast_iov,
2073 struct iov_iter *iter)
2074{
2075 req->io->rw.nr_segs = iter->nr_segs;
2076 req->io->rw.size = io_size;
2077 req->io->rw.iov = iovec;
2078 if (!req->io->rw.iov) {
2079 req->io->rw.iov = req->io->rw.fast_iov;
2080 memcpy(req->io->rw.iov, fast_iov,
2081 sizeof(struct iovec) * iter->nr_segs);
2082 }
2083}
2084
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002085static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002086{
Jens Axboed3656342019-12-18 09:50:26 -07002087 if (!io_op_defs[req->opcode].async_ctx)
2088 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002089 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002090 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002091}
2092
2093static void io_rw_async(struct io_wq_work **workptr)
2094{
2095 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2096 struct iovec *iov = NULL;
2097
2098 if (req->io->rw.iov != req->io->rw.fast_iov)
2099 iov = req->io->rw.iov;
2100 io_wq_submit_work(workptr);
2101 kfree(iov);
2102}
2103
2104static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2105 struct iovec *iovec, struct iovec *fast_iov,
2106 struct iov_iter *iter)
2107{
Jens Axboe74566df2020-01-13 19:23:24 -07002108 if (req->opcode == IORING_OP_READ_FIXED ||
2109 req->opcode == IORING_OP_WRITE_FIXED)
2110 return 0;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002111 if (!req->io && io_alloc_async_ctx(req))
2112 return -ENOMEM;
2113
2114 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2115 req->work.func = io_rw_async;
2116 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002117}
2118
Jens Axboe3529d8c2019-12-19 18:24:38 -07002119static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2120 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002121{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002122 struct io_async_ctx *io;
2123 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002124 ssize_t ret;
2125
Jens Axboe3529d8c2019-12-19 18:24:38 -07002126 ret = io_prep_rw(req, sqe, force_nonblock);
2127 if (ret)
2128 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002129
Jens Axboe3529d8c2019-12-19 18:24:38 -07002130 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2131 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002132
Jens Axboe3529d8c2019-12-19 18:24:38 -07002133 if (!req->io)
2134 return 0;
2135
2136 io = req->io;
2137 io->rw.iov = io->rw.fast_iov;
2138 req->io = NULL;
2139 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
2140 req->io = io;
2141 if (ret < 0)
2142 return ret;
2143
2144 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2145 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002146}
2147
Pavel Begunkov267bc902019-11-07 01:41:08 +03002148static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002149 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002150{
2151 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002152 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002153 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002154 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002155 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002156
Jens Axboe3529d8c2019-12-19 18:24:38 -07002157 ret = io_import_iovec(READ, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002158 if (ret < 0)
2159 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002160
Jens Axboefd6c2e42019-12-18 12:19:41 -07002161 /* Ensure we clear previously set non-block flag */
2162 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002163 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002164
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002165 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002166 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002167 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002168 req->result = io_size;
2169
2170 /*
2171 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2172 * we know to async punt it even if it was opened O_NONBLOCK
2173 */
Jens Axboe9adbd452019-12-20 08:45:55 -07002174 if (force_nonblock && !io_file_supports_async(req->file)) {
Jens Axboef67676d2019-12-02 11:03:47 -07002175 req->flags |= REQ_F_MUST_PUNT;
2176 goto copy_iov;
2177 }
Jens Axboe9e645e112019-05-10 16:07:28 -06002178
Jens Axboe31b51512019-01-18 22:56:34 -07002179 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002180 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002181 if (!ret) {
2182 ssize_t ret2;
2183
Jens Axboe9adbd452019-12-20 08:45:55 -07002184 if (req->file->f_op->read_iter)
2185 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002186 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002187 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002188
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002189 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002190 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002191 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002192 } else {
2193copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002194 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002195 inline_vecs, &iter);
2196 if (ret)
2197 goto out_free;
2198 return -EAGAIN;
2199 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002200 }
Jens Axboef67676d2019-12-02 11:03:47 -07002201out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002202 if (!io_wq_current_is_worker())
2203 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002204 return ret;
2205}
2206
Jens Axboe3529d8c2019-12-19 18:24:38 -07002207static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2208 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002209{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002210 struct io_async_ctx *io;
2211 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002212 ssize_t ret;
2213
Jens Axboe3529d8c2019-12-19 18:24:38 -07002214 ret = io_prep_rw(req, sqe, force_nonblock);
2215 if (ret)
2216 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002217
Jens Axboe3529d8c2019-12-19 18:24:38 -07002218 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2219 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002220
Jens Axboe3529d8c2019-12-19 18:24:38 -07002221 if (!req->io)
2222 return 0;
2223
2224 io = req->io;
2225 io->rw.iov = io->rw.fast_iov;
2226 req->io = NULL;
2227 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
2228 req->io = io;
2229 if (ret < 0)
2230 return ret;
2231
2232 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2233 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002234}
2235
Pavel Begunkov267bc902019-11-07 01:41:08 +03002236static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002237 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002238{
2239 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002240 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002241 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002242 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002243 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002244
Jens Axboe3529d8c2019-12-19 18:24:38 -07002245 ret = io_import_iovec(WRITE, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002246 if (ret < 0)
2247 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002248
Jens Axboefd6c2e42019-12-18 12:19:41 -07002249 /* Ensure we clear previously set non-block flag */
2250 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002251 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002252
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002253 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002254 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002255 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002256 req->result = io_size;
2257
2258 /*
2259 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2260 * we know to async punt it even if it was opened O_NONBLOCK
2261 */
2262 if (force_nonblock && !io_file_supports_async(req->file)) {
2263 req->flags |= REQ_F_MUST_PUNT;
2264 goto copy_iov;
2265 }
2266
Jens Axboe10d59342019-12-09 20:16:22 -07002267 /* file path doesn't support NOWAIT for non-direct_IO */
2268 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2269 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002270 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002271
Jens Axboe31b51512019-01-18 22:56:34 -07002272 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002273 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002274 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002275 ssize_t ret2;
2276
Jens Axboe2b188cc2019-01-07 10:46:33 -07002277 /*
2278 * Open-code file_start_write here to grab freeze protection,
2279 * which will be released by another thread in
2280 * io_complete_rw(). Fool lockdep by telling it the lock got
2281 * released so that it doesn't complain about the held lock when
2282 * we return to userspace.
2283 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002284 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002285 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002286 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002287 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002288 SB_FREEZE_WRITE);
2289 }
2290 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002291
Jens Axboe9adbd452019-12-20 08:45:55 -07002292 if (req->file->f_op->write_iter)
2293 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002294 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002295 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07002296 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002297 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002298 } else {
2299copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002300 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002301 inline_vecs, &iter);
2302 if (ret)
2303 goto out_free;
2304 return -EAGAIN;
2305 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002306 }
Jens Axboe31b51512019-01-18 22:56:34 -07002307out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002308 if (!io_wq_current_is_worker())
2309 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002310 return ret;
2311}
2312
2313/*
2314 * IORING_OP_NOP just posts a completion event, nothing else.
2315 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002316static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002317{
2318 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002319
Jens Axboedef596e2019-01-09 08:59:42 -07002320 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2321 return -EINVAL;
2322
Jens Axboe78e19bb2019-11-06 15:21:34 -07002323 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002324 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002325 return 0;
2326}
2327
Jens Axboe3529d8c2019-12-19 18:24:38 -07002328static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002329{
Jens Axboe6b063142019-01-10 22:13:58 -07002330 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002331
Jens Axboe09bb8392019-03-13 12:39:28 -06002332 if (!req->file)
2333 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002334
Jens Axboe6b063142019-01-10 22:13:58 -07002335 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002336 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002337 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002338 return -EINVAL;
2339
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002340 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2341 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2342 return -EINVAL;
2343
2344 req->sync.off = READ_ONCE(sqe->off);
2345 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002346 return 0;
2347}
2348
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002349static bool io_req_cancelled(struct io_kiocb *req)
2350{
2351 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2352 req_set_fail_links(req);
2353 io_cqring_add_event(req, -ECANCELED);
2354 io_put_req(req);
2355 return true;
2356 }
2357
2358 return false;
2359}
2360
Jens Axboe78912932020-01-14 22:09:06 -07002361static void io_link_work_cb(struct io_wq_work **workptr)
2362{
2363 struct io_wq_work *work = *workptr;
2364 struct io_kiocb *link = work->data;
2365
2366 io_queue_linked_timeout(link);
2367 work->func = io_wq_submit_work;
2368}
2369
2370static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2371{
2372 struct io_kiocb *link;
2373
2374 io_prep_async_work(nxt, &link);
2375 *workptr = &nxt->work;
2376 if (link) {
2377 nxt->work.flags |= IO_WQ_WORK_CB;
2378 nxt->work.func = io_link_work_cb;
2379 nxt->work.data = link;
2380 }
2381}
2382
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002383static void io_fsync_finish(struct io_wq_work **workptr)
2384{
2385 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2386 loff_t end = req->sync.off + req->sync.len;
2387 struct io_kiocb *nxt = NULL;
2388 int ret;
2389
2390 if (io_req_cancelled(req))
2391 return;
2392
Jens Axboe9adbd452019-12-20 08:45:55 -07002393 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002394 end > 0 ? end : LLONG_MAX,
2395 req->sync.flags & IORING_FSYNC_DATASYNC);
2396 if (ret < 0)
2397 req_set_fail_links(req);
2398 io_cqring_add_event(req, ret);
2399 io_put_req_find_next(req, &nxt);
2400 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002401 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002402}
2403
Jens Axboefc4df992019-12-10 14:38:45 -07002404static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2405 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002406{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002407 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002408
2409 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002410 if (force_nonblock) {
2411 io_put_req(req);
2412 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002413 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002414 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002415
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002416 work = old_work = &req->work;
2417 io_fsync_finish(&work);
2418 if (work && work != old_work)
2419 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002420 return 0;
2421}
2422
Jens Axboed63d1b52019-12-10 10:38:56 -07002423static void io_fallocate_finish(struct io_wq_work **workptr)
2424{
2425 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2426 struct io_kiocb *nxt = NULL;
2427 int ret;
2428
2429 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2430 req->sync.len);
2431 if (ret < 0)
2432 req_set_fail_links(req);
2433 io_cqring_add_event(req, ret);
2434 io_put_req_find_next(req, &nxt);
2435 if (nxt)
2436 io_wq_assign_next(workptr, nxt);
2437}
2438
2439static int io_fallocate_prep(struct io_kiocb *req,
2440 const struct io_uring_sqe *sqe)
2441{
2442 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2443 return -EINVAL;
2444
2445 req->sync.off = READ_ONCE(sqe->off);
2446 req->sync.len = READ_ONCE(sqe->addr);
2447 req->sync.mode = READ_ONCE(sqe->len);
2448 return 0;
2449}
2450
2451static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2452 bool force_nonblock)
2453{
2454 struct io_wq_work *work, *old_work;
2455
2456 /* fallocate always requiring blocking context */
2457 if (force_nonblock) {
2458 io_put_req(req);
2459 req->work.func = io_fallocate_finish;
2460 return -EAGAIN;
2461 }
2462
2463 work = old_work = &req->work;
2464 io_fallocate_finish(&work);
2465 if (work && work != old_work)
2466 *nxt = container_of(work, struct io_kiocb, work);
2467
2468 return 0;
2469}
2470
Jens Axboe15b71ab2019-12-11 11:20:36 -07002471static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2472{
Jens Axboef8748882020-01-08 17:47:02 -07002473 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002474 int ret;
2475
2476 if (sqe->ioprio || sqe->buf_index)
2477 return -EINVAL;
2478
2479 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002480 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002481 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002482 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002483
Jens Axboef8748882020-01-08 17:47:02 -07002484 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002485 if (IS_ERR(req->open.filename)) {
2486 ret = PTR_ERR(req->open.filename);
2487 req->open.filename = NULL;
2488 return ret;
2489 }
2490
2491 return 0;
2492}
2493
Jens Axboecebdb982020-01-08 17:59:24 -07002494static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2495{
2496 struct open_how __user *how;
2497 const char __user *fname;
2498 size_t len;
2499 int ret;
2500
2501 if (sqe->ioprio || sqe->buf_index)
2502 return -EINVAL;
2503
2504 req->open.dfd = READ_ONCE(sqe->fd);
2505 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2506 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2507 len = READ_ONCE(sqe->len);
2508
2509 if (len < OPEN_HOW_SIZE_VER0)
2510 return -EINVAL;
2511
2512 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2513 len);
2514 if (ret)
2515 return ret;
2516
2517 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2518 req->open.how.flags |= O_LARGEFILE;
2519
2520 req->open.filename = getname(fname);
2521 if (IS_ERR(req->open.filename)) {
2522 ret = PTR_ERR(req->open.filename);
2523 req->open.filename = NULL;
2524 return ret;
2525 }
2526
2527 return 0;
2528}
2529
2530static int io_openat2(struct io_kiocb *req, struct io_kiocb **nxt,
2531 bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002532{
2533 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002534 struct file *file;
2535 int ret;
2536
2537 if (force_nonblock) {
2538 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2539 return -EAGAIN;
2540 }
2541
Jens Axboecebdb982020-01-08 17:59:24 -07002542 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002543 if (ret)
2544 goto err;
2545
Jens Axboecebdb982020-01-08 17:59:24 -07002546 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002547 if (ret < 0)
2548 goto err;
2549
2550 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2551 if (IS_ERR(file)) {
2552 put_unused_fd(ret);
2553 ret = PTR_ERR(file);
2554 } else {
2555 fsnotify_open(file);
2556 fd_install(ret, file);
2557 }
2558err:
2559 putname(req->open.filename);
2560 if (ret < 0)
2561 req_set_fail_links(req);
2562 io_cqring_add_event(req, ret);
2563 io_put_req_find_next(req, nxt);
2564 return 0;
2565}
2566
Jens Axboecebdb982020-01-08 17:59:24 -07002567static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2568 bool force_nonblock)
2569{
2570 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
2571 return io_openat2(req, nxt, force_nonblock);
2572}
2573
Jens Axboec1ca7572019-12-25 22:18:28 -07002574static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2575{
2576#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2577 if (sqe->ioprio || sqe->buf_index || sqe->off)
2578 return -EINVAL;
2579
2580 req->madvise.addr = READ_ONCE(sqe->addr);
2581 req->madvise.len = READ_ONCE(sqe->len);
2582 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2583 return 0;
2584#else
2585 return -EOPNOTSUPP;
2586#endif
2587}
2588
2589static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2590 bool force_nonblock)
2591{
2592#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2593 struct io_madvise *ma = &req->madvise;
2594 int ret;
2595
2596 if (force_nonblock)
2597 return -EAGAIN;
2598
2599 ret = do_madvise(ma->addr, ma->len, ma->advice);
2600 if (ret < 0)
2601 req_set_fail_links(req);
2602 io_cqring_add_event(req, ret);
2603 io_put_req_find_next(req, nxt);
2604 return 0;
2605#else
2606 return -EOPNOTSUPP;
2607#endif
2608}
2609
Jens Axboe4840e412019-12-25 22:03:45 -07002610static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2611{
2612 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2613 return -EINVAL;
2614
2615 req->fadvise.offset = READ_ONCE(sqe->off);
2616 req->fadvise.len = READ_ONCE(sqe->len);
2617 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2618 return 0;
2619}
2620
2621static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2622 bool force_nonblock)
2623{
2624 struct io_fadvise *fa = &req->fadvise;
2625 int ret;
2626
2627 /* DONTNEED may block, others _should_ not */
2628 if (fa->advice == POSIX_FADV_DONTNEED && force_nonblock)
2629 return -EAGAIN;
2630
2631 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2632 if (ret < 0)
2633 req_set_fail_links(req);
2634 io_cqring_add_event(req, ret);
2635 io_put_req_find_next(req, nxt);
2636 return 0;
2637}
2638
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002639static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2640{
Jens Axboef8748882020-01-08 17:47:02 -07002641 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002642 unsigned lookup_flags;
2643 int ret;
2644
2645 if (sqe->ioprio || sqe->buf_index)
2646 return -EINVAL;
2647
2648 req->open.dfd = READ_ONCE(sqe->fd);
2649 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002650 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002651 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07002652 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002653
Jens Axboec12cedf2020-01-08 17:41:21 -07002654 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002655 return -EINVAL;
2656
Jens Axboef8748882020-01-08 17:47:02 -07002657 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002658 if (IS_ERR(req->open.filename)) {
2659 ret = PTR_ERR(req->open.filename);
2660 req->open.filename = NULL;
2661 return ret;
2662 }
2663
2664 return 0;
2665}
2666
2667static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2668 bool force_nonblock)
2669{
2670 struct io_open *ctx = &req->open;
2671 unsigned lookup_flags;
2672 struct path path;
2673 struct kstat stat;
2674 int ret;
2675
2676 if (force_nonblock)
2677 return -EAGAIN;
2678
Jens Axboec12cedf2020-01-08 17:41:21 -07002679 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002680 return -EINVAL;
2681
2682retry:
2683 /* filename_lookup() drops it, keep a reference */
2684 ctx->filename->refcnt++;
2685
2686 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2687 NULL);
2688 if (ret)
2689 goto err;
2690
Jens Axboec12cedf2020-01-08 17:41:21 -07002691 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002692 path_put(&path);
2693 if (retry_estale(ret, lookup_flags)) {
2694 lookup_flags |= LOOKUP_REVAL;
2695 goto retry;
2696 }
2697 if (!ret)
2698 ret = cp_statx(&stat, ctx->buffer);
2699err:
2700 putname(ctx->filename);
2701 if (ret < 0)
2702 req_set_fail_links(req);
2703 io_cqring_add_event(req, ret);
2704 io_put_req_find_next(req, nxt);
2705 return 0;
2706}
2707
Jens Axboeb5dba592019-12-11 14:02:38 -07002708static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2709{
2710 /*
2711 * If we queue this for async, it must not be cancellable. That would
2712 * leave the 'file' in an undeterminate state.
2713 */
2714 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2715
2716 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2717 sqe->rw_flags || sqe->buf_index)
2718 return -EINVAL;
2719 if (sqe->flags & IOSQE_FIXED_FILE)
2720 return -EINVAL;
2721
2722 req->close.fd = READ_ONCE(sqe->fd);
2723 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03002724 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07002725 return -EBADF;
2726
2727 return 0;
2728}
2729
2730static void io_close_finish(struct io_wq_work **workptr)
2731{
2732 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2733 struct io_kiocb *nxt = NULL;
2734
2735 /* Invoked with files, we need to do the close */
2736 if (req->work.files) {
2737 int ret;
2738
2739 ret = filp_close(req->close.put_file, req->work.files);
2740 if (ret < 0) {
2741 req_set_fail_links(req);
2742 }
2743 io_cqring_add_event(req, ret);
2744 }
2745
2746 fput(req->close.put_file);
2747
2748 /* we bypassed the re-issue, drop the submission reference */
2749 io_put_req(req);
2750 io_put_req_find_next(req, &nxt);
2751 if (nxt)
2752 io_wq_assign_next(workptr, nxt);
2753}
2754
2755static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
2756 bool force_nonblock)
2757{
2758 int ret;
2759
2760 req->close.put_file = NULL;
2761 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
2762 if (ret < 0)
2763 return ret;
2764
2765 /* if the file has a flush method, be safe and punt to async */
2766 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker()) {
2767 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2768 goto eagain;
2769 }
2770
2771 /*
2772 * No ->flush(), safely close from here and just punt the
2773 * fput() to async context.
2774 */
2775 ret = filp_close(req->close.put_file, current->files);
2776
2777 if (ret < 0)
2778 req_set_fail_links(req);
2779 io_cqring_add_event(req, ret);
2780
2781 if (io_wq_current_is_worker()) {
2782 struct io_wq_work *old_work, *work;
2783
2784 old_work = work = &req->work;
2785 io_close_finish(&work);
2786 if (work && work != old_work)
2787 *nxt = container_of(work, struct io_kiocb, work);
2788 return 0;
2789 }
2790
2791eagain:
2792 req->work.func = io_close_finish;
2793 return -EAGAIN;
2794}
2795
Jens Axboe3529d8c2019-12-19 18:24:38 -07002796static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002797{
2798 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002799
2800 if (!req->file)
2801 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002802
2803 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2804 return -EINVAL;
2805 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2806 return -EINVAL;
2807
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002808 req->sync.off = READ_ONCE(sqe->off);
2809 req->sync.len = READ_ONCE(sqe->len);
2810 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002811 return 0;
2812}
2813
2814static void io_sync_file_range_finish(struct io_wq_work **workptr)
2815{
2816 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2817 struct io_kiocb *nxt = NULL;
2818 int ret;
2819
2820 if (io_req_cancelled(req))
2821 return;
2822
Jens Axboe9adbd452019-12-20 08:45:55 -07002823 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002824 req->sync.flags);
2825 if (ret < 0)
2826 req_set_fail_links(req);
2827 io_cqring_add_event(req, ret);
2828 io_put_req_find_next(req, &nxt);
2829 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002830 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002831}
2832
Jens Axboefc4df992019-12-10 14:38:45 -07002833static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002834 bool force_nonblock)
2835{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002836 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002837
2838 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002839 if (force_nonblock) {
2840 io_put_req(req);
2841 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002842 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002843 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002844
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002845 work = old_work = &req->work;
2846 io_sync_file_range_finish(&work);
2847 if (work && work != old_work)
2848 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002849 return 0;
2850}
2851
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002852#if defined(CONFIG_NET)
2853static void io_sendrecv_async(struct io_wq_work **workptr)
2854{
2855 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2856 struct iovec *iov = NULL;
2857
2858 if (req->io->rw.iov != req->io->rw.fast_iov)
2859 iov = req->io->msg.iov;
2860 io_wq_submit_work(workptr);
2861 kfree(iov);
2862}
2863#endif
2864
Jens Axboe3529d8c2019-12-19 18:24:38 -07002865static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002866{
Jens Axboe03b12302019-12-02 18:50:25 -07002867#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002868 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002869 struct io_async_ctx *io = req->io;
Jens Axboe03b12302019-12-02 18:50:25 -07002870
Jens Axboee47293f2019-12-20 08:58:21 -07002871 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2872 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07002873 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002874
Jens Axboefddafac2020-01-04 20:19:44 -07002875 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002876 return 0;
2877
Jens Axboed9688562019-12-09 19:35:20 -07002878 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002879 return sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002880 &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002881#else
Jens Axboee47293f2019-12-20 08:58:21 -07002882 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002883#endif
2884}
2885
Jens Axboefc4df992019-12-10 14:38:45 -07002886static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2887 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002888{
2889#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002890 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07002891 struct socket *sock;
2892 int ret;
2893
2894 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2895 return -EINVAL;
2896
2897 sock = sock_from_file(req->file, &ret);
2898 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002899 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002900 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002901 unsigned flags;
2902
Jens Axboe03b12302019-12-02 18:50:25 -07002903 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002904 kmsg = &req->io->msg;
2905 kmsg->msg.msg_name = &addr;
2906 /* if iov is set, it's allocated already */
2907 if (!kmsg->iov)
2908 kmsg->iov = kmsg->fast_iov;
2909 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002910 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07002911 struct io_sr_msg *sr = &req->sr_msg;
2912
Jens Axboe0b416c32019-12-15 10:57:46 -07002913 kmsg = &io.msg;
2914 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002915
2916 io.msg.iov = io.msg.fast_iov;
2917 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
2918 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002919 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002920 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002921 }
2922
Jens Axboee47293f2019-12-20 08:58:21 -07002923 flags = req->sr_msg.msg_flags;
2924 if (flags & MSG_DONTWAIT)
2925 req->flags |= REQ_F_NOWAIT;
2926 else if (force_nonblock)
2927 flags |= MSG_DONTWAIT;
2928
Jens Axboe0b416c32019-12-15 10:57:46 -07002929 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002930 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002931 if (req->io)
2932 return -EAGAIN;
2933 if (io_alloc_async_ctx(req))
2934 return -ENOMEM;
2935 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2936 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002937 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002938 }
2939 if (ret == -ERESTARTSYS)
2940 ret = -EINTR;
2941 }
2942
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002943 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002944 kfree(kmsg->iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002945 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002946 if (ret < 0)
2947 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07002948 io_put_req_find_next(req, nxt);
2949 return 0;
2950#else
2951 return -EOPNOTSUPP;
2952#endif
2953}
2954
Jens Axboefddafac2020-01-04 20:19:44 -07002955static int io_send(struct io_kiocb *req, struct io_kiocb **nxt,
2956 bool force_nonblock)
2957{
2958#if defined(CONFIG_NET)
2959 struct socket *sock;
2960 int ret;
2961
2962 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2963 return -EINVAL;
2964
2965 sock = sock_from_file(req->file, &ret);
2966 if (sock) {
2967 struct io_sr_msg *sr = &req->sr_msg;
2968 struct msghdr msg;
2969 struct iovec iov;
2970 unsigned flags;
2971
2972 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
2973 &msg.msg_iter);
2974 if (ret)
2975 return ret;
2976
2977 msg.msg_name = NULL;
2978 msg.msg_control = NULL;
2979 msg.msg_controllen = 0;
2980 msg.msg_namelen = 0;
2981
2982 flags = req->sr_msg.msg_flags;
2983 if (flags & MSG_DONTWAIT)
2984 req->flags |= REQ_F_NOWAIT;
2985 else if (force_nonblock)
2986 flags |= MSG_DONTWAIT;
2987
2988 ret = __sys_sendmsg_sock(sock, &msg, flags);
2989 if (force_nonblock && ret == -EAGAIN)
2990 return -EAGAIN;
2991 if (ret == -ERESTARTSYS)
2992 ret = -EINTR;
2993 }
2994
2995 io_cqring_add_event(req, ret);
2996 if (ret < 0)
2997 req_set_fail_links(req);
2998 io_put_req_find_next(req, nxt);
2999 return 0;
3000#else
3001 return -EOPNOTSUPP;
3002#endif
3003}
3004
Jens Axboe3529d8c2019-12-19 18:24:38 -07003005static int io_recvmsg_prep(struct io_kiocb *req,
3006 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003007{
3008#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003009 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003010 struct io_async_ctx *io = req->io;
Jens Axboe06b76d42019-12-19 14:44:26 -07003011
Jens Axboe3529d8c2019-12-19 18:24:38 -07003012 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3013 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
3014
Jens Axboefddafac2020-01-04 20:19:44 -07003015 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003016 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003017
Jens Axboed9688562019-12-09 19:35:20 -07003018 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003019 return recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003020 &io->msg.uaddr, &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003021#else
Jens Axboee47293f2019-12-20 08:58:21 -07003022 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003023#endif
3024}
3025
Jens Axboefc4df992019-12-10 14:38:45 -07003026static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3027 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003028{
3029#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003030 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003031 struct socket *sock;
3032 int ret;
3033
3034 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3035 return -EINVAL;
3036
3037 sock = sock_from_file(req->file, &ret);
3038 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003039 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003040 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003041 unsigned flags;
3042
Jens Axboe03b12302019-12-02 18:50:25 -07003043 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003044 kmsg = &req->io->msg;
3045 kmsg->msg.msg_name = &addr;
3046 /* if iov is set, it's allocated already */
3047 if (!kmsg->iov)
3048 kmsg->iov = kmsg->fast_iov;
3049 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003050 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003051 struct io_sr_msg *sr = &req->sr_msg;
3052
Jens Axboe0b416c32019-12-15 10:57:46 -07003053 kmsg = &io.msg;
3054 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003055
3056 io.msg.iov = io.msg.fast_iov;
3057 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
3058 sr->msg_flags, &io.msg.uaddr,
3059 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003060 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003061 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003062 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003063
Jens Axboee47293f2019-12-20 08:58:21 -07003064 flags = req->sr_msg.msg_flags;
3065 if (flags & MSG_DONTWAIT)
3066 req->flags |= REQ_F_NOWAIT;
3067 else if (force_nonblock)
3068 flags |= MSG_DONTWAIT;
3069
3070 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3071 kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07003072 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003073 if (req->io)
3074 return -EAGAIN;
3075 if (io_alloc_async_ctx(req))
3076 return -ENOMEM;
3077 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
3078 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07003079 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07003080 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07003081 if (ret == -ERESTARTSYS)
3082 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003083 }
3084
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003085 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003086 kfree(kmsg->iov);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003087 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003088 if (ret < 0)
3089 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003090 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003091 return 0;
3092#else
3093 return -EOPNOTSUPP;
3094#endif
3095}
3096
Jens Axboefddafac2020-01-04 20:19:44 -07003097static int io_recv(struct io_kiocb *req, struct io_kiocb **nxt,
3098 bool force_nonblock)
3099{
3100#if defined(CONFIG_NET)
3101 struct socket *sock;
3102 int ret;
3103
3104 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3105 return -EINVAL;
3106
3107 sock = sock_from_file(req->file, &ret);
3108 if (sock) {
3109 struct io_sr_msg *sr = &req->sr_msg;
3110 struct msghdr msg;
3111 struct iovec iov;
3112 unsigned flags;
3113
3114 ret = import_single_range(READ, sr->buf, sr->len, &iov,
3115 &msg.msg_iter);
3116 if (ret)
3117 return ret;
3118
3119 msg.msg_name = NULL;
3120 msg.msg_control = NULL;
3121 msg.msg_controllen = 0;
3122 msg.msg_namelen = 0;
3123 msg.msg_iocb = NULL;
3124 msg.msg_flags = 0;
3125
3126 flags = req->sr_msg.msg_flags;
3127 if (flags & MSG_DONTWAIT)
3128 req->flags |= REQ_F_NOWAIT;
3129 else if (force_nonblock)
3130 flags |= MSG_DONTWAIT;
3131
3132 ret = __sys_recvmsg_sock(sock, &msg, NULL, NULL, flags);
3133 if (force_nonblock && ret == -EAGAIN)
3134 return -EAGAIN;
3135 if (ret == -ERESTARTSYS)
3136 ret = -EINTR;
3137 }
3138
3139 io_cqring_add_event(req, ret);
3140 if (ret < 0)
3141 req_set_fail_links(req);
3142 io_put_req_find_next(req, nxt);
3143 return 0;
3144#else
3145 return -EOPNOTSUPP;
3146#endif
3147}
3148
3149
Jens Axboe3529d8c2019-12-19 18:24:38 -07003150static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003151{
3152#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003153 struct io_accept *accept = &req->accept;
3154
Jens Axboe17f2fe32019-10-17 14:42:58 -06003155 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3156 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003157 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003158 return -EINVAL;
3159
Jens Axboed55e5f52019-12-11 16:12:15 -07003160 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3161 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003162 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003163 return 0;
3164#else
3165 return -EOPNOTSUPP;
3166#endif
3167}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003168
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003169#if defined(CONFIG_NET)
3170static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3171 bool force_nonblock)
3172{
3173 struct io_accept *accept = &req->accept;
3174 unsigned file_flags;
3175 int ret;
3176
3177 file_flags = force_nonblock ? O_NONBLOCK : 0;
3178 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3179 accept->addr_len, accept->flags);
3180 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003181 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003182 if (ret == -ERESTARTSYS)
3183 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003184 if (ret < 0)
3185 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003186 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003187 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003188 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003189}
3190
3191static void io_accept_finish(struct io_wq_work **workptr)
3192{
3193 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3194 struct io_kiocb *nxt = NULL;
3195
3196 if (io_req_cancelled(req))
3197 return;
3198 __io_accept(req, &nxt, false);
3199 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003200 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003201}
3202#endif
3203
3204static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3205 bool force_nonblock)
3206{
3207#if defined(CONFIG_NET)
3208 int ret;
3209
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003210 ret = __io_accept(req, nxt, force_nonblock);
3211 if (ret == -EAGAIN && force_nonblock) {
3212 req->work.func = io_accept_finish;
3213 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
3214 io_put_req(req);
3215 return -EAGAIN;
3216 }
3217 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003218#else
3219 return -EOPNOTSUPP;
3220#endif
3221}
3222
Jens Axboe3529d8c2019-12-19 18:24:38 -07003223static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003224{
3225#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003226 struct io_connect *conn = &req->connect;
3227 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003228
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003229 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3230 return -EINVAL;
3231 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3232 return -EINVAL;
3233
Jens Axboe3529d8c2019-12-19 18:24:38 -07003234 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3235 conn->addr_len = READ_ONCE(sqe->addr2);
3236
3237 if (!io)
3238 return 0;
3239
3240 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003241 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003242#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003243 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07003244#endif
3245}
3246
Jens Axboefc4df992019-12-10 14:38:45 -07003247static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3248 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003249{
3250#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07003251 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003252 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003253 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003254
Jens Axboef499a022019-12-02 16:28:46 -07003255 if (req->io) {
3256 io = req->io;
3257 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003258 ret = move_addr_to_kernel(req->connect.addr,
3259 req->connect.addr_len,
3260 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003261 if (ret)
3262 goto out;
3263 io = &__io;
3264 }
3265
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003266 file_flags = force_nonblock ? O_NONBLOCK : 0;
3267
3268 ret = __sys_connect_file(req->file, &io->connect.address,
3269 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003270 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003271 if (req->io)
3272 return -EAGAIN;
3273 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003274 ret = -ENOMEM;
3275 goto out;
3276 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003277 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003278 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003279 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003280 if (ret == -ERESTARTSYS)
3281 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07003282out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003283 if (ret < 0)
3284 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003285 io_cqring_add_event(req, ret);
3286 io_put_req_find_next(req, nxt);
3287 return 0;
3288#else
3289 return -EOPNOTSUPP;
3290#endif
3291}
3292
Jens Axboe221c5eb2019-01-17 09:41:58 -07003293static void io_poll_remove_one(struct io_kiocb *req)
3294{
3295 struct io_poll_iocb *poll = &req->poll;
3296
3297 spin_lock(&poll->head->lock);
3298 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07003299 if (!list_empty(&poll->wait.entry)) {
3300 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07003301 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003302 }
3303 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003304 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003305}
3306
3307static void io_poll_remove_all(struct io_ring_ctx *ctx)
3308{
Jens Axboe78076bb2019-12-04 19:56:40 -07003309 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003310 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07003311 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003312
3313 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003314 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3315 struct hlist_head *list;
3316
3317 list = &ctx->cancel_hash[i];
3318 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3319 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003320 }
3321 spin_unlock_irq(&ctx->completion_lock);
3322}
3323
Jens Axboe47f46762019-11-09 17:43:02 -07003324static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3325{
Jens Axboe78076bb2019-12-04 19:56:40 -07003326 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07003327 struct io_kiocb *req;
3328
Jens Axboe78076bb2019-12-04 19:56:40 -07003329 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3330 hlist_for_each_entry(req, list, hash_node) {
3331 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07003332 io_poll_remove_one(req);
3333 return 0;
3334 }
Jens Axboe47f46762019-11-09 17:43:02 -07003335 }
3336
3337 return -ENOENT;
3338}
3339
Jens Axboe3529d8c2019-12-19 18:24:38 -07003340static int io_poll_remove_prep(struct io_kiocb *req,
3341 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003342{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003343 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3344 return -EINVAL;
3345 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3346 sqe->poll_events)
3347 return -EINVAL;
3348
Jens Axboe0969e782019-12-17 18:40:57 -07003349 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07003350 return 0;
3351}
3352
3353/*
3354 * Find a running poll command that matches one specified in sqe->addr,
3355 * and remove it if found.
3356 */
3357static int io_poll_remove(struct io_kiocb *req)
3358{
3359 struct io_ring_ctx *ctx = req->ctx;
3360 u64 addr;
3361 int ret;
3362
Jens Axboe0969e782019-12-17 18:40:57 -07003363 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003364 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07003365 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003366 spin_unlock_irq(&ctx->completion_lock);
3367
Jens Axboe78e19bb2019-11-06 15:21:34 -07003368 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003369 if (ret < 0)
3370 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003371 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003372 return 0;
3373}
3374
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003375static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003376{
Jackie Liua197f662019-11-08 08:09:12 -07003377 struct io_ring_ctx *ctx = req->ctx;
3378
Jens Axboe8c838782019-03-12 15:48:16 -06003379 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003380 if (error)
3381 io_cqring_fill_event(req, error);
3382 else
3383 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06003384 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003385}
3386
Jens Axboe561fb042019-10-24 07:25:42 -06003387static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003388{
Jens Axboe561fb042019-10-24 07:25:42 -06003389 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003390 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3391 struct io_poll_iocb *poll = &req->poll;
3392 struct poll_table_struct pt = { ._key = poll->events };
3393 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07003394 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003395 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003396 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003397
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003398 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06003399 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003400 ret = -ECANCELED;
3401 } else if (READ_ONCE(poll->canceled)) {
3402 ret = -ECANCELED;
3403 }
Jens Axboe561fb042019-10-24 07:25:42 -06003404
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003405 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003406 mask = vfs_poll(poll->file, &pt) & poll->events;
3407
3408 /*
3409 * Note that ->ki_cancel callers also delete iocb from active_reqs after
3410 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
3411 * synchronize with them. In the cancellation case the list_del_init
3412 * itself is not actually needed, but harmless so we keep it in to
3413 * avoid further branches in the fast path.
3414 */
3415 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003416 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07003417 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003418 spin_unlock_irq(&ctx->completion_lock);
3419 return;
3420 }
Jens Axboe78076bb2019-12-04 19:56:40 -07003421 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003422 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003423 spin_unlock_irq(&ctx->completion_lock);
3424
Jens Axboe8c838782019-03-12 15:48:16 -06003425 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07003426
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003427 if (ret < 0)
3428 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003429 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07003430 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003431 io_wq_assign_next(workptr, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003432}
3433
Jens Axboee94f1412019-12-19 12:06:02 -07003434static void __io_poll_flush(struct io_ring_ctx *ctx, struct llist_node *nodes)
3435{
Jens Axboee94f1412019-12-19 12:06:02 -07003436 struct io_kiocb *req, *tmp;
Jens Axboe8237e042019-12-28 10:48:22 -07003437 struct req_batch rb;
Jens Axboee94f1412019-12-19 12:06:02 -07003438
Jens Axboec6ca97b302019-12-28 12:11:08 -07003439 rb.to_free = rb.need_iter = 0;
Jens Axboee94f1412019-12-19 12:06:02 -07003440 spin_lock_irq(&ctx->completion_lock);
3441 llist_for_each_entry_safe(req, tmp, nodes, llist_node) {
3442 hash_del(&req->hash_node);
3443 io_poll_complete(req, req->result, 0);
3444
Jens Axboe8237e042019-12-28 10:48:22 -07003445 if (refcount_dec_and_test(&req->refs) &&
3446 !io_req_multi_free(&rb, req)) {
3447 req->flags |= REQ_F_COMP_LOCKED;
3448 io_free_req(req);
Jens Axboee94f1412019-12-19 12:06:02 -07003449 }
3450 }
3451 spin_unlock_irq(&ctx->completion_lock);
3452
3453 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07003454 io_free_req_many(ctx, &rb);
Jens Axboee94f1412019-12-19 12:06:02 -07003455}
3456
3457static void io_poll_flush(struct io_wq_work **workptr)
3458{
3459 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3460 struct llist_node *nodes;
3461
3462 nodes = llist_del_all(&req->ctx->poll_llist);
3463 if (nodes)
3464 __io_poll_flush(req->ctx, nodes);
3465}
3466
Jens Axboe221c5eb2019-01-17 09:41:58 -07003467static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3468 void *key)
3469{
Jens Axboee9444752019-11-26 15:02:04 -07003470 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003471 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
3472 struct io_ring_ctx *ctx = req->ctx;
3473 __poll_t mask = key_to_poll(key);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003474
3475 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06003476 if (mask && !(mask & poll->events))
3477 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003478
Jens Axboe392edb42019-12-09 17:52:20 -07003479 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003480
Jens Axboe7c9e7f02019-11-12 08:15:53 -07003481 /*
3482 * Run completion inline if we can. We're using trylock here because
3483 * we are violating the completion_lock -> poll wq lock ordering.
3484 * If we have a link timeout we're going to need the completion_lock
3485 * for finalizing the request, mark us as having grabbed that already.
3486 */
Jens Axboee94f1412019-12-19 12:06:02 -07003487 if (mask) {
3488 unsigned long flags;
Jens Axboe8c838782019-03-12 15:48:16 -06003489
Jens Axboee94f1412019-12-19 12:06:02 -07003490 if (llist_empty(&ctx->poll_llist) &&
3491 spin_trylock_irqsave(&ctx->completion_lock, flags)) {
3492 hash_del(&req->hash_node);
3493 io_poll_complete(req, mask, 0);
3494 req->flags |= REQ_F_COMP_LOCKED;
3495 io_put_req(req);
3496 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3497
3498 io_cqring_ev_posted(ctx);
3499 req = NULL;
3500 } else {
3501 req->result = mask;
3502 req->llist_node.next = NULL;
3503 /* if the list wasn't empty, we're done */
3504 if (!llist_add(&req->llist_node, &ctx->poll_llist))
3505 req = NULL;
3506 else
3507 req->work.func = io_poll_flush;
3508 }
Jens Axboe8c838782019-03-12 15:48:16 -06003509 }
Jens Axboee94f1412019-12-19 12:06:02 -07003510 if (req)
3511 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003512
Jens Axboe221c5eb2019-01-17 09:41:58 -07003513 return 1;
3514}
3515
3516struct io_poll_table {
3517 struct poll_table_struct pt;
3518 struct io_kiocb *req;
3519 int error;
3520};
3521
3522static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3523 struct poll_table_struct *p)
3524{
3525 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3526
3527 if (unlikely(pt->req->poll.head)) {
3528 pt->error = -EINVAL;
3529 return;
3530 }
3531
3532 pt->error = 0;
3533 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07003534 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003535}
3536
Jens Axboeeac406c2019-11-14 12:09:58 -07003537static void io_poll_req_insert(struct io_kiocb *req)
3538{
3539 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07003540 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07003541
Jens Axboe78076bb2019-12-04 19:56:40 -07003542 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3543 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07003544}
3545
Jens Axboe3529d8c2019-12-19 18:24:38 -07003546static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003547{
3548 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003549 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003550
3551 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3552 return -EINVAL;
3553 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3554 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003555 if (!poll->file)
3556 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003557
Jens Axboe221c5eb2019-01-17 09:41:58 -07003558 events = READ_ONCE(sqe->poll_events);
3559 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07003560 return 0;
3561}
3562
3563static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3564{
3565 struct io_poll_iocb *poll = &req->poll;
3566 struct io_ring_ctx *ctx = req->ctx;
3567 struct io_poll_table ipt;
3568 bool cancel = false;
3569 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07003570
3571 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07003572 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003573
Jens Axboe221c5eb2019-01-17 09:41:58 -07003574 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06003575 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003576 poll->canceled = false;
3577
3578 ipt.pt._qproc = io_poll_queue_proc;
3579 ipt.pt._key = poll->events;
3580 ipt.req = req;
3581 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3582
3583 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07003584 INIT_LIST_HEAD(&poll->wait.entry);
3585 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
3586 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003587
Jens Axboe36703242019-07-25 10:20:18 -06003588 INIT_LIST_HEAD(&req->list);
3589
Jens Axboe221c5eb2019-01-17 09:41:58 -07003590 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003591
3592 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06003593 if (likely(poll->head)) {
3594 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07003595 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06003596 if (ipt.error)
3597 cancel = true;
3598 ipt.error = 0;
3599 mask = 0;
3600 }
3601 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07003602 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003603 else if (cancel)
3604 WRITE_ONCE(poll->canceled, true);
3605 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07003606 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003607 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003608 }
Jens Axboe8c838782019-03-12 15:48:16 -06003609 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06003610 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003611 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06003612 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07003613 spin_unlock_irq(&ctx->completion_lock);
3614
Jens Axboe8c838782019-03-12 15:48:16 -06003615 if (mask) {
3616 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003617 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003618 }
Jens Axboe8c838782019-03-12 15:48:16 -06003619 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003620}
3621
Jens Axboe5262f562019-09-17 12:26:57 -06003622static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3623{
Jens Axboead8a48a2019-11-15 08:49:11 -07003624 struct io_timeout_data *data = container_of(timer,
3625 struct io_timeout_data, timer);
3626 struct io_kiocb *req = data->req;
3627 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06003628 unsigned long flags;
3629
Jens Axboe5262f562019-09-17 12:26:57 -06003630 atomic_inc(&ctx->cq_timeouts);
3631
3632 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08003633 /*
Jens Axboe11365042019-10-16 09:08:32 -06003634 * We could be racing with timeout deletion. If the list is empty,
3635 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08003636 */
Jens Axboe842f9612019-10-29 12:34:10 -06003637 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06003638 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06003639
Jens Axboe11365042019-10-16 09:08:32 -06003640 /*
3641 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08003642 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06003643 * pointer will be increased, otherwise other timeout reqs may
3644 * return in advance without waiting for enough wait_nr.
3645 */
3646 prev = req;
3647 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3648 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06003649 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06003650 }
Jens Axboe842f9612019-10-29 12:34:10 -06003651
Jens Axboe78e19bb2019-11-06 15:21:34 -07003652 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06003653 io_commit_cqring(ctx);
3654 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3655
3656 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003657 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003658 io_put_req(req);
3659 return HRTIMER_NORESTART;
3660}
3661
Jens Axboe47f46762019-11-09 17:43:02 -07003662static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3663{
3664 struct io_kiocb *req;
3665 int ret = -ENOENT;
3666
3667 list_for_each_entry(req, &ctx->timeout_list, list) {
3668 if (user_data == req->user_data) {
3669 list_del_init(&req->list);
3670 ret = 0;
3671 break;
3672 }
3673 }
3674
3675 if (ret == -ENOENT)
3676 return ret;
3677
Jens Axboe2d283902019-12-04 11:08:05 -07003678 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07003679 if (ret == -1)
3680 return -EALREADY;
3681
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003682 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003683 io_cqring_fill_event(req, -ECANCELED);
3684 io_put_req(req);
3685 return 0;
3686}
3687
Jens Axboe3529d8c2019-12-19 18:24:38 -07003688static int io_timeout_remove_prep(struct io_kiocb *req,
3689 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07003690{
Jens Axboeb29472e2019-12-17 18:50:29 -07003691 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3692 return -EINVAL;
3693 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3694 return -EINVAL;
3695
3696 req->timeout.addr = READ_ONCE(sqe->addr);
3697 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3698 if (req->timeout.flags)
3699 return -EINVAL;
3700
Jens Axboeb29472e2019-12-17 18:50:29 -07003701 return 0;
3702}
3703
Jens Axboe11365042019-10-16 09:08:32 -06003704/*
3705 * Remove or update an existing timeout command
3706 */
Jens Axboefc4df992019-12-10 14:38:45 -07003707static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06003708{
3709 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07003710 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06003711
Jens Axboe11365042019-10-16 09:08:32 -06003712 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07003713 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06003714
Jens Axboe47f46762019-11-09 17:43:02 -07003715 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06003716 io_commit_cqring(ctx);
3717 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003718 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003719 if (ret < 0)
3720 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003721 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06003722 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06003723}
3724
Jens Axboe3529d8c2019-12-19 18:24:38 -07003725static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07003726 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06003727{
Jens Axboead8a48a2019-11-15 08:49:11 -07003728 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06003729 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06003730
Jens Axboead8a48a2019-11-15 08:49:11 -07003731 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06003732 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07003733 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06003734 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07003735 if (sqe->off && is_timeout_link)
3736 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06003737 flags = READ_ONCE(sqe->timeout_flags);
3738 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06003739 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06003740
Jens Axboe26a61672019-12-20 09:02:01 -07003741 req->timeout.count = READ_ONCE(sqe->off);
3742
Jens Axboe3529d8c2019-12-19 18:24:38 -07003743 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07003744 return -ENOMEM;
3745
3746 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07003747 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07003748 req->flags |= REQ_F_TIMEOUT;
3749
3750 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06003751 return -EFAULT;
3752
Jens Axboe11365042019-10-16 09:08:32 -06003753 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07003754 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06003755 else
Jens Axboead8a48a2019-11-15 08:49:11 -07003756 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06003757
Jens Axboead8a48a2019-11-15 08:49:11 -07003758 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
3759 return 0;
3760}
3761
Jens Axboefc4df992019-12-10 14:38:45 -07003762static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07003763{
3764 unsigned count;
3765 struct io_ring_ctx *ctx = req->ctx;
3766 struct io_timeout_data *data;
3767 struct list_head *entry;
3768 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07003769
Jens Axboe2d283902019-12-04 11:08:05 -07003770 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003771
Jens Axboe5262f562019-09-17 12:26:57 -06003772 /*
3773 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07003774 * timeout event to be satisfied. If it isn't set, then this is
3775 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06003776 */
Jens Axboe26a61672019-12-20 09:02:01 -07003777 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003778 if (!count) {
3779 req->flags |= REQ_F_TIMEOUT_NOSEQ;
3780 spin_lock_irq(&ctx->completion_lock);
3781 entry = ctx->timeout_list.prev;
3782 goto add;
3783 }
Jens Axboe5262f562019-09-17 12:26:57 -06003784
3785 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07003786 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06003787
3788 /*
3789 * Insertion sort, ensuring the first entry in the list is always
3790 * the one we need first.
3791 */
Jens Axboe5262f562019-09-17 12:26:57 -06003792 spin_lock_irq(&ctx->completion_lock);
3793 list_for_each_prev(entry, &ctx->timeout_list) {
3794 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08003795 unsigned nxt_sq_head;
3796 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07003797 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06003798
Jens Axboe93bd25b2019-11-11 23:34:31 -07003799 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
3800 continue;
3801
yangerkun5da0fb12019-10-15 21:59:29 +08003802 /*
3803 * Since cached_sq_head + count - 1 can overflow, use type long
3804 * long to store it.
3805 */
3806 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03003807 nxt_sq_head = nxt->sequence - nxt_offset + 1;
3808 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08003809
3810 /*
3811 * cached_sq_head may overflow, and it will never overflow twice
3812 * once there is some timeout req still be valid.
3813 */
3814 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08003815 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08003816
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003817 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06003818 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003819
3820 /*
3821 * Sequence of reqs after the insert one and itself should
3822 * be adjusted because each timeout req consumes a slot.
3823 */
3824 span++;
3825 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06003826 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003827 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003828add:
Jens Axboe5262f562019-09-17 12:26:57 -06003829 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07003830 data->timer.function = io_timeout_fn;
3831 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06003832 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003833 return 0;
3834}
3835
Jens Axboe62755e32019-10-28 21:49:21 -06003836static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06003837{
Jens Axboe62755e32019-10-28 21:49:21 -06003838 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06003839
Jens Axboe62755e32019-10-28 21:49:21 -06003840 return req->user_data == (unsigned long) data;
3841}
3842
Jens Axboee977d6d2019-11-05 12:39:45 -07003843static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003844{
Jens Axboe62755e32019-10-28 21:49:21 -06003845 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003846 int ret = 0;
3847
Jens Axboe62755e32019-10-28 21:49:21 -06003848 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3849 switch (cancel_ret) {
3850 case IO_WQ_CANCEL_OK:
3851 ret = 0;
3852 break;
3853 case IO_WQ_CANCEL_RUNNING:
3854 ret = -EALREADY;
3855 break;
3856 case IO_WQ_CANCEL_NOTFOUND:
3857 ret = -ENOENT;
3858 break;
3859 }
3860
Jens Axboee977d6d2019-11-05 12:39:45 -07003861 return ret;
3862}
3863
Jens Axboe47f46762019-11-09 17:43:02 -07003864static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3865 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003866 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07003867{
3868 unsigned long flags;
3869 int ret;
3870
3871 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3872 if (ret != -ENOENT) {
3873 spin_lock_irqsave(&ctx->completion_lock, flags);
3874 goto done;
3875 }
3876
3877 spin_lock_irqsave(&ctx->completion_lock, flags);
3878 ret = io_timeout_cancel(ctx, sqe_addr);
3879 if (ret != -ENOENT)
3880 goto done;
3881 ret = io_poll_cancel(ctx, sqe_addr);
3882done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003883 if (!ret)
3884 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07003885 io_cqring_fill_event(req, ret);
3886 io_commit_cqring(ctx);
3887 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3888 io_cqring_ev_posted(ctx);
3889
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003890 if (ret < 0)
3891 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003892 io_put_req_find_next(req, nxt);
3893}
3894
Jens Axboe3529d8c2019-12-19 18:24:38 -07003895static int io_async_cancel_prep(struct io_kiocb *req,
3896 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07003897{
Jens Axboefbf23842019-12-17 18:45:56 -07003898 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07003899 return -EINVAL;
3900 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3901 sqe->cancel_flags)
3902 return -EINVAL;
3903
Jens Axboefbf23842019-12-17 18:45:56 -07003904 req->cancel.addr = READ_ONCE(sqe->addr);
3905 return 0;
3906}
3907
3908static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
3909{
3910 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07003911
3912 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06003913 return 0;
3914}
3915
Jens Axboe05f3fb32019-12-09 11:22:50 -07003916static int io_files_update_prep(struct io_kiocb *req,
3917 const struct io_uring_sqe *sqe)
3918{
3919 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
3920 return -EINVAL;
3921
3922 req->files_update.offset = READ_ONCE(sqe->off);
3923 req->files_update.nr_args = READ_ONCE(sqe->len);
3924 if (!req->files_update.nr_args)
3925 return -EINVAL;
3926 req->files_update.arg = READ_ONCE(sqe->addr);
3927 return 0;
3928}
3929
3930static int io_files_update(struct io_kiocb *req, bool force_nonblock)
3931{
3932 struct io_ring_ctx *ctx = req->ctx;
3933 struct io_uring_files_update up;
3934 int ret;
3935
3936 if (force_nonblock) {
3937 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
3938 return -EAGAIN;
3939 }
3940
3941 up.offset = req->files_update.offset;
3942 up.fds = req->files_update.arg;
3943
3944 mutex_lock(&ctx->uring_lock);
3945 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
3946 mutex_unlock(&ctx->uring_lock);
3947
3948 if (ret < 0)
3949 req_set_fail_links(req);
3950 io_cqring_add_event(req, ret);
3951 io_put_req(req);
3952 return 0;
3953}
3954
Jens Axboe3529d8c2019-12-19 18:24:38 -07003955static int io_req_defer_prep(struct io_kiocb *req,
3956 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003957{
Jens Axboee7815732019-12-17 19:45:06 -07003958 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003959
Jens Axboed625c6e2019-12-17 19:53:05 -07003960 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07003961 case IORING_OP_NOP:
3962 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003963 case IORING_OP_READV:
3964 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07003965 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003966 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07003967 break;
3968 case IORING_OP_WRITEV:
3969 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07003970 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003971 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07003972 break;
Jens Axboe0969e782019-12-17 18:40:57 -07003973 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003974 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07003975 break;
3976 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003977 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07003978 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003979 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003980 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003981 break;
3982 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003983 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003984 break;
Jens Axboe03b12302019-12-02 18:50:25 -07003985 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07003986 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003987 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07003988 break;
3989 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07003990 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003991 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07003992 break;
Jens Axboef499a022019-12-02 16:28:46 -07003993 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003994 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07003995 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003996 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003997 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003998 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07003999 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004000 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004001 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004002 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004003 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004004 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004005 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004006 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004007 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004008 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004009 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004010 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004011 case IORING_OP_FALLOCATE:
4012 ret = io_fallocate_prep(req, sqe);
4013 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004014 case IORING_OP_OPENAT:
4015 ret = io_openat_prep(req, sqe);
4016 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004017 case IORING_OP_CLOSE:
4018 ret = io_close_prep(req, sqe);
4019 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004020 case IORING_OP_FILES_UPDATE:
4021 ret = io_files_update_prep(req, sqe);
4022 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004023 case IORING_OP_STATX:
4024 ret = io_statx_prep(req, sqe);
4025 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004026 case IORING_OP_FADVISE:
4027 ret = io_fadvise_prep(req, sqe);
4028 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004029 case IORING_OP_MADVISE:
4030 ret = io_madvise_prep(req, sqe);
4031 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004032 case IORING_OP_OPENAT2:
4033 ret = io_openat2_prep(req, sqe);
4034 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004035 default:
Jens Axboee7815732019-12-17 19:45:06 -07004036 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4037 req->opcode);
4038 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004039 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004040 }
4041
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004042 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004043}
4044
Jens Axboe3529d8c2019-12-19 18:24:38 -07004045static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004046{
Jackie Liua197f662019-11-08 08:09:12 -07004047 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004048 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004049
Bob Liu9d858b22019-11-13 18:06:25 +08004050 /* Still need defer if there is pending req in defer list. */
4051 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004052 return 0;
4053
Jens Axboe3529d8c2019-12-19 18:24:38 -07004054 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004055 return -EAGAIN;
4056
Jens Axboe3529d8c2019-12-19 18:24:38 -07004057 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004058 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004059 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004060
Jens Axboede0617e2019-04-06 21:51:27 -06004061 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004062 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004063 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004064 return 0;
4065 }
4066
Jens Axboe915967f2019-11-21 09:01:20 -07004067 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004068 list_add_tail(&req->list, &ctx->defer_list);
4069 spin_unlock_irq(&ctx->completion_lock);
4070 return -EIOCBQUEUED;
4071}
4072
Jens Axboe3529d8c2019-12-19 18:24:38 -07004073static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4074 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004075{
Jackie Liua197f662019-11-08 08:09:12 -07004076 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004077 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004078
Jens Axboed625c6e2019-12-17 19:53:05 -07004079 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004080 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004081 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004082 break;
4083 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004084 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004085 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004086 if (sqe) {
4087 ret = io_read_prep(req, sqe, force_nonblock);
4088 if (ret < 0)
4089 break;
4090 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004091 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004092 break;
4093 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07004094 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004095 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004096 if (sqe) {
4097 ret = io_write_prep(req, sqe, force_nonblock);
4098 if (ret < 0)
4099 break;
4100 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004101 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004102 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004103 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004104 if (sqe) {
4105 ret = io_prep_fsync(req, sqe);
4106 if (ret < 0)
4107 break;
4108 }
Jens Axboefc4df992019-12-10 14:38:45 -07004109 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004110 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004111 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004112 if (sqe) {
4113 ret = io_poll_add_prep(req, sqe);
4114 if (ret)
4115 break;
4116 }
Jens Axboefc4df992019-12-10 14:38:45 -07004117 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004118 break;
4119 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004120 if (sqe) {
4121 ret = io_poll_remove_prep(req, sqe);
4122 if (ret < 0)
4123 break;
4124 }
Jens Axboefc4df992019-12-10 14:38:45 -07004125 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004126 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004127 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004128 if (sqe) {
4129 ret = io_prep_sfr(req, sqe);
4130 if (ret < 0)
4131 break;
4132 }
Jens Axboefc4df992019-12-10 14:38:45 -07004133 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004134 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004135 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004136 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004137 if (sqe) {
4138 ret = io_sendmsg_prep(req, sqe);
4139 if (ret < 0)
4140 break;
4141 }
Jens Axboefddafac2020-01-04 20:19:44 -07004142 if (req->opcode == IORING_OP_SENDMSG)
4143 ret = io_sendmsg(req, nxt, force_nonblock);
4144 else
4145 ret = io_send(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004146 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06004147 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004148 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004149 if (sqe) {
4150 ret = io_recvmsg_prep(req, sqe);
4151 if (ret)
4152 break;
4153 }
Jens Axboefddafac2020-01-04 20:19:44 -07004154 if (req->opcode == IORING_OP_RECVMSG)
4155 ret = io_recvmsg(req, nxt, force_nonblock);
4156 else
4157 ret = io_recv(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06004158 break;
Jens Axboe5262f562019-09-17 12:26:57 -06004159 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004160 if (sqe) {
4161 ret = io_timeout_prep(req, sqe, false);
4162 if (ret)
4163 break;
4164 }
Jens Axboefc4df992019-12-10 14:38:45 -07004165 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004166 break;
Jens Axboe11365042019-10-16 09:08:32 -06004167 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004168 if (sqe) {
4169 ret = io_timeout_remove_prep(req, sqe);
4170 if (ret)
4171 break;
4172 }
Jens Axboefc4df992019-12-10 14:38:45 -07004173 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06004174 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06004175 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004176 if (sqe) {
4177 ret = io_accept_prep(req, sqe);
4178 if (ret)
4179 break;
4180 }
Jens Axboefc4df992019-12-10 14:38:45 -07004181 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004182 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004183 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004184 if (sqe) {
4185 ret = io_connect_prep(req, sqe);
4186 if (ret)
4187 break;
4188 }
Jens Axboefc4df992019-12-10 14:38:45 -07004189 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004190 break;
Jens Axboe62755e32019-10-28 21:49:21 -06004191 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004192 if (sqe) {
4193 ret = io_async_cancel_prep(req, sqe);
4194 if (ret)
4195 break;
4196 }
Jens Axboefc4df992019-12-10 14:38:45 -07004197 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06004198 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004199 case IORING_OP_FALLOCATE:
4200 if (sqe) {
4201 ret = io_fallocate_prep(req, sqe);
4202 if (ret)
4203 break;
4204 }
4205 ret = io_fallocate(req, nxt, force_nonblock);
4206 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004207 case IORING_OP_OPENAT:
4208 if (sqe) {
4209 ret = io_openat_prep(req, sqe);
4210 if (ret)
4211 break;
4212 }
4213 ret = io_openat(req, nxt, force_nonblock);
4214 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004215 case IORING_OP_CLOSE:
4216 if (sqe) {
4217 ret = io_close_prep(req, sqe);
4218 if (ret)
4219 break;
4220 }
4221 ret = io_close(req, nxt, force_nonblock);
4222 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004223 case IORING_OP_FILES_UPDATE:
4224 if (sqe) {
4225 ret = io_files_update_prep(req, sqe);
4226 if (ret)
4227 break;
4228 }
4229 ret = io_files_update(req, force_nonblock);
4230 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004231 case IORING_OP_STATX:
4232 if (sqe) {
4233 ret = io_statx_prep(req, sqe);
4234 if (ret)
4235 break;
4236 }
4237 ret = io_statx(req, nxt, force_nonblock);
4238 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004239 case IORING_OP_FADVISE:
4240 if (sqe) {
4241 ret = io_fadvise_prep(req, sqe);
4242 if (ret)
4243 break;
4244 }
4245 ret = io_fadvise(req, nxt, force_nonblock);
4246 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004247 case IORING_OP_MADVISE:
4248 if (sqe) {
4249 ret = io_madvise_prep(req, sqe);
4250 if (ret)
4251 break;
4252 }
4253 ret = io_madvise(req, nxt, force_nonblock);
4254 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004255 case IORING_OP_OPENAT2:
4256 if (sqe) {
4257 ret = io_openat2_prep(req, sqe);
4258 if (ret)
4259 break;
4260 }
4261 ret = io_openat2(req, nxt, force_nonblock);
4262 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004263 default:
4264 ret = -EINVAL;
4265 break;
4266 }
4267
Jens Axboedef596e2019-01-09 08:59:42 -07004268 if (ret)
4269 return ret;
4270
4271 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07004272 const bool in_async = io_wq_current_is_worker();
4273
Jens Axboe9e645e112019-05-10 16:07:28 -06004274 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07004275 return -EAGAIN;
4276
Jens Axboe11ba8202020-01-15 21:51:17 -07004277 /* workqueue context doesn't hold uring_lock, grab it now */
4278 if (in_async)
4279 mutex_lock(&ctx->uring_lock);
4280
Jens Axboedef596e2019-01-09 08:59:42 -07004281 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07004282
4283 if (in_async)
4284 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07004285 }
4286
4287 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004288}
4289
Jens Axboe561fb042019-10-24 07:25:42 -06004290static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07004291{
Jens Axboe561fb042019-10-24 07:25:42 -06004292 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004293 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06004294 struct io_kiocb *nxt = NULL;
4295 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004296
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004297 /* if NO_CANCEL is set, we must still run the work */
4298 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4299 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06004300 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004301 }
Jens Axboe31b51512019-01-18 22:56:34 -07004302
Jens Axboe561fb042019-10-24 07:25:42 -06004303 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004304 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
4305 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06004306 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004307 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06004308 /*
4309 * We can get EAGAIN for polled IO even though we're
4310 * forcing a sync submission from here, since we can't
4311 * wait for request slots on the block side.
4312 */
4313 if (ret != -EAGAIN)
4314 break;
4315 cond_resched();
4316 } while (1);
4317 }
Jens Axboe31b51512019-01-18 22:56:34 -07004318
Jens Axboe561fb042019-10-24 07:25:42 -06004319 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08004320 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06004321
Jens Axboe561fb042019-10-24 07:25:42 -06004322 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004323 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004324 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06004325 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07004326 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004327
Jens Axboe561fb042019-10-24 07:25:42 -06004328 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07004329 if (!ret && nxt)
4330 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07004331}
Jens Axboe2b188cc2019-01-07 10:46:33 -07004332
Jens Axboe15b71ab2019-12-11 11:20:36 -07004333static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06004334{
Jens Axboed3656342019-12-18 09:50:26 -07004335 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004336 return 0;
Jens Axboed3656342019-12-18 09:50:26 -07004337 if (fd == -1 && io_op_defs[req->opcode].fd_non_neg)
4338 return 0;
4339 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06004340}
4341
Jens Axboe65e19f52019-10-26 07:20:21 -06004342static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4343 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06004344{
Jens Axboe65e19f52019-10-26 07:20:21 -06004345 struct fixed_file_table *table;
4346
Jens Axboe05f3fb32019-12-09 11:22:50 -07004347 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4348 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06004349}
4350
Jens Axboe3529d8c2019-12-19 18:24:38 -07004351static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4352 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06004353{
Jackie Liua197f662019-11-08 08:09:12 -07004354 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06004355 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07004356 int fd;
Jens Axboe09bb8392019-03-13 12:39:28 -06004357
Jens Axboe3529d8c2019-12-19 18:24:38 -07004358 flags = READ_ONCE(sqe->flags);
4359 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004360
Jackie Liu4fe2c962019-09-09 20:50:40 +08004361 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06004362 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06004363
Jens Axboed3656342019-12-18 09:50:26 -07004364 if (!io_req_needs_file(req, fd))
4365 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06004366
4367 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07004368 if (unlikely(!ctx->file_data ||
Jens Axboe09bb8392019-03-13 12:39:28 -06004369 (unsigned) fd >= ctx->nr_user_files))
4370 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06004371 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004372 req->file = io_file_from_index(ctx, fd);
4373 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06004374 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06004375 req->flags |= REQ_F_FIXED_FILE;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004376 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe09bb8392019-03-13 12:39:28 -06004377 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004378 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06004379 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004380 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004381 req->file = io_file_get(state, fd);
4382 if (unlikely(!req->file))
4383 return -EBADF;
4384 }
4385
4386 return 0;
4387}
4388
Jackie Liua197f662019-11-08 08:09:12 -07004389static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004390{
Jens Axboefcb323c2019-10-24 12:39:47 -06004391 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07004392 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06004393
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004394 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07004395 return -EBADF;
4396
Jens Axboefcb323c2019-10-24 12:39:47 -06004397 rcu_read_lock();
4398 spin_lock_irq(&ctx->inflight_lock);
4399 /*
4400 * We use the f_ops->flush() handler to ensure that we can flush
4401 * out work accessing these files if the fd is closed. Check if
4402 * the fd has changed since we started down this path, and disallow
4403 * this operation if it has.
4404 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004405 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06004406 list_add(&req->inflight_entry, &ctx->inflight_list);
4407 req->flags |= REQ_F_INFLIGHT;
4408 req->work.files = current->files;
4409 ret = 0;
4410 }
4411 spin_unlock_irq(&ctx->inflight_lock);
4412 rcu_read_unlock();
4413
4414 return ret;
4415}
4416
Jens Axboe2665abf2019-11-05 12:40:47 -07004417static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
4418{
Jens Axboead8a48a2019-11-15 08:49:11 -07004419 struct io_timeout_data *data = container_of(timer,
4420 struct io_timeout_data, timer);
4421 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07004422 struct io_ring_ctx *ctx = req->ctx;
4423 struct io_kiocb *prev = NULL;
4424 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07004425
4426 spin_lock_irqsave(&ctx->completion_lock, flags);
4427
4428 /*
4429 * We don't expect the list to be empty, that will only happen if we
4430 * race with the completion of the linked work.
4431 */
Pavel Begunkov44932332019-12-05 16:16:35 +03004432 if (!list_empty(&req->link_list)) {
4433 prev = list_entry(req->link_list.prev, struct io_kiocb,
4434 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004435 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03004436 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004437 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4438 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07004439 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004440 }
4441
4442 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4443
4444 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004445 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004446 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4447 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07004448 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07004449 } else {
4450 io_cqring_add_event(req, -ETIME);
4451 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004452 }
Jens Axboe2665abf2019-11-05 12:40:47 -07004453 return HRTIMER_NORESTART;
4454}
4455
Jens Axboead8a48a2019-11-15 08:49:11 -07004456static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004457{
Jens Axboe76a46e02019-11-10 23:34:16 -07004458 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07004459
Jens Axboe76a46e02019-11-10 23:34:16 -07004460 /*
4461 * If the list is now empty, then our linked request finished before
4462 * we got a chance to setup the timer
4463 */
4464 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03004465 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07004466 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07004467
Jens Axboead8a48a2019-11-15 08:49:11 -07004468 data->timer.function = io_link_timeout_fn;
4469 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4470 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07004471 }
Jens Axboe76a46e02019-11-10 23:34:16 -07004472 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07004473
Jens Axboe2665abf2019-11-05 12:40:47 -07004474 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07004475 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004476}
4477
Jens Axboead8a48a2019-11-15 08:49:11 -07004478static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004479{
4480 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004481
Jens Axboe2665abf2019-11-05 12:40:47 -07004482 if (!(req->flags & REQ_F_LINK))
4483 return NULL;
4484
Pavel Begunkov44932332019-12-05 16:16:35 +03004485 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4486 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07004487 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07004488 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004489
Jens Axboe76a46e02019-11-10 23:34:16 -07004490 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07004491 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07004492}
4493
Jens Axboe3529d8c2019-12-19 18:24:38 -07004494static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004495{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004496 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004497 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004498 int ret;
4499
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004500again:
4501 linked_timeout = io_prep_linked_timeout(req);
4502
Jens Axboe3529d8c2019-12-19 18:24:38 -07004503 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06004504
4505 /*
4506 * We async punt it if the file wasn't marked NOWAIT, or if the file
4507 * doesn't support non-blocking read/write attempts
4508 */
4509 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4510 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004511 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
4512 ret = io_grab_files(req);
4513 if (ret)
4514 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004515 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004516
4517 /*
4518 * Queued up for async execution, worker will release
4519 * submit reference when the iocb is actually submitted.
4520 */
4521 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004522 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004523 }
Jens Axboee65ef562019-03-12 10:16:44 -06004524
Jens Axboefcb323c2019-10-24 12:39:47 -06004525err:
Jens Axboee65ef562019-03-12 10:16:44 -06004526 /* drop submission reference */
4527 io_put_req(req);
4528
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004529 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07004530 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004531 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004532 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004533 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004534 }
4535
Jens Axboee65ef562019-03-12 10:16:44 -06004536 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06004537 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004538 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004539 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004540 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06004541 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004542done_req:
4543 if (nxt) {
4544 req = nxt;
4545 nxt = NULL;
4546 goto again;
4547 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004548}
4549
Jens Axboe3529d8c2019-12-19 18:24:38 -07004550static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004551{
4552 int ret;
4553
Jens Axboe3529d8c2019-12-19 18:24:38 -07004554 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004555 if (ret) {
4556 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004557 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004558 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004559 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004560 }
Pavel Begunkov25508782019-12-30 21:24:47 +03004561 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Jens Axboece35a472019-12-17 08:04:44 -07004562 /*
4563 * Never try inline submit of IOSQE_ASYNC is set, go straight
4564 * to async execution.
4565 */
4566 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4567 io_queue_async_work(req);
4568 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004569 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07004570 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08004571}
4572
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004573static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004574{
Jens Axboe94ae5e72019-11-14 19:39:52 -07004575 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004576 io_cqring_add_event(req, -ECANCELED);
4577 io_double_put_req(req);
4578 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07004579 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004580}
4581
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004582#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboece35a472019-12-17 08:04:44 -07004583 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
Jens Axboe9e645e112019-05-10 16:07:28 -06004584
Jens Axboe3529d8c2019-12-19 18:24:38 -07004585static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4586 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06004587{
Jackie Liua197f662019-11-08 08:09:12 -07004588 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004589 unsigned int sqe_flags;
Jens Axboe9e645e112019-05-10 16:07:28 -06004590 int ret;
4591
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004592 sqe_flags = READ_ONCE(sqe->flags);
4593
Jens Axboe9e645e112019-05-10 16:07:28 -06004594 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004595 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004596 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03004597 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06004598 }
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004599 if (sqe_flags & IOSQE_ASYNC)
Jens Axboece35a472019-12-17 08:04:44 -07004600 req->flags |= REQ_F_FORCE_ASYNC;
Jens Axboe9e645e112019-05-10 16:07:28 -06004601
Jens Axboe3529d8c2019-12-19 18:24:38 -07004602 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004603 if (unlikely(ret)) {
4604err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004605 io_cqring_add_event(req, ret);
4606 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004607 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06004608 }
4609
Jens Axboe9e645e112019-05-10 16:07:28 -06004610 /*
4611 * If we already have a head request, queue this one for async
4612 * submittal once the head completes. If we don't have a head but
4613 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4614 * submitted sync once the chain is complete. If none of those
4615 * conditions are true (normal request), then just queue it.
4616 */
4617 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03004618 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06004619
Pavel Begunkov711be032020-01-17 03:57:59 +03004620 if (sqe_flags & IOSQE_IO_DRAIN) {
4621 head->flags |= REQ_F_IO_DRAIN;
4622 ctx->drain_next = 1;
4623 }
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004624
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004625 if (sqe_flags & IOSQE_IO_HARDLINK)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004626 req->flags |= REQ_F_HARDLINK;
4627
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004628 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004629 ret = -EAGAIN;
4630 goto err_req;
4631 }
4632
Jens Axboe3529d8c2019-12-19 18:24:38 -07004633 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07004634 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004635 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03004636 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07004637 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07004638 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03004639 trace_io_uring_link(ctx, req, head);
4640 list_add_tail(&req->link_list, &head->link_list);
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004641
4642 /* last request of a link, enqueue the link */
4643 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
4644 io_queue_link_head(head);
4645 *link = NULL;
4646 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004647 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03004648 if (unlikely(ctx->drain_next)) {
4649 req->flags |= REQ_F_IO_DRAIN;
4650 req->ctx->drain_next = 0;
4651 }
4652 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
4653 req->flags |= REQ_F_LINK;
4654 if (sqe_flags & IOSQE_IO_HARDLINK)
4655 req->flags |= REQ_F_HARDLINK;
4656
4657 INIT_LIST_HEAD(&req->link_list);
4658 ret = io_req_defer_prep(req, sqe);
4659 if (ret)
4660 req->flags |= REQ_F_FAIL_LINK;
4661 *link = req;
4662 } else {
4663 io_queue_sqe(req, sqe);
4664 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004665 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004666
4667 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06004668}
4669
Jens Axboe9a56a232019-01-09 09:06:50 -07004670/*
4671 * Batched submission is done, ensure local IO is flushed out.
4672 */
4673static void io_submit_state_end(struct io_submit_state *state)
4674{
4675 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06004676 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07004677 if (state->free_reqs)
4678 kmem_cache_free_bulk(req_cachep, state->free_reqs,
4679 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07004680}
4681
4682/*
4683 * Start submission side cache.
4684 */
4685static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08004686 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07004687{
4688 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07004689 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07004690 state->file = NULL;
4691 state->ios_left = max_ios;
4692}
4693
Jens Axboe2b188cc2019-01-07 10:46:33 -07004694static void io_commit_sqring(struct io_ring_ctx *ctx)
4695{
Hristo Venev75b28af2019-08-26 17:23:46 +00004696 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004697
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03004698 /*
4699 * Ensure any loads from the SQEs are done at this point,
4700 * since once we write the new head, the application could
4701 * write new data to them.
4702 */
4703 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004704}
4705
4706/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07004707 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07004708 * that is mapped by userspace. This means that care needs to be taken to
4709 * ensure that reads are stable, as we cannot rely on userspace always
4710 * being a good citizen. If members of the sqe are validated and then later
4711 * used, it's important that those reads are done through READ_ONCE() to
4712 * prevent a re-load down the line.
4713 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07004714static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
4715 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004716{
Hristo Venev75b28af2019-08-26 17:23:46 +00004717 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004718 unsigned head;
4719
4720 /*
4721 * The cached sq head (or cq tail) serves two purposes:
4722 *
4723 * 1) allows us to batch the cost of updating the user visible
4724 * head updates.
4725 * 2) allows the kernel side to track the head on its own, even
4726 * though the application is the one updating it.
4727 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004728 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03004729 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004730 /*
4731 * All io need record the previous position, if LINK vs DARIN,
4732 * it can be used to mark the position of the first IO in the
4733 * link list.
4734 */
4735 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004736 *sqe_ptr = &ctx->sq_sqes[head];
4737 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
4738 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004739 ctx->cached_sq_head++;
4740 return true;
4741 }
4742
4743 /* drop invalid entries */
4744 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06004745 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004746 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004747 return false;
4748}
4749
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004750static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004751 struct file *ring_file, int ring_fd,
4752 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07004753{
4754 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004755 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004756 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004757 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004758
Jens Axboec4a2ed72019-11-21 21:01:26 -07004759 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07004760 if (test_bit(0, &ctx->sq_check_overflow)) {
4761 if (!list_empty(&ctx->cq_overflow_list) &&
4762 !io_cqring_overflow_flush(ctx, false))
4763 return -EBUSY;
4764 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07004765
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004766 /* make sure SQ entry isn't read before tail */
4767 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03004768
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004769 if (!percpu_ref_tryget_many(&ctx->refs, nr))
4770 return -EAGAIN;
4771
Jens Axboe6c271ce2019-01-10 11:22:30 -07004772 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08004773 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004774 statep = &state;
4775 }
4776
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004777 ctx->ring_fd = ring_fd;
4778 ctx->ring_file = ring_file;
4779
Jens Axboe6c271ce2019-01-10 11:22:30 -07004780 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004781 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03004782 struct io_kiocb *req;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004783
Pavel Begunkov196be952019-11-07 01:41:06 +03004784 req = io_get_req(ctx, statep);
4785 if (unlikely(!req)) {
4786 if (!submitted)
4787 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004788 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06004789 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07004790 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004791 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03004792 break;
4793 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004794
Jens Axboed3656342019-12-18 09:50:26 -07004795 /* will complete beyond this point, count as submitted */
4796 submitted++;
4797
4798 if (unlikely(req->opcode >= IORING_OP_LAST)) {
4799 io_cqring_add_event(req, -EINVAL);
4800 io_double_put_req(req);
4801 break;
4802 }
4803
4804 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004805 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
4806 if (!mm_fault) {
4807 use_mm(ctx->sqo_mm);
4808 *mm = ctx->sqo_mm;
4809 }
4810 }
4811
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004812 req->has_user = *mm != NULL;
4813 req->in_async = async;
4814 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07004815 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
4816 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004817 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004818 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004819 }
4820
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004821 if (submitted != nr)
4822 percpu_ref_put_many(&ctx->refs, nr - submitted);
Jens Axboe9e645e112019-05-10 16:07:28 -06004823 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004824 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004825 if (statep)
4826 io_submit_state_end(&state);
4827
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004828 /* Commit SQ ring head once we've consumed and submitted all SQEs */
4829 io_commit_sqring(ctx);
4830
Jens Axboe6c271ce2019-01-10 11:22:30 -07004831 return submitted;
4832}
4833
4834static int io_sq_thread(void *data)
4835{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004836 struct io_ring_ctx *ctx = data;
4837 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07004838 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004839 mm_segment_t old_fs;
4840 DEFINE_WAIT(wait);
4841 unsigned inflight;
4842 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07004843 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004844
Jens Axboe206aefd2019-11-07 18:27:42 -07004845 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08004846
Jens Axboe6c271ce2019-01-10 11:22:30 -07004847 old_fs = get_fs();
4848 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07004849 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004850
Jens Axboec1edbf52019-11-10 16:56:04 -07004851 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004852 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004853 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004854
4855 if (inflight) {
4856 unsigned nr_events = 0;
4857
4858 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06004859 /*
4860 * inflight is the count of the maximum possible
4861 * entries we submitted, but it can be smaller
4862 * if we dropped some of them. If we don't have
4863 * poll entries available, then we know that we
4864 * have nothing left to poll for. Reset the
4865 * inflight count to zero in that case.
4866 */
4867 mutex_lock(&ctx->uring_lock);
4868 if (!list_empty(&ctx->poll_list))
4869 __io_iopoll_check(ctx, &nr_events, 0);
4870 else
4871 inflight = 0;
4872 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004873 } else {
4874 /*
4875 * Normal IO, just pretend everything completed.
4876 * We don't have to poll completions for that.
4877 */
4878 nr_events = inflight;
4879 }
4880
4881 inflight -= nr_events;
4882 if (!inflight)
4883 timeout = jiffies + ctx->sq_thread_idle;
4884 }
4885
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004886 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07004887
4888 /*
4889 * If submit got -EBUSY, flag us as needing the application
4890 * to enter the kernel to reap and flush events.
4891 */
4892 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07004893 /*
4894 * We're polling. If we're within the defined idle
4895 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07004896 * to sleep. The exception is if we got EBUSY doing
4897 * more IO, we should wait for the application to
4898 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07004899 */
Jens Axboec1edbf52019-11-10 16:56:04 -07004900 if (inflight ||
4901 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06004902 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07004903 continue;
4904 }
4905
4906 /*
4907 * Drop cur_mm before scheduling, we can't hold it for
4908 * long periods (or over schedule()). Do this before
4909 * adding ourselves to the waitqueue, as the unuse/drop
4910 * may sleep.
4911 */
4912 if (cur_mm) {
4913 unuse_mm(cur_mm);
4914 mmput(cur_mm);
4915 cur_mm = NULL;
4916 }
4917
4918 prepare_to_wait(&ctx->sqo_wait, &wait,
4919 TASK_INTERRUPTIBLE);
4920
4921 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00004922 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02004923 /* make sure to read SQ tail after writing flags */
4924 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07004925
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004926 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07004927 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004928 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07004929 finish_wait(&ctx->sqo_wait, &wait);
4930 break;
4931 }
4932 if (signal_pending(current))
4933 flush_signals(current);
4934 schedule();
4935 finish_wait(&ctx->sqo_wait, &wait);
4936
Hristo Venev75b28af2019-08-26 17:23:46 +00004937 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004938 continue;
4939 }
4940 finish_wait(&ctx->sqo_wait, &wait);
4941
Hristo Venev75b28af2019-08-26 17:23:46 +00004942 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004943 }
4944
Jens Axboe8a4955f2019-12-09 14:52:35 -07004945 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004946 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07004947 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004948 if (ret > 0)
4949 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004950 }
4951
4952 set_fs(old_fs);
4953 if (cur_mm) {
4954 unuse_mm(cur_mm);
4955 mmput(cur_mm);
4956 }
Jens Axboe181e4482019-11-25 08:52:30 -07004957 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06004958
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004959 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06004960
Jens Axboe6c271ce2019-01-10 11:22:30 -07004961 return 0;
4962}
4963
Jens Axboebda52162019-09-24 13:47:15 -06004964struct io_wait_queue {
4965 struct wait_queue_entry wq;
4966 struct io_ring_ctx *ctx;
4967 unsigned to_wait;
4968 unsigned nr_timeouts;
4969};
4970
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004971static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06004972{
4973 struct io_ring_ctx *ctx = iowq->ctx;
4974
4975 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08004976 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06004977 * started waiting. For timeouts, we always want to return to userspace,
4978 * regardless of event count.
4979 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004980 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06004981 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
4982}
4983
4984static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
4985 int wake_flags, void *key)
4986{
4987 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
4988 wq);
4989
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004990 /* use noflush == true, as we can't safely rely on locking context */
4991 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06004992 return -1;
4993
4994 return autoremove_wake_function(curr, mode, wake_flags, key);
4995}
4996
Jens Axboe2b188cc2019-01-07 10:46:33 -07004997/*
4998 * Wait until events become available, if we don't already have some. The
4999 * application must reap them itself, as they reside on the shared cq ring.
5000 */
5001static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
5002 const sigset_t __user *sig, size_t sigsz)
5003{
Jens Axboebda52162019-09-24 13:47:15 -06005004 struct io_wait_queue iowq = {
5005 .wq = {
5006 .private = current,
5007 .func = io_wake_function,
5008 .entry = LIST_HEAD_INIT(iowq.wq.entry),
5009 },
5010 .ctx = ctx,
5011 .to_wait = min_events,
5012 };
Hristo Venev75b28af2019-08-26 17:23:46 +00005013 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005014 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005015
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005016 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005017 return 0;
5018
5019 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005020#ifdef CONFIG_COMPAT
5021 if (in_compat_syscall())
5022 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07005023 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005024 else
5025#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07005026 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005027
Jens Axboe2b188cc2019-01-07 10:46:33 -07005028 if (ret)
5029 return ret;
5030 }
5031
Jens Axboebda52162019-09-24 13:47:15 -06005032 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005033 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06005034 do {
5035 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
5036 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005037 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06005038 break;
5039 schedule();
5040 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005041 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06005042 break;
5043 }
5044 } while (1);
5045 finish_wait(&ctx->wait, &iowq.wq);
5046
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005047 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005048
Hristo Venev75b28af2019-08-26 17:23:46 +00005049 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005050}
5051
Jens Axboe6b063142019-01-10 22:13:58 -07005052static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
5053{
5054#if defined(CONFIG_UNIX)
5055 if (ctx->ring_sock) {
5056 struct sock *sock = ctx->ring_sock->sk;
5057 struct sk_buff *skb;
5058
5059 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
5060 kfree_skb(skb);
5061 }
5062#else
5063 int i;
5064
Jens Axboe65e19f52019-10-26 07:20:21 -06005065 for (i = 0; i < ctx->nr_user_files; i++) {
5066 struct file *file;
5067
5068 file = io_file_from_index(ctx, i);
5069 if (file)
5070 fput(file);
5071 }
Jens Axboe6b063142019-01-10 22:13:58 -07005072#endif
5073}
5074
Jens Axboe05f3fb32019-12-09 11:22:50 -07005075static void io_file_ref_kill(struct percpu_ref *ref)
5076{
5077 struct fixed_file_data *data;
5078
5079 data = container_of(ref, struct fixed_file_data, refs);
5080 complete(&data->done);
5081}
5082
Jens Axboe6b063142019-01-10 22:13:58 -07005083static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
5084{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005085 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06005086 unsigned nr_tables, i;
5087
Jens Axboe05f3fb32019-12-09 11:22:50 -07005088 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07005089 return -ENXIO;
5090
Jens Axboe05f3fb32019-12-09 11:22:50 -07005091 /* protect against inflight atomic switch, which drops the ref */
5092 flush_work(&data->ref_work);
5093 percpu_ref_get(&data->refs);
5094 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
5095 wait_for_completion(&data->done);
5096 percpu_ref_put(&data->refs);
5097 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);