blob: c5ca84a305d34a32943f75321c3cc28ea575372f [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>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030049#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070050
51#include <linux/sched/signal.h>
52#include <linux/fs.h>
53#include <linux/file.h>
54#include <linux/fdtable.h>
55#include <linux/mm.h>
56#include <linux/mman.h>
57#include <linux/mmu_context.h>
58#include <linux/percpu.h>
59#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070060#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070061#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070062#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070063#include <linux/net.h>
64#include <net/sock.h>
65#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070066#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070067#include <linux/anon_inodes.h>
68#include <linux/sched/mm.h>
69#include <linux/uaccess.h>
70#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070071#include <linux/sizes.h>
72#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070073#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070074#include <linux/namei.h>
75#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070076#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070077#include <linux/eventpoll.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070078
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020079#define CREATE_TRACE_POINTS
80#include <trace/events/io_uring.h>
81
Jens Axboe2b188cc2019-01-07 10:46:33 -070082#include <uapi/linux/io_uring.h>
83
84#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060085#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070086
Daniel Xu5277dea2019-09-14 14:23:45 -070087#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060088#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060089
90/*
91 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
92 */
93#define IORING_FILE_TABLE_SHIFT 9
94#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
95#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
96#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070097
98struct io_uring {
99 u32 head ____cacheline_aligned_in_smp;
100 u32 tail ____cacheline_aligned_in_smp;
101};
102
Stefan Bühler1e84b972019-04-24 23:54:16 +0200103/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000104 * This data is shared with the application through the mmap at offsets
105 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200106 *
107 * The offsets to the member fields are published through struct
108 * io_sqring_offsets when calling io_uring_setup.
109 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000110struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200111 /*
112 * Head and tail offsets into the ring; the offsets need to be
113 * masked to get valid indices.
114 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000115 * The kernel controls head of the sq ring and the tail of the cq ring,
116 * and the application controls tail of the sq ring and the head of the
117 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200118 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200120 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000121 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 * ring_entries - 1)
123 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000124 u32 sq_ring_mask, cq_ring_mask;
125 /* Ring sizes (constant, power of 2) */
126 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200127 /*
128 * Number of invalid entries dropped by the kernel due to
129 * invalid index stored in array
130 *
131 * Written by the kernel, shouldn't be modified by the
132 * application (i.e. get number of "new events" by comparing to
133 * cached value).
134 *
135 * After a new SQ head value was read by the application this
136 * counter includes all submissions that were dropped reaching
137 * the new SQ head (and possibly more).
138 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000139 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200140 /*
141 * Runtime flags
142 *
143 * Written by the kernel, shouldn't be modified by the
144 * application.
145 *
146 * The application needs a full memory barrier before checking
147 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
148 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000149 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200150 /*
151 * Number of completion events lost because the queue was full;
152 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800153 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200154 * the completion queue.
155 *
156 * Written by the kernel, shouldn't be modified by the
157 * application (i.e. get number of "new events" by comparing to
158 * cached value).
159 *
160 * As completion events come in out of order this counter is not
161 * ordered with any other data.
162 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000163 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200164 /*
165 * Ring buffer of completion events.
166 *
167 * The kernel writes completion events fresh every time they are
168 * produced, so the application is allowed to modify pending
169 * entries.
170 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000171 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700172};
173
Jens Axboeedafcce2019-01-09 09:16:05 -0700174struct io_mapped_ubuf {
175 u64 ubuf;
176 size_t len;
177 struct bio_vec *bvec;
178 unsigned int nr_bvecs;
179};
180
Jens Axboe65e19f52019-10-26 07:20:21 -0600181struct fixed_file_table {
182 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700183};
184
Jens Axboe05f3fb32019-12-09 11:22:50 -0700185enum {
186 FFD_F_ATOMIC,
187};
188
189struct fixed_file_data {
190 struct fixed_file_table *table;
191 struct io_ring_ctx *ctx;
192
193 struct percpu_ref refs;
194 struct llist_head put_llist;
195 unsigned long state;
196 struct work_struct ref_work;
197 struct completion done;
198};
199
Jens Axboe2b188cc2019-01-07 10:46:33 -0700200struct io_ring_ctx {
201 struct {
202 struct percpu_ref refs;
203 } ____cacheline_aligned_in_smp;
204
205 struct {
206 unsigned int flags;
Jens Axboe69b3e542020-01-08 11:01:46 -0700207 int compat: 1;
208 int account_mem: 1;
209 int cq_overflow_flushed: 1;
210 int drain_next: 1;
Jens Axboef2842ab2020-01-08 11:04:00 -0700211 int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700212
Hristo Venev75b28af2019-08-26 17:23:46 +0000213 /*
214 * Ring buffer of indices into array of io_uring_sqe, which is
215 * mmapped by the application using the IORING_OFF_SQES offset.
216 *
217 * This indirection could e.g. be used to assign fixed
218 * io_uring_sqe entries to operations and only submit them to
219 * the queue when needed.
220 *
221 * The kernel modifies neither the indices array nor the entries
222 * array.
223 */
224 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700225 unsigned cached_sq_head;
226 unsigned sq_entries;
227 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700228 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600229 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700230 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700231 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600232
233 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600234 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700235 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700236
Jens Axboefcb323c2019-10-24 12:39:47 -0600237 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700238 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700239 } ____cacheline_aligned_in_smp;
240
Hristo Venev75b28af2019-08-26 17:23:46 +0000241 struct io_rings *rings;
242
Jens Axboe2b188cc2019-01-07 10:46:33 -0700243 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600244 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700245 struct task_struct *sqo_thread; /* if using sq thread polling */
246 struct mm_struct *sqo_mm;
247 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700248
Jens Axboe6b063142019-01-10 22:13:58 -0700249 /*
250 * If used, fixed file set. Writers must ensure that ->refs is dead,
251 * readers must ensure that ->refs is alive as long as the file* is
252 * used. Only updated through io_uring_register(2).
253 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700254 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700255 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300256 int ring_fd;
257 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700258
Jens Axboeedafcce2019-01-09 09:16:05 -0700259 /* if used, fixed mapped user buffers */
260 unsigned nr_user_bufs;
261 struct io_mapped_ubuf *user_bufs;
262
Jens Axboe2b188cc2019-01-07 10:46:33 -0700263 struct user_struct *user;
264
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700265 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700266
Jens Axboe206aefd2019-11-07 18:27:42 -0700267 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
268 struct completion *completions;
269
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700270 /* if all else fails... */
271 struct io_kiocb *fallback_req;
272
Jens Axboe206aefd2019-11-07 18:27:42 -0700273#if defined(CONFIG_UNIX)
274 struct socket *ring_sock;
275#endif
276
Jens Axboe071698e2020-01-28 10:04:42 -0700277 struct idr personality_idr;
278
Jens Axboe206aefd2019-11-07 18:27:42 -0700279 struct {
280 unsigned cached_cq_tail;
281 unsigned cq_entries;
282 unsigned cq_mask;
283 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700284 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700285 struct wait_queue_head cq_wait;
286 struct fasync_struct *cq_fasync;
287 struct eventfd_ctx *cq_ev_fd;
288 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700289
290 struct {
291 struct mutex uring_lock;
292 wait_queue_head_t wait;
293 } ____cacheline_aligned_in_smp;
294
295 struct {
296 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700297 struct llist_head poll_llist;
298
Jens Axboedef596e2019-01-09 08:59:42 -0700299 /*
300 * ->poll_list is protected by the ctx->uring_lock for
301 * io_uring instances that don't use IORING_SETUP_SQPOLL.
302 * For SQPOLL, only the single threaded io_sq_thread() will
303 * manipulate the list, hence no extra locking is needed there.
304 */
305 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700306 struct hlist_head *cancel_hash;
307 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700308 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600309
310 spinlock_t inflight_lock;
311 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700312 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700313};
314
Jens Axboe09bb8392019-03-13 12:39:28 -0600315/*
316 * First field must be the file pointer in all the
317 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
318 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700319struct io_poll_iocb {
320 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700321 union {
322 struct wait_queue_head *head;
323 u64 addr;
324 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700325 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600326 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700327 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700328 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700329};
330
Jens Axboeb5dba592019-12-11 14:02:38 -0700331struct io_close {
332 struct file *file;
333 struct file *put_file;
334 int fd;
335};
336
Jens Axboead8a48a2019-11-15 08:49:11 -0700337struct io_timeout_data {
338 struct io_kiocb *req;
339 struct hrtimer timer;
340 struct timespec64 ts;
341 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300342 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700343};
344
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700345struct io_accept {
346 struct file *file;
347 struct sockaddr __user *addr;
348 int __user *addr_len;
349 int flags;
350};
351
352struct io_sync {
353 struct file *file;
354 loff_t len;
355 loff_t off;
356 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700357 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700358};
359
Jens Axboefbf23842019-12-17 18:45:56 -0700360struct io_cancel {
361 struct file *file;
362 u64 addr;
363};
364
Jens Axboeb29472e2019-12-17 18:50:29 -0700365struct io_timeout {
366 struct file *file;
367 u64 addr;
368 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700369 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700370};
371
Jens Axboe9adbd452019-12-20 08:45:55 -0700372struct io_rw {
373 /* NOTE: kiocb has the file as the first member, so don't do it here */
374 struct kiocb kiocb;
375 u64 addr;
376 u64 len;
377};
378
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700379struct io_connect {
380 struct file *file;
381 struct sockaddr __user *addr;
382 int addr_len;
383};
384
Jens Axboee47293f2019-12-20 08:58:21 -0700385struct io_sr_msg {
386 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700387 union {
388 struct user_msghdr __user *msg;
389 void __user *buf;
390 };
Jens Axboee47293f2019-12-20 08:58:21 -0700391 int msg_flags;
Jens Axboefddafac2020-01-04 20:19:44 -0700392 size_t len;
Jens Axboee47293f2019-12-20 08:58:21 -0700393};
394
Jens Axboe15b71ab2019-12-11 11:20:36 -0700395struct io_open {
396 struct file *file;
397 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700398 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700399 unsigned mask;
400 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700401 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700402 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700403 struct open_how how;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700404};
405
Jens Axboe05f3fb32019-12-09 11:22:50 -0700406struct io_files_update {
407 struct file *file;
408 u64 arg;
409 u32 nr_args;
410 u32 offset;
411};
412
Jens Axboe4840e412019-12-25 22:03:45 -0700413struct io_fadvise {
414 struct file *file;
415 u64 offset;
416 u32 len;
417 u32 advice;
418};
419
Jens Axboec1ca7572019-12-25 22:18:28 -0700420struct io_madvise {
421 struct file *file;
422 u64 addr;
423 u32 len;
424 u32 advice;
425};
426
Jens Axboe3e4827b2020-01-08 15:18:09 -0700427struct io_epoll {
428 struct file *file;
429 int epfd;
430 int op;
431 int fd;
432 struct epoll_event event;
433};
434
Jens Axboef499a022019-12-02 16:28:46 -0700435struct io_async_connect {
436 struct sockaddr_storage address;
437};
438
Jens Axboe03b12302019-12-02 18:50:25 -0700439struct io_async_msghdr {
440 struct iovec fast_iov[UIO_FASTIOV];
441 struct iovec *iov;
442 struct sockaddr __user *uaddr;
443 struct msghdr msg;
444};
445
Jens Axboef67676d2019-12-02 11:03:47 -0700446struct io_async_rw {
447 struct iovec fast_iov[UIO_FASTIOV];
448 struct iovec *iov;
449 ssize_t nr_segs;
450 ssize_t size;
451};
452
Jens Axboe15b71ab2019-12-11 11:20:36 -0700453struct io_async_open {
454 struct filename *filename;
455};
456
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700457struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700458 union {
459 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700460 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700461 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700462 struct io_timeout_data timeout;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700463 struct io_async_open open;
Jens Axboef67676d2019-12-02 11:03:47 -0700464 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700465};
466
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300467enum {
468 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
469 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
470 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
471 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
472 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
473
474 REQ_F_LINK_NEXT_BIT,
475 REQ_F_FAIL_LINK_BIT,
476 REQ_F_INFLIGHT_BIT,
477 REQ_F_CUR_POS_BIT,
478 REQ_F_NOWAIT_BIT,
479 REQ_F_IOPOLL_COMPLETED_BIT,
480 REQ_F_LINK_TIMEOUT_BIT,
481 REQ_F_TIMEOUT_BIT,
482 REQ_F_ISREG_BIT,
483 REQ_F_MUST_PUNT_BIT,
484 REQ_F_TIMEOUT_NOSEQ_BIT,
485 REQ_F_COMP_LOCKED_BIT,
486};
487
488enum {
489 /* ctx owns file */
490 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
491 /* drain existing IO first */
492 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
493 /* linked sqes */
494 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
495 /* doesn't sever on completion < 0 */
496 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
497 /* IOSQE_ASYNC */
498 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
499
500 /* already grabbed next link */
501 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
502 /* fail rest of links */
503 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
504 /* on inflight list */
505 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
506 /* read/write uses file position */
507 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
508 /* must not punt to workers */
509 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
510 /* polled IO has completed */
511 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
512 /* has linked timeout */
513 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
514 /* timeout request */
515 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
516 /* regular file */
517 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
518 /* must be punted even for NONBLOCK */
519 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
520 /* no timeout sequence */
521 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
522 /* completion under lock */
523 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
524};
525
Jens Axboe09bb8392019-03-13 12:39:28 -0600526/*
527 * NOTE! Each of the iocb union members has the file pointer
528 * as the first entry in their struct definition. So you can
529 * access the file pointer through any of the sub-structs,
530 * or directly as just 'ki_filp' in this struct.
531 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700532struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700533 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600534 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700535 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700536 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700537 struct io_accept accept;
538 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700539 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700540 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700541 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700542 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700543 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700544 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700545 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700546 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700547 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700548 struct io_epoll epoll;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700549 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700550
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700551 struct io_async_ctx *io;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300552 /*
553 * llist_node is only used for poll deferred completions
554 */
555 struct llist_node llist_node;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300556 bool has_user;
557 bool in_async;
558 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700559 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700560
561 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700562 union {
563 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700564 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700565 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600566 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700567 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700568 refcount_t refs;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700569 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600570 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600571 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700572
Jens Axboefcb323c2019-10-24 12:39:47 -0600573 struct list_head inflight_entry;
574
Jens Axboe561fb042019-10-24 07:25:42 -0600575 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700576};
577
578#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700579#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700580
Jens Axboe9a56a232019-01-09 09:06:50 -0700581struct io_submit_state {
582 struct blk_plug plug;
583
584 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700585 * io_kiocb alloc cache
586 */
587 void *reqs[IO_IOPOLL_BATCH];
588 unsigned int free_reqs;
589 unsigned int cur_req;
590
591 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700592 * File reference cache
593 */
594 struct file *file;
595 unsigned int fd;
596 unsigned int has_refs;
597 unsigned int used_refs;
598 unsigned int ios_left;
599};
600
Jens Axboed3656342019-12-18 09:50:26 -0700601struct io_op_def {
602 /* needs req->io allocated for deferral/async */
603 unsigned async_ctx : 1;
604 /* needs current->mm setup, does mm access */
605 unsigned needs_mm : 1;
606 /* needs req->file assigned */
607 unsigned needs_file : 1;
608 /* needs req->file assigned IFF fd is >= 0 */
609 unsigned fd_non_neg : 1;
610 /* hash wq insertion if file is a regular file */
611 unsigned hash_reg_file : 1;
612 /* unbound wq insertion if file is a non-regular file */
613 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700614 /* opcode is not supported by this kernel */
615 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700616 /* needs file table */
617 unsigned file_table : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700618};
619
620static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300621 [IORING_OP_NOP] = {},
622 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700623 .async_ctx = 1,
624 .needs_mm = 1,
625 .needs_file = 1,
626 .unbound_nonreg_file = 1,
627 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300628 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700629 .async_ctx = 1,
630 .needs_mm = 1,
631 .needs_file = 1,
632 .hash_reg_file = 1,
633 .unbound_nonreg_file = 1,
634 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300635 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700636 .needs_file = 1,
637 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300638 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700639 .needs_file = 1,
640 .unbound_nonreg_file = 1,
641 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300642 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700643 .needs_file = 1,
644 .hash_reg_file = 1,
645 .unbound_nonreg_file = 1,
646 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300647 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700648 .needs_file = 1,
649 .unbound_nonreg_file = 1,
650 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300651 [IORING_OP_POLL_REMOVE] = {},
652 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700653 .needs_file = 1,
654 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300655 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700656 .async_ctx = 1,
657 .needs_mm = 1,
658 .needs_file = 1,
659 .unbound_nonreg_file = 1,
660 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300661 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700662 .async_ctx = 1,
663 .needs_mm = 1,
664 .needs_file = 1,
665 .unbound_nonreg_file = 1,
666 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300667 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700668 .async_ctx = 1,
669 .needs_mm = 1,
670 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300671 [IORING_OP_TIMEOUT_REMOVE] = {},
672 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700673 .needs_mm = 1,
674 .needs_file = 1,
675 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700676 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700677 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300678 [IORING_OP_ASYNC_CANCEL] = {},
679 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700680 .async_ctx = 1,
681 .needs_mm = 1,
682 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300683 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700684 .async_ctx = 1,
685 .needs_mm = 1,
686 .needs_file = 1,
687 .unbound_nonreg_file = 1,
688 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300689 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700690 .needs_file = 1,
691 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300692 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700693 .needs_file = 1,
694 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700695 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700696 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300697 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700698 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700699 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700700 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300701 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700702 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700703 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700704 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300705 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700706 .needs_mm = 1,
707 .needs_file = 1,
708 .fd_non_neg = 1,
709 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300710 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700711 .needs_mm = 1,
712 .needs_file = 1,
713 .unbound_nonreg_file = 1,
714 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300715 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700716 .needs_mm = 1,
717 .needs_file = 1,
718 .unbound_nonreg_file = 1,
719 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300720 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700721 .needs_file = 1,
722 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300723 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700724 .needs_mm = 1,
725 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300726 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700727 .needs_mm = 1,
728 .needs_file = 1,
729 .unbound_nonreg_file = 1,
730 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300731 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700732 .needs_mm = 1,
733 .needs_file = 1,
734 .unbound_nonreg_file = 1,
735 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300736 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700737 .needs_file = 1,
738 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700739 .file_table = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700740 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700741 [IORING_OP_EPOLL_CTL] = {
742 .unbound_nonreg_file = 1,
743 .file_table = 1,
744 },
Jens Axboed3656342019-12-18 09:50:26 -0700745};
746
Jens Axboe561fb042019-10-24 07:25:42 -0600747static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700748static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800749static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700750static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700751static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
752static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700753static int __io_sqe_files_update(struct io_ring_ctx *ctx,
754 struct io_uring_files_update *ip,
755 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700756static int io_grab_files(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600757
Jens Axboe2b188cc2019-01-07 10:46:33 -0700758static struct kmem_cache *req_cachep;
759
760static const struct file_operations io_uring_fops;
761
762struct sock *io_uring_get_socket(struct file *file)
763{
764#if defined(CONFIG_UNIX)
765 if (file->f_op == &io_uring_fops) {
766 struct io_ring_ctx *ctx = file->private_data;
767
768 return ctx->ring_sock->sk;
769 }
770#endif
771 return NULL;
772}
773EXPORT_SYMBOL(io_uring_get_socket);
774
775static void io_ring_ctx_ref_free(struct percpu_ref *ref)
776{
777 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
778
Jens Axboe206aefd2019-11-07 18:27:42 -0700779 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700780}
781
782static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
783{
784 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700785 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700786
787 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
788 if (!ctx)
789 return NULL;
790
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700791 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
792 if (!ctx->fallback_req)
793 goto err;
794
Jens Axboe206aefd2019-11-07 18:27:42 -0700795 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
796 if (!ctx->completions)
797 goto err;
798
Jens Axboe78076bb2019-12-04 19:56:40 -0700799 /*
800 * Use 5 bits less than the max cq entries, that should give us around
801 * 32 entries per hash list if totally full and uniformly spread.
802 */
803 hash_bits = ilog2(p->cq_entries);
804 hash_bits -= 5;
805 if (hash_bits <= 0)
806 hash_bits = 1;
807 ctx->cancel_hash_bits = hash_bits;
808 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
809 GFP_KERNEL);
810 if (!ctx->cancel_hash)
811 goto err;
812 __hash_init(ctx->cancel_hash, 1U << hash_bits);
813
Roman Gushchin21482892019-05-07 10:01:48 -0700814 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700815 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
816 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700817
818 ctx->flags = p->flags;
819 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700820 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700821 init_completion(&ctx->completions[0]);
822 init_completion(&ctx->completions[1]);
Jens Axboe071698e2020-01-28 10:04:42 -0700823 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700824 mutex_init(&ctx->uring_lock);
825 init_waitqueue_head(&ctx->wait);
826 spin_lock_init(&ctx->completion_lock);
Jens Axboee94f1412019-12-19 12:06:02 -0700827 init_llist_head(&ctx->poll_llist);
Jens Axboedef596e2019-01-09 08:59:42 -0700828 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600829 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600830 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600831 init_waitqueue_head(&ctx->inflight_wait);
832 spin_lock_init(&ctx->inflight_lock);
833 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700834 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700835err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700836 if (ctx->fallback_req)
837 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700838 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700839 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700840 kfree(ctx);
841 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700842}
843
Bob Liu9d858b22019-11-13 18:06:25 +0800844static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600845{
Jackie Liua197f662019-11-08 08:09:12 -0700846 struct io_ring_ctx *ctx = req->ctx;
847
Jens Axboe498ccd92019-10-25 10:04:25 -0600848 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
849 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600850}
851
Bob Liu9d858b22019-11-13 18:06:25 +0800852static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600853{
Pavel Begunkov87987892020-01-18 01:22:30 +0300854 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800855 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600856
Bob Liu9d858b22019-11-13 18:06:25 +0800857 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600858}
859
860static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600861{
862 struct io_kiocb *req;
863
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600864 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800865 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600866 list_del_init(&req->list);
867 return req;
868 }
869
870 return NULL;
871}
872
Jens Axboe5262f562019-09-17 12:26:57 -0600873static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
874{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600875 struct io_kiocb *req;
876
877 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700878 if (req) {
879 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
880 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800881 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700882 list_del_init(&req->list);
883 return req;
884 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600885 }
886
887 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600888}
889
Jens Axboede0617e2019-04-06 21:51:27 -0600890static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700891{
Hristo Venev75b28af2019-08-26 17:23:46 +0000892 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700893
Pavel Begunkov07910152020-01-17 03:52:46 +0300894 /* order cqe stores with ring update */
895 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700896
Pavel Begunkov07910152020-01-17 03:52:46 +0300897 if (wq_has_sleeper(&ctx->cq_wait)) {
898 wake_up_interruptible(&ctx->cq_wait);
899 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700900 }
901}
902
Jens Axboecccf0ee2020-01-27 16:34:48 -0700903static inline void io_req_work_grab_env(struct io_kiocb *req,
904 const struct io_op_def *def)
905{
906 if (!req->work.mm && def->needs_mm) {
907 mmgrab(current->mm);
908 req->work.mm = current->mm;
909 }
910 if (!req->work.creds)
911 req->work.creds = get_current_cred();
912}
913
914static inline void io_req_work_drop_env(struct io_kiocb *req)
915{
916 if (req->work.mm) {
917 mmdrop(req->work.mm);
918 req->work.mm = NULL;
919 }
920 if (req->work.creds) {
921 put_cred(req->work.creds);
922 req->work.creds = NULL;
923 }
924}
925
Jens Axboe94ae5e72019-11-14 19:39:52 -0700926static inline bool io_prep_async_work(struct io_kiocb *req,
927 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600928{
Jens Axboed3656342019-12-18 09:50:26 -0700929 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe561fb042019-10-24 07:25:42 -0600930 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600931
Jens Axboed3656342019-12-18 09:50:26 -0700932 if (req->flags & REQ_F_ISREG) {
933 if (def->hash_reg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700934 do_hashed = true;
Jens Axboed3656342019-12-18 09:50:26 -0700935 } else {
936 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700937 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -0600938 }
Jens Axboecccf0ee2020-01-27 16:34:48 -0700939
940 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -0600941
Jens Axboe94ae5e72019-11-14 19:39:52 -0700942 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600943 return do_hashed;
944}
945
Jackie Liua197f662019-11-08 08:09:12 -0700946static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600947{
Jackie Liua197f662019-11-08 08:09:12 -0700948 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700949 struct io_kiocb *link;
950 bool do_hashed;
951
952 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600953
954 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
955 req->flags);
956 if (!do_hashed) {
957 io_wq_enqueue(ctx->io_wq, &req->work);
958 } else {
959 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
960 file_inode(req->file));
961 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700962
963 if (link)
964 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600965}
966
Jens Axboe5262f562019-09-17 12:26:57 -0600967static void io_kill_timeout(struct io_kiocb *req)
968{
969 int ret;
970
Jens Axboe2d283902019-12-04 11:08:05 -0700971 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600972 if (ret != -1) {
973 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600974 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700975 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800976 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600977 }
978}
979
980static void io_kill_timeouts(struct io_ring_ctx *ctx)
981{
982 struct io_kiocb *req, *tmp;
983
984 spin_lock_irq(&ctx->completion_lock);
985 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
986 io_kill_timeout(req);
987 spin_unlock_irq(&ctx->completion_lock);
988}
989
Jens Axboede0617e2019-04-06 21:51:27 -0600990static void io_commit_cqring(struct io_ring_ctx *ctx)
991{
992 struct io_kiocb *req;
993
Jens Axboe5262f562019-09-17 12:26:57 -0600994 while ((req = io_get_timeout_req(ctx)) != NULL)
995 io_kill_timeout(req);
996
Jens Axboede0617e2019-04-06 21:51:27 -0600997 __io_commit_cqring(ctx);
998
Pavel Begunkov87987892020-01-18 01:22:30 +0300999 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001000 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001001}
1002
Jens Axboe2b188cc2019-01-07 10:46:33 -07001003static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1004{
Hristo Venev75b28af2019-08-26 17:23:46 +00001005 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001006 unsigned tail;
1007
1008 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001009 /*
1010 * writes to the cq entry need to come after reading head; the
1011 * control dependency is enough as we're using WRITE_ONCE to
1012 * fill the cq entry
1013 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001014 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001015 return NULL;
1016
1017 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001018 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001019}
1020
Jens Axboef2842ab2020-01-08 11:04:00 -07001021static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1022{
1023 if (!ctx->eventfd_async)
1024 return true;
1025 return io_wq_current_is_worker() || in_interrupt();
1026}
1027
Jens Axboe8c838782019-03-12 15:48:16 -06001028static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
1029{
1030 if (waitqueue_active(&ctx->wait))
1031 wake_up(&ctx->wait);
1032 if (waitqueue_active(&ctx->sqo_wait))
1033 wake_up(&ctx->sqo_wait);
Jens Axboef2842ab2020-01-08 11:04:00 -07001034 if (ctx->cq_ev_fd && io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001035 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001036}
1037
Jens Axboec4a2ed72019-11-21 21:01:26 -07001038/* Returns true if there are no backlogged entries after the flush */
1039static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001040{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001041 struct io_rings *rings = ctx->rings;
1042 struct io_uring_cqe *cqe;
1043 struct io_kiocb *req;
1044 unsigned long flags;
1045 LIST_HEAD(list);
1046
1047 if (!force) {
1048 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001049 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001050 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1051 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001052 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001053 }
1054
1055 spin_lock_irqsave(&ctx->completion_lock, flags);
1056
1057 /* if force is set, the ring is going away. always drop after that */
1058 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001059 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001060
Jens Axboec4a2ed72019-11-21 21:01:26 -07001061 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001062 while (!list_empty(&ctx->cq_overflow_list)) {
1063 cqe = io_get_cqring(ctx);
1064 if (!cqe && !force)
1065 break;
1066
1067 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1068 list);
1069 list_move(&req->list, &list);
1070 if (cqe) {
1071 WRITE_ONCE(cqe->user_data, req->user_data);
1072 WRITE_ONCE(cqe->res, req->result);
1073 WRITE_ONCE(cqe->flags, 0);
1074 } else {
1075 WRITE_ONCE(ctx->rings->cq_overflow,
1076 atomic_inc_return(&ctx->cached_cq_overflow));
1077 }
1078 }
1079
1080 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001081 if (cqe) {
1082 clear_bit(0, &ctx->sq_check_overflow);
1083 clear_bit(0, &ctx->cq_check_overflow);
1084 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001085 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1086 io_cqring_ev_posted(ctx);
1087
1088 while (!list_empty(&list)) {
1089 req = list_first_entry(&list, struct io_kiocb, list);
1090 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001091 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001092 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001093
1094 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001095}
1096
Jens Axboe78e19bb2019-11-06 15:21:34 -07001097static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001098{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001099 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001100 struct io_uring_cqe *cqe;
1101
Jens Axboe78e19bb2019-11-06 15:21:34 -07001102 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001103
Jens Axboe2b188cc2019-01-07 10:46:33 -07001104 /*
1105 * If we can't get a cq entry, userspace overflowed the
1106 * submission (by quite a lot). Increment the overflow count in
1107 * the ring.
1108 */
1109 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001110 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001111 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001112 WRITE_ONCE(cqe->res, res);
1113 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001114 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001115 WRITE_ONCE(ctx->rings->cq_overflow,
1116 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001117 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001118 if (list_empty(&ctx->cq_overflow_list)) {
1119 set_bit(0, &ctx->sq_check_overflow);
1120 set_bit(0, &ctx->cq_check_overflow);
1121 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001122 refcount_inc(&req->refs);
1123 req->result = res;
1124 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001125 }
1126}
1127
Jens Axboe78e19bb2019-11-06 15:21:34 -07001128static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001129{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001130 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001131 unsigned long flags;
1132
1133 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001134 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001135 io_commit_cqring(ctx);
1136 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1137
Jens Axboe8c838782019-03-12 15:48:16 -06001138 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001139}
1140
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001141static inline bool io_is_fallback_req(struct io_kiocb *req)
1142{
1143 return req == (struct io_kiocb *)
1144 ((unsigned long) req->ctx->fallback_req & ~1UL);
1145}
1146
1147static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1148{
1149 struct io_kiocb *req;
1150
1151 req = ctx->fallback_req;
1152 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1153 return req;
1154
1155 return NULL;
1156}
1157
Jens Axboe2579f912019-01-09 09:10:43 -07001158static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1159 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001160{
Jens Axboefd6fab22019-03-14 16:30:06 -06001161 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001162 struct io_kiocb *req;
1163
Jens Axboe2579f912019-01-09 09:10:43 -07001164 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001165 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001166 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001167 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001168 } else if (!state->free_reqs) {
1169 size_t sz;
1170 int ret;
1171
1172 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001173 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1174
1175 /*
1176 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1177 * retry single alloc to be on the safe side.
1178 */
1179 if (unlikely(ret <= 0)) {
1180 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1181 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001182 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001183 ret = 1;
1184 }
Jens Axboe2579f912019-01-09 09:10:43 -07001185 state->free_reqs = ret - 1;
1186 state->cur_req = 1;
1187 req = state->reqs[0];
1188 } else {
1189 req = state->reqs[state->cur_req];
1190 state->free_reqs--;
1191 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001192 }
1193
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001194got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001195 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001196 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001197 req->ctx = ctx;
1198 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001199 /* one is dropped after submission, the other at completion */
1200 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001201 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001202 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001203 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001204fallback:
1205 req = io_get_fallback_req(ctx);
1206 if (req)
1207 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001208 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001209 return NULL;
1210}
1211
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001212static void __io_req_do_free(struct io_kiocb *req)
1213{
1214 if (likely(!io_is_fallback_req(req)))
1215 kmem_cache_free(req_cachep, req);
1216 else
1217 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1218}
1219
Jens Axboec6ca97b302019-12-28 12:11:08 -07001220static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001221{
Jens Axboefcb323c2019-10-24 12:39:47 -06001222 struct io_ring_ctx *ctx = req->ctx;
1223
YueHaibing96fd84d2020-01-07 22:22:44 +08001224 kfree(req->io);
Jens Axboe05f3fb32019-12-09 11:22:50 -07001225 if (req->file) {
1226 if (req->flags & REQ_F_FIXED_FILE)
1227 percpu_ref_put(&ctx->file_data->refs);
1228 else
1229 fput(req->file);
1230 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001231
1232 io_req_work_drop_env(req);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001233}
1234
1235static void __io_free_req(struct io_kiocb *req)
1236{
1237 __io_req_aux_free(req);
1238
Jens Axboefcb323c2019-10-24 12:39:47 -06001239 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001240 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001241 unsigned long flags;
1242
1243 spin_lock_irqsave(&ctx->inflight_lock, flags);
1244 list_del(&req->inflight_entry);
1245 if (waitqueue_active(&ctx->inflight_wait))
1246 wake_up(&ctx->inflight_wait);
1247 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1248 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001249
1250 percpu_ref_put(&req->ctx->refs);
1251 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001252}
1253
Jens Axboec6ca97b302019-12-28 12:11:08 -07001254struct req_batch {
1255 void *reqs[IO_IOPOLL_BATCH];
1256 int to_free;
1257 int need_iter;
1258};
1259
1260static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1261{
Jens Axboe10fef4b2020-01-09 07:52:28 -07001262 int fixed_refs = rb->to_free;
1263
Jens Axboec6ca97b302019-12-28 12:11:08 -07001264 if (!rb->to_free)
1265 return;
1266 if (rb->need_iter) {
1267 int i, inflight = 0;
1268 unsigned long flags;
1269
Jens Axboe10fef4b2020-01-09 07:52:28 -07001270 fixed_refs = 0;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001271 for (i = 0; i < rb->to_free; i++) {
1272 struct io_kiocb *req = rb->reqs[i];
1273
Jens Axboe10fef4b2020-01-09 07:52:28 -07001274 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001275 req->file = NULL;
Jens Axboe10fef4b2020-01-09 07:52:28 -07001276 fixed_refs++;
1277 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001278 if (req->flags & REQ_F_INFLIGHT)
1279 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001280 __io_req_aux_free(req);
1281 }
1282 if (!inflight)
1283 goto do_free;
1284
1285 spin_lock_irqsave(&ctx->inflight_lock, flags);
1286 for (i = 0; i < rb->to_free; i++) {
1287 struct io_kiocb *req = rb->reqs[i];
1288
Jens Axboe10fef4b2020-01-09 07:52:28 -07001289 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001290 list_del(&req->inflight_entry);
1291 if (!--inflight)
1292 break;
1293 }
1294 }
1295 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1296
1297 if (waitqueue_active(&ctx->inflight_wait))
1298 wake_up(&ctx->inflight_wait);
1299 }
1300do_free:
1301 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001302 if (fixed_refs)
1303 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001304 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001305 rb->to_free = rb->need_iter = 0;
1306}
1307
Jackie Liua197f662019-11-08 08:09:12 -07001308static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001309{
Jackie Liua197f662019-11-08 08:09:12 -07001310 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001311 int ret;
1312
Jens Axboe2d283902019-12-04 11:08:05 -07001313 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001314 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001315 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001316 io_commit_cqring(ctx);
1317 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001318 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001319 return true;
1320 }
1321
1322 return false;
1323}
1324
Jens Axboeba816ad2019-09-28 11:36:45 -06001325static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001326{
Jens Axboe2665abf2019-11-05 12:40:47 -07001327 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001328 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001329
Jens Axboe4d7dd462019-11-20 13:03:52 -07001330 /* Already got next link */
1331 if (req->flags & REQ_F_LINK_NEXT)
1332 return;
1333
Jens Axboe9e645e112019-05-10 16:07:28 -06001334 /*
1335 * The list should never be empty when we are called here. But could
1336 * potentially happen if the chain is messed up, check to be on the
1337 * safe side.
1338 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001339 while (!list_empty(&req->link_list)) {
1340 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1341 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001342
Pavel Begunkov44932332019-12-05 16:16:35 +03001343 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1344 (nxt->flags & REQ_F_TIMEOUT))) {
1345 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001346 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001347 req->flags &= ~REQ_F_LINK_TIMEOUT;
1348 continue;
1349 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001350
Pavel Begunkov44932332019-12-05 16:16:35 +03001351 list_del_init(&req->link_list);
1352 if (!list_empty(&nxt->link_list))
1353 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001354 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001355 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001356 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001357
Jens Axboe4d7dd462019-11-20 13:03:52 -07001358 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001359 if (wake_ev)
1360 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001361}
1362
1363/*
1364 * Called if REQ_F_LINK is set, and we fail the head request
1365 */
1366static void io_fail_links(struct io_kiocb *req)
1367{
Jens Axboe2665abf2019-11-05 12:40:47 -07001368 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001369 unsigned long flags;
1370
1371 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001372
1373 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001374 struct io_kiocb *link = list_first_entry(&req->link_list,
1375 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001376
Pavel Begunkov44932332019-12-05 16:16:35 +03001377 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001378 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001379
1380 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001381 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001382 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001383 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001384 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001385 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001386 }
Jens Axboe5d960722019-11-19 15:31:28 -07001387 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001388 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001389
1390 io_commit_cqring(ctx);
1391 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1392 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001393}
1394
Jens Axboe4d7dd462019-11-20 13:03:52 -07001395static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001396{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001397 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001398 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001399
Jens Axboe9e645e112019-05-10 16:07:28 -06001400 /*
1401 * If LINK is set, we have dependent requests in this chain. If we
1402 * didn't fail this request, queue the first one up, moving any other
1403 * dependencies to the next request. In case of failure, fail the rest
1404 * of the chain.
1405 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001406 if (req->flags & REQ_F_FAIL_LINK) {
1407 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001408 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1409 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001410 struct io_ring_ctx *ctx = req->ctx;
1411 unsigned long flags;
1412
1413 /*
1414 * If this is a timeout link, we could be racing with the
1415 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001416 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001417 */
1418 spin_lock_irqsave(&ctx->completion_lock, flags);
1419 io_req_link_next(req, nxt);
1420 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1421 } else {
1422 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001423 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001424}
Jens Axboe9e645e112019-05-10 16:07:28 -06001425
Jackie Liuc69f8db2019-11-09 11:00:08 +08001426static void io_free_req(struct io_kiocb *req)
1427{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001428 struct io_kiocb *nxt = NULL;
1429
1430 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001431 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001432
1433 if (nxt)
1434 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001435}
1436
Jens Axboeba816ad2019-09-28 11:36:45 -06001437/*
1438 * Drop reference to request, return next in chain (if there is one) if this
1439 * was the last reference to this request.
1440 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001441__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001442static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001443{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001444 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001445
Jens Axboee65ef562019-03-12 10:16:44 -06001446 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001447 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001448}
1449
Jens Axboe2b188cc2019-01-07 10:46:33 -07001450static void io_put_req(struct io_kiocb *req)
1451{
Jens Axboedef596e2019-01-09 08:59:42 -07001452 if (refcount_dec_and_test(&req->refs))
1453 io_free_req(req);
1454}
1455
Jens Axboe978db572019-11-14 22:39:04 -07001456/*
1457 * Must only be used if we don't need to care about links, usually from
1458 * within the completion handling itself.
1459 */
1460static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001461{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001462 /* drop both submit and complete references */
1463 if (refcount_sub_and_test(2, &req->refs))
1464 __io_free_req(req);
1465}
1466
Jens Axboe978db572019-11-14 22:39:04 -07001467static void io_double_put_req(struct io_kiocb *req)
1468{
1469 /* drop both submit and complete references */
1470 if (refcount_sub_and_test(2, &req->refs))
1471 io_free_req(req);
1472}
1473
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001474static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001475{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001476 struct io_rings *rings = ctx->rings;
1477
Jens Axboead3eb2c2019-12-18 17:12:20 -07001478 if (test_bit(0, &ctx->cq_check_overflow)) {
1479 /*
1480 * noflush == true is from the waitqueue handler, just ensure
1481 * we wake up the task, and the next invocation will flush the
1482 * entries. We cannot safely to it from here.
1483 */
1484 if (noflush && !list_empty(&ctx->cq_overflow_list))
1485 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001486
Jens Axboead3eb2c2019-12-18 17:12:20 -07001487 io_cqring_overflow_flush(ctx, false);
1488 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001489
Jens Axboea3a0e432019-08-20 11:03:11 -06001490 /* See comment at the top of this file */
1491 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001492 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001493}
1494
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001495static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1496{
1497 struct io_rings *rings = ctx->rings;
1498
1499 /* make sure SQ entry isn't read before tail */
1500 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1501}
1502
Jens Axboe8237e042019-12-28 10:48:22 -07001503static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001504{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001505 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1506 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001507
Jens Axboec6ca97b302019-12-28 12:11:08 -07001508 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1509 rb->need_iter++;
1510
1511 rb->reqs[rb->to_free++] = req;
1512 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1513 io_free_req_many(req->ctx, rb);
1514 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001515}
1516
Jens Axboedef596e2019-01-09 08:59:42 -07001517/*
1518 * Find and free completed poll iocbs
1519 */
1520static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1521 struct list_head *done)
1522{
Jens Axboe8237e042019-12-28 10:48:22 -07001523 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001524 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001525
Jens Axboec6ca97b302019-12-28 12:11:08 -07001526 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001527 while (!list_empty(done)) {
1528 req = list_first_entry(done, struct io_kiocb, list);
1529 list_del(&req->list);
1530
Jens Axboe78e19bb2019-11-06 15:21:34 -07001531 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001532 (*nr_events)++;
1533
Jens Axboe8237e042019-12-28 10:48:22 -07001534 if (refcount_dec_and_test(&req->refs) &&
1535 !io_req_multi_free(&rb, req))
1536 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001537 }
Jens Axboedef596e2019-01-09 08:59:42 -07001538
Jens Axboe09bb8392019-03-13 12:39:28 -06001539 io_commit_cqring(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001540 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001541}
1542
1543static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1544 long min)
1545{
1546 struct io_kiocb *req, *tmp;
1547 LIST_HEAD(done);
1548 bool spin;
1549 int ret;
1550
1551 /*
1552 * Only spin for completions if we don't have multiple devices hanging
1553 * off our complete list, and we're under the requested amount.
1554 */
1555 spin = !ctx->poll_multi_file && *nr_events < min;
1556
1557 ret = 0;
1558 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001559 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001560
1561 /*
1562 * Move completed entries to our local list. If we find a
1563 * request that requires polling, break out and complete
1564 * the done list first, if we have entries there.
1565 */
1566 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1567 list_move_tail(&req->list, &done);
1568 continue;
1569 }
1570 if (!list_empty(&done))
1571 break;
1572
1573 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1574 if (ret < 0)
1575 break;
1576
1577 if (ret && spin)
1578 spin = false;
1579 ret = 0;
1580 }
1581
1582 if (!list_empty(&done))
1583 io_iopoll_complete(ctx, nr_events, &done);
1584
1585 return ret;
1586}
1587
1588/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001589 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001590 * non-spinning poll check - we'll still enter the driver poll loop, but only
1591 * as a non-spinning completion check.
1592 */
1593static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1594 long min)
1595{
Jens Axboe08f54392019-08-21 22:19:11 -06001596 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001597 int ret;
1598
1599 ret = io_do_iopoll(ctx, nr_events, min);
1600 if (ret < 0)
1601 return ret;
1602 if (!min || *nr_events >= min)
1603 return 0;
1604 }
1605
1606 return 1;
1607}
1608
1609/*
1610 * We can't just wait for polled events to come to us, we have to actively
1611 * find and complete them.
1612 */
1613static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1614{
1615 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1616 return;
1617
1618 mutex_lock(&ctx->uring_lock);
1619 while (!list_empty(&ctx->poll_list)) {
1620 unsigned int nr_events = 0;
1621
1622 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001623
1624 /*
1625 * Ensure we allow local-to-the-cpu processing to take place,
1626 * in this case we need to ensure that we reap all events.
1627 */
1628 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001629 }
1630 mutex_unlock(&ctx->uring_lock);
1631}
1632
Jens Axboe2b2ed972019-10-25 10:06:15 -06001633static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1634 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001635{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001636 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001637
1638 do {
1639 int tmin = 0;
1640
Jens Axboe500f9fb2019-08-19 12:15:59 -06001641 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001642 * Don't enter poll loop if we already have events pending.
1643 * If we do, we can potentially be spinning for commands that
1644 * already triggered a CQE (eg in error).
1645 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001646 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001647 break;
1648
1649 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001650 * If a submit got punted to a workqueue, we can have the
1651 * application entering polling for a command before it gets
1652 * issued. That app will hold the uring_lock for the duration
1653 * of the poll right here, so we need to take a breather every
1654 * now and then to ensure that the issue has a chance to add
1655 * the poll to the issued list. Otherwise we can spin here
1656 * forever, while the workqueue is stuck trying to acquire the
1657 * very same mutex.
1658 */
1659 if (!(++iters & 7)) {
1660 mutex_unlock(&ctx->uring_lock);
1661 mutex_lock(&ctx->uring_lock);
1662 }
1663
Jens Axboedef596e2019-01-09 08:59:42 -07001664 if (*nr_events < min)
1665 tmin = min - *nr_events;
1666
1667 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1668 if (ret <= 0)
1669 break;
1670 ret = 0;
1671 } while (min && !*nr_events && !need_resched());
1672
Jens Axboe2b2ed972019-10-25 10:06:15 -06001673 return ret;
1674}
1675
1676static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1677 long min)
1678{
1679 int ret;
1680
1681 /*
1682 * We disallow the app entering submit/complete with polling, but we
1683 * still need to lock the ring to prevent racing with polled issue
1684 * that got punted to a workqueue.
1685 */
1686 mutex_lock(&ctx->uring_lock);
1687 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001688 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001689 return ret;
1690}
1691
Jens Axboe491381ce2019-10-17 09:20:46 -06001692static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001693{
Jens Axboe491381ce2019-10-17 09:20:46 -06001694 /*
1695 * Tell lockdep we inherited freeze protection from submission
1696 * thread.
1697 */
1698 if (req->flags & REQ_F_ISREG) {
1699 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001700
Jens Axboe491381ce2019-10-17 09:20:46 -06001701 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001702 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001703 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001704}
1705
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001706static inline void req_set_fail_links(struct io_kiocb *req)
1707{
1708 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1709 req->flags |= REQ_F_FAIL_LINK;
1710}
1711
Jens Axboeba816ad2019-09-28 11:36:45 -06001712static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001713{
Jens Axboe9adbd452019-12-20 08:45:55 -07001714 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001715
Jens Axboe491381ce2019-10-17 09:20:46 -06001716 if (kiocb->ki_flags & IOCB_WRITE)
1717 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001718
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001719 if (res != req->result)
1720 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001721 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001722}
1723
1724static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1725{
Jens Axboe9adbd452019-12-20 08:45:55 -07001726 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001727
1728 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001729 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001730}
1731
Jens Axboeba816ad2019-09-28 11:36:45 -06001732static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1733{
Jens Axboe9adbd452019-12-20 08:45:55 -07001734 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001735 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001736
1737 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001738 io_put_req_find_next(req, &nxt);
1739
1740 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001741}
1742
Jens Axboedef596e2019-01-09 08:59:42 -07001743static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1744{
Jens Axboe9adbd452019-12-20 08:45:55 -07001745 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001746
Jens Axboe491381ce2019-10-17 09:20:46 -06001747 if (kiocb->ki_flags & IOCB_WRITE)
1748 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001749
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001750 if (res != req->result)
1751 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001752 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001753 if (res != -EAGAIN)
1754 req->flags |= REQ_F_IOPOLL_COMPLETED;
1755}
1756
1757/*
1758 * After the iocb has been issued, it's safe to be found on the poll list.
1759 * Adding the kiocb to the list AFTER submission ensures that we don't
1760 * find it from a io_iopoll_getevents() thread before the issuer is done
1761 * accessing the kiocb cookie.
1762 */
1763static void io_iopoll_req_issued(struct io_kiocb *req)
1764{
1765 struct io_ring_ctx *ctx = req->ctx;
1766
1767 /*
1768 * Track whether we have multiple files in our lists. This will impact
1769 * how we do polling eventually, not spinning if we're on potentially
1770 * different devices.
1771 */
1772 if (list_empty(&ctx->poll_list)) {
1773 ctx->poll_multi_file = false;
1774 } else if (!ctx->poll_multi_file) {
1775 struct io_kiocb *list_req;
1776
1777 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1778 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001779 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001780 ctx->poll_multi_file = true;
1781 }
1782
1783 /*
1784 * For fast devices, IO may have already completed. If it has, add
1785 * it to the front so we find it first.
1786 */
1787 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1788 list_add(&req->list, &ctx->poll_list);
1789 else
1790 list_add_tail(&req->list, &ctx->poll_list);
1791}
1792
Jens Axboe3d6770f2019-04-13 11:50:54 -06001793static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001794{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001795 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001796 int diff = state->has_refs - state->used_refs;
1797
1798 if (diff)
1799 fput_many(state->file, diff);
1800 state->file = NULL;
1801 }
1802}
1803
1804/*
1805 * Get as many references to a file as we have IOs left in this submission,
1806 * assuming most submissions are for one file, or at least that each file
1807 * has more than one submission.
1808 */
1809static struct file *io_file_get(struct io_submit_state *state, int fd)
1810{
1811 if (!state)
1812 return fget(fd);
1813
1814 if (state->file) {
1815 if (state->fd == fd) {
1816 state->used_refs++;
1817 state->ios_left--;
1818 return state->file;
1819 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001820 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001821 }
1822 state->file = fget_many(fd, state->ios_left);
1823 if (!state->file)
1824 return NULL;
1825
1826 state->fd = fd;
1827 state->has_refs = state->ios_left;
1828 state->used_refs = 1;
1829 state->ios_left--;
1830 return state->file;
1831}
1832
Jens Axboe2b188cc2019-01-07 10:46:33 -07001833/*
1834 * If we tracked the file through the SCM inflight mechanism, we could support
1835 * any file. For now, just ensure that anything potentially problematic is done
1836 * inline.
1837 */
1838static bool io_file_supports_async(struct file *file)
1839{
1840 umode_t mode = file_inode(file)->i_mode;
1841
Jens Axboe10d59342019-12-09 20:16:22 -07001842 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001843 return true;
1844 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1845 return true;
1846
1847 return false;
1848}
1849
Jens Axboe3529d8c2019-12-19 18:24:38 -07001850static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1851 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001852{
Jens Axboedef596e2019-01-09 08:59:42 -07001853 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001854 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001855 unsigned ioprio;
1856 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001857
Jens Axboe09bb8392019-03-13 12:39:28 -06001858 if (!req->file)
1859 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001860
Jens Axboe491381ce2019-10-17 09:20:46 -06001861 if (S_ISREG(file_inode(req->file)->i_mode))
1862 req->flags |= REQ_F_ISREG;
1863
Jens Axboe2b188cc2019-01-07 10:46:33 -07001864 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07001865 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
1866 req->flags |= REQ_F_CUR_POS;
1867 kiocb->ki_pos = req->file->f_pos;
1868 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001869 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1870 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1871
1872 ioprio = READ_ONCE(sqe->ioprio);
1873 if (ioprio) {
1874 ret = ioprio_check_cap(ioprio);
1875 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001876 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001877
1878 kiocb->ki_ioprio = ioprio;
1879 } else
1880 kiocb->ki_ioprio = get_current_ioprio();
1881
1882 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1883 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001884 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001885
1886 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001887 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1888 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001889 req->flags |= REQ_F_NOWAIT;
1890
1891 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001892 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001893
Jens Axboedef596e2019-01-09 08:59:42 -07001894 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001895 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1896 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001897 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001898
Jens Axboedef596e2019-01-09 08:59:42 -07001899 kiocb->ki_flags |= IOCB_HIPRI;
1900 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001901 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001902 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001903 if (kiocb->ki_flags & IOCB_HIPRI)
1904 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001905 kiocb->ki_complete = io_complete_rw;
1906 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001907
Jens Axboe3529d8c2019-12-19 18:24:38 -07001908 req->rw.addr = READ_ONCE(sqe->addr);
1909 req->rw.len = READ_ONCE(sqe->len);
Jens Axboe9adbd452019-12-20 08:45:55 -07001910 /* we own ->private, reuse it for the buffer index */
1911 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001912 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001913 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001914}
1915
1916static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1917{
1918 switch (ret) {
1919 case -EIOCBQUEUED:
1920 break;
1921 case -ERESTARTSYS:
1922 case -ERESTARTNOINTR:
1923 case -ERESTARTNOHAND:
1924 case -ERESTART_RESTARTBLOCK:
1925 /*
1926 * We can't just restart the syscall, since previously
1927 * submitted sqes may already be in progress. Just fail this
1928 * IO with EINTR.
1929 */
1930 ret = -EINTR;
1931 /* fall through */
1932 default:
1933 kiocb->ki_complete(kiocb, ret, 0);
1934 }
1935}
1936
Jens Axboeba816ad2019-09-28 11:36:45 -06001937static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1938 bool in_async)
1939{
Jens Axboeba042912019-12-25 16:33:42 -07001940 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
1941
1942 if (req->flags & REQ_F_CUR_POS)
1943 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001944 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001945 *nxt = __io_complete_rw(kiocb, ret);
1946 else
1947 io_rw_done(kiocb, ret);
1948}
1949
Jens Axboe9adbd452019-12-20 08:45:55 -07001950static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03001951 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001952{
Jens Axboe9adbd452019-12-20 08:45:55 -07001953 struct io_ring_ctx *ctx = req->ctx;
1954 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001955 struct io_mapped_ubuf *imu;
1956 unsigned index, buf_index;
1957 size_t offset;
1958 u64 buf_addr;
1959
1960 /* attempt to use fixed buffers without having provided iovecs */
1961 if (unlikely(!ctx->user_bufs))
1962 return -EFAULT;
1963
Jens Axboe9adbd452019-12-20 08:45:55 -07001964 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07001965 if (unlikely(buf_index >= ctx->nr_user_bufs))
1966 return -EFAULT;
1967
1968 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1969 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07001970 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07001971
1972 /* overflow */
1973 if (buf_addr + len < buf_addr)
1974 return -EFAULT;
1975 /* not inside the mapped region */
1976 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1977 return -EFAULT;
1978
1979 /*
1980 * May not be a start of buffer, set size appropriately
1981 * and advance us to the beginning.
1982 */
1983 offset = buf_addr - imu->ubuf;
1984 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001985
1986 if (offset) {
1987 /*
1988 * Don't use iov_iter_advance() here, as it's really slow for
1989 * using the latter parts of a big fixed buffer - it iterates
1990 * over each segment manually. We can cheat a bit here, because
1991 * we know that:
1992 *
1993 * 1) it's a BVEC iter, we set it up
1994 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1995 * first and last bvec
1996 *
1997 * So just find our index, and adjust the iterator afterwards.
1998 * If the offset is within the first bvec (or the whole first
1999 * bvec, just use iov_iter_advance(). This makes it easier
2000 * since we can just skip the first segment, which may not
2001 * be PAGE_SIZE aligned.
2002 */
2003 const struct bio_vec *bvec = imu->bvec;
2004
2005 if (offset <= bvec->bv_len) {
2006 iov_iter_advance(iter, offset);
2007 } else {
2008 unsigned long seg_skip;
2009
2010 /* skip first vec */
2011 offset -= bvec->bv_len;
2012 seg_skip = 1 + (offset >> PAGE_SHIFT);
2013
2014 iter->bvec = bvec + seg_skip;
2015 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002016 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002017 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002018 }
2019 }
2020
Jens Axboe5e559562019-11-13 16:12:46 -07002021 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002022}
2023
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002024static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
2025 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002026{
Jens Axboe9adbd452019-12-20 08:45:55 -07002027 void __user *buf = u64_to_user_ptr(req->rw.addr);
2028 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002029 u8 opcode;
2030
Jens Axboed625c6e2019-12-17 19:53:05 -07002031 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002032 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002033 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002034 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002035 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002036
Jens Axboe9adbd452019-12-20 08:45:55 -07002037 /* buffer index only valid with fixed read/write */
2038 if (req->rw.kiocb.private)
2039 return -EINVAL;
2040
Jens Axboe3a6820f2019-12-22 15:19:35 -07002041 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
2042 ssize_t ret;
2043 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2044 *iovec = NULL;
2045 return ret;
2046 }
2047
Jens Axboef67676d2019-12-02 11:03:47 -07002048 if (req->io) {
2049 struct io_async_rw *iorw = &req->io->rw;
2050
2051 *iovec = iorw->iov;
2052 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2053 if (iorw->iov == iorw->fast_iov)
2054 *iovec = NULL;
2055 return iorw->size;
2056 }
2057
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002058 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002059 return -EFAULT;
2060
2061#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002062 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002063 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2064 iovec, iter);
2065#endif
2066
2067 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2068}
2069
Jens Axboe32960612019-09-23 11:05:34 -06002070/*
2071 * For files that don't have ->read_iter() and ->write_iter(), handle them
2072 * by looping over ->read() or ->write() manually.
2073 */
2074static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2075 struct iov_iter *iter)
2076{
2077 ssize_t ret = 0;
2078
2079 /*
2080 * Don't support polled IO through this interface, and we can't
2081 * support non-blocking either. For the latter, this just causes
2082 * the kiocb to be handled from an async context.
2083 */
2084 if (kiocb->ki_flags & IOCB_HIPRI)
2085 return -EOPNOTSUPP;
2086 if (kiocb->ki_flags & IOCB_NOWAIT)
2087 return -EAGAIN;
2088
2089 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002090 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002091 ssize_t nr;
2092
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002093 if (!iov_iter_is_bvec(iter)) {
2094 iovec = iov_iter_iovec(iter);
2095 } else {
2096 /* fixed buffers import bvec */
2097 iovec.iov_base = kmap(iter->bvec->bv_page)
2098 + iter->iov_offset;
2099 iovec.iov_len = min(iter->count,
2100 iter->bvec->bv_len - iter->iov_offset);
2101 }
2102
Jens Axboe32960612019-09-23 11:05:34 -06002103 if (rw == READ) {
2104 nr = file->f_op->read(file, iovec.iov_base,
2105 iovec.iov_len, &kiocb->ki_pos);
2106 } else {
2107 nr = file->f_op->write(file, iovec.iov_base,
2108 iovec.iov_len, &kiocb->ki_pos);
2109 }
2110
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002111 if (iov_iter_is_bvec(iter))
2112 kunmap(iter->bvec->bv_page);
2113
Jens Axboe32960612019-09-23 11:05:34 -06002114 if (nr < 0) {
2115 if (!ret)
2116 ret = nr;
2117 break;
2118 }
2119 ret += nr;
2120 if (nr != iovec.iov_len)
2121 break;
2122 iov_iter_advance(iter, nr);
2123 }
2124
2125 return ret;
2126}
2127
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002128static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002129 struct iovec *iovec, struct iovec *fast_iov,
2130 struct iov_iter *iter)
2131{
2132 req->io->rw.nr_segs = iter->nr_segs;
2133 req->io->rw.size = io_size;
2134 req->io->rw.iov = iovec;
2135 if (!req->io->rw.iov) {
2136 req->io->rw.iov = req->io->rw.fast_iov;
2137 memcpy(req->io->rw.iov, fast_iov,
2138 sizeof(struct iovec) * iter->nr_segs);
2139 }
2140}
2141
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002142static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002143{
Jens Axboed3656342019-12-18 09:50:26 -07002144 if (!io_op_defs[req->opcode].async_ctx)
2145 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002146 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002147 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002148}
2149
2150static void io_rw_async(struct io_wq_work **workptr)
2151{
2152 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2153 struct iovec *iov = NULL;
2154
2155 if (req->io->rw.iov != req->io->rw.fast_iov)
2156 iov = req->io->rw.iov;
2157 io_wq_submit_work(workptr);
2158 kfree(iov);
2159}
2160
2161static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2162 struct iovec *iovec, struct iovec *fast_iov,
2163 struct iov_iter *iter)
2164{
Jens Axboe980ad262020-01-24 23:08:54 -07002165 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002166 return 0;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002167 if (!req->io && io_alloc_async_ctx(req))
2168 return -ENOMEM;
2169
2170 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2171 req->work.func = io_rw_async;
2172 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002173}
2174
Jens Axboe3529d8c2019-12-19 18:24:38 -07002175static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2176 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002177{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002178 struct io_async_ctx *io;
2179 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002180 ssize_t ret;
2181
Jens Axboe3529d8c2019-12-19 18:24:38 -07002182 ret = io_prep_rw(req, sqe, force_nonblock);
2183 if (ret)
2184 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002185
Jens Axboe3529d8c2019-12-19 18:24:38 -07002186 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2187 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002188
Jens Axboe3529d8c2019-12-19 18:24:38 -07002189 if (!req->io)
2190 return 0;
2191
2192 io = req->io;
2193 io->rw.iov = io->rw.fast_iov;
2194 req->io = NULL;
2195 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
2196 req->io = io;
2197 if (ret < 0)
2198 return ret;
2199
2200 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2201 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002202}
2203
Pavel Begunkov267bc902019-11-07 01:41:08 +03002204static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002205 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002206{
2207 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002208 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002209 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002210 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002211 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002212
Jens Axboe3529d8c2019-12-19 18:24:38 -07002213 ret = io_import_iovec(READ, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002214 if (ret < 0)
2215 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002216
Jens Axboefd6c2e42019-12-18 12:19:41 -07002217 /* Ensure we clear previously set non-block flag */
2218 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002219 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002220
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002221 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002222 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002223 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002224 req->result = io_size;
2225
2226 /*
2227 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2228 * we know to async punt it even if it was opened O_NONBLOCK
2229 */
Jens Axboe9adbd452019-12-20 08:45:55 -07002230 if (force_nonblock && !io_file_supports_async(req->file)) {
Jens Axboef67676d2019-12-02 11:03:47 -07002231 req->flags |= REQ_F_MUST_PUNT;
2232 goto copy_iov;
2233 }
Jens Axboe9e645e112019-05-10 16:07:28 -06002234
Jens Axboe31b51512019-01-18 22:56:34 -07002235 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002236 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002237 if (!ret) {
2238 ssize_t ret2;
2239
Jens Axboe9adbd452019-12-20 08:45:55 -07002240 if (req->file->f_op->read_iter)
2241 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002242 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002243 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002244
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002245 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002246 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002247 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002248 } else {
2249copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002250 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002251 inline_vecs, &iter);
2252 if (ret)
2253 goto out_free;
2254 return -EAGAIN;
2255 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002256 }
Jens Axboef67676d2019-12-02 11:03:47 -07002257out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002258 if (!io_wq_current_is_worker())
2259 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002260 return ret;
2261}
2262
Jens Axboe3529d8c2019-12-19 18:24:38 -07002263static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2264 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002265{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002266 struct io_async_ctx *io;
2267 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002268 ssize_t ret;
2269
Jens Axboe3529d8c2019-12-19 18:24:38 -07002270 ret = io_prep_rw(req, sqe, force_nonblock);
2271 if (ret)
2272 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002273
Jens Axboe3529d8c2019-12-19 18:24:38 -07002274 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2275 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002276
Jens Axboe3529d8c2019-12-19 18:24:38 -07002277 if (!req->io)
2278 return 0;
2279
2280 io = req->io;
2281 io->rw.iov = io->rw.fast_iov;
2282 req->io = NULL;
2283 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
2284 req->io = io;
2285 if (ret < 0)
2286 return ret;
2287
2288 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2289 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002290}
2291
Pavel Begunkov267bc902019-11-07 01:41:08 +03002292static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002293 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002294{
2295 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002296 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002297 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002298 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002299 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002300
Jens Axboe3529d8c2019-12-19 18:24:38 -07002301 ret = io_import_iovec(WRITE, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002302 if (ret < 0)
2303 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002304
Jens Axboefd6c2e42019-12-18 12:19:41 -07002305 /* Ensure we clear previously set non-block flag */
2306 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002307 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002308
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002309 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002310 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002311 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002312 req->result = io_size;
2313
2314 /*
2315 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2316 * we know to async punt it even if it was opened O_NONBLOCK
2317 */
2318 if (force_nonblock && !io_file_supports_async(req->file)) {
2319 req->flags |= REQ_F_MUST_PUNT;
2320 goto copy_iov;
2321 }
2322
Jens Axboe10d59342019-12-09 20:16:22 -07002323 /* file path doesn't support NOWAIT for non-direct_IO */
2324 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2325 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002326 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002327
Jens Axboe31b51512019-01-18 22:56:34 -07002328 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002329 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002330 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002331 ssize_t ret2;
2332
Jens Axboe2b188cc2019-01-07 10:46:33 -07002333 /*
2334 * Open-code file_start_write here to grab freeze protection,
2335 * which will be released by another thread in
2336 * io_complete_rw(). Fool lockdep by telling it the lock got
2337 * released so that it doesn't complain about the held lock when
2338 * we return to userspace.
2339 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002340 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002341 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002342 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002343 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002344 SB_FREEZE_WRITE);
2345 }
2346 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002347
Jens Axboe9adbd452019-12-20 08:45:55 -07002348 if (req->file->f_op->write_iter)
2349 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002350 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002351 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07002352 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002353 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002354 } else {
2355copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002356 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002357 inline_vecs, &iter);
2358 if (ret)
2359 goto out_free;
2360 return -EAGAIN;
2361 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002362 }
Jens Axboe31b51512019-01-18 22:56:34 -07002363out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002364 if (!io_wq_current_is_worker())
2365 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002366 return ret;
2367}
2368
2369/*
2370 * IORING_OP_NOP just posts a completion event, nothing else.
2371 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002372static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002373{
2374 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002375
Jens Axboedef596e2019-01-09 08:59:42 -07002376 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2377 return -EINVAL;
2378
Jens Axboe78e19bb2019-11-06 15:21:34 -07002379 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002380 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002381 return 0;
2382}
2383
Jens Axboe3529d8c2019-12-19 18:24:38 -07002384static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002385{
Jens Axboe6b063142019-01-10 22:13:58 -07002386 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002387
Jens Axboe09bb8392019-03-13 12:39:28 -06002388 if (!req->file)
2389 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002390
Jens Axboe6b063142019-01-10 22:13:58 -07002391 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002392 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002393 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002394 return -EINVAL;
2395
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002396 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2397 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2398 return -EINVAL;
2399
2400 req->sync.off = READ_ONCE(sqe->off);
2401 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002402 return 0;
2403}
2404
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002405static bool io_req_cancelled(struct io_kiocb *req)
2406{
2407 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2408 req_set_fail_links(req);
2409 io_cqring_add_event(req, -ECANCELED);
2410 io_put_req(req);
2411 return true;
2412 }
2413
2414 return false;
2415}
2416
Jens Axboe78912932020-01-14 22:09:06 -07002417static void io_link_work_cb(struct io_wq_work **workptr)
2418{
2419 struct io_wq_work *work = *workptr;
2420 struct io_kiocb *link = work->data;
2421
2422 io_queue_linked_timeout(link);
2423 work->func = io_wq_submit_work;
2424}
2425
2426static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2427{
2428 struct io_kiocb *link;
2429
2430 io_prep_async_work(nxt, &link);
2431 *workptr = &nxt->work;
2432 if (link) {
2433 nxt->work.flags |= IO_WQ_WORK_CB;
2434 nxt->work.func = io_link_work_cb;
2435 nxt->work.data = link;
2436 }
2437}
2438
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002439static void io_fsync_finish(struct io_wq_work **workptr)
2440{
2441 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2442 loff_t end = req->sync.off + req->sync.len;
2443 struct io_kiocb *nxt = NULL;
2444 int ret;
2445
2446 if (io_req_cancelled(req))
2447 return;
2448
Jens Axboe9adbd452019-12-20 08:45:55 -07002449 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002450 end > 0 ? end : LLONG_MAX,
2451 req->sync.flags & IORING_FSYNC_DATASYNC);
2452 if (ret < 0)
2453 req_set_fail_links(req);
2454 io_cqring_add_event(req, ret);
2455 io_put_req_find_next(req, &nxt);
2456 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002457 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002458}
2459
Jens Axboefc4df992019-12-10 14:38:45 -07002460static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2461 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002462{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002463 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002464
2465 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002466 if (force_nonblock) {
2467 io_put_req(req);
2468 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002469 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002470 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002471
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002472 work = old_work = &req->work;
2473 io_fsync_finish(&work);
2474 if (work && work != old_work)
2475 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002476 return 0;
2477}
2478
Jens Axboed63d1b52019-12-10 10:38:56 -07002479static void io_fallocate_finish(struct io_wq_work **workptr)
2480{
2481 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2482 struct io_kiocb *nxt = NULL;
2483 int ret;
2484
2485 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2486 req->sync.len);
2487 if (ret < 0)
2488 req_set_fail_links(req);
2489 io_cqring_add_event(req, ret);
2490 io_put_req_find_next(req, &nxt);
2491 if (nxt)
2492 io_wq_assign_next(workptr, nxt);
2493}
2494
2495static int io_fallocate_prep(struct io_kiocb *req,
2496 const struct io_uring_sqe *sqe)
2497{
2498 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2499 return -EINVAL;
2500
2501 req->sync.off = READ_ONCE(sqe->off);
2502 req->sync.len = READ_ONCE(sqe->addr);
2503 req->sync.mode = READ_ONCE(sqe->len);
2504 return 0;
2505}
2506
2507static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2508 bool force_nonblock)
2509{
2510 struct io_wq_work *work, *old_work;
2511
2512 /* fallocate always requiring blocking context */
2513 if (force_nonblock) {
2514 io_put_req(req);
2515 req->work.func = io_fallocate_finish;
2516 return -EAGAIN;
2517 }
2518
2519 work = old_work = &req->work;
2520 io_fallocate_finish(&work);
2521 if (work && work != old_work)
2522 *nxt = container_of(work, struct io_kiocb, work);
2523
2524 return 0;
2525}
2526
Jens Axboe15b71ab2019-12-11 11:20:36 -07002527static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2528{
Jens Axboef8748882020-01-08 17:47:02 -07002529 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002530 int ret;
2531
2532 if (sqe->ioprio || sqe->buf_index)
2533 return -EINVAL;
2534
2535 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002536 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002537 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002538 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002539
Jens Axboef8748882020-01-08 17:47:02 -07002540 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002541 if (IS_ERR(req->open.filename)) {
2542 ret = PTR_ERR(req->open.filename);
2543 req->open.filename = NULL;
2544 return ret;
2545 }
2546
2547 return 0;
2548}
2549
Jens Axboecebdb982020-01-08 17:59:24 -07002550static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2551{
2552 struct open_how __user *how;
2553 const char __user *fname;
2554 size_t len;
2555 int ret;
2556
2557 if (sqe->ioprio || sqe->buf_index)
2558 return -EINVAL;
2559
2560 req->open.dfd = READ_ONCE(sqe->fd);
2561 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2562 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2563 len = READ_ONCE(sqe->len);
2564
2565 if (len < OPEN_HOW_SIZE_VER0)
2566 return -EINVAL;
2567
2568 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2569 len);
2570 if (ret)
2571 return ret;
2572
2573 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2574 req->open.how.flags |= O_LARGEFILE;
2575
2576 req->open.filename = getname(fname);
2577 if (IS_ERR(req->open.filename)) {
2578 ret = PTR_ERR(req->open.filename);
2579 req->open.filename = NULL;
2580 return ret;
2581 }
2582
2583 return 0;
2584}
2585
2586static int io_openat2(struct io_kiocb *req, struct io_kiocb **nxt,
2587 bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002588{
2589 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002590 struct file *file;
2591 int ret;
2592
Jens Axboef86cd202020-01-29 13:46:44 -07002593 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002594 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002595
Jens Axboecebdb982020-01-08 17:59:24 -07002596 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002597 if (ret)
2598 goto err;
2599
Jens Axboecebdb982020-01-08 17:59:24 -07002600 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002601 if (ret < 0)
2602 goto err;
2603
2604 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2605 if (IS_ERR(file)) {
2606 put_unused_fd(ret);
2607 ret = PTR_ERR(file);
2608 } else {
2609 fsnotify_open(file);
2610 fd_install(ret, file);
2611 }
2612err:
2613 putname(req->open.filename);
2614 if (ret < 0)
2615 req_set_fail_links(req);
2616 io_cqring_add_event(req, ret);
2617 io_put_req_find_next(req, nxt);
2618 return 0;
2619}
2620
Jens Axboecebdb982020-01-08 17:59:24 -07002621static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2622 bool force_nonblock)
2623{
2624 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
2625 return io_openat2(req, nxt, force_nonblock);
2626}
2627
Jens Axboe3e4827b2020-01-08 15:18:09 -07002628static int io_epoll_ctl_prep(struct io_kiocb *req,
2629 const struct io_uring_sqe *sqe)
2630{
2631#if defined(CONFIG_EPOLL)
2632 if (sqe->ioprio || sqe->buf_index)
2633 return -EINVAL;
2634
2635 req->epoll.epfd = READ_ONCE(sqe->fd);
2636 req->epoll.op = READ_ONCE(sqe->len);
2637 req->epoll.fd = READ_ONCE(sqe->off);
2638
2639 if (ep_op_has_event(req->epoll.op)) {
2640 struct epoll_event __user *ev;
2641
2642 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
2643 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
2644 return -EFAULT;
2645 }
2646
2647 return 0;
2648#else
2649 return -EOPNOTSUPP;
2650#endif
2651}
2652
2653static int io_epoll_ctl(struct io_kiocb *req, struct io_kiocb **nxt,
2654 bool force_nonblock)
2655{
2656#if defined(CONFIG_EPOLL)
2657 struct io_epoll *ie = &req->epoll;
2658 int ret;
2659
2660 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
2661 if (force_nonblock && ret == -EAGAIN)
2662 return -EAGAIN;
2663
2664 if (ret < 0)
2665 req_set_fail_links(req);
2666 io_cqring_add_event(req, ret);
2667 io_put_req_find_next(req, nxt);
2668 return 0;
2669#else
2670 return -EOPNOTSUPP;
2671#endif
2672}
2673
Jens Axboec1ca7572019-12-25 22:18:28 -07002674static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2675{
2676#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2677 if (sqe->ioprio || sqe->buf_index || sqe->off)
2678 return -EINVAL;
2679
2680 req->madvise.addr = READ_ONCE(sqe->addr);
2681 req->madvise.len = READ_ONCE(sqe->len);
2682 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2683 return 0;
2684#else
2685 return -EOPNOTSUPP;
2686#endif
2687}
2688
2689static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2690 bool force_nonblock)
2691{
2692#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2693 struct io_madvise *ma = &req->madvise;
2694 int ret;
2695
2696 if (force_nonblock)
2697 return -EAGAIN;
2698
2699 ret = do_madvise(ma->addr, ma->len, ma->advice);
2700 if (ret < 0)
2701 req_set_fail_links(req);
2702 io_cqring_add_event(req, ret);
2703 io_put_req_find_next(req, nxt);
2704 return 0;
2705#else
2706 return -EOPNOTSUPP;
2707#endif
2708}
2709
Jens Axboe4840e412019-12-25 22:03:45 -07002710static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2711{
2712 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2713 return -EINVAL;
2714
2715 req->fadvise.offset = READ_ONCE(sqe->off);
2716 req->fadvise.len = READ_ONCE(sqe->len);
2717 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2718 return 0;
2719}
2720
2721static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2722 bool force_nonblock)
2723{
2724 struct io_fadvise *fa = &req->fadvise;
2725 int ret;
2726
2727 /* DONTNEED may block, others _should_ not */
2728 if (fa->advice == POSIX_FADV_DONTNEED && force_nonblock)
2729 return -EAGAIN;
2730
2731 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2732 if (ret < 0)
2733 req_set_fail_links(req);
2734 io_cqring_add_event(req, ret);
2735 io_put_req_find_next(req, nxt);
2736 return 0;
2737}
2738
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002739static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2740{
Jens Axboef8748882020-01-08 17:47:02 -07002741 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002742 unsigned lookup_flags;
2743 int ret;
2744
2745 if (sqe->ioprio || sqe->buf_index)
2746 return -EINVAL;
2747
2748 req->open.dfd = READ_ONCE(sqe->fd);
2749 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002750 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002751 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07002752 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002753
Jens Axboec12cedf2020-01-08 17:41:21 -07002754 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002755 return -EINVAL;
2756
Jens Axboef8748882020-01-08 17:47:02 -07002757 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002758 if (IS_ERR(req->open.filename)) {
2759 ret = PTR_ERR(req->open.filename);
2760 req->open.filename = NULL;
2761 return ret;
2762 }
2763
2764 return 0;
2765}
2766
2767static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2768 bool force_nonblock)
2769{
2770 struct io_open *ctx = &req->open;
2771 unsigned lookup_flags;
2772 struct path path;
2773 struct kstat stat;
2774 int ret;
2775
2776 if (force_nonblock)
2777 return -EAGAIN;
2778
Jens Axboec12cedf2020-01-08 17:41:21 -07002779 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002780 return -EINVAL;
2781
2782retry:
2783 /* filename_lookup() drops it, keep a reference */
2784 ctx->filename->refcnt++;
2785
2786 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2787 NULL);
2788 if (ret)
2789 goto err;
2790
Jens Axboec12cedf2020-01-08 17:41:21 -07002791 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002792 path_put(&path);
2793 if (retry_estale(ret, lookup_flags)) {
2794 lookup_flags |= LOOKUP_REVAL;
2795 goto retry;
2796 }
2797 if (!ret)
2798 ret = cp_statx(&stat, ctx->buffer);
2799err:
2800 putname(ctx->filename);
2801 if (ret < 0)
2802 req_set_fail_links(req);
2803 io_cqring_add_event(req, ret);
2804 io_put_req_find_next(req, nxt);
2805 return 0;
2806}
2807
Jens Axboeb5dba592019-12-11 14:02:38 -07002808static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2809{
2810 /*
2811 * If we queue this for async, it must not be cancellable. That would
2812 * leave the 'file' in an undeterminate state.
2813 */
2814 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2815
2816 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2817 sqe->rw_flags || sqe->buf_index)
2818 return -EINVAL;
2819 if (sqe->flags & IOSQE_FIXED_FILE)
2820 return -EINVAL;
2821
2822 req->close.fd = READ_ONCE(sqe->fd);
2823 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03002824 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07002825 return -EBADF;
2826
2827 return 0;
2828}
2829
2830static void io_close_finish(struct io_wq_work **workptr)
2831{
2832 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2833 struct io_kiocb *nxt = NULL;
2834
2835 /* Invoked with files, we need to do the close */
2836 if (req->work.files) {
2837 int ret;
2838
2839 ret = filp_close(req->close.put_file, req->work.files);
2840 if (ret < 0) {
2841 req_set_fail_links(req);
2842 }
2843 io_cqring_add_event(req, ret);
2844 }
2845
2846 fput(req->close.put_file);
2847
2848 /* we bypassed the re-issue, drop the submission reference */
2849 io_put_req(req);
2850 io_put_req_find_next(req, &nxt);
2851 if (nxt)
2852 io_wq_assign_next(workptr, nxt);
2853}
2854
2855static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
2856 bool force_nonblock)
2857{
2858 int ret;
2859
2860 req->close.put_file = NULL;
2861 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
2862 if (ret < 0)
2863 return ret;
2864
2865 /* if the file has a flush method, be safe and punt to async */
Jens Axboef86cd202020-01-29 13:46:44 -07002866 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker())
Jens Axboeb5dba592019-12-11 14:02:38 -07002867 goto eagain;
Jens Axboeb5dba592019-12-11 14:02:38 -07002868
2869 /*
2870 * No ->flush(), safely close from here and just punt the
2871 * fput() to async context.
2872 */
2873 ret = filp_close(req->close.put_file, current->files);
2874
2875 if (ret < 0)
2876 req_set_fail_links(req);
2877 io_cqring_add_event(req, ret);
2878
2879 if (io_wq_current_is_worker()) {
2880 struct io_wq_work *old_work, *work;
2881
2882 old_work = work = &req->work;
2883 io_close_finish(&work);
2884 if (work && work != old_work)
2885 *nxt = container_of(work, struct io_kiocb, work);
2886 return 0;
2887 }
2888
2889eagain:
2890 req->work.func = io_close_finish;
2891 return -EAGAIN;
2892}
2893
Jens Axboe3529d8c2019-12-19 18:24:38 -07002894static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002895{
2896 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002897
2898 if (!req->file)
2899 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002900
2901 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2902 return -EINVAL;
2903 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2904 return -EINVAL;
2905
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002906 req->sync.off = READ_ONCE(sqe->off);
2907 req->sync.len = READ_ONCE(sqe->len);
2908 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002909 return 0;
2910}
2911
2912static void io_sync_file_range_finish(struct io_wq_work **workptr)
2913{
2914 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2915 struct io_kiocb *nxt = NULL;
2916 int ret;
2917
2918 if (io_req_cancelled(req))
2919 return;
2920
Jens Axboe9adbd452019-12-20 08:45:55 -07002921 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002922 req->sync.flags);
2923 if (ret < 0)
2924 req_set_fail_links(req);
2925 io_cqring_add_event(req, ret);
2926 io_put_req_find_next(req, &nxt);
2927 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002928 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002929}
2930
Jens Axboefc4df992019-12-10 14:38:45 -07002931static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002932 bool force_nonblock)
2933{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002934 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002935
2936 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002937 if (force_nonblock) {
2938 io_put_req(req);
2939 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002940 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002941 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002942
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002943 work = old_work = &req->work;
2944 io_sync_file_range_finish(&work);
2945 if (work && work != old_work)
2946 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002947 return 0;
2948}
2949
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002950#if defined(CONFIG_NET)
2951static void io_sendrecv_async(struct io_wq_work **workptr)
2952{
2953 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2954 struct iovec *iov = NULL;
2955
2956 if (req->io->rw.iov != req->io->rw.fast_iov)
2957 iov = req->io->msg.iov;
2958 io_wq_submit_work(workptr);
2959 kfree(iov);
2960}
2961#endif
2962
Jens Axboe3529d8c2019-12-19 18:24:38 -07002963static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002964{
Jens Axboe03b12302019-12-02 18:50:25 -07002965#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002966 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002967 struct io_async_ctx *io = req->io;
Jens Axboe03b12302019-12-02 18:50:25 -07002968
Jens Axboee47293f2019-12-20 08:58:21 -07002969 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2970 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07002971 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002972
Jens Axboefddafac2020-01-04 20:19:44 -07002973 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002974 return 0;
2975
Jens Axboed9688562019-12-09 19:35:20 -07002976 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002977 return sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002978 &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002979#else
Jens Axboee47293f2019-12-20 08:58:21 -07002980 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002981#endif
2982}
2983
Jens Axboefc4df992019-12-10 14:38:45 -07002984static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2985 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002986{
2987#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002988 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07002989 struct socket *sock;
2990 int ret;
2991
2992 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2993 return -EINVAL;
2994
2995 sock = sock_from_file(req->file, &ret);
2996 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002997 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002998 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002999 unsigned flags;
3000
Jens Axboe03b12302019-12-02 18:50:25 -07003001 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003002 kmsg = &req->io->msg;
3003 kmsg->msg.msg_name = &addr;
3004 /* if iov is set, it's allocated already */
3005 if (!kmsg->iov)
3006 kmsg->iov = kmsg->fast_iov;
3007 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003008 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003009 struct io_sr_msg *sr = &req->sr_msg;
3010
Jens Axboe0b416c32019-12-15 10:57:46 -07003011 kmsg = &io.msg;
3012 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003013
3014 io.msg.iov = io.msg.fast_iov;
3015 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3016 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003017 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003018 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003019 }
3020
Jens Axboee47293f2019-12-20 08:58:21 -07003021 flags = req->sr_msg.msg_flags;
3022 if (flags & MSG_DONTWAIT)
3023 req->flags |= REQ_F_NOWAIT;
3024 else if (force_nonblock)
3025 flags |= MSG_DONTWAIT;
3026
Jens Axboe0b416c32019-12-15 10:57:46 -07003027 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07003028 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003029 if (req->io)
3030 return -EAGAIN;
3031 if (io_alloc_async_ctx(req))
3032 return -ENOMEM;
3033 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
3034 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07003035 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07003036 }
3037 if (ret == -ERESTARTSYS)
3038 ret = -EINTR;
3039 }
3040
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003041 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003042 kfree(kmsg->iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003043 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003044 if (ret < 0)
3045 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003046 io_put_req_find_next(req, nxt);
3047 return 0;
3048#else
3049 return -EOPNOTSUPP;
3050#endif
3051}
3052
Jens Axboefddafac2020-01-04 20:19:44 -07003053static int io_send(struct io_kiocb *req, struct io_kiocb **nxt,
3054 bool force_nonblock)
3055{
3056#if defined(CONFIG_NET)
3057 struct socket *sock;
3058 int ret;
3059
3060 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3061 return -EINVAL;
3062
3063 sock = sock_from_file(req->file, &ret);
3064 if (sock) {
3065 struct io_sr_msg *sr = &req->sr_msg;
3066 struct msghdr msg;
3067 struct iovec iov;
3068 unsigned flags;
3069
3070 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3071 &msg.msg_iter);
3072 if (ret)
3073 return ret;
3074
3075 msg.msg_name = NULL;
3076 msg.msg_control = NULL;
3077 msg.msg_controllen = 0;
3078 msg.msg_namelen = 0;
3079
3080 flags = req->sr_msg.msg_flags;
3081 if (flags & MSG_DONTWAIT)
3082 req->flags |= REQ_F_NOWAIT;
3083 else if (force_nonblock)
3084 flags |= MSG_DONTWAIT;
3085
3086 ret = __sys_sendmsg_sock(sock, &msg, flags);
3087 if (force_nonblock && ret == -EAGAIN)
3088 return -EAGAIN;
3089 if (ret == -ERESTARTSYS)
3090 ret = -EINTR;
3091 }
3092
3093 io_cqring_add_event(req, ret);
3094 if (ret < 0)
3095 req_set_fail_links(req);
3096 io_put_req_find_next(req, nxt);
3097 return 0;
3098#else
3099 return -EOPNOTSUPP;
3100#endif
3101}
3102
Jens Axboe3529d8c2019-12-19 18:24:38 -07003103static int io_recvmsg_prep(struct io_kiocb *req,
3104 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003105{
3106#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003107 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003108 struct io_async_ctx *io = req->io;
Jens Axboe06b76d42019-12-19 14:44:26 -07003109
Jens Axboe3529d8c2019-12-19 18:24:38 -07003110 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3111 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
3112
Jens Axboefddafac2020-01-04 20:19:44 -07003113 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003114 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003115
Jens Axboed9688562019-12-09 19:35:20 -07003116 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003117 return recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003118 &io->msg.uaddr, &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003119#else
Jens Axboee47293f2019-12-20 08:58:21 -07003120 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003121#endif
3122}
3123
Jens Axboefc4df992019-12-10 14:38:45 -07003124static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3125 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003126{
3127#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003128 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003129 struct socket *sock;
3130 int ret;
3131
3132 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3133 return -EINVAL;
3134
3135 sock = sock_from_file(req->file, &ret);
3136 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003137 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003138 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003139 unsigned flags;
3140
Jens Axboe03b12302019-12-02 18:50:25 -07003141 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003142 kmsg = &req->io->msg;
3143 kmsg->msg.msg_name = &addr;
3144 /* if iov is set, it's allocated already */
3145 if (!kmsg->iov)
3146 kmsg->iov = kmsg->fast_iov;
3147 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003148 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003149 struct io_sr_msg *sr = &req->sr_msg;
3150
Jens Axboe0b416c32019-12-15 10:57:46 -07003151 kmsg = &io.msg;
3152 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003153
3154 io.msg.iov = io.msg.fast_iov;
3155 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
3156 sr->msg_flags, &io.msg.uaddr,
3157 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003158 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003159 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003160 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003161
Jens Axboee47293f2019-12-20 08:58:21 -07003162 flags = req->sr_msg.msg_flags;
3163 if (flags & MSG_DONTWAIT)
3164 req->flags |= REQ_F_NOWAIT;
3165 else if (force_nonblock)
3166 flags |= MSG_DONTWAIT;
3167
3168 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3169 kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07003170 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003171 if (req->io)
3172 return -EAGAIN;
3173 if (io_alloc_async_ctx(req))
3174 return -ENOMEM;
3175 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
3176 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07003177 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07003178 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07003179 if (ret == -ERESTARTSYS)
3180 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003181 }
3182
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003183 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003184 kfree(kmsg->iov);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003185 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003186 if (ret < 0)
3187 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003188 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003189 return 0;
3190#else
3191 return -EOPNOTSUPP;
3192#endif
3193}
3194
Jens Axboefddafac2020-01-04 20:19:44 -07003195static int io_recv(struct io_kiocb *req, struct io_kiocb **nxt,
3196 bool force_nonblock)
3197{
3198#if defined(CONFIG_NET)
3199 struct socket *sock;
3200 int ret;
3201
3202 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3203 return -EINVAL;
3204
3205 sock = sock_from_file(req->file, &ret);
3206 if (sock) {
3207 struct io_sr_msg *sr = &req->sr_msg;
3208 struct msghdr msg;
3209 struct iovec iov;
3210 unsigned flags;
3211
3212 ret = import_single_range(READ, sr->buf, sr->len, &iov,
3213 &msg.msg_iter);
3214 if (ret)
3215 return ret;
3216
3217 msg.msg_name = NULL;
3218 msg.msg_control = NULL;
3219 msg.msg_controllen = 0;
3220 msg.msg_namelen = 0;
3221 msg.msg_iocb = NULL;
3222 msg.msg_flags = 0;
3223
3224 flags = req->sr_msg.msg_flags;
3225 if (flags & MSG_DONTWAIT)
3226 req->flags |= REQ_F_NOWAIT;
3227 else if (force_nonblock)
3228 flags |= MSG_DONTWAIT;
3229
3230 ret = __sys_recvmsg_sock(sock, &msg, NULL, NULL, flags);
3231 if (force_nonblock && ret == -EAGAIN)
3232 return -EAGAIN;
3233 if (ret == -ERESTARTSYS)
3234 ret = -EINTR;
3235 }
3236
3237 io_cqring_add_event(req, ret);
3238 if (ret < 0)
3239 req_set_fail_links(req);
3240 io_put_req_find_next(req, nxt);
3241 return 0;
3242#else
3243 return -EOPNOTSUPP;
3244#endif
3245}
3246
3247
Jens Axboe3529d8c2019-12-19 18:24:38 -07003248static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003249{
3250#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003251 struct io_accept *accept = &req->accept;
3252
Jens Axboe17f2fe32019-10-17 14:42:58 -06003253 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3254 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003255 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003256 return -EINVAL;
3257
Jens Axboed55e5f52019-12-11 16:12:15 -07003258 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3259 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003260 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003261 return 0;
3262#else
3263 return -EOPNOTSUPP;
3264#endif
3265}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003266
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003267#if defined(CONFIG_NET)
3268static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3269 bool force_nonblock)
3270{
3271 struct io_accept *accept = &req->accept;
3272 unsigned file_flags;
3273 int ret;
3274
3275 file_flags = force_nonblock ? O_NONBLOCK : 0;
3276 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3277 accept->addr_len, accept->flags);
3278 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003279 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003280 if (ret == -ERESTARTSYS)
3281 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003282 if (ret < 0)
3283 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003284 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003285 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003286 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003287}
3288
3289static void io_accept_finish(struct io_wq_work **workptr)
3290{
3291 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3292 struct io_kiocb *nxt = NULL;
3293
3294 if (io_req_cancelled(req))
3295 return;
3296 __io_accept(req, &nxt, false);
3297 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003298 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003299}
3300#endif
3301
3302static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3303 bool force_nonblock)
3304{
3305#if defined(CONFIG_NET)
3306 int ret;
3307
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003308 ret = __io_accept(req, nxt, force_nonblock);
3309 if (ret == -EAGAIN && force_nonblock) {
3310 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003311 io_put_req(req);
3312 return -EAGAIN;
3313 }
3314 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003315#else
3316 return -EOPNOTSUPP;
3317#endif
3318}
3319
Jens Axboe3529d8c2019-12-19 18:24:38 -07003320static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003321{
3322#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003323 struct io_connect *conn = &req->connect;
3324 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003325
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003326 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3327 return -EINVAL;
3328 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3329 return -EINVAL;
3330
Jens Axboe3529d8c2019-12-19 18:24:38 -07003331 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3332 conn->addr_len = READ_ONCE(sqe->addr2);
3333
3334 if (!io)
3335 return 0;
3336
3337 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003338 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003339#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003340 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07003341#endif
3342}
3343
Jens Axboefc4df992019-12-10 14:38:45 -07003344static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3345 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003346{
3347#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07003348 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003349 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003350 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003351
Jens Axboef499a022019-12-02 16:28:46 -07003352 if (req->io) {
3353 io = req->io;
3354 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003355 ret = move_addr_to_kernel(req->connect.addr,
3356 req->connect.addr_len,
3357 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003358 if (ret)
3359 goto out;
3360 io = &__io;
3361 }
3362
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003363 file_flags = force_nonblock ? O_NONBLOCK : 0;
3364
3365 ret = __sys_connect_file(req->file, &io->connect.address,
3366 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003367 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003368 if (req->io)
3369 return -EAGAIN;
3370 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003371 ret = -ENOMEM;
3372 goto out;
3373 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003374 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003375 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003376 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003377 if (ret == -ERESTARTSYS)
3378 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07003379out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003380 if (ret < 0)
3381 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003382 io_cqring_add_event(req, ret);
3383 io_put_req_find_next(req, nxt);
3384 return 0;
3385#else
3386 return -EOPNOTSUPP;
3387#endif
3388}
3389
Jens Axboe221c5eb2019-01-17 09:41:58 -07003390static void io_poll_remove_one(struct io_kiocb *req)
3391{
3392 struct io_poll_iocb *poll = &req->poll;
3393
3394 spin_lock(&poll->head->lock);
3395 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07003396 if (!list_empty(&poll->wait.entry)) {
3397 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07003398 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003399 }
3400 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003401 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003402}
3403
3404static void io_poll_remove_all(struct io_ring_ctx *ctx)
3405{
Jens Axboe78076bb2019-12-04 19:56:40 -07003406 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003407 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07003408 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003409
3410 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003411 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3412 struct hlist_head *list;
3413
3414 list = &ctx->cancel_hash[i];
3415 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3416 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003417 }
3418 spin_unlock_irq(&ctx->completion_lock);
3419}
3420
Jens Axboe47f46762019-11-09 17:43:02 -07003421static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3422{
Jens Axboe78076bb2019-12-04 19:56:40 -07003423 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07003424 struct io_kiocb *req;
3425
Jens Axboe78076bb2019-12-04 19:56:40 -07003426 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3427 hlist_for_each_entry(req, list, hash_node) {
3428 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07003429 io_poll_remove_one(req);
3430 return 0;
3431 }
Jens Axboe47f46762019-11-09 17:43:02 -07003432 }
3433
3434 return -ENOENT;
3435}
3436
Jens Axboe3529d8c2019-12-19 18:24:38 -07003437static int io_poll_remove_prep(struct io_kiocb *req,
3438 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003439{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003440 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3441 return -EINVAL;
3442 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3443 sqe->poll_events)
3444 return -EINVAL;
3445
Jens Axboe0969e782019-12-17 18:40:57 -07003446 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07003447 return 0;
3448}
3449
3450/*
3451 * Find a running poll command that matches one specified in sqe->addr,
3452 * and remove it if found.
3453 */
3454static int io_poll_remove(struct io_kiocb *req)
3455{
3456 struct io_ring_ctx *ctx = req->ctx;
3457 u64 addr;
3458 int ret;
3459
Jens Axboe0969e782019-12-17 18:40:57 -07003460 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003461 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07003462 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003463 spin_unlock_irq(&ctx->completion_lock);
3464
Jens Axboe78e19bb2019-11-06 15:21:34 -07003465 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003466 if (ret < 0)
3467 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003468 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003469 return 0;
3470}
3471
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003472static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003473{
Jackie Liua197f662019-11-08 08:09:12 -07003474 struct io_ring_ctx *ctx = req->ctx;
3475
Jens Axboe8c838782019-03-12 15:48:16 -06003476 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003477 if (error)
3478 io_cqring_fill_event(req, error);
3479 else
3480 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06003481 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003482}
3483
Jens Axboe561fb042019-10-24 07:25:42 -06003484static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003485{
Jens Axboe561fb042019-10-24 07:25:42 -06003486 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003487 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3488 struct io_poll_iocb *poll = &req->poll;
3489 struct poll_table_struct pt = { ._key = poll->events };
3490 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07003491 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003492 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003493 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003494
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003495 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06003496 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003497 ret = -ECANCELED;
3498 } else if (READ_ONCE(poll->canceled)) {
3499 ret = -ECANCELED;
3500 }
Jens Axboe561fb042019-10-24 07:25:42 -06003501
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003502 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003503 mask = vfs_poll(poll->file, &pt) & poll->events;
3504
3505 /*
3506 * Note that ->ki_cancel callers also delete iocb from active_reqs after
3507 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
3508 * synchronize with them. In the cancellation case the list_del_init
3509 * itself is not actually needed, but harmless so we keep it in to
3510 * avoid further branches in the fast path.
3511 */
3512 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003513 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07003514 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003515 spin_unlock_irq(&ctx->completion_lock);
3516 return;
3517 }
Jens Axboe78076bb2019-12-04 19:56:40 -07003518 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003519 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003520 spin_unlock_irq(&ctx->completion_lock);
3521
Jens Axboe8c838782019-03-12 15:48:16 -06003522 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07003523
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003524 if (ret < 0)
3525 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003526 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07003527 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003528 io_wq_assign_next(workptr, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003529}
3530
Jens Axboee94f1412019-12-19 12:06:02 -07003531static void __io_poll_flush(struct io_ring_ctx *ctx, struct llist_node *nodes)
3532{
Jens Axboee94f1412019-12-19 12:06:02 -07003533 struct io_kiocb *req, *tmp;
Jens Axboe8237e042019-12-28 10:48:22 -07003534 struct req_batch rb;
Jens Axboee94f1412019-12-19 12:06:02 -07003535
Jens Axboec6ca97b302019-12-28 12:11:08 -07003536 rb.to_free = rb.need_iter = 0;
Jens Axboee94f1412019-12-19 12:06:02 -07003537 spin_lock_irq(&ctx->completion_lock);
3538 llist_for_each_entry_safe(req, tmp, nodes, llist_node) {
3539 hash_del(&req->hash_node);
3540 io_poll_complete(req, req->result, 0);
3541
Jens Axboe8237e042019-12-28 10:48:22 -07003542 if (refcount_dec_and_test(&req->refs) &&
3543 !io_req_multi_free(&rb, req)) {
3544 req->flags |= REQ_F_COMP_LOCKED;
3545 io_free_req(req);
Jens Axboee94f1412019-12-19 12:06:02 -07003546 }
3547 }
3548 spin_unlock_irq(&ctx->completion_lock);
3549
3550 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07003551 io_free_req_many(ctx, &rb);
Jens Axboee94f1412019-12-19 12:06:02 -07003552}
3553
3554static void io_poll_flush(struct io_wq_work **workptr)
3555{
3556 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3557 struct llist_node *nodes;
3558
3559 nodes = llist_del_all(&req->ctx->poll_llist);
3560 if (nodes)
3561 __io_poll_flush(req->ctx, nodes);
3562}
3563
Jens Axboe221c5eb2019-01-17 09:41:58 -07003564static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3565 void *key)
3566{
Jens Axboee9444752019-11-26 15:02:04 -07003567 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003568 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
3569 struct io_ring_ctx *ctx = req->ctx;
3570 __poll_t mask = key_to_poll(key);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003571
3572 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06003573 if (mask && !(mask & poll->events))
3574 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003575
Jens Axboe392edb42019-12-09 17:52:20 -07003576 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003577
Jens Axboe7c9e7f02019-11-12 08:15:53 -07003578 /*
3579 * Run completion inline if we can. We're using trylock here because
3580 * we are violating the completion_lock -> poll wq lock ordering.
3581 * If we have a link timeout we're going to need the completion_lock
3582 * for finalizing the request, mark us as having grabbed that already.
3583 */
Jens Axboee94f1412019-12-19 12:06:02 -07003584 if (mask) {
3585 unsigned long flags;
Jens Axboe8c838782019-03-12 15:48:16 -06003586
Jens Axboee94f1412019-12-19 12:06:02 -07003587 if (llist_empty(&ctx->poll_llist) &&
3588 spin_trylock_irqsave(&ctx->completion_lock, flags)) {
3589 hash_del(&req->hash_node);
3590 io_poll_complete(req, mask, 0);
3591 req->flags |= REQ_F_COMP_LOCKED;
3592 io_put_req(req);
3593 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3594
3595 io_cqring_ev_posted(ctx);
3596 req = NULL;
3597 } else {
3598 req->result = mask;
3599 req->llist_node.next = NULL;
3600 /* if the list wasn't empty, we're done */
3601 if (!llist_add(&req->llist_node, &ctx->poll_llist))
3602 req = NULL;
3603 else
3604 req->work.func = io_poll_flush;
3605 }
Jens Axboe8c838782019-03-12 15:48:16 -06003606 }
Jens Axboee94f1412019-12-19 12:06:02 -07003607 if (req)
3608 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003609
Jens Axboe221c5eb2019-01-17 09:41:58 -07003610 return 1;
3611}
3612
3613struct io_poll_table {
3614 struct poll_table_struct pt;
3615 struct io_kiocb *req;
3616 int error;
3617};
3618
3619static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3620 struct poll_table_struct *p)
3621{
3622 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3623
3624 if (unlikely(pt->req->poll.head)) {
3625 pt->error = -EINVAL;
3626 return;
3627 }
3628
3629 pt->error = 0;
3630 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07003631 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003632}
3633
Jens Axboeeac406c2019-11-14 12:09:58 -07003634static void io_poll_req_insert(struct io_kiocb *req)
3635{
3636 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07003637 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07003638
Jens Axboe78076bb2019-12-04 19:56:40 -07003639 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3640 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07003641}
3642
Jens Axboe3529d8c2019-12-19 18:24:38 -07003643static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003644{
3645 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003646 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003647
3648 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3649 return -EINVAL;
3650 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3651 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003652 if (!poll->file)
3653 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003654
Jens Axboe221c5eb2019-01-17 09:41:58 -07003655 events = READ_ONCE(sqe->poll_events);
3656 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07003657 return 0;
3658}
3659
3660static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3661{
3662 struct io_poll_iocb *poll = &req->poll;
3663 struct io_ring_ctx *ctx = req->ctx;
3664 struct io_poll_table ipt;
3665 bool cancel = false;
3666 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07003667
3668 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07003669 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003670
Jens Axboe221c5eb2019-01-17 09:41:58 -07003671 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06003672 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003673 poll->canceled = false;
3674
3675 ipt.pt._qproc = io_poll_queue_proc;
3676 ipt.pt._key = poll->events;
3677 ipt.req = req;
3678 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3679
3680 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07003681 INIT_LIST_HEAD(&poll->wait.entry);
3682 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
3683 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003684
Jens Axboe36703242019-07-25 10:20:18 -06003685 INIT_LIST_HEAD(&req->list);
3686
Jens Axboe221c5eb2019-01-17 09:41:58 -07003687 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003688
3689 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06003690 if (likely(poll->head)) {
3691 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07003692 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06003693 if (ipt.error)
3694 cancel = true;
3695 ipt.error = 0;
3696 mask = 0;
3697 }
3698 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07003699 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003700 else if (cancel)
3701 WRITE_ONCE(poll->canceled, true);
3702 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07003703 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003704 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003705 }
Jens Axboe8c838782019-03-12 15:48:16 -06003706 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06003707 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003708 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06003709 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07003710 spin_unlock_irq(&ctx->completion_lock);
3711
Jens Axboe8c838782019-03-12 15:48:16 -06003712 if (mask) {
3713 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003714 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003715 }
Jens Axboe8c838782019-03-12 15:48:16 -06003716 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003717}
3718
Jens Axboe5262f562019-09-17 12:26:57 -06003719static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3720{
Jens Axboead8a48a2019-11-15 08:49:11 -07003721 struct io_timeout_data *data = container_of(timer,
3722 struct io_timeout_data, timer);
3723 struct io_kiocb *req = data->req;
3724 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06003725 unsigned long flags;
3726
Jens Axboe5262f562019-09-17 12:26:57 -06003727 atomic_inc(&ctx->cq_timeouts);
3728
3729 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08003730 /*
Jens Axboe11365042019-10-16 09:08:32 -06003731 * We could be racing with timeout deletion. If the list is empty,
3732 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08003733 */
Jens Axboe842f9612019-10-29 12:34:10 -06003734 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06003735 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06003736
Jens Axboe11365042019-10-16 09:08:32 -06003737 /*
3738 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08003739 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06003740 * pointer will be increased, otherwise other timeout reqs may
3741 * return in advance without waiting for enough wait_nr.
3742 */
3743 prev = req;
3744 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3745 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06003746 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06003747 }
Jens Axboe842f9612019-10-29 12:34:10 -06003748
Jens Axboe78e19bb2019-11-06 15:21:34 -07003749 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06003750 io_commit_cqring(ctx);
3751 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3752
3753 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003754 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003755 io_put_req(req);
3756 return HRTIMER_NORESTART;
3757}
3758
Jens Axboe47f46762019-11-09 17:43:02 -07003759static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3760{
3761 struct io_kiocb *req;
3762 int ret = -ENOENT;
3763
3764 list_for_each_entry(req, &ctx->timeout_list, list) {
3765 if (user_data == req->user_data) {
3766 list_del_init(&req->list);
3767 ret = 0;
3768 break;
3769 }
3770 }
3771
3772 if (ret == -ENOENT)
3773 return ret;
3774
Jens Axboe2d283902019-12-04 11:08:05 -07003775 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07003776 if (ret == -1)
3777 return -EALREADY;
3778
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003779 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003780 io_cqring_fill_event(req, -ECANCELED);
3781 io_put_req(req);
3782 return 0;
3783}
3784
Jens Axboe3529d8c2019-12-19 18:24:38 -07003785static int io_timeout_remove_prep(struct io_kiocb *req,
3786 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07003787{
Jens Axboeb29472e2019-12-17 18:50:29 -07003788 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3789 return -EINVAL;
3790 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3791 return -EINVAL;
3792
3793 req->timeout.addr = READ_ONCE(sqe->addr);
3794 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3795 if (req->timeout.flags)
3796 return -EINVAL;
3797
Jens Axboeb29472e2019-12-17 18:50:29 -07003798 return 0;
3799}
3800
Jens Axboe11365042019-10-16 09:08:32 -06003801/*
3802 * Remove or update an existing timeout command
3803 */
Jens Axboefc4df992019-12-10 14:38:45 -07003804static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06003805{
3806 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07003807 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06003808
Jens Axboe11365042019-10-16 09:08:32 -06003809 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07003810 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06003811
Jens Axboe47f46762019-11-09 17:43:02 -07003812 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06003813 io_commit_cqring(ctx);
3814 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003815 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003816 if (ret < 0)
3817 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003818 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06003819 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06003820}
3821
Jens Axboe3529d8c2019-12-19 18:24:38 -07003822static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07003823 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06003824{
Jens Axboead8a48a2019-11-15 08:49:11 -07003825 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06003826 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06003827
Jens Axboead8a48a2019-11-15 08:49:11 -07003828 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06003829 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07003830 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06003831 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07003832 if (sqe->off && is_timeout_link)
3833 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06003834 flags = READ_ONCE(sqe->timeout_flags);
3835 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06003836 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06003837
Jens Axboe26a61672019-12-20 09:02:01 -07003838 req->timeout.count = READ_ONCE(sqe->off);
3839
Jens Axboe3529d8c2019-12-19 18:24:38 -07003840 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07003841 return -ENOMEM;
3842
3843 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07003844 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07003845 req->flags |= REQ_F_TIMEOUT;
3846
3847 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06003848 return -EFAULT;
3849
Jens Axboe11365042019-10-16 09:08:32 -06003850 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07003851 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06003852 else
Jens Axboead8a48a2019-11-15 08:49:11 -07003853 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06003854
Jens Axboead8a48a2019-11-15 08:49:11 -07003855 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
3856 return 0;
3857}
3858
Jens Axboefc4df992019-12-10 14:38:45 -07003859static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07003860{
3861 unsigned count;
3862 struct io_ring_ctx *ctx = req->ctx;
3863 struct io_timeout_data *data;
3864 struct list_head *entry;
3865 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07003866
Jens Axboe2d283902019-12-04 11:08:05 -07003867 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003868
Jens Axboe5262f562019-09-17 12:26:57 -06003869 /*
3870 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07003871 * timeout event to be satisfied. If it isn't set, then this is
3872 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06003873 */
Jens Axboe26a61672019-12-20 09:02:01 -07003874 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003875 if (!count) {
3876 req->flags |= REQ_F_TIMEOUT_NOSEQ;
3877 spin_lock_irq(&ctx->completion_lock);
3878 entry = ctx->timeout_list.prev;
3879 goto add;
3880 }
Jens Axboe5262f562019-09-17 12:26:57 -06003881
3882 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07003883 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06003884
3885 /*
3886 * Insertion sort, ensuring the first entry in the list is always
3887 * the one we need first.
3888 */
Jens Axboe5262f562019-09-17 12:26:57 -06003889 spin_lock_irq(&ctx->completion_lock);
3890 list_for_each_prev(entry, &ctx->timeout_list) {
3891 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08003892 unsigned nxt_sq_head;
3893 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07003894 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06003895
Jens Axboe93bd25b2019-11-11 23:34:31 -07003896 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
3897 continue;
3898
yangerkun5da0fb12019-10-15 21:59:29 +08003899 /*
3900 * Since cached_sq_head + count - 1 can overflow, use type long
3901 * long to store it.
3902 */
3903 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03003904 nxt_sq_head = nxt->sequence - nxt_offset + 1;
3905 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08003906
3907 /*
3908 * cached_sq_head may overflow, and it will never overflow twice
3909 * once there is some timeout req still be valid.
3910 */
3911 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08003912 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08003913
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003914 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06003915 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003916
3917 /*
3918 * Sequence of reqs after the insert one and itself should
3919 * be adjusted because each timeout req consumes a slot.
3920 */
3921 span++;
3922 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06003923 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003924 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003925add:
Jens Axboe5262f562019-09-17 12:26:57 -06003926 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07003927 data->timer.function = io_timeout_fn;
3928 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06003929 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003930 return 0;
3931}
3932
Jens Axboe62755e32019-10-28 21:49:21 -06003933static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06003934{
Jens Axboe62755e32019-10-28 21:49:21 -06003935 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06003936
Jens Axboe62755e32019-10-28 21:49:21 -06003937 return req->user_data == (unsigned long) data;
3938}
3939
Jens Axboee977d6d2019-11-05 12:39:45 -07003940static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003941{
Jens Axboe62755e32019-10-28 21:49:21 -06003942 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003943 int ret = 0;
3944
Jens Axboe62755e32019-10-28 21:49:21 -06003945 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3946 switch (cancel_ret) {
3947 case IO_WQ_CANCEL_OK:
3948 ret = 0;
3949 break;
3950 case IO_WQ_CANCEL_RUNNING:
3951 ret = -EALREADY;
3952 break;
3953 case IO_WQ_CANCEL_NOTFOUND:
3954 ret = -ENOENT;
3955 break;
3956 }
3957
Jens Axboee977d6d2019-11-05 12:39:45 -07003958 return ret;
3959}
3960
Jens Axboe47f46762019-11-09 17:43:02 -07003961static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3962 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003963 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07003964{
3965 unsigned long flags;
3966 int ret;
3967
3968 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3969 if (ret != -ENOENT) {
3970 spin_lock_irqsave(&ctx->completion_lock, flags);
3971 goto done;
3972 }
3973
3974 spin_lock_irqsave(&ctx->completion_lock, flags);
3975 ret = io_timeout_cancel(ctx, sqe_addr);
3976 if (ret != -ENOENT)
3977 goto done;
3978 ret = io_poll_cancel(ctx, sqe_addr);
3979done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003980 if (!ret)
3981 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07003982 io_cqring_fill_event(req, ret);
3983 io_commit_cqring(ctx);
3984 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3985 io_cqring_ev_posted(ctx);
3986
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003987 if (ret < 0)
3988 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003989 io_put_req_find_next(req, nxt);
3990}
3991
Jens Axboe3529d8c2019-12-19 18:24:38 -07003992static int io_async_cancel_prep(struct io_kiocb *req,
3993 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07003994{
Jens Axboefbf23842019-12-17 18:45:56 -07003995 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07003996 return -EINVAL;
3997 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3998 sqe->cancel_flags)
3999 return -EINVAL;
4000
Jens Axboefbf23842019-12-17 18:45:56 -07004001 req->cancel.addr = READ_ONCE(sqe->addr);
4002 return 0;
4003}
4004
4005static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
4006{
4007 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004008
4009 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004010 return 0;
4011}
4012
Jens Axboe05f3fb32019-12-09 11:22:50 -07004013static int io_files_update_prep(struct io_kiocb *req,
4014 const struct io_uring_sqe *sqe)
4015{
4016 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4017 return -EINVAL;
4018
4019 req->files_update.offset = READ_ONCE(sqe->off);
4020 req->files_update.nr_args = READ_ONCE(sqe->len);
4021 if (!req->files_update.nr_args)
4022 return -EINVAL;
4023 req->files_update.arg = READ_ONCE(sqe->addr);
4024 return 0;
4025}
4026
4027static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4028{
4029 struct io_ring_ctx *ctx = req->ctx;
4030 struct io_uring_files_update up;
4031 int ret;
4032
Jens Axboef86cd202020-01-29 13:46:44 -07004033 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004034 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004035
4036 up.offset = req->files_update.offset;
4037 up.fds = req->files_update.arg;
4038
4039 mutex_lock(&ctx->uring_lock);
4040 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4041 mutex_unlock(&ctx->uring_lock);
4042
4043 if (ret < 0)
4044 req_set_fail_links(req);
4045 io_cqring_add_event(req, ret);
4046 io_put_req(req);
4047 return 0;
4048}
4049
Jens Axboe3529d8c2019-12-19 18:24:38 -07004050static int io_req_defer_prep(struct io_kiocb *req,
4051 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004052{
Jens Axboee7815732019-12-17 19:45:06 -07004053 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004054
Jens Axboef86cd202020-01-29 13:46:44 -07004055 if (io_op_defs[req->opcode].file_table) {
4056 ret = io_grab_files(req);
4057 if (unlikely(ret))
4058 return ret;
4059 }
4060
Jens Axboecccf0ee2020-01-27 16:34:48 -07004061 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4062
Jens Axboed625c6e2019-12-17 19:53:05 -07004063 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004064 case IORING_OP_NOP:
4065 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004066 case IORING_OP_READV:
4067 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004068 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004069 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004070 break;
4071 case IORING_OP_WRITEV:
4072 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004073 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004074 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004075 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004076 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004077 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004078 break;
4079 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004080 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004081 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004082 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004083 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004084 break;
4085 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004086 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004087 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004088 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004089 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004090 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004091 break;
4092 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004093 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004094 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004095 break;
Jens Axboef499a022019-12-02 16:28:46 -07004096 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004097 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004098 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004099 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004100 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004101 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004102 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004103 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004104 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004105 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004106 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004107 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004108 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004109 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004110 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004111 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004112 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004113 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004114 case IORING_OP_FALLOCATE:
4115 ret = io_fallocate_prep(req, sqe);
4116 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004117 case IORING_OP_OPENAT:
4118 ret = io_openat_prep(req, sqe);
4119 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004120 case IORING_OP_CLOSE:
4121 ret = io_close_prep(req, sqe);
4122 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004123 case IORING_OP_FILES_UPDATE:
4124 ret = io_files_update_prep(req, sqe);
4125 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004126 case IORING_OP_STATX:
4127 ret = io_statx_prep(req, sqe);
4128 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004129 case IORING_OP_FADVISE:
4130 ret = io_fadvise_prep(req, sqe);
4131 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004132 case IORING_OP_MADVISE:
4133 ret = io_madvise_prep(req, sqe);
4134 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004135 case IORING_OP_OPENAT2:
4136 ret = io_openat2_prep(req, sqe);
4137 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004138 case IORING_OP_EPOLL_CTL:
4139 ret = io_epoll_ctl_prep(req, sqe);
4140 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004141 default:
Jens Axboee7815732019-12-17 19:45:06 -07004142 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4143 req->opcode);
4144 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004145 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004146 }
4147
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004148 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004149}
4150
Jens Axboe3529d8c2019-12-19 18:24:38 -07004151static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004152{
Jackie Liua197f662019-11-08 08:09:12 -07004153 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004154 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004155
Bob Liu9d858b22019-11-13 18:06:25 +08004156 /* Still need defer if there is pending req in defer list. */
4157 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004158 return 0;
4159
Jens Axboe3529d8c2019-12-19 18:24:38 -07004160 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004161 return -EAGAIN;
4162
Jens Axboe3529d8c2019-12-19 18:24:38 -07004163 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004164 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004165 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004166
Jens Axboede0617e2019-04-06 21:51:27 -06004167 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004168 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004169 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004170 return 0;
4171 }
4172
Jens Axboe915967f2019-11-21 09:01:20 -07004173 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004174 list_add_tail(&req->list, &ctx->defer_list);
4175 spin_unlock_irq(&ctx->completion_lock);
4176 return -EIOCBQUEUED;
4177}
4178
Jens Axboe3529d8c2019-12-19 18:24:38 -07004179static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4180 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004181{
Jackie Liua197f662019-11-08 08:09:12 -07004182 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004183 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004184
Jens Axboed625c6e2019-12-17 19:53:05 -07004185 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004186 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004187 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004188 break;
4189 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004190 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004191 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004192 if (sqe) {
4193 ret = io_read_prep(req, sqe, force_nonblock);
4194 if (ret < 0)
4195 break;
4196 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004197 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004198 break;
4199 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07004200 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004201 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004202 if (sqe) {
4203 ret = io_write_prep(req, sqe, force_nonblock);
4204 if (ret < 0)
4205 break;
4206 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004207 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004208 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004209 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004210 if (sqe) {
4211 ret = io_prep_fsync(req, sqe);
4212 if (ret < 0)
4213 break;
4214 }
Jens Axboefc4df992019-12-10 14:38:45 -07004215 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004216 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004217 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004218 if (sqe) {
4219 ret = io_poll_add_prep(req, sqe);
4220 if (ret)
4221 break;
4222 }
Jens Axboefc4df992019-12-10 14:38:45 -07004223 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004224 break;
4225 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004226 if (sqe) {
4227 ret = io_poll_remove_prep(req, sqe);
4228 if (ret < 0)
4229 break;
4230 }
Jens Axboefc4df992019-12-10 14:38:45 -07004231 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004232 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004233 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004234 if (sqe) {
4235 ret = io_prep_sfr(req, sqe);
4236 if (ret < 0)
4237 break;
4238 }
Jens Axboefc4df992019-12-10 14:38:45 -07004239 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004240 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004241 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004242 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004243 if (sqe) {
4244 ret = io_sendmsg_prep(req, sqe);
4245 if (ret < 0)
4246 break;
4247 }
Jens Axboefddafac2020-01-04 20:19:44 -07004248 if (req->opcode == IORING_OP_SENDMSG)
4249 ret = io_sendmsg(req, nxt, force_nonblock);
4250 else
4251 ret = io_send(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004252 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06004253 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004254 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004255 if (sqe) {
4256 ret = io_recvmsg_prep(req, sqe);
4257 if (ret)
4258 break;
4259 }
Jens Axboefddafac2020-01-04 20:19:44 -07004260 if (req->opcode == IORING_OP_RECVMSG)
4261 ret = io_recvmsg(req, nxt, force_nonblock);
4262 else
4263 ret = io_recv(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06004264 break;
Jens Axboe5262f562019-09-17 12:26:57 -06004265 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004266 if (sqe) {
4267 ret = io_timeout_prep(req, sqe, false);
4268 if (ret)
4269 break;
4270 }
Jens Axboefc4df992019-12-10 14:38:45 -07004271 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004272 break;
Jens Axboe11365042019-10-16 09:08:32 -06004273 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004274 if (sqe) {
4275 ret = io_timeout_remove_prep(req, sqe);
4276 if (ret)
4277 break;
4278 }
Jens Axboefc4df992019-12-10 14:38:45 -07004279 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06004280 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06004281 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004282 if (sqe) {
4283 ret = io_accept_prep(req, sqe);
4284 if (ret)
4285 break;
4286 }
Jens Axboefc4df992019-12-10 14:38:45 -07004287 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004288 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004289 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004290 if (sqe) {
4291 ret = io_connect_prep(req, sqe);
4292 if (ret)
4293 break;
4294 }
Jens Axboefc4df992019-12-10 14:38:45 -07004295 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004296 break;
Jens Axboe62755e32019-10-28 21:49:21 -06004297 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004298 if (sqe) {
4299 ret = io_async_cancel_prep(req, sqe);
4300 if (ret)
4301 break;
4302 }
Jens Axboefc4df992019-12-10 14:38:45 -07004303 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06004304 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004305 case IORING_OP_FALLOCATE:
4306 if (sqe) {
4307 ret = io_fallocate_prep(req, sqe);
4308 if (ret)
4309 break;
4310 }
4311 ret = io_fallocate(req, nxt, force_nonblock);
4312 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004313 case IORING_OP_OPENAT:
4314 if (sqe) {
4315 ret = io_openat_prep(req, sqe);
4316 if (ret)
4317 break;
4318 }
4319 ret = io_openat(req, nxt, force_nonblock);
4320 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004321 case IORING_OP_CLOSE:
4322 if (sqe) {
4323 ret = io_close_prep(req, sqe);
4324 if (ret)
4325 break;
4326 }
4327 ret = io_close(req, nxt, force_nonblock);
4328 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004329 case IORING_OP_FILES_UPDATE:
4330 if (sqe) {
4331 ret = io_files_update_prep(req, sqe);
4332 if (ret)
4333 break;
4334 }
4335 ret = io_files_update(req, force_nonblock);
4336 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004337 case IORING_OP_STATX:
4338 if (sqe) {
4339 ret = io_statx_prep(req, sqe);
4340 if (ret)
4341 break;
4342 }
4343 ret = io_statx(req, nxt, force_nonblock);
4344 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004345 case IORING_OP_FADVISE:
4346 if (sqe) {
4347 ret = io_fadvise_prep(req, sqe);
4348 if (ret)
4349 break;
4350 }
4351 ret = io_fadvise(req, nxt, force_nonblock);
4352 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004353 case IORING_OP_MADVISE:
4354 if (sqe) {
4355 ret = io_madvise_prep(req, sqe);
4356 if (ret)
4357 break;
4358 }
4359 ret = io_madvise(req, nxt, force_nonblock);
4360 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004361 case IORING_OP_OPENAT2:
4362 if (sqe) {
4363 ret = io_openat2_prep(req, sqe);
4364 if (ret)
4365 break;
4366 }
4367 ret = io_openat2(req, nxt, force_nonblock);
4368 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004369 case IORING_OP_EPOLL_CTL:
4370 if (sqe) {
4371 ret = io_epoll_ctl_prep(req, sqe);
4372 if (ret)
4373 break;
4374 }
4375 ret = io_epoll_ctl(req, nxt, force_nonblock);
4376 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004377 default:
4378 ret = -EINVAL;
4379 break;
4380 }
4381
Jens Axboedef596e2019-01-09 08:59:42 -07004382 if (ret)
4383 return ret;
4384
4385 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07004386 const bool in_async = io_wq_current_is_worker();
4387
Jens Axboe9e645e112019-05-10 16:07:28 -06004388 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07004389 return -EAGAIN;
4390
Jens Axboe11ba8202020-01-15 21:51:17 -07004391 /* workqueue context doesn't hold uring_lock, grab it now */
4392 if (in_async)
4393 mutex_lock(&ctx->uring_lock);
4394
Jens Axboedef596e2019-01-09 08:59:42 -07004395 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07004396
4397 if (in_async)
4398 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07004399 }
4400
4401 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004402}
4403
Jens Axboe561fb042019-10-24 07:25:42 -06004404static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07004405{
Jens Axboe561fb042019-10-24 07:25:42 -06004406 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004407 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06004408 struct io_kiocb *nxt = NULL;
4409 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004410
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004411 /* if NO_CANCEL is set, we must still run the work */
4412 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4413 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06004414 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004415 }
Jens Axboe31b51512019-01-18 22:56:34 -07004416
Jens Axboe561fb042019-10-24 07:25:42 -06004417 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004418 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
4419 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06004420 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004421 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06004422 /*
4423 * We can get EAGAIN for polled IO even though we're
4424 * forcing a sync submission from here, since we can't
4425 * wait for request slots on the block side.
4426 */
4427 if (ret != -EAGAIN)
4428 break;
4429 cond_resched();
4430 } while (1);
4431 }
Jens Axboe31b51512019-01-18 22:56:34 -07004432
Jens Axboe561fb042019-10-24 07:25:42 -06004433 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08004434 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06004435
Jens Axboe561fb042019-10-24 07:25:42 -06004436 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004437 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004438 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06004439 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07004440 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004441
Jens Axboe561fb042019-10-24 07:25:42 -06004442 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07004443 if (!ret && nxt)
4444 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07004445}
Jens Axboe2b188cc2019-01-07 10:46:33 -07004446
Jens Axboe15b71ab2019-12-11 11:20:36 -07004447static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06004448{
Jens Axboed3656342019-12-18 09:50:26 -07004449 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004450 return 0;
Jens Axboed3656342019-12-18 09:50:26 -07004451 if (fd == -1 && io_op_defs[req->opcode].fd_non_neg)
4452 return 0;
4453 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06004454}
4455
Jens Axboe65e19f52019-10-26 07:20:21 -06004456static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4457 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06004458{
Jens Axboe65e19f52019-10-26 07:20:21 -06004459 struct fixed_file_table *table;
4460
Jens Axboe05f3fb32019-12-09 11:22:50 -07004461 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4462 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06004463}
4464
Jens Axboe3529d8c2019-12-19 18:24:38 -07004465static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4466 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06004467{
Jackie Liua197f662019-11-08 08:09:12 -07004468 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06004469 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07004470 int fd;
Jens Axboe09bb8392019-03-13 12:39:28 -06004471
Jens Axboe3529d8c2019-12-19 18:24:38 -07004472 flags = READ_ONCE(sqe->flags);
4473 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004474
Jens Axboed3656342019-12-18 09:50:26 -07004475 if (!io_req_needs_file(req, fd))
4476 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06004477
4478 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07004479 if (unlikely(!ctx->file_data ||
Jens Axboe09bb8392019-03-13 12:39:28 -06004480 (unsigned) fd >= ctx->nr_user_files))
4481 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06004482 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004483 req->file = io_file_from_index(ctx, fd);
4484 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06004485 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06004486 req->flags |= REQ_F_FIXED_FILE;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004487 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe09bb8392019-03-13 12:39:28 -06004488 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004489 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06004490 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004491 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004492 req->file = io_file_get(state, fd);
4493 if (unlikely(!req->file))
4494 return -EBADF;
4495 }
4496
4497 return 0;
4498}
4499
Jackie Liua197f662019-11-08 08:09:12 -07004500static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004501{
Jens Axboefcb323c2019-10-24 12:39:47 -06004502 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07004503 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06004504
Jens Axboef86cd202020-01-29 13:46:44 -07004505 if (req->work.files)
4506 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004507 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07004508 return -EBADF;
4509
Jens Axboefcb323c2019-10-24 12:39:47 -06004510 rcu_read_lock();
4511 spin_lock_irq(&ctx->inflight_lock);
4512 /*
4513 * We use the f_ops->flush() handler to ensure that we can flush
4514 * out work accessing these files if the fd is closed. Check if
4515 * the fd has changed since we started down this path, and disallow
4516 * this operation if it has.
4517 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004518 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06004519 list_add(&req->inflight_entry, &ctx->inflight_list);
4520 req->flags |= REQ_F_INFLIGHT;
4521 req->work.files = current->files;
4522 ret = 0;
4523 }
4524 spin_unlock_irq(&ctx->inflight_lock);
4525 rcu_read_unlock();
4526
4527 return ret;
4528}
4529
Jens Axboe2665abf2019-11-05 12:40:47 -07004530static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
4531{
Jens Axboead8a48a2019-11-15 08:49:11 -07004532 struct io_timeout_data *data = container_of(timer,
4533 struct io_timeout_data, timer);
4534 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07004535 struct io_ring_ctx *ctx = req->ctx;
4536 struct io_kiocb *prev = NULL;
4537 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07004538
4539 spin_lock_irqsave(&ctx->completion_lock, flags);
4540
4541 /*
4542 * We don't expect the list to be empty, that will only happen if we
4543 * race with the completion of the linked work.
4544 */
Pavel Begunkov44932332019-12-05 16:16:35 +03004545 if (!list_empty(&req->link_list)) {
4546 prev = list_entry(req->link_list.prev, struct io_kiocb,
4547 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004548 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03004549 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004550 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4551 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07004552 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004553 }
4554
4555 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4556
4557 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004558 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004559 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4560 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07004561 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07004562 } else {
4563 io_cqring_add_event(req, -ETIME);
4564 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004565 }
Jens Axboe2665abf2019-11-05 12:40:47 -07004566 return HRTIMER_NORESTART;
4567}
4568
Jens Axboead8a48a2019-11-15 08:49:11 -07004569static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004570{
Jens Axboe76a46e02019-11-10 23:34:16 -07004571 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07004572
Jens Axboe76a46e02019-11-10 23:34:16 -07004573 /*
4574 * If the list is now empty, then our linked request finished before
4575 * we got a chance to setup the timer
4576 */
4577 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03004578 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07004579 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07004580
Jens Axboead8a48a2019-11-15 08:49:11 -07004581 data->timer.function = io_link_timeout_fn;
4582 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4583 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07004584 }
Jens Axboe76a46e02019-11-10 23:34:16 -07004585 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07004586
Jens Axboe2665abf2019-11-05 12:40:47 -07004587 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07004588 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004589}
4590
Jens Axboead8a48a2019-11-15 08:49:11 -07004591static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004592{
4593 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004594
Jens Axboe2665abf2019-11-05 12:40:47 -07004595 if (!(req->flags & REQ_F_LINK))
4596 return NULL;
4597
Pavel Begunkov44932332019-12-05 16:16:35 +03004598 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4599 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07004600 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07004601 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004602
Jens Axboe76a46e02019-11-10 23:34:16 -07004603 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07004604 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07004605}
4606
Jens Axboe3529d8c2019-12-19 18:24:38 -07004607static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004608{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004609 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004610 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004611 int ret;
4612
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004613again:
4614 linked_timeout = io_prep_linked_timeout(req);
4615
Jens Axboe3529d8c2019-12-19 18:24:38 -07004616 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06004617
4618 /*
4619 * We async punt it if the file wasn't marked NOWAIT, or if the file
4620 * doesn't support non-blocking read/write attempts
4621 */
4622 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4623 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004624punt:
Jens Axboef86cd202020-01-29 13:46:44 -07004625 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004626 ret = io_grab_files(req);
4627 if (ret)
4628 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004629 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004630
4631 /*
4632 * Queued up for async execution, worker will release
4633 * submit reference when the iocb is actually submitted.
4634 */
4635 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004636 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004637 }
Jens Axboee65ef562019-03-12 10:16:44 -06004638
Jens Axboefcb323c2019-10-24 12:39:47 -06004639err:
Jens Axboee65ef562019-03-12 10:16:44 -06004640 /* drop submission reference */
4641 io_put_req(req);
4642
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004643 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07004644 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004645 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004646 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004647 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004648 }
4649
Jens Axboee65ef562019-03-12 10:16:44 -06004650 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06004651 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004652 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004653 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004654 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06004655 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004656done_req:
4657 if (nxt) {
4658 req = nxt;
4659 nxt = NULL;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004660
4661 if (req->flags & REQ_F_FORCE_ASYNC)
4662 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004663 goto again;
4664 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004665}
4666
Jens Axboe3529d8c2019-12-19 18:24:38 -07004667static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004668{
4669 int ret;
4670
Jens Axboe3529d8c2019-12-19 18:24:38 -07004671 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004672 if (ret) {
4673 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004674fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004675 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004676 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004677 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004678 }
Pavel Begunkov25508782019-12-30 21:24:47 +03004679 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004680 ret = io_req_defer_prep(req, sqe);
4681 if (unlikely(ret < 0))
4682 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07004683 /*
4684 * Never try inline submit of IOSQE_ASYNC is set, go straight
4685 * to async execution.
4686 */
4687 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4688 io_queue_async_work(req);
4689 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004690 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07004691 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08004692}
4693
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004694static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004695{
Jens Axboe94ae5e72019-11-14 19:39:52 -07004696 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004697 io_cqring_add_event(req, -ECANCELED);
4698 io_double_put_req(req);
4699 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07004700 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004701}
4702
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004703#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboece35a472019-12-17 08:04:44 -07004704 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
Jens Axboe9e645e112019-05-10 16:07:28 -06004705
Jens Axboe3529d8c2019-12-19 18:24:38 -07004706static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4707 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06004708{
Jens Axboe75c6a032020-01-28 10:15:23 -07004709 const struct cred *old_creds = NULL;
Jackie Liua197f662019-11-08 08:09:12 -07004710 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004711 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07004712 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06004713
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004714 sqe_flags = READ_ONCE(sqe->flags);
4715
Jens Axboe9e645e112019-05-10 16:07:28 -06004716 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004717 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004718 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03004719 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06004720 }
Jens Axboe75c6a032020-01-28 10:15:23 -07004721
4722 id = READ_ONCE(sqe->personality);
4723 if (id) {
4724 const struct cred *personality_creds;
4725
4726 personality_creds = idr_find(&ctx->personality_idr, id);
4727 if (unlikely(!personality_creds)) {
4728 ret = -EINVAL;
4729 goto err_req;
4730 }
4731 old_creds = override_creds(personality_creds);
4732 }
4733
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03004734 /* same numerical values with corresponding REQ_F_*, safe to copy */
4735 req->flags |= sqe_flags & (IOSQE_IO_DRAIN|IOSQE_IO_HARDLINK|
4736 IOSQE_ASYNC);
Jens Axboe9e645e112019-05-10 16:07:28 -06004737
Jens Axboe3529d8c2019-12-19 18:24:38 -07004738 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004739 if (unlikely(ret)) {
4740err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004741 io_cqring_add_event(req, ret);
4742 io_double_put_req(req);
Jens Axboe75c6a032020-01-28 10:15:23 -07004743 if (old_creds)
4744 revert_creds(old_creds);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004745 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06004746 }
4747
Jens Axboe9e645e112019-05-10 16:07:28 -06004748 /*
4749 * If we already have a head request, queue this one for async
4750 * submittal once the head completes. If we don't have a head but
4751 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4752 * submitted sync once the chain is complete. If none of those
4753 * conditions are true (normal request), then just queue it.
4754 */
4755 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03004756 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06004757
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03004758 /*
4759 * Taking sequential execution of a link, draining both sides
4760 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
4761 * requests in the link. So, it drains the head and the
4762 * next after the link request. The last one is done via
4763 * drain_next flag to persist the effect across calls.
4764 */
Pavel Begunkov711be032020-01-17 03:57:59 +03004765 if (sqe_flags & IOSQE_IO_DRAIN) {
4766 head->flags |= REQ_F_IO_DRAIN;
4767 ctx->drain_next = 1;
4768 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004769 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004770 ret = -EAGAIN;
4771 goto err_req;
4772 }
4773
Jens Axboe3529d8c2019-12-19 18:24:38 -07004774 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07004775 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004776 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03004777 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07004778 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07004779 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03004780 trace_io_uring_link(ctx, req, head);
4781 list_add_tail(&req->link_list, &head->link_list);
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004782
4783 /* last request of a link, enqueue the link */
4784 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
4785 io_queue_link_head(head);
4786 *link = NULL;
4787 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004788 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03004789 if (unlikely(ctx->drain_next)) {
4790 req->flags |= REQ_F_IO_DRAIN;
4791 req->ctx->drain_next = 0;
4792 }
4793 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
4794 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03004795 INIT_LIST_HEAD(&req->link_list);
4796 ret = io_req_defer_prep(req, sqe);
4797 if (ret)
4798 req->flags |= REQ_F_FAIL_LINK;
4799 *link = req;
4800 } else {
4801 io_queue_sqe(req, sqe);
4802 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004803 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004804
Jens Axboe75c6a032020-01-28 10:15:23 -07004805 if (old_creds)
4806 revert_creds(old_creds);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004807 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06004808}
4809
Jens Axboe9a56a232019-01-09 09:06:50 -07004810/*
4811 * Batched submission is done, ensure local IO is flushed out.
4812 */
4813static void io_submit_state_end(struct io_submit_state *state)
4814{
4815 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06004816 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07004817 if (state->free_reqs)
4818 kmem_cache_free_bulk(req_cachep, state->free_reqs,
4819 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07004820}
4821
4822/*
4823 * Start submission side cache.
4824 */
4825static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08004826 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07004827{
4828 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07004829 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07004830 state->file = NULL;
4831 state->ios_left = max_ios;
4832}
4833
Jens Axboe2b188cc2019-01-07 10:46:33 -07004834static void io_commit_sqring(struct io_ring_ctx *ctx)
4835{
Hristo Venev75b28af2019-08-26 17:23:46 +00004836 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004837
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03004838 /*
4839 * Ensure any loads from the SQEs are done at this point,
4840 * since once we write the new head, the application could
4841 * write new data to them.
4842 */
4843 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004844}
4845
4846/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07004847 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07004848 * that is mapped by userspace. This means that care needs to be taken to
4849 * ensure that reads are stable, as we cannot rely on userspace always
4850 * being a good citizen. If members of the sqe are validated and then later
4851 * used, it's important that those reads are done through READ_ONCE() to
4852 * prevent a re-load down the line.
4853 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07004854static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
4855 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004856{
Hristo Venev75b28af2019-08-26 17:23:46 +00004857 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004858 unsigned head;
4859
4860 /*
4861 * The cached sq head (or cq tail) serves two purposes:
4862 *
4863 * 1) allows us to batch the cost of updating the user visible
4864 * head updates.
4865 * 2) allows the kernel side to track the head on its own, even
4866 * though the application is the one updating it.
4867 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004868 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03004869 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004870 /*
4871 * All io need record the previous position, if LINK vs DARIN,
4872 * it can be used to mark the position of the first IO in the
4873 * link list.
4874 */
4875 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004876 *sqe_ptr = &ctx->sq_sqes[head];
4877 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
4878 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004879 ctx->cached_sq_head++;
4880 return true;
4881 }
4882
4883 /* drop invalid entries */
4884 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06004885 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004886 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004887 return false;
4888}
4889
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004890static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004891 struct file *ring_file, int ring_fd,
4892 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07004893{
4894 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004895 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004896 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004897 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004898
Jens Axboec4a2ed72019-11-21 21:01:26 -07004899 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07004900 if (test_bit(0, &ctx->sq_check_overflow)) {
4901 if (!list_empty(&ctx->cq_overflow_list) &&
4902 !io_cqring_overflow_flush(ctx, false))
4903 return -EBUSY;
4904 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07004905
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004906 /* make sure SQ entry isn't read before tail */
4907 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03004908
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004909 if (!percpu_ref_tryget_many(&ctx->refs, nr))
4910 return -EAGAIN;
4911
Jens Axboe6c271ce2019-01-10 11:22:30 -07004912 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08004913 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004914 statep = &state;
4915 }
4916
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004917 ctx->ring_fd = ring_fd;
4918 ctx->ring_file = ring_file;
4919
Jens Axboe6c271ce2019-01-10 11:22:30 -07004920 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004921 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03004922 struct io_kiocb *req;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004923
Pavel Begunkov196be952019-11-07 01:41:06 +03004924 req = io_get_req(ctx, statep);
4925 if (unlikely(!req)) {
4926 if (!submitted)
4927 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004928 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06004929 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07004930 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004931 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03004932 break;
4933 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004934
Jens Axboed3656342019-12-18 09:50:26 -07004935 /* will complete beyond this point, count as submitted */
4936 submitted++;
4937
4938 if (unlikely(req->opcode >= IORING_OP_LAST)) {
4939 io_cqring_add_event(req, -EINVAL);
4940 io_double_put_req(req);
4941 break;
4942 }
4943
4944 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004945 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
4946 if (!mm_fault) {
4947 use_mm(ctx->sqo_mm);
4948 *mm = ctx->sqo_mm;
4949 }
4950 }
4951
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004952 req->has_user = *mm != NULL;
4953 req->in_async = async;
4954 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07004955 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
4956 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004957 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004958 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004959 }
4960
Pavel Begunkov9466f432020-01-25 22:34:01 +03004961 if (unlikely(submitted != nr)) {
4962 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
4963
4964 percpu_ref_put_many(&ctx->refs, nr - ref_used);
4965 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004966 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004967 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004968 if (statep)
4969 io_submit_state_end(&state);
4970
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004971 /* Commit SQ ring head once we've consumed and submitted all SQEs */
4972 io_commit_sqring(ctx);
4973
Jens Axboe6c271ce2019-01-10 11:22:30 -07004974 return submitted;
4975}
4976
4977static int io_sq_thread(void *data)
4978{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004979 struct io_ring_ctx *ctx = data;
4980 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07004981 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004982 mm_segment_t old_fs;
4983 DEFINE_WAIT(wait);
4984 unsigned inflight;
4985 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07004986 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004987
Jens Axboe206aefd2019-11-07 18:27:42 -07004988 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08004989
Jens Axboe6c271ce2019-01-10 11:22:30 -07004990 old_fs = get_fs();
4991 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07004992 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004993
Jens Axboec1edbf52019-11-10 16:56:04 -07004994 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004995 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004996 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004997
4998 if (inflight) {
4999 unsigned nr_events = 0;
5000
5001 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06005002 /*
5003 * inflight is the count of the maximum possible
5004 * entries we submitted, but it can be smaller
5005 * if we dropped some of them. If we don't have
5006 * poll entries available, then we know that we
5007 * have nothing left to poll for. Reset the
5008 * inflight count to zero in that case.
5009 */
5010 mutex_lock(&ctx->uring_lock);
5011 if (!list_empty(&ctx->poll_list))
5012 __io_iopoll_check(ctx, &nr_events, 0);
5013 else
5014 inflight = 0;
5015 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005016 } else {
5017 /*
5018 * Normal IO, just pretend everything completed.
5019 * We don't have to poll completions for that.
5020 */
5021 nr_events = inflight;
5022 }
5023
5024 inflight -= nr_events;
5025 if (!inflight)
5026 timeout = jiffies + ctx->sq_thread_idle;
5027 }
5028
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005029 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005030
5031 /*
5032 * If submit got -EBUSY, flag us as needing the application
5033 * to enter the kernel to reap and flush events.
5034 */
5035 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005036 /*
5037 * We're polling. If we're within the defined idle
5038 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005039 * to sleep. The exception is if we got EBUSY doing
5040 * more IO, we should wait for the application to
5041 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005042 */
Jens Axboec1edbf52019-11-10 16:56:04 -07005043 if (inflight ||
5044 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06005045 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005046 continue;
5047 }
5048
5049 /*
5050 * Drop cur_mm before scheduling, we can't hold it for
5051 * long periods (or over schedule()). Do this before
5052 * adding ourselves to the waitqueue, as the unuse/drop
5053 * may sleep.
5054 */
5055 if (cur_mm) {
5056 unuse_mm(cur_mm);
5057 mmput(cur_mm);
5058 cur_mm = NULL;
5059 }
5060
5061 prepare_to_wait(&ctx->sqo_wait, &wait,
5062 TASK_INTERRUPTIBLE);
5063
5064 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005065 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005066 /* make sure to read SQ tail after writing flags */
5067 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005068
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005069 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005070 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005071 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005072 finish_wait(&ctx->sqo_wait, &wait);
5073 break;
5074 }
5075 if (signal_pending(current))
5076 flush_signals(current);
5077 schedule();
5078 finish_wait(&ctx->sqo_wait, &wait);
5079
Hristo Venev75b28af2019-08-26 17:23:46 +00005080 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005081 continue;
5082 }
5083 finish_wait(&ctx->sqo_wait, &wait);
5084
Hristo Venev75b28af2019-08-26 17:23:46 +00005085 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005086 }
5087
Jens Axboe8a4955f2019-12-09 14:52:35 -07005088 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005089 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005090 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005091 if (ret > 0)
5092 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005093 }
5094
5095 set_fs(old_fs);
5096 if (cur_mm) {
5097 unuse_mm(cur_mm);
5098 mmput(cur_mm);
5099 }
Jens Axboe181e4482019-11-25 08:52:30 -07005100 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06005101
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005102 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06005103
Jens Axboe6c271ce2019-01-10 11:22:30 -07005104 return 0;
5105}
5106
Jens Axboebda52162019-09-24 13:47:15 -06005107struct io_wait_queue {
5108 struct wait_queue_entry wq;
5109 struct io_ring_ctx *ctx;
5110 unsigned to_wait;
5111 unsigned nr_timeouts;
5112};
5113
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005114static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06005115{
5116 struct io_ring_ctx *ctx = iowq->ctx;
5117
5118 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08005119 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06005120 * started waiting. For timeouts, we always want to return to userspace,
5121 * regardless of event count.
5122 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005123 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06005124 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
5125}
5126
5127static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
5128 int wake_flags, void *key)
5129{
5130 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
5131 wq);
5132
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005133 /* use noflush == true, as we can't safely rely on locking context */
5134 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06005135 return -1;
5136
5137 return autoremove_wake_function(curr, mode, wake_flags, key);
5138}
5139
Jens Axboe2b188cc2019-01-07 10:46:33 -07005140/*
5141 * Wait until events become available, if we don't already have some. The
5142 * application must reap them itself, as they reside on the shared cq ring.
5143 */
5144static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
5145 const sigset_t __user *sig, size_t sigsz)
5146{
Jens Axboebda52162019-09-24 13:47:15 -06005147 struct io_wait_queue iowq = {
5148 .wq = {
5149 .private = current,
5150 .func = io_wake_function,
5151 .entry = LIST_HEAD_INIT(iowq.wq.entry),
5152 },
5153 .ctx = ctx,
5154 .to_wait = min_events,
5155 };
Hristo Venev75b28af2019-08-26 17:23:46 +00005156 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005157 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005158
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005159 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005160 return 0;
5161
5162 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005163#ifdef CONFIG_COMPAT
5164 if (in_compat_syscall())
5165 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07005166 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005167 else
5168#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07005169 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005170
Jens Axboe2b188cc2019-01-07 10:46:33 -07005171 if (ret)
5172 return ret;
5173 }
5174
Jens Axboebda52162019-09-24 13:47:15 -06005175 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005176 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06005177 do {
5178 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
5179 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005180 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06005181 break;
5182 schedule();
5183 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005184 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06005185 break;
5186 }
5187 } while (1);
5188 finish_wait(&ctx->wait, &iowq.wq);
5189
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005190 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005191
Hristo Venev75b28af2019-08-26 17:23:46 +00005192 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005193}
5194
Jens Axboe6b063142019-01-10 22:13:58 -07005195static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
5196{
5197#if defined(CONFIG_UNIX)
5198 if (ctx->ring_sock) {
5199 struct sock *sock = ctx->ring_sock->sk;
5200 struct sk_buff *skb;
5201
5202 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
5203 kfree_skb(skb);
5204 }
5205#else
5206 int i;
5207
Jens Axboe65e19f52019-10-26 07:20:21 -06005208 for (i = 0; i < ctx->nr_user_files; i++) {
5209 struct file *file;
5210
5211 file = io_file_from_index(ctx, i);
5212 if (file)
5213 fput(file);
5214 }
Jens Axboe6b063142019-01-10 22:13:58 -07005215#endif
5216}
5217
Jens Axboe05f3fb32019-12-09 11:22:50 -07005218static void io_file_ref_kill(struct percpu_ref *ref)
5219{
5220 struct fixed_file_data *data;
5221
5222 data = container_of(ref, struct fixed_file_data, refs);
5223 complete(&data->done);
5224}
5225
Jens Axboe6b063142019-01-10 22:13:58 -07005226static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
5227{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005228 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06005229 unsigned nr_tables, i;
5230
Jens Axboe05f3fb32019-12-09 11:22:50 -07005231 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07005232 return -ENXIO;
5233
Jens Axboe05f3fb32019-12-09 11:22:50 -07005234 /* protect against inflight atomic switch, which drops the ref */
Jens Axboe05f3fb32019-12-09 11:22:50 -07005235 percpu_ref_get(&data->refs);
Jens Axboee46a7952020-01-17 11:15:34 -07005236 /* wait for existing switches */
5237 flush_work(&data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005238 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
5239 wait_for_completion(&data->done);
5240 percpu_ref_put(&data->refs);
Jens Axboee46a7952020-01-17 11:15:34 -07005241 /* flush potential new switch */
5242 flush_work(&data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005243 percpu_ref_exit(&data->refs);
5244
Jens Axboe6b063142019-01-10 22:13:58 -07005245 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06005246 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
5247 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005248 kfree(data->table[i].files);
5249 kfree(data->table);
5250 kfree(data);
5251 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005252 ctx->nr_user_files = 0;
5253 return 0;
5254}
5255
Jens Axboe6c271ce2019-01-10 11:22:30 -07005256static void io_sq_thread_stop(struct io_ring_ctx *ctx)
5257{
5258 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07005259 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005260 /*
5261 * The park is a bit of a work-around, without it we get
5262 * warning spews on shutdown with SQPOLL set and affinity
5263 * set to a single CPU.
5264 */
Jens Axboe06058632019-04-13 09:26:03 -06005265 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005266 kthread_stop(ctx->sqo_thread);
5267 ctx->sqo_thread = NULL;
5268 }
5269}
5270
Jens Axboe6b063142019-01-10 22:13:58 -07005271static void io_finish_async(struct io_ring_ctx *ctx)
5272{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005273 io_sq_thread_stop(ctx);
5274
Jens Axboe561fb042019-10-24 07:25:42 -06005275 if (ctx->io_wq) {
5276 io_wq_destroy(ctx->io_wq);
5277 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005278 }
5279}
5280
5281#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07005282/*
5283 * Ensure the UNIX gc is aware of our file set, so we are certain that
5284 * the io_uring can be safely unregistered on process exit, even if we have
5285 * loops in the file referencing.
5286 */
5287static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
5288{
5289 struct sock *sk = ctx->ring_sock->sk;
5290 struct scm_fp_list *fpl;
5291 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06005292 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07005293
5294 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
5295 unsigned long inflight = ctx->user->unix_inflight + nr;
5296
5297 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
5298 return -EMFILE;
5299 }
5300
5301 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
5302 if (!fpl)
5303 return -ENOMEM;
5304
5305 skb = alloc_skb(0, GFP_KERNEL);
5306 if (!skb) {
5307 kfree(fpl);
5308 return -ENOMEM;
5309 }
5310
5311 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07005312
Jens Axboe08a45172019-10-03 08:11:03 -06005313 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07005314 fpl->user = get_uid(ctx->user);
5315 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005316 struct file *file = io_file_from_index(ctx, i + offset);
5317
5318 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06005319 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06005320 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06005321 unix_inflight(fpl->user, fpl->fp[nr_files]);
5322 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07005323 }
5324
Jens Axboe08a45172019-10-03 08:11:03 -06005325 if (nr_files) {
5326 fpl->max = SCM_MAX_FD;
5327 fpl->count = nr_files;
5328 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005329 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06005330 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
5331 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07005332
Jens Axboe08a45172019-10-03 08:11:03 -06005333 for (i = 0; i < nr_files; i++)
5334 fput(fpl->fp[i]);
5335 } else {
5336 kfree_skb(skb);
5337 kfree(fpl);
5338 }
Jens Axboe6b063142019-01-10 22:13:58 -07005339
5340 return 0;
5341}
5342
5343/*
5344 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
5345 * causes regular reference counting to break down. We rely on the UNIX
5346 * garbage collection to take care of this problem for us.
5347 */
5348static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5349{
5350 unsigned left, total;
5351 int ret = 0;
5352
5353 total = 0;
5354 left = ctx->nr_user_files;
5355 while (left) {
5356 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07005357
5358 ret = __io_sqe_files_scm(ctx, this_files, total);
5359 if (ret)
5360 break;
5361 left -= this_files;
5362 total += this_files;
5363 }
5364
5365 if (!ret)
5366 return 0;
5367
5368 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005369 struct file *file = io_file_from_index(ctx, total);
5370
5371 if (file)
5372 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07005373 total++;
5374 }
5375
5376 return ret;
5377}
5378#else
5379static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5380{
5381 return 0;
5382}
5383#endif
5384
Jens Axboe65e19f52019-10-26 07:20:21 -06005385static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
5386 unsigned nr_files)
5387{
5388 int i;
5389
5390 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005391 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005392 unsigned this_files;
5393
5394 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
5395 table->files = kcalloc(this_files, sizeof(struct file *),
5396 GFP_KERNEL);
5397 if (!table->files)
5398 break;
5399 nr_files -= this_files;
5400 }
5401
5402 if (i == nr_tables)
5403 return 0;
5404
5405 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005406 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005407 kfree(table->files);
5408 }
5409 return 1;
5410}
5411
Jens Axboe05f3fb32019-12-09 11:22:50 -07005412static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06005413{
5414#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06005415 struct sock *sock = ctx->ring_sock->sk;
5416 struct sk_buff_head list, *head = &sock->sk_receive_queue;
5417 struct sk_buff *skb;
5418 int i;
5419
5420 __skb_queue_head_init(&list);
5421
5422 /*
5423 * Find the skb that holds this file in its SCM_RIGHTS. When found,
5424 * remove this entry and rearrange the file array.
5425 */
5426 skb = skb_dequeue(head);
5427 while (skb) {
5428 struct scm_fp_list *fp;
5429
5430 fp = UNIXCB(skb).fp;
5431 for (i = 0; i < fp->count; i++) {
5432 int left;
5433
5434 if (fp->fp[i] != file)
5435 continue;
5436
5437 unix_notinflight(fp->user, fp->fp[i]);
5438 left = fp->count - 1 - i;
5439 if (left) {
5440 memmove(&fp->fp[i], &fp->fp[i + 1],
5441 left * sizeof(struct file *));
5442 }
5443 fp->count--;
5444 if (!fp->count) {
5445 kfree_skb(skb);
5446 skb = NULL;
5447 } else {
5448 __skb_queue_tail(&list, skb);
5449 }
5450 fput(file);
5451 file = NULL;
5452 break;
5453 }
5454
5455 if (!file)
5456 break;
5457
5458 __skb_queue_tail(&list, skb);
5459
5460 skb = skb_dequeue(head);
5461 }
5462
5463 if (skb_peek(&list)) {
5464 spin_lock_irq(&head->lock);
5465 while ((skb = __skb_dequeue(&list)) != NULL)
5466 __skb_queue_tail(head, skb);
5467 spin_unlock_irq(&head->lock);
5468 }
5469#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07005470 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06005471#endif
5472}
5473
Jens Axboe05f3fb32019-12-09 11:22:50 -07005474struct io_file_put {
5475 struct llist_node llist;
5476 struct file *file;
5477 struct completion *done;
5478};
5479
5480static void io_ring_file_ref_switch(struct work_struct *work)
5481{
5482 struct io_file_put *pfile, *tmp;
5483 struct fixed_file_data *data;
5484 struct llist_node *node;
5485
5486 data = container_of(work, struct fixed_file_data, ref_work);
5487
5488 while ((node = llist_del_all(&data->put_llist)) != NULL) {
5489 llist_for_each_entry_safe(pfile, tmp, node, llist) {
5490 io_ring_file_put(data->ctx, pfile->file);
5491 if (pfile->done)
5492 complete(pfile->done);
5493 else
5494 kfree(pfile);
5495 }
5496 }
5497
5498 percpu_ref_get(&data->refs);
5499 percpu_ref_switch_to_percpu(&data->refs);
5500}
5501
5502static void io_file_data_ref_zero(struct percpu_ref *ref)
5503{
5504 struct fixed_file_data *data;
5505
5506 data = container_of(ref, struct fixed_file_data, refs);
5507
5508 /* we can't safely switch from inside this context, punt to wq */
5509 queue_work(system_wq, &data->ref_work);
5510}
5511
5512static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
5513 unsigned nr_args)
5514{
5515 __s32 __user *fds = (__s32 __user *) arg;
5516 unsigned nr_tables;
5517 struct file *file;
5518 int fd, ret = 0;
5519 unsigned i;
5520
5521 if (ctx->file_data)
5522 return -EBUSY;
5523 if (!nr_args)
5524 return -EINVAL;
5525 if (nr_args > IORING_MAX_FIXED_FILES)
5526 return -EMFILE;
5527
5528 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
5529 if (!ctx->file_data)
5530 return -ENOMEM;
5531 ctx->file_data->ctx = ctx;
5532 init_completion(&ctx->file_data->done);
5533
5534 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
5535 ctx->file_data->table = kcalloc(nr_tables,
5536 sizeof(struct fixed_file_table),
5537 GFP_KERNEL);
5538 if (!ctx->file_data->table) {
5539 kfree(ctx->file_data);
5540 ctx->file_data = NULL;
5541 return -ENOMEM;
5542 }
5543
5544 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
5545 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
5546 kfree(ctx->file_data->table);
5547 kfree(ctx->file_data);
5548 ctx->file_data = NULL;
5549 return -ENOMEM;
5550 }
5551 ctx->file_data->put_llist.first = NULL;
5552 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
5553
5554 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
5555 percpu_ref_exit(&ctx->file_data->refs);
5556 kfree(ctx->file_data->table);
5557 kfree(ctx->file_data);
5558 ctx->file_data = NULL;
5559 return -ENOMEM;
5560 }
5561
5562 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
5563 struct fixed_file_table *table;
5564 unsigned index;
5565
5566 ret = -EFAULT;
5567 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
5568 break;
5569 /* allow sparse sets */
5570 if (fd == -1) {
5571 ret = 0;
5572 continue;
5573 }
5574
5575 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
5576 index = i & IORING_FILE_TABLE_MASK;
5577 file = fget(fd);
5578
5579 ret = -EBADF;
5580 if (!file)
5581 break;
5582
5583 /*
5584 * Don't allow io_uring instances to be registered. If UNIX
5585 * isn't enabled, then this causes a reference cycle and this
5586 * instance can never get freed. If UNIX is enabled we'll
5587 * handle it just fine, but there's still no point in allowing
5588 * a ring fd as it doesn't support regular read/write anyway.
5589 */
5590 if (file->f_op == &io_uring_fops) {
5591 fput(file);
5592 break;
5593 }
5594 ret = 0;
5595 table->files[index] = file;
5596 }
5597
5598 if (ret) {
5599 for (i = 0; i < ctx->nr_user_files; i++) {
5600 file = io_file_from_index(ctx, i);
5601 if (file)
5602 fput(file);
5603 }
5604 for (i = 0; i < nr_tables; i++)
5605 kfree(ctx->file_data->table[i].files);
5606
5607 kfree(ctx->file_data->table);
5608 kfree(ctx->file_data);
5609 ctx->file_data = NULL;
5610 ctx->nr_user_files = 0;
5611 return ret;
5612 }
5613
5614 ret = io_sqe_files_scm(ctx);
5615 if (ret)
5616 io_sqe_files_unregister(ctx);
5617
5618 return ret;
5619}
5620
Jens Axboec3a31e62019-10-03 13:59:56 -06005621static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
5622 int index)
5623{
5624#if defined(CONFIG_UNIX)
5625 struct sock *sock = ctx->ring_sock->sk;
5626 struct sk_buff_head *head = &sock->sk_receive_queue;
5627 struct sk_buff *skb;
5628
5629 /*
5630 * See if we can merge this file into an existing skb SCM_RIGHTS
5631 * file set. If there's no room, fall back to allocating a new skb
5632 * and filling it in.
5633 */
5634 spin_lock_irq(&head->lock);
5635 skb = skb_peek(head);
5636 if (skb) {
5637 struct scm_fp_list *fpl = UNIXCB(skb).fp;
5638
5639 if (fpl->count < SCM_MAX_FD) {
5640 __skb_unlink(skb, head);
5641 spin_unlock_irq(&head->lock);
5642 fpl->fp[fpl->count] = get_file(file);
5643 unix_inflight(fpl->user, fpl->fp[fpl->count]);
5644 fpl->count++;
5645 spin_lock_irq(&head->lock);
5646 __skb_queue_head(head, skb);
5647 } else {
5648 skb = NULL;
5649 }
5650 }
5651 spin_unlock_irq(&head->lock);
5652
5653 if (skb) {
5654 fput(file);
5655 return 0;
5656 }
5657
5658 return __io_sqe_files_scm(ctx, 1, index);
5659#else
5660 return 0;
5661#endif
5662}
5663
Jens Axboe05f3fb32019-12-09 11:22:50 -07005664static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06005665{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005666 struct fixed_file_data *data;
5667
5668 data = container_of(ref, struct fixed_file_data, refs);
5669 clear_bit(FFD_F_ATOMIC, &data->state);
5670}
5671
5672static bool io_queue_file_removal(struct fixed_file_data *data,
5673 struct file *file)
5674{
5675 struct io_file_put *pfile, pfile_stack;
5676 DECLARE_COMPLETION_ONSTACK(done);
5677
5678 /*
5679 * If we fail allocating the struct we need for doing async reomval
5680 * of this file, just punt to sync and wait for it.
5681 */
5682 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
5683 if (!pfile) {
5684 pfile = &pfile_stack;
5685 pfile->done = &done;
5686 }
5687
5688 pfile->file = file;
5689 llist_add(&pfile->llist, &data->put_llist);
5690
5691 if (pfile == &pfile_stack) {
5692 if (!test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5693 percpu_ref_put(&data->refs);
5694 percpu_ref_switch_to_atomic(&data->refs,
5695 io_atomic_switch);
5696 }
5697 wait_for_completion(&done);
5698 flush_work(&data->ref_work);
5699 return false;
5700 }
5701
5702 return true;
5703}
5704
5705static int __io_sqe_files_update(struct io_ring_ctx *ctx,
5706 struct io_uring_files_update *up,
5707 unsigned nr_args)
5708{
5709 struct fixed_file_data *data = ctx->file_data;
5710 bool ref_switch = false;
5711 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005712 __s32 __user *fds;
5713 int fd, i, err;
5714 __u32 done;
5715
Jens Axboe05f3fb32019-12-09 11:22:50 -07005716 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06005717 return -EOVERFLOW;
5718 if (done > ctx->nr_user_files)
5719 return -EINVAL;
5720
5721 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005722 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06005723 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005724 struct fixed_file_table *table;
5725 unsigned index;
5726
Jens Axboec3a31e62019-10-03 13:59:56 -06005727 err = 0;
5728 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
5729 err = -EFAULT;
5730 break;
5731 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07005732 i = array_index_nospec(up->offset, ctx->nr_user_files);
5733 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06005734 index = i & IORING_FILE_TABLE_MASK;
5735 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005736 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06005737 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005738 if (io_queue_file_removal(data, file))
5739 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06005740 }
5741 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06005742 file = fget(fd);
5743 if (!file) {
5744 err = -EBADF;
5745 break;
5746 }
5747 /*
5748 * Don't allow io_uring instances to be registered. If
5749 * UNIX isn't enabled, then this causes a reference
5750 * cycle and this instance can never get freed. If UNIX
5751 * is enabled we'll handle it just fine, but there's
5752 * still no point in allowing a ring fd as it doesn't
5753 * support regular read/write anyway.
5754 */
5755 if (file->f_op == &io_uring_fops) {
5756 fput(file);
5757 err = -EBADF;
5758 break;
5759 }
Jens Axboe65e19f52019-10-26 07:20:21 -06005760 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005761 err = io_sqe_file_register(ctx, file, i);
5762 if (err)
5763 break;
5764 }
5765 nr_args--;
5766 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005767 up->offset++;
5768 }
5769
5770 if (ref_switch && !test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5771 percpu_ref_put(&data->refs);
5772 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06005773 }
5774
5775 return done ? done : err;
5776}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005777static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
5778 unsigned nr_args)
5779{
5780 struct io_uring_files_update up;
5781
5782 if (!ctx->file_data)
5783 return -ENXIO;
5784 if (!nr_args)
5785 return -EINVAL;
5786 if (copy_from_user(&up, arg, sizeof(up)))
5787 return -EFAULT;
5788 if (up.resv)
5789 return -EINVAL;
5790
5791 return __io_sqe_files_update(ctx, &up, nr_args);
5792}
Jens Axboec3a31e62019-10-03 13:59:56 -06005793
Jens Axboe7d723062019-11-12 22:31:31 -07005794static void io_put_work(struct io_wq_work *work)
5795{
5796 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5797
5798 io_put_req(req);
5799}
5800
5801static void io_get_work(struct io_wq_work *work)
5802{
5803 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5804
5805 refcount_inc(&req->refs);
5806}
5807
Pavel Begunkov24369c22020-01-28 03:15:48 +03005808static int io_init_wq_offload(struct io_ring_ctx *ctx,
5809 struct io_uring_params *p)
5810{
5811 struct io_wq_data data;
5812 struct fd f;
5813 struct io_ring_ctx *ctx_attach;
5814 unsigned int concurrency;
5815 int ret = 0;
5816
5817 data.user = ctx->user;
5818 data.get_work = io_get_work;
5819 data.put_work = io_put_work;
5820
5821 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
5822 /* Do QD, or 4 * CPUS, whatever is smallest */
5823 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
5824
5825 ctx->io_wq = io_wq_create(concurrency, &data);
5826 if (IS_ERR(ctx->io_wq)) {
5827 ret = PTR_ERR(ctx->io_wq);
5828 ctx->io_wq = NULL;
5829 }
5830 return ret;
5831 }
5832
5833 f = fdget(p->wq_fd);
5834 if (!f.file)
5835 return -EBADF;
5836
5837 if (f.file->f_op != &io_uring_fops) {
5838 ret = -EINVAL;
5839 goto out_fput;
5840 }
5841
5842 ctx_attach = f.file->private_data;
5843 /* @io_wq is protected by holding the fd */
5844 if (!io_wq_get(ctx_attach->io_wq, &data)) {
5845 ret = -EINVAL;
5846 goto out_fput;
5847 }
5848
5849 ctx->io_wq = ctx_attach->io_wq;
5850out_fput:
5851 fdput(f);
5852 return ret;
5853}
5854
Jens Axboe6c271ce2019-01-10 11:22:30 -07005855static int io_sq_offload_start(struct io_ring_ctx *ctx,
5856 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005857{
5858 int ret;
5859
Jens Axboe6c271ce2019-01-10 11:22:30 -07005860 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005861 mmgrab(current->mm);
5862 ctx->sqo_mm = current->mm;
5863
Jens Axboe6c271ce2019-01-10 11:22:30 -07005864 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06005865 ret = -EPERM;
5866 if (!capable(CAP_SYS_ADMIN))
5867 goto err;
5868
Jens Axboe917257d2019-04-13 09:28:55 -06005869 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
5870 if (!ctx->sq_thread_idle)
5871 ctx->sq_thread_idle = HZ;
5872
Jens Axboe6c271ce2019-01-10 11:22:30 -07005873 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06005874 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005875
Jens Axboe917257d2019-04-13 09:28:55 -06005876 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06005877 if (cpu >= nr_cpu_ids)
5878 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08005879 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06005880 goto err;
5881
Jens Axboe6c271ce2019-01-10 11:22:30 -07005882 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
5883 ctx, cpu,
5884 "io_uring-sq");
5885 } else {
5886 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
5887 "io_uring-sq");
5888 }
5889 if (IS_ERR(ctx->sqo_thread)) {
5890 ret = PTR_ERR(ctx->sqo_thread);
5891 ctx->sqo_thread = NULL;
5892 goto err;
5893 }
5894 wake_up_process(ctx->sqo_thread);
5895 } else if (p->flags & IORING_SETUP_SQ_AFF) {
5896 /* Can't have SQ_AFF without SQPOLL */
5897 ret = -EINVAL;
5898 goto err;
5899 }
5900
Pavel Begunkov24369c22020-01-28 03:15:48 +03005901 ret = io_init_wq_offload(ctx, p);
5902 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005903 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005904
5905 return 0;
5906err:
Jens Axboe54a91f32019-09-10 09:15:04 -06005907 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005908 mmdrop(ctx->sqo_mm);
5909 ctx->sqo_mm = NULL;
5910 return ret;
5911}
5912
5913static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
5914{
5915 atomic_long_sub(nr_pages, &user->locked_vm);
5916}
5917
5918static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
5919{
5920 unsigned long page_limit, cur_pages, new_pages;
5921
5922 /* Don't allow more pages than we can safely lock */
5923 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
5924
5925 do {
5926 cur_pages = atomic_long_read(&user->locked_vm);
5927 new_pages = cur_pages + nr_pages;
5928 if (new_pages > page_limit)
5929 return -ENOMEM;
5930 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
5931 new_pages) != cur_pages);
5932
5933 return 0;
5934}
5935
5936static void io_mem_free(void *ptr)
5937{
Mark Rutland52e04ef2019-04-30 17:30:21 +01005938 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005939
Mark Rutland52e04ef2019-04-30 17:30:21 +01005940 if (!ptr)
5941 return;
5942
5943 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005944 if (put_page_testzero(page))
5945 free_compound_page(page);
5946}
5947
5948static void *io_mem_alloc(size_t size)
5949{
5950 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
5951 __GFP_NORETRY;
5952
5953 return (void *) __get_free_pages(gfp_flags, get_order(size));
5954}
5955
Hristo Venev75b28af2019-08-26 17:23:46 +00005956static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
5957 size_t *sq_offset)
5958{
5959 struct io_rings *rings;
5960 size_t off, sq_array_size;
5961
5962 off = struct_size(rings, cqes, cq_entries);
5963 if (off == SIZE_MAX)
5964 return SIZE_MAX;
5965
5966#ifdef CONFIG_SMP
5967 off = ALIGN(off, SMP_CACHE_BYTES);
5968 if (off == 0)
5969 return SIZE_MAX;
5970#endif
5971
5972 sq_array_size = array_size(sizeof(u32), sq_entries);
5973 if (sq_array_size == SIZE_MAX)
5974 return SIZE_MAX;
5975
5976 if (check_add_overflow(off, sq_array_size, &off))
5977 return SIZE_MAX;
5978
5979 if (sq_offset)
5980 *sq_offset = off;
5981
5982 return off;
5983}
5984
Jens Axboe2b188cc2019-01-07 10:46:33 -07005985static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
5986{
Hristo Venev75b28af2019-08-26 17:23:46 +00005987 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005988
Hristo Venev75b28af2019-08-26 17:23:46 +00005989 pages = (size_t)1 << get_order(
5990 rings_size(sq_entries, cq_entries, NULL));
5991 pages += (size_t)1 << get_order(
5992 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07005993
Hristo Venev75b28af2019-08-26 17:23:46 +00005994 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005995}
5996
Jens Axboeedafcce2019-01-09 09:16:05 -07005997static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
5998{
5999 int i, j;
6000
6001 if (!ctx->user_bufs)
6002 return -ENXIO;
6003
6004 for (i = 0; i < ctx->nr_user_bufs; i++) {
6005 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6006
6007 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07006008 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006009
6010 if (ctx->account_mem)
6011 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006012 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006013 imu->nr_bvecs = 0;
6014 }
6015
6016 kfree(ctx->user_bufs);
6017 ctx->user_bufs = NULL;
6018 ctx->nr_user_bufs = 0;
6019 return 0;
6020}
6021
6022static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6023 void __user *arg, unsigned index)
6024{
6025 struct iovec __user *src;
6026
6027#ifdef CONFIG_COMPAT
6028 if (ctx->compat) {
6029 struct compat_iovec __user *ciovs;
6030 struct compat_iovec ciov;
6031
6032 ciovs = (struct compat_iovec __user *) arg;
6033 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6034 return -EFAULT;
6035
Jens Axboed55e5f52019-12-11 16:12:15 -07006036 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006037 dst->iov_len = ciov.iov_len;
6038 return 0;
6039 }
6040#endif
6041 src = (struct iovec __user *) arg;
6042 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6043 return -EFAULT;
6044 return 0;
6045}
6046
6047static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6048 unsigned nr_args)
6049{
6050 struct vm_area_struct **vmas = NULL;
6051 struct page **pages = NULL;
6052 int i, j, got_pages = 0;
6053 int ret = -EINVAL;
6054
6055 if (ctx->user_bufs)
6056 return -EBUSY;
6057 if (!nr_args || nr_args > UIO_MAXIOV)
6058 return -EINVAL;
6059
6060 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
6061 GFP_KERNEL);
6062 if (!ctx->user_bufs)
6063 return -ENOMEM;
6064
6065 for (i = 0; i < nr_args; i++) {
6066 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6067 unsigned long off, start, end, ubuf;
6068 int pret, nr_pages;
6069 struct iovec iov;
6070 size_t size;
6071
6072 ret = io_copy_iov(ctx, &iov, arg, i);
6073 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03006074 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07006075
6076 /*
6077 * Don't impose further limits on the size and buffer
6078 * constraints here, we'll -EINVAL later when IO is
6079 * submitted if they are wrong.
6080 */
6081 ret = -EFAULT;
6082 if (!iov.iov_base || !iov.iov_len)
6083 goto err;
6084
6085 /* arbitrary limit, but we need something */
6086 if (iov.iov_len > SZ_1G)
6087 goto err;
6088
6089 ubuf = (unsigned long) iov.iov_base;
6090 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
6091 start = ubuf >> PAGE_SHIFT;
6092 nr_pages = end - start;
6093
6094 if (ctx->account_mem) {
6095 ret = io_account_mem(ctx->user, nr_pages);
6096 if (ret)
6097 goto err;
6098 }
6099
6100 ret = 0;
6101 if (!pages || nr_pages > got_pages) {
6102 kfree(vmas);
6103 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006104 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07006105 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006106 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07006107 sizeof(struct vm_area_struct *),
6108 GFP_KERNEL);
6109 if (!pages || !vmas) {
6110 ret = -ENOMEM;
6111 if (ctx->account_mem)
6112 io_unaccount_mem(ctx->user, nr_pages);
6113 goto err;
6114 }
6115 got_pages = nr_pages;
6116 }
6117
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006118 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07006119 GFP_KERNEL);
6120 ret = -ENOMEM;
6121 if (!imu->bvec) {
6122 if (ctx->account_mem)
6123 io_unaccount_mem(ctx->user, nr_pages);
6124 goto err;
6125 }
6126
6127 ret = 0;
6128 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07006129 pret = get_user_pages(ubuf, nr_pages,
6130 FOLL_WRITE | FOLL_LONGTERM,
6131 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006132 if (pret == nr_pages) {
6133 /* don't support file backed memory */
6134 for (j = 0; j < nr_pages; j++) {
6135 struct vm_area_struct *vma = vmas[j];
6136
6137 if (vma->vm_file &&
6138 !is_file_hugepages(vma->vm_file)) {
6139 ret = -EOPNOTSUPP;
6140 break;
6141 }
6142 }
6143 } else {
6144 ret = pret < 0 ? pret : -EFAULT;
6145 }
6146 up_read(&current->mm->mmap_sem);
6147 if (ret) {
6148 /*
6149 * if we did partial map, or found file backed vmas,
6150 * release any pages we did get
6151 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07006152 if (pret > 0)
6153 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006154 if (ctx->account_mem)
6155 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006156 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006157 goto err;
6158 }
6159
6160 off = ubuf & ~PAGE_MASK;
6161 size = iov.iov_len;
6162 for (j = 0; j < nr_pages; j++) {
6163 size_t vec_len;
6164
6165 vec_len = min_t(size_t, size, PAGE_SIZE - off);
6166 imu->bvec[j].bv_page = pages[j];
6167 imu->bvec[j].bv_len = vec_len;
6168 imu->bvec[j].bv_offset = off;
6169 off = 0;
6170 size -= vec_len;
6171 }
6172 /* store original address for later verification */
6173 imu->ubuf = ubuf;
6174 imu->len = iov.iov_len;
6175 imu->nr_bvecs = nr_pages;
6176
6177 ctx->nr_user_bufs++;
6178 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006179 kvfree(pages);
6180 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006181 return 0;
6182err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006183 kvfree(pages);
6184 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006185 io_sqe_buffer_unregister(ctx);
6186 return ret;
6187}
6188
Jens Axboe9b402842019-04-11 11:45:41 -06006189static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
6190{
6191 __s32 __user *fds = arg;
6192 int fd;
6193
6194 if (ctx->cq_ev_fd)
6195 return -EBUSY;
6196
6197 if (copy_from_user(&fd, fds, sizeof(*fds)))
6198 return -EFAULT;
6199
6200 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
6201 if (IS_ERR(ctx->cq_ev_fd)) {
6202 int ret = PTR_ERR(ctx->cq_ev_fd);
6203 ctx->cq_ev_fd = NULL;
6204 return ret;
6205 }
6206
6207 return 0;
6208}
6209
6210static int io_eventfd_unregister(struct io_ring_ctx *ctx)
6211{
6212 if (ctx->cq_ev_fd) {
6213 eventfd_ctx_put(ctx->cq_ev_fd);
6214 ctx->cq_ev_fd = NULL;
6215 return 0;
6216 }
6217
6218 return -ENXIO;
6219}
6220
Jens Axboe2b188cc2019-01-07 10:46:33 -07006221static void io_ring_ctx_free(struct io_ring_ctx *ctx)
6222{
Jens Axboe6b063142019-01-10 22:13:58 -07006223 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006224 if (ctx->sqo_mm)
6225 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07006226
6227 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07006228 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07006229 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06006230 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07006231
Jens Axboe2b188cc2019-01-07 10:46:33 -07006232#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07006233 if (ctx->ring_sock) {
6234 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006235 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07006236 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006237#endif
6238
Hristo Venev75b28af2019-08-26 17:23:46 +00006239 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006240 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006241
6242 percpu_ref_exit(&ctx->refs);
6243 if (ctx->account_mem)
6244 io_unaccount_mem(ctx->user,
6245 ring_pages(ctx->sq_entries, ctx->cq_entries));
6246 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07006247 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07006248 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07006249 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07006250 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006251 kfree(ctx);
6252}
6253
6254static __poll_t io_uring_poll(struct file *file, poll_table *wait)
6255{
6256 struct io_ring_ctx *ctx = file->private_data;
6257 __poll_t mask = 0;
6258
6259 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02006260 /*
6261 * synchronizes with barrier from wq_has_sleeper call in
6262 * io_commit_cqring
6263 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006264 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00006265 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
6266 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006267 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08006268 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006269 mask |= EPOLLIN | EPOLLRDNORM;
6270
6271 return mask;
6272}
6273
6274static int io_uring_fasync(int fd, struct file *file, int on)
6275{
6276 struct io_ring_ctx *ctx = file->private_data;
6277
6278 return fasync_helper(fd, file, on, &ctx->cq_fasync);
6279}
6280
Jens Axboe071698e2020-01-28 10:04:42 -07006281static int io_remove_personalities(int id, void *p, void *data)
6282{
6283 struct io_ring_ctx *ctx = data;
6284 const struct cred *cred;
6285
6286 cred = idr_remove(&ctx->personality_idr, id);
6287 if (cred)
6288 put_cred(cred);
6289 return 0;
6290}
6291
Jens Axboe2b188cc2019-01-07 10:46:33 -07006292static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
6293{
6294 mutex_lock(&ctx->uring_lock);
6295 percpu_ref_kill(&ctx->refs);
6296 mutex_unlock(&ctx->uring_lock);
6297
Jens Axboe5262f562019-09-17 12:26:57 -06006298 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07006299 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06006300
6301 if (ctx->io_wq)
6302 io_wq_cancel_all(ctx->io_wq);
6303
Jens Axboedef596e2019-01-09 08:59:42 -07006304 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07006305 /* if we failed setting up the ctx, we might not have any rings */
6306 if (ctx->rings)
6307 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07006308 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07006309 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006310 io_ring_ctx_free(ctx);
6311}
6312
6313static int io_uring_release(struct inode *inode, struct file *file)
6314{
6315 struct io_ring_ctx *ctx = file->private_data;
6316
6317 file->private_data = NULL;
6318 io_ring_ctx_wait_and_kill(ctx);
6319 return 0;
6320}
6321
Jens Axboefcb323c2019-10-24 12:39:47 -06006322static void io_uring_cancel_files(struct io_ring_ctx *ctx,
6323 struct files_struct *files)
6324{
6325 struct io_kiocb *req;
6326 DEFINE_WAIT(wait);
6327
6328 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07006329 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06006330
6331 spin_lock_irq(&ctx->inflight_lock);
6332 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07006333 if (req->work.files != files)
6334 continue;
6335 /* req is being completed, ignore */
6336 if (!refcount_inc_not_zero(&req->refs))
6337 continue;
6338 cancel_req = req;
6339 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06006340 }
Jens Axboe768134d2019-11-10 20:30:53 -07006341 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006342 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07006343 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06006344 spin_unlock_irq(&ctx->inflight_lock);
6345
Jens Axboe768134d2019-11-10 20:30:53 -07006346 /* We need to keep going until we don't find a matching req */
6347 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006348 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08006349
6350 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
6351 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06006352 schedule();
6353 }
Jens Axboe768134d2019-11-10 20:30:53 -07006354 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06006355}
6356
6357static int io_uring_flush(struct file *file, void *data)
6358{
6359 struct io_ring_ctx *ctx = file->private_data;
6360
6361 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006362 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
6363 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06006364 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006365 }
Jens Axboefcb323c2019-10-24 12:39:47 -06006366 return 0;
6367}
6368
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006369static void *io_uring_validate_mmap_request(struct file *file,
6370 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006371{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006372 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006373 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006374 struct page *page;
6375 void *ptr;
6376
6377 switch (offset) {
6378 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00006379 case IORING_OFF_CQ_RING:
6380 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006381 break;
6382 case IORING_OFF_SQES:
6383 ptr = ctx->sq_sqes;
6384 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006385 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006386 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006387 }
6388
6389 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07006390 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006391 return ERR_PTR(-EINVAL);
6392
6393 return ptr;
6394}
6395
6396#ifdef CONFIG_MMU
6397
6398static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6399{
6400 size_t sz = vma->vm_end - vma->vm_start;
6401 unsigned long pfn;
6402 void *ptr;
6403
6404 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
6405 if (IS_ERR(ptr))
6406 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006407
6408 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
6409 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
6410}
6411
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006412#else /* !CONFIG_MMU */
6413
6414static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6415{
6416 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
6417}
6418
6419static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
6420{
6421 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
6422}
6423
6424static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
6425 unsigned long addr, unsigned long len,
6426 unsigned long pgoff, unsigned long flags)
6427{
6428 void *ptr;
6429
6430 ptr = io_uring_validate_mmap_request(file, pgoff, len);
6431 if (IS_ERR(ptr))
6432 return PTR_ERR(ptr);
6433
6434 return (unsigned long) ptr;
6435}
6436
6437#endif /* !CONFIG_MMU */
6438
Jens Axboe2b188cc2019-01-07 10:46:33 -07006439SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
6440 u32, min_complete, u32, flags, const sigset_t __user *, sig,
6441 size_t, sigsz)
6442{
6443 struct io_ring_ctx *ctx;
6444 long ret = -EBADF;
6445 int submitted = 0;
6446 struct fd f;
6447
Jens Axboe6c271ce2019-01-10 11:22:30 -07006448 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006449 return -EINVAL;
6450
6451 f = fdget(fd);
6452 if (!f.file)
6453 return -EBADF;
6454
6455 ret = -EOPNOTSUPP;
6456 if (f.file->f_op != &io_uring_fops)
6457 goto out_fput;
6458
6459 ret = -ENXIO;
6460 ctx = f.file->private_data;
6461 if (!percpu_ref_tryget(&ctx->refs))
6462 goto out_fput;
6463
Jens Axboe6c271ce2019-01-10 11:22:30 -07006464 /*
6465 * For SQ polling, the thread will do all submissions and completions.
6466 * Just return the requested submit count, and wake the thread if
6467 * we were asked to.
6468 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006469 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006470 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07006471 if (!list_empty_careful(&ctx->cq_overflow_list))
6472 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006473 if (flags & IORING_ENTER_SQ_WAKEUP)
6474 wake_up(&ctx->sqo_wait);
6475 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006476 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006477 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006478
Jens Axboe44d28272020-01-16 19:00:24 -07006479 if (current->mm != ctx->sqo_mm ||
6480 current_cred() != ctx->creds) {
6481 ret = -EPERM;
6482 goto out;
6483 }
6484
Jens Axboe2b188cc2019-01-07 10:46:33 -07006485 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006486 /* already have mm, so io_submit_sqes() won't try to grab it */
6487 cur_mm = ctx->sqo_mm;
6488 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
6489 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006490 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006491
6492 if (submitted != to_submit)
6493 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006494 }
6495 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07006496 unsigned nr_events = 0;
6497
Jens Axboe2b188cc2019-01-07 10:46:33 -07006498 min_complete = min(min_complete, ctx->cq_entries);
6499
Jens Axboedef596e2019-01-09 08:59:42 -07006500 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07006501 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07006502 } else {
6503 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
6504 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006505 }
6506
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006507out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03006508 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006509out_fput:
6510 fdput(f);
6511 return submitted ? submitted : ret;
6512}
6513
6514static const struct file_operations io_uring_fops = {
6515 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06006516 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07006517 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006518#ifndef CONFIG_MMU
6519 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
6520 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
6521#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006522 .poll = io_uring_poll,
6523 .fasync = io_uring_fasync,
6524};
6525
6526static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
6527 struct io_uring_params *p)
6528{
Hristo Venev75b28af2019-08-26 17:23:46 +00006529 struct io_rings *rings;
6530 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006531
Hristo Venev75b28af2019-08-26 17:23:46 +00006532 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
6533 if (size == SIZE_MAX)
6534 return -EOVERFLOW;
6535
6536 rings = io_mem_alloc(size);
6537 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006538 return -ENOMEM;
6539
Hristo Venev75b28af2019-08-26 17:23:46 +00006540 ctx->rings = rings;
6541 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
6542 rings->sq_ring_mask = p->sq_entries - 1;
6543 rings->cq_ring_mask = p->cq_entries - 1;
6544 rings->sq_ring_entries = p->sq_entries;
6545 rings->cq_ring_entries = p->cq_entries;
6546 ctx->sq_mask = rings->sq_ring_mask;
6547 ctx->cq_mask = rings->cq_ring_mask;
6548 ctx->sq_entries = rings->sq_ring_entries;
6549 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006550
6551 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07006552 if (size == SIZE_MAX) {
6553 io_mem_free(ctx->rings);
6554 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006555 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07006556 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006557
6558 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07006559 if (!ctx->sq_sqes) {
6560 io_mem_free(ctx->rings);
6561 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006562 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07006563 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006564
Jens Axboe2b188cc2019-01-07 10:46:33 -07006565 return 0;
6566}
6567
6568/*
6569 * Allocate an anonymous fd, this is what constitutes the application
6570 * visible backing of an io_uring instance. The application mmaps this
6571 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
6572 * we have to tie this fd to a socket for file garbage collection purposes.
6573 */
6574static int io_uring_get_fd(struct io_ring_ctx *ctx)
6575{
6576 struct file *file;
6577 int ret;
6578
6579#if defined(CONFIG_UNIX)
6580 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
6581 &ctx->ring_sock);
6582 if (ret)
6583 return ret;
6584#endif
6585
6586 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
6587 if (ret < 0)
6588 goto err;
6589
6590 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
6591 O_RDWR | O_CLOEXEC);
6592 if (IS_ERR(file)) {
6593 put_unused_fd(ret);
6594 ret = PTR_ERR(file);
6595 goto err;
6596 }
6597
6598#if defined(CONFIG_UNIX)
6599 ctx->ring_sock->file = file;
6600#endif
6601 fd_install(ret, file);
6602 return ret;
6603err:
6604#if defined(CONFIG_UNIX)
6605 sock_release(ctx->ring_sock);
6606 ctx->ring_sock = NULL;
6607#endif
6608 return ret;
6609}
6610
6611static int io_uring_create(unsigned entries, struct io_uring_params *p)
6612{
6613 struct user_struct *user = NULL;
6614 struct io_ring_ctx *ctx;
6615 bool account_mem;
6616 int ret;
6617
Jens Axboe8110c1a2019-12-28 15:39:54 -07006618 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006619 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006620 if (entries > IORING_MAX_ENTRIES) {
6621 if (!(p->flags & IORING_SETUP_CLAMP))
6622 return -EINVAL;
6623 entries = IORING_MAX_ENTRIES;
6624 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006625
6626 /*
6627 * Use twice as many entries for the CQ ring. It's possible for the
6628 * application to drive a higher depth than the size of the SQ ring,
6629 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06006630 * some flexibility in overcommitting a bit. If the application has
6631 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
6632 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07006633 */
6634 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06006635 if (p->flags & IORING_SETUP_CQSIZE) {
6636 /*
6637 * If IORING_SETUP_CQSIZE is set, we do the same roundup
6638 * to a power-of-two, if it isn't already. We do NOT impose
6639 * any cq vs sq ring sizing.
6640 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07006641 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06006642 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006643 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
6644 if (!(p->flags & IORING_SETUP_CLAMP))
6645 return -EINVAL;
6646 p->cq_entries = IORING_MAX_CQ_ENTRIES;
6647 }
Jens Axboe33a107f2019-10-04 12:10:03 -06006648 p->cq_entries = roundup_pow_of_two(p->cq_entries);
6649 } else {
6650 p->cq_entries = 2 * p->sq_entries;
6651 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006652
6653 user = get_uid(current_user());
6654 account_mem = !capable(CAP_IPC_LOCK);
6655
6656 if (account_mem) {
6657 ret = io_account_mem(user,
6658 ring_pages(p->sq_entries, p->cq_entries));
6659 if (ret) {
6660 free_uid(user);
6661 return ret;
6662 }
6663 }
6664
6665 ctx = io_ring_ctx_alloc(p);
6666 if (!ctx) {
6667 if (account_mem)
6668 io_unaccount_mem(user, ring_pages(p->sq_entries,
6669 p->cq_entries));
6670 free_uid(user);
6671 return -ENOMEM;
6672 }
6673 ctx->compat = in_compat_syscall();
6674 ctx->account_mem = account_mem;
6675 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07006676 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07006677
6678 ret = io_allocate_scq_urings(ctx, p);
6679 if (ret)
6680 goto err;
6681
Jens Axboe6c271ce2019-01-10 11:22:30 -07006682 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006683 if (ret)
6684 goto err;
6685
Jens Axboe2b188cc2019-01-07 10:46:33 -07006686 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006687 p->sq_off.head = offsetof(struct io_rings, sq.head);
6688 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
6689 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
6690 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
6691 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
6692 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
6693 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006694
6695 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006696 p->cq_off.head = offsetof(struct io_rings, cq.head);
6697 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
6698 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
6699 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
6700 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
6701 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06006702
Jens Axboe044c1ab2019-10-28 09:15:33 -06006703 /*
6704 * Install ring fd as the very last thing, so we don't risk someone
6705 * having closed it before we finish setup
6706 */
6707 ret = io_uring_get_fd(ctx);
6708 if (ret < 0)
6709 goto err;
6710
Jens Axboeda8c9692019-12-02 18:51:26 -07006711 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07006712 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
6713 IORING_FEAT_CUR_PERSONALITY;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006714 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006715 return ret;
6716err:
6717 io_ring_ctx_wait_and_kill(ctx);
6718 return ret;
6719}
6720
6721/*
6722 * Sets up an aio uring context, and returns the fd. Applications asks for a
6723 * ring size, we return the actual sq/cq ring sizes (among other things) in the
6724 * params structure passed in.
6725 */
6726static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
6727{
6728 struct io_uring_params p;
6729 long ret;
6730 int i;
6731
6732 if (copy_from_user(&p, params, sizeof(p)))
6733 return -EFAULT;
6734 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
6735 if (p.resv[i])
6736 return -EINVAL;
6737 }
6738
Jens Axboe6c271ce2019-01-10 11:22:30 -07006739 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07006740 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03006741 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006742 return -EINVAL;
6743
6744 ret = io_uring_create(entries, &p);
6745 if (ret < 0)
6746 return ret;
6747
6748 if (copy_to_user(params, &p, sizeof(p)))
6749 return -EFAULT;
6750
6751 return ret;
6752}
6753
6754SYSCALL_DEFINE2(io_uring_setup, u32, entries,
6755 struct io_uring_params __user *, params)
6756{
6757 return io_uring_setup(entries, params);
6758}
6759
Jens Axboe66f4af92020-01-16 15:36:52 -07006760static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
6761{
6762 struct io_uring_probe *p;
6763 size_t size;
6764 int i, ret;
6765
6766 size = struct_size(p, ops, nr_args);
6767 if (size == SIZE_MAX)
6768 return -EOVERFLOW;
6769 p = kzalloc(size, GFP_KERNEL);
6770 if (!p)
6771 return -ENOMEM;
6772
6773 ret = -EFAULT;
6774 if (copy_from_user(p, arg, size))
6775 goto out;
6776 ret = -EINVAL;
6777 if (memchr_inv(p, 0, size))
6778 goto out;
6779
6780 p->last_op = IORING_OP_LAST - 1;
6781 if (nr_args > IORING_OP_LAST)
6782 nr_args = IORING_OP_LAST;
6783
6784 for (i = 0; i < nr_args; i++) {
6785 p->ops[i].op = i;
6786 if (!io_op_defs[i].not_supported)
6787 p->ops[i].flags = IO_URING_OP_SUPPORTED;
6788 }
6789 p->ops_len = i;
6790
6791 ret = 0;
6792 if (copy_to_user(arg, p, size))
6793 ret = -EFAULT;
6794out:
6795 kfree(p);
6796 return ret;
6797}
6798
Jens Axboe071698e2020-01-28 10:04:42 -07006799static int io_register_personality(struct io_ring_ctx *ctx)
6800{
6801 const struct cred *creds = get_current_cred();
6802 int id;
6803
6804 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
6805 USHRT_MAX, GFP_KERNEL);
6806 if (id < 0)
6807 put_cred(creds);
6808 return id;
6809}
6810
6811static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
6812{
6813 const struct cred *old_creds;
6814
6815 old_creds = idr_remove(&ctx->personality_idr, id);
6816 if (old_creds) {
6817 put_cred(old_creds);
6818 return 0;
6819 }
6820
6821 return -EINVAL;
6822}
6823
6824static bool io_register_op_must_quiesce(int op)
6825{
6826 switch (op) {
6827 case IORING_UNREGISTER_FILES:
6828 case IORING_REGISTER_FILES_UPDATE:
6829 case IORING_REGISTER_PROBE:
6830 case IORING_REGISTER_PERSONALITY:
6831 case IORING_UNREGISTER_PERSONALITY:
6832 return false;
6833 default:
6834 return true;
6835 }
6836}
6837
Jens Axboeedafcce2019-01-09 09:16:05 -07006838static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
6839 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06006840 __releases(ctx->uring_lock)
6841 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07006842{
6843 int ret;
6844
Jens Axboe35fa71a2019-04-22 10:23:23 -06006845 /*
6846 * We're inside the ring mutex, if the ref is already dying, then
6847 * someone else killed the ctx or is already going through
6848 * io_uring_register().
6849 */
6850 if (percpu_ref_is_dying(&ctx->refs))
6851 return -ENXIO;
6852
Jens Axboe071698e2020-01-28 10:04:42 -07006853 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006854 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06006855
Jens Axboe05f3fb32019-12-09 11:22:50 -07006856 /*
6857 * Drop uring mutex before waiting for references to exit. If
6858 * another thread is currently inside io_uring_enter() it might
6859 * need to grab the uring_lock to make progress. If we hold it
6860 * here across the drain wait, then we can deadlock. It's safe
6861 * to drop the mutex here, since no new references will come in
6862 * after we've killed the percpu ref.
6863 */
6864 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07006865 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006866 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07006867 if (ret) {
6868 percpu_ref_resurrect(&ctx->refs);
6869 ret = -EINTR;
6870 goto out;
6871 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006872 }
Jens Axboeedafcce2019-01-09 09:16:05 -07006873
6874 switch (opcode) {
6875 case IORING_REGISTER_BUFFERS:
6876 ret = io_sqe_buffer_register(ctx, arg, nr_args);
6877 break;
6878 case IORING_UNREGISTER_BUFFERS:
6879 ret = -EINVAL;
6880 if (arg || nr_args)
6881 break;
6882 ret = io_sqe_buffer_unregister(ctx);
6883 break;
Jens Axboe6b063142019-01-10 22:13:58 -07006884 case IORING_REGISTER_FILES:
6885 ret = io_sqe_files_register(ctx, arg, nr_args);
6886 break;
6887 case IORING_UNREGISTER_FILES:
6888 ret = -EINVAL;
6889 if (arg || nr_args)
6890 break;
6891 ret = io_sqe_files_unregister(ctx);
6892 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06006893 case IORING_REGISTER_FILES_UPDATE:
6894 ret = io_sqe_files_update(ctx, arg, nr_args);
6895 break;
Jens Axboe9b402842019-04-11 11:45:41 -06006896 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07006897 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06006898 ret = -EINVAL;
6899 if (nr_args != 1)
6900 break;
6901 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07006902 if (ret)
6903 break;
6904 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
6905 ctx->eventfd_async = 1;
6906 else
6907 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06006908 break;
6909 case IORING_UNREGISTER_EVENTFD:
6910 ret = -EINVAL;
6911 if (arg || nr_args)
6912 break;
6913 ret = io_eventfd_unregister(ctx);
6914 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07006915 case IORING_REGISTER_PROBE:
6916 ret = -EINVAL;
6917 if (!arg || nr_args > 256)
6918 break;
6919 ret = io_probe(ctx, arg, nr_args);
6920 break;
Jens Axboe071698e2020-01-28 10:04:42 -07006921 case IORING_REGISTER_PERSONALITY:
6922 ret = -EINVAL;
6923 if (arg || nr_args)
6924 break;
6925 ret = io_register_personality(ctx);
6926 break;
6927 case IORING_UNREGISTER_PERSONALITY:
6928 ret = -EINVAL;
6929 if (arg)
6930 break;
6931 ret = io_unregister_personality(ctx, nr_args);
6932 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07006933 default:
6934 ret = -EINVAL;
6935 break;
6936 }
6937
Jens Axboe071698e2020-01-28 10:04:42 -07006938 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006939 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07006940 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07006941out:
6942 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006943 }
Jens Axboeedafcce2019-01-09 09:16:05 -07006944 return ret;
6945}
6946
6947SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
6948 void __user *, arg, unsigned int, nr_args)
6949{
6950 struct io_ring_ctx *ctx;
6951 long ret = -EBADF;
6952 struct fd f;
6953
6954 f = fdget(fd);
6955 if (!f.file)
6956 return -EBADF;
6957
6958 ret = -EOPNOTSUPP;
6959 if (f.file->f_op != &io_uring_fops)
6960 goto out_fput;
6961
6962 ctx = f.file->private_data;
6963
6964 mutex_lock(&ctx->uring_lock);
6965 ret = __io_uring_register(ctx, opcode, arg, nr_args);
6966 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006967 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
6968 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006969out_fput:
6970 fdput(f);
6971 return ret;
6972}
6973
Jens Axboe2b188cc2019-01-07 10:46:33 -07006974static int __init io_uring_init(void)
6975{
Jens Axboed3656342019-12-18 09:50:26 -07006976 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006977 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
6978 return 0;
6979};
6980__initcall(io_uring_init);