blob: 7a97a6c1c09e018138ac73b6fcb7bf6aa5f7942c [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 Axboeff002b32020-02-07 16:05:21 -070078#include <linux/fs_struct.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030079#include <linux/splice.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070080
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020081#define CREATE_TRACE_POINTS
82#include <trace/events/io_uring.h>
83
Jens Axboe2b188cc2019-01-07 10:46:33 -070084#include <uapi/linux/io_uring.h>
85
86#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060087#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070088
Daniel Xu5277dea2019-09-14 14:23:45 -070089#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060090#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060091
92/*
93 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
94 */
95#define IORING_FILE_TABLE_SHIFT 9
96#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
97#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
98#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070099
100struct io_uring {
101 u32 head ____cacheline_aligned_in_smp;
102 u32 tail ____cacheline_aligned_in_smp;
103};
104
Stefan Bühler1e84b972019-04-24 23:54:16 +0200105/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000106 * This data is shared with the application through the mmap at offsets
107 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200108 *
109 * The offsets to the member fields are published through struct
110 * io_sqring_offsets when calling io_uring_setup.
111 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000112struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200113 /*
114 * Head and tail offsets into the ring; the offsets need to be
115 * masked to get valid indices.
116 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000117 * The kernel controls head of the sq ring and the tail of the cq ring,
118 * and the application controls tail of the sq ring and the head of the
119 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200120 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000121 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000123 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200124 * ring_entries - 1)
125 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000126 u32 sq_ring_mask, cq_ring_mask;
127 /* Ring sizes (constant, power of 2) */
128 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200129 /*
130 * Number of invalid entries dropped by the kernel due to
131 * invalid index stored in array
132 *
133 * Written by the kernel, shouldn't be modified by the
134 * application (i.e. get number of "new events" by comparing to
135 * cached value).
136 *
137 * After a new SQ head value was read by the application this
138 * counter includes all submissions that were dropped reaching
139 * the new SQ head (and possibly more).
140 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000141 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200142 /*
143 * Runtime flags
144 *
145 * Written by the kernel, shouldn't be modified by the
146 * application.
147 *
148 * The application needs a full memory barrier before checking
149 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
150 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000151 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200152 /*
153 * Number of completion events lost because the queue was full;
154 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800155 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200156 * the completion queue.
157 *
158 * Written by the kernel, shouldn't be modified by the
159 * application (i.e. get number of "new events" by comparing to
160 * cached value).
161 *
162 * As completion events come in out of order this counter is not
163 * ordered with any other data.
164 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000165 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200166 /*
167 * Ring buffer of completion events.
168 *
169 * The kernel writes completion events fresh every time they are
170 * produced, so the application is allowed to modify pending
171 * entries.
172 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000173 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700174};
175
Jens Axboeedafcce2019-01-09 09:16:05 -0700176struct io_mapped_ubuf {
177 u64 ubuf;
178 size_t len;
179 struct bio_vec *bvec;
180 unsigned int nr_bvecs;
181};
182
Jens Axboe65e19f52019-10-26 07:20:21 -0600183struct fixed_file_table {
184 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700185};
186
Jens Axboe05f3fb32019-12-09 11:22:50 -0700187struct fixed_file_data {
188 struct fixed_file_table *table;
189 struct io_ring_ctx *ctx;
190
191 struct percpu_ref refs;
192 struct llist_head put_llist;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700193 struct work_struct ref_work;
194 struct completion done;
195};
196
Jens Axboe2b188cc2019-01-07 10:46:33 -0700197struct io_ring_ctx {
198 struct {
199 struct percpu_ref refs;
200 } ____cacheline_aligned_in_smp;
201
202 struct {
203 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800204 unsigned int compat: 1;
205 unsigned int account_mem: 1;
206 unsigned int cq_overflow_flushed: 1;
207 unsigned int drain_next: 1;
208 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700209
Hristo Venev75b28af2019-08-26 17:23:46 +0000210 /*
211 * Ring buffer of indices into array of io_uring_sqe, which is
212 * mmapped by the application using the IORING_OFF_SQES offset.
213 *
214 * This indirection could e.g. be used to assign fixed
215 * io_uring_sqe entries to operations and only submit them to
216 * the queue when needed.
217 *
218 * The kernel modifies neither the indices array nor the entries
219 * array.
220 */
221 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700222 unsigned cached_sq_head;
223 unsigned sq_entries;
224 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700225 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600226 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700227 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700228 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600229
230 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600231 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700232 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700233
Jens Axboefcb323c2019-10-24 12:39:47 -0600234 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700235 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700236 } ____cacheline_aligned_in_smp;
237
Hristo Venev75b28af2019-08-26 17:23:46 +0000238 struct io_rings *rings;
239
Jens Axboe2b188cc2019-01-07 10:46:33 -0700240 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600241 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700242 struct task_struct *sqo_thread; /* if using sq thread polling */
243 struct mm_struct *sqo_mm;
244 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700245
Jens Axboe6b063142019-01-10 22:13:58 -0700246 /*
247 * If used, fixed file set. Writers must ensure that ->refs is dead,
248 * readers must ensure that ->refs is alive as long as the file* is
249 * used. Only updated through io_uring_register(2).
250 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700251 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700252 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300253 int ring_fd;
254 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700255
Jens Axboeedafcce2019-01-09 09:16:05 -0700256 /* if used, fixed mapped user buffers */
257 unsigned nr_user_bufs;
258 struct io_mapped_ubuf *user_bufs;
259
Jens Axboe2b188cc2019-01-07 10:46:33 -0700260 struct user_struct *user;
261
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700262 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700263
Jens Axboe206aefd2019-11-07 18:27:42 -0700264 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
265 struct completion *completions;
266
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700267 /* if all else fails... */
268 struct io_kiocb *fallback_req;
269
Jens Axboe206aefd2019-11-07 18:27:42 -0700270#if defined(CONFIG_UNIX)
271 struct socket *ring_sock;
272#endif
273
Jens Axboe071698e2020-01-28 10:04:42 -0700274 struct idr personality_idr;
275
Jens Axboe206aefd2019-11-07 18:27:42 -0700276 struct {
277 unsigned cached_cq_tail;
278 unsigned cq_entries;
279 unsigned cq_mask;
280 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700281 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700282 struct wait_queue_head cq_wait;
283 struct fasync_struct *cq_fasync;
284 struct eventfd_ctx *cq_ev_fd;
285 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700286
287 struct {
288 struct mutex uring_lock;
289 wait_queue_head_t wait;
290 } ____cacheline_aligned_in_smp;
291
292 struct {
293 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700294 struct llist_head poll_llist;
295
Jens Axboedef596e2019-01-09 08:59:42 -0700296 /*
297 * ->poll_list is protected by the ctx->uring_lock for
298 * io_uring instances that don't use IORING_SETUP_SQPOLL.
299 * For SQPOLL, only the single threaded io_sq_thread() will
300 * manipulate the list, hence no extra locking is needed there.
301 */
302 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700303 struct hlist_head *cancel_hash;
304 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700305 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600306
307 spinlock_t inflight_lock;
308 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700309 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700310};
311
Jens Axboe09bb8392019-03-13 12:39:28 -0600312/*
313 * First field must be the file pointer in all the
314 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
315 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700316struct io_poll_iocb {
317 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700318 union {
319 struct wait_queue_head *head;
320 u64 addr;
321 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700322 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600323 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700324 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700325 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700326};
327
Jens Axboeb5dba592019-12-11 14:02:38 -0700328struct io_close {
329 struct file *file;
330 struct file *put_file;
331 int fd;
332};
333
Jens Axboead8a48a2019-11-15 08:49:11 -0700334struct io_timeout_data {
335 struct io_kiocb *req;
336 struct hrtimer timer;
337 struct timespec64 ts;
338 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300339 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700340};
341
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700342struct io_accept {
343 struct file *file;
344 struct sockaddr __user *addr;
345 int __user *addr_len;
346 int flags;
347};
348
349struct io_sync {
350 struct file *file;
351 loff_t len;
352 loff_t off;
353 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700354 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700355};
356
Jens Axboefbf23842019-12-17 18:45:56 -0700357struct io_cancel {
358 struct file *file;
359 u64 addr;
360};
361
Jens Axboeb29472e2019-12-17 18:50:29 -0700362struct io_timeout {
363 struct file *file;
364 u64 addr;
365 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700366 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700367};
368
Jens Axboe9adbd452019-12-20 08:45:55 -0700369struct io_rw {
370 /* NOTE: kiocb has the file as the first member, so don't do it here */
371 struct kiocb kiocb;
372 u64 addr;
373 u64 len;
374};
375
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700376struct io_connect {
377 struct file *file;
378 struct sockaddr __user *addr;
379 int addr_len;
380};
381
Jens Axboee47293f2019-12-20 08:58:21 -0700382struct io_sr_msg {
383 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700384 union {
385 struct user_msghdr __user *msg;
386 void __user *buf;
387 };
Jens Axboee47293f2019-12-20 08:58:21 -0700388 int msg_flags;
Jens Axboefddafac2020-01-04 20:19:44 -0700389 size_t len;
Jens Axboee47293f2019-12-20 08:58:21 -0700390};
391
Jens Axboe15b71ab2019-12-11 11:20:36 -0700392struct io_open {
393 struct file *file;
394 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700395 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700396 unsigned mask;
397 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700398 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700399 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700400 struct open_how how;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700401};
402
Jens Axboe05f3fb32019-12-09 11:22:50 -0700403struct io_files_update {
404 struct file *file;
405 u64 arg;
406 u32 nr_args;
407 u32 offset;
408};
409
Jens Axboe4840e412019-12-25 22:03:45 -0700410struct io_fadvise {
411 struct file *file;
412 u64 offset;
413 u32 len;
414 u32 advice;
415};
416
Jens Axboec1ca7572019-12-25 22:18:28 -0700417struct io_madvise {
418 struct file *file;
419 u64 addr;
420 u32 len;
421 u32 advice;
422};
423
Jens Axboe3e4827b2020-01-08 15:18:09 -0700424struct io_epoll {
425 struct file *file;
426 int epfd;
427 int op;
428 int fd;
429 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700430};
431
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300432struct io_splice {
433 struct file *file_out;
434 struct file *file_in;
435 loff_t off_out;
436 loff_t off_in;
437 u64 len;
438 unsigned int flags;
439};
440
Jens Axboef499a022019-12-02 16:28:46 -0700441struct io_async_connect {
442 struct sockaddr_storage address;
443};
444
Jens Axboe03b12302019-12-02 18:50:25 -0700445struct io_async_msghdr {
446 struct iovec fast_iov[UIO_FASTIOV];
447 struct iovec *iov;
448 struct sockaddr __user *uaddr;
449 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700450 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700451};
452
Jens Axboef67676d2019-12-02 11:03:47 -0700453struct io_async_rw {
454 struct iovec fast_iov[UIO_FASTIOV];
455 struct iovec *iov;
456 ssize_t nr_segs;
457 ssize_t size;
458};
459
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700460struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700461 union {
462 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700463 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700464 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700465 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700466 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700467};
468
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300469enum {
470 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
471 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
472 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
473 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
474 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
475
476 REQ_F_LINK_NEXT_BIT,
477 REQ_F_FAIL_LINK_BIT,
478 REQ_F_INFLIGHT_BIT,
479 REQ_F_CUR_POS_BIT,
480 REQ_F_NOWAIT_BIT,
481 REQ_F_IOPOLL_COMPLETED_BIT,
482 REQ_F_LINK_TIMEOUT_BIT,
483 REQ_F_TIMEOUT_BIT,
484 REQ_F_ISREG_BIT,
485 REQ_F_MUST_PUNT_BIT,
486 REQ_F_TIMEOUT_NOSEQ_BIT,
487 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300488 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700489 REQ_F_OVERFLOW_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300490};
491
492enum {
493 /* ctx owns file */
494 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
495 /* drain existing IO first */
496 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
497 /* linked sqes */
498 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
499 /* doesn't sever on completion < 0 */
500 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
501 /* IOSQE_ASYNC */
502 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
503
504 /* already grabbed next link */
505 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
506 /* fail rest of links */
507 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
508 /* on inflight list */
509 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
510 /* read/write uses file position */
511 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
512 /* must not punt to workers */
513 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
514 /* polled IO has completed */
515 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
516 /* has linked timeout */
517 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
518 /* timeout request */
519 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
520 /* regular file */
521 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
522 /* must be punted even for NONBLOCK */
523 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
524 /* no timeout sequence */
525 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
526 /* completion under lock */
527 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300528 /* needs cleanup */
529 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700530 /* in overflow list */
531 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300532};
533
Jens Axboe09bb8392019-03-13 12:39:28 -0600534/*
535 * NOTE! Each of the iocb union members has the file pointer
536 * as the first entry in their struct definition. So you can
537 * access the file pointer through any of the sub-structs,
538 * or directly as just 'ki_filp' in this struct.
539 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700540struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700541 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600542 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700543 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700544 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700545 struct io_accept accept;
546 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700547 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700548 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700549 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700550 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700551 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700552 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700553 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700554 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700555 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700556 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300557 struct io_splice splice;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700558 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700559
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700560 struct io_async_ctx *io;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300561 /*
562 * llist_node is only used for poll deferred completions
563 */
564 struct llist_node llist_node;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300565 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700566 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700567
568 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700569 union {
570 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700571 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700572 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600573 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700574 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700575 refcount_t refs;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700576 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600577 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600578 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700579
Jens Axboefcb323c2019-10-24 12:39:47 -0600580 struct list_head inflight_entry;
581
Jens Axboe561fb042019-10-24 07:25:42 -0600582 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700583};
584
585#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700586#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700587
Jens Axboe9a56a232019-01-09 09:06:50 -0700588struct io_submit_state {
589 struct blk_plug plug;
590
591 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700592 * io_kiocb alloc cache
593 */
594 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300595 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700596
597 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700598 * File reference cache
599 */
600 struct file *file;
601 unsigned int fd;
602 unsigned int has_refs;
603 unsigned int used_refs;
604 unsigned int ios_left;
605};
606
Jens Axboed3656342019-12-18 09:50:26 -0700607struct io_op_def {
608 /* needs req->io allocated for deferral/async */
609 unsigned async_ctx : 1;
610 /* needs current->mm setup, does mm access */
611 unsigned needs_mm : 1;
612 /* needs req->file assigned */
613 unsigned needs_file : 1;
614 /* needs req->file assigned IFF fd is >= 0 */
615 unsigned fd_non_neg : 1;
616 /* hash wq insertion if file is a regular file */
617 unsigned hash_reg_file : 1;
618 /* unbound wq insertion if file is a non-regular file */
619 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700620 /* opcode is not supported by this kernel */
621 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700622 /* needs file table */
623 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700624 /* needs ->fs */
625 unsigned needs_fs : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700626};
627
628static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300629 [IORING_OP_NOP] = {},
630 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700631 .async_ctx = 1,
632 .needs_mm = 1,
633 .needs_file = 1,
634 .unbound_nonreg_file = 1,
635 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300636 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700637 .async_ctx = 1,
638 .needs_mm = 1,
639 .needs_file = 1,
640 .hash_reg_file = 1,
641 .unbound_nonreg_file = 1,
642 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300643 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700644 .needs_file = 1,
645 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300646 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700647 .needs_file = 1,
648 .unbound_nonreg_file = 1,
649 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300650 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700651 .needs_file = 1,
652 .hash_reg_file = 1,
653 .unbound_nonreg_file = 1,
654 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300655 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700656 .needs_file = 1,
657 .unbound_nonreg_file = 1,
658 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300659 [IORING_OP_POLL_REMOVE] = {},
660 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700661 .needs_file = 1,
662 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300663 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700664 .async_ctx = 1,
665 .needs_mm = 1,
666 .needs_file = 1,
667 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700668 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700669 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300670 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700671 .async_ctx = 1,
672 .needs_mm = 1,
673 .needs_file = 1,
674 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700675 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700676 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300677 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700678 .async_ctx = 1,
679 .needs_mm = 1,
680 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300681 [IORING_OP_TIMEOUT_REMOVE] = {},
682 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700683 .needs_mm = 1,
684 .needs_file = 1,
685 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700686 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700687 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300688 [IORING_OP_ASYNC_CANCEL] = {},
689 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700690 .async_ctx = 1,
691 .needs_mm = 1,
692 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300693 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700694 .async_ctx = 1,
695 .needs_mm = 1,
696 .needs_file = 1,
697 .unbound_nonreg_file = 1,
698 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300699 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700700 .needs_file = 1,
701 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300702 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700703 .needs_file = 1,
704 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700705 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700706 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700707 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300708 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700709 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700710 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700711 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300712 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700713 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700714 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700715 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300716 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700717 .needs_mm = 1,
718 .needs_file = 1,
719 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700720 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700721 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300722 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700723 .needs_mm = 1,
724 .needs_file = 1,
725 .unbound_nonreg_file = 1,
726 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300727 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700728 .needs_mm = 1,
729 .needs_file = 1,
730 .unbound_nonreg_file = 1,
731 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300732 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700733 .needs_file = 1,
734 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300735 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700736 .needs_mm = 1,
737 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300738 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700739 .needs_mm = 1,
740 .needs_file = 1,
741 .unbound_nonreg_file = 1,
742 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300743 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700744 .needs_mm = 1,
745 .needs_file = 1,
746 .unbound_nonreg_file = 1,
747 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300748 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700749 .needs_file = 1,
750 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700751 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700752 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700753 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700754 [IORING_OP_EPOLL_CTL] = {
755 .unbound_nonreg_file = 1,
756 .file_table = 1,
757 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300758 [IORING_OP_SPLICE] = {
759 .needs_file = 1,
760 .hash_reg_file = 1,
761 .unbound_nonreg_file = 1,
762 }
Jens Axboed3656342019-12-18 09:50:26 -0700763};
764
Jens Axboe561fb042019-10-24 07:25:42 -0600765static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700766static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800767static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700768static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700769static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
770static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700771static int __io_sqe_files_update(struct io_ring_ctx *ctx,
772 struct io_uring_files_update *ip,
773 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700774static int io_grab_files(struct io_kiocb *req);
Jens Axboe2faf8522020-02-04 19:54:55 -0700775static void io_ring_file_ref_flush(struct fixed_file_data *data);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300776static void io_cleanup_req(struct io_kiocb *req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300777static int io_file_get(struct io_submit_state *state,
778 struct io_kiocb *req,
779 int fd, struct file **out_file,
780 bool fixed);
Jens Axboede0617e2019-04-06 21:51:27 -0600781
Jens Axboe2b188cc2019-01-07 10:46:33 -0700782static struct kmem_cache *req_cachep;
783
784static const struct file_operations io_uring_fops;
785
786struct sock *io_uring_get_socket(struct file *file)
787{
788#if defined(CONFIG_UNIX)
789 if (file->f_op == &io_uring_fops) {
790 struct io_ring_ctx *ctx = file->private_data;
791
792 return ctx->ring_sock->sk;
793 }
794#endif
795 return NULL;
796}
797EXPORT_SYMBOL(io_uring_get_socket);
798
799static void io_ring_ctx_ref_free(struct percpu_ref *ref)
800{
801 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
802
Jens Axboe206aefd2019-11-07 18:27:42 -0700803 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700804}
805
806static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
807{
808 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700809 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700810
811 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
812 if (!ctx)
813 return NULL;
814
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700815 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
816 if (!ctx->fallback_req)
817 goto err;
818
Jens Axboe206aefd2019-11-07 18:27:42 -0700819 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
820 if (!ctx->completions)
821 goto err;
822
Jens Axboe78076bb2019-12-04 19:56:40 -0700823 /*
824 * Use 5 bits less than the max cq entries, that should give us around
825 * 32 entries per hash list if totally full and uniformly spread.
826 */
827 hash_bits = ilog2(p->cq_entries);
828 hash_bits -= 5;
829 if (hash_bits <= 0)
830 hash_bits = 1;
831 ctx->cancel_hash_bits = hash_bits;
832 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
833 GFP_KERNEL);
834 if (!ctx->cancel_hash)
835 goto err;
836 __hash_init(ctx->cancel_hash, 1U << hash_bits);
837
Roman Gushchin21482892019-05-07 10:01:48 -0700838 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700839 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
840 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700841
842 ctx->flags = p->flags;
843 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700844 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700845 init_completion(&ctx->completions[0]);
846 init_completion(&ctx->completions[1]);
Jens Axboe071698e2020-01-28 10:04:42 -0700847 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700848 mutex_init(&ctx->uring_lock);
849 init_waitqueue_head(&ctx->wait);
850 spin_lock_init(&ctx->completion_lock);
Jens Axboee94f1412019-12-19 12:06:02 -0700851 init_llist_head(&ctx->poll_llist);
Jens Axboedef596e2019-01-09 08:59:42 -0700852 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600853 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600854 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600855 init_waitqueue_head(&ctx->inflight_wait);
856 spin_lock_init(&ctx->inflight_lock);
857 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700858 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700859err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700860 if (ctx->fallback_req)
861 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700862 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700863 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700864 kfree(ctx);
865 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700866}
867
Bob Liu9d858b22019-11-13 18:06:25 +0800868static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600869{
Jackie Liua197f662019-11-08 08:09:12 -0700870 struct io_ring_ctx *ctx = req->ctx;
871
Jens Axboe498ccd92019-10-25 10:04:25 -0600872 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
873 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600874}
875
Bob Liu9d858b22019-11-13 18:06:25 +0800876static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600877{
Pavel Begunkov87987892020-01-18 01:22:30 +0300878 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800879 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600880
Bob Liu9d858b22019-11-13 18:06:25 +0800881 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600882}
883
884static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600885{
886 struct io_kiocb *req;
887
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600888 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800889 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600890 list_del_init(&req->list);
891 return req;
892 }
893
894 return NULL;
895}
896
Jens Axboe5262f562019-09-17 12:26:57 -0600897static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
898{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600899 struct io_kiocb *req;
900
901 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700902 if (req) {
903 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
904 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800905 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700906 list_del_init(&req->list);
907 return req;
908 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600909 }
910
911 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600912}
913
Jens Axboede0617e2019-04-06 21:51:27 -0600914static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700915{
Hristo Venev75b28af2019-08-26 17:23:46 +0000916 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700917
Pavel Begunkov07910152020-01-17 03:52:46 +0300918 /* order cqe stores with ring update */
919 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700920
Pavel Begunkov07910152020-01-17 03:52:46 +0300921 if (wq_has_sleeper(&ctx->cq_wait)) {
922 wake_up_interruptible(&ctx->cq_wait);
923 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700924 }
925}
926
Jens Axboecccf0ee2020-01-27 16:34:48 -0700927static inline void io_req_work_grab_env(struct io_kiocb *req,
928 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -0600929{
Jens Axboecccf0ee2020-01-27 16:34:48 -0700930 if (!req->work.mm && def->needs_mm) {
931 mmgrab(current->mm);
932 req->work.mm = current->mm;
933 }
934 if (!req->work.creds)
935 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -0700936 if (!req->work.fs && def->needs_fs) {
937 spin_lock(&current->fs->lock);
938 if (!current->fs->in_exec) {
939 req->work.fs = current->fs;
940 req->work.fs->users++;
941 } else {
942 req->work.flags |= IO_WQ_WORK_CANCEL;
943 }
944 spin_unlock(&current->fs->lock);
945 }
Jens Axboe6ab23142020-02-08 20:23:59 -0700946 if (!req->work.task_pid)
947 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -0700948}
949
950static inline void io_req_work_drop_env(struct io_kiocb *req)
951{
952 if (req->work.mm) {
953 mmdrop(req->work.mm);
954 req->work.mm = NULL;
955 }
956 if (req->work.creds) {
957 put_cred(req->work.creds);
958 req->work.creds = NULL;
959 }
Jens Axboeff002b32020-02-07 16:05:21 -0700960 if (req->work.fs) {
961 struct fs_struct *fs = req->work.fs;
962
963 spin_lock(&req->work.fs->lock);
964 if (--fs->users)
965 fs = NULL;
966 spin_unlock(&req->work.fs->lock);
967 if (fs)
968 free_fs_struct(fs);
969 }
Jens Axboe561fb042019-10-24 07:25:42 -0600970}
971
Pavel Begunkovdeb6dc02020-02-24 11:30:17 +0300972static inline void io_prep_next_work(struct io_kiocb *req,
973 struct io_kiocb **link)
974{
975 const struct io_op_def *def = &io_op_defs[req->opcode];
976
977 if (!(req->flags & REQ_F_ISREG) && def->unbound_nonreg_file)
978 req->work.flags |= IO_WQ_WORK_UNBOUND;
979
980 *link = io_prep_linked_timeout(req);
981}
982
Jens Axboe94ae5e72019-11-14 19:39:52 -0700983static inline bool io_prep_async_work(struct io_kiocb *req,
984 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600985{
Jens Axboed3656342019-12-18 09:50:26 -0700986 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe561fb042019-10-24 07:25:42 -0600987 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600988
Jens Axboed3656342019-12-18 09:50:26 -0700989 if (req->flags & REQ_F_ISREG) {
990 if (def->hash_reg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700991 do_hashed = true;
Jens Axboed3656342019-12-18 09:50:26 -0700992 } else {
993 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700994 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -0600995 }
Jens Axboecccf0ee2020-01-27 16:34:48 -0700996
997 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -0600998
Jens Axboe94ae5e72019-11-14 19:39:52 -0700999 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001000 return do_hashed;
1001}
1002
Jackie Liua197f662019-11-08 08:09:12 -07001003static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001004{
Jackie Liua197f662019-11-08 08:09:12 -07001005 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001006 struct io_kiocb *link;
1007 bool do_hashed;
1008
1009 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001010
1011 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
1012 req->flags);
1013 if (!do_hashed) {
1014 io_wq_enqueue(ctx->io_wq, &req->work);
1015 } else {
1016 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
1017 file_inode(req->file));
1018 }
Jens Axboe94ae5e72019-11-14 19:39:52 -07001019
1020 if (link)
1021 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001022}
1023
Jens Axboe5262f562019-09-17 12:26:57 -06001024static void io_kill_timeout(struct io_kiocb *req)
1025{
1026 int ret;
1027
Jens Axboe2d283902019-12-04 11:08:05 -07001028 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001029 if (ret != -1) {
1030 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001031 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001032 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001033 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001034 }
1035}
1036
1037static void io_kill_timeouts(struct io_ring_ctx *ctx)
1038{
1039 struct io_kiocb *req, *tmp;
1040
1041 spin_lock_irq(&ctx->completion_lock);
1042 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1043 io_kill_timeout(req);
1044 spin_unlock_irq(&ctx->completion_lock);
1045}
1046
Jens Axboede0617e2019-04-06 21:51:27 -06001047static void io_commit_cqring(struct io_ring_ctx *ctx)
1048{
1049 struct io_kiocb *req;
1050
Jens Axboe5262f562019-09-17 12:26:57 -06001051 while ((req = io_get_timeout_req(ctx)) != NULL)
1052 io_kill_timeout(req);
1053
Jens Axboede0617e2019-04-06 21:51:27 -06001054 __io_commit_cqring(ctx);
1055
Pavel Begunkov87987892020-01-18 01:22:30 +03001056 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001057 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001058}
1059
Jens Axboe2b188cc2019-01-07 10:46:33 -07001060static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1061{
Hristo Venev75b28af2019-08-26 17:23:46 +00001062 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001063 unsigned tail;
1064
1065 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001066 /*
1067 * writes to the cq entry need to come after reading head; the
1068 * control dependency is enough as we're using WRITE_ONCE to
1069 * fill the cq entry
1070 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001071 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001072 return NULL;
1073
1074 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001075 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001076}
1077
Jens Axboef2842ab2020-01-08 11:04:00 -07001078static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1079{
Jens Axboef0b493e2020-02-01 21:30:11 -07001080 if (!ctx->cq_ev_fd)
1081 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001082 if (!ctx->eventfd_async)
1083 return true;
1084 return io_wq_current_is_worker() || in_interrupt();
1085}
1086
Jens Axboef0b493e2020-02-01 21:30:11 -07001087static void __io_cqring_ev_posted(struct io_ring_ctx *ctx, bool trigger_ev)
Jens Axboe8c838782019-03-12 15:48:16 -06001088{
1089 if (waitqueue_active(&ctx->wait))
1090 wake_up(&ctx->wait);
1091 if (waitqueue_active(&ctx->sqo_wait))
1092 wake_up(&ctx->sqo_wait);
Jens Axboef0b493e2020-02-01 21:30:11 -07001093 if (trigger_ev)
Jens Axboe9b402842019-04-11 11:45:41 -06001094 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001095}
1096
Jens Axboef0b493e2020-02-01 21:30:11 -07001097static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
1098{
1099 __io_cqring_ev_posted(ctx, io_should_trigger_evfd(ctx));
1100}
1101
Jens Axboec4a2ed72019-11-21 21:01:26 -07001102/* Returns true if there are no backlogged entries after the flush */
1103static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001104{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001105 struct io_rings *rings = ctx->rings;
1106 struct io_uring_cqe *cqe;
1107 struct io_kiocb *req;
1108 unsigned long flags;
1109 LIST_HEAD(list);
1110
1111 if (!force) {
1112 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001113 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001114 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1115 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001116 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001117 }
1118
1119 spin_lock_irqsave(&ctx->completion_lock, flags);
1120
1121 /* if force is set, the ring is going away. always drop after that */
1122 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001123 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001124
Jens Axboec4a2ed72019-11-21 21:01:26 -07001125 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001126 while (!list_empty(&ctx->cq_overflow_list)) {
1127 cqe = io_get_cqring(ctx);
1128 if (!cqe && !force)
1129 break;
1130
1131 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1132 list);
1133 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001134 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001135 if (cqe) {
1136 WRITE_ONCE(cqe->user_data, req->user_data);
1137 WRITE_ONCE(cqe->res, req->result);
1138 WRITE_ONCE(cqe->flags, 0);
1139 } else {
1140 WRITE_ONCE(ctx->rings->cq_overflow,
1141 atomic_inc_return(&ctx->cached_cq_overflow));
1142 }
1143 }
1144
1145 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001146 if (cqe) {
1147 clear_bit(0, &ctx->sq_check_overflow);
1148 clear_bit(0, &ctx->cq_check_overflow);
1149 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001150 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1151 io_cqring_ev_posted(ctx);
1152
1153 while (!list_empty(&list)) {
1154 req = list_first_entry(&list, struct io_kiocb, list);
1155 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001156 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001157 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001158
1159 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001160}
1161
Jens Axboe78e19bb2019-11-06 15:21:34 -07001162static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001163{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001164 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001165 struct io_uring_cqe *cqe;
1166
Jens Axboe78e19bb2019-11-06 15:21:34 -07001167 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001168
Jens Axboe2b188cc2019-01-07 10:46:33 -07001169 /*
1170 * If we can't get a cq entry, userspace overflowed the
1171 * submission (by quite a lot). Increment the overflow count in
1172 * the ring.
1173 */
1174 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001175 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001176 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001177 WRITE_ONCE(cqe->res, res);
1178 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001179 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001180 WRITE_ONCE(ctx->rings->cq_overflow,
1181 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001182 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001183 if (list_empty(&ctx->cq_overflow_list)) {
1184 set_bit(0, &ctx->sq_check_overflow);
1185 set_bit(0, &ctx->cq_check_overflow);
1186 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001187 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001188 refcount_inc(&req->refs);
1189 req->result = res;
1190 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001191 }
1192}
1193
Jens Axboe78e19bb2019-11-06 15:21:34 -07001194static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001195{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001196 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001197 unsigned long flags;
1198
1199 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001200 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001201 io_commit_cqring(ctx);
1202 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1203
Jens Axboe8c838782019-03-12 15:48:16 -06001204 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001205}
1206
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001207static inline bool io_is_fallback_req(struct io_kiocb *req)
1208{
1209 return req == (struct io_kiocb *)
1210 ((unsigned long) req->ctx->fallback_req & ~1UL);
1211}
1212
1213static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1214{
1215 struct io_kiocb *req;
1216
1217 req = ctx->fallback_req;
1218 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1219 return req;
1220
1221 return NULL;
1222}
1223
Jens Axboe2579f912019-01-09 09:10:43 -07001224static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1225 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001226{
Jens Axboefd6fab22019-03-14 16:30:06 -06001227 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001228 struct io_kiocb *req;
1229
Jens Axboe2579f912019-01-09 09:10:43 -07001230 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001231 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001232 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001233 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001234 } else if (!state->free_reqs) {
1235 size_t sz;
1236 int ret;
1237
1238 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001239 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1240
1241 /*
1242 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1243 * retry single alloc to be on the safe side.
1244 */
1245 if (unlikely(ret <= 0)) {
1246 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1247 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001248 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001249 ret = 1;
1250 }
Jens Axboe2579f912019-01-09 09:10:43 -07001251 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001252 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001253 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001254 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001255 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001256 }
1257
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001258got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001259 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001260 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001261 req->ctx = ctx;
1262 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001263 /* one is dropped after submission, the other at completion */
1264 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001265 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001266 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001267 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001268fallback:
1269 req = io_get_fallback_req(ctx);
1270 if (req)
1271 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001272 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001273 return NULL;
1274}
1275
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001276static inline void io_put_file(struct io_kiocb *req, struct file *file,
1277 bool fixed)
1278{
1279 if (fixed)
1280 percpu_ref_put(&req->ctx->file_data->refs);
1281 else
1282 fput(file);
1283}
1284
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001285static void __io_req_do_free(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07001286{
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001287 if (likely(!io_is_fallback_req(req)))
1288 kmem_cache_free(req_cachep, req);
1289 else
1290 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1291}
1292
Jens Axboec6ca97b302019-12-28 12:11:08 -07001293static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001294{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001295 if (req->flags & REQ_F_NEED_CLEANUP)
1296 io_cleanup_req(req);
1297
YueHaibing96fd84d2020-01-07 22:22:44 +08001298 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001299 if (req->file)
1300 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboecccf0ee2020-01-27 16:34:48 -07001301
1302 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001303}
1304
1305static void __io_free_req(struct io_kiocb *req)
1306{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001307 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001308
Jens Axboefcb323c2019-10-24 12:39:47 -06001309 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001310 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001311 unsigned long flags;
1312
1313 spin_lock_irqsave(&ctx->inflight_lock, flags);
1314 list_del(&req->inflight_entry);
1315 if (waitqueue_active(&ctx->inflight_wait))
1316 wake_up(&ctx->inflight_wait);
1317 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1318 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001319
1320 percpu_ref_put(&req->ctx->refs);
1321 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001322}
1323
Jens Axboec6ca97b302019-12-28 12:11:08 -07001324struct req_batch {
1325 void *reqs[IO_IOPOLL_BATCH];
1326 int to_free;
1327 int need_iter;
1328};
1329
1330static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1331{
Jens Axboe10fef4b2020-01-09 07:52:28 -07001332 int fixed_refs = rb->to_free;
1333
Jens Axboec6ca97b302019-12-28 12:11:08 -07001334 if (!rb->to_free)
1335 return;
1336 if (rb->need_iter) {
1337 int i, inflight = 0;
1338 unsigned long flags;
1339
Jens Axboe10fef4b2020-01-09 07:52:28 -07001340 fixed_refs = 0;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001341 for (i = 0; i < rb->to_free; i++) {
1342 struct io_kiocb *req = rb->reqs[i];
1343
Jens Axboe10fef4b2020-01-09 07:52:28 -07001344 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001345 req->file = NULL;
Jens Axboe10fef4b2020-01-09 07:52:28 -07001346 fixed_refs++;
1347 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001348 if (req->flags & REQ_F_INFLIGHT)
1349 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001350 __io_req_aux_free(req);
1351 }
1352 if (!inflight)
1353 goto do_free;
1354
1355 spin_lock_irqsave(&ctx->inflight_lock, flags);
1356 for (i = 0; i < rb->to_free; i++) {
1357 struct io_kiocb *req = rb->reqs[i];
1358
Jens Axboe10fef4b2020-01-09 07:52:28 -07001359 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001360 list_del(&req->inflight_entry);
1361 if (!--inflight)
1362 break;
1363 }
1364 }
1365 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1366
1367 if (waitqueue_active(&ctx->inflight_wait))
1368 wake_up(&ctx->inflight_wait);
1369 }
1370do_free:
1371 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001372 if (fixed_refs)
1373 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001374 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001375 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001376}
1377
Jackie Liua197f662019-11-08 08:09:12 -07001378static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001379{
Jackie Liua197f662019-11-08 08:09:12 -07001380 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001381 int ret;
1382
Jens Axboe2d283902019-12-04 11:08:05 -07001383 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001384 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001385 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001386 io_commit_cqring(ctx);
1387 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001388 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001389 return true;
1390 }
1391
1392 return false;
1393}
1394
Jens Axboeba816ad2019-09-28 11:36:45 -06001395static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001396{
Jens Axboe2665abf2019-11-05 12:40:47 -07001397 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001398 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001399
Jens Axboe4d7dd462019-11-20 13:03:52 -07001400 /* Already got next link */
1401 if (req->flags & REQ_F_LINK_NEXT)
1402 return;
1403
Jens Axboe9e645e112019-05-10 16:07:28 -06001404 /*
1405 * The list should never be empty when we are called here. But could
1406 * potentially happen if the chain is messed up, check to be on the
1407 * safe side.
1408 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001409 while (!list_empty(&req->link_list)) {
1410 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1411 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001412
Pavel Begunkov44932332019-12-05 16:16:35 +03001413 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1414 (nxt->flags & REQ_F_TIMEOUT))) {
1415 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001416 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001417 req->flags &= ~REQ_F_LINK_TIMEOUT;
1418 continue;
1419 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001420
Pavel Begunkov44932332019-12-05 16:16:35 +03001421 list_del_init(&req->link_list);
1422 if (!list_empty(&nxt->link_list))
1423 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001424 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001425 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001426 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001427
Jens Axboe4d7dd462019-11-20 13:03:52 -07001428 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001429 if (wake_ev)
1430 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001431}
1432
1433/*
1434 * Called if REQ_F_LINK is set, and we fail the head request
1435 */
1436static void io_fail_links(struct io_kiocb *req)
1437{
Jens Axboe2665abf2019-11-05 12:40:47 -07001438 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001439 unsigned long flags;
1440
1441 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001442
1443 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001444 struct io_kiocb *link = list_first_entry(&req->link_list,
1445 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001446
Pavel Begunkov44932332019-12-05 16:16:35 +03001447 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001448 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001449
1450 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001451 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001452 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001453 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001454 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001455 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001456 }
Jens Axboe5d960722019-11-19 15:31:28 -07001457 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001458 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001459
1460 io_commit_cqring(ctx);
1461 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1462 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001463}
1464
Jens Axboe4d7dd462019-11-20 13:03:52 -07001465static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001466{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001467 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001468 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001469
Jens Axboe9e645e112019-05-10 16:07:28 -06001470 /*
1471 * If LINK is set, we have dependent requests in this chain. If we
1472 * didn't fail this request, queue the first one up, moving any other
1473 * dependencies to the next request. In case of failure, fail the rest
1474 * of the chain.
1475 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001476 if (req->flags & REQ_F_FAIL_LINK) {
1477 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001478 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1479 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001480 struct io_ring_ctx *ctx = req->ctx;
1481 unsigned long flags;
1482
1483 /*
1484 * If this is a timeout link, we could be racing with the
1485 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001486 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001487 */
1488 spin_lock_irqsave(&ctx->completion_lock, flags);
1489 io_req_link_next(req, nxt);
1490 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1491 } else {
1492 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001493 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001494}
Jens Axboe9e645e112019-05-10 16:07:28 -06001495
Jackie Liuc69f8db2019-11-09 11:00:08 +08001496static void io_free_req(struct io_kiocb *req)
1497{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001498 struct io_kiocb *nxt = NULL;
1499
1500 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001501 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001502
1503 if (nxt)
1504 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001505}
1506
Jens Axboeba816ad2019-09-28 11:36:45 -06001507/*
1508 * Drop reference to request, return next in chain (if there is one) if this
1509 * was the last reference to this request.
1510 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001511__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001512static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001513{
Jens Axboe2a44f462020-02-25 13:25:41 -07001514 if (refcount_dec_and_test(&req->refs)) {
1515 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001516 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001517 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001518}
1519
Jens Axboe2b188cc2019-01-07 10:46:33 -07001520static void io_put_req(struct io_kiocb *req)
1521{
Jens Axboedef596e2019-01-09 08:59:42 -07001522 if (refcount_dec_and_test(&req->refs))
1523 io_free_req(req);
1524}
1525
Jens Axboe978db572019-11-14 22:39:04 -07001526/*
1527 * Must only be used if we don't need to care about links, usually from
1528 * within the completion handling itself.
1529 */
1530static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001531{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001532 /* drop both submit and complete references */
1533 if (refcount_sub_and_test(2, &req->refs))
1534 __io_free_req(req);
1535}
1536
Jens Axboe978db572019-11-14 22:39:04 -07001537static void io_double_put_req(struct io_kiocb *req)
1538{
1539 /* drop both submit and complete references */
1540 if (refcount_sub_and_test(2, &req->refs))
1541 io_free_req(req);
1542}
1543
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001544static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001545{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001546 struct io_rings *rings = ctx->rings;
1547
Jens Axboead3eb2c2019-12-18 17:12:20 -07001548 if (test_bit(0, &ctx->cq_check_overflow)) {
1549 /*
1550 * noflush == true is from the waitqueue handler, just ensure
1551 * we wake up the task, and the next invocation will flush the
1552 * entries. We cannot safely to it from here.
1553 */
1554 if (noflush && !list_empty(&ctx->cq_overflow_list))
1555 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001556
Jens Axboead3eb2c2019-12-18 17:12:20 -07001557 io_cqring_overflow_flush(ctx, false);
1558 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001559
Jens Axboea3a0e432019-08-20 11:03:11 -06001560 /* See comment at the top of this file */
1561 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001562 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001563}
1564
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001565static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1566{
1567 struct io_rings *rings = ctx->rings;
1568
1569 /* make sure SQ entry isn't read before tail */
1570 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1571}
1572
Jens Axboe8237e042019-12-28 10:48:22 -07001573static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001574{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001575 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1576 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001577
Jens Axboec6ca97b302019-12-28 12:11:08 -07001578 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1579 rb->need_iter++;
1580
1581 rb->reqs[rb->to_free++] = req;
1582 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1583 io_free_req_many(req->ctx, rb);
1584 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001585}
1586
Jens Axboedef596e2019-01-09 08:59:42 -07001587/*
1588 * Find and free completed poll iocbs
1589 */
1590static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1591 struct list_head *done)
1592{
Jens Axboe8237e042019-12-28 10:48:22 -07001593 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001594 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001595
Jens Axboec6ca97b302019-12-28 12:11:08 -07001596 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001597 while (!list_empty(done)) {
1598 req = list_first_entry(done, struct io_kiocb, list);
1599 list_del(&req->list);
1600
Jens Axboe78e19bb2019-11-06 15:21:34 -07001601 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001602 (*nr_events)++;
1603
Jens Axboe8237e042019-12-28 10:48:22 -07001604 if (refcount_dec_and_test(&req->refs) &&
1605 !io_req_multi_free(&rb, req))
1606 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001607 }
Jens Axboedef596e2019-01-09 08:59:42 -07001608
Jens Axboe09bb8392019-03-13 12:39:28 -06001609 io_commit_cqring(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001610 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001611}
1612
1613static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1614 long min)
1615{
1616 struct io_kiocb *req, *tmp;
1617 LIST_HEAD(done);
1618 bool spin;
1619 int ret;
1620
1621 /*
1622 * Only spin for completions if we don't have multiple devices hanging
1623 * off our complete list, and we're under the requested amount.
1624 */
1625 spin = !ctx->poll_multi_file && *nr_events < min;
1626
1627 ret = 0;
1628 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001629 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001630
1631 /*
1632 * Move completed entries to our local list. If we find a
1633 * request that requires polling, break out and complete
1634 * the done list first, if we have entries there.
1635 */
1636 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1637 list_move_tail(&req->list, &done);
1638 continue;
1639 }
1640 if (!list_empty(&done))
1641 break;
1642
1643 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1644 if (ret < 0)
1645 break;
1646
1647 if (ret && spin)
1648 spin = false;
1649 ret = 0;
1650 }
1651
1652 if (!list_empty(&done))
1653 io_iopoll_complete(ctx, nr_events, &done);
1654
1655 return ret;
1656}
1657
1658/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001659 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001660 * non-spinning poll check - we'll still enter the driver poll loop, but only
1661 * as a non-spinning completion check.
1662 */
1663static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1664 long min)
1665{
Jens Axboe08f54392019-08-21 22:19:11 -06001666 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001667 int ret;
1668
1669 ret = io_do_iopoll(ctx, nr_events, min);
1670 if (ret < 0)
1671 return ret;
1672 if (!min || *nr_events >= min)
1673 return 0;
1674 }
1675
1676 return 1;
1677}
1678
1679/*
1680 * We can't just wait for polled events to come to us, we have to actively
1681 * find and complete them.
1682 */
1683static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1684{
1685 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1686 return;
1687
1688 mutex_lock(&ctx->uring_lock);
1689 while (!list_empty(&ctx->poll_list)) {
1690 unsigned int nr_events = 0;
1691
1692 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001693
1694 /*
1695 * Ensure we allow local-to-the-cpu processing to take place,
1696 * in this case we need to ensure that we reap all events.
1697 */
1698 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001699 }
1700 mutex_unlock(&ctx->uring_lock);
1701}
1702
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001703static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1704 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001705{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001706 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001707
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001708 /*
1709 * We disallow the app entering submit/complete with polling, but we
1710 * still need to lock the ring to prevent racing with polled issue
1711 * that got punted to a workqueue.
1712 */
1713 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001714 do {
1715 int tmin = 0;
1716
Jens Axboe500f9fb2019-08-19 12:15:59 -06001717 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001718 * Don't enter poll loop if we already have events pending.
1719 * If we do, we can potentially be spinning for commands that
1720 * already triggered a CQE (eg in error).
1721 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001722 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001723 break;
1724
1725 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001726 * If a submit got punted to a workqueue, we can have the
1727 * application entering polling for a command before it gets
1728 * issued. That app will hold the uring_lock for the duration
1729 * of the poll right here, so we need to take a breather every
1730 * now and then to ensure that the issue has a chance to add
1731 * the poll to the issued list. Otherwise we can spin here
1732 * forever, while the workqueue is stuck trying to acquire the
1733 * very same mutex.
1734 */
1735 if (!(++iters & 7)) {
1736 mutex_unlock(&ctx->uring_lock);
1737 mutex_lock(&ctx->uring_lock);
1738 }
1739
Jens Axboedef596e2019-01-09 08:59:42 -07001740 if (*nr_events < min)
1741 tmin = min - *nr_events;
1742
1743 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1744 if (ret <= 0)
1745 break;
1746 ret = 0;
1747 } while (min && !*nr_events && !need_resched());
1748
Jens Axboe500f9fb2019-08-19 12:15:59 -06001749 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001750 return ret;
1751}
1752
Jens Axboe491381ce2019-10-17 09:20:46 -06001753static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001754{
Jens Axboe491381ce2019-10-17 09:20:46 -06001755 /*
1756 * Tell lockdep we inherited freeze protection from submission
1757 * thread.
1758 */
1759 if (req->flags & REQ_F_ISREG) {
1760 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001761
Jens Axboe491381ce2019-10-17 09:20:46 -06001762 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001763 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001764 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001765}
1766
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001767static inline void req_set_fail_links(struct io_kiocb *req)
1768{
1769 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1770 req->flags |= REQ_F_FAIL_LINK;
1771}
1772
Jens Axboeba816ad2019-09-28 11:36:45 -06001773static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001774{
Jens Axboe9adbd452019-12-20 08:45:55 -07001775 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001776
Jens Axboe491381ce2019-10-17 09:20:46 -06001777 if (kiocb->ki_flags & IOCB_WRITE)
1778 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001779
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001780 if (res != req->result)
1781 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001782 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001783}
1784
1785static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1786{
Jens Axboe9adbd452019-12-20 08:45:55 -07001787 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001788
1789 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001790 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001791}
1792
Jens Axboeba816ad2019-09-28 11:36:45 -06001793static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1794{
Jens Axboe9adbd452019-12-20 08:45:55 -07001795 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001796 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001797
1798 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001799 io_put_req_find_next(req, &nxt);
1800
1801 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001802}
1803
Jens Axboedef596e2019-01-09 08:59:42 -07001804static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1805{
Jens Axboe9adbd452019-12-20 08:45:55 -07001806 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001807
Jens Axboe491381ce2019-10-17 09:20:46 -06001808 if (kiocb->ki_flags & IOCB_WRITE)
1809 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001810
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001811 if (res != req->result)
1812 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001813 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001814 if (res != -EAGAIN)
1815 req->flags |= REQ_F_IOPOLL_COMPLETED;
1816}
1817
1818/*
1819 * After the iocb has been issued, it's safe to be found on the poll list.
1820 * Adding the kiocb to the list AFTER submission ensures that we don't
1821 * find it from a io_iopoll_getevents() thread before the issuer is done
1822 * accessing the kiocb cookie.
1823 */
1824static void io_iopoll_req_issued(struct io_kiocb *req)
1825{
1826 struct io_ring_ctx *ctx = req->ctx;
1827
1828 /*
1829 * Track whether we have multiple files in our lists. This will impact
1830 * how we do polling eventually, not spinning if we're on potentially
1831 * different devices.
1832 */
1833 if (list_empty(&ctx->poll_list)) {
1834 ctx->poll_multi_file = false;
1835 } else if (!ctx->poll_multi_file) {
1836 struct io_kiocb *list_req;
1837
1838 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1839 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001840 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001841 ctx->poll_multi_file = true;
1842 }
1843
1844 /*
1845 * For fast devices, IO may have already completed. If it has, add
1846 * it to the front so we find it first.
1847 */
1848 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1849 list_add(&req->list, &ctx->poll_list);
1850 else
1851 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001852
1853 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1854 wq_has_sleeper(&ctx->sqo_wait))
1855 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001856}
1857
Jens Axboe3d6770f2019-04-13 11:50:54 -06001858static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001859{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001860 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001861 int diff = state->has_refs - state->used_refs;
1862
1863 if (diff)
1864 fput_many(state->file, diff);
1865 state->file = NULL;
1866 }
1867}
1868
1869/*
1870 * Get as many references to a file as we have IOs left in this submission,
1871 * assuming most submissions are for one file, or at least that each file
1872 * has more than one submission.
1873 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001874static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07001875{
1876 if (!state)
1877 return fget(fd);
1878
1879 if (state->file) {
1880 if (state->fd == fd) {
1881 state->used_refs++;
1882 state->ios_left--;
1883 return state->file;
1884 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001885 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001886 }
1887 state->file = fget_many(fd, state->ios_left);
1888 if (!state->file)
1889 return NULL;
1890
1891 state->fd = fd;
1892 state->has_refs = state->ios_left;
1893 state->used_refs = 1;
1894 state->ios_left--;
1895 return state->file;
1896}
1897
Jens Axboe2b188cc2019-01-07 10:46:33 -07001898/*
1899 * If we tracked the file through the SCM inflight mechanism, we could support
1900 * any file. For now, just ensure that anything potentially problematic is done
1901 * inline.
1902 */
1903static bool io_file_supports_async(struct file *file)
1904{
1905 umode_t mode = file_inode(file)->i_mode;
1906
Jens Axboe10d59342019-12-09 20:16:22 -07001907 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001908 return true;
1909 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1910 return true;
1911
1912 return false;
1913}
1914
Jens Axboe3529d8c2019-12-19 18:24:38 -07001915static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1916 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001917{
Jens Axboedef596e2019-01-09 08:59:42 -07001918 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001919 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001920 unsigned ioprio;
1921 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001922
Jens Axboe491381ce2019-10-17 09:20:46 -06001923 if (S_ISREG(file_inode(req->file)->i_mode))
1924 req->flags |= REQ_F_ISREG;
1925
Jens Axboe2b188cc2019-01-07 10:46:33 -07001926 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07001927 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
1928 req->flags |= REQ_F_CUR_POS;
1929 kiocb->ki_pos = req->file->f_pos;
1930 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001931 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03001932 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1933 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1934 if (unlikely(ret))
1935 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001936
1937 ioprio = READ_ONCE(sqe->ioprio);
1938 if (ioprio) {
1939 ret = ioprio_check_cap(ioprio);
1940 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001941 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001942
1943 kiocb->ki_ioprio = ioprio;
1944 } else
1945 kiocb->ki_ioprio = get_current_ioprio();
1946
Stefan Bühler8449eed2019-04-27 20:34:19 +02001947 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001948 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1949 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001950 req->flags |= REQ_F_NOWAIT;
1951
1952 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001953 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001954
Jens Axboedef596e2019-01-09 08:59:42 -07001955 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001956 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1957 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001958 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001959
Jens Axboedef596e2019-01-09 08:59:42 -07001960 kiocb->ki_flags |= IOCB_HIPRI;
1961 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001962 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001963 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001964 if (kiocb->ki_flags & IOCB_HIPRI)
1965 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001966 kiocb->ki_complete = io_complete_rw;
1967 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001968
Jens Axboe3529d8c2019-12-19 18:24:38 -07001969 req->rw.addr = READ_ONCE(sqe->addr);
1970 req->rw.len = READ_ONCE(sqe->len);
Jens Axboe9adbd452019-12-20 08:45:55 -07001971 /* we own ->private, reuse it for the buffer index */
1972 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001973 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001974 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001975}
1976
1977static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1978{
1979 switch (ret) {
1980 case -EIOCBQUEUED:
1981 break;
1982 case -ERESTARTSYS:
1983 case -ERESTARTNOINTR:
1984 case -ERESTARTNOHAND:
1985 case -ERESTART_RESTARTBLOCK:
1986 /*
1987 * We can't just restart the syscall, since previously
1988 * submitted sqes may already be in progress. Just fail this
1989 * IO with EINTR.
1990 */
1991 ret = -EINTR;
1992 /* fall through */
1993 default:
1994 kiocb->ki_complete(kiocb, ret, 0);
1995 }
1996}
1997
Pavel Begunkovbcaec082020-02-24 11:30:18 +03001998static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt)
Jens Axboeba816ad2019-09-28 11:36:45 -06001999{
Jens Axboeba042912019-12-25 16:33:42 -07002000 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2001
2002 if (req->flags & REQ_F_CUR_POS)
2003 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002004 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06002005 *nxt = __io_complete_rw(kiocb, ret);
2006 else
2007 io_rw_done(kiocb, ret);
2008}
2009
Jens Axboe9adbd452019-12-20 08:45:55 -07002010static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002011 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002012{
Jens Axboe9adbd452019-12-20 08:45:55 -07002013 struct io_ring_ctx *ctx = req->ctx;
2014 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002015 struct io_mapped_ubuf *imu;
2016 unsigned index, buf_index;
2017 size_t offset;
2018 u64 buf_addr;
2019
2020 /* attempt to use fixed buffers without having provided iovecs */
2021 if (unlikely(!ctx->user_bufs))
2022 return -EFAULT;
2023
Jens Axboe9adbd452019-12-20 08:45:55 -07002024 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002025 if (unlikely(buf_index >= ctx->nr_user_bufs))
2026 return -EFAULT;
2027
2028 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2029 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002030 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002031
2032 /* overflow */
2033 if (buf_addr + len < buf_addr)
2034 return -EFAULT;
2035 /* not inside the mapped region */
2036 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2037 return -EFAULT;
2038
2039 /*
2040 * May not be a start of buffer, set size appropriately
2041 * and advance us to the beginning.
2042 */
2043 offset = buf_addr - imu->ubuf;
2044 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002045
2046 if (offset) {
2047 /*
2048 * Don't use iov_iter_advance() here, as it's really slow for
2049 * using the latter parts of a big fixed buffer - it iterates
2050 * over each segment manually. We can cheat a bit here, because
2051 * we know that:
2052 *
2053 * 1) it's a BVEC iter, we set it up
2054 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2055 * first and last bvec
2056 *
2057 * So just find our index, and adjust the iterator afterwards.
2058 * If the offset is within the first bvec (or the whole first
2059 * bvec, just use iov_iter_advance(). This makes it easier
2060 * since we can just skip the first segment, which may not
2061 * be PAGE_SIZE aligned.
2062 */
2063 const struct bio_vec *bvec = imu->bvec;
2064
2065 if (offset <= bvec->bv_len) {
2066 iov_iter_advance(iter, offset);
2067 } else {
2068 unsigned long seg_skip;
2069
2070 /* skip first vec */
2071 offset -= bvec->bv_len;
2072 seg_skip = 1 + (offset >> PAGE_SHIFT);
2073
2074 iter->bvec = bvec + seg_skip;
2075 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002076 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002077 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002078 }
2079 }
2080
Jens Axboe5e559562019-11-13 16:12:46 -07002081 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002082}
2083
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002084static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
2085 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002086{
Jens Axboe9adbd452019-12-20 08:45:55 -07002087 void __user *buf = u64_to_user_ptr(req->rw.addr);
2088 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002089 u8 opcode;
2090
Jens Axboed625c6e2019-12-17 19:53:05 -07002091 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002092 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002093 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002094 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002095 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002096
Jens Axboe9adbd452019-12-20 08:45:55 -07002097 /* buffer index only valid with fixed read/write */
2098 if (req->rw.kiocb.private)
2099 return -EINVAL;
2100
Jens Axboe3a6820f2019-12-22 15:19:35 -07002101 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
2102 ssize_t ret;
2103 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2104 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002105 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002106 }
2107
Jens Axboef67676d2019-12-02 11:03:47 -07002108 if (req->io) {
2109 struct io_async_rw *iorw = &req->io->rw;
2110
2111 *iovec = iorw->iov;
2112 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2113 if (iorw->iov == iorw->fast_iov)
2114 *iovec = NULL;
2115 return iorw->size;
2116 }
2117
Jens Axboe2b188cc2019-01-07 10:46:33 -07002118#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002119 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002120 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2121 iovec, iter);
2122#endif
2123
2124 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2125}
2126
Jens Axboe32960612019-09-23 11:05:34 -06002127/*
2128 * For files that don't have ->read_iter() and ->write_iter(), handle them
2129 * by looping over ->read() or ->write() manually.
2130 */
2131static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2132 struct iov_iter *iter)
2133{
2134 ssize_t ret = 0;
2135
2136 /*
2137 * Don't support polled IO through this interface, and we can't
2138 * support non-blocking either. For the latter, this just causes
2139 * the kiocb to be handled from an async context.
2140 */
2141 if (kiocb->ki_flags & IOCB_HIPRI)
2142 return -EOPNOTSUPP;
2143 if (kiocb->ki_flags & IOCB_NOWAIT)
2144 return -EAGAIN;
2145
2146 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002147 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002148 ssize_t nr;
2149
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002150 if (!iov_iter_is_bvec(iter)) {
2151 iovec = iov_iter_iovec(iter);
2152 } else {
2153 /* fixed buffers import bvec */
2154 iovec.iov_base = kmap(iter->bvec->bv_page)
2155 + iter->iov_offset;
2156 iovec.iov_len = min(iter->count,
2157 iter->bvec->bv_len - iter->iov_offset);
2158 }
2159
Jens Axboe32960612019-09-23 11:05:34 -06002160 if (rw == READ) {
2161 nr = file->f_op->read(file, iovec.iov_base,
2162 iovec.iov_len, &kiocb->ki_pos);
2163 } else {
2164 nr = file->f_op->write(file, iovec.iov_base,
2165 iovec.iov_len, &kiocb->ki_pos);
2166 }
2167
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002168 if (iov_iter_is_bvec(iter))
2169 kunmap(iter->bvec->bv_page);
2170
Jens Axboe32960612019-09-23 11:05:34 -06002171 if (nr < 0) {
2172 if (!ret)
2173 ret = nr;
2174 break;
2175 }
2176 ret += nr;
2177 if (nr != iovec.iov_len)
2178 break;
2179 iov_iter_advance(iter, nr);
2180 }
2181
2182 return ret;
2183}
2184
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002185static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002186 struct iovec *iovec, struct iovec *fast_iov,
2187 struct iov_iter *iter)
2188{
2189 req->io->rw.nr_segs = iter->nr_segs;
2190 req->io->rw.size = io_size;
2191 req->io->rw.iov = iovec;
2192 if (!req->io->rw.iov) {
2193 req->io->rw.iov = req->io->rw.fast_iov;
2194 memcpy(req->io->rw.iov, fast_iov,
2195 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002196 } else {
2197 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002198 }
2199}
2200
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002201static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002202{
Jens Axboed3656342019-12-18 09:50:26 -07002203 if (!io_op_defs[req->opcode].async_ctx)
2204 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002205 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002206 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002207}
2208
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002209static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2210 struct iovec *iovec, struct iovec *fast_iov,
2211 struct iov_iter *iter)
2212{
Jens Axboe980ad262020-01-24 23:08:54 -07002213 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002214 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002215 if (!req->io) {
2216 if (io_alloc_async_ctx(req))
2217 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002218
Jens Axboe5d204bc2020-01-31 12:06:52 -07002219 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2220 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002221 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002222}
2223
Jens Axboe3529d8c2019-12-19 18:24:38 -07002224static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2225 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002226{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002227 struct io_async_ctx *io;
2228 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002229 ssize_t ret;
2230
Jens Axboe3529d8c2019-12-19 18:24:38 -07002231 ret = io_prep_rw(req, sqe, force_nonblock);
2232 if (ret)
2233 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002234
Jens Axboe3529d8c2019-12-19 18:24:38 -07002235 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2236 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002237
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002238 /* either don't need iovec imported or already have it */
2239 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002240 return 0;
2241
2242 io = req->io;
2243 io->rw.iov = io->rw.fast_iov;
2244 req->io = NULL;
2245 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
2246 req->io = io;
2247 if (ret < 0)
2248 return ret;
2249
2250 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2251 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002252}
2253
Pavel Begunkov267bc902019-11-07 01:41:08 +03002254static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002255 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002256{
2257 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002258 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002259 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002260 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002261 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002262
Jens Axboe3529d8c2019-12-19 18:24:38 -07002263 ret = io_import_iovec(READ, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002264 if (ret < 0)
2265 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002266
Jens Axboefd6c2e42019-12-18 12:19:41 -07002267 /* Ensure we clear previously set non-block flag */
2268 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002269 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002270
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002271 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002272 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002273 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002274 req->result = io_size;
2275
2276 /*
2277 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2278 * we know to async punt it even if it was opened O_NONBLOCK
2279 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002280 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002281 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002282
Jens Axboe31b51512019-01-18 22:56:34 -07002283 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002284 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002285 if (!ret) {
2286 ssize_t ret2;
2287
Jens Axboe9adbd452019-12-20 08:45:55 -07002288 if (req->file->f_op->read_iter)
2289 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002290 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002291 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002292
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002293 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002294 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002295 kiocb_done(kiocb, ret2, nxt);
Jens Axboef67676d2019-12-02 11:03:47 -07002296 } else {
2297copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002298 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002299 inline_vecs, &iter);
2300 if (ret)
2301 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002302 /* any defer here is final, must blocking retry */
2303 if (!(req->flags & REQ_F_NOWAIT))
2304 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002305 return -EAGAIN;
2306 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002307 }
Jens Axboef67676d2019-12-02 11:03:47 -07002308out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002309 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002310 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002311 return ret;
2312}
2313
Jens Axboe3529d8c2019-12-19 18:24:38 -07002314static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2315 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002316{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002317 struct io_async_ctx *io;
2318 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002319 ssize_t ret;
2320
Jens Axboe3529d8c2019-12-19 18:24:38 -07002321 ret = io_prep_rw(req, sqe, force_nonblock);
2322 if (ret)
2323 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002324
Jens Axboe3529d8c2019-12-19 18:24:38 -07002325 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2326 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002327
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002328 /* either don't need iovec imported or already have it */
2329 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002330 return 0;
2331
2332 io = req->io;
2333 io->rw.iov = io->rw.fast_iov;
2334 req->io = NULL;
2335 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
2336 req->io = io;
2337 if (ret < 0)
2338 return ret;
2339
2340 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2341 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002342}
2343
Pavel Begunkov267bc902019-11-07 01:41:08 +03002344static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002345 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002346{
2347 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002348 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002349 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002350 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002351 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002352
Jens Axboe3529d8c2019-12-19 18:24:38 -07002353 ret = io_import_iovec(WRITE, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002354 if (ret < 0)
2355 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002356
Jens Axboefd6c2e42019-12-18 12:19:41 -07002357 /* Ensure we clear previously set non-block flag */
2358 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002359 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002360
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002361 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002362 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002363 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002364 req->result = io_size;
2365
2366 /*
2367 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2368 * we know to async punt it even if it was opened O_NONBLOCK
2369 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002370 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002371 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002372
Jens Axboe10d59342019-12-09 20:16:22 -07002373 /* file path doesn't support NOWAIT for non-direct_IO */
2374 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2375 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002376 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002377
Jens Axboe31b51512019-01-18 22:56:34 -07002378 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002379 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002380 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002381 ssize_t ret2;
2382
Jens Axboe2b188cc2019-01-07 10:46:33 -07002383 /*
2384 * Open-code file_start_write here to grab freeze protection,
2385 * which will be released by another thread in
2386 * io_complete_rw(). Fool lockdep by telling it the lock got
2387 * released so that it doesn't complain about the held lock when
2388 * we return to userspace.
2389 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002390 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002391 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002392 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002393 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002394 SB_FREEZE_WRITE);
2395 }
2396 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002397
Jens Axboe9adbd452019-12-20 08:45:55 -07002398 if (req->file->f_op->write_iter)
2399 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002400 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002401 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboefaac9962020-02-07 15:45:22 -07002402 /*
2403 * Raw bdev writes will -EOPNOTSUPP for IOCB_NOWAIT. Just
2404 * retry them without IOCB_NOWAIT.
2405 */
2406 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2407 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002408 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002409 kiocb_done(kiocb, ret2, nxt);
Jens Axboef67676d2019-12-02 11:03:47 -07002410 } else {
2411copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002412 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002413 inline_vecs, &iter);
2414 if (ret)
2415 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002416 /* any defer here is final, must blocking retry */
2417 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002418 return -EAGAIN;
2419 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002420 }
Jens Axboe31b51512019-01-18 22:56:34 -07002421out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002422 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002423 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002424 return ret;
2425}
2426
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002427static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2428{
2429 struct io_splice* sp = &req->splice;
2430 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2431 int ret;
2432
2433 if (req->flags & REQ_F_NEED_CLEANUP)
2434 return 0;
2435
2436 sp->file_in = NULL;
2437 sp->off_in = READ_ONCE(sqe->splice_off_in);
2438 sp->off_out = READ_ONCE(sqe->off);
2439 sp->len = READ_ONCE(sqe->len);
2440 sp->flags = READ_ONCE(sqe->splice_flags);
2441
2442 if (unlikely(sp->flags & ~valid_flags))
2443 return -EINVAL;
2444
2445 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2446 (sp->flags & SPLICE_F_FD_IN_FIXED));
2447 if (ret)
2448 return ret;
2449 req->flags |= REQ_F_NEED_CLEANUP;
2450
2451 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2452 req->work.flags |= IO_WQ_WORK_UNBOUND;
2453
2454 return 0;
2455}
2456
2457static bool io_splice_punt(struct file *file)
2458{
2459 if (get_pipe_info(file))
2460 return false;
2461 if (!io_file_supports_async(file))
2462 return true;
2463 return !(file->f_mode & O_NONBLOCK);
2464}
2465
2466static int io_splice(struct io_kiocb *req, struct io_kiocb **nxt,
2467 bool force_nonblock)
2468{
2469 struct io_splice *sp = &req->splice;
2470 struct file *in = sp->file_in;
2471 struct file *out = sp->file_out;
2472 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2473 loff_t *poff_in, *poff_out;
2474 long ret;
2475
2476 if (force_nonblock) {
2477 if (io_splice_punt(in) || io_splice_punt(out))
2478 return -EAGAIN;
2479 flags |= SPLICE_F_NONBLOCK;
2480 }
2481
2482 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2483 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2484 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2485 if (force_nonblock && ret == -EAGAIN)
2486 return -EAGAIN;
2487
2488 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2489 req->flags &= ~REQ_F_NEED_CLEANUP;
2490
2491 io_cqring_add_event(req, ret);
2492 if (ret != sp->len)
2493 req_set_fail_links(req);
2494 io_put_req_find_next(req, nxt);
2495 return 0;
2496}
2497
Jens Axboe2b188cc2019-01-07 10:46:33 -07002498/*
2499 * IORING_OP_NOP just posts a completion event, nothing else.
2500 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002501static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002502{
2503 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002504
Jens Axboedef596e2019-01-09 08:59:42 -07002505 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2506 return -EINVAL;
2507
Jens Axboe78e19bb2019-11-06 15:21:34 -07002508 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002509 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002510 return 0;
2511}
2512
Jens Axboe3529d8c2019-12-19 18:24:38 -07002513static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002514{
Jens Axboe6b063142019-01-10 22:13:58 -07002515 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002516
Jens Axboe09bb8392019-03-13 12:39:28 -06002517 if (!req->file)
2518 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002519
Jens Axboe6b063142019-01-10 22:13:58 -07002520 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002521 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002522 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002523 return -EINVAL;
2524
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002525 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2526 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2527 return -EINVAL;
2528
2529 req->sync.off = READ_ONCE(sqe->off);
2530 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002531 return 0;
2532}
2533
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002534static bool io_req_cancelled(struct io_kiocb *req)
2535{
2536 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2537 req_set_fail_links(req);
2538 io_cqring_add_event(req, -ECANCELED);
2539 io_put_req(req);
2540 return true;
2541 }
2542
2543 return false;
2544}
2545
Jens Axboe78912932020-01-14 22:09:06 -07002546static void io_link_work_cb(struct io_wq_work **workptr)
2547{
2548 struct io_wq_work *work = *workptr;
2549 struct io_kiocb *link = work->data;
2550
2551 io_queue_linked_timeout(link);
Pavel Begunkov5eae8612020-02-28 10:36:38 +03002552 io_wq_submit_work(workptr);
Jens Axboe78912932020-01-14 22:09:06 -07002553}
2554
2555static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2556{
2557 struct io_kiocb *link;
2558
Pavel Begunkovdeb6dc02020-02-24 11:30:17 +03002559 io_prep_next_work(nxt, &link);
Jens Axboe78912932020-01-14 22:09:06 -07002560 *workptr = &nxt->work;
2561 if (link) {
Jens Axboe78912932020-01-14 22:09:06 -07002562 nxt->work.func = io_link_work_cb;
2563 nxt->work.data = link;
2564 }
2565}
2566
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002567static void __io_fsync(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002568{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002569 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002570 int ret;
2571
Jens Axboe9adbd452019-12-20 08:45:55 -07002572 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002573 end > 0 ? end : LLONG_MAX,
2574 req->sync.flags & IORING_FSYNC_DATASYNC);
2575 if (ret < 0)
2576 req_set_fail_links(req);
2577 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002578 io_put_req_find_next(req, nxt);
2579}
2580
2581static void io_fsync_finish(struct io_wq_work **workptr)
2582{
2583 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2584 struct io_kiocb *nxt = NULL;
2585
2586 if (io_req_cancelled(req))
2587 return;
2588 __io_fsync(req, &nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002589 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002590 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002591}
2592
Jens Axboefc4df992019-12-10 14:38:45 -07002593static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2594 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002595{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002596 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002597 if (force_nonblock) {
2598 io_put_req(req);
2599 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002600 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002601 }
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002602 __io_fsync(req, nxt);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002603 return 0;
2604}
2605
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002606static void __io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboed63d1b52019-12-10 10:38:56 -07002607{
Jens Axboed63d1b52019-12-10 10:38:56 -07002608 int ret;
2609
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03002610 if (io_req_cancelled(req))
2611 return;
2612
Jens Axboed63d1b52019-12-10 10:38:56 -07002613 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2614 req->sync.len);
2615 if (ret < 0)
2616 req_set_fail_links(req);
2617 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002618 io_put_req_find_next(req, nxt);
2619}
2620
2621static void io_fallocate_finish(struct io_wq_work **workptr)
2622{
2623 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2624 struct io_kiocb *nxt = NULL;
2625
2626 __io_fallocate(req, &nxt);
Jens Axboed63d1b52019-12-10 10:38:56 -07002627 if (nxt)
2628 io_wq_assign_next(workptr, nxt);
2629}
2630
2631static int io_fallocate_prep(struct io_kiocb *req,
2632 const struct io_uring_sqe *sqe)
2633{
2634 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2635 return -EINVAL;
2636
2637 req->sync.off = READ_ONCE(sqe->off);
2638 req->sync.len = READ_ONCE(sqe->addr);
2639 req->sync.mode = READ_ONCE(sqe->len);
2640 return 0;
2641}
2642
2643static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2644 bool force_nonblock)
2645{
Jens Axboed63d1b52019-12-10 10:38:56 -07002646 /* fallocate always requiring blocking context */
2647 if (force_nonblock) {
2648 io_put_req(req);
2649 req->work.func = io_fallocate_finish;
2650 return -EAGAIN;
2651 }
2652
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002653 __io_fallocate(req, nxt);
Jens Axboed63d1b52019-12-10 10:38:56 -07002654 return 0;
2655}
2656
Jens Axboe15b71ab2019-12-11 11:20:36 -07002657static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2658{
Jens Axboef8748882020-01-08 17:47:02 -07002659 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002660 int ret;
2661
2662 if (sqe->ioprio || sqe->buf_index)
2663 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002664 if (sqe->flags & IOSQE_FIXED_FILE)
2665 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002666 if (req->flags & REQ_F_NEED_CLEANUP)
2667 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002668
2669 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002670 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002671 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002672 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002673
Jens Axboef8748882020-01-08 17:47:02 -07002674 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002675 if (IS_ERR(req->open.filename)) {
2676 ret = PTR_ERR(req->open.filename);
2677 req->open.filename = NULL;
2678 return ret;
2679 }
2680
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002681 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002682 return 0;
2683}
2684
Jens Axboecebdb982020-01-08 17:59:24 -07002685static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2686{
2687 struct open_how __user *how;
2688 const char __user *fname;
2689 size_t len;
2690 int ret;
2691
2692 if (sqe->ioprio || sqe->buf_index)
2693 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002694 if (sqe->flags & IOSQE_FIXED_FILE)
2695 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002696 if (req->flags & REQ_F_NEED_CLEANUP)
2697 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002698
2699 req->open.dfd = READ_ONCE(sqe->fd);
2700 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2701 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2702 len = READ_ONCE(sqe->len);
2703
2704 if (len < OPEN_HOW_SIZE_VER0)
2705 return -EINVAL;
2706
2707 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2708 len);
2709 if (ret)
2710 return ret;
2711
2712 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2713 req->open.how.flags |= O_LARGEFILE;
2714
2715 req->open.filename = getname(fname);
2716 if (IS_ERR(req->open.filename)) {
2717 ret = PTR_ERR(req->open.filename);
2718 req->open.filename = NULL;
2719 return ret;
2720 }
2721
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002722 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002723 return 0;
2724}
2725
2726static int io_openat2(struct io_kiocb *req, struct io_kiocb **nxt,
2727 bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002728{
2729 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002730 struct file *file;
2731 int ret;
2732
Jens Axboef86cd202020-01-29 13:46:44 -07002733 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002734 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002735
Jens Axboecebdb982020-01-08 17:59:24 -07002736 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002737 if (ret)
2738 goto err;
2739
Jens Axboecebdb982020-01-08 17:59:24 -07002740 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002741 if (ret < 0)
2742 goto err;
2743
2744 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2745 if (IS_ERR(file)) {
2746 put_unused_fd(ret);
2747 ret = PTR_ERR(file);
2748 } else {
2749 fsnotify_open(file);
2750 fd_install(ret, file);
2751 }
2752err:
2753 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002754 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002755 if (ret < 0)
2756 req_set_fail_links(req);
2757 io_cqring_add_event(req, ret);
2758 io_put_req_find_next(req, nxt);
2759 return 0;
2760}
2761
Jens Axboecebdb982020-01-08 17:59:24 -07002762static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2763 bool force_nonblock)
2764{
2765 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
2766 return io_openat2(req, nxt, force_nonblock);
2767}
2768
Jens Axboe3e4827b2020-01-08 15:18:09 -07002769static int io_epoll_ctl_prep(struct io_kiocb *req,
2770 const struct io_uring_sqe *sqe)
2771{
2772#if defined(CONFIG_EPOLL)
2773 if (sqe->ioprio || sqe->buf_index)
2774 return -EINVAL;
2775
2776 req->epoll.epfd = READ_ONCE(sqe->fd);
2777 req->epoll.op = READ_ONCE(sqe->len);
2778 req->epoll.fd = READ_ONCE(sqe->off);
2779
2780 if (ep_op_has_event(req->epoll.op)) {
2781 struct epoll_event __user *ev;
2782
2783 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
2784 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
2785 return -EFAULT;
2786 }
2787
2788 return 0;
2789#else
2790 return -EOPNOTSUPP;
2791#endif
2792}
2793
2794static int io_epoll_ctl(struct io_kiocb *req, struct io_kiocb **nxt,
2795 bool force_nonblock)
2796{
2797#if defined(CONFIG_EPOLL)
2798 struct io_epoll *ie = &req->epoll;
2799 int ret;
2800
2801 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
2802 if (force_nonblock && ret == -EAGAIN)
2803 return -EAGAIN;
2804
2805 if (ret < 0)
2806 req_set_fail_links(req);
2807 io_cqring_add_event(req, ret);
2808 io_put_req_find_next(req, nxt);
2809 return 0;
2810#else
2811 return -EOPNOTSUPP;
2812#endif
2813}
2814
Jens Axboec1ca7572019-12-25 22:18:28 -07002815static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2816{
2817#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2818 if (sqe->ioprio || sqe->buf_index || sqe->off)
2819 return -EINVAL;
2820
2821 req->madvise.addr = READ_ONCE(sqe->addr);
2822 req->madvise.len = READ_ONCE(sqe->len);
2823 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2824 return 0;
2825#else
2826 return -EOPNOTSUPP;
2827#endif
2828}
2829
2830static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2831 bool force_nonblock)
2832{
2833#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2834 struct io_madvise *ma = &req->madvise;
2835 int ret;
2836
2837 if (force_nonblock)
2838 return -EAGAIN;
2839
2840 ret = do_madvise(ma->addr, ma->len, ma->advice);
2841 if (ret < 0)
2842 req_set_fail_links(req);
2843 io_cqring_add_event(req, ret);
2844 io_put_req_find_next(req, nxt);
2845 return 0;
2846#else
2847 return -EOPNOTSUPP;
2848#endif
2849}
2850
Jens Axboe4840e412019-12-25 22:03:45 -07002851static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2852{
2853 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2854 return -EINVAL;
2855
2856 req->fadvise.offset = READ_ONCE(sqe->off);
2857 req->fadvise.len = READ_ONCE(sqe->len);
2858 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2859 return 0;
2860}
2861
2862static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2863 bool force_nonblock)
2864{
2865 struct io_fadvise *fa = &req->fadvise;
2866 int ret;
2867
Jens Axboe3e694262020-02-01 09:22:49 -07002868 if (force_nonblock) {
2869 switch (fa->advice) {
2870 case POSIX_FADV_NORMAL:
2871 case POSIX_FADV_RANDOM:
2872 case POSIX_FADV_SEQUENTIAL:
2873 break;
2874 default:
2875 return -EAGAIN;
2876 }
2877 }
Jens Axboe4840e412019-12-25 22:03:45 -07002878
2879 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2880 if (ret < 0)
2881 req_set_fail_links(req);
2882 io_cqring_add_event(req, ret);
2883 io_put_req_find_next(req, nxt);
2884 return 0;
2885}
2886
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002887static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2888{
Jens Axboef8748882020-01-08 17:47:02 -07002889 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002890 unsigned lookup_flags;
2891 int ret;
2892
2893 if (sqe->ioprio || sqe->buf_index)
2894 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002895 if (sqe->flags & IOSQE_FIXED_FILE)
2896 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002897 if (req->flags & REQ_F_NEED_CLEANUP)
2898 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002899
2900 req->open.dfd = READ_ONCE(sqe->fd);
2901 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002902 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002903 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07002904 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002905
Jens Axboec12cedf2020-01-08 17:41:21 -07002906 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002907 return -EINVAL;
2908
Jens Axboef8748882020-01-08 17:47:02 -07002909 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002910 if (IS_ERR(req->open.filename)) {
2911 ret = PTR_ERR(req->open.filename);
2912 req->open.filename = NULL;
2913 return ret;
2914 }
2915
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002916 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002917 return 0;
2918}
2919
2920static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2921 bool force_nonblock)
2922{
2923 struct io_open *ctx = &req->open;
2924 unsigned lookup_flags;
2925 struct path path;
2926 struct kstat stat;
2927 int ret;
2928
2929 if (force_nonblock)
2930 return -EAGAIN;
2931
Jens Axboec12cedf2020-01-08 17:41:21 -07002932 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002933 return -EINVAL;
2934
2935retry:
2936 /* filename_lookup() drops it, keep a reference */
2937 ctx->filename->refcnt++;
2938
2939 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2940 NULL);
2941 if (ret)
2942 goto err;
2943
Jens Axboec12cedf2020-01-08 17:41:21 -07002944 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002945 path_put(&path);
2946 if (retry_estale(ret, lookup_flags)) {
2947 lookup_flags |= LOOKUP_REVAL;
2948 goto retry;
2949 }
2950 if (!ret)
2951 ret = cp_statx(&stat, ctx->buffer);
2952err:
2953 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002954 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002955 if (ret < 0)
2956 req_set_fail_links(req);
2957 io_cqring_add_event(req, ret);
2958 io_put_req_find_next(req, nxt);
2959 return 0;
2960}
2961
Jens Axboeb5dba592019-12-11 14:02:38 -07002962static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2963{
2964 /*
2965 * If we queue this for async, it must not be cancellable. That would
2966 * leave the 'file' in an undeterminate state.
2967 */
2968 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2969
2970 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2971 sqe->rw_flags || sqe->buf_index)
2972 return -EINVAL;
2973 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002974 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07002975
2976 req->close.fd = READ_ONCE(sqe->fd);
2977 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03002978 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07002979 return -EBADF;
2980
2981 return 0;
2982}
2983
Pavel Begunkova93b3332020-02-08 14:04:34 +03002984/* only called when __close_fd_get_file() is done */
2985static void __io_close_finish(struct io_kiocb *req, struct io_kiocb **nxt)
2986{
2987 int ret;
2988
2989 ret = filp_close(req->close.put_file, req->work.files);
2990 if (ret < 0)
2991 req_set_fail_links(req);
2992 io_cqring_add_event(req, ret);
2993 fput(req->close.put_file);
2994 io_put_req_find_next(req, nxt);
2995}
2996
Jens Axboeb5dba592019-12-11 14:02:38 -07002997static void io_close_finish(struct io_wq_work **workptr)
2998{
2999 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3000 struct io_kiocb *nxt = NULL;
3001
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003002 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkova93b3332020-02-08 14:04:34 +03003003 __io_close_finish(req, &nxt);
Jens Axboeb5dba592019-12-11 14:02:38 -07003004 if (nxt)
3005 io_wq_assign_next(workptr, nxt);
3006}
3007
3008static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
3009 bool force_nonblock)
3010{
3011 int ret;
3012
3013 req->close.put_file = NULL;
3014 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3015 if (ret < 0)
3016 return ret;
3017
3018 /* if the file has a flush method, be safe and punt to async */
Jens Axboef86cd202020-01-29 13:46:44 -07003019 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker())
Jens Axboeb5dba592019-12-11 14:02:38 -07003020 goto eagain;
Jens Axboeb5dba592019-12-11 14:02:38 -07003021
3022 /*
3023 * No ->flush(), safely close from here and just punt the
3024 * fput() to async context.
3025 */
Pavel Begunkova93b3332020-02-08 14:04:34 +03003026 __io_close_finish(req, nxt);
3027 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003028eagain:
3029 req->work.func = io_close_finish;
Jens Axboe1a417f42020-01-31 17:16:48 -07003030 /*
3031 * Do manual async queue here to avoid grabbing files - we don't
3032 * need the files, and it'll cause io_close_finish() to close
3033 * the file again and cause a double CQE entry for this request
3034 */
3035 io_queue_async_work(req);
3036 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003037}
3038
Jens Axboe3529d8c2019-12-19 18:24:38 -07003039static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003040{
3041 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003042
3043 if (!req->file)
3044 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003045
3046 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3047 return -EINVAL;
3048 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3049 return -EINVAL;
3050
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003051 req->sync.off = READ_ONCE(sqe->off);
3052 req->sync.len = READ_ONCE(sqe->len);
3053 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003054 return 0;
3055}
3056
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003057static void __io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003058{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003059 int ret;
3060
Jens Axboe9adbd452019-12-20 08:45:55 -07003061 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003062 req->sync.flags);
3063 if (ret < 0)
3064 req_set_fail_links(req);
3065 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003066 io_put_req_find_next(req, nxt);
3067}
3068
3069
3070static void io_sync_file_range_finish(struct io_wq_work **workptr)
3071{
3072 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3073 struct io_kiocb *nxt = NULL;
3074
3075 if (io_req_cancelled(req))
3076 return;
3077 __io_sync_file_range(req, &nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003078 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003079 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003080}
3081
Jens Axboefc4df992019-12-10 14:38:45 -07003082static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003083 bool force_nonblock)
3084{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003085 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003086 if (force_nonblock) {
3087 io_put_req(req);
3088 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003089 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003090 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003091
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003092 __io_sync_file_range(req, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003093 return 0;
3094}
3095
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003096static int io_setup_async_msg(struct io_kiocb *req,
3097 struct io_async_msghdr *kmsg)
3098{
3099 if (req->io)
3100 return -EAGAIN;
3101 if (io_alloc_async_ctx(req)) {
3102 if (kmsg->iov != kmsg->fast_iov)
3103 kfree(kmsg->iov);
3104 return -ENOMEM;
3105 }
3106 req->flags |= REQ_F_NEED_CLEANUP;
3107 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3108 return -EAGAIN;
3109}
3110
Jens Axboe3529d8c2019-12-19 18:24:38 -07003111static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003112{
Jens Axboe03b12302019-12-02 18:50:25 -07003113#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003114 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003115 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003116 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003117
Jens Axboee47293f2019-12-20 08:58:21 -07003118 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3119 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003120 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003121
Jens Axboed8768362020-02-27 14:17:49 -07003122#ifdef CONFIG_COMPAT
3123 if (req->ctx->compat)
3124 sr->msg_flags |= MSG_CMSG_COMPAT;
3125#endif
3126
Jens Axboefddafac2020-01-04 20:19:44 -07003127 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003128 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003129 /* iovec is already imported */
3130 if (req->flags & REQ_F_NEED_CLEANUP)
3131 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003132
Jens Axboed9688562019-12-09 19:35:20 -07003133 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003134 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003135 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003136 if (!ret)
3137 req->flags |= REQ_F_NEED_CLEANUP;
3138 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003139#else
Jens Axboee47293f2019-12-20 08:58:21 -07003140 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003141#endif
3142}
3143
Jens Axboefc4df992019-12-10 14:38:45 -07003144static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3145 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003146{
3147#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003148 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003149 struct socket *sock;
3150 int ret;
3151
3152 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3153 return -EINVAL;
3154
3155 sock = sock_from_file(req->file, &ret);
3156 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003157 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003158 unsigned flags;
3159
Jens Axboe03b12302019-12-02 18:50:25 -07003160 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003161 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003162 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003163 /* if iov is set, it's allocated already */
3164 if (!kmsg->iov)
3165 kmsg->iov = kmsg->fast_iov;
3166 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003167 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003168 struct io_sr_msg *sr = &req->sr_msg;
3169
Jens Axboe0b416c32019-12-15 10:57:46 -07003170 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003171 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003172
3173 io.msg.iov = io.msg.fast_iov;
3174 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3175 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003176 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003177 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003178 }
3179
Jens Axboee47293f2019-12-20 08:58:21 -07003180 flags = req->sr_msg.msg_flags;
3181 if (flags & MSG_DONTWAIT)
3182 req->flags |= REQ_F_NOWAIT;
3183 else if (force_nonblock)
3184 flags |= MSG_DONTWAIT;
3185
Jens Axboe0b416c32019-12-15 10:57:46 -07003186 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003187 if (force_nonblock && ret == -EAGAIN)
3188 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003189 if (ret == -ERESTARTSYS)
3190 ret = -EINTR;
3191 }
3192
Pavel Begunkov1e950812020-02-06 19:51:16 +03003193 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003194 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003195 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003196 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003197 if (ret < 0)
3198 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003199 io_put_req_find_next(req, nxt);
3200 return 0;
3201#else
3202 return -EOPNOTSUPP;
3203#endif
3204}
3205
Jens Axboefddafac2020-01-04 20:19:44 -07003206static int io_send(struct io_kiocb *req, struct io_kiocb **nxt,
3207 bool force_nonblock)
3208{
3209#if defined(CONFIG_NET)
3210 struct socket *sock;
3211 int ret;
3212
3213 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3214 return -EINVAL;
3215
3216 sock = sock_from_file(req->file, &ret);
3217 if (sock) {
3218 struct io_sr_msg *sr = &req->sr_msg;
3219 struct msghdr msg;
3220 struct iovec iov;
3221 unsigned flags;
3222
3223 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3224 &msg.msg_iter);
3225 if (ret)
3226 return ret;
3227
3228 msg.msg_name = NULL;
3229 msg.msg_control = NULL;
3230 msg.msg_controllen = 0;
3231 msg.msg_namelen = 0;
3232
3233 flags = req->sr_msg.msg_flags;
3234 if (flags & MSG_DONTWAIT)
3235 req->flags |= REQ_F_NOWAIT;
3236 else if (force_nonblock)
3237 flags |= MSG_DONTWAIT;
3238
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003239 msg.msg_flags = flags;
3240 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003241 if (force_nonblock && ret == -EAGAIN)
3242 return -EAGAIN;
3243 if (ret == -ERESTARTSYS)
3244 ret = -EINTR;
3245 }
3246
3247 io_cqring_add_event(req, ret);
3248 if (ret < 0)
3249 req_set_fail_links(req);
3250 io_put_req_find_next(req, nxt);
3251 return 0;
3252#else
3253 return -EOPNOTSUPP;
3254#endif
3255}
3256
Jens Axboe3529d8c2019-12-19 18:24:38 -07003257static int io_recvmsg_prep(struct io_kiocb *req,
3258 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003259{
3260#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003261 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003262 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003263 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003264
Jens Axboe3529d8c2019-12-19 18:24:38 -07003265 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3266 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003267 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003268
Jens Axboed8768362020-02-27 14:17:49 -07003269#ifdef CONFIG_COMPAT
3270 if (req->ctx->compat)
3271 sr->msg_flags |= MSG_CMSG_COMPAT;
3272#endif
3273
Jens Axboefddafac2020-01-04 20:19:44 -07003274 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003275 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003276 /* iovec is already imported */
3277 if (req->flags & REQ_F_NEED_CLEANUP)
3278 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003279
Jens Axboed9688562019-12-09 19:35:20 -07003280 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003281 ret = recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003282 &io->msg.uaddr, &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003283 if (!ret)
3284 req->flags |= REQ_F_NEED_CLEANUP;
3285 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003286#else
Jens Axboee47293f2019-12-20 08:58:21 -07003287 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003288#endif
3289}
3290
Jens Axboefc4df992019-12-10 14:38:45 -07003291static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3292 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003293{
3294#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003295 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003296 struct socket *sock;
3297 int ret;
3298
3299 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3300 return -EINVAL;
3301
3302 sock = sock_from_file(req->file, &ret);
3303 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003304 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003305 unsigned flags;
3306
Jens Axboe03b12302019-12-02 18:50:25 -07003307 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003308 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003309 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003310 /* if iov is set, it's allocated already */
3311 if (!kmsg->iov)
3312 kmsg->iov = kmsg->fast_iov;
3313 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003314 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003315 struct io_sr_msg *sr = &req->sr_msg;
3316
Jens Axboe0b416c32019-12-15 10:57:46 -07003317 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003318 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003319
3320 io.msg.iov = io.msg.fast_iov;
3321 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
3322 sr->msg_flags, &io.msg.uaddr,
3323 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003324 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003325 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003326 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003327
Jens Axboee47293f2019-12-20 08:58:21 -07003328 flags = req->sr_msg.msg_flags;
3329 if (flags & MSG_DONTWAIT)
3330 req->flags |= REQ_F_NOWAIT;
3331 else if (force_nonblock)
3332 flags |= MSG_DONTWAIT;
3333
3334 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3335 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003336 if (force_nonblock && ret == -EAGAIN)
3337 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003338 if (ret == -ERESTARTSYS)
3339 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003340 }
3341
Pavel Begunkov1e950812020-02-06 19:51:16 +03003342 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003343 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003344 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003345 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003346 if (ret < 0)
3347 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003348 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003349 return 0;
3350#else
3351 return -EOPNOTSUPP;
3352#endif
3353}
3354
Jens Axboefddafac2020-01-04 20:19:44 -07003355static int io_recv(struct io_kiocb *req, struct io_kiocb **nxt,
3356 bool force_nonblock)
3357{
3358#if defined(CONFIG_NET)
3359 struct socket *sock;
3360 int ret;
3361
3362 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3363 return -EINVAL;
3364
3365 sock = sock_from_file(req->file, &ret);
3366 if (sock) {
3367 struct io_sr_msg *sr = &req->sr_msg;
3368 struct msghdr msg;
3369 struct iovec iov;
3370 unsigned flags;
3371
3372 ret = import_single_range(READ, sr->buf, sr->len, &iov,
3373 &msg.msg_iter);
3374 if (ret)
3375 return ret;
3376
3377 msg.msg_name = NULL;
3378 msg.msg_control = NULL;
3379 msg.msg_controllen = 0;
3380 msg.msg_namelen = 0;
3381 msg.msg_iocb = NULL;
3382 msg.msg_flags = 0;
3383
3384 flags = req->sr_msg.msg_flags;
3385 if (flags & MSG_DONTWAIT)
3386 req->flags |= REQ_F_NOWAIT;
3387 else if (force_nonblock)
3388 flags |= MSG_DONTWAIT;
3389
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003390 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003391 if (force_nonblock && ret == -EAGAIN)
3392 return -EAGAIN;
3393 if (ret == -ERESTARTSYS)
3394 ret = -EINTR;
3395 }
3396
3397 io_cqring_add_event(req, ret);
3398 if (ret < 0)
3399 req_set_fail_links(req);
3400 io_put_req_find_next(req, nxt);
3401 return 0;
3402#else
3403 return -EOPNOTSUPP;
3404#endif
3405}
3406
3407
Jens Axboe3529d8c2019-12-19 18:24:38 -07003408static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003409{
3410#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003411 struct io_accept *accept = &req->accept;
3412
Jens Axboe17f2fe32019-10-17 14:42:58 -06003413 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3414 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003415 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003416 return -EINVAL;
3417
Jens Axboed55e5f52019-12-11 16:12:15 -07003418 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3419 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003420 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003421 return 0;
3422#else
3423 return -EOPNOTSUPP;
3424#endif
3425}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003426
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003427#if defined(CONFIG_NET)
3428static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3429 bool force_nonblock)
3430{
3431 struct io_accept *accept = &req->accept;
3432 unsigned file_flags;
3433 int ret;
3434
3435 file_flags = force_nonblock ? O_NONBLOCK : 0;
3436 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3437 accept->addr_len, accept->flags);
3438 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003439 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003440 if (ret == -ERESTARTSYS)
3441 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003442 if (ret < 0)
3443 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003444 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003445 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003446 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003447}
3448
3449static void io_accept_finish(struct io_wq_work **workptr)
3450{
3451 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3452 struct io_kiocb *nxt = NULL;
3453
Jens Axboee441d1c2020-02-20 09:59:02 -07003454 io_put_req(req);
3455
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003456 if (io_req_cancelled(req))
3457 return;
3458 __io_accept(req, &nxt, false);
3459 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003460 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003461}
3462#endif
3463
3464static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3465 bool force_nonblock)
3466{
3467#if defined(CONFIG_NET)
3468 int ret;
3469
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003470 ret = __io_accept(req, nxt, force_nonblock);
3471 if (ret == -EAGAIN && force_nonblock) {
3472 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003473 return -EAGAIN;
3474 }
3475 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003476#else
3477 return -EOPNOTSUPP;
3478#endif
3479}
3480
Jens Axboe3529d8c2019-12-19 18:24:38 -07003481static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003482{
3483#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003484 struct io_connect *conn = &req->connect;
3485 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003486
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003487 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3488 return -EINVAL;
3489 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3490 return -EINVAL;
3491
Jens Axboe3529d8c2019-12-19 18:24:38 -07003492 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3493 conn->addr_len = READ_ONCE(sqe->addr2);
3494
3495 if (!io)
3496 return 0;
3497
3498 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003499 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003500#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003501 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07003502#endif
3503}
3504
Jens Axboefc4df992019-12-10 14:38:45 -07003505static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3506 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003507{
3508#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07003509 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003510 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003511 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003512
Jens Axboef499a022019-12-02 16:28:46 -07003513 if (req->io) {
3514 io = req->io;
3515 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003516 ret = move_addr_to_kernel(req->connect.addr,
3517 req->connect.addr_len,
3518 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003519 if (ret)
3520 goto out;
3521 io = &__io;
3522 }
3523
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003524 file_flags = force_nonblock ? O_NONBLOCK : 0;
3525
3526 ret = __sys_connect_file(req->file, &io->connect.address,
3527 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003528 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003529 if (req->io)
3530 return -EAGAIN;
3531 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003532 ret = -ENOMEM;
3533 goto out;
3534 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003535 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003536 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003537 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003538 if (ret == -ERESTARTSYS)
3539 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07003540out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003541 if (ret < 0)
3542 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003543 io_cqring_add_event(req, ret);
3544 io_put_req_find_next(req, nxt);
3545 return 0;
3546#else
3547 return -EOPNOTSUPP;
3548#endif
3549}
3550
Jens Axboe221c5eb2019-01-17 09:41:58 -07003551static void io_poll_remove_one(struct io_kiocb *req)
3552{
3553 struct io_poll_iocb *poll = &req->poll;
3554
3555 spin_lock(&poll->head->lock);
3556 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07003557 if (!list_empty(&poll->wait.entry)) {
3558 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07003559 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003560 }
3561 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003562 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003563}
3564
3565static void io_poll_remove_all(struct io_ring_ctx *ctx)
3566{
Jens Axboe78076bb2019-12-04 19:56:40 -07003567 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003568 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07003569 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003570
3571 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003572 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3573 struct hlist_head *list;
3574
3575 list = &ctx->cancel_hash[i];
3576 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3577 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003578 }
3579 spin_unlock_irq(&ctx->completion_lock);
3580}
3581
Jens Axboe47f46762019-11-09 17:43:02 -07003582static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3583{
Jens Axboe78076bb2019-12-04 19:56:40 -07003584 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07003585 struct io_kiocb *req;
3586
Jens Axboe78076bb2019-12-04 19:56:40 -07003587 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3588 hlist_for_each_entry(req, list, hash_node) {
3589 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07003590 io_poll_remove_one(req);
3591 return 0;
3592 }
Jens Axboe47f46762019-11-09 17:43:02 -07003593 }
3594
3595 return -ENOENT;
3596}
3597
Jens Axboe3529d8c2019-12-19 18:24:38 -07003598static int io_poll_remove_prep(struct io_kiocb *req,
3599 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003600{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003601 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3602 return -EINVAL;
3603 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3604 sqe->poll_events)
3605 return -EINVAL;
3606
Jens Axboe0969e782019-12-17 18:40:57 -07003607 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07003608 return 0;
3609}
3610
3611/*
3612 * Find a running poll command that matches one specified in sqe->addr,
3613 * and remove it if found.
3614 */
3615static int io_poll_remove(struct io_kiocb *req)
3616{
3617 struct io_ring_ctx *ctx = req->ctx;
3618 u64 addr;
3619 int ret;
3620
Jens Axboe0969e782019-12-17 18:40:57 -07003621 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003622 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07003623 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003624 spin_unlock_irq(&ctx->completion_lock);
3625
Jens Axboe78e19bb2019-11-06 15:21:34 -07003626 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003627 if (ret < 0)
3628 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003629 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003630 return 0;
3631}
3632
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003633static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003634{
Jackie Liua197f662019-11-08 08:09:12 -07003635 struct io_ring_ctx *ctx = req->ctx;
3636
Jens Axboe8c838782019-03-12 15:48:16 -06003637 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03003638 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06003639 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003640}
3641
Jens Axboe561fb042019-10-24 07:25:42 -06003642static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003643{
Jens Axboe561fb042019-10-24 07:25:42 -06003644 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003645 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3646 struct io_poll_iocb *poll = &req->poll;
3647 struct poll_table_struct pt = { ._key = poll->events };
3648 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07003649 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003650 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003651 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003652
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003653 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06003654 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003655 ret = -ECANCELED;
3656 } else if (READ_ONCE(poll->canceled)) {
3657 ret = -ECANCELED;
3658 }
Jens Axboe561fb042019-10-24 07:25:42 -06003659
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003660 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003661 mask = vfs_poll(poll->file, &pt) & poll->events;
3662
3663 /*
3664 * Note that ->ki_cancel callers also delete iocb from active_reqs after
3665 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
3666 * synchronize with them. In the cancellation case the list_del_init
3667 * itself is not actually needed, but harmless so we keep it in to
3668 * avoid further branches in the fast path.
3669 */
3670 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003671 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07003672 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003673 spin_unlock_irq(&ctx->completion_lock);
3674 return;
3675 }
Jens Axboe78076bb2019-12-04 19:56:40 -07003676 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003677 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003678 spin_unlock_irq(&ctx->completion_lock);
3679
Jens Axboe8c838782019-03-12 15:48:16 -06003680 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07003681
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003682 if (ret < 0)
3683 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003684 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07003685 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003686 io_wq_assign_next(workptr, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003687}
3688
Jens Axboee94f1412019-12-19 12:06:02 -07003689static void __io_poll_flush(struct io_ring_ctx *ctx, struct llist_node *nodes)
3690{
Jens Axboee94f1412019-12-19 12:06:02 -07003691 struct io_kiocb *req, *tmp;
Jens Axboe8237e042019-12-28 10:48:22 -07003692 struct req_batch rb;
Jens Axboee94f1412019-12-19 12:06:02 -07003693
Jens Axboec6ca97b302019-12-28 12:11:08 -07003694 rb.to_free = rb.need_iter = 0;
Jens Axboee94f1412019-12-19 12:06:02 -07003695 spin_lock_irq(&ctx->completion_lock);
3696 llist_for_each_entry_safe(req, tmp, nodes, llist_node) {
3697 hash_del(&req->hash_node);
3698 io_poll_complete(req, req->result, 0);
3699
Jens Axboe8237e042019-12-28 10:48:22 -07003700 if (refcount_dec_and_test(&req->refs) &&
3701 !io_req_multi_free(&rb, req)) {
3702 req->flags |= REQ_F_COMP_LOCKED;
3703 io_free_req(req);
Jens Axboee94f1412019-12-19 12:06:02 -07003704 }
3705 }
3706 spin_unlock_irq(&ctx->completion_lock);
3707
3708 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07003709 io_free_req_many(ctx, &rb);
Jens Axboee94f1412019-12-19 12:06:02 -07003710}
3711
3712static void io_poll_flush(struct io_wq_work **workptr)
3713{
3714 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3715 struct llist_node *nodes;
3716
3717 nodes = llist_del_all(&req->ctx->poll_llist);
3718 if (nodes)
3719 __io_poll_flush(req->ctx, nodes);
3720}
3721
Jens Axboef0b493e2020-02-01 21:30:11 -07003722static void io_poll_trigger_evfd(struct io_wq_work **workptr)
3723{
3724 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3725
3726 eventfd_signal(req->ctx->cq_ev_fd, 1);
3727 io_put_req(req);
3728}
3729
Jens Axboe221c5eb2019-01-17 09:41:58 -07003730static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3731 void *key)
3732{
Jens Axboec2f2eb72020-02-10 09:07:05 -07003733 struct io_kiocb *req = wait->private;
3734 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003735 struct io_ring_ctx *ctx = req->ctx;
3736 __poll_t mask = key_to_poll(key);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003737
3738 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06003739 if (mask && !(mask & poll->events))
3740 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003741
Jens Axboe392edb42019-12-09 17:52:20 -07003742 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003743
Jens Axboe7c9e7f02019-11-12 08:15:53 -07003744 /*
3745 * Run completion inline if we can. We're using trylock here because
3746 * we are violating the completion_lock -> poll wq lock ordering.
3747 * If we have a link timeout we're going to need the completion_lock
3748 * for finalizing the request, mark us as having grabbed that already.
3749 */
Jens Axboee94f1412019-12-19 12:06:02 -07003750 if (mask) {
3751 unsigned long flags;
Jens Axboe8c838782019-03-12 15:48:16 -06003752
Jens Axboee94f1412019-12-19 12:06:02 -07003753 if (llist_empty(&ctx->poll_llist) &&
3754 spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboef0b493e2020-02-01 21:30:11 -07003755 bool trigger_ev;
3756
Jens Axboee94f1412019-12-19 12:06:02 -07003757 hash_del(&req->hash_node);
3758 io_poll_complete(req, mask, 0);
Jens Axboee94f1412019-12-19 12:06:02 -07003759
Jens Axboef0b493e2020-02-01 21:30:11 -07003760 trigger_ev = io_should_trigger_evfd(ctx);
3761 if (trigger_ev && eventfd_signal_count()) {
3762 trigger_ev = false;
3763 req->work.func = io_poll_trigger_evfd;
3764 } else {
3765 req->flags |= REQ_F_COMP_LOCKED;
3766 io_put_req(req);
3767 req = NULL;
3768 }
3769 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3770 __io_cqring_ev_posted(ctx, trigger_ev);
Jens Axboee94f1412019-12-19 12:06:02 -07003771 } else {
3772 req->result = mask;
3773 req->llist_node.next = NULL;
3774 /* if the list wasn't empty, we're done */
3775 if (!llist_add(&req->llist_node, &ctx->poll_llist))
3776 req = NULL;
3777 else
3778 req->work.func = io_poll_flush;
3779 }
Jens Axboe8c838782019-03-12 15:48:16 -06003780 }
Jens Axboee94f1412019-12-19 12:06:02 -07003781 if (req)
3782 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003783
Jens Axboe221c5eb2019-01-17 09:41:58 -07003784 return 1;
3785}
3786
3787struct io_poll_table {
3788 struct poll_table_struct pt;
3789 struct io_kiocb *req;
3790 int error;
3791};
3792
3793static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3794 struct poll_table_struct *p)
3795{
3796 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3797
3798 if (unlikely(pt->req->poll.head)) {
3799 pt->error = -EINVAL;
3800 return;
3801 }
3802
3803 pt->error = 0;
3804 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07003805 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003806}
3807
Jens Axboeeac406c2019-11-14 12:09:58 -07003808static void io_poll_req_insert(struct io_kiocb *req)
3809{
3810 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07003811 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07003812
Jens Axboe78076bb2019-12-04 19:56:40 -07003813 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3814 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07003815}
3816
Jens Axboe3529d8c2019-12-19 18:24:38 -07003817static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003818{
3819 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003820 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003821
3822 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3823 return -EINVAL;
3824 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3825 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003826 if (!poll->file)
3827 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003828
Jens Axboe221c5eb2019-01-17 09:41:58 -07003829 events = READ_ONCE(sqe->poll_events);
3830 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07003831 return 0;
3832}
3833
3834static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3835{
3836 struct io_poll_iocb *poll = &req->poll;
3837 struct io_ring_ctx *ctx = req->ctx;
3838 struct io_poll_table ipt;
3839 bool cancel = false;
3840 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07003841
3842 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07003843 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003844
Jens Axboe221c5eb2019-01-17 09:41:58 -07003845 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06003846 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003847 poll->canceled = false;
3848
3849 ipt.pt._qproc = io_poll_queue_proc;
3850 ipt.pt._key = poll->events;
3851 ipt.req = req;
3852 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3853
3854 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07003855 INIT_LIST_HEAD(&poll->wait.entry);
3856 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
Jens Axboec2f2eb72020-02-10 09:07:05 -07003857 poll->wait.private = req;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003858
Jens Axboe36703242019-07-25 10:20:18 -06003859 INIT_LIST_HEAD(&req->list);
3860
Jens Axboe221c5eb2019-01-17 09:41:58 -07003861 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003862
3863 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06003864 if (likely(poll->head)) {
3865 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07003866 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06003867 if (ipt.error)
3868 cancel = true;
3869 ipt.error = 0;
3870 mask = 0;
3871 }
3872 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07003873 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003874 else if (cancel)
3875 WRITE_ONCE(poll->canceled, true);
3876 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07003877 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003878 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003879 }
Jens Axboe8c838782019-03-12 15:48:16 -06003880 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06003881 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003882 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06003883 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07003884 spin_unlock_irq(&ctx->completion_lock);
3885
Jens Axboe8c838782019-03-12 15:48:16 -06003886 if (mask) {
3887 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003888 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003889 }
Jens Axboe8c838782019-03-12 15:48:16 -06003890 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003891}
3892
Jens Axboe5262f562019-09-17 12:26:57 -06003893static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3894{
Jens Axboead8a48a2019-11-15 08:49:11 -07003895 struct io_timeout_data *data = container_of(timer,
3896 struct io_timeout_data, timer);
3897 struct io_kiocb *req = data->req;
3898 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06003899 unsigned long flags;
3900
Jens Axboe5262f562019-09-17 12:26:57 -06003901 atomic_inc(&ctx->cq_timeouts);
3902
3903 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08003904 /*
Jens Axboe11365042019-10-16 09:08:32 -06003905 * We could be racing with timeout deletion. If the list is empty,
3906 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08003907 */
Jens Axboe842f9612019-10-29 12:34:10 -06003908 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06003909 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06003910
Jens Axboe11365042019-10-16 09:08:32 -06003911 /*
3912 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08003913 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06003914 * pointer will be increased, otherwise other timeout reqs may
3915 * return in advance without waiting for enough wait_nr.
3916 */
3917 prev = req;
3918 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3919 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06003920 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06003921 }
Jens Axboe842f9612019-10-29 12:34:10 -06003922
Jens Axboe78e19bb2019-11-06 15:21:34 -07003923 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06003924 io_commit_cqring(ctx);
3925 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3926
3927 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003928 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003929 io_put_req(req);
3930 return HRTIMER_NORESTART;
3931}
3932
Jens Axboe47f46762019-11-09 17:43:02 -07003933static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3934{
3935 struct io_kiocb *req;
3936 int ret = -ENOENT;
3937
3938 list_for_each_entry(req, &ctx->timeout_list, list) {
3939 if (user_data == req->user_data) {
3940 list_del_init(&req->list);
3941 ret = 0;
3942 break;
3943 }
3944 }
3945
3946 if (ret == -ENOENT)
3947 return ret;
3948
Jens Axboe2d283902019-12-04 11:08:05 -07003949 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07003950 if (ret == -1)
3951 return -EALREADY;
3952
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003953 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003954 io_cqring_fill_event(req, -ECANCELED);
3955 io_put_req(req);
3956 return 0;
3957}
3958
Jens Axboe3529d8c2019-12-19 18:24:38 -07003959static int io_timeout_remove_prep(struct io_kiocb *req,
3960 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07003961{
Jens Axboeb29472e2019-12-17 18:50:29 -07003962 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3963 return -EINVAL;
3964 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3965 return -EINVAL;
3966
3967 req->timeout.addr = READ_ONCE(sqe->addr);
3968 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3969 if (req->timeout.flags)
3970 return -EINVAL;
3971
Jens Axboeb29472e2019-12-17 18:50:29 -07003972 return 0;
3973}
3974
Jens Axboe11365042019-10-16 09:08:32 -06003975/*
3976 * Remove or update an existing timeout command
3977 */
Jens Axboefc4df992019-12-10 14:38:45 -07003978static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06003979{
3980 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07003981 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06003982
Jens Axboe11365042019-10-16 09:08:32 -06003983 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07003984 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06003985
Jens Axboe47f46762019-11-09 17:43:02 -07003986 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06003987 io_commit_cqring(ctx);
3988 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003989 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003990 if (ret < 0)
3991 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003992 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06003993 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06003994}
3995
Jens Axboe3529d8c2019-12-19 18:24:38 -07003996static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07003997 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06003998{
Jens Axboead8a48a2019-11-15 08:49:11 -07003999 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004000 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004001
Jens Axboead8a48a2019-11-15 08:49:11 -07004002 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004003 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004004 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004005 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004006 if (sqe->off && is_timeout_link)
4007 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004008 flags = READ_ONCE(sqe->timeout_flags);
4009 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004010 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004011
Jens Axboe26a61672019-12-20 09:02:01 -07004012 req->timeout.count = READ_ONCE(sqe->off);
4013
Jens Axboe3529d8c2019-12-19 18:24:38 -07004014 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004015 return -ENOMEM;
4016
4017 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004018 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004019 req->flags |= REQ_F_TIMEOUT;
4020
4021 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004022 return -EFAULT;
4023
Jens Axboe11365042019-10-16 09:08:32 -06004024 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004025 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004026 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004027 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004028
Jens Axboead8a48a2019-11-15 08:49:11 -07004029 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4030 return 0;
4031}
4032
Jens Axboefc4df992019-12-10 14:38:45 -07004033static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004034{
4035 unsigned count;
4036 struct io_ring_ctx *ctx = req->ctx;
4037 struct io_timeout_data *data;
4038 struct list_head *entry;
4039 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004040
Jens Axboe2d283902019-12-04 11:08:05 -07004041 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004042
Jens Axboe5262f562019-09-17 12:26:57 -06004043 /*
4044 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004045 * timeout event to be satisfied. If it isn't set, then this is
4046 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004047 */
Jens Axboe26a61672019-12-20 09:02:01 -07004048 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004049 if (!count) {
4050 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4051 spin_lock_irq(&ctx->completion_lock);
4052 entry = ctx->timeout_list.prev;
4053 goto add;
4054 }
Jens Axboe5262f562019-09-17 12:26:57 -06004055
4056 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004057 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004058
4059 /*
4060 * Insertion sort, ensuring the first entry in the list is always
4061 * the one we need first.
4062 */
Jens Axboe5262f562019-09-17 12:26:57 -06004063 spin_lock_irq(&ctx->completion_lock);
4064 list_for_each_prev(entry, &ctx->timeout_list) {
4065 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004066 unsigned nxt_sq_head;
4067 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004068 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004069
Jens Axboe93bd25b2019-11-11 23:34:31 -07004070 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4071 continue;
4072
yangerkun5da0fb12019-10-15 21:59:29 +08004073 /*
4074 * Since cached_sq_head + count - 1 can overflow, use type long
4075 * long to store it.
4076 */
4077 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004078 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4079 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004080
4081 /*
4082 * cached_sq_head may overflow, and it will never overflow twice
4083 * once there is some timeout req still be valid.
4084 */
4085 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004086 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004087
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004088 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004089 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004090
4091 /*
4092 * Sequence of reqs after the insert one and itself should
4093 * be adjusted because each timeout req consumes a slot.
4094 */
4095 span++;
4096 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004097 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004098 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004099add:
Jens Axboe5262f562019-09-17 12:26:57 -06004100 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004101 data->timer.function = io_timeout_fn;
4102 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004103 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004104 return 0;
4105}
4106
Jens Axboe62755e32019-10-28 21:49:21 -06004107static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004108{
Jens Axboe62755e32019-10-28 21:49:21 -06004109 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004110
Jens Axboe62755e32019-10-28 21:49:21 -06004111 return req->user_data == (unsigned long) data;
4112}
4113
Jens Axboee977d6d2019-11-05 12:39:45 -07004114static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004115{
Jens Axboe62755e32019-10-28 21:49:21 -06004116 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004117 int ret = 0;
4118
Jens Axboe62755e32019-10-28 21:49:21 -06004119 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4120 switch (cancel_ret) {
4121 case IO_WQ_CANCEL_OK:
4122 ret = 0;
4123 break;
4124 case IO_WQ_CANCEL_RUNNING:
4125 ret = -EALREADY;
4126 break;
4127 case IO_WQ_CANCEL_NOTFOUND:
4128 ret = -ENOENT;
4129 break;
4130 }
4131
Jens Axboee977d6d2019-11-05 12:39:45 -07004132 return ret;
4133}
4134
Jens Axboe47f46762019-11-09 17:43:02 -07004135static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4136 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004137 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004138{
4139 unsigned long flags;
4140 int ret;
4141
4142 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4143 if (ret != -ENOENT) {
4144 spin_lock_irqsave(&ctx->completion_lock, flags);
4145 goto done;
4146 }
4147
4148 spin_lock_irqsave(&ctx->completion_lock, flags);
4149 ret = io_timeout_cancel(ctx, sqe_addr);
4150 if (ret != -ENOENT)
4151 goto done;
4152 ret = io_poll_cancel(ctx, sqe_addr);
4153done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004154 if (!ret)
4155 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004156 io_cqring_fill_event(req, ret);
4157 io_commit_cqring(ctx);
4158 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4159 io_cqring_ev_posted(ctx);
4160
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004161 if (ret < 0)
4162 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004163 io_put_req_find_next(req, nxt);
4164}
4165
Jens Axboe3529d8c2019-12-19 18:24:38 -07004166static int io_async_cancel_prep(struct io_kiocb *req,
4167 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004168{
Jens Axboefbf23842019-12-17 18:45:56 -07004169 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004170 return -EINVAL;
4171 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4172 sqe->cancel_flags)
4173 return -EINVAL;
4174
Jens Axboefbf23842019-12-17 18:45:56 -07004175 req->cancel.addr = READ_ONCE(sqe->addr);
4176 return 0;
4177}
4178
4179static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
4180{
4181 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004182
4183 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004184 return 0;
4185}
4186
Jens Axboe05f3fb32019-12-09 11:22:50 -07004187static int io_files_update_prep(struct io_kiocb *req,
4188 const struct io_uring_sqe *sqe)
4189{
4190 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4191 return -EINVAL;
4192
4193 req->files_update.offset = READ_ONCE(sqe->off);
4194 req->files_update.nr_args = READ_ONCE(sqe->len);
4195 if (!req->files_update.nr_args)
4196 return -EINVAL;
4197 req->files_update.arg = READ_ONCE(sqe->addr);
4198 return 0;
4199}
4200
4201static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4202{
4203 struct io_ring_ctx *ctx = req->ctx;
4204 struct io_uring_files_update up;
4205 int ret;
4206
Jens Axboef86cd202020-01-29 13:46:44 -07004207 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004208 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004209
4210 up.offset = req->files_update.offset;
4211 up.fds = req->files_update.arg;
4212
4213 mutex_lock(&ctx->uring_lock);
4214 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4215 mutex_unlock(&ctx->uring_lock);
4216
4217 if (ret < 0)
4218 req_set_fail_links(req);
4219 io_cqring_add_event(req, ret);
4220 io_put_req(req);
4221 return 0;
4222}
4223
Jens Axboe3529d8c2019-12-19 18:24:38 -07004224static int io_req_defer_prep(struct io_kiocb *req,
4225 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004226{
Jens Axboee7815732019-12-17 19:45:06 -07004227 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004228
Jens Axboef86cd202020-01-29 13:46:44 -07004229 if (io_op_defs[req->opcode].file_table) {
4230 ret = io_grab_files(req);
4231 if (unlikely(ret))
4232 return ret;
4233 }
4234
Jens Axboecccf0ee2020-01-27 16:34:48 -07004235 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4236
Jens Axboed625c6e2019-12-17 19:53:05 -07004237 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004238 case IORING_OP_NOP:
4239 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004240 case IORING_OP_READV:
4241 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004242 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004243 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004244 break;
4245 case IORING_OP_WRITEV:
4246 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004247 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004248 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004249 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004250 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004251 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004252 break;
4253 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004254 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004255 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004256 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004257 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004258 break;
4259 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004260 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004261 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004262 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004263 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004264 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004265 break;
4266 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004267 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004268 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004269 break;
Jens Axboef499a022019-12-02 16:28:46 -07004270 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004271 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004272 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004273 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004274 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004275 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004276 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004277 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004278 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004279 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004280 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004281 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004282 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004283 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004284 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004285 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004286 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004287 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004288 case IORING_OP_FALLOCATE:
4289 ret = io_fallocate_prep(req, sqe);
4290 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004291 case IORING_OP_OPENAT:
4292 ret = io_openat_prep(req, sqe);
4293 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004294 case IORING_OP_CLOSE:
4295 ret = io_close_prep(req, sqe);
4296 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004297 case IORING_OP_FILES_UPDATE:
4298 ret = io_files_update_prep(req, sqe);
4299 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004300 case IORING_OP_STATX:
4301 ret = io_statx_prep(req, sqe);
4302 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004303 case IORING_OP_FADVISE:
4304 ret = io_fadvise_prep(req, sqe);
4305 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004306 case IORING_OP_MADVISE:
4307 ret = io_madvise_prep(req, sqe);
4308 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004309 case IORING_OP_OPENAT2:
4310 ret = io_openat2_prep(req, sqe);
4311 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004312 case IORING_OP_EPOLL_CTL:
4313 ret = io_epoll_ctl_prep(req, sqe);
4314 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004315 case IORING_OP_SPLICE:
4316 ret = io_splice_prep(req, sqe);
4317 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004318 default:
Jens Axboee7815732019-12-17 19:45:06 -07004319 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4320 req->opcode);
4321 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004322 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004323 }
4324
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004325 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004326}
4327
Jens Axboe3529d8c2019-12-19 18:24:38 -07004328static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004329{
Jackie Liua197f662019-11-08 08:09:12 -07004330 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004331 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004332
Bob Liu9d858b22019-11-13 18:06:25 +08004333 /* Still need defer if there is pending req in defer list. */
4334 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004335 return 0;
4336
Jens Axboe3529d8c2019-12-19 18:24:38 -07004337 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004338 return -EAGAIN;
4339
Jens Axboe3529d8c2019-12-19 18:24:38 -07004340 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004341 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004342 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004343
Jens Axboede0617e2019-04-06 21:51:27 -06004344 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004345 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004346 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004347 return 0;
4348 }
4349
Jens Axboe915967f2019-11-21 09:01:20 -07004350 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004351 list_add_tail(&req->list, &ctx->defer_list);
4352 spin_unlock_irq(&ctx->completion_lock);
4353 return -EIOCBQUEUED;
4354}
4355
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004356static void io_cleanup_req(struct io_kiocb *req)
4357{
4358 struct io_async_ctx *io = req->io;
4359
4360 switch (req->opcode) {
4361 case IORING_OP_READV:
4362 case IORING_OP_READ_FIXED:
4363 case IORING_OP_READ:
4364 case IORING_OP_WRITEV:
4365 case IORING_OP_WRITE_FIXED:
4366 case IORING_OP_WRITE:
4367 if (io->rw.iov != io->rw.fast_iov)
4368 kfree(io->rw.iov);
4369 break;
4370 case IORING_OP_SENDMSG:
4371 case IORING_OP_RECVMSG:
4372 if (io->msg.iov != io->msg.fast_iov)
4373 kfree(io->msg.iov);
4374 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004375 case IORING_OP_OPENAT:
4376 case IORING_OP_OPENAT2:
4377 case IORING_OP_STATX:
4378 putname(req->open.filename);
4379 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004380 case IORING_OP_SPLICE:
4381 io_put_file(req, req->splice.file_in,
4382 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
4383 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004384 }
4385
4386 req->flags &= ~REQ_F_NEED_CLEANUP;
4387}
4388
Jens Axboe3529d8c2019-12-19 18:24:38 -07004389static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4390 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004391{
Jackie Liua197f662019-11-08 08:09:12 -07004392 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004393 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004394
Jens Axboed625c6e2019-12-17 19:53:05 -07004395 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004396 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004397 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004398 break;
4399 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004400 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004401 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004402 if (sqe) {
4403 ret = io_read_prep(req, sqe, force_nonblock);
4404 if (ret < 0)
4405 break;
4406 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004407 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004408 break;
4409 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07004410 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004411 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004412 if (sqe) {
4413 ret = io_write_prep(req, sqe, force_nonblock);
4414 if (ret < 0)
4415 break;
4416 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004417 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004418 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004419 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004420 if (sqe) {
4421 ret = io_prep_fsync(req, sqe);
4422 if (ret < 0)
4423 break;
4424 }
Jens Axboefc4df992019-12-10 14:38:45 -07004425 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004426 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004427 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004428 if (sqe) {
4429 ret = io_poll_add_prep(req, sqe);
4430 if (ret)
4431 break;
4432 }
Jens Axboefc4df992019-12-10 14:38:45 -07004433 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004434 break;
4435 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004436 if (sqe) {
4437 ret = io_poll_remove_prep(req, sqe);
4438 if (ret < 0)
4439 break;
4440 }
Jens Axboefc4df992019-12-10 14:38:45 -07004441 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004442 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004443 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004444 if (sqe) {
4445 ret = io_prep_sfr(req, sqe);
4446 if (ret < 0)
4447 break;
4448 }
Jens Axboefc4df992019-12-10 14:38:45 -07004449 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004450 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004451 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004452 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004453 if (sqe) {
4454 ret = io_sendmsg_prep(req, sqe);
4455 if (ret < 0)
4456 break;
4457 }
Jens Axboefddafac2020-01-04 20:19:44 -07004458 if (req->opcode == IORING_OP_SENDMSG)
4459 ret = io_sendmsg(req, nxt, force_nonblock);
4460 else
4461 ret = io_send(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004462 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06004463 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004464 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004465 if (sqe) {
4466 ret = io_recvmsg_prep(req, sqe);
4467 if (ret)
4468 break;
4469 }
Jens Axboefddafac2020-01-04 20:19:44 -07004470 if (req->opcode == IORING_OP_RECVMSG)
4471 ret = io_recvmsg(req, nxt, force_nonblock);
4472 else
4473 ret = io_recv(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06004474 break;
Jens Axboe5262f562019-09-17 12:26:57 -06004475 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004476 if (sqe) {
4477 ret = io_timeout_prep(req, sqe, false);
4478 if (ret)
4479 break;
4480 }
Jens Axboefc4df992019-12-10 14:38:45 -07004481 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004482 break;
Jens Axboe11365042019-10-16 09:08:32 -06004483 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004484 if (sqe) {
4485 ret = io_timeout_remove_prep(req, sqe);
4486 if (ret)
4487 break;
4488 }
Jens Axboefc4df992019-12-10 14:38:45 -07004489 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06004490 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06004491 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004492 if (sqe) {
4493 ret = io_accept_prep(req, sqe);
4494 if (ret)
4495 break;
4496 }
Jens Axboefc4df992019-12-10 14:38:45 -07004497 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004498 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004499 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004500 if (sqe) {
4501 ret = io_connect_prep(req, sqe);
4502 if (ret)
4503 break;
4504 }
Jens Axboefc4df992019-12-10 14:38:45 -07004505 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004506 break;
Jens Axboe62755e32019-10-28 21:49:21 -06004507 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004508 if (sqe) {
4509 ret = io_async_cancel_prep(req, sqe);
4510 if (ret)
4511 break;
4512 }
Jens Axboefc4df992019-12-10 14:38:45 -07004513 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06004514 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004515 case IORING_OP_FALLOCATE:
4516 if (sqe) {
4517 ret = io_fallocate_prep(req, sqe);
4518 if (ret)
4519 break;
4520 }
4521 ret = io_fallocate(req, nxt, force_nonblock);
4522 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004523 case IORING_OP_OPENAT:
4524 if (sqe) {
4525 ret = io_openat_prep(req, sqe);
4526 if (ret)
4527 break;
4528 }
4529 ret = io_openat(req, nxt, force_nonblock);
4530 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004531 case IORING_OP_CLOSE:
4532 if (sqe) {
4533 ret = io_close_prep(req, sqe);
4534 if (ret)
4535 break;
4536 }
4537 ret = io_close(req, nxt, force_nonblock);
4538 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004539 case IORING_OP_FILES_UPDATE:
4540 if (sqe) {
4541 ret = io_files_update_prep(req, sqe);
4542 if (ret)
4543 break;
4544 }
4545 ret = io_files_update(req, force_nonblock);
4546 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004547 case IORING_OP_STATX:
4548 if (sqe) {
4549 ret = io_statx_prep(req, sqe);
4550 if (ret)
4551 break;
4552 }
4553 ret = io_statx(req, nxt, force_nonblock);
4554 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004555 case IORING_OP_FADVISE:
4556 if (sqe) {
4557 ret = io_fadvise_prep(req, sqe);
4558 if (ret)
4559 break;
4560 }
4561 ret = io_fadvise(req, nxt, force_nonblock);
4562 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004563 case IORING_OP_MADVISE:
4564 if (sqe) {
4565 ret = io_madvise_prep(req, sqe);
4566 if (ret)
4567 break;
4568 }
4569 ret = io_madvise(req, nxt, force_nonblock);
4570 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004571 case IORING_OP_OPENAT2:
4572 if (sqe) {
4573 ret = io_openat2_prep(req, sqe);
4574 if (ret)
4575 break;
4576 }
4577 ret = io_openat2(req, nxt, force_nonblock);
4578 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004579 case IORING_OP_EPOLL_CTL:
4580 if (sqe) {
4581 ret = io_epoll_ctl_prep(req, sqe);
4582 if (ret)
4583 break;
4584 }
4585 ret = io_epoll_ctl(req, nxt, force_nonblock);
4586 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004587 case IORING_OP_SPLICE:
4588 if (sqe) {
4589 ret = io_splice_prep(req, sqe);
4590 if (ret < 0)
4591 break;
4592 }
4593 ret = io_splice(req, nxt, force_nonblock);
4594 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004595 default:
4596 ret = -EINVAL;
4597 break;
4598 }
4599
Jens Axboedef596e2019-01-09 08:59:42 -07004600 if (ret)
4601 return ret;
4602
4603 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07004604 const bool in_async = io_wq_current_is_worker();
4605
Jens Axboe9e645e112019-05-10 16:07:28 -06004606 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07004607 return -EAGAIN;
4608
Jens Axboe11ba8202020-01-15 21:51:17 -07004609 /* workqueue context doesn't hold uring_lock, grab it now */
4610 if (in_async)
4611 mutex_lock(&ctx->uring_lock);
4612
Jens Axboedef596e2019-01-09 08:59:42 -07004613 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07004614
4615 if (in_async)
4616 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07004617 }
4618
4619 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004620}
4621
Jens Axboe561fb042019-10-24 07:25:42 -06004622static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07004623{
Jens Axboe561fb042019-10-24 07:25:42 -06004624 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004625 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06004626 struct io_kiocb *nxt = NULL;
4627 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004628
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004629 /* if NO_CANCEL is set, we must still run the work */
4630 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4631 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06004632 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004633 }
Jens Axboe31b51512019-01-18 22:56:34 -07004634
Jens Axboe561fb042019-10-24 07:25:42 -06004635 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06004636 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004637 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06004638 /*
4639 * We can get EAGAIN for polled IO even though we're
4640 * forcing a sync submission from here, since we can't
4641 * wait for request slots on the block side.
4642 */
4643 if (ret != -EAGAIN)
4644 break;
4645 cond_resched();
4646 } while (1);
4647 }
Jens Axboe31b51512019-01-18 22:56:34 -07004648
Jens Axboe561fb042019-10-24 07:25:42 -06004649 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08004650 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06004651
Jens Axboe561fb042019-10-24 07:25:42 -06004652 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004653 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004654 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06004655 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07004656 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004657
Jens Axboe561fb042019-10-24 07:25:42 -06004658 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07004659 if (!ret && nxt)
4660 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07004661}
Jens Axboe2b188cc2019-01-07 10:46:33 -07004662
Jens Axboe15b71ab2019-12-11 11:20:36 -07004663static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004664{
Jens Axboed3656342019-12-18 09:50:26 -07004665 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004666 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07004667 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07004668 return 0;
4669 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06004670}
4671
Jens Axboe65e19f52019-10-26 07:20:21 -06004672static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4673 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06004674{
Jens Axboe65e19f52019-10-26 07:20:21 -06004675 struct fixed_file_table *table;
4676
Jens Axboe05f3fb32019-12-09 11:22:50 -07004677 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4678 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06004679}
4680
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004681static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
4682 int fd, struct file **out_file, bool fixed)
4683{
4684 struct io_ring_ctx *ctx = req->ctx;
4685 struct file *file;
4686
4687 if (fixed) {
4688 if (unlikely(!ctx->file_data ||
4689 (unsigned) fd >= ctx->nr_user_files))
4690 return -EBADF;
4691 fd = array_index_nospec(fd, ctx->nr_user_files);
4692 file = io_file_from_index(ctx, fd);
4693 if (!file)
4694 return -EBADF;
4695 percpu_ref_get(&ctx->file_data->refs);
4696 } else {
4697 trace_io_uring_file_get(ctx, fd);
4698 file = __io_file_get(state, fd);
4699 if (unlikely(!file))
4700 return -EBADF;
4701 }
4702
4703 *out_file = file;
4704 return 0;
4705}
4706
Jens Axboe3529d8c2019-12-19 18:24:38 -07004707static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4708 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06004709{
4710 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07004711 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004712 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06004713
Jens Axboe3529d8c2019-12-19 18:24:38 -07004714 flags = READ_ONCE(sqe->flags);
4715 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004716
Jens Axboed3656342019-12-18 09:50:26 -07004717 if (!io_req_needs_file(req, fd))
4718 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06004719
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004720 fixed = (flags & IOSQE_FIXED_FILE);
4721 if (unlikely(!fixed && req->needs_fixed_file))
4722 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06004723
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004724 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06004725}
4726
Jackie Liua197f662019-11-08 08:09:12 -07004727static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004728{
Jens Axboefcb323c2019-10-24 12:39:47 -06004729 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07004730 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06004731
Jens Axboef86cd202020-01-29 13:46:44 -07004732 if (req->work.files)
4733 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004734 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07004735 return -EBADF;
4736
Jens Axboefcb323c2019-10-24 12:39:47 -06004737 rcu_read_lock();
4738 spin_lock_irq(&ctx->inflight_lock);
4739 /*
4740 * We use the f_ops->flush() handler to ensure that we can flush
4741 * out work accessing these files if the fd is closed. Check if
4742 * the fd has changed since we started down this path, and disallow
4743 * this operation if it has.
4744 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004745 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06004746 list_add(&req->inflight_entry, &ctx->inflight_list);
4747 req->flags |= REQ_F_INFLIGHT;
4748 req->work.files = current->files;
4749 ret = 0;
4750 }
4751 spin_unlock_irq(&ctx->inflight_lock);
4752 rcu_read_unlock();
4753
4754 return ret;
4755}
4756
Jens Axboe2665abf2019-11-05 12:40:47 -07004757static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
4758{
Jens Axboead8a48a2019-11-15 08:49:11 -07004759 struct io_timeout_data *data = container_of(timer,
4760 struct io_timeout_data, timer);
4761 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07004762 struct io_ring_ctx *ctx = req->ctx;
4763 struct io_kiocb *prev = NULL;
4764 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07004765
4766 spin_lock_irqsave(&ctx->completion_lock, flags);
4767
4768 /*
4769 * We don't expect the list to be empty, that will only happen if we
4770 * race with the completion of the linked work.
4771 */
Pavel Begunkov44932332019-12-05 16:16:35 +03004772 if (!list_empty(&req->link_list)) {
4773 prev = list_entry(req->link_list.prev, struct io_kiocb,
4774 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004775 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03004776 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004777 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4778 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07004779 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004780 }
4781
4782 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4783
4784 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004785 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004786 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4787 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07004788 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07004789 } else {
4790 io_cqring_add_event(req, -ETIME);
4791 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004792 }
Jens Axboe2665abf2019-11-05 12:40:47 -07004793 return HRTIMER_NORESTART;
4794}
4795
Jens Axboead8a48a2019-11-15 08:49:11 -07004796static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004797{
Jens Axboe76a46e02019-11-10 23:34:16 -07004798 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07004799
Jens Axboe76a46e02019-11-10 23:34:16 -07004800 /*
4801 * If the list is now empty, then our linked request finished before
4802 * we got a chance to setup the timer
4803 */
4804 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03004805 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07004806 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07004807
Jens Axboead8a48a2019-11-15 08:49:11 -07004808 data->timer.function = io_link_timeout_fn;
4809 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4810 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07004811 }
Jens Axboe76a46e02019-11-10 23:34:16 -07004812 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07004813
Jens Axboe2665abf2019-11-05 12:40:47 -07004814 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07004815 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004816}
4817
Jens Axboead8a48a2019-11-15 08:49:11 -07004818static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004819{
4820 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004821
Jens Axboe2665abf2019-11-05 12:40:47 -07004822 if (!(req->flags & REQ_F_LINK))
4823 return NULL;
4824
Pavel Begunkov44932332019-12-05 16:16:35 +03004825 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4826 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07004827 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07004828 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004829
Jens Axboe76a46e02019-11-10 23:34:16 -07004830 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07004831 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07004832}
4833
Jens Axboe3529d8c2019-12-19 18:24:38 -07004834static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004835{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004836 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004837 struct io_kiocb *nxt = NULL;
Jens Axboe193155c2020-02-22 23:22:19 -07004838 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004839 int ret;
4840
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004841again:
4842 linked_timeout = io_prep_linked_timeout(req);
4843
Jens Axboe193155c2020-02-22 23:22:19 -07004844 if (req->work.creds && req->work.creds != current_cred()) {
4845 if (old_creds)
4846 revert_creds(old_creds);
4847 if (old_creds == req->work.creds)
4848 old_creds = NULL; /* restored original creds */
4849 else
4850 old_creds = override_creds(req->work.creds);
4851 }
4852
Jens Axboe3529d8c2019-12-19 18:24:38 -07004853 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06004854
4855 /*
4856 * We async punt it if the file wasn't marked NOWAIT, or if the file
4857 * doesn't support non-blocking read/write attempts
4858 */
4859 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4860 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004861punt:
Jens Axboef86cd202020-01-29 13:46:44 -07004862 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004863 ret = io_grab_files(req);
4864 if (ret)
4865 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004866 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004867
4868 /*
4869 * Queued up for async execution, worker will release
4870 * submit reference when the iocb is actually submitted.
4871 */
4872 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004873 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004874 }
Jens Axboee65ef562019-03-12 10:16:44 -06004875
Jens Axboefcb323c2019-10-24 12:39:47 -06004876err:
Jens Axboee65ef562019-03-12 10:16:44 -06004877 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07004878 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06004879
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004880 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07004881 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004882 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004883 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004884 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004885 }
4886
Jens Axboee65ef562019-03-12 10:16:44 -06004887 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06004888 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004889 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004890 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004891 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06004892 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004893done_req:
4894 if (nxt) {
4895 req = nxt;
4896 nxt = NULL;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004897
4898 if (req->flags & REQ_F_FORCE_ASYNC)
4899 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004900 goto again;
4901 }
Jens Axboe193155c2020-02-22 23:22:19 -07004902 if (old_creds)
4903 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004904}
4905
Jens Axboe3529d8c2019-12-19 18:24:38 -07004906static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004907{
4908 int ret;
4909
Jens Axboe3529d8c2019-12-19 18:24:38 -07004910 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004911 if (ret) {
4912 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004913fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004914 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004915 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004916 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004917 }
Pavel Begunkov25508782019-12-30 21:24:47 +03004918 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004919 ret = io_req_defer_prep(req, sqe);
4920 if (unlikely(ret < 0))
4921 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07004922 /*
4923 * Never try inline submit of IOSQE_ASYNC is set, go straight
4924 * to async execution.
4925 */
4926 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4927 io_queue_async_work(req);
4928 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004929 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07004930 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08004931}
4932
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004933static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004934{
Jens Axboe94ae5e72019-11-14 19:39:52 -07004935 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004936 io_cqring_add_event(req, -ECANCELED);
4937 io_double_put_req(req);
4938 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07004939 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004940}
4941
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004942#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboece35a472019-12-17 08:04:44 -07004943 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
Jens Axboe9e645e112019-05-10 16:07:28 -06004944
Jens Axboe3529d8c2019-12-19 18:24:38 -07004945static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4946 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06004947{
Jackie Liua197f662019-11-08 08:09:12 -07004948 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004949 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07004950 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06004951
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004952 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06004953
4954 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004955 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004956 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03004957 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06004958 }
4959
Jens Axboe75c6a032020-01-28 10:15:23 -07004960 id = READ_ONCE(sqe->personality);
4961 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07004962 req->work.creds = idr_find(&ctx->personality_idr, id);
4963 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07004964 ret = -EINVAL;
4965 goto err_req;
4966 }
Jens Axboe193155c2020-02-22 23:22:19 -07004967 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07004968 }
4969
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03004970 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004971 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
4972 IOSQE_ASYNC | IOSQE_FIXED_FILE);
Jens Axboe9e645e112019-05-10 16:07:28 -06004973
Jens Axboe3529d8c2019-12-19 18:24:38 -07004974 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004975 if (unlikely(ret)) {
4976err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004977 io_cqring_add_event(req, ret);
4978 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004979 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06004980 }
4981
Jens Axboe9e645e112019-05-10 16:07:28 -06004982 /*
4983 * If we already have a head request, queue this one for async
4984 * submittal once the head completes. If we don't have a head but
4985 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4986 * submitted sync once the chain is complete. If none of those
4987 * conditions are true (normal request), then just queue it.
4988 */
4989 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03004990 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06004991
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03004992 /*
4993 * Taking sequential execution of a link, draining both sides
4994 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
4995 * requests in the link. So, it drains the head and the
4996 * next after the link request. The last one is done via
4997 * drain_next flag to persist the effect across calls.
4998 */
Pavel Begunkov711be032020-01-17 03:57:59 +03004999 if (sqe_flags & IOSQE_IO_DRAIN) {
5000 head->flags |= REQ_F_IO_DRAIN;
5001 ctx->drain_next = 1;
5002 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005003 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005004 ret = -EAGAIN;
5005 goto err_req;
5006 }
5007
Jens Axboe3529d8c2019-12-19 18:24:38 -07005008 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005009 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005010 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005011 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005012 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005013 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005014 trace_io_uring_link(ctx, req, head);
5015 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005016
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005017 /* last request of a link, enqueue the link */
5018 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5019 io_queue_link_head(head);
5020 *link = NULL;
5021 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005022 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005023 if (unlikely(ctx->drain_next)) {
5024 req->flags |= REQ_F_IO_DRAIN;
5025 req->ctx->drain_next = 0;
5026 }
5027 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5028 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005029 INIT_LIST_HEAD(&req->link_list);
5030 ret = io_req_defer_prep(req, sqe);
5031 if (ret)
5032 req->flags |= REQ_F_FAIL_LINK;
5033 *link = req;
5034 } else {
5035 io_queue_sqe(req, sqe);
5036 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005037 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005038
5039 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005040}
5041
Jens Axboe9a56a232019-01-09 09:06:50 -07005042/*
5043 * Batched submission is done, ensure local IO is flushed out.
5044 */
5045static void io_submit_state_end(struct io_submit_state *state)
5046{
5047 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005048 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005049 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005050 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005051}
5052
5053/*
5054 * Start submission side cache.
5055 */
5056static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005057 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005058{
5059 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005060 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005061 state->file = NULL;
5062 state->ios_left = max_ios;
5063}
5064
Jens Axboe2b188cc2019-01-07 10:46:33 -07005065static void io_commit_sqring(struct io_ring_ctx *ctx)
5066{
Hristo Venev75b28af2019-08-26 17:23:46 +00005067 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005068
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005069 /*
5070 * Ensure any loads from the SQEs are done at this point,
5071 * since once we write the new head, the application could
5072 * write new data to them.
5073 */
5074 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005075}
5076
5077/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005078 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005079 * that is mapped by userspace. This means that care needs to be taken to
5080 * ensure that reads are stable, as we cannot rely on userspace always
5081 * being a good citizen. If members of the sqe are validated and then later
5082 * used, it's important that those reads are done through READ_ONCE() to
5083 * prevent a re-load down the line.
5084 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07005085static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
5086 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005087{
Hristo Venev75b28af2019-08-26 17:23:46 +00005088 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005089 unsigned head;
5090
5091 /*
5092 * The cached sq head (or cq tail) serves two purposes:
5093 *
5094 * 1) allows us to batch the cost of updating the user visible
5095 * head updates.
5096 * 2) allows the kernel side to track the head on its own, even
5097 * though the application is the one updating it.
5098 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005099 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03005100 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005101 /*
5102 * All io need record the previous position, if LINK vs DARIN,
5103 * it can be used to mark the position of the first IO in the
5104 * link list.
5105 */
5106 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07005107 *sqe_ptr = &ctx->sq_sqes[head];
5108 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
5109 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005110 ctx->cached_sq_head++;
5111 return true;
5112 }
5113
5114 /* drop invalid entries */
5115 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06005116 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005117 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005118 return false;
5119}
5120
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005121static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005122 struct file *ring_file, int ring_fd,
5123 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005124{
5125 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005126 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005127 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005128 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005129
Jens Axboec4a2ed72019-11-21 21:01:26 -07005130 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005131 if (test_bit(0, &ctx->sq_check_overflow)) {
5132 if (!list_empty(&ctx->cq_overflow_list) &&
5133 !io_cqring_overflow_flush(ctx, false))
5134 return -EBUSY;
5135 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005136
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005137 /* make sure SQ entry isn't read before tail */
5138 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005139
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005140 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5141 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005142
5143 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005144 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005145 statep = &state;
5146 }
5147
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005148 ctx->ring_fd = ring_fd;
5149 ctx->ring_file = ring_file;
5150
Jens Axboe6c271ce2019-01-10 11:22:30 -07005151 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005152 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005153 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005154 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005155
Pavel Begunkov196be952019-11-07 01:41:06 +03005156 req = io_get_req(ctx, statep);
5157 if (unlikely(!req)) {
5158 if (!submitted)
5159 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005160 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005161 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005162 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005163 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005164 break;
5165 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005166
Jens Axboed3656342019-12-18 09:50:26 -07005167 /* will complete beyond this point, count as submitted */
5168 submitted++;
5169
5170 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005171 err = -EINVAL;
5172fail_req:
5173 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005174 io_double_put_req(req);
5175 break;
5176 }
5177
5178 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005179 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005180 if (unlikely(mm_fault)) {
5181 err = -EFAULT;
5182 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005183 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005184 use_mm(ctx->sqo_mm);
5185 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005186 }
5187
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005188 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005189 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5190 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005191 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005192 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005193 }
5194
Pavel Begunkov9466f432020-01-25 22:34:01 +03005195 if (unlikely(submitted != nr)) {
5196 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5197
5198 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5199 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005200 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005201 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005202 if (statep)
5203 io_submit_state_end(&state);
5204
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005205 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5206 io_commit_sqring(ctx);
5207
Jens Axboe6c271ce2019-01-10 11:22:30 -07005208 return submitted;
5209}
5210
5211static int io_sq_thread(void *data)
5212{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005213 struct io_ring_ctx *ctx = data;
5214 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005215 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005216 mm_segment_t old_fs;
5217 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005218 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005219 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005220
Jens Axboe206aefd2019-11-07 18:27:42 -07005221 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005222
Jens Axboe6c271ce2019-01-10 11:22:30 -07005223 old_fs = get_fs();
5224 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005225 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005226
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005227 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005228 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005229 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005230
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005231 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005232 unsigned nr_events = 0;
5233
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005234 mutex_lock(&ctx->uring_lock);
5235 if (!list_empty(&ctx->poll_list))
5236 io_iopoll_getevents(ctx, &nr_events, 0);
5237 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005238 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005239 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005240 }
5241
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005242 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005243
5244 /*
5245 * If submit got -EBUSY, flag us as needing the application
5246 * to enter the kernel to reap and flush events.
5247 */
5248 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005249 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005250 * Drop cur_mm before scheduling, we can't hold it for
5251 * long periods (or over schedule()). Do this before
5252 * adding ourselves to the waitqueue, as the unuse/drop
5253 * may sleep.
5254 */
5255 if (cur_mm) {
5256 unuse_mm(cur_mm);
5257 mmput(cur_mm);
5258 cur_mm = NULL;
5259 }
5260
5261 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005262 * We're polling. If we're within the defined idle
5263 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005264 * to sleep. The exception is if we got EBUSY doing
5265 * more IO, we should wait for the application to
5266 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005267 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005268 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005269 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5270 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboe9831a902019-09-19 09:48:55 -06005271 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005272 continue;
5273 }
5274
Jens Axboe6c271ce2019-01-10 11:22:30 -07005275 prepare_to_wait(&ctx->sqo_wait, &wait,
5276 TASK_INTERRUPTIBLE);
5277
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005278 /*
5279 * While doing polled IO, before going to sleep, we need
5280 * to check if there are new reqs added to poll_list, it
5281 * is because reqs may have been punted to io worker and
5282 * will be added to poll_list later, hence check the
5283 * poll_list again.
5284 */
5285 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5286 !list_empty_careful(&ctx->poll_list)) {
5287 finish_wait(&ctx->sqo_wait, &wait);
5288 continue;
5289 }
5290
Jens Axboe6c271ce2019-01-10 11:22:30 -07005291 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005292 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005293 /* make sure to read SQ tail after writing flags */
5294 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005295
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005296 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005297 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005298 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005299 finish_wait(&ctx->sqo_wait, &wait);
5300 break;
5301 }
5302 if (signal_pending(current))
5303 flush_signals(current);
5304 schedule();
5305 finish_wait(&ctx->sqo_wait, &wait);
5306
Hristo Venev75b28af2019-08-26 17:23:46 +00005307 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005308 continue;
5309 }
5310 finish_wait(&ctx->sqo_wait, &wait);
5311
Hristo Venev75b28af2019-08-26 17:23:46 +00005312 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005313 }
5314
Jens Axboe8a4955f2019-12-09 14:52:35 -07005315 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005316 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005317 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005318 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005319 }
5320
5321 set_fs(old_fs);
5322 if (cur_mm) {
5323 unuse_mm(cur_mm);
5324 mmput(cur_mm);
5325 }
Jens Axboe181e4482019-11-25 08:52:30 -07005326 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06005327
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005328 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06005329
Jens Axboe6c271ce2019-01-10 11:22:30 -07005330 return 0;
5331}
5332
Jens Axboebda52162019-09-24 13:47:15 -06005333struct io_wait_queue {
5334 struct wait_queue_entry wq;
5335 struct io_ring_ctx *ctx;
5336 unsigned to_wait;
5337 unsigned nr_timeouts;
5338};
5339
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005340static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06005341{
5342 struct io_ring_ctx *ctx = iowq->ctx;
5343
5344 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08005345 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06005346 * started waiting. For timeouts, we always want to return to userspace,
5347 * regardless of event count.
5348 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005349 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06005350 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
5351}
5352
5353static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
5354 int wake_flags, void *key)
5355{
5356 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
5357 wq);
5358
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005359 /* use noflush == true, as we can't safely rely on locking context */
5360 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06005361 return -1;
5362
5363 return autoremove_wake_function(curr, mode, wake_flags, key);
5364}
5365
Jens Axboe2b188cc2019-01-07 10:46:33 -07005366/*
5367 * Wait until events become available, if we don't already have some. The
5368 * application must reap them itself, as they reside on the shared cq ring.
5369 */
5370static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
5371 const sigset_t __user *sig, size_t sigsz)
5372{
Jens Axboebda52162019-09-24 13:47:15 -06005373 struct io_wait_queue iowq = {
5374 .wq = {
5375 .private = current,
5376 .func = io_wake_function,
5377 .entry = LIST_HEAD_INIT(iowq.wq.entry),
5378 },
5379 .ctx = ctx,
5380 .to_wait = min_events,
5381 };
Hristo Venev75b28af2019-08-26 17:23:46 +00005382 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005383 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005384
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005385 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005386 return 0;
5387
5388 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005389#ifdef CONFIG_COMPAT
5390 if (in_compat_syscall())
5391 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07005392 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005393 else
5394#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07005395 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005396
Jens Axboe2b188cc2019-01-07 10:46:33 -07005397 if (ret)
5398 return ret;
5399 }
5400
Jens Axboebda52162019-09-24 13:47:15 -06005401 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005402 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06005403 do {
5404 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
5405 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005406 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06005407 break;
5408 schedule();
5409 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005410 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06005411 break;
5412 }
5413 } while (1);
5414 finish_wait(&ctx->wait, &iowq.wq);
5415
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005416 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005417
Hristo Venev75b28af2019-08-26 17:23:46 +00005418 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005419}
5420
Jens Axboe6b063142019-01-10 22:13:58 -07005421static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
5422{
5423#if defined(CONFIG_UNIX)
5424 if (ctx->ring_sock) {
5425 struct sock *sock = ctx->ring_sock->sk;
5426 struct sk_buff *skb;
5427
5428 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
5429 kfree_skb(skb);
5430 }
5431#else
5432 int i;
5433
Jens Axboe65e19f52019-10-26 07:20:21 -06005434 for (i = 0; i < ctx->nr_user_files; i++) {
5435 struct file *file;
5436
5437 file = io_file_from_index(ctx, i);
5438 if (file)
5439 fput(file);
5440 }
Jens Axboe6b063142019-01-10 22:13:58 -07005441#endif
5442}
5443
Jens Axboe05f3fb32019-12-09 11:22:50 -07005444static void io_file_ref_kill(struct percpu_ref *ref)
5445{
5446 struct fixed_file_data *data;
5447
5448 data = container_of(ref, struct fixed_file_data, refs);
5449 complete(&data->done);
5450}
5451
Jens Axboe6b063142019-01-10 22:13:58 -07005452static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
5453{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005454 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06005455 unsigned nr_tables, i;
5456
Jens Axboe05f3fb32019-12-09 11:22:50 -07005457 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07005458 return -ENXIO;
5459
Jens Axboe05f3fb32019-12-09 11:22:50 -07005460 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
Jens Axboee46a7952020-01-17 11:15:34 -07005461 flush_work(&data->ref_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07005462 wait_for_completion(&data->done);
5463 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005464 percpu_ref_exit(&data->refs);
5465
Jens Axboe6b063142019-01-10 22:13:58 -07005466 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06005467 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
5468 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005469 kfree(data->table[i].files);
5470 kfree(data->table);
5471 kfree(data);
5472 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005473 ctx->nr_user_files = 0;
5474 return 0;
5475}
5476
Jens Axboe6c271ce2019-01-10 11:22:30 -07005477static void io_sq_thread_stop(struct io_ring_ctx *ctx)
5478{
5479 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07005480 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005481 /*
5482 * The park is a bit of a work-around, without it we get
5483 * warning spews on shutdown with SQPOLL set and affinity
5484 * set to a single CPU.
5485 */
Jens Axboe06058632019-04-13 09:26:03 -06005486 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005487 kthread_stop(ctx->sqo_thread);
5488 ctx->sqo_thread = NULL;
5489 }
5490}
5491
Jens Axboe6b063142019-01-10 22:13:58 -07005492static void io_finish_async(struct io_ring_ctx *ctx)
5493{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005494 io_sq_thread_stop(ctx);
5495
Jens Axboe561fb042019-10-24 07:25:42 -06005496 if (ctx->io_wq) {
5497 io_wq_destroy(ctx->io_wq);
5498 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005499 }
5500}
5501
5502#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07005503/*
5504 * Ensure the UNIX gc is aware of our file set, so we are certain that
5505 * the io_uring can be safely unregistered on process exit, even if we have
5506 * loops in the file referencing.
5507 */
5508static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
5509{
5510 struct sock *sk = ctx->ring_sock->sk;
5511 struct scm_fp_list *fpl;
5512 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06005513 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07005514
5515 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
5516 unsigned long inflight = ctx->user->unix_inflight + nr;
5517
5518 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
5519 return -EMFILE;
5520 }
5521
5522 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
5523 if (!fpl)
5524 return -ENOMEM;
5525
5526 skb = alloc_skb(0, GFP_KERNEL);
5527 if (!skb) {
5528 kfree(fpl);
5529 return -ENOMEM;
5530 }
5531
5532 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07005533
Jens Axboe08a45172019-10-03 08:11:03 -06005534 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07005535 fpl->user = get_uid(ctx->user);
5536 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005537 struct file *file = io_file_from_index(ctx, i + offset);
5538
5539 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06005540 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06005541 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06005542 unix_inflight(fpl->user, fpl->fp[nr_files]);
5543 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07005544 }
5545
Jens Axboe08a45172019-10-03 08:11:03 -06005546 if (nr_files) {
5547 fpl->max = SCM_MAX_FD;
5548 fpl->count = nr_files;
5549 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005550 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06005551 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
5552 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07005553
Jens Axboe08a45172019-10-03 08:11:03 -06005554 for (i = 0; i < nr_files; i++)
5555 fput(fpl->fp[i]);
5556 } else {
5557 kfree_skb(skb);
5558 kfree(fpl);
5559 }
Jens Axboe6b063142019-01-10 22:13:58 -07005560
5561 return 0;
5562}
5563
5564/*
5565 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
5566 * causes regular reference counting to break down. We rely on the UNIX
5567 * garbage collection to take care of this problem for us.
5568 */
5569static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5570{
5571 unsigned left, total;
5572 int ret = 0;
5573
5574 total = 0;
5575 left = ctx->nr_user_files;
5576 while (left) {
5577 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07005578
5579 ret = __io_sqe_files_scm(ctx, this_files, total);
5580 if (ret)
5581 break;
5582 left -= this_files;
5583 total += this_files;
5584 }
5585
5586 if (!ret)
5587 return 0;
5588
5589 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005590 struct file *file = io_file_from_index(ctx, total);
5591
5592 if (file)
5593 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07005594 total++;
5595 }
5596
5597 return ret;
5598}
5599#else
5600static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5601{
5602 return 0;
5603}
5604#endif
5605
Jens Axboe65e19f52019-10-26 07:20:21 -06005606static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
5607 unsigned nr_files)
5608{
5609 int i;
5610
5611 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005612 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005613 unsigned this_files;
5614
5615 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
5616 table->files = kcalloc(this_files, sizeof(struct file *),
5617 GFP_KERNEL);
5618 if (!table->files)
5619 break;
5620 nr_files -= this_files;
5621 }
5622
5623 if (i == nr_tables)
5624 return 0;
5625
5626 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005627 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005628 kfree(table->files);
5629 }
5630 return 1;
5631}
5632
Jens Axboe05f3fb32019-12-09 11:22:50 -07005633static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06005634{
5635#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06005636 struct sock *sock = ctx->ring_sock->sk;
5637 struct sk_buff_head list, *head = &sock->sk_receive_queue;
5638 struct sk_buff *skb;
5639 int i;
5640
5641 __skb_queue_head_init(&list);
5642
5643 /*
5644 * Find the skb that holds this file in its SCM_RIGHTS. When found,
5645 * remove this entry and rearrange the file array.
5646 */
5647 skb = skb_dequeue(head);
5648 while (skb) {
5649 struct scm_fp_list *fp;
5650
5651 fp = UNIXCB(skb).fp;
5652 for (i = 0; i < fp->count; i++) {
5653 int left;
5654
5655 if (fp->fp[i] != file)
5656 continue;
5657
5658 unix_notinflight(fp->user, fp->fp[i]);
5659 left = fp->count - 1 - i;
5660 if (left) {
5661 memmove(&fp->fp[i], &fp->fp[i + 1],
5662 left * sizeof(struct file *));
5663 }
5664 fp->count--;
5665 if (!fp->count) {
5666 kfree_skb(skb);
5667 skb = NULL;
5668 } else {
5669 __skb_queue_tail(&list, skb);
5670 }
5671 fput(file);
5672 file = NULL;
5673 break;
5674 }
5675
5676 if (!file)
5677 break;
5678
5679 __skb_queue_tail(&list, skb);
5680
5681 skb = skb_dequeue(head);
5682 }
5683
5684 if (skb_peek(&list)) {
5685 spin_lock_irq(&head->lock);
5686 while ((skb = __skb_dequeue(&list)) != NULL)
5687 __skb_queue_tail(head, skb);
5688 spin_unlock_irq(&head->lock);
5689 }
5690#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07005691 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06005692#endif
5693}
5694
Jens Axboe05f3fb32019-12-09 11:22:50 -07005695struct io_file_put {
5696 struct llist_node llist;
5697 struct file *file;
5698 struct completion *done;
5699};
5700
Jens Axboe2faf8522020-02-04 19:54:55 -07005701static void io_ring_file_ref_flush(struct fixed_file_data *data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005702{
5703 struct io_file_put *pfile, *tmp;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005704 struct llist_node *node;
5705
Jens Axboe05f3fb32019-12-09 11:22:50 -07005706 while ((node = llist_del_all(&data->put_llist)) != NULL) {
5707 llist_for_each_entry_safe(pfile, tmp, node, llist) {
5708 io_ring_file_put(data->ctx, pfile->file);
5709 if (pfile->done)
5710 complete(pfile->done);
5711 else
5712 kfree(pfile);
5713 }
5714 }
Jens Axboe2faf8522020-02-04 19:54:55 -07005715}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005716
Jens Axboe2faf8522020-02-04 19:54:55 -07005717static void io_ring_file_ref_switch(struct work_struct *work)
5718{
5719 struct fixed_file_data *data;
5720
5721 data = container_of(work, struct fixed_file_data, ref_work);
5722 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005723 percpu_ref_switch_to_percpu(&data->refs);
5724}
5725
5726static void io_file_data_ref_zero(struct percpu_ref *ref)
5727{
5728 struct fixed_file_data *data;
5729
5730 data = container_of(ref, struct fixed_file_data, refs);
5731
Jens Axboe2faf8522020-02-04 19:54:55 -07005732 /*
5733 * We can't safely switch from inside this context, punt to wq. If
5734 * the table ref is going away, the table is being unregistered.
5735 * Don't queue up the async work for that case, the caller will
5736 * handle it.
5737 */
5738 if (!percpu_ref_is_dying(&data->refs))
5739 queue_work(system_wq, &data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005740}
5741
5742static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
5743 unsigned nr_args)
5744{
5745 __s32 __user *fds = (__s32 __user *) arg;
5746 unsigned nr_tables;
5747 struct file *file;
5748 int fd, ret = 0;
5749 unsigned i;
5750
5751 if (ctx->file_data)
5752 return -EBUSY;
5753 if (!nr_args)
5754 return -EINVAL;
5755 if (nr_args > IORING_MAX_FIXED_FILES)
5756 return -EMFILE;
5757
5758 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
5759 if (!ctx->file_data)
5760 return -ENOMEM;
5761 ctx->file_data->ctx = ctx;
5762 init_completion(&ctx->file_data->done);
5763
5764 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
5765 ctx->file_data->table = kcalloc(nr_tables,
5766 sizeof(struct fixed_file_table),
5767 GFP_KERNEL);
5768 if (!ctx->file_data->table) {
5769 kfree(ctx->file_data);
5770 ctx->file_data = NULL;
5771 return -ENOMEM;
5772 }
5773
5774 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
5775 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
5776 kfree(ctx->file_data->table);
5777 kfree(ctx->file_data);
5778 ctx->file_data = NULL;
5779 return -ENOMEM;
5780 }
5781 ctx->file_data->put_llist.first = NULL;
5782 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
5783
5784 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
5785 percpu_ref_exit(&ctx->file_data->refs);
5786 kfree(ctx->file_data->table);
5787 kfree(ctx->file_data);
5788 ctx->file_data = NULL;
5789 return -ENOMEM;
5790 }
5791
5792 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
5793 struct fixed_file_table *table;
5794 unsigned index;
5795
5796 ret = -EFAULT;
5797 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
5798 break;
5799 /* allow sparse sets */
5800 if (fd == -1) {
5801 ret = 0;
5802 continue;
5803 }
5804
5805 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
5806 index = i & IORING_FILE_TABLE_MASK;
5807 file = fget(fd);
5808
5809 ret = -EBADF;
5810 if (!file)
5811 break;
5812
5813 /*
5814 * Don't allow io_uring instances to be registered. If UNIX
5815 * isn't enabled, then this causes a reference cycle and this
5816 * instance can never get freed. If UNIX is enabled we'll
5817 * handle it just fine, but there's still no point in allowing
5818 * a ring fd as it doesn't support regular read/write anyway.
5819 */
5820 if (file->f_op == &io_uring_fops) {
5821 fput(file);
5822 break;
5823 }
5824 ret = 0;
5825 table->files[index] = file;
5826 }
5827
5828 if (ret) {
5829 for (i = 0; i < ctx->nr_user_files; i++) {
5830 file = io_file_from_index(ctx, i);
5831 if (file)
5832 fput(file);
5833 }
5834 for (i = 0; i < nr_tables; i++)
5835 kfree(ctx->file_data->table[i].files);
5836
5837 kfree(ctx->file_data->table);
5838 kfree(ctx->file_data);
5839 ctx->file_data = NULL;
5840 ctx->nr_user_files = 0;
5841 return ret;
5842 }
5843
5844 ret = io_sqe_files_scm(ctx);
5845 if (ret)
5846 io_sqe_files_unregister(ctx);
5847
5848 return ret;
5849}
5850
Jens Axboec3a31e62019-10-03 13:59:56 -06005851static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
5852 int index)
5853{
5854#if defined(CONFIG_UNIX)
5855 struct sock *sock = ctx->ring_sock->sk;
5856 struct sk_buff_head *head = &sock->sk_receive_queue;
5857 struct sk_buff *skb;
5858
5859 /*
5860 * See if we can merge this file into an existing skb SCM_RIGHTS
5861 * file set. If there's no room, fall back to allocating a new skb
5862 * and filling it in.
5863 */
5864 spin_lock_irq(&head->lock);
5865 skb = skb_peek(head);
5866 if (skb) {
5867 struct scm_fp_list *fpl = UNIXCB(skb).fp;
5868
5869 if (fpl->count < SCM_MAX_FD) {
5870 __skb_unlink(skb, head);
5871 spin_unlock_irq(&head->lock);
5872 fpl->fp[fpl->count] = get_file(file);
5873 unix_inflight(fpl->user, fpl->fp[fpl->count]);
5874 fpl->count++;
5875 spin_lock_irq(&head->lock);
5876 __skb_queue_head(head, skb);
5877 } else {
5878 skb = NULL;
5879 }
5880 }
5881 spin_unlock_irq(&head->lock);
5882
5883 if (skb) {
5884 fput(file);
5885 return 0;
5886 }
5887
5888 return __io_sqe_files_scm(ctx, 1, index);
5889#else
5890 return 0;
5891#endif
5892}
5893
Jens Axboe05f3fb32019-12-09 11:22:50 -07005894static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06005895{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005896 struct fixed_file_data *data;
5897
Jens Axboedd3db2a2020-02-26 10:23:43 -07005898 /*
5899 * Juggle reference to ensure we hit zero, if needed, so we can
5900 * switch back to percpu mode
5901 */
Jens Axboe05f3fb32019-12-09 11:22:50 -07005902 data = container_of(ref, struct fixed_file_data, refs);
Jens Axboedd3db2a2020-02-26 10:23:43 -07005903 percpu_ref_put(&data->refs);
5904 percpu_ref_get(&data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005905}
5906
5907static bool io_queue_file_removal(struct fixed_file_data *data,
5908 struct file *file)
5909{
5910 struct io_file_put *pfile, pfile_stack;
5911 DECLARE_COMPLETION_ONSTACK(done);
5912
5913 /*
5914 * If we fail allocating the struct we need for doing async reomval
5915 * of this file, just punt to sync and wait for it.
5916 */
5917 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
5918 if (!pfile) {
5919 pfile = &pfile_stack;
5920 pfile->done = &done;
5921 }
5922
5923 pfile->file = file;
5924 llist_add(&pfile->llist, &data->put_llist);
5925
5926 if (pfile == &pfile_stack) {
Jens Axboedd3db2a2020-02-26 10:23:43 -07005927 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005928 wait_for_completion(&done);
5929 flush_work(&data->ref_work);
5930 return false;
5931 }
5932
5933 return true;
5934}
5935
5936static int __io_sqe_files_update(struct io_ring_ctx *ctx,
5937 struct io_uring_files_update *up,
5938 unsigned nr_args)
5939{
5940 struct fixed_file_data *data = ctx->file_data;
5941 bool ref_switch = false;
5942 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005943 __s32 __user *fds;
5944 int fd, i, err;
5945 __u32 done;
5946
Jens Axboe05f3fb32019-12-09 11:22:50 -07005947 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06005948 return -EOVERFLOW;
5949 if (done > ctx->nr_user_files)
5950 return -EINVAL;
5951
5952 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005953 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06005954 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005955 struct fixed_file_table *table;
5956 unsigned index;
5957
Jens Axboec3a31e62019-10-03 13:59:56 -06005958 err = 0;
5959 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
5960 err = -EFAULT;
5961 break;
5962 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07005963 i = array_index_nospec(up->offset, ctx->nr_user_files);
5964 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06005965 index = i & IORING_FILE_TABLE_MASK;
5966 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005967 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06005968 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005969 if (io_queue_file_removal(data, file))
5970 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06005971 }
5972 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06005973 file = fget(fd);
5974 if (!file) {
5975 err = -EBADF;
5976 break;
5977 }
5978 /*
5979 * Don't allow io_uring instances to be registered. If
5980 * UNIX isn't enabled, then this causes a reference
5981 * cycle and this instance can never get freed. If UNIX
5982 * is enabled we'll handle it just fine, but there's
5983 * still no point in allowing a ring fd as it doesn't
5984 * support regular read/write anyway.
5985 */
5986 if (file->f_op == &io_uring_fops) {
5987 fput(file);
5988 err = -EBADF;
5989 break;
5990 }
Jens Axboe65e19f52019-10-26 07:20:21 -06005991 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005992 err = io_sqe_file_register(ctx, file, i);
5993 if (err)
5994 break;
5995 }
5996 nr_args--;
5997 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005998 up->offset++;
5999 }
6000
Jens Axboedd3db2a2020-02-26 10:23:43 -07006001 if (ref_switch)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006002 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06006003
6004 return done ? done : err;
6005}
Jens Axboe05f3fb32019-12-09 11:22:50 -07006006static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6007 unsigned nr_args)
6008{
6009 struct io_uring_files_update up;
6010
6011 if (!ctx->file_data)
6012 return -ENXIO;
6013 if (!nr_args)
6014 return -EINVAL;
6015 if (copy_from_user(&up, arg, sizeof(up)))
6016 return -EFAULT;
6017 if (up.resv)
6018 return -EINVAL;
6019
6020 return __io_sqe_files_update(ctx, &up, nr_args);
6021}
Jens Axboec3a31e62019-10-03 13:59:56 -06006022
Jens Axboe7d723062019-11-12 22:31:31 -07006023static void io_put_work(struct io_wq_work *work)
6024{
6025 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6026
6027 io_put_req(req);
6028}
6029
6030static void io_get_work(struct io_wq_work *work)
6031{
6032 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6033
6034 refcount_inc(&req->refs);
6035}
6036
Pavel Begunkov24369c22020-01-28 03:15:48 +03006037static int io_init_wq_offload(struct io_ring_ctx *ctx,
6038 struct io_uring_params *p)
6039{
6040 struct io_wq_data data;
6041 struct fd f;
6042 struct io_ring_ctx *ctx_attach;
6043 unsigned int concurrency;
6044 int ret = 0;
6045
6046 data.user = ctx->user;
6047 data.get_work = io_get_work;
6048 data.put_work = io_put_work;
6049
6050 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6051 /* Do QD, or 4 * CPUS, whatever is smallest */
6052 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6053
6054 ctx->io_wq = io_wq_create(concurrency, &data);
6055 if (IS_ERR(ctx->io_wq)) {
6056 ret = PTR_ERR(ctx->io_wq);
6057 ctx->io_wq = NULL;
6058 }
6059 return ret;
6060 }
6061
6062 f = fdget(p->wq_fd);
6063 if (!f.file)
6064 return -EBADF;
6065
6066 if (f.file->f_op != &io_uring_fops) {
6067 ret = -EINVAL;
6068 goto out_fput;
6069 }
6070
6071 ctx_attach = f.file->private_data;
6072 /* @io_wq is protected by holding the fd */
6073 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6074 ret = -EINVAL;
6075 goto out_fput;
6076 }
6077
6078 ctx->io_wq = ctx_attach->io_wq;
6079out_fput:
6080 fdput(f);
6081 return ret;
6082}
6083
Jens Axboe6c271ce2019-01-10 11:22:30 -07006084static int io_sq_offload_start(struct io_ring_ctx *ctx,
6085 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006086{
6087 int ret;
6088
Jens Axboe6c271ce2019-01-10 11:22:30 -07006089 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006090 mmgrab(current->mm);
6091 ctx->sqo_mm = current->mm;
6092
Jens Axboe6c271ce2019-01-10 11:22:30 -07006093 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006094 ret = -EPERM;
6095 if (!capable(CAP_SYS_ADMIN))
6096 goto err;
6097
Jens Axboe917257d2019-04-13 09:28:55 -06006098 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6099 if (!ctx->sq_thread_idle)
6100 ctx->sq_thread_idle = HZ;
6101
Jens Axboe6c271ce2019-01-10 11:22:30 -07006102 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006103 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006104
Jens Axboe917257d2019-04-13 09:28:55 -06006105 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006106 if (cpu >= nr_cpu_ids)
6107 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006108 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006109 goto err;
6110
Jens Axboe6c271ce2019-01-10 11:22:30 -07006111 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6112 ctx, cpu,
6113 "io_uring-sq");
6114 } else {
6115 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6116 "io_uring-sq");
6117 }
6118 if (IS_ERR(ctx->sqo_thread)) {
6119 ret = PTR_ERR(ctx->sqo_thread);
6120 ctx->sqo_thread = NULL;
6121 goto err;
6122 }
6123 wake_up_process(ctx->sqo_thread);
6124 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6125 /* Can't have SQ_AFF without SQPOLL */
6126 ret = -EINVAL;
6127 goto err;
6128 }
6129
Pavel Begunkov24369c22020-01-28 03:15:48 +03006130 ret = io_init_wq_offload(ctx, p);
6131 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006132 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006133
6134 return 0;
6135err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006136 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006137 mmdrop(ctx->sqo_mm);
6138 ctx->sqo_mm = NULL;
6139 return ret;
6140}
6141
6142static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6143{
6144 atomic_long_sub(nr_pages, &user->locked_vm);
6145}
6146
6147static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6148{
6149 unsigned long page_limit, cur_pages, new_pages;
6150
6151 /* Don't allow more pages than we can safely lock */
6152 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6153
6154 do {
6155 cur_pages = atomic_long_read(&user->locked_vm);
6156 new_pages = cur_pages + nr_pages;
6157 if (new_pages > page_limit)
6158 return -ENOMEM;
6159 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6160 new_pages) != cur_pages);
6161
6162 return 0;
6163}
6164
6165static void io_mem_free(void *ptr)
6166{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006167 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006168
Mark Rutland52e04ef2019-04-30 17:30:21 +01006169 if (!ptr)
6170 return;
6171
6172 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006173 if (put_page_testzero(page))
6174 free_compound_page(page);
6175}
6176
6177static void *io_mem_alloc(size_t size)
6178{
6179 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6180 __GFP_NORETRY;
6181
6182 return (void *) __get_free_pages(gfp_flags, get_order(size));
6183}
6184
Hristo Venev75b28af2019-08-26 17:23:46 +00006185static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6186 size_t *sq_offset)
6187{
6188 struct io_rings *rings;
6189 size_t off, sq_array_size;
6190
6191 off = struct_size(rings, cqes, cq_entries);
6192 if (off == SIZE_MAX)
6193 return SIZE_MAX;
6194
6195#ifdef CONFIG_SMP
6196 off = ALIGN(off, SMP_CACHE_BYTES);
6197 if (off == 0)
6198 return SIZE_MAX;
6199#endif
6200
6201 sq_array_size = array_size(sizeof(u32), sq_entries);
6202 if (sq_array_size == SIZE_MAX)
6203 return SIZE_MAX;
6204
6205 if (check_add_overflow(off, sq_array_size, &off))
6206 return SIZE_MAX;
6207
6208 if (sq_offset)
6209 *sq_offset = off;
6210
6211 return off;
6212}
6213
Jens Axboe2b188cc2019-01-07 10:46:33 -07006214static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6215{
Hristo Venev75b28af2019-08-26 17:23:46 +00006216 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006217
Hristo Venev75b28af2019-08-26 17:23:46 +00006218 pages = (size_t)1 << get_order(
6219 rings_size(sq_entries, cq_entries, NULL));
6220 pages += (size_t)1 << get_order(
6221 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006222
Hristo Venev75b28af2019-08-26 17:23:46 +00006223 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006224}
6225
Jens Axboeedafcce2019-01-09 09:16:05 -07006226static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6227{
6228 int i, j;
6229
6230 if (!ctx->user_bufs)
6231 return -ENXIO;
6232
6233 for (i = 0; i < ctx->nr_user_bufs; i++) {
6234 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6235
6236 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006237 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006238
6239 if (ctx->account_mem)
6240 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006241 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006242 imu->nr_bvecs = 0;
6243 }
6244
6245 kfree(ctx->user_bufs);
6246 ctx->user_bufs = NULL;
6247 ctx->nr_user_bufs = 0;
6248 return 0;
6249}
6250
6251static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6252 void __user *arg, unsigned index)
6253{
6254 struct iovec __user *src;
6255
6256#ifdef CONFIG_COMPAT
6257 if (ctx->compat) {
6258 struct compat_iovec __user *ciovs;
6259 struct compat_iovec ciov;
6260
6261 ciovs = (struct compat_iovec __user *) arg;
6262 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6263 return -EFAULT;
6264
Jens Axboed55e5f52019-12-11 16:12:15 -07006265 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006266 dst->iov_len = ciov.iov_len;
6267 return 0;
6268 }
6269#endif
6270 src = (struct iovec __user *) arg;
6271 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6272 return -EFAULT;
6273 return 0;
6274}
6275
6276static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6277 unsigned nr_args)
6278{
6279 struct vm_area_struct **vmas = NULL;
6280 struct page **pages = NULL;
6281 int i, j, got_pages = 0;
6282 int ret = -EINVAL;
6283
6284 if (ctx->user_bufs)
6285 return -EBUSY;
6286 if (!nr_args || nr_args > UIO_MAXIOV)
6287 return -EINVAL;
6288
6289 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
6290 GFP_KERNEL);
6291 if (!ctx->user_bufs)
6292 return -ENOMEM;
6293
6294 for (i = 0; i < nr_args; i++) {
6295 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6296 unsigned long off, start, end, ubuf;
6297 int pret, nr_pages;
6298 struct iovec iov;
6299 size_t size;
6300
6301 ret = io_copy_iov(ctx, &iov, arg, i);
6302 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03006303 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07006304
6305 /*
6306 * Don't impose further limits on the size and buffer
6307 * constraints here, we'll -EINVAL later when IO is
6308 * submitted if they are wrong.
6309 */
6310 ret = -EFAULT;
6311 if (!iov.iov_base || !iov.iov_len)
6312 goto err;
6313
6314 /* arbitrary limit, but we need something */
6315 if (iov.iov_len > SZ_1G)
6316 goto err;
6317
6318 ubuf = (unsigned long) iov.iov_base;
6319 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
6320 start = ubuf >> PAGE_SHIFT;
6321 nr_pages = end - start;
6322
6323 if (ctx->account_mem) {
6324 ret = io_account_mem(ctx->user, nr_pages);
6325 if (ret)
6326 goto err;
6327 }
6328
6329 ret = 0;
6330 if (!pages || nr_pages > got_pages) {
6331 kfree(vmas);
6332 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006333 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07006334 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006335 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07006336 sizeof(struct vm_area_struct *),
6337 GFP_KERNEL);
6338 if (!pages || !vmas) {
6339 ret = -ENOMEM;
6340 if (ctx->account_mem)
6341 io_unaccount_mem(ctx->user, nr_pages);
6342 goto err;
6343 }
6344 got_pages = nr_pages;
6345 }
6346
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006347 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07006348 GFP_KERNEL);
6349 ret = -ENOMEM;
6350 if (!imu->bvec) {
6351 if (ctx->account_mem)
6352 io_unaccount_mem(ctx->user, nr_pages);
6353 goto err;
6354 }
6355
6356 ret = 0;
6357 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08006358 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07006359 FOLL_WRITE | FOLL_LONGTERM,
6360 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006361 if (pret == nr_pages) {
6362 /* don't support file backed memory */
6363 for (j = 0; j < nr_pages; j++) {
6364 struct vm_area_struct *vma = vmas[j];
6365
6366 if (vma->vm_file &&
6367 !is_file_hugepages(vma->vm_file)) {
6368 ret = -EOPNOTSUPP;
6369 break;
6370 }
6371 }
6372 } else {
6373 ret = pret < 0 ? pret : -EFAULT;
6374 }
6375 up_read(&current->mm->mmap_sem);
6376 if (ret) {
6377 /*
6378 * if we did partial map, or found file backed vmas,
6379 * release any pages we did get
6380 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07006381 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006382 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006383 if (ctx->account_mem)
6384 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006385 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006386 goto err;
6387 }
6388
6389 off = ubuf & ~PAGE_MASK;
6390 size = iov.iov_len;
6391 for (j = 0; j < nr_pages; j++) {
6392 size_t vec_len;
6393
6394 vec_len = min_t(size_t, size, PAGE_SIZE - off);
6395 imu->bvec[j].bv_page = pages[j];
6396 imu->bvec[j].bv_len = vec_len;
6397 imu->bvec[j].bv_offset = off;
6398 off = 0;
6399 size -= vec_len;
6400 }
6401 /* store original address for later verification */
6402 imu->ubuf = ubuf;
6403 imu->len = iov.iov_len;
6404 imu->nr_bvecs = nr_pages;
6405
6406 ctx->nr_user_bufs++;
6407 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006408 kvfree(pages);
6409 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006410 return 0;
6411err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006412 kvfree(pages);
6413 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006414 io_sqe_buffer_unregister(ctx);
6415 return ret;
6416}
6417
Jens Axboe9b402842019-04-11 11:45:41 -06006418static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
6419{
6420 __s32 __user *fds = arg;
6421 int fd;
6422
6423 if (ctx->cq_ev_fd)
6424 return -EBUSY;
6425
6426 if (copy_from_user(&fd, fds, sizeof(*fds)))
6427 return -EFAULT;
6428
6429 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
6430 if (IS_ERR(ctx->cq_ev_fd)) {
6431 int ret = PTR_ERR(ctx->cq_ev_fd);
6432 ctx->cq_ev_fd = NULL;
6433 return ret;
6434 }
6435
6436 return 0;
6437}
6438
6439static int io_eventfd_unregister(struct io_ring_ctx *ctx)
6440{
6441 if (ctx->cq_ev_fd) {
6442 eventfd_ctx_put(ctx->cq_ev_fd);
6443 ctx->cq_ev_fd = NULL;
6444 return 0;
6445 }
6446
6447 return -ENXIO;
6448}
6449
Jens Axboe2b188cc2019-01-07 10:46:33 -07006450static void io_ring_ctx_free(struct io_ring_ctx *ctx)
6451{
Jens Axboe6b063142019-01-10 22:13:58 -07006452 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006453 if (ctx->sqo_mm)
6454 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07006455
6456 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07006457 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07006458 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06006459 io_eventfd_unregister(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07006460 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07006461
Jens Axboe2b188cc2019-01-07 10:46:33 -07006462#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07006463 if (ctx->ring_sock) {
6464 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006465 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07006466 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006467#endif
6468
Hristo Venev75b28af2019-08-26 17:23:46 +00006469 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006470 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006471
6472 percpu_ref_exit(&ctx->refs);
6473 if (ctx->account_mem)
6474 io_unaccount_mem(ctx->user,
6475 ring_pages(ctx->sq_entries, ctx->cq_entries));
6476 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07006477 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07006478 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07006479 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07006480 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006481 kfree(ctx);
6482}
6483
6484static __poll_t io_uring_poll(struct file *file, poll_table *wait)
6485{
6486 struct io_ring_ctx *ctx = file->private_data;
6487 __poll_t mask = 0;
6488
6489 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02006490 /*
6491 * synchronizes with barrier from wq_has_sleeper call in
6492 * io_commit_cqring
6493 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006494 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00006495 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
6496 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006497 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01006498 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006499 mask |= EPOLLIN | EPOLLRDNORM;
6500
6501 return mask;
6502}
6503
6504static int io_uring_fasync(int fd, struct file *file, int on)
6505{
6506 struct io_ring_ctx *ctx = file->private_data;
6507
6508 return fasync_helper(fd, file, on, &ctx->cq_fasync);
6509}
6510
Jens Axboe071698e2020-01-28 10:04:42 -07006511static int io_remove_personalities(int id, void *p, void *data)
6512{
6513 struct io_ring_ctx *ctx = data;
6514 const struct cred *cred;
6515
6516 cred = idr_remove(&ctx->personality_idr, id);
6517 if (cred)
6518 put_cred(cred);
6519 return 0;
6520}
6521
Jens Axboe2b188cc2019-01-07 10:46:33 -07006522static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
6523{
6524 mutex_lock(&ctx->uring_lock);
6525 percpu_ref_kill(&ctx->refs);
6526 mutex_unlock(&ctx->uring_lock);
6527
Jens Axboedf069d82020-02-04 16:48:34 -07006528 /*
6529 * Wait for sq thread to idle, if we have one. It won't spin on new
6530 * work after we've killed the ctx ref above. This is important to do
6531 * before we cancel existing commands, as the thread could otherwise
6532 * be queueing new work post that. If that's work we need to cancel,
6533 * it could cause shutdown to hang.
6534 */
6535 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
6536 cpu_relax();
6537
Jens Axboe5262f562019-09-17 12:26:57 -06006538 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07006539 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06006540
6541 if (ctx->io_wq)
6542 io_wq_cancel_all(ctx->io_wq);
6543
Jens Axboedef596e2019-01-09 08:59:42 -07006544 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07006545 /* if we failed setting up the ctx, we might not have any rings */
6546 if (ctx->rings)
6547 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07006548 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07006549 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006550 io_ring_ctx_free(ctx);
6551}
6552
6553static int io_uring_release(struct inode *inode, struct file *file)
6554{
6555 struct io_ring_ctx *ctx = file->private_data;
6556
6557 file->private_data = NULL;
6558 io_ring_ctx_wait_and_kill(ctx);
6559 return 0;
6560}
6561
Jens Axboefcb323c2019-10-24 12:39:47 -06006562static void io_uring_cancel_files(struct io_ring_ctx *ctx,
6563 struct files_struct *files)
6564{
6565 struct io_kiocb *req;
6566 DEFINE_WAIT(wait);
6567
6568 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07006569 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06006570
6571 spin_lock_irq(&ctx->inflight_lock);
6572 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07006573 if (req->work.files != files)
6574 continue;
6575 /* req is being completed, ignore */
6576 if (!refcount_inc_not_zero(&req->refs))
6577 continue;
6578 cancel_req = req;
6579 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06006580 }
Jens Axboe768134d2019-11-10 20:30:53 -07006581 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006582 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07006583 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06006584 spin_unlock_irq(&ctx->inflight_lock);
6585
Jens Axboe768134d2019-11-10 20:30:53 -07006586 /* We need to keep going until we don't find a matching req */
6587 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006588 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08006589
Jens Axboe2ca10252020-02-13 17:17:35 -07006590 if (cancel_req->flags & REQ_F_OVERFLOW) {
6591 spin_lock_irq(&ctx->completion_lock);
6592 list_del(&cancel_req->list);
6593 cancel_req->flags &= ~REQ_F_OVERFLOW;
6594 if (list_empty(&ctx->cq_overflow_list)) {
6595 clear_bit(0, &ctx->sq_check_overflow);
6596 clear_bit(0, &ctx->cq_check_overflow);
6597 }
6598 spin_unlock_irq(&ctx->completion_lock);
6599
6600 WRITE_ONCE(ctx->rings->cq_overflow,
6601 atomic_inc_return(&ctx->cached_cq_overflow));
6602
6603 /*
6604 * Put inflight ref and overflow ref. If that's
6605 * all we had, then we're done with this request.
6606 */
6607 if (refcount_sub_and_test(2, &cancel_req->refs)) {
6608 io_put_req(cancel_req);
6609 continue;
6610 }
6611 }
6612
Bob Liu2f6d9b92019-11-13 18:06:24 +08006613 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
6614 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06006615 schedule();
6616 }
Jens Axboe768134d2019-11-10 20:30:53 -07006617 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06006618}
6619
6620static int io_uring_flush(struct file *file, void *data)
6621{
6622 struct io_ring_ctx *ctx = file->private_data;
6623
6624 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07006625
6626 /*
6627 * If the task is going away, cancel work it may have pending
6628 */
6629 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
6630 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
6631
Jens Axboefcb323c2019-10-24 12:39:47 -06006632 return 0;
6633}
6634
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006635static void *io_uring_validate_mmap_request(struct file *file,
6636 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006637{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006638 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006639 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006640 struct page *page;
6641 void *ptr;
6642
6643 switch (offset) {
6644 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00006645 case IORING_OFF_CQ_RING:
6646 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006647 break;
6648 case IORING_OFF_SQES:
6649 ptr = ctx->sq_sqes;
6650 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006651 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006652 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006653 }
6654
6655 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07006656 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006657 return ERR_PTR(-EINVAL);
6658
6659 return ptr;
6660}
6661
6662#ifdef CONFIG_MMU
6663
6664static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6665{
6666 size_t sz = vma->vm_end - vma->vm_start;
6667 unsigned long pfn;
6668 void *ptr;
6669
6670 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
6671 if (IS_ERR(ptr))
6672 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006673
6674 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
6675 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
6676}
6677
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006678#else /* !CONFIG_MMU */
6679
6680static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6681{
6682 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
6683}
6684
6685static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
6686{
6687 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
6688}
6689
6690static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
6691 unsigned long addr, unsigned long len,
6692 unsigned long pgoff, unsigned long flags)
6693{
6694 void *ptr;
6695
6696 ptr = io_uring_validate_mmap_request(file, pgoff, len);
6697 if (IS_ERR(ptr))
6698 return PTR_ERR(ptr);
6699
6700 return (unsigned long) ptr;
6701}
6702
6703#endif /* !CONFIG_MMU */
6704
Jens Axboe2b188cc2019-01-07 10:46:33 -07006705SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
6706 u32, min_complete, u32, flags, const sigset_t __user *, sig,
6707 size_t, sigsz)
6708{
6709 struct io_ring_ctx *ctx;
6710 long ret = -EBADF;
6711 int submitted = 0;
6712 struct fd f;
6713
Jens Axboe6c271ce2019-01-10 11:22:30 -07006714 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006715 return -EINVAL;
6716
6717 f = fdget(fd);
6718 if (!f.file)
6719 return -EBADF;
6720
6721 ret = -EOPNOTSUPP;
6722 if (f.file->f_op != &io_uring_fops)
6723 goto out_fput;
6724
6725 ret = -ENXIO;
6726 ctx = f.file->private_data;
6727 if (!percpu_ref_tryget(&ctx->refs))
6728 goto out_fput;
6729
Jens Axboe6c271ce2019-01-10 11:22:30 -07006730 /*
6731 * For SQ polling, the thread will do all submissions and completions.
6732 * Just return the requested submit count, and wake the thread if
6733 * we were asked to.
6734 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006735 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006736 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07006737 if (!list_empty_careful(&ctx->cq_overflow_list))
6738 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006739 if (flags & IORING_ENTER_SQ_WAKEUP)
6740 wake_up(&ctx->sqo_wait);
6741 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006742 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006743 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006744
6745 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006746 /* already have mm, so io_submit_sqes() won't try to grab it */
6747 cur_mm = ctx->sqo_mm;
6748 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
6749 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006750 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006751
6752 if (submitted != to_submit)
6753 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006754 }
6755 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07006756 unsigned nr_events = 0;
6757
Jens Axboe2b188cc2019-01-07 10:46:33 -07006758 min_complete = min(min_complete, ctx->cq_entries);
6759
Jens Axboedef596e2019-01-09 08:59:42 -07006760 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07006761 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07006762 } else {
6763 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
6764 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006765 }
6766
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006767out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03006768 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006769out_fput:
6770 fdput(f);
6771 return submitted ? submitted : ret;
6772}
6773
Tobias Klauserbebdb652020-02-26 18:38:32 +01006774#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07006775static int io_uring_show_cred(int id, void *p, void *data)
6776{
6777 const struct cred *cred = p;
6778 struct seq_file *m = data;
6779 struct user_namespace *uns = seq_user_ns(m);
6780 struct group_info *gi;
6781 kernel_cap_t cap;
6782 unsigned __capi;
6783 int g;
6784
6785 seq_printf(m, "%5d\n", id);
6786 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
6787 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
6788 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
6789 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
6790 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
6791 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
6792 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
6793 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
6794 seq_puts(m, "\n\tGroups:\t");
6795 gi = cred->group_info;
6796 for (g = 0; g < gi->ngroups; g++) {
6797 seq_put_decimal_ull(m, g ? " " : "",
6798 from_kgid_munged(uns, gi->gid[g]));
6799 }
6800 seq_puts(m, "\n\tCapEff:\t");
6801 cap = cred->cap_effective;
6802 CAP_FOR_EACH_U32(__capi)
6803 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
6804 seq_putc(m, '\n');
6805 return 0;
6806}
6807
6808static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
6809{
6810 int i;
6811
6812 mutex_lock(&ctx->uring_lock);
6813 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
6814 for (i = 0; i < ctx->nr_user_files; i++) {
6815 struct fixed_file_table *table;
6816 struct file *f;
6817
6818 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6819 f = table->files[i & IORING_FILE_TABLE_MASK];
6820 if (f)
6821 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
6822 else
6823 seq_printf(m, "%5u: <none>\n", i);
6824 }
6825 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
6826 for (i = 0; i < ctx->nr_user_bufs; i++) {
6827 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
6828
6829 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
6830 (unsigned int) buf->len);
6831 }
6832 if (!idr_is_empty(&ctx->personality_idr)) {
6833 seq_printf(m, "Personalities:\n");
6834 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
6835 }
6836 mutex_unlock(&ctx->uring_lock);
6837}
6838
6839static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
6840{
6841 struct io_ring_ctx *ctx = f->private_data;
6842
6843 if (percpu_ref_tryget(&ctx->refs)) {
6844 __io_uring_show_fdinfo(ctx, m);
6845 percpu_ref_put(&ctx->refs);
6846 }
6847}
Tobias Klauserbebdb652020-02-26 18:38:32 +01006848#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07006849
Jens Axboe2b188cc2019-01-07 10:46:33 -07006850static const struct file_operations io_uring_fops = {
6851 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06006852 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07006853 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006854#ifndef CONFIG_MMU
6855 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
6856 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
6857#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006858 .poll = io_uring_poll,
6859 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01006860#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07006861 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01006862#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006863};
6864
6865static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
6866 struct io_uring_params *p)
6867{
Hristo Venev75b28af2019-08-26 17:23:46 +00006868 struct io_rings *rings;
6869 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006870
Hristo Venev75b28af2019-08-26 17:23:46 +00006871 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
6872 if (size == SIZE_MAX)
6873 return -EOVERFLOW;
6874
6875 rings = io_mem_alloc(size);
6876 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006877 return -ENOMEM;
6878
Hristo Venev75b28af2019-08-26 17:23:46 +00006879 ctx->rings = rings;
6880 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
6881 rings->sq_ring_mask = p->sq_entries - 1;
6882 rings->cq_ring_mask = p->cq_entries - 1;
6883 rings->sq_ring_entries = p->sq_entries;
6884 rings->cq_ring_entries = p->cq_entries;
6885 ctx->sq_mask = rings->sq_ring_mask;
6886 ctx->cq_mask = rings->cq_ring_mask;
6887 ctx->sq_entries = rings->sq_ring_entries;
6888 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006889
6890 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07006891 if (size == SIZE_MAX) {
6892 io_mem_free(ctx->rings);
6893 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006894 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07006895 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006896
6897 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07006898 if (!ctx->sq_sqes) {
6899 io_mem_free(ctx->rings);
6900 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006901 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07006902 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006903
Jens Axboe2b188cc2019-01-07 10:46:33 -07006904 return 0;
6905}
6906
6907/*
6908 * Allocate an anonymous fd, this is what constitutes the application
6909 * visible backing of an io_uring instance. The application mmaps this
6910 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
6911 * we have to tie this fd to a socket for file garbage collection purposes.
6912 */
6913static int io_uring_get_fd(struct io_ring_ctx *ctx)
6914{
6915 struct file *file;
6916 int ret;
6917
6918#if defined(CONFIG_UNIX)
6919 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
6920 &ctx->ring_sock);
6921 if (ret)
6922 return ret;
6923#endif
6924
6925 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
6926 if (ret < 0)
6927 goto err;
6928
6929 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
6930 O_RDWR | O_CLOEXEC);
6931 if (IS_ERR(file)) {
6932 put_unused_fd(ret);
6933 ret = PTR_ERR(file);
6934 goto err;
6935 }
6936
6937#if defined(CONFIG_UNIX)
6938 ctx->ring_sock->file = file;
6939#endif
6940 fd_install(ret, file);
6941 return ret;
6942err:
6943#if defined(CONFIG_UNIX)
6944 sock_release(ctx->ring_sock);
6945 ctx->ring_sock = NULL;
6946#endif
6947 return ret;
6948}
6949
6950static int io_uring_create(unsigned entries, struct io_uring_params *p)
6951{
6952 struct user_struct *user = NULL;
6953 struct io_ring_ctx *ctx;
6954 bool account_mem;
6955 int ret;
6956
Jens Axboe8110c1a2019-12-28 15:39:54 -07006957 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006958 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006959 if (entries > IORING_MAX_ENTRIES) {
6960 if (!(p->flags & IORING_SETUP_CLAMP))
6961 return -EINVAL;
6962 entries = IORING_MAX_ENTRIES;
6963 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006964
6965 /*
6966 * Use twice as many entries for the CQ ring. It's possible for the
6967 * application to drive a higher depth than the size of the SQ ring,
6968 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06006969 * some flexibility in overcommitting a bit. If the application has
6970 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
6971 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07006972 */
6973 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06006974 if (p->flags & IORING_SETUP_CQSIZE) {
6975 /*
6976 * If IORING_SETUP_CQSIZE is set, we do the same roundup
6977 * to a power-of-two, if it isn't already. We do NOT impose
6978 * any cq vs sq ring sizing.
6979 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07006980 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06006981 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006982 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
6983 if (!(p->flags & IORING_SETUP_CLAMP))
6984 return -EINVAL;
6985 p->cq_entries = IORING_MAX_CQ_ENTRIES;
6986 }
Jens Axboe33a107f2019-10-04 12:10:03 -06006987 p->cq_entries = roundup_pow_of_two(p->cq_entries);
6988 } else {
6989 p->cq_entries = 2 * p->sq_entries;
6990 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006991
6992 user = get_uid(current_user());
6993 account_mem = !capable(CAP_IPC_LOCK);
6994
6995 if (account_mem) {
6996 ret = io_account_mem(user,
6997 ring_pages(p->sq_entries, p->cq_entries));
6998 if (ret) {
6999 free_uid(user);
7000 return ret;
7001 }
7002 }
7003
7004 ctx = io_ring_ctx_alloc(p);
7005 if (!ctx) {
7006 if (account_mem)
7007 io_unaccount_mem(user, ring_pages(p->sq_entries,
7008 p->cq_entries));
7009 free_uid(user);
7010 return -ENOMEM;
7011 }
7012 ctx->compat = in_compat_syscall();
7013 ctx->account_mem = account_mem;
7014 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007015 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007016
7017 ret = io_allocate_scq_urings(ctx, p);
7018 if (ret)
7019 goto err;
7020
Jens Axboe6c271ce2019-01-10 11:22:30 -07007021 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007022 if (ret)
7023 goto err;
7024
Jens Axboe2b188cc2019-01-07 10:46:33 -07007025 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007026 p->sq_off.head = offsetof(struct io_rings, sq.head);
7027 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7028 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7029 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7030 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7031 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7032 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007033
7034 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007035 p->cq_off.head = offsetof(struct io_rings, cq.head);
7036 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7037 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7038 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7039 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7040 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007041
Jens Axboe044c1ab2019-10-28 09:15:33 -06007042 /*
7043 * Install ring fd as the very last thing, so we don't risk someone
7044 * having closed it before we finish setup
7045 */
7046 ret = io_uring_get_fd(ctx);
7047 if (ret < 0)
7048 goto err;
7049
Jens Axboeda8c9692019-12-02 18:51:26 -07007050 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007051 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
7052 IORING_FEAT_CUR_PERSONALITY;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007053 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007054 return ret;
7055err:
7056 io_ring_ctx_wait_and_kill(ctx);
7057 return ret;
7058}
7059
7060/*
7061 * Sets up an aio uring context, and returns the fd. Applications asks for a
7062 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7063 * params structure passed in.
7064 */
7065static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7066{
7067 struct io_uring_params p;
7068 long ret;
7069 int i;
7070
7071 if (copy_from_user(&p, params, sizeof(p)))
7072 return -EFAULT;
7073 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7074 if (p.resv[i])
7075 return -EINVAL;
7076 }
7077
Jens Axboe6c271ce2019-01-10 11:22:30 -07007078 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007079 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007080 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007081 return -EINVAL;
7082
7083 ret = io_uring_create(entries, &p);
7084 if (ret < 0)
7085 return ret;
7086
7087 if (copy_to_user(params, &p, sizeof(p)))
7088 return -EFAULT;
7089
7090 return ret;
7091}
7092
7093SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7094 struct io_uring_params __user *, params)
7095{
7096 return io_uring_setup(entries, params);
7097}
7098
Jens Axboe66f4af92020-01-16 15:36:52 -07007099static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7100{
7101 struct io_uring_probe *p;
7102 size_t size;
7103 int i, ret;
7104
7105 size = struct_size(p, ops, nr_args);
7106 if (size == SIZE_MAX)
7107 return -EOVERFLOW;
7108 p = kzalloc(size, GFP_KERNEL);
7109 if (!p)
7110 return -ENOMEM;
7111
7112 ret = -EFAULT;
7113 if (copy_from_user(p, arg, size))
7114 goto out;
7115 ret = -EINVAL;
7116 if (memchr_inv(p, 0, size))
7117 goto out;
7118
7119 p->last_op = IORING_OP_LAST - 1;
7120 if (nr_args > IORING_OP_LAST)
7121 nr_args = IORING_OP_LAST;
7122
7123 for (i = 0; i < nr_args; i++) {
7124 p->ops[i].op = i;
7125 if (!io_op_defs[i].not_supported)
7126 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7127 }
7128 p->ops_len = i;
7129
7130 ret = 0;
7131 if (copy_to_user(arg, p, size))
7132 ret = -EFAULT;
7133out:
7134 kfree(p);
7135 return ret;
7136}
7137
Jens Axboe071698e2020-01-28 10:04:42 -07007138static int io_register_personality(struct io_ring_ctx *ctx)
7139{
7140 const struct cred *creds = get_current_cred();
7141 int id;
7142
7143 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7144 USHRT_MAX, GFP_KERNEL);
7145 if (id < 0)
7146 put_cred(creds);
7147 return id;
7148}
7149
7150static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7151{
7152 const struct cred *old_creds;
7153
7154 old_creds = idr_remove(&ctx->personality_idr, id);
7155 if (old_creds) {
7156 put_cred(old_creds);
7157 return 0;
7158 }
7159
7160 return -EINVAL;
7161}
7162
7163static bool io_register_op_must_quiesce(int op)
7164{
7165 switch (op) {
7166 case IORING_UNREGISTER_FILES:
7167 case IORING_REGISTER_FILES_UPDATE:
7168 case IORING_REGISTER_PROBE:
7169 case IORING_REGISTER_PERSONALITY:
7170 case IORING_UNREGISTER_PERSONALITY:
7171 return false;
7172 default:
7173 return true;
7174 }
7175}
7176
Jens Axboeedafcce2019-01-09 09:16:05 -07007177static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7178 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007179 __releases(ctx->uring_lock)
7180 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007181{
7182 int ret;
7183
Jens Axboe35fa71a2019-04-22 10:23:23 -06007184 /*
7185 * We're inside the ring mutex, if the ref is already dying, then
7186 * someone else killed the ctx or is already going through
7187 * io_uring_register().
7188 */
7189 if (percpu_ref_is_dying(&ctx->refs))
7190 return -ENXIO;
7191
Jens Axboe071698e2020-01-28 10:04:42 -07007192 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007193 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007194
Jens Axboe05f3fb32019-12-09 11:22:50 -07007195 /*
7196 * Drop uring mutex before waiting for references to exit. If
7197 * another thread is currently inside io_uring_enter() it might
7198 * need to grab the uring_lock to make progress. If we hold it
7199 * here across the drain wait, then we can deadlock. It's safe
7200 * to drop the mutex here, since no new references will come in
7201 * after we've killed the percpu ref.
7202 */
7203 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007204 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007205 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007206 if (ret) {
7207 percpu_ref_resurrect(&ctx->refs);
7208 ret = -EINTR;
7209 goto out;
7210 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007211 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007212
7213 switch (opcode) {
7214 case IORING_REGISTER_BUFFERS:
7215 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7216 break;
7217 case IORING_UNREGISTER_BUFFERS:
7218 ret = -EINVAL;
7219 if (arg || nr_args)
7220 break;
7221 ret = io_sqe_buffer_unregister(ctx);
7222 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007223 case IORING_REGISTER_FILES:
7224 ret = io_sqe_files_register(ctx, arg, nr_args);
7225 break;
7226 case IORING_UNREGISTER_FILES:
7227 ret = -EINVAL;
7228 if (arg || nr_args)
7229 break;
7230 ret = io_sqe_files_unregister(ctx);
7231 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06007232 case IORING_REGISTER_FILES_UPDATE:
7233 ret = io_sqe_files_update(ctx, arg, nr_args);
7234 break;
Jens Axboe9b402842019-04-11 11:45:41 -06007235 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07007236 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06007237 ret = -EINVAL;
7238 if (nr_args != 1)
7239 break;
7240 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07007241 if (ret)
7242 break;
7243 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
7244 ctx->eventfd_async = 1;
7245 else
7246 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06007247 break;
7248 case IORING_UNREGISTER_EVENTFD:
7249 ret = -EINVAL;
7250 if (arg || nr_args)
7251 break;
7252 ret = io_eventfd_unregister(ctx);
7253 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07007254 case IORING_REGISTER_PROBE:
7255 ret = -EINVAL;
7256 if (!arg || nr_args > 256)
7257 break;
7258 ret = io_probe(ctx, arg, nr_args);
7259 break;
Jens Axboe071698e2020-01-28 10:04:42 -07007260 case IORING_REGISTER_PERSONALITY:
7261 ret = -EINVAL;
7262 if (arg || nr_args)
7263 break;
7264 ret = io_register_personality(ctx);
7265 break;
7266 case IORING_UNREGISTER_PERSONALITY:
7267 ret = -EINVAL;
7268 if (arg)
7269 break;
7270 ret = io_unregister_personality(ctx, nr_args);
7271 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07007272 default:
7273 ret = -EINVAL;
7274 break;
7275 }
7276
Jens Axboe071698e2020-01-28 10:04:42 -07007277 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007278 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07007279 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07007280out:
7281 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007282 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007283 return ret;
7284}
7285
7286SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
7287 void __user *, arg, unsigned int, nr_args)
7288{
7289 struct io_ring_ctx *ctx;
7290 long ret = -EBADF;
7291 struct fd f;
7292
7293 f = fdget(fd);
7294 if (!f.file)
7295 return -EBADF;
7296
7297 ret = -EOPNOTSUPP;
7298 if (f.file->f_op != &io_uring_fops)
7299 goto out_fput;
7300
7301 ctx = f.file->private_data;
7302
7303 mutex_lock(&ctx->uring_lock);
7304 ret = __io_uring_register(ctx, opcode, arg, nr_args);
7305 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007306 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
7307 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007308out_fput:
7309 fdput(f);
7310 return ret;
7311}
7312
Jens Axboe2b188cc2019-01-07 10:46:33 -07007313static int __init io_uring_init(void)
7314{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007315#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
7316 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
7317 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
7318} while (0)
7319
7320#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
7321 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
7322 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
7323 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
7324 BUILD_BUG_SQE_ELEM(1, __u8, flags);
7325 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
7326 BUILD_BUG_SQE_ELEM(4, __s32, fd);
7327 BUILD_BUG_SQE_ELEM(8, __u64, off);
7328 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
7329 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007330 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007331 BUILD_BUG_SQE_ELEM(24, __u32, len);
7332 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
7333 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
7334 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
7335 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
7336 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
7337 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
7338 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
7339 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
7340 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
7341 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
7342 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
7343 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
7344 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007345 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007346 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
7347 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
7348 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007349 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007350
Jens Axboed3656342019-12-18 09:50:26 -07007351 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007352 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
7353 return 0;
7354};
7355__initcall(io_uring_init);