blob: 2a8d88c9bcab17e708c2884c7f90f306c5fa0ec2 [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);
2552 work->func = io_wq_submit_work;
2553}
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) {
2562 nxt->work.flags |= IO_WQ_WORK_CB;
2563 nxt->work.func = io_link_work_cb;
2564 nxt->work.data = link;
2565 }
2566}
2567
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002568static void __io_fsync(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002569{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002570 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002571 int ret;
2572
Jens Axboe9adbd452019-12-20 08:45:55 -07002573 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002574 end > 0 ? end : LLONG_MAX,
2575 req->sync.flags & IORING_FSYNC_DATASYNC);
2576 if (ret < 0)
2577 req_set_fail_links(req);
2578 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002579 io_put_req_find_next(req, nxt);
2580}
2581
2582static void io_fsync_finish(struct io_wq_work **workptr)
2583{
2584 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2585 struct io_kiocb *nxt = NULL;
2586
2587 if (io_req_cancelled(req))
2588 return;
2589 __io_fsync(req, &nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002590 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002591 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002592}
2593
Jens Axboefc4df992019-12-10 14:38:45 -07002594static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2595 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002596{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002597 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002598 if (force_nonblock) {
2599 io_put_req(req);
2600 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002601 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002602 }
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002603 __io_fsync(req, nxt);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002604 return 0;
2605}
2606
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002607static void __io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboed63d1b52019-12-10 10:38:56 -07002608{
Jens Axboed63d1b52019-12-10 10:38:56 -07002609 int ret;
2610
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03002611 if (io_req_cancelled(req))
2612 return;
2613
Jens Axboed63d1b52019-12-10 10:38:56 -07002614 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2615 req->sync.len);
2616 if (ret < 0)
2617 req_set_fail_links(req);
2618 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002619 io_put_req_find_next(req, nxt);
2620}
2621
2622static void io_fallocate_finish(struct io_wq_work **workptr)
2623{
2624 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2625 struct io_kiocb *nxt = NULL;
2626
2627 __io_fallocate(req, &nxt);
Jens Axboed63d1b52019-12-10 10:38:56 -07002628 if (nxt)
2629 io_wq_assign_next(workptr, nxt);
2630}
2631
2632static int io_fallocate_prep(struct io_kiocb *req,
2633 const struct io_uring_sqe *sqe)
2634{
2635 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2636 return -EINVAL;
2637
2638 req->sync.off = READ_ONCE(sqe->off);
2639 req->sync.len = READ_ONCE(sqe->addr);
2640 req->sync.mode = READ_ONCE(sqe->len);
2641 return 0;
2642}
2643
2644static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2645 bool force_nonblock)
2646{
Jens Axboed63d1b52019-12-10 10:38:56 -07002647 /* fallocate always requiring blocking context */
2648 if (force_nonblock) {
2649 io_put_req(req);
2650 req->work.func = io_fallocate_finish;
2651 return -EAGAIN;
2652 }
2653
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002654 __io_fallocate(req, nxt);
Jens Axboed63d1b52019-12-10 10:38:56 -07002655 return 0;
2656}
2657
Jens Axboe15b71ab2019-12-11 11:20:36 -07002658static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2659{
Jens Axboef8748882020-01-08 17:47:02 -07002660 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002661 int ret;
2662
2663 if (sqe->ioprio || sqe->buf_index)
2664 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002665 if (sqe->flags & IOSQE_FIXED_FILE)
2666 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002667 if (req->flags & REQ_F_NEED_CLEANUP)
2668 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002669
2670 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002671 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002672 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002673 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002674
Jens Axboef8748882020-01-08 17:47:02 -07002675 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002676 if (IS_ERR(req->open.filename)) {
2677 ret = PTR_ERR(req->open.filename);
2678 req->open.filename = NULL;
2679 return ret;
2680 }
2681
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002682 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002683 return 0;
2684}
2685
Jens Axboecebdb982020-01-08 17:59:24 -07002686static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2687{
2688 struct open_how __user *how;
2689 const char __user *fname;
2690 size_t len;
2691 int ret;
2692
2693 if (sqe->ioprio || sqe->buf_index)
2694 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002695 if (sqe->flags & IOSQE_FIXED_FILE)
2696 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002697 if (req->flags & REQ_F_NEED_CLEANUP)
2698 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002699
2700 req->open.dfd = READ_ONCE(sqe->fd);
2701 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2702 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2703 len = READ_ONCE(sqe->len);
2704
2705 if (len < OPEN_HOW_SIZE_VER0)
2706 return -EINVAL;
2707
2708 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2709 len);
2710 if (ret)
2711 return ret;
2712
2713 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2714 req->open.how.flags |= O_LARGEFILE;
2715
2716 req->open.filename = getname(fname);
2717 if (IS_ERR(req->open.filename)) {
2718 ret = PTR_ERR(req->open.filename);
2719 req->open.filename = NULL;
2720 return ret;
2721 }
2722
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002723 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002724 return 0;
2725}
2726
2727static int io_openat2(struct io_kiocb *req, struct io_kiocb **nxt,
2728 bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002729{
2730 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002731 struct file *file;
2732 int ret;
2733
Jens Axboef86cd202020-01-29 13:46:44 -07002734 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002735 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002736
Jens Axboecebdb982020-01-08 17:59:24 -07002737 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002738 if (ret)
2739 goto err;
2740
Jens Axboecebdb982020-01-08 17:59:24 -07002741 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002742 if (ret < 0)
2743 goto err;
2744
2745 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2746 if (IS_ERR(file)) {
2747 put_unused_fd(ret);
2748 ret = PTR_ERR(file);
2749 } else {
2750 fsnotify_open(file);
2751 fd_install(ret, file);
2752 }
2753err:
2754 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002755 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002756 if (ret < 0)
2757 req_set_fail_links(req);
2758 io_cqring_add_event(req, ret);
2759 io_put_req_find_next(req, nxt);
2760 return 0;
2761}
2762
Jens Axboecebdb982020-01-08 17:59:24 -07002763static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2764 bool force_nonblock)
2765{
2766 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
2767 return io_openat2(req, nxt, force_nonblock);
2768}
2769
Jens Axboe3e4827b2020-01-08 15:18:09 -07002770static int io_epoll_ctl_prep(struct io_kiocb *req,
2771 const struct io_uring_sqe *sqe)
2772{
2773#if defined(CONFIG_EPOLL)
2774 if (sqe->ioprio || sqe->buf_index)
2775 return -EINVAL;
2776
2777 req->epoll.epfd = READ_ONCE(sqe->fd);
2778 req->epoll.op = READ_ONCE(sqe->len);
2779 req->epoll.fd = READ_ONCE(sqe->off);
2780
2781 if (ep_op_has_event(req->epoll.op)) {
2782 struct epoll_event __user *ev;
2783
2784 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
2785 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
2786 return -EFAULT;
2787 }
2788
2789 return 0;
2790#else
2791 return -EOPNOTSUPP;
2792#endif
2793}
2794
2795static int io_epoll_ctl(struct io_kiocb *req, struct io_kiocb **nxt,
2796 bool force_nonblock)
2797{
2798#if defined(CONFIG_EPOLL)
2799 struct io_epoll *ie = &req->epoll;
2800 int ret;
2801
2802 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
2803 if (force_nonblock && ret == -EAGAIN)
2804 return -EAGAIN;
2805
2806 if (ret < 0)
2807 req_set_fail_links(req);
2808 io_cqring_add_event(req, ret);
2809 io_put_req_find_next(req, nxt);
2810 return 0;
2811#else
2812 return -EOPNOTSUPP;
2813#endif
2814}
2815
Jens Axboec1ca7572019-12-25 22:18:28 -07002816static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2817{
2818#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2819 if (sqe->ioprio || sqe->buf_index || sqe->off)
2820 return -EINVAL;
2821
2822 req->madvise.addr = READ_ONCE(sqe->addr);
2823 req->madvise.len = READ_ONCE(sqe->len);
2824 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2825 return 0;
2826#else
2827 return -EOPNOTSUPP;
2828#endif
2829}
2830
2831static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2832 bool force_nonblock)
2833{
2834#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2835 struct io_madvise *ma = &req->madvise;
2836 int ret;
2837
2838 if (force_nonblock)
2839 return -EAGAIN;
2840
2841 ret = do_madvise(ma->addr, ma->len, ma->advice);
2842 if (ret < 0)
2843 req_set_fail_links(req);
2844 io_cqring_add_event(req, ret);
2845 io_put_req_find_next(req, nxt);
2846 return 0;
2847#else
2848 return -EOPNOTSUPP;
2849#endif
2850}
2851
Jens Axboe4840e412019-12-25 22:03:45 -07002852static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2853{
2854 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2855 return -EINVAL;
2856
2857 req->fadvise.offset = READ_ONCE(sqe->off);
2858 req->fadvise.len = READ_ONCE(sqe->len);
2859 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2860 return 0;
2861}
2862
2863static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2864 bool force_nonblock)
2865{
2866 struct io_fadvise *fa = &req->fadvise;
2867 int ret;
2868
Jens Axboe3e694262020-02-01 09:22:49 -07002869 if (force_nonblock) {
2870 switch (fa->advice) {
2871 case POSIX_FADV_NORMAL:
2872 case POSIX_FADV_RANDOM:
2873 case POSIX_FADV_SEQUENTIAL:
2874 break;
2875 default:
2876 return -EAGAIN;
2877 }
2878 }
Jens Axboe4840e412019-12-25 22:03:45 -07002879
2880 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2881 if (ret < 0)
2882 req_set_fail_links(req);
2883 io_cqring_add_event(req, ret);
2884 io_put_req_find_next(req, nxt);
2885 return 0;
2886}
2887
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002888static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2889{
Jens Axboef8748882020-01-08 17:47:02 -07002890 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002891 unsigned lookup_flags;
2892 int ret;
2893
2894 if (sqe->ioprio || sqe->buf_index)
2895 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002896 if (sqe->flags & IOSQE_FIXED_FILE)
2897 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002898 if (req->flags & REQ_F_NEED_CLEANUP)
2899 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002900
2901 req->open.dfd = READ_ONCE(sqe->fd);
2902 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002903 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002904 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07002905 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002906
Jens Axboec12cedf2020-01-08 17:41:21 -07002907 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002908 return -EINVAL;
2909
Jens Axboef8748882020-01-08 17:47:02 -07002910 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002911 if (IS_ERR(req->open.filename)) {
2912 ret = PTR_ERR(req->open.filename);
2913 req->open.filename = NULL;
2914 return ret;
2915 }
2916
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002917 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002918 return 0;
2919}
2920
2921static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2922 bool force_nonblock)
2923{
2924 struct io_open *ctx = &req->open;
2925 unsigned lookup_flags;
2926 struct path path;
2927 struct kstat stat;
2928 int ret;
2929
2930 if (force_nonblock)
2931 return -EAGAIN;
2932
Jens Axboec12cedf2020-01-08 17:41:21 -07002933 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002934 return -EINVAL;
2935
2936retry:
2937 /* filename_lookup() drops it, keep a reference */
2938 ctx->filename->refcnt++;
2939
2940 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2941 NULL);
2942 if (ret)
2943 goto err;
2944
Jens Axboec12cedf2020-01-08 17:41:21 -07002945 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002946 path_put(&path);
2947 if (retry_estale(ret, lookup_flags)) {
2948 lookup_flags |= LOOKUP_REVAL;
2949 goto retry;
2950 }
2951 if (!ret)
2952 ret = cp_statx(&stat, ctx->buffer);
2953err:
2954 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002955 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002956 if (ret < 0)
2957 req_set_fail_links(req);
2958 io_cqring_add_event(req, ret);
2959 io_put_req_find_next(req, nxt);
2960 return 0;
2961}
2962
Jens Axboeb5dba592019-12-11 14:02:38 -07002963static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2964{
2965 /*
2966 * If we queue this for async, it must not be cancellable. That would
2967 * leave the 'file' in an undeterminate state.
2968 */
2969 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2970
2971 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2972 sqe->rw_flags || sqe->buf_index)
2973 return -EINVAL;
2974 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002975 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07002976
2977 req->close.fd = READ_ONCE(sqe->fd);
2978 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03002979 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07002980 return -EBADF;
2981
2982 return 0;
2983}
2984
Pavel Begunkova93b3332020-02-08 14:04:34 +03002985/* only called when __close_fd_get_file() is done */
2986static void __io_close_finish(struct io_kiocb *req, struct io_kiocb **nxt)
2987{
2988 int ret;
2989
2990 ret = filp_close(req->close.put_file, req->work.files);
2991 if (ret < 0)
2992 req_set_fail_links(req);
2993 io_cqring_add_event(req, ret);
2994 fput(req->close.put_file);
2995 io_put_req_find_next(req, nxt);
2996}
2997
Jens Axboeb5dba592019-12-11 14:02:38 -07002998static void io_close_finish(struct io_wq_work **workptr)
2999{
3000 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3001 struct io_kiocb *nxt = NULL;
3002
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003003 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkova93b3332020-02-08 14:04:34 +03003004 __io_close_finish(req, &nxt);
Jens Axboeb5dba592019-12-11 14:02:38 -07003005 if (nxt)
3006 io_wq_assign_next(workptr, nxt);
3007}
3008
3009static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
3010 bool force_nonblock)
3011{
3012 int ret;
3013
3014 req->close.put_file = NULL;
3015 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3016 if (ret < 0)
3017 return ret;
3018
3019 /* if the file has a flush method, be safe and punt to async */
Jens Axboef86cd202020-01-29 13:46:44 -07003020 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker())
Jens Axboeb5dba592019-12-11 14:02:38 -07003021 goto eagain;
Jens Axboeb5dba592019-12-11 14:02:38 -07003022
3023 /*
3024 * No ->flush(), safely close from here and just punt the
3025 * fput() to async context.
3026 */
Pavel Begunkova93b3332020-02-08 14:04:34 +03003027 __io_close_finish(req, nxt);
3028 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003029eagain:
3030 req->work.func = io_close_finish;
Jens Axboe1a417f42020-01-31 17:16:48 -07003031 /*
3032 * Do manual async queue here to avoid grabbing files - we don't
3033 * need the files, and it'll cause io_close_finish() to close
3034 * the file again and cause a double CQE entry for this request
3035 */
3036 io_queue_async_work(req);
3037 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003038}
3039
Jens Axboe3529d8c2019-12-19 18:24:38 -07003040static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003041{
3042 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003043
3044 if (!req->file)
3045 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003046
3047 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3048 return -EINVAL;
3049 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3050 return -EINVAL;
3051
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003052 req->sync.off = READ_ONCE(sqe->off);
3053 req->sync.len = READ_ONCE(sqe->len);
3054 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003055 return 0;
3056}
3057
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003058static void __io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003059{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003060 int ret;
3061
Jens Axboe9adbd452019-12-20 08:45:55 -07003062 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003063 req->sync.flags);
3064 if (ret < 0)
3065 req_set_fail_links(req);
3066 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003067 io_put_req_find_next(req, nxt);
3068}
3069
3070
3071static void io_sync_file_range_finish(struct io_wq_work **workptr)
3072{
3073 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3074 struct io_kiocb *nxt = NULL;
3075
3076 if (io_req_cancelled(req))
3077 return;
3078 __io_sync_file_range(req, &nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003079 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003080 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003081}
3082
Jens Axboefc4df992019-12-10 14:38:45 -07003083static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003084 bool force_nonblock)
3085{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003086 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003087 if (force_nonblock) {
3088 io_put_req(req);
3089 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003090 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003091 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003092
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003093 __io_sync_file_range(req, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003094 return 0;
3095}
3096
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003097static int io_setup_async_msg(struct io_kiocb *req,
3098 struct io_async_msghdr *kmsg)
3099{
3100 if (req->io)
3101 return -EAGAIN;
3102 if (io_alloc_async_ctx(req)) {
3103 if (kmsg->iov != kmsg->fast_iov)
3104 kfree(kmsg->iov);
3105 return -ENOMEM;
3106 }
3107 req->flags |= REQ_F_NEED_CLEANUP;
3108 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3109 return -EAGAIN;
3110}
3111
Jens Axboe3529d8c2019-12-19 18:24:38 -07003112static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003113{
Jens Axboe03b12302019-12-02 18:50:25 -07003114#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003115 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003116 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003117 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003118
Jens Axboee47293f2019-12-20 08:58:21 -07003119 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3120 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003121 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003122
Jens Axboed8768362020-02-27 14:17:49 -07003123#ifdef CONFIG_COMPAT
3124 if (req->ctx->compat)
3125 sr->msg_flags |= MSG_CMSG_COMPAT;
3126#endif
3127
Jens Axboefddafac2020-01-04 20:19:44 -07003128 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003129 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003130 /* iovec is already imported */
3131 if (req->flags & REQ_F_NEED_CLEANUP)
3132 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003133
Jens Axboed9688562019-12-09 19:35:20 -07003134 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003135 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003136 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003137 if (!ret)
3138 req->flags |= REQ_F_NEED_CLEANUP;
3139 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003140#else
Jens Axboee47293f2019-12-20 08:58:21 -07003141 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003142#endif
3143}
3144
Jens Axboefc4df992019-12-10 14:38:45 -07003145static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3146 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003147{
3148#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003149 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003150 struct socket *sock;
3151 int ret;
3152
3153 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3154 return -EINVAL;
3155
3156 sock = sock_from_file(req->file, &ret);
3157 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003158 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003159 unsigned flags;
3160
Jens Axboe03b12302019-12-02 18:50:25 -07003161 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003162 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003163 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003164 /* if iov is set, it's allocated already */
3165 if (!kmsg->iov)
3166 kmsg->iov = kmsg->fast_iov;
3167 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003168 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003169 struct io_sr_msg *sr = &req->sr_msg;
3170
Jens Axboe0b416c32019-12-15 10:57:46 -07003171 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003172 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003173
3174 io.msg.iov = io.msg.fast_iov;
3175 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3176 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003177 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003178 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003179 }
3180
Jens Axboee47293f2019-12-20 08:58:21 -07003181 flags = req->sr_msg.msg_flags;
3182 if (flags & MSG_DONTWAIT)
3183 req->flags |= REQ_F_NOWAIT;
3184 else if (force_nonblock)
3185 flags |= MSG_DONTWAIT;
3186
Jens Axboe0b416c32019-12-15 10:57:46 -07003187 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003188 if (force_nonblock && ret == -EAGAIN)
3189 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003190 if (ret == -ERESTARTSYS)
3191 ret = -EINTR;
3192 }
3193
Pavel Begunkov1e950812020-02-06 19:51:16 +03003194 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003195 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003196 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003197 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003198 if (ret < 0)
3199 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003200 io_put_req_find_next(req, nxt);
3201 return 0;
3202#else
3203 return -EOPNOTSUPP;
3204#endif
3205}
3206
Jens Axboefddafac2020-01-04 20:19:44 -07003207static int io_send(struct io_kiocb *req, struct io_kiocb **nxt,
3208 bool force_nonblock)
3209{
3210#if defined(CONFIG_NET)
3211 struct socket *sock;
3212 int ret;
3213
3214 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3215 return -EINVAL;
3216
3217 sock = sock_from_file(req->file, &ret);
3218 if (sock) {
3219 struct io_sr_msg *sr = &req->sr_msg;
3220 struct msghdr msg;
3221 struct iovec iov;
3222 unsigned flags;
3223
3224 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3225 &msg.msg_iter);
3226 if (ret)
3227 return ret;
3228
3229 msg.msg_name = NULL;
3230 msg.msg_control = NULL;
3231 msg.msg_controllen = 0;
3232 msg.msg_namelen = 0;
3233
3234 flags = req->sr_msg.msg_flags;
3235 if (flags & MSG_DONTWAIT)
3236 req->flags |= REQ_F_NOWAIT;
3237 else if (force_nonblock)
3238 flags |= MSG_DONTWAIT;
3239
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003240 msg.msg_flags = flags;
3241 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003242 if (force_nonblock && ret == -EAGAIN)
3243 return -EAGAIN;
3244 if (ret == -ERESTARTSYS)
3245 ret = -EINTR;
3246 }
3247
3248 io_cqring_add_event(req, ret);
3249 if (ret < 0)
3250 req_set_fail_links(req);
3251 io_put_req_find_next(req, nxt);
3252 return 0;
3253#else
3254 return -EOPNOTSUPP;
3255#endif
3256}
3257
Jens Axboe3529d8c2019-12-19 18:24:38 -07003258static int io_recvmsg_prep(struct io_kiocb *req,
3259 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003260{
3261#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003262 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003263 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003264 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003265
Jens Axboe3529d8c2019-12-19 18:24:38 -07003266 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3267 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003268 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003269
Jens Axboed8768362020-02-27 14:17:49 -07003270#ifdef CONFIG_COMPAT
3271 if (req->ctx->compat)
3272 sr->msg_flags |= MSG_CMSG_COMPAT;
3273#endif
3274
Jens Axboefddafac2020-01-04 20:19:44 -07003275 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003276 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003277 /* iovec is already imported */
3278 if (req->flags & REQ_F_NEED_CLEANUP)
3279 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003280
Jens Axboed9688562019-12-09 19:35:20 -07003281 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003282 ret = recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003283 &io->msg.uaddr, &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003284 if (!ret)
3285 req->flags |= REQ_F_NEED_CLEANUP;
3286 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003287#else
Jens Axboee47293f2019-12-20 08:58:21 -07003288 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003289#endif
3290}
3291
Jens Axboefc4df992019-12-10 14:38:45 -07003292static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3293 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003294{
3295#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003296 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003297 struct socket *sock;
3298 int ret;
3299
3300 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3301 return -EINVAL;
3302
3303 sock = sock_from_file(req->file, &ret);
3304 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003305 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003306 unsigned flags;
3307
Jens Axboe03b12302019-12-02 18:50:25 -07003308 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003309 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003310 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003311 /* if iov is set, it's allocated already */
3312 if (!kmsg->iov)
3313 kmsg->iov = kmsg->fast_iov;
3314 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003315 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003316 struct io_sr_msg *sr = &req->sr_msg;
3317
Jens Axboe0b416c32019-12-15 10:57:46 -07003318 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003319 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003320
3321 io.msg.iov = io.msg.fast_iov;
3322 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
3323 sr->msg_flags, &io.msg.uaddr,
3324 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003325 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003326 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003327 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003328
Jens Axboee47293f2019-12-20 08:58:21 -07003329 flags = req->sr_msg.msg_flags;
3330 if (flags & MSG_DONTWAIT)
3331 req->flags |= REQ_F_NOWAIT;
3332 else if (force_nonblock)
3333 flags |= MSG_DONTWAIT;
3334
3335 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3336 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003337 if (force_nonblock && ret == -EAGAIN)
3338 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003339 if (ret == -ERESTARTSYS)
3340 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003341 }
3342
Pavel Begunkov1e950812020-02-06 19:51:16 +03003343 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003344 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003345 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003346 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003347 if (ret < 0)
3348 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003349 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003350 return 0;
3351#else
3352 return -EOPNOTSUPP;
3353#endif
3354}
3355
Jens Axboefddafac2020-01-04 20:19:44 -07003356static int io_recv(struct io_kiocb *req, struct io_kiocb **nxt,
3357 bool force_nonblock)
3358{
3359#if defined(CONFIG_NET)
3360 struct socket *sock;
3361 int ret;
3362
3363 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3364 return -EINVAL;
3365
3366 sock = sock_from_file(req->file, &ret);
3367 if (sock) {
3368 struct io_sr_msg *sr = &req->sr_msg;
3369 struct msghdr msg;
3370 struct iovec iov;
3371 unsigned flags;
3372
3373 ret = import_single_range(READ, sr->buf, sr->len, &iov,
3374 &msg.msg_iter);
3375 if (ret)
3376 return ret;
3377
3378 msg.msg_name = NULL;
3379 msg.msg_control = NULL;
3380 msg.msg_controllen = 0;
3381 msg.msg_namelen = 0;
3382 msg.msg_iocb = NULL;
3383 msg.msg_flags = 0;
3384
3385 flags = req->sr_msg.msg_flags;
3386 if (flags & MSG_DONTWAIT)
3387 req->flags |= REQ_F_NOWAIT;
3388 else if (force_nonblock)
3389 flags |= MSG_DONTWAIT;
3390
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003391 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003392 if (force_nonblock && ret == -EAGAIN)
3393 return -EAGAIN;
3394 if (ret == -ERESTARTSYS)
3395 ret = -EINTR;
3396 }
3397
3398 io_cqring_add_event(req, ret);
3399 if (ret < 0)
3400 req_set_fail_links(req);
3401 io_put_req_find_next(req, nxt);
3402 return 0;
3403#else
3404 return -EOPNOTSUPP;
3405#endif
3406}
3407
3408
Jens Axboe3529d8c2019-12-19 18:24:38 -07003409static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003410{
3411#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003412 struct io_accept *accept = &req->accept;
3413
Jens Axboe17f2fe32019-10-17 14:42:58 -06003414 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3415 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003416 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003417 return -EINVAL;
3418
Jens Axboed55e5f52019-12-11 16:12:15 -07003419 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3420 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003421 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003422 return 0;
3423#else
3424 return -EOPNOTSUPP;
3425#endif
3426}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003427
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003428#if defined(CONFIG_NET)
3429static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3430 bool force_nonblock)
3431{
3432 struct io_accept *accept = &req->accept;
3433 unsigned file_flags;
3434 int ret;
3435
3436 file_flags = force_nonblock ? O_NONBLOCK : 0;
3437 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3438 accept->addr_len, accept->flags);
3439 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003440 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003441 if (ret == -ERESTARTSYS)
3442 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003443 if (ret < 0)
3444 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003445 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003446 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003447 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003448}
3449
3450static void io_accept_finish(struct io_wq_work **workptr)
3451{
3452 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3453 struct io_kiocb *nxt = NULL;
3454
Jens Axboee441d1c2020-02-20 09:59:02 -07003455 io_put_req(req);
3456
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003457 if (io_req_cancelled(req))
3458 return;
3459 __io_accept(req, &nxt, false);
3460 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003461 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003462}
3463#endif
3464
3465static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3466 bool force_nonblock)
3467{
3468#if defined(CONFIG_NET)
3469 int ret;
3470
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003471 ret = __io_accept(req, nxt, force_nonblock);
3472 if (ret == -EAGAIN && force_nonblock) {
3473 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003474 return -EAGAIN;
3475 }
3476 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003477#else
3478 return -EOPNOTSUPP;
3479#endif
3480}
3481
Jens Axboe3529d8c2019-12-19 18:24:38 -07003482static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003483{
3484#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003485 struct io_connect *conn = &req->connect;
3486 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003487
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003488 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3489 return -EINVAL;
3490 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3491 return -EINVAL;
3492
Jens Axboe3529d8c2019-12-19 18:24:38 -07003493 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3494 conn->addr_len = READ_ONCE(sqe->addr2);
3495
3496 if (!io)
3497 return 0;
3498
3499 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003500 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003501#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003502 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07003503#endif
3504}
3505
Jens Axboefc4df992019-12-10 14:38:45 -07003506static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3507 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003508{
3509#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07003510 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003511 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003512 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003513
Jens Axboef499a022019-12-02 16:28:46 -07003514 if (req->io) {
3515 io = req->io;
3516 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003517 ret = move_addr_to_kernel(req->connect.addr,
3518 req->connect.addr_len,
3519 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003520 if (ret)
3521 goto out;
3522 io = &__io;
3523 }
3524
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003525 file_flags = force_nonblock ? O_NONBLOCK : 0;
3526
3527 ret = __sys_connect_file(req->file, &io->connect.address,
3528 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003529 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003530 if (req->io)
3531 return -EAGAIN;
3532 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003533 ret = -ENOMEM;
3534 goto out;
3535 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003536 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003537 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003538 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003539 if (ret == -ERESTARTSYS)
3540 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07003541out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003542 if (ret < 0)
3543 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003544 io_cqring_add_event(req, ret);
3545 io_put_req_find_next(req, nxt);
3546 return 0;
3547#else
3548 return -EOPNOTSUPP;
3549#endif
3550}
3551
Jens Axboe221c5eb2019-01-17 09:41:58 -07003552static void io_poll_remove_one(struct io_kiocb *req)
3553{
3554 struct io_poll_iocb *poll = &req->poll;
3555
3556 spin_lock(&poll->head->lock);
3557 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07003558 if (!list_empty(&poll->wait.entry)) {
3559 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07003560 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003561 }
3562 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003563 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003564}
3565
3566static void io_poll_remove_all(struct io_ring_ctx *ctx)
3567{
Jens Axboe78076bb2019-12-04 19:56:40 -07003568 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003569 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07003570 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003571
3572 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003573 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3574 struct hlist_head *list;
3575
3576 list = &ctx->cancel_hash[i];
3577 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3578 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003579 }
3580 spin_unlock_irq(&ctx->completion_lock);
3581}
3582
Jens Axboe47f46762019-11-09 17:43:02 -07003583static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3584{
Jens Axboe78076bb2019-12-04 19:56:40 -07003585 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07003586 struct io_kiocb *req;
3587
Jens Axboe78076bb2019-12-04 19:56:40 -07003588 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3589 hlist_for_each_entry(req, list, hash_node) {
3590 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07003591 io_poll_remove_one(req);
3592 return 0;
3593 }
Jens Axboe47f46762019-11-09 17:43:02 -07003594 }
3595
3596 return -ENOENT;
3597}
3598
Jens Axboe3529d8c2019-12-19 18:24:38 -07003599static int io_poll_remove_prep(struct io_kiocb *req,
3600 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003601{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003602 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3603 return -EINVAL;
3604 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3605 sqe->poll_events)
3606 return -EINVAL;
3607
Jens Axboe0969e782019-12-17 18:40:57 -07003608 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07003609 return 0;
3610}
3611
3612/*
3613 * Find a running poll command that matches one specified in sqe->addr,
3614 * and remove it if found.
3615 */
3616static int io_poll_remove(struct io_kiocb *req)
3617{
3618 struct io_ring_ctx *ctx = req->ctx;
3619 u64 addr;
3620 int ret;
3621
Jens Axboe0969e782019-12-17 18:40:57 -07003622 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003623 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07003624 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003625 spin_unlock_irq(&ctx->completion_lock);
3626
Jens Axboe78e19bb2019-11-06 15:21:34 -07003627 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003628 if (ret < 0)
3629 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003630 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003631 return 0;
3632}
3633
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003634static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003635{
Jackie Liua197f662019-11-08 08:09:12 -07003636 struct io_ring_ctx *ctx = req->ctx;
3637
Jens Axboe8c838782019-03-12 15:48:16 -06003638 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03003639 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06003640 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003641}
3642
Jens Axboe561fb042019-10-24 07:25:42 -06003643static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003644{
Jens Axboe561fb042019-10-24 07:25:42 -06003645 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003646 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3647 struct io_poll_iocb *poll = &req->poll;
3648 struct poll_table_struct pt = { ._key = poll->events };
3649 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07003650 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003651 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003652 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003653
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003654 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06003655 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003656 ret = -ECANCELED;
3657 } else if (READ_ONCE(poll->canceled)) {
3658 ret = -ECANCELED;
3659 }
Jens Axboe561fb042019-10-24 07:25:42 -06003660
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003661 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003662 mask = vfs_poll(poll->file, &pt) & poll->events;
3663
3664 /*
3665 * Note that ->ki_cancel callers also delete iocb from active_reqs after
3666 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
3667 * synchronize with them. In the cancellation case the list_del_init
3668 * itself is not actually needed, but harmless so we keep it in to
3669 * avoid further branches in the fast path.
3670 */
3671 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003672 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07003673 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003674 spin_unlock_irq(&ctx->completion_lock);
3675 return;
3676 }
Jens Axboe78076bb2019-12-04 19:56:40 -07003677 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003678 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003679 spin_unlock_irq(&ctx->completion_lock);
3680
Jens Axboe8c838782019-03-12 15:48:16 -06003681 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07003682
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003683 if (ret < 0)
3684 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003685 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07003686 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003687 io_wq_assign_next(workptr, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003688}
3689
Jens Axboee94f1412019-12-19 12:06:02 -07003690static void __io_poll_flush(struct io_ring_ctx *ctx, struct llist_node *nodes)
3691{
Jens Axboee94f1412019-12-19 12:06:02 -07003692 struct io_kiocb *req, *tmp;
Jens Axboe8237e042019-12-28 10:48:22 -07003693 struct req_batch rb;
Jens Axboee94f1412019-12-19 12:06:02 -07003694
Jens Axboec6ca97b302019-12-28 12:11:08 -07003695 rb.to_free = rb.need_iter = 0;
Jens Axboee94f1412019-12-19 12:06:02 -07003696 spin_lock_irq(&ctx->completion_lock);
3697 llist_for_each_entry_safe(req, tmp, nodes, llist_node) {
3698 hash_del(&req->hash_node);
3699 io_poll_complete(req, req->result, 0);
3700
Jens Axboe8237e042019-12-28 10:48:22 -07003701 if (refcount_dec_and_test(&req->refs) &&
3702 !io_req_multi_free(&rb, req)) {
3703 req->flags |= REQ_F_COMP_LOCKED;
3704 io_free_req(req);
Jens Axboee94f1412019-12-19 12:06:02 -07003705 }
3706 }
3707 spin_unlock_irq(&ctx->completion_lock);
3708
3709 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07003710 io_free_req_many(ctx, &rb);
Jens Axboee94f1412019-12-19 12:06:02 -07003711}
3712
3713static void io_poll_flush(struct io_wq_work **workptr)
3714{
3715 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3716 struct llist_node *nodes;
3717
3718 nodes = llist_del_all(&req->ctx->poll_llist);
3719 if (nodes)
3720 __io_poll_flush(req->ctx, nodes);
3721}
3722
Jens Axboef0b493e2020-02-01 21:30:11 -07003723static void io_poll_trigger_evfd(struct io_wq_work **workptr)
3724{
3725 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3726
3727 eventfd_signal(req->ctx->cq_ev_fd, 1);
3728 io_put_req(req);
3729}
3730
Jens Axboe221c5eb2019-01-17 09:41:58 -07003731static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3732 void *key)
3733{
Jens Axboee9444752019-11-26 15:02:04 -07003734 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003735 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
3736 struct io_ring_ctx *ctx = req->ctx;
3737 __poll_t mask = key_to_poll(key);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003738
3739 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06003740 if (mask && !(mask & poll->events))
3741 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003742
Jens Axboe392edb42019-12-09 17:52:20 -07003743 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003744
Jens Axboe7c9e7f02019-11-12 08:15:53 -07003745 /*
3746 * Run completion inline if we can. We're using trylock here because
3747 * we are violating the completion_lock -> poll wq lock ordering.
3748 * If we have a link timeout we're going to need the completion_lock
3749 * for finalizing the request, mark us as having grabbed that already.
3750 */
Jens Axboee94f1412019-12-19 12:06:02 -07003751 if (mask) {
3752 unsigned long flags;
Jens Axboe8c838782019-03-12 15:48:16 -06003753
Jens Axboee94f1412019-12-19 12:06:02 -07003754 if (llist_empty(&ctx->poll_llist) &&
3755 spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboef0b493e2020-02-01 21:30:11 -07003756 bool trigger_ev;
3757
Jens Axboee94f1412019-12-19 12:06:02 -07003758 hash_del(&req->hash_node);
3759 io_poll_complete(req, mask, 0);
Jens Axboee94f1412019-12-19 12:06:02 -07003760
Jens Axboef0b493e2020-02-01 21:30:11 -07003761 trigger_ev = io_should_trigger_evfd(ctx);
3762 if (trigger_ev && eventfd_signal_count()) {
3763 trigger_ev = false;
3764 req->work.func = io_poll_trigger_evfd;
3765 } else {
3766 req->flags |= REQ_F_COMP_LOCKED;
3767 io_put_req(req);
3768 req = NULL;
3769 }
3770 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3771 __io_cqring_ev_posted(ctx, trigger_ev);
Jens Axboee94f1412019-12-19 12:06:02 -07003772 } else {
3773 req->result = mask;
3774 req->llist_node.next = NULL;
3775 /* if the list wasn't empty, we're done */
3776 if (!llist_add(&req->llist_node, &ctx->poll_llist))
3777 req = NULL;
3778 else
3779 req->work.func = io_poll_flush;
3780 }
Jens Axboe8c838782019-03-12 15:48:16 -06003781 }
Jens Axboee94f1412019-12-19 12:06:02 -07003782 if (req)
3783 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003784
Jens Axboe221c5eb2019-01-17 09:41:58 -07003785 return 1;
3786}
3787
3788struct io_poll_table {
3789 struct poll_table_struct pt;
3790 struct io_kiocb *req;
3791 int error;
3792};
3793
3794static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3795 struct poll_table_struct *p)
3796{
3797 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3798
3799 if (unlikely(pt->req->poll.head)) {
3800 pt->error = -EINVAL;
3801 return;
3802 }
3803
3804 pt->error = 0;
3805 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07003806 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003807}
3808
Jens Axboeeac406c2019-11-14 12:09:58 -07003809static void io_poll_req_insert(struct io_kiocb *req)
3810{
3811 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07003812 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07003813
Jens Axboe78076bb2019-12-04 19:56:40 -07003814 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3815 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07003816}
3817
Jens Axboe3529d8c2019-12-19 18:24:38 -07003818static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003819{
3820 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003821 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003822
3823 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3824 return -EINVAL;
3825 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3826 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003827 if (!poll->file)
3828 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003829
Jens Axboe221c5eb2019-01-17 09:41:58 -07003830 events = READ_ONCE(sqe->poll_events);
3831 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07003832 return 0;
3833}
3834
3835static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3836{
3837 struct io_poll_iocb *poll = &req->poll;
3838 struct io_ring_ctx *ctx = req->ctx;
3839 struct io_poll_table ipt;
3840 bool cancel = false;
3841 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07003842
3843 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07003844 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003845
Jens Axboe221c5eb2019-01-17 09:41:58 -07003846 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06003847 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003848 poll->canceled = false;
3849
3850 ipt.pt._qproc = io_poll_queue_proc;
3851 ipt.pt._key = poll->events;
3852 ipt.req = req;
3853 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3854
3855 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07003856 INIT_LIST_HEAD(&poll->wait.entry);
3857 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
3858 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003859
Jens Axboe36703242019-07-25 10:20:18 -06003860 INIT_LIST_HEAD(&req->list);
3861
Jens Axboe221c5eb2019-01-17 09:41:58 -07003862 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003863
3864 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06003865 if (likely(poll->head)) {
3866 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07003867 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06003868 if (ipt.error)
3869 cancel = true;
3870 ipt.error = 0;
3871 mask = 0;
3872 }
3873 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07003874 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003875 else if (cancel)
3876 WRITE_ONCE(poll->canceled, true);
3877 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07003878 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003879 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003880 }
Jens Axboe8c838782019-03-12 15:48:16 -06003881 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06003882 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003883 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06003884 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07003885 spin_unlock_irq(&ctx->completion_lock);
3886
Jens Axboe8c838782019-03-12 15:48:16 -06003887 if (mask) {
3888 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003889 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003890 }
Jens Axboe8c838782019-03-12 15:48:16 -06003891 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003892}
3893
Jens Axboe5262f562019-09-17 12:26:57 -06003894static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3895{
Jens Axboead8a48a2019-11-15 08:49:11 -07003896 struct io_timeout_data *data = container_of(timer,
3897 struct io_timeout_data, timer);
3898 struct io_kiocb *req = data->req;
3899 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06003900 unsigned long flags;
3901
Jens Axboe5262f562019-09-17 12:26:57 -06003902 atomic_inc(&ctx->cq_timeouts);
3903
3904 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08003905 /*
Jens Axboe11365042019-10-16 09:08:32 -06003906 * We could be racing with timeout deletion. If the list is empty,
3907 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08003908 */
Jens Axboe842f9612019-10-29 12:34:10 -06003909 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06003910 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06003911
Jens Axboe11365042019-10-16 09:08:32 -06003912 /*
3913 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08003914 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06003915 * pointer will be increased, otherwise other timeout reqs may
3916 * return in advance without waiting for enough wait_nr.
3917 */
3918 prev = req;
3919 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3920 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06003921 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06003922 }
Jens Axboe842f9612019-10-29 12:34:10 -06003923
Jens Axboe78e19bb2019-11-06 15:21:34 -07003924 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06003925 io_commit_cqring(ctx);
3926 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3927
3928 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003929 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003930 io_put_req(req);
3931 return HRTIMER_NORESTART;
3932}
3933
Jens Axboe47f46762019-11-09 17:43:02 -07003934static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3935{
3936 struct io_kiocb *req;
3937 int ret = -ENOENT;
3938
3939 list_for_each_entry(req, &ctx->timeout_list, list) {
3940 if (user_data == req->user_data) {
3941 list_del_init(&req->list);
3942 ret = 0;
3943 break;
3944 }
3945 }
3946
3947 if (ret == -ENOENT)
3948 return ret;
3949
Jens Axboe2d283902019-12-04 11:08:05 -07003950 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07003951 if (ret == -1)
3952 return -EALREADY;
3953
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003954 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003955 io_cqring_fill_event(req, -ECANCELED);
3956 io_put_req(req);
3957 return 0;
3958}
3959
Jens Axboe3529d8c2019-12-19 18:24:38 -07003960static int io_timeout_remove_prep(struct io_kiocb *req,
3961 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07003962{
Jens Axboeb29472e2019-12-17 18:50:29 -07003963 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3964 return -EINVAL;
3965 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3966 return -EINVAL;
3967
3968 req->timeout.addr = READ_ONCE(sqe->addr);
3969 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3970 if (req->timeout.flags)
3971 return -EINVAL;
3972
Jens Axboeb29472e2019-12-17 18:50:29 -07003973 return 0;
3974}
3975
Jens Axboe11365042019-10-16 09:08:32 -06003976/*
3977 * Remove or update an existing timeout command
3978 */
Jens Axboefc4df992019-12-10 14:38:45 -07003979static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06003980{
3981 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07003982 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06003983
Jens Axboe11365042019-10-16 09:08:32 -06003984 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07003985 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06003986
Jens Axboe47f46762019-11-09 17:43:02 -07003987 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06003988 io_commit_cqring(ctx);
3989 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003990 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003991 if (ret < 0)
3992 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003993 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06003994 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06003995}
3996
Jens Axboe3529d8c2019-12-19 18:24:38 -07003997static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07003998 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06003999{
Jens Axboead8a48a2019-11-15 08:49:11 -07004000 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004001 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004002
Jens Axboead8a48a2019-11-15 08:49:11 -07004003 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004004 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004005 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004006 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004007 if (sqe->off && is_timeout_link)
4008 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004009 flags = READ_ONCE(sqe->timeout_flags);
4010 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004011 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004012
Jens Axboe26a61672019-12-20 09:02:01 -07004013 req->timeout.count = READ_ONCE(sqe->off);
4014
Jens Axboe3529d8c2019-12-19 18:24:38 -07004015 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004016 return -ENOMEM;
4017
4018 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004019 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004020 req->flags |= REQ_F_TIMEOUT;
4021
4022 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004023 return -EFAULT;
4024
Jens Axboe11365042019-10-16 09:08:32 -06004025 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004026 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004027 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004028 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004029
Jens Axboead8a48a2019-11-15 08:49:11 -07004030 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4031 return 0;
4032}
4033
Jens Axboefc4df992019-12-10 14:38:45 -07004034static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004035{
4036 unsigned count;
4037 struct io_ring_ctx *ctx = req->ctx;
4038 struct io_timeout_data *data;
4039 struct list_head *entry;
4040 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004041
Jens Axboe2d283902019-12-04 11:08:05 -07004042 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004043
Jens Axboe5262f562019-09-17 12:26:57 -06004044 /*
4045 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004046 * timeout event to be satisfied. If it isn't set, then this is
4047 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004048 */
Jens Axboe26a61672019-12-20 09:02:01 -07004049 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004050 if (!count) {
4051 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4052 spin_lock_irq(&ctx->completion_lock);
4053 entry = ctx->timeout_list.prev;
4054 goto add;
4055 }
Jens Axboe5262f562019-09-17 12:26:57 -06004056
4057 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004058 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004059
4060 /*
4061 * Insertion sort, ensuring the first entry in the list is always
4062 * the one we need first.
4063 */
Jens Axboe5262f562019-09-17 12:26:57 -06004064 spin_lock_irq(&ctx->completion_lock);
4065 list_for_each_prev(entry, &ctx->timeout_list) {
4066 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004067 unsigned nxt_sq_head;
4068 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004069 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004070
Jens Axboe93bd25b2019-11-11 23:34:31 -07004071 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4072 continue;
4073
yangerkun5da0fb12019-10-15 21:59:29 +08004074 /*
4075 * Since cached_sq_head + count - 1 can overflow, use type long
4076 * long to store it.
4077 */
4078 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004079 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4080 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004081
4082 /*
4083 * cached_sq_head may overflow, and it will never overflow twice
4084 * once there is some timeout req still be valid.
4085 */
4086 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004087 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004088
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004089 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004090 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004091
4092 /*
4093 * Sequence of reqs after the insert one and itself should
4094 * be adjusted because each timeout req consumes a slot.
4095 */
4096 span++;
4097 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004098 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004099 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004100add:
Jens Axboe5262f562019-09-17 12:26:57 -06004101 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004102 data->timer.function = io_timeout_fn;
4103 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004104 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004105 return 0;
4106}
4107
Jens Axboe62755e32019-10-28 21:49:21 -06004108static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004109{
Jens Axboe62755e32019-10-28 21:49:21 -06004110 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004111
Jens Axboe62755e32019-10-28 21:49:21 -06004112 return req->user_data == (unsigned long) data;
4113}
4114
Jens Axboee977d6d2019-11-05 12:39:45 -07004115static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004116{
Jens Axboe62755e32019-10-28 21:49:21 -06004117 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004118 int ret = 0;
4119
Jens Axboe62755e32019-10-28 21:49:21 -06004120 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4121 switch (cancel_ret) {
4122 case IO_WQ_CANCEL_OK:
4123 ret = 0;
4124 break;
4125 case IO_WQ_CANCEL_RUNNING:
4126 ret = -EALREADY;
4127 break;
4128 case IO_WQ_CANCEL_NOTFOUND:
4129 ret = -ENOENT;
4130 break;
4131 }
4132
Jens Axboee977d6d2019-11-05 12:39:45 -07004133 return ret;
4134}
4135
Jens Axboe47f46762019-11-09 17:43:02 -07004136static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4137 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004138 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004139{
4140 unsigned long flags;
4141 int ret;
4142
4143 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4144 if (ret != -ENOENT) {
4145 spin_lock_irqsave(&ctx->completion_lock, flags);
4146 goto done;
4147 }
4148
4149 spin_lock_irqsave(&ctx->completion_lock, flags);
4150 ret = io_timeout_cancel(ctx, sqe_addr);
4151 if (ret != -ENOENT)
4152 goto done;
4153 ret = io_poll_cancel(ctx, sqe_addr);
4154done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004155 if (!ret)
4156 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004157 io_cqring_fill_event(req, ret);
4158 io_commit_cqring(ctx);
4159 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4160 io_cqring_ev_posted(ctx);
4161
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004162 if (ret < 0)
4163 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004164 io_put_req_find_next(req, nxt);
4165}
4166
Jens Axboe3529d8c2019-12-19 18:24:38 -07004167static int io_async_cancel_prep(struct io_kiocb *req,
4168 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004169{
Jens Axboefbf23842019-12-17 18:45:56 -07004170 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004171 return -EINVAL;
4172 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4173 sqe->cancel_flags)
4174 return -EINVAL;
4175
Jens Axboefbf23842019-12-17 18:45:56 -07004176 req->cancel.addr = READ_ONCE(sqe->addr);
4177 return 0;
4178}
4179
4180static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
4181{
4182 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004183
4184 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004185 return 0;
4186}
4187
Jens Axboe05f3fb32019-12-09 11:22:50 -07004188static int io_files_update_prep(struct io_kiocb *req,
4189 const struct io_uring_sqe *sqe)
4190{
4191 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4192 return -EINVAL;
4193
4194 req->files_update.offset = READ_ONCE(sqe->off);
4195 req->files_update.nr_args = READ_ONCE(sqe->len);
4196 if (!req->files_update.nr_args)
4197 return -EINVAL;
4198 req->files_update.arg = READ_ONCE(sqe->addr);
4199 return 0;
4200}
4201
4202static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4203{
4204 struct io_ring_ctx *ctx = req->ctx;
4205 struct io_uring_files_update up;
4206 int ret;
4207
Jens Axboef86cd202020-01-29 13:46:44 -07004208 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004209 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004210
4211 up.offset = req->files_update.offset;
4212 up.fds = req->files_update.arg;
4213
4214 mutex_lock(&ctx->uring_lock);
4215 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4216 mutex_unlock(&ctx->uring_lock);
4217
4218 if (ret < 0)
4219 req_set_fail_links(req);
4220 io_cqring_add_event(req, ret);
4221 io_put_req(req);
4222 return 0;
4223}
4224
Jens Axboe3529d8c2019-12-19 18:24:38 -07004225static int io_req_defer_prep(struct io_kiocb *req,
4226 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004227{
Jens Axboee7815732019-12-17 19:45:06 -07004228 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004229
Jens Axboef86cd202020-01-29 13:46:44 -07004230 if (io_op_defs[req->opcode].file_table) {
4231 ret = io_grab_files(req);
4232 if (unlikely(ret))
4233 return ret;
4234 }
4235
Jens Axboecccf0ee2020-01-27 16:34:48 -07004236 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4237
Jens Axboed625c6e2019-12-17 19:53:05 -07004238 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004239 case IORING_OP_NOP:
4240 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004241 case IORING_OP_READV:
4242 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004243 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004244 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004245 break;
4246 case IORING_OP_WRITEV:
4247 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004248 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004249 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004250 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004251 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004252 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004253 break;
4254 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004255 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004256 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004257 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004258 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004259 break;
4260 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004261 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004262 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004263 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004264 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004265 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004266 break;
4267 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004268 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004269 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004270 break;
Jens Axboef499a022019-12-02 16:28:46 -07004271 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004272 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004273 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004274 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004275 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004276 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004277 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004278 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004279 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004280 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004281 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004282 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004283 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004284 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004285 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004286 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004287 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004288 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004289 case IORING_OP_FALLOCATE:
4290 ret = io_fallocate_prep(req, sqe);
4291 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004292 case IORING_OP_OPENAT:
4293 ret = io_openat_prep(req, sqe);
4294 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004295 case IORING_OP_CLOSE:
4296 ret = io_close_prep(req, sqe);
4297 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004298 case IORING_OP_FILES_UPDATE:
4299 ret = io_files_update_prep(req, sqe);
4300 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004301 case IORING_OP_STATX:
4302 ret = io_statx_prep(req, sqe);
4303 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004304 case IORING_OP_FADVISE:
4305 ret = io_fadvise_prep(req, sqe);
4306 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004307 case IORING_OP_MADVISE:
4308 ret = io_madvise_prep(req, sqe);
4309 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004310 case IORING_OP_OPENAT2:
4311 ret = io_openat2_prep(req, sqe);
4312 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004313 case IORING_OP_EPOLL_CTL:
4314 ret = io_epoll_ctl_prep(req, sqe);
4315 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004316 case IORING_OP_SPLICE:
4317 ret = io_splice_prep(req, sqe);
4318 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004319 default:
Jens Axboee7815732019-12-17 19:45:06 -07004320 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4321 req->opcode);
4322 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004323 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004324 }
4325
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004326 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004327}
4328
Jens Axboe3529d8c2019-12-19 18:24:38 -07004329static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004330{
Jackie Liua197f662019-11-08 08:09:12 -07004331 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004332 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004333
Bob Liu9d858b22019-11-13 18:06:25 +08004334 /* Still need defer if there is pending req in defer list. */
4335 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004336 return 0;
4337
Jens Axboe3529d8c2019-12-19 18:24:38 -07004338 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004339 return -EAGAIN;
4340
Jens Axboe3529d8c2019-12-19 18:24:38 -07004341 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004342 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004343 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004344
Jens Axboede0617e2019-04-06 21:51:27 -06004345 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004346 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004347 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004348 return 0;
4349 }
4350
Jens Axboe915967f2019-11-21 09:01:20 -07004351 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004352 list_add_tail(&req->list, &ctx->defer_list);
4353 spin_unlock_irq(&ctx->completion_lock);
4354 return -EIOCBQUEUED;
4355}
4356
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004357static void io_cleanup_req(struct io_kiocb *req)
4358{
4359 struct io_async_ctx *io = req->io;
4360
4361 switch (req->opcode) {
4362 case IORING_OP_READV:
4363 case IORING_OP_READ_FIXED:
4364 case IORING_OP_READ:
4365 case IORING_OP_WRITEV:
4366 case IORING_OP_WRITE_FIXED:
4367 case IORING_OP_WRITE:
4368 if (io->rw.iov != io->rw.fast_iov)
4369 kfree(io->rw.iov);
4370 break;
4371 case IORING_OP_SENDMSG:
4372 case IORING_OP_RECVMSG:
4373 if (io->msg.iov != io->msg.fast_iov)
4374 kfree(io->msg.iov);
4375 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004376 case IORING_OP_OPENAT:
4377 case IORING_OP_OPENAT2:
4378 case IORING_OP_STATX:
4379 putname(req->open.filename);
4380 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004381 case IORING_OP_SPLICE:
4382 io_put_file(req, req->splice.file_in,
4383 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
4384 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004385 }
4386
4387 req->flags &= ~REQ_F_NEED_CLEANUP;
4388}
4389
Jens Axboe3529d8c2019-12-19 18:24:38 -07004390static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4391 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004392{
Jackie Liua197f662019-11-08 08:09:12 -07004393 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004394 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004395
Jens Axboed625c6e2019-12-17 19:53:05 -07004396 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004397 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004398 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004399 break;
4400 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004401 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004402 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004403 if (sqe) {
4404 ret = io_read_prep(req, sqe, force_nonblock);
4405 if (ret < 0)
4406 break;
4407 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004408 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004409 break;
4410 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07004411 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004412 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004413 if (sqe) {
4414 ret = io_write_prep(req, sqe, force_nonblock);
4415 if (ret < 0)
4416 break;
4417 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004418 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004419 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004420 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004421 if (sqe) {
4422 ret = io_prep_fsync(req, sqe);
4423 if (ret < 0)
4424 break;
4425 }
Jens Axboefc4df992019-12-10 14:38:45 -07004426 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004427 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004428 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004429 if (sqe) {
4430 ret = io_poll_add_prep(req, sqe);
4431 if (ret)
4432 break;
4433 }
Jens Axboefc4df992019-12-10 14:38:45 -07004434 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004435 break;
4436 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004437 if (sqe) {
4438 ret = io_poll_remove_prep(req, sqe);
4439 if (ret < 0)
4440 break;
4441 }
Jens Axboefc4df992019-12-10 14:38:45 -07004442 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004443 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004444 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004445 if (sqe) {
4446 ret = io_prep_sfr(req, sqe);
4447 if (ret < 0)
4448 break;
4449 }
Jens Axboefc4df992019-12-10 14:38:45 -07004450 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004451 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004452 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004453 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004454 if (sqe) {
4455 ret = io_sendmsg_prep(req, sqe);
4456 if (ret < 0)
4457 break;
4458 }
Jens Axboefddafac2020-01-04 20:19:44 -07004459 if (req->opcode == IORING_OP_SENDMSG)
4460 ret = io_sendmsg(req, nxt, force_nonblock);
4461 else
4462 ret = io_send(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004463 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06004464 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004465 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004466 if (sqe) {
4467 ret = io_recvmsg_prep(req, sqe);
4468 if (ret)
4469 break;
4470 }
Jens Axboefddafac2020-01-04 20:19:44 -07004471 if (req->opcode == IORING_OP_RECVMSG)
4472 ret = io_recvmsg(req, nxt, force_nonblock);
4473 else
4474 ret = io_recv(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06004475 break;
Jens Axboe5262f562019-09-17 12:26:57 -06004476 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004477 if (sqe) {
4478 ret = io_timeout_prep(req, sqe, false);
4479 if (ret)
4480 break;
4481 }
Jens Axboefc4df992019-12-10 14:38:45 -07004482 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004483 break;
Jens Axboe11365042019-10-16 09:08:32 -06004484 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004485 if (sqe) {
4486 ret = io_timeout_remove_prep(req, sqe);
4487 if (ret)
4488 break;
4489 }
Jens Axboefc4df992019-12-10 14:38:45 -07004490 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06004491 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06004492 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004493 if (sqe) {
4494 ret = io_accept_prep(req, sqe);
4495 if (ret)
4496 break;
4497 }
Jens Axboefc4df992019-12-10 14:38:45 -07004498 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004499 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004500 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004501 if (sqe) {
4502 ret = io_connect_prep(req, sqe);
4503 if (ret)
4504 break;
4505 }
Jens Axboefc4df992019-12-10 14:38:45 -07004506 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004507 break;
Jens Axboe62755e32019-10-28 21:49:21 -06004508 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004509 if (sqe) {
4510 ret = io_async_cancel_prep(req, sqe);
4511 if (ret)
4512 break;
4513 }
Jens Axboefc4df992019-12-10 14:38:45 -07004514 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06004515 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004516 case IORING_OP_FALLOCATE:
4517 if (sqe) {
4518 ret = io_fallocate_prep(req, sqe);
4519 if (ret)
4520 break;
4521 }
4522 ret = io_fallocate(req, nxt, force_nonblock);
4523 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004524 case IORING_OP_OPENAT:
4525 if (sqe) {
4526 ret = io_openat_prep(req, sqe);
4527 if (ret)
4528 break;
4529 }
4530 ret = io_openat(req, nxt, force_nonblock);
4531 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004532 case IORING_OP_CLOSE:
4533 if (sqe) {
4534 ret = io_close_prep(req, sqe);
4535 if (ret)
4536 break;
4537 }
4538 ret = io_close(req, nxt, force_nonblock);
4539 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004540 case IORING_OP_FILES_UPDATE:
4541 if (sqe) {
4542 ret = io_files_update_prep(req, sqe);
4543 if (ret)
4544 break;
4545 }
4546 ret = io_files_update(req, force_nonblock);
4547 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004548 case IORING_OP_STATX:
4549 if (sqe) {
4550 ret = io_statx_prep(req, sqe);
4551 if (ret)
4552 break;
4553 }
4554 ret = io_statx(req, nxt, force_nonblock);
4555 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004556 case IORING_OP_FADVISE:
4557 if (sqe) {
4558 ret = io_fadvise_prep(req, sqe);
4559 if (ret)
4560 break;
4561 }
4562 ret = io_fadvise(req, nxt, force_nonblock);
4563 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004564 case IORING_OP_MADVISE:
4565 if (sqe) {
4566 ret = io_madvise_prep(req, sqe);
4567 if (ret)
4568 break;
4569 }
4570 ret = io_madvise(req, nxt, force_nonblock);
4571 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004572 case IORING_OP_OPENAT2:
4573 if (sqe) {
4574 ret = io_openat2_prep(req, sqe);
4575 if (ret)
4576 break;
4577 }
4578 ret = io_openat2(req, nxt, force_nonblock);
4579 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004580 case IORING_OP_EPOLL_CTL:
4581 if (sqe) {
4582 ret = io_epoll_ctl_prep(req, sqe);
4583 if (ret)
4584 break;
4585 }
4586 ret = io_epoll_ctl(req, nxt, force_nonblock);
4587 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004588 case IORING_OP_SPLICE:
4589 if (sqe) {
4590 ret = io_splice_prep(req, sqe);
4591 if (ret < 0)
4592 break;
4593 }
4594 ret = io_splice(req, nxt, force_nonblock);
4595 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004596 default:
4597 ret = -EINVAL;
4598 break;
4599 }
4600
Jens Axboedef596e2019-01-09 08:59:42 -07004601 if (ret)
4602 return ret;
4603
4604 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07004605 const bool in_async = io_wq_current_is_worker();
4606
Jens Axboe9e645e112019-05-10 16:07:28 -06004607 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07004608 return -EAGAIN;
4609
Jens Axboe11ba8202020-01-15 21:51:17 -07004610 /* workqueue context doesn't hold uring_lock, grab it now */
4611 if (in_async)
4612 mutex_lock(&ctx->uring_lock);
4613
Jens Axboedef596e2019-01-09 08:59:42 -07004614 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07004615
4616 if (in_async)
4617 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07004618 }
4619
4620 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004621}
4622
Jens Axboe561fb042019-10-24 07:25:42 -06004623static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07004624{
Jens Axboe561fb042019-10-24 07:25:42 -06004625 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004626 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06004627 struct io_kiocb *nxt = NULL;
4628 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004629
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004630 /* if NO_CANCEL is set, we must still run the work */
4631 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4632 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06004633 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004634 }
Jens Axboe31b51512019-01-18 22:56:34 -07004635
Jens Axboe561fb042019-10-24 07:25:42 -06004636 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06004637 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004638 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06004639 /*
4640 * We can get EAGAIN for polled IO even though we're
4641 * forcing a sync submission from here, since we can't
4642 * wait for request slots on the block side.
4643 */
4644 if (ret != -EAGAIN)
4645 break;
4646 cond_resched();
4647 } while (1);
4648 }
Jens Axboe31b51512019-01-18 22:56:34 -07004649
Jens Axboe561fb042019-10-24 07:25:42 -06004650 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08004651 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06004652
Jens Axboe561fb042019-10-24 07:25:42 -06004653 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004654 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004655 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06004656 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07004657 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004658
Jens Axboe561fb042019-10-24 07:25:42 -06004659 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07004660 if (!ret && nxt)
4661 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07004662}
Jens Axboe2b188cc2019-01-07 10:46:33 -07004663
Jens Axboe15b71ab2019-12-11 11:20:36 -07004664static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004665{
Jens Axboed3656342019-12-18 09:50:26 -07004666 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004667 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07004668 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07004669 return 0;
4670 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06004671}
4672
Jens Axboe65e19f52019-10-26 07:20:21 -06004673static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4674 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06004675{
Jens Axboe65e19f52019-10-26 07:20:21 -06004676 struct fixed_file_table *table;
4677
Jens Axboe05f3fb32019-12-09 11:22:50 -07004678 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4679 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06004680}
4681
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004682static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
4683 int fd, struct file **out_file, bool fixed)
4684{
4685 struct io_ring_ctx *ctx = req->ctx;
4686 struct file *file;
4687
4688 if (fixed) {
4689 if (unlikely(!ctx->file_data ||
4690 (unsigned) fd >= ctx->nr_user_files))
4691 return -EBADF;
4692 fd = array_index_nospec(fd, ctx->nr_user_files);
4693 file = io_file_from_index(ctx, fd);
4694 if (!file)
4695 return -EBADF;
4696 percpu_ref_get(&ctx->file_data->refs);
4697 } else {
4698 trace_io_uring_file_get(ctx, fd);
4699 file = __io_file_get(state, fd);
4700 if (unlikely(!file))
4701 return -EBADF;
4702 }
4703
4704 *out_file = file;
4705 return 0;
4706}
4707
Jens Axboe3529d8c2019-12-19 18:24:38 -07004708static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4709 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06004710{
4711 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07004712 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004713 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06004714
Jens Axboe3529d8c2019-12-19 18:24:38 -07004715 flags = READ_ONCE(sqe->flags);
4716 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004717
Jens Axboed3656342019-12-18 09:50:26 -07004718 if (!io_req_needs_file(req, fd))
4719 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06004720
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004721 fixed = (flags & IOSQE_FIXED_FILE);
4722 if (unlikely(!fixed && req->needs_fixed_file))
4723 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06004724
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004725 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06004726}
4727
Jackie Liua197f662019-11-08 08:09:12 -07004728static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004729{
Jens Axboefcb323c2019-10-24 12:39:47 -06004730 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07004731 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06004732
Jens Axboef86cd202020-01-29 13:46:44 -07004733 if (req->work.files)
4734 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004735 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07004736 return -EBADF;
4737
Jens Axboefcb323c2019-10-24 12:39:47 -06004738 rcu_read_lock();
4739 spin_lock_irq(&ctx->inflight_lock);
4740 /*
4741 * We use the f_ops->flush() handler to ensure that we can flush
4742 * out work accessing these files if the fd is closed. Check if
4743 * the fd has changed since we started down this path, and disallow
4744 * this operation if it has.
4745 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004746 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06004747 list_add(&req->inflight_entry, &ctx->inflight_list);
4748 req->flags |= REQ_F_INFLIGHT;
4749 req->work.files = current->files;
4750 ret = 0;
4751 }
4752 spin_unlock_irq(&ctx->inflight_lock);
4753 rcu_read_unlock();
4754
4755 return ret;
4756}
4757
Jens Axboe2665abf2019-11-05 12:40:47 -07004758static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
4759{
Jens Axboead8a48a2019-11-15 08:49:11 -07004760 struct io_timeout_data *data = container_of(timer,
4761 struct io_timeout_data, timer);
4762 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07004763 struct io_ring_ctx *ctx = req->ctx;
4764 struct io_kiocb *prev = NULL;
4765 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07004766
4767 spin_lock_irqsave(&ctx->completion_lock, flags);
4768
4769 /*
4770 * We don't expect the list to be empty, that will only happen if we
4771 * race with the completion of the linked work.
4772 */
Pavel Begunkov44932332019-12-05 16:16:35 +03004773 if (!list_empty(&req->link_list)) {
4774 prev = list_entry(req->link_list.prev, struct io_kiocb,
4775 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004776 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03004777 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004778 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4779 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07004780 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004781 }
4782
4783 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4784
4785 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004786 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004787 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4788 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07004789 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07004790 } else {
4791 io_cqring_add_event(req, -ETIME);
4792 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004793 }
Jens Axboe2665abf2019-11-05 12:40:47 -07004794 return HRTIMER_NORESTART;
4795}
4796
Jens Axboead8a48a2019-11-15 08:49:11 -07004797static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004798{
Jens Axboe76a46e02019-11-10 23:34:16 -07004799 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07004800
Jens Axboe76a46e02019-11-10 23:34:16 -07004801 /*
4802 * If the list is now empty, then our linked request finished before
4803 * we got a chance to setup the timer
4804 */
4805 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03004806 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07004807 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07004808
Jens Axboead8a48a2019-11-15 08:49:11 -07004809 data->timer.function = io_link_timeout_fn;
4810 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4811 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07004812 }
Jens Axboe76a46e02019-11-10 23:34:16 -07004813 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07004814
Jens Axboe2665abf2019-11-05 12:40:47 -07004815 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07004816 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004817}
4818
Jens Axboead8a48a2019-11-15 08:49:11 -07004819static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004820{
4821 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004822
Jens Axboe2665abf2019-11-05 12:40:47 -07004823 if (!(req->flags & REQ_F_LINK))
4824 return NULL;
4825
Pavel Begunkov44932332019-12-05 16:16:35 +03004826 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4827 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07004828 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07004829 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004830
Jens Axboe76a46e02019-11-10 23:34:16 -07004831 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07004832 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07004833}
4834
Jens Axboe3529d8c2019-12-19 18:24:38 -07004835static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004836{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004837 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004838 struct io_kiocb *nxt = NULL;
Jens Axboe193155c2020-02-22 23:22:19 -07004839 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004840 int ret;
4841
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004842again:
4843 linked_timeout = io_prep_linked_timeout(req);
4844
Jens Axboe193155c2020-02-22 23:22:19 -07004845 if (req->work.creds && req->work.creds != current_cred()) {
4846 if (old_creds)
4847 revert_creds(old_creds);
4848 if (old_creds == req->work.creds)
4849 old_creds = NULL; /* restored original creds */
4850 else
4851 old_creds = override_creds(req->work.creds);
4852 }
4853
Jens Axboe3529d8c2019-12-19 18:24:38 -07004854 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06004855
4856 /*
4857 * We async punt it if the file wasn't marked NOWAIT, or if the file
4858 * doesn't support non-blocking read/write attempts
4859 */
4860 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4861 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004862punt:
Jens Axboef86cd202020-01-29 13:46:44 -07004863 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004864 ret = io_grab_files(req);
4865 if (ret)
4866 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004867 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004868
4869 /*
4870 * Queued up for async execution, worker will release
4871 * submit reference when the iocb is actually submitted.
4872 */
4873 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004874 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004875 }
Jens Axboee65ef562019-03-12 10:16:44 -06004876
Jens Axboefcb323c2019-10-24 12:39:47 -06004877err:
Jens Axboee65ef562019-03-12 10:16:44 -06004878 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07004879 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06004880
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004881 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07004882 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004883 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004884 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004885 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004886 }
4887
Jens Axboee65ef562019-03-12 10:16:44 -06004888 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06004889 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004890 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004891 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004892 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06004893 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004894done_req:
4895 if (nxt) {
4896 req = nxt;
4897 nxt = NULL;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004898
4899 if (req->flags & REQ_F_FORCE_ASYNC)
4900 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004901 goto again;
4902 }
Jens Axboe193155c2020-02-22 23:22:19 -07004903 if (old_creds)
4904 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004905}
4906
Jens Axboe3529d8c2019-12-19 18:24:38 -07004907static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004908{
4909 int ret;
4910
Jens Axboe3529d8c2019-12-19 18:24:38 -07004911 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004912 if (ret) {
4913 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004914fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004915 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004916 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004917 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004918 }
Pavel Begunkov25508782019-12-30 21:24:47 +03004919 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004920 ret = io_req_defer_prep(req, sqe);
4921 if (unlikely(ret < 0))
4922 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07004923 /*
4924 * Never try inline submit of IOSQE_ASYNC is set, go straight
4925 * to async execution.
4926 */
4927 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4928 io_queue_async_work(req);
4929 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004930 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07004931 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08004932}
4933
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004934static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004935{
Jens Axboe94ae5e72019-11-14 19:39:52 -07004936 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004937 io_cqring_add_event(req, -ECANCELED);
4938 io_double_put_req(req);
4939 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07004940 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004941}
4942
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004943#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboece35a472019-12-17 08:04:44 -07004944 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
Jens Axboe9e645e112019-05-10 16:07:28 -06004945
Jens Axboe3529d8c2019-12-19 18:24:38 -07004946static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4947 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06004948{
Jackie Liua197f662019-11-08 08:09:12 -07004949 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004950 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07004951 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06004952
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004953 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06004954
4955 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004956 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004957 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03004958 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06004959 }
4960
Jens Axboe75c6a032020-01-28 10:15:23 -07004961 id = READ_ONCE(sqe->personality);
4962 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07004963 req->work.creds = idr_find(&ctx->personality_idr, id);
4964 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07004965 ret = -EINVAL;
4966 goto err_req;
4967 }
Jens Axboe193155c2020-02-22 23:22:19 -07004968 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07004969 }
4970
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03004971 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004972 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
4973 IOSQE_ASYNC | IOSQE_FIXED_FILE);
Jens Axboe9e645e112019-05-10 16:07:28 -06004974
Jens Axboe3529d8c2019-12-19 18:24:38 -07004975 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004976 if (unlikely(ret)) {
4977err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004978 io_cqring_add_event(req, ret);
4979 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004980 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06004981 }
4982
Jens Axboe9e645e112019-05-10 16:07:28 -06004983 /*
4984 * If we already have a head request, queue this one for async
4985 * submittal once the head completes. If we don't have a head but
4986 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4987 * submitted sync once the chain is complete. If none of those
4988 * conditions are true (normal request), then just queue it.
4989 */
4990 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03004991 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06004992
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03004993 /*
4994 * Taking sequential execution of a link, draining both sides
4995 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
4996 * requests in the link. So, it drains the head and the
4997 * next after the link request. The last one is done via
4998 * drain_next flag to persist the effect across calls.
4999 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005000 if (sqe_flags & IOSQE_IO_DRAIN) {
5001 head->flags |= REQ_F_IO_DRAIN;
5002 ctx->drain_next = 1;
5003 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005004 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005005 ret = -EAGAIN;
5006 goto err_req;
5007 }
5008
Jens Axboe3529d8c2019-12-19 18:24:38 -07005009 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005010 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005011 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005012 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005013 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005014 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005015 trace_io_uring_link(ctx, req, head);
5016 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005017
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005018 /* last request of a link, enqueue the link */
5019 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5020 io_queue_link_head(head);
5021 *link = NULL;
5022 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005023 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005024 if (unlikely(ctx->drain_next)) {
5025 req->flags |= REQ_F_IO_DRAIN;
5026 req->ctx->drain_next = 0;
5027 }
5028 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5029 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005030 INIT_LIST_HEAD(&req->link_list);
5031 ret = io_req_defer_prep(req, sqe);
5032 if (ret)
5033 req->flags |= REQ_F_FAIL_LINK;
5034 *link = req;
5035 } else {
5036 io_queue_sqe(req, sqe);
5037 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005038 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005039
5040 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005041}
5042
Jens Axboe9a56a232019-01-09 09:06:50 -07005043/*
5044 * Batched submission is done, ensure local IO is flushed out.
5045 */
5046static void io_submit_state_end(struct io_submit_state *state)
5047{
5048 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005049 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005050 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005051 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005052}
5053
5054/*
5055 * Start submission side cache.
5056 */
5057static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005058 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005059{
5060 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005061 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005062 state->file = NULL;
5063 state->ios_left = max_ios;
5064}
5065
Jens Axboe2b188cc2019-01-07 10:46:33 -07005066static void io_commit_sqring(struct io_ring_ctx *ctx)
5067{
Hristo Venev75b28af2019-08-26 17:23:46 +00005068 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005069
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005070 /*
5071 * Ensure any loads from the SQEs are done at this point,
5072 * since once we write the new head, the application could
5073 * write new data to them.
5074 */
5075 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005076}
5077
5078/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005079 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005080 * that is mapped by userspace. This means that care needs to be taken to
5081 * ensure that reads are stable, as we cannot rely on userspace always
5082 * being a good citizen. If members of the sqe are validated and then later
5083 * used, it's important that those reads are done through READ_ONCE() to
5084 * prevent a re-load down the line.
5085 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07005086static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
5087 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005088{
Hristo Venev75b28af2019-08-26 17:23:46 +00005089 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005090 unsigned head;
5091
5092 /*
5093 * The cached sq head (or cq tail) serves two purposes:
5094 *
5095 * 1) allows us to batch the cost of updating the user visible
5096 * head updates.
5097 * 2) allows the kernel side to track the head on its own, even
5098 * though the application is the one updating it.
5099 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005100 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03005101 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005102 /*
5103 * All io need record the previous position, if LINK vs DARIN,
5104 * it can be used to mark the position of the first IO in the
5105 * link list.
5106 */
5107 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07005108 *sqe_ptr = &ctx->sq_sqes[head];
5109 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
5110 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005111 ctx->cached_sq_head++;
5112 return true;
5113 }
5114
5115 /* drop invalid entries */
5116 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06005117 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005118 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005119 return false;
5120}
5121
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005122static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005123 struct file *ring_file, int ring_fd,
5124 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005125{
5126 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005127 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005128 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005129 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005130
Jens Axboec4a2ed72019-11-21 21:01:26 -07005131 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005132 if (test_bit(0, &ctx->sq_check_overflow)) {
5133 if (!list_empty(&ctx->cq_overflow_list) &&
5134 !io_cqring_overflow_flush(ctx, false))
5135 return -EBUSY;
5136 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005137
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005138 /* make sure SQ entry isn't read before tail */
5139 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005140
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005141 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5142 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005143
5144 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005145 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005146 statep = &state;
5147 }
5148
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005149 ctx->ring_fd = ring_fd;
5150 ctx->ring_file = ring_file;
5151
Jens Axboe6c271ce2019-01-10 11:22:30 -07005152 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005153 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005154 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005155 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005156
Pavel Begunkov196be952019-11-07 01:41:06 +03005157 req = io_get_req(ctx, statep);
5158 if (unlikely(!req)) {
5159 if (!submitted)
5160 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005161 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005162 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005163 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005164 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005165 break;
5166 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005167
Jens Axboed3656342019-12-18 09:50:26 -07005168 /* will complete beyond this point, count as submitted */
5169 submitted++;
5170
5171 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005172 err = -EINVAL;
5173fail_req:
5174 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005175 io_double_put_req(req);
5176 break;
5177 }
5178
5179 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005180 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005181 if (unlikely(mm_fault)) {
5182 err = -EFAULT;
5183 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005184 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005185 use_mm(ctx->sqo_mm);
5186 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005187 }
5188
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005189 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005190 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5191 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005192 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005193 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005194 }
5195
Pavel Begunkov9466f432020-01-25 22:34:01 +03005196 if (unlikely(submitted != nr)) {
5197 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5198
5199 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5200 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005201 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005202 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005203 if (statep)
5204 io_submit_state_end(&state);
5205
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005206 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5207 io_commit_sqring(ctx);
5208
Jens Axboe6c271ce2019-01-10 11:22:30 -07005209 return submitted;
5210}
5211
5212static int io_sq_thread(void *data)
5213{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005214 struct io_ring_ctx *ctx = data;
5215 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005216 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005217 mm_segment_t old_fs;
5218 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005219 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005220 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005221
Jens Axboe206aefd2019-11-07 18:27:42 -07005222 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005223
Jens Axboe6c271ce2019-01-10 11:22:30 -07005224 old_fs = get_fs();
5225 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005226 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005227
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005228 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005229 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005230 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005231
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005232 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005233 unsigned nr_events = 0;
5234
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005235 mutex_lock(&ctx->uring_lock);
5236 if (!list_empty(&ctx->poll_list))
5237 io_iopoll_getevents(ctx, &nr_events, 0);
5238 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005239 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005240 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005241 }
5242
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005243 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005244
5245 /*
5246 * If submit got -EBUSY, flag us as needing the application
5247 * to enter the kernel to reap and flush events.
5248 */
5249 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005250 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005251 * Drop cur_mm before scheduling, we can't hold it for
5252 * long periods (or over schedule()). Do this before
5253 * adding ourselves to the waitqueue, as the unuse/drop
5254 * may sleep.
5255 */
5256 if (cur_mm) {
5257 unuse_mm(cur_mm);
5258 mmput(cur_mm);
5259 cur_mm = NULL;
5260 }
5261
5262 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005263 * We're polling. If we're within the defined idle
5264 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005265 * to sleep. The exception is if we got EBUSY doing
5266 * more IO, we should wait for the application to
5267 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005268 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005269 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005270 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5271 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboe9831a902019-09-19 09:48:55 -06005272 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005273 continue;
5274 }
5275
Jens Axboe6c271ce2019-01-10 11:22:30 -07005276 prepare_to_wait(&ctx->sqo_wait, &wait,
5277 TASK_INTERRUPTIBLE);
5278
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005279 /*
5280 * While doing polled IO, before going to sleep, we need
5281 * to check if there are new reqs added to poll_list, it
5282 * is because reqs may have been punted to io worker and
5283 * will be added to poll_list later, hence check the
5284 * poll_list again.
5285 */
5286 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5287 !list_empty_careful(&ctx->poll_list)) {
5288 finish_wait(&ctx->sqo_wait, &wait);
5289 continue;
5290 }
5291
Jens Axboe6c271ce2019-01-10 11:22:30 -07005292 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005293 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005294 /* make sure to read SQ tail after writing flags */
5295 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005296
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005297 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005298 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005299 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005300 finish_wait(&ctx->sqo_wait, &wait);
5301 break;
5302 }
5303 if (signal_pending(current))
5304 flush_signals(current);
5305 schedule();
5306 finish_wait(&ctx->sqo_wait, &wait);
5307
Hristo Venev75b28af2019-08-26 17:23:46 +00005308 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005309 continue;
5310 }
5311 finish_wait(&ctx->sqo_wait, &wait);
5312
Hristo Venev75b28af2019-08-26 17:23:46 +00005313 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005314 }
5315
Jens Axboe8a4955f2019-12-09 14:52:35 -07005316 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005317 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005318 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005319 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005320 }
5321
5322 set_fs(old_fs);
5323 if (cur_mm) {
5324 unuse_mm(cur_mm);
5325 mmput(cur_mm);
5326 }
Jens Axboe181e4482019-11-25 08:52:30 -07005327 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06005328
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005329 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06005330
Jens Axboe6c271ce2019-01-10 11:22:30 -07005331 return 0;
5332}
5333
Jens Axboebda52162019-09-24 13:47:15 -06005334struct io_wait_queue {
5335 struct wait_queue_entry wq;
5336 struct io_ring_ctx *ctx;
5337 unsigned to_wait;
5338 unsigned nr_timeouts;
5339};
5340
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005341static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06005342{
5343 struct io_ring_ctx *ctx = iowq->ctx;
5344
5345 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08005346 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06005347 * started waiting. For timeouts, we always want to return to userspace,
5348 * regardless of event count.
5349 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005350 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06005351 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
5352}
5353
5354static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
5355 int wake_flags, void *key)
5356{
5357 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
5358 wq);
5359
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005360 /* use noflush == true, as we can't safely rely on locking context */
5361 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06005362 return -1;
5363
5364 return autoremove_wake_function(curr, mode, wake_flags, key);
5365}
5366
Jens Axboe2b188cc2019-01-07 10:46:33 -07005367/*
5368 * Wait until events become available, if we don't already have some. The
5369 * application must reap them itself, as they reside on the shared cq ring.
5370 */
5371static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
5372 const sigset_t __user *sig, size_t sigsz)
5373{
Jens Axboebda52162019-09-24 13:47:15 -06005374 struct io_wait_queue iowq = {
5375 .wq = {
5376 .private = current,
5377 .func = io_wake_function,
5378 .entry = LIST_HEAD_INIT(iowq.wq.entry),
5379 },
5380 .ctx = ctx,
5381 .to_wait = min_events,
5382 };
Hristo Venev75b28af2019-08-26 17:23:46 +00005383 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005384 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005385
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005386 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005387 return 0;
5388
5389 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005390#ifdef CONFIG_COMPAT
5391 if (in_compat_syscall())
5392 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07005393 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005394 else
5395#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07005396 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005397
Jens Axboe2b188cc2019-01-07 10:46:33 -07005398 if (ret)
5399 return ret;
5400 }
5401
Jens Axboebda52162019-09-24 13:47:15 -06005402 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005403 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06005404 do {
5405 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
5406 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005407 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06005408 break;
5409 schedule();
5410 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005411 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06005412 break;
5413 }
5414 } while (1);
5415 finish_wait(&ctx->wait, &iowq.wq);
5416
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005417 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005418
Hristo Venev75b28af2019-08-26 17:23:46 +00005419 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005420}
5421
Jens Axboe6b063142019-01-10 22:13:58 -07005422static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
5423{
5424#if defined(CONFIG_UNIX)
5425 if (ctx->ring_sock) {
5426 struct sock *sock = ctx->ring_sock->sk;
5427 struct sk_buff *skb;
5428
5429 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
5430 kfree_skb(skb);
5431 }
5432#else
5433 int i;
5434
Jens Axboe65e19f52019-10-26 07:20:21 -06005435 for (i = 0; i < ctx->nr_user_files; i++) {
5436 struct file *file;
5437
5438 file = io_file_from_index(ctx, i);
5439 if (file)
5440 fput(file);
5441 }
Jens Axboe6b063142019-01-10 22:13:58 -07005442#endif
5443}
5444
Jens Axboe05f3fb32019-12-09 11:22:50 -07005445static void io_file_ref_kill(struct percpu_ref *ref)
5446{
5447 struct fixed_file_data *data;
5448
5449 data = container_of(ref, struct fixed_file_data, refs);
5450 complete(&data->done);
5451}
5452
Jens Axboe6b063142019-01-10 22:13:58 -07005453static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
5454{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005455 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06005456 unsigned nr_tables, i;
5457
Jens Axboe05f3fb32019-12-09 11:22:50 -07005458 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07005459 return -ENXIO;
5460
Jens Axboe05f3fb32019-12-09 11:22:50 -07005461 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
Jens Axboee46a7952020-01-17 11:15:34 -07005462 flush_work(&data->ref_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07005463 wait_for_completion(&data->done);
5464 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005465 percpu_ref_exit(&data->refs);
5466
Jens Axboe6b063142019-01-10 22:13:58 -07005467 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06005468 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
5469 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005470 kfree(data->table[i].files);
5471 kfree(data->table);
5472 kfree(data);
5473 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005474 ctx->nr_user_files = 0;
5475 return 0;
5476}
5477
Jens Axboe6c271ce2019-01-10 11:22:30 -07005478static void io_sq_thread_stop(struct io_ring_ctx *ctx)
5479{
5480 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07005481 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005482 /*
5483 * The park is a bit of a work-around, without it we get
5484 * warning spews on shutdown with SQPOLL set and affinity
5485 * set to a single CPU.
5486 */
Jens Axboe06058632019-04-13 09:26:03 -06005487 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005488 kthread_stop(ctx->sqo_thread);
5489 ctx->sqo_thread = NULL;
5490 }
5491}
5492
Jens Axboe6b063142019-01-10 22:13:58 -07005493static void io_finish_async(struct io_ring_ctx *ctx)
5494{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005495 io_sq_thread_stop(ctx);
5496
Jens Axboe561fb042019-10-24 07:25:42 -06005497 if (ctx->io_wq) {
5498 io_wq_destroy(ctx->io_wq);
5499 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005500 }
5501}
5502
5503#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07005504/*
5505 * Ensure the UNIX gc is aware of our file set, so we are certain that
5506 * the io_uring can be safely unregistered on process exit, even if we have
5507 * loops in the file referencing.
5508 */
5509static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
5510{
5511 struct sock *sk = ctx->ring_sock->sk;
5512 struct scm_fp_list *fpl;
5513 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06005514 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07005515
5516 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
5517 unsigned long inflight = ctx->user->unix_inflight + nr;
5518
5519 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
5520 return -EMFILE;
5521 }
5522
5523 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
5524 if (!fpl)
5525 return -ENOMEM;
5526
5527 skb = alloc_skb(0, GFP_KERNEL);
5528 if (!skb) {
5529 kfree(fpl);
5530 return -ENOMEM;
5531 }
5532
5533 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07005534
Jens Axboe08a45172019-10-03 08:11:03 -06005535 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07005536 fpl->user = get_uid(ctx->user);
5537 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005538 struct file *file = io_file_from_index(ctx, i + offset);
5539
5540 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06005541 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06005542 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06005543 unix_inflight(fpl->user, fpl->fp[nr_files]);
5544 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07005545 }
5546
Jens Axboe08a45172019-10-03 08:11:03 -06005547 if (nr_files) {
5548 fpl->max = SCM_MAX_FD;
5549 fpl->count = nr_files;
5550 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005551 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06005552 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
5553 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07005554
Jens Axboe08a45172019-10-03 08:11:03 -06005555 for (i = 0; i < nr_files; i++)
5556 fput(fpl->fp[i]);
5557 } else {
5558 kfree_skb(skb);
5559 kfree(fpl);
5560 }
Jens Axboe6b063142019-01-10 22:13:58 -07005561
5562 return 0;
5563}
5564
5565/*
5566 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
5567 * causes regular reference counting to break down. We rely on the UNIX
5568 * garbage collection to take care of this problem for us.
5569 */
5570static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5571{
5572 unsigned left, total;
5573 int ret = 0;
5574
5575 total = 0;
5576 left = ctx->nr_user_files;
5577 while (left) {
5578 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07005579
5580 ret = __io_sqe_files_scm(ctx, this_files, total);
5581 if (ret)
5582 break;
5583 left -= this_files;
5584 total += this_files;
5585 }
5586
5587 if (!ret)
5588 return 0;
5589
5590 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005591 struct file *file = io_file_from_index(ctx, total);
5592
5593 if (file)
5594 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07005595 total++;
5596 }
5597
5598 return ret;
5599}
5600#else
5601static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5602{
5603 return 0;
5604}
5605#endif
5606
Jens Axboe65e19f52019-10-26 07:20:21 -06005607static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
5608 unsigned nr_files)
5609{
5610 int i;
5611
5612 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005613 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005614 unsigned this_files;
5615
5616 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
5617 table->files = kcalloc(this_files, sizeof(struct file *),
5618 GFP_KERNEL);
5619 if (!table->files)
5620 break;
5621 nr_files -= this_files;
5622 }
5623
5624 if (i == nr_tables)
5625 return 0;
5626
5627 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005628 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005629 kfree(table->files);
5630 }
5631 return 1;
5632}
5633
Jens Axboe05f3fb32019-12-09 11:22:50 -07005634static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06005635{
5636#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06005637 struct sock *sock = ctx->ring_sock->sk;
5638 struct sk_buff_head list, *head = &sock->sk_receive_queue;
5639 struct sk_buff *skb;
5640 int i;
5641
5642 __skb_queue_head_init(&list);
5643
5644 /*
5645 * Find the skb that holds this file in its SCM_RIGHTS. When found,
5646 * remove this entry and rearrange the file array.
5647 */
5648 skb = skb_dequeue(head);
5649 while (skb) {
5650 struct scm_fp_list *fp;
5651
5652 fp = UNIXCB(skb).fp;
5653 for (i = 0; i < fp->count; i++) {
5654 int left;
5655
5656 if (fp->fp[i] != file)
5657 continue;
5658
5659 unix_notinflight(fp->user, fp->fp[i]);
5660 left = fp->count - 1 - i;
5661 if (left) {
5662 memmove(&fp->fp[i], &fp->fp[i + 1],
5663 left * sizeof(struct file *));
5664 }
5665 fp->count--;
5666 if (!fp->count) {
5667 kfree_skb(skb);
5668 skb = NULL;
5669 } else {
5670 __skb_queue_tail(&list, skb);
5671 }
5672 fput(file);
5673 file = NULL;
5674 break;
5675 }
5676
5677 if (!file)
5678 break;
5679
5680 __skb_queue_tail(&list, skb);
5681
5682 skb = skb_dequeue(head);
5683 }
5684
5685 if (skb_peek(&list)) {
5686 spin_lock_irq(&head->lock);
5687 while ((skb = __skb_dequeue(&list)) != NULL)
5688 __skb_queue_tail(head, skb);
5689 spin_unlock_irq(&head->lock);
5690 }
5691#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07005692 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06005693#endif
5694}
5695
Jens Axboe05f3fb32019-12-09 11:22:50 -07005696struct io_file_put {
5697 struct llist_node llist;
5698 struct file *file;
5699 struct completion *done;
5700};
5701
Jens Axboe2faf8522020-02-04 19:54:55 -07005702static void io_ring_file_ref_flush(struct fixed_file_data *data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005703{
5704 struct io_file_put *pfile, *tmp;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005705 struct llist_node *node;
5706
Jens Axboe05f3fb32019-12-09 11:22:50 -07005707 while ((node = llist_del_all(&data->put_llist)) != NULL) {
5708 llist_for_each_entry_safe(pfile, tmp, node, llist) {
5709 io_ring_file_put(data->ctx, pfile->file);
5710 if (pfile->done)
5711 complete(pfile->done);
5712 else
5713 kfree(pfile);
5714 }
5715 }
Jens Axboe2faf8522020-02-04 19:54:55 -07005716}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005717
Jens Axboe2faf8522020-02-04 19:54:55 -07005718static void io_ring_file_ref_switch(struct work_struct *work)
5719{
5720 struct fixed_file_data *data;
5721
5722 data = container_of(work, struct fixed_file_data, ref_work);
5723 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005724 percpu_ref_switch_to_percpu(&data->refs);
5725}
5726
5727static void io_file_data_ref_zero(struct percpu_ref *ref)
5728{
5729 struct fixed_file_data *data;
5730
5731 data = container_of(ref, struct fixed_file_data, refs);
5732
Jens Axboe2faf8522020-02-04 19:54:55 -07005733 /*
5734 * We can't safely switch from inside this context, punt to wq. If
5735 * the table ref is going away, the table is being unregistered.
5736 * Don't queue up the async work for that case, the caller will
5737 * handle it.
5738 */
5739 if (!percpu_ref_is_dying(&data->refs))
5740 queue_work(system_wq, &data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005741}
5742
5743static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
5744 unsigned nr_args)
5745{
5746 __s32 __user *fds = (__s32 __user *) arg;
5747 unsigned nr_tables;
5748 struct file *file;
5749 int fd, ret = 0;
5750 unsigned i;
5751
5752 if (ctx->file_data)
5753 return -EBUSY;
5754 if (!nr_args)
5755 return -EINVAL;
5756 if (nr_args > IORING_MAX_FIXED_FILES)
5757 return -EMFILE;
5758
5759 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
5760 if (!ctx->file_data)
5761 return -ENOMEM;
5762 ctx->file_data->ctx = ctx;
5763 init_completion(&ctx->file_data->done);
5764
5765 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
5766 ctx->file_data->table = kcalloc(nr_tables,
5767 sizeof(struct fixed_file_table),
5768 GFP_KERNEL);
5769 if (!ctx->file_data->table) {
5770 kfree(ctx->file_data);
5771 ctx->file_data = NULL;
5772 return -ENOMEM;
5773 }
5774
5775 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
5776 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
5777 kfree(ctx->file_data->table);
5778 kfree(ctx->file_data);
5779 ctx->file_data = NULL;
5780 return -ENOMEM;
5781 }
5782 ctx->file_data->put_llist.first = NULL;
5783 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
5784
5785 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
5786 percpu_ref_exit(&ctx->file_data->refs);
5787 kfree(ctx->file_data->table);
5788 kfree(ctx->file_data);
5789 ctx->file_data = NULL;
5790 return -ENOMEM;
5791 }
5792
5793 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
5794 struct fixed_file_table *table;
5795 unsigned index;
5796
5797 ret = -EFAULT;
5798 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
5799 break;
5800 /* allow sparse sets */
5801 if (fd == -1) {
5802 ret = 0;
5803 continue;
5804 }
5805
5806 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
5807 index = i & IORING_FILE_TABLE_MASK;
5808 file = fget(fd);
5809
5810 ret = -EBADF;
5811 if (!file)
5812 break;
5813
5814 /*
5815 * Don't allow io_uring instances to be registered. If UNIX
5816 * isn't enabled, then this causes a reference cycle and this
5817 * instance can never get freed. If UNIX is enabled we'll
5818 * handle it just fine, but there's still no point in allowing
5819 * a ring fd as it doesn't support regular read/write anyway.
5820 */
5821 if (file->f_op == &io_uring_fops) {
5822 fput(file);
5823 break;
5824 }
5825 ret = 0;
5826 table->files[index] = file;
5827 }
5828
5829 if (ret) {
5830 for (i = 0; i < ctx->nr_user_files; i++) {
5831 file = io_file_from_index(ctx, i);
5832 if (file)
5833 fput(file);
5834 }
5835 for (i = 0; i < nr_tables; i++)
5836 kfree(ctx->file_data->table[i].files);
5837
5838 kfree(ctx->file_data->table);
5839 kfree(ctx->file_data);
5840 ctx->file_data = NULL;
5841 ctx->nr_user_files = 0;
5842 return ret;
5843 }
5844
5845 ret = io_sqe_files_scm(ctx);
5846 if (ret)
5847 io_sqe_files_unregister(ctx);
5848
5849 return ret;
5850}
5851
Jens Axboec3a31e62019-10-03 13:59:56 -06005852static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
5853 int index)
5854{
5855#if defined(CONFIG_UNIX)
5856 struct sock *sock = ctx->ring_sock->sk;
5857 struct sk_buff_head *head = &sock->sk_receive_queue;
5858 struct sk_buff *skb;
5859
5860 /*
5861 * See if we can merge this file into an existing skb SCM_RIGHTS
5862 * file set. If there's no room, fall back to allocating a new skb
5863 * and filling it in.
5864 */
5865 spin_lock_irq(&head->lock);
5866 skb = skb_peek(head);
5867 if (skb) {
5868 struct scm_fp_list *fpl = UNIXCB(skb).fp;
5869
5870 if (fpl->count < SCM_MAX_FD) {
5871 __skb_unlink(skb, head);
5872 spin_unlock_irq(&head->lock);
5873 fpl->fp[fpl->count] = get_file(file);
5874 unix_inflight(fpl->user, fpl->fp[fpl->count]);
5875 fpl->count++;
5876 spin_lock_irq(&head->lock);
5877 __skb_queue_head(head, skb);
5878 } else {
5879 skb = NULL;
5880 }
5881 }
5882 spin_unlock_irq(&head->lock);
5883
5884 if (skb) {
5885 fput(file);
5886 return 0;
5887 }
5888
5889 return __io_sqe_files_scm(ctx, 1, index);
5890#else
5891 return 0;
5892#endif
5893}
5894
Jens Axboe05f3fb32019-12-09 11:22:50 -07005895static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06005896{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005897 struct fixed_file_data *data;
5898
Jens Axboedd3db2a2020-02-26 10:23:43 -07005899 /*
5900 * Juggle reference to ensure we hit zero, if needed, so we can
5901 * switch back to percpu mode
5902 */
Jens Axboe05f3fb32019-12-09 11:22:50 -07005903 data = container_of(ref, struct fixed_file_data, refs);
Jens Axboedd3db2a2020-02-26 10:23:43 -07005904 percpu_ref_put(&data->refs);
5905 percpu_ref_get(&data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005906}
5907
5908static bool io_queue_file_removal(struct fixed_file_data *data,
5909 struct file *file)
5910{
5911 struct io_file_put *pfile, pfile_stack;
5912 DECLARE_COMPLETION_ONSTACK(done);
5913
5914 /*
5915 * If we fail allocating the struct we need for doing async reomval
5916 * of this file, just punt to sync and wait for it.
5917 */
5918 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
5919 if (!pfile) {
5920 pfile = &pfile_stack;
5921 pfile->done = &done;
5922 }
5923
5924 pfile->file = file;
5925 llist_add(&pfile->llist, &data->put_llist);
5926
5927 if (pfile == &pfile_stack) {
Jens Axboedd3db2a2020-02-26 10:23:43 -07005928 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005929 wait_for_completion(&done);
5930 flush_work(&data->ref_work);
5931 return false;
5932 }
5933
5934 return true;
5935}
5936
5937static int __io_sqe_files_update(struct io_ring_ctx *ctx,
5938 struct io_uring_files_update *up,
5939 unsigned nr_args)
5940{
5941 struct fixed_file_data *data = ctx->file_data;
5942 bool ref_switch = false;
5943 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005944 __s32 __user *fds;
5945 int fd, i, err;
5946 __u32 done;
5947
Jens Axboe05f3fb32019-12-09 11:22:50 -07005948 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06005949 return -EOVERFLOW;
5950 if (done > ctx->nr_user_files)
5951 return -EINVAL;
5952
5953 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005954 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06005955 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005956 struct fixed_file_table *table;
5957 unsigned index;
5958
Jens Axboec3a31e62019-10-03 13:59:56 -06005959 err = 0;
5960 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
5961 err = -EFAULT;
5962 break;
5963 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07005964 i = array_index_nospec(up->offset, ctx->nr_user_files);
5965 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06005966 index = i & IORING_FILE_TABLE_MASK;
5967 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005968 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06005969 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005970 if (io_queue_file_removal(data, file))
5971 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06005972 }
5973 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06005974 file = fget(fd);
5975 if (!file) {
5976 err = -EBADF;
5977 break;
5978 }
5979 /*
5980 * Don't allow io_uring instances to be registered. If
5981 * UNIX isn't enabled, then this causes a reference
5982 * cycle and this instance can never get freed. If UNIX
5983 * is enabled we'll handle it just fine, but there's
5984 * still no point in allowing a ring fd as it doesn't
5985 * support regular read/write anyway.
5986 */
5987 if (file->f_op == &io_uring_fops) {
5988 fput(file);
5989 err = -EBADF;
5990 break;
5991 }
Jens Axboe65e19f52019-10-26 07:20:21 -06005992 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005993 err = io_sqe_file_register(ctx, file, i);
5994 if (err)
5995 break;
5996 }
5997 nr_args--;
5998 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005999 up->offset++;
6000 }
6001
Jens Axboedd3db2a2020-02-26 10:23:43 -07006002 if (ref_switch)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006003 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06006004
6005 return done ? done : err;
6006}
Jens Axboe05f3fb32019-12-09 11:22:50 -07006007static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6008 unsigned nr_args)
6009{
6010 struct io_uring_files_update up;
6011
6012 if (!ctx->file_data)
6013 return -ENXIO;
6014 if (!nr_args)
6015 return -EINVAL;
6016 if (copy_from_user(&up, arg, sizeof(up)))
6017 return -EFAULT;
6018 if (up.resv)
6019 return -EINVAL;
6020
6021 return __io_sqe_files_update(ctx, &up, nr_args);
6022}
Jens Axboec3a31e62019-10-03 13:59:56 -06006023
Jens Axboe7d723062019-11-12 22:31:31 -07006024static void io_put_work(struct io_wq_work *work)
6025{
6026 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6027
6028 io_put_req(req);
6029}
6030
6031static void io_get_work(struct io_wq_work *work)
6032{
6033 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6034
6035 refcount_inc(&req->refs);
6036}
6037
Pavel Begunkov24369c22020-01-28 03:15:48 +03006038static int io_init_wq_offload(struct io_ring_ctx *ctx,
6039 struct io_uring_params *p)
6040{
6041 struct io_wq_data data;
6042 struct fd f;
6043 struct io_ring_ctx *ctx_attach;
6044 unsigned int concurrency;
6045 int ret = 0;
6046
6047 data.user = ctx->user;
6048 data.get_work = io_get_work;
6049 data.put_work = io_put_work;
6050
6051 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6052 /* Do QD, or 4 * CPUS, whatever is smallest */
6053 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6054
6055 ctx->io_wq = io_wq_create(concurrency, &data);
6056 if (IS_ERR(ctx->io_wq)) {
6057 ret = PTR_ERR(ctx->io_wq);
6058 ctx->io_wq = NULL;
6059 }
6060 return ret;
6061 }
6062
6063 f = fdget(p->wq_fd);
6064 if (!f.file)
6065 return -EBADF;
6066
6067 if (f.file->f_op != &io_uring_fops) {
6068 ret = -EINVAL;
6069 goto out_fput;
6070 }
6071
6072 ctx_attach = f.file->private_data;
6073 /* @io_wq is protected by holding the fd */
6074 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6075 ret = -EINVAL;
6076 goto out_fput;
6077 }
6078
6079 ctx->io_wq = ctx_attach->io_wq;
6080out_fput:
6081 fdput(f);
6082 return ret;
6083}
6084
Jens Axboe6c271ce2019-01-10 11:22:30 -07006085static int io_sq_offload_start(struct io_ring_ctx *ctx,
6086 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006087{
6088 int ret;
6089
Jens Axboe6c271ce2019-01-10 11:22:30 -07006090 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006091 mmgrab(current->mm);
6092 ctx->sqo_mm = current->mm;
6093
Jens Axboe6c271ce2019-01-10 11:22:30 -07006094 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006095 ret = -EPERM;
6096 if (!capable(CAP_SYS_ADMIN))
6097 goto err;
6098
Jens Axboe917257d2019-04-13 09:28:55 -06006099 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6100 if (!ctx->sq_thread_idle)
6101 ctx->sq_thread_idle = HZ;
6102
Jens Axboe6c271ce2019-01-10 11:22:30 -07006103 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006104 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006105
Jens Axboe917257d2019-04-13 09:28:55 -06006106 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006107 if (cpu >= nr_cpu_ids)
6108 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006109 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006110 goto err;
6111
Jens Axboe6c271ce2019-01-10 11:22:30 -07006112 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6113 ctx, cpu,
6114 "io_uring-sq");
6115 } else {
6116 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6117 "io_uring-sq");
6118 }
6119 if (IS_ERR(ctx->sqo_thread)) {
6120 ret = PTR_ERR(ctx->sqo_thread);
6121 ctx->sqo_thread = NULL;
6122 goto err;
6123 }
6124 wake_up_process(ctx->sqo_thread);
6125 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6126 /* Can't have SQ_AFF without SQPOLL */
6127 ret = -EINVAL;
6128 goto err;
6129 }
6130
Pavel Begunkov24369c22020-01-28 03:15:48 +03006131 ret = io_init_wq_offload(ctx, p);
6132 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006133 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006134
6135 return 0;
6136err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006137 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006138 mmdrop(ctx->sqo_mm);
6139 ctx->sqo_mm = NULL;
6140 return ret;
6141}
6142
6143static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6144{
6145 atomic_long_sub(nr_pages, &user->locked_vm);
6146}
6147
6148static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6149{
6150 unsigned long page_limit, cur_pages, new_pages;
6151
6152 /* Don't allow more pages than we can safely lock */
6153 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6154
6155 do {
6156 cur_pages = atomic_long_read(&user->locked_vm);
6157 new_pages = cur_pages + nr_pages;
6158 if (new_pages > page_limit)
6159 return -ENOMEM;
6160 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6161 new_pages) != cur_pages);
6162
6163 return 0;
6164}
6165
6166static void io_mem_free(void *ptr)
6167{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006168 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006169
Mark Rutland52e04ef2019-04-30 17:30:21 +01006170 if (!ptr)
6171 return;
6172
6173 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006174 if (put_page_testzero(page))
6175 free_compound_page(page);
6176}
6177
6178static void *io_mem_alloc(size_t size)
6179{
6180 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6181 __GFP_NORETRY;
6182
6183 return (void *) __get_free_pages(gfp_flags, get_order(size));
6184}
6185
Hristo Venev75b28af2019-08-26 17:23:46 +00006186static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6187 size_t *sq_offset)
6188{
6189 struct io_rings *rings;
6190 size_t off, sq_array_size;
6191
6192 off = struct_size(rings, cqes, cq_entries);
6193 if (off == SIZE_MAX)
6194 return SIZE_MAX;
6195
6196#ifdef CONFIG_SMP
6197 off = ALIGN(off, SMP_CACHE_BYTES);
6198 if (off == 0)
6199 return SIZE_MAX;
6200#endif
6201
6202 sq_array_size = array_size(sizeof(u32), sq_entries);
6203 if (sq_array_size == SIZE_MAX)
6204 return SIZE_MAX;
6205
6206 if (check_add_overflow(off, sq_array_size, &off))
6207 return SIZE_MAX;
6208
6209 if (sq_offset)
6210 *sq_offset = off;
6211
6212 return off;
6213}
6214
Jens Axboe2b188cc2019-01-07 10:46:33 -07006215static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6216{
Hristo Venev75b28af2019-08-26 17:23:46 +00006217 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006218
Hristo Venev75b28af2019-08-26 17:23:46 +00006219 pages = (size_t)1 << get_order(
6220 rings_size(sq_entries, cq_entries, NULL));
6221 pages += (size_t)1 << get_order(
6222 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006223
Hristo Venev75b28af2019-08-26 17:23:46 +00006224 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006225}
6226
Jens Axboeedafcce2019-01-09 09:16:05 -07006227static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6228{
6229 int i, j;
6230
6231 if (!ctx->user_bufs)
6232 return -ENXIO;
6233
6234 for (i = 0; i < ctx->nr_user_bufs; i++) {
6235 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6236
6237 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006238 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006239
6240 if (ctx->account_mem)
6241 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006242 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006243 imu->nr_bvecs = 0;
6244 }
6245
6246 kfree(ctx->user_bufs);
6247 ctx->user_bufs = NULL;
6248 ctx->nr_user_bufs = 0;
6249 return 0;
6250}
6251
6252static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6253 void __user *arg, unsigned index)
6254{
6255 struct iovec __user *src;
6256
6257#ifdef CONFIG_COMPAT
6258 if (ctx->compat) {
6259 struct compat_iovec __user *ciovs;
6260 struct compat_iovec ciov;
6261
6262 ciovs = (struct compat_iovec __user *) arg;
6263 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6264 return -EFAULT;
6265
Jens Axboed55e5f52019-12-11 16:12:15 -07006266 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006267 dst->iov_len = ciov.iov_len;
6268 return 0;
6269 }
6270#endif
6271 src = (struct iovec __user *) arg;
6272 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6273 return -EFAULT;
6274 return 0;
6275}
6276
6277static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6278 unsigned nr_args)
6279{
6280 struct vm_area_struct **vmas = NULL;
6281 struct page **pages = NULL;
6282 int i, j, got_pages = 0;
6283 int ret = -EINVAL;
6284
6285 if (ctx->user_bufs)
6286 return -EBUSY;
6287 if (!nr_args || nr_args > UIO_MAXIOV)
6288 return -EINVAL;
6289
6290 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
6291 GFP_KERNEL);
6292 if (!ctx->user_bufs)
6293 return -ENOMEM;
6294
6295 for (i = 0; i < nr_args; i++) {
6296 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6297 unsigned long off, start, end, ubuf;
6298 int pret, nr_pages;
6299 struct iovec iov;
6300 size_t size;
6301
6302 ret = io_copy_iov(ctx, &iov, arg, i);
6303 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03006304 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07006305
6306 /*
6307 * Don't impose further limits on the size and buffer
6308 * constraints here, we'll -EINVAL later when IO is
6309 * submitted if they are wrong.
6310 */
6311 ret = -EFAULT;
6312 if (!iov.iov_base || !iov.iov_len)
6313 goto err;
6314
6315 /* arbitrary limit, but we need something */
6316 if (iov.iov_len > SZ_1G)
6317 goto err;
6318
6319 ubuf = (unsigned long) iov.iov_base;
6320 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
6321 start = ubuf >> PAGE_SHIFT;
6322 nr_pages = end - start;
6323
6324 if (ctx->account_mem) {
6325 ret = io_account_mem(ctx->user, nr_pages);
6326 if (ret)
6327 goto err;
6328 }
6329
6330 ret = 0;
6331 if (!pages || nr_pages > got_pages) {
6332 kfree(vmas);
6333 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006334 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07006335 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006336 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07006337 sizeof(struct vm_area_struct *),
6338 GFP_KERNEL);
6339 if (!pages || !vmas) {
6340 ret = -ENOMEM;
6341 if (ctx->account_mem)
6342 io_unaccount_mem(ctx->user, nr_pages);
6343 goto err;
6344 }
6345 got_pages = nr_pages;
6346 }
6347
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006348 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07006349 GFP_KERNEL);
6350 ret = -ENOMEM;
6351 if (!imu->bvec) {
6352 if (ctx->account_mem)
6353 io_unaccount_mem(ctx->user, nr_pages);
6354 goto err;
6355 }
6356
6357 ret = 0;
6358 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08006359 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07006360 FOLL_WRITE | FOLL_LONGTERM,
6361 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006362 if (pret == nr_pages) {
6363 /* don't support file backed memory */
6364 for (j = 0; j < nr_pages; j++) {
6365 struct vm_area_struct *vma = vmas[j];
6366
6367 if (vma->vm_file &&
6368 !is_file_hugepages(vma->vm_file)) {
6369 ret = -EOPNOTSUPP;
6370 break;
6371 }
6372 }
6373 } else {
6374 ret = pret < 0 ? pret : -EFAULT;
6375 }
6376 up_read(&current->mm->mmap_sem);
6377 if (ret) {
6378 /*
6379 * if we did partial map, or found file backed vmas,
6380 * release any pages we did get
6381 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07006382 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006383 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006384 if (ctx->account_mem)
6385 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006386 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006387 goto err;
6388 }
6389
6390 off = ubuf & ~PAGE_MASK;
6391 size = iov.iov_len;
6392 for (j = 0; j < nr_pages; j++) {
6393 size_t vec_len;
6394
6395 vec_len = min_t(size_t, size, PAGE_SIZE - off);
6396 imu->bvec[j].bv_page = pages[j];
6397 imu->bvec[j].bv_len = vec_len;
6398 imu->bvec[j].bv_offset = off;
6399 off = 0;
6400 size -= vec_len;
6401 }
6402 /* store original address for later verification */
6403 imu->ubuf = ubuf;
6404 imu->len = iov.iov_len;
6405 imu->nr_bvecs = nr_pages;
6406
6407 ctx->nr_user_bufs++;
6408 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006409 kvfree(pages);
6410 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006411 return 0;
6412err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006413 kvfree(pages);
6414 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006415 io_sqe_buffer_unregister(ctx);
6416 return ret;
6417}
6418
Jens Axboe9b402842019-04-11 11:45:41 -06006419static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
6420{
6421 __s32 __user *fds = arg;
6422 int fd;
6423
6424 if (ctx->cq_ev_fd)
6425 return -EBUSY;
6426
6427 if (copy_from_user(&fd, fds, sizeof(*fds)))
6428 return -EFAULT;
6429
6430 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
6431 if (IS_ERR(ctx->cq_ev_fd)) {
6432 int ret = PTR_ERR(ctx->cq_ev_fd);
6433 ctx->cq_ev_fd = NULL;
6434 return ret;
6435 }
6436
6437 return 0;
6438}
6439
6440static int io_eventfd_unregister(struct io_ring_ctx *ctx)
6441{
6442 if (ctx->cq_ev_fd) {
6443 eventfd_ctx_put(ctx->cq_ev_fd);
6444 ctx->cq_ev_fd = NULL;
6445 return 0;
6446 }
6447
6448 return -ENXIO;
6449}
6450
Jens Axboe2b188cc2019-01-07 10:46:33 -07006451static void io_ring_ctx_free(struct io_ring_ctx *ctx)
6452{
Jens Axboe6b063142019-01-10 22:13:58 -07006453 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006454 if (ctx->sqo_mm)
6455 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07006456
6457 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07006458 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07006459 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06006460 io_eventfd_unregister(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07006461 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07006462
Jens Axboe2b188cc2019-01-07 10:46:33 -07006463#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07006464 if (ctx->ring_sock) {
6465 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006466 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07006467 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006468#endif
6469
Hristo Venev75b28af2019-08-26 17:23:46 +00006470 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006471 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006472
6473 percpu_ref_exit(&ctx->refs);
6474 if (ctx->account_mem)
6475 io_unaccount_mem(ctx->user,
6476 ring_pages(ctx->sq_entries, ctx->cq_entries));
6477 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07006478 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07006479 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07006480 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07006481 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006482 kfree(ctx);
6483}
6484
6485static __poll_t io_uring_poll(struct file *file, poll_table *wait)
6486{
6487 struct io_ring_ctx *ctx = file->private_data;
6488 __poll_t mask = 0;
6489
6490 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02006491 /*
6492 * synchronizes with barrier from wq_has_sleeper call in
6493 * io_commit_cqring
6494 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006495 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00006496 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
6497 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006498 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01006499 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006500 mask |= EPOLLIN | EPOLLRDNORM;
6501
6502 return mask;
6503}
6504
6505static int io_uring_fasync(int fd, struct file *file, int on)
6506{
6507 struct io_ring_ctx *ctx = file->private_data;
6508
6509 return fasync_helper(fd, file, on, &ctx->cq_fasync);
6510}
6511
Jens Axboe071698e2020-01-28 10:04:42 -07006512static int io_remove_personalities(int id, void *p, void *data)
6513{
6514 struct io_ring_ctx *ctx = data;
6515 const struct cred *cred;
6516
6517 cred = idr_remove(&ctx->personality_idr, id);
6518 if (cred)
6519 put_cred(cred);
6520 return 0;
6521}
6522
Jens Axboe2b188cc2019-01-07 10:46:33 -07006523static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
6524{
6525 mutex_lock(&ctx->uring_lock);
6526 percpu_ref_kill(&ctx->refs);
6527 mutex_unlock(&ctx->uring_lock);
6528
Jens Axboedf069d82020-02-04 16:48:34 -07006529 /*
6530 * Wait for sq thread to idle, if we have one. It won't spin on new
6531 * work after we've killed the ctx ref above. This is important to do
6532 * before we cancel existing commands, as the thread could otherwise
6533 * be queueing new work post that. If that's work we need to cancel,
6534 * it could cause shutdown to hang.
6535 */
6536 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
6537 cpu_relax();
6538
Jens Axboe5262f562019-09-17 12:26:57 -06006539 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07006540 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06006541
6542 if (ctx->io_wq)
6543 io_wq_cancel_all(ctx->io_wq);
6544
Jens Axboedef596e2019-01-09 08:59:42 -07006545 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07006546 /* if we failed setting up the ctx, we might not have any rings */
6547 if (ctx->rings)
6548 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07006549 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07006550 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006551 io_ring_ctx_free(ctx);
6552}
6553
6554static int io_uring_release(struct inode *inode, struct file *file)
6555{
6556 struct io_ring_ctx *ctx = file->private_data;
6557
6558 file->private_data = NULL;
6559 io_ring_ctx_wait_and_kill(ctx);
6560 return 0;
6561}
6562
Jens Axboefcb323c2019-10-24 12:39:47 -06006563static void io_uring_cancel_files(struct io_ring_ctx *ctx,
6564 struct files_struct *files)
6565{
6566 struct io_kiocb *req;
6567 DEFINE_WAIT(wait);
6568
6569 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07006570 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06006571
6572 spin_lock_irq(&ctx->inflight_lock);
6573 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07006574 if (req->work.files != files)
6575 continue;
6576 /* req is being completed, ignore */
6577 if (!refcount_inc_not_zero(&req->refs))
6578 continue;
6579 cancel_req = req;
6580 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06006581 }
Jens Axboe768134d2019-11-10 20:30:53 -07006582 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006583 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07006584 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06006585 spin_unlock_irq(&ctx->inflight_lock);
6586
Jens Axboe768134d2019-11-10 20:30:53 -07006587 /* We need to keep going until we don't find a matching req */
6588 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006589 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08006590
Jens Axboe2ca10252020-02-13 17:17:35 -07006591 if (cancel_req->flags & REQ_F_OVERFLOW) {
6592 spin_lock_irq(&ctx->completion_lock);
6593 list_del(&cancel_req->list);
6594 cancel_req->flags &= ~REQ_F_OVERFLOW;
6595 if (list_empty(&ctx->cq_overflow_list)) {
6596 clear_bit(0, &ctx->sq_check_overflow);
6597 clear_bit(0, &ctx->cq_check_overflow);
6598 }
6599 spin_unlock_irq(&ctx->completion_lock);
6600
6601 WRITE_ONCE(ctx->rings->cq_overflow,
6602 atomic_inc_return(&ctx->cached_cq_overflow));
6603
6604 /*
6605 * Put inflight ref and overflow ref. If that's
6606 * all we had, then we're done with this request.
6607 */
6608 if (refcount_sub_and_test(2, &cancel_req->refs)) {
6609 io_put_req(cancel_req);
6610 continue;
6611 }
6612 }
6613
Bob Liu2f6d9b92019-11-13 18:06:24 +08006614 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
6615 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06006616 schedule();
6617 }
Jens Axboe768134d2019-11-10 20:30:53 -07006618 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06006619}
6620
6621static int io_uring_flush(struct file *file, void *data)
6622{
6623 struct io_ring_ctx *ctx = file->private_data;
6624
6625 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07006626
6627 /*
6628 * If the task is going away, cancel work it may have pending
6629 */
6630 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
6631 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
6632
Jens Axboefcb323c2019-10-24 12:39:47 -06006633 return 0;
6634}
6635
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006636static void *io_uring_validate_mmap_request(struct file *file,
6637 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006638{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006639 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006640 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006641 struct page *page;
6642 void *ptr;
6643
6644 switch (offset) {
6645 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00006646 case IORING_OFF_CQ_RING:
6647 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006648 break;
6649 case IORING_OFF_SQES:
6650 ptr = ctx->sq_sqes;
6651 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006652 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006653 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006654 }
6655
6656 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07006657 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006658 return ERR_PTR(-EINVAL);
6659
6660 return ptr;
6661}
6662
6663#ifdef CONFIG_MMU
6664
6665static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6666{
6667 size_t sz = vma->vm_end - vma->vm_start;
6668 unsigned long pfn;
6669 void *ptr;
6670
6671 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
6672 if (IS_ERR(ptr))
6673 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006674
6675 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
6676 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
6677}
6678
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006679#else /* !CONFIG_MMU */
6680
6681static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6682{
6683 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
6684}
6685
6686static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
6687{
6688 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
6689}
6690
6691static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
6692 unsigned long addr, unsigned long len,
6693 unsigned long pgoff, unsigned long flags)
6694{
6695 void *ptr;
6696
6697 ptr = io_uring_validate_mmap_request(file, pgoff, len);
6698 if (IS_ERR(ptr))
6699 return PTR_ERR(ptr);
6700
6701 return (unsigned long) ptr;
6702}
6703
6704#endif /* !CONFIG_MMU */
6705
Jens Axboe2b188cc2019-01-07 10:46:33 -07006706SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
6707 u32, min_complete, u32, flags, const sigset_t __user *, sig,
6708 size_t, sigsz)
6709{
6710 struct io_ring_ctx *ctx;
6711 long ret = -EBADF;
6712 int submitted = 0;
6713 struct fd f;
6714
Jens Axboe6c271ce2019-01-10 11:22:30 -07006715 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006716 return -EINVAL;
6717
6718 f = fdget(fd);
6719 if (!f.file)
6720 return -EBADF;
6721
6722 ret = -EOPNOTSUPP;
6723 if (f.file->f_op != &io_uring_fops)
6724 goto out_fput;
6725
6726 ret = -ENXIO;
6727 ctx = f.file->private_data;
6728 if (!percpu_ref_tryget(&ctx->refs))
6729 goto out_fput;
6730
Jens Axboe6c271ce2019-01-10 11:22:30 -07006731 /*
6732 * For SQ polling, the thread will do all submissions and completions.
6733 * Just return the requested submit count, and wake the thread if
6734 * we were asked to.
6735 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006736 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006737 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07006738 if (!list_empty_careful(&ctx->cq_overflow_list))
6739 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006740 if (flags & IORING_ENTER_SQ_WAKEUP)
6741 wake_up(&ctx->sqo_wait);
6742 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006743 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006744 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006745
6746 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006747 /* already have mm, so io_submit_sqes() won't try to grab it */
6748 cur_mm = ctx->sqo_mm;
6749 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
6750 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006751 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006752
6753 if (submitted != to_submit)
6754 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006755 }
6756 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07006757 unsigned nr_events = 0;
6758
Jens Axboe2b188cc2019-01-07 10:46:33 -07006759 min_complete = min(min_complete, ctx->cq_entries);
6760
Jens Axboedef596e2019-01-09 08:59:42 -07006761 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07006762 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07006763 } else {
6764 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
6765 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006766 }
6767
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006768out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03006769 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006770out_fput:
6771 fdput(f);
6772 return submitted ? submitted : ret;
6773}
6774
Tobias Klauserbebdb652020-02-26 18:38:32 +01006775#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07006776static int io_uring_show_cred(int id, void *p, void *data)
6777{
6778 const struct cred *cred = p;
6779 struct seq_file *m = data;
6780 struct user_namespace *uns = seq_user_ns(m);
6781 struct group_info *gi;
6782 kernel_cap_t cap;
6783 unsigned __capi;
6784 int g;
6785
6786 seq_printf(m, "%5d\n", id);
6787 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
6788 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
6789 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
6790 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
6791 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
6792 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
6793 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
6794 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
6795 seq_puts(m, "\n\tGroups:\t");
6796 gi = cred->group_info;
6797 for (g = 0; g < gi->ngroups; g++) {
6798 seq_put_decimal_ull(m, g ? " " : "",
6799 from_kgid_munged(uns, gi->gid[g]));
6800 }
6801 seq_puts(m, "\n\tCapEff:\t");
6802 cap = cred->cap_effective;
6803 CAP_FOR_EACH_U32(__capi)
6804 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
6805 seq_putc(m, '\n');
6806 return 0;
6807}
6808
6809static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
6810{
6811 int i;
6812
6813 mutex_lock(&ctx->uring_lock);
6814 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
6815 for (i = 0; i < ctx->nr_user_files; i++) {
6816 struct fixed_file_table *table;
6817 struct file *f;
6818
6819 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6820 f = table->files[i & IORING_FILE_TABLE_MASK];
6821 if (f)
6822 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
6823 else
6824 seq_printf(m, "%5u: <none>\n", i);
6825 }
6826 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
6827 for (i = 0; i < ctx->nr_user_bufs; i++) {
6828 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
6829
6830 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
6831 (unsigned int) buf->len);
6832 }
6833 if (!idr_is_empty(&ctx->personality_idr)) {
6834 seq_printf(m, "Personalities:\n");
6835 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
6836 }
6837 mutex_unlock(&ctx->uring_lock);
6838}
6839
6840static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
6841{
6842 struct io_ring_ctx *ctx = f->private_data;
6843
6844 if (percpu_ref_tryget(&ctx->refs)) {
6845 __io_uring_show_fdinfo(ctx, m);
6846 percpu_ref_put(&ctx->refs);
6847 }
6848}
Tobias Klauserbebdb652020-02-26 18:38:32 +01006849#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07006850
Jens Axboe2b188cc2019-01-07 10:46:33 -07006851static const struct file_operations io_uring_fops = {
6852 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06006853 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07006854 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006855#ifndef CONFIG_MMU
6856 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
6857 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
6858#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006859 .poll = io_uring_poll,
6860 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01006861#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07006862 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01006863#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006864};
6865
6866static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
6867 struct io_uring_params *p)
6868{
Hristo Venev75b28af2019-08-26 17:23:46 +00006869 struct io_rings *rings;
6870 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006871
Hristo Venev75b28af2019-08-26 17:23:46 +00006872 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
6873 if (size == SIZE_MAX)
6874 return -EOVERFLOW;
6875
6876 rings = io_mem_alloc(size);
6877 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006878 return -ENOMEM;
6879
Hristo Venev75b28af2019-08-26 17:23:46 +00006880 ctx->rings = rings;
6881 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
6882 rings->sq_ring_mask = p->sq_entries - 1;
6883 rings->cq_ring_mask = p->cq_entries - 1;
6884 rings->sq_ring_entries = p->sq_entries;
6885 rings->cq_ring_entries = p->cq_entries;
6886 ctx->sq_mask = rings->sq_ring_mask;
6887 ctx->cq_mask = rings->cq_ring_mask;
6888 ctx->sq_entries = rings->sq_ring_entries;
6889 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006890
6891 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07006892 if (size == SIZE_MAX) {
6893 io_mem_free(ctx->rings);
6894 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006895 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07006896 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006897
6898 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07006899 if (!ctx->sq_sqes) {
6900 io_mem_free(ctx->rings);
6901 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006902 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07006903 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006904
Jens Axboe2b188cc2019-01-07 10:46:33 -07006905 return 0;
6906}
6907
6908/*
6909 * Allocate an anonymous fd, this is what constitutes the application
6910 * visible backing of an io_uring instance. The application mmaps this
6911 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
6912 * we have to tie this fd to a socket for file garbage collection purposes.
6913 */
6914static int io_uring_get_fd(struct io_ring_ctx *ctx)
6915{
6916 struct file *file;
6917 int ret;
6918
6919#if defined(CONFIG_UNIX)
6920 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
6921 &ctx->ring_sock);
6922 if (ret)
6923 return ret;
6924#endif
6925
6926 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
6927 if (ret < 0)
6928 goto err;
6929
6930 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
6931 O_RDWR | O_CLOEXEC);
6932 if (IS_ERR(file)) {
6933 put_unused_fd(ret);
6934 ret = PTR_ERR(file);
6935 goto err;
6936 }
6937
6938#if defined(CONFIG_UNIX)
6939 ctx->ring_sock->file = file;
6940#endif
6941 fd_install(ret, file);
6942 return ret;
6943err:
6944#if defined(CONFIG_UNIX)
6945 sock_release(ctx->ring_sock);
6946 ctx->ring_sock = NULL;
6947#endif
6948 return ret;
6949}
6950
6951static int io_uring_create(unsigned entries, struct io_uring_params *p)
6952{
6953 struct user_struct *user = NULL;
6954 struct io_ring_ctx *ctx;
6955 bool account_mem;
6956 int ret;
6957
Jens Axboe8110c1a2019-12-28 15:39:54 -07006958 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006959 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006960 if (entries > IORING_MAX_ENTRIES) {
6961 if (!(p->flags & IORING_SETUP_CLAMP))
6962 return -EINVAL;
6963 entries = IORING_MAX_ENTRIES;
6964 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006965
6966 /*
6967 * Use twice as many entries for the CQ ring. It's possible for the
6968 * application to drive a higher depth than the size of the SQ ring,
6969 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06006970 * some flexibility in overcommitting a bit. If the application has
6971 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
6972 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07006973 */
6974 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06006975 if (p->flags & IORING_SETUP_CQSIZE) {
6976 /*
6977 * If IORING_SETUP_CQSIZE is set, we do the same roundup
6978 * to a power-of-two, if it isn't already. We do NOT impose
6979 * any cq vs sq ring sizing.
6980 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07006981 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06006982 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006983 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
6984 if (!(p->flags & IORING_SETUP_CLAMP))
6985 return -EINVAL;
6986 p->cq_entries = IORING_MAX_CQ_ENTRIES;
6987 }
Jens Axboe33a107f2019-10-04 12:10:03 -06006988 p->cq_entries = roundup_pow_of_two(p->cq_entries);
6989 } else {
6990 p->cq_entries = 2 * p->sq_entries;
6991 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006992
6993 user = get_uid(current_user());
6994 account_mem = !capable(CAP_IPC_LOCK);
6995
6996 if (account_mem) {
6997 ret = io_account_mem(user,
6998 ring_pages(p->sq_entries, p->cq_entries));
6999 if (ret) {
7000 free_uid(user);
7001 return ret;
7002 }
7003 }
7004
7005 ctx = io_ring_ctx_alloc(p);
7006 if (!ctx) {
7007 if (account_mem)
7008 io_unaccount_mem(user, ring_pages(p->sq_entries,
7009 p->cq_entries));
7010 free_uid(user);
7011 return -ENOMEM;
7012 }
7013 ctx->compat = in_compat_syscall();
7014 ctx->account_mem = account_mem;
7015 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007016 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007017
7018 ret = io_allocate_scq_urings(ctx, p);
7019 if (ret)
7020 goto err;
7021
Jens Axboe6c271ce2019-01-10 11:22:30 -07007022 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007023 if (ret)
7024 goto err;
7025
Jens Axboe2b188cc2019-01-07 10:46:33 -07007026 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007027 p->sq_off.head = offsetof(struct io_rings, sq.head);
7028 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7029 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7030 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7031 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7032 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7033 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007034
7035 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007036 p->cq_off.head = offsetof(struct io_rings, cq.head);
7037 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7038 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7039 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7040 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7041 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007042
Jens Axboe044c1ab2019-10-28 09:15:33 -06007043 /*
7044 * Install ring fd as the very last thing, so we don't risk someone
7045 * having closed it before we finish setup
7046 */
7047 ret = io_uring_get_fd(ctx);
7048 if (ret < 0)
7049 goto err;
7050
Jens Axboeda8c9692019-12-02 18:51:26 -07007051 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007052 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
7053 IORING_FEAT_CUR_PERSONALITY;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007054 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007055 return ret;
7056err:
7057 io_ring_ctx_wait_and_kill(ctx);
7058 return ret;
7059}
7060
7061/*
7062 * Sets up an aio uring context, and returns the fd. Applications asks for a
7063 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7064 * params structure passed in.
7065 */
7066static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7067{
7068 struct io_uring_params p;
7069 long ret;
7070 int i;
7071
7072 if (copy_from_user(&p, params, sizeof(p)))
7073 return -EFAULT;
7074 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7075 if (p.resv[i])
7076 return -EINVAL;
7077 }
7078
Jens Axboe6c271ce2019-01-10 11:22:30 -07007079 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007080 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007081 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007082 return -EINVAL;
7083
7084 ret = io_uring_create(entries, &p);
7085 if (ret < 0)
7086 return ret;
7087
7088 if (copy_to_user(params, &p, sizeof(p)))
7089 return -EFAULT;
7090
7091 return ret;
7092}
7093
7094SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7095 struct io_uring_params __user *, params)
7096{
7097 return io_uring_setup(entries, params);
7098}
7099
Jens Axboe66f4af92020-01-16 15:36:52 -07007100static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7101{
7102 struct io_uring_probe *p;
7103 size_t size;
7104 int i, ret;
7105
7106 size = struct_size(p, ops, nr_args);
7107 if (size == SIZE_MAX)
7108 return -EOVERFLOW;
7109 p = kzalloc(size, GFP_KERNEL);
7110 if (!p)
7111 return -ENOMEM;
7112
7113 ret = -EFAULT;
7114 if (copy_from_user(p, arg, size))
7115 goto out;
7116 ret = -EINVAL;
7117 if (memchr_inv(p, 0, size))
7118 goto out;
7119
7120 p->last_op = IORING_OP_LAST - 1;
7121 if (nr_args > IORING_OP_LAST)
7122 nr_args = IORING_OP_LAST;
7123
7124 for (i = 0; i < nr_args; i++) {
7125 p->ops[i].op = i;
7126 if (!io_op_defs[i].not_supported)
7127 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7128 }
7129 p->ops_len = i;
7130
7131 ret = 0;
7132 if (copy_to_user(arg, p, size))
7133 ret = -EFAULT;
7134out:
7135 kfree(p);
7136 return ret;
7137}
7138
Jens Axboe071698e2020-01-28 10:04:42 -07007139static int io_register_personality(struct io_ring_ctx *ctx)
7140{
7141 const struct cred *creds = get_current_cred();
7142 int id;
7143
7144 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7145 USHRT_MAX, GFP_KERNEL);
7146 if (id < 0)
7147 put_cred(creds);
7148 return id;
7149}
7150
7151static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7152{
7153 const struct cred *old_creds;
7154
7155 old_creds = idr_remove(&ctx->personality_idr, id);
7156 if (old_creds) {
7157 put_cred(old_creds);
7158 return 0;
7159 }
7160
7161 return -EINVAL;
7162}
7163
7164static bool io_register_op_must_quiesce(int op)
7165{
7166 switch (op) {
7167 case IORING_UNREGISTER_FILES:
7168 case IORING_REGISTER_FILES_UPDATE:
7169 case IORING_REGISTER_PROBE:
7170 case IORING_REGISTER_PERSONALITY:
7171 case IORING_UNREGISTER_PERSONALITY:
7172 return false;
7173 default:
7174 return true;
7175 }
7176}
7177
Jens Axboeedafcce2019-01-09 09:16:05 -07007178static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7179 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007180 __releases(ctx->uring_lock)
7181 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007182{
7183 int ret;
7184
Jens Axboe35fa71a2019-04-22 10:23:23 -06007185 /*
7186 * We're inside the ring mutex, if the ref is already dying, then
7187 * someone else killed the ctx or is already going through
7188 * io_uring_register().
7189 */
7190 if (percpu_ref_is_dying(&ctx->refs))
7191 return -ENXIO;
7192
Jens Axboe071698e2020-01-28 10:04:42 -07007193 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007194 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007195
Jens Axboe05f3fb32019-12-09 11:22:50 -07007196 /*
7197 * Drop uring mutex before waiting for references to exit. If
7198 * another thread is currently inside io_uring_enter() it might
7199 * need to grab the uring_lock to make progress. If we hold it
7200 * here across the drain wait, then we can deadlock. It's safe
7201 * to drop the mutex here, since no new references will come in
7202 * after we've killed the percpu ref.
7203 */
7204 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007205 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007206 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007207 if (ret) {
7208 percpu_ref_resurrect(&ctx->refs);
7209 ret = -EINTR;
7210 goto out;
7211 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007212 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007213
7214 switch (opcode) {
7215 case IORING_REGISTER_BUFFERS:
7216 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7217 break;
7218 case IORING_UNREGISTER_BUFFERS:
7219 ret = -EINVAL;
7220 if (arg || nr_args)
7221 break;
7222 ret = io_sqe_buffer_unregister(ctx);
7223 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007224 case IORING_REGISTER_FILES:
7225 ret = io_sqe_files_register(ctx, arg, nr_args);
7226 break;
7227 case IORING_UNREGISTER_FILES:
7228 ret = -EINVAL;
7229 if (arg || nr_args)
7230 break;
7231 ret = io_sqe_files_unregister(ctx);
7232 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06007233 case IORING_REGISTER_FILES_UPDATE:
7234 ret = io_sqe_files_update(ctx, arg, nr_args);
7235 break;
Jens Axboe9b402842019-04-11 11:45:41 -06007236 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07007237 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06007238 ret = -EINVAL;
7239 if (nr_args != 1)
7240 break;
7241 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07007242 if (ret)
7243 break;
7244 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
7245 ctx->eventfd_async = 1;
7246 else
7247 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06007248 break;
7249 case IORING_UNREGISTER_EVENTFD:
7250 ret = -EINVAL;
7251 if (arg || nr_args)
7252 break;
7253 ret = io_eventfd_unregister(ctx);
7254 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07007255 case IORING_REGISTER_PROBE:
7256 ret = -EINVAL;
7257 if (!arg || nr_args > 256)
7258 break;
7259 ret = io_probe(ctx, arg, nr_args);
7260 break;
Jens Axboe071698e2020-01-28 10:04:42 -07007261 case IORING_REGISTER_PERSONALITY:
7262 ret = -EINVAL;
7263 if (arg || nr_args)
7264 break;
7265 ret = io_register_personality(ctx);
7266 break;
7267 case IORING_UNREGISTER_PERSONALITY:
7268 ret = -EINVAL;
7269 if (arg)
7270 break;
7271 ret = io_unregister_personality(ctx, nr_args);
7272 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07007273 default:
7274 ret = -EINVAL;
7275 break;
7276 }
7277
Jens Axboe071698e2020-01-28 10:04:42 -07007278 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007279 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07007280 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07007281out:
7282 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007283 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007284 return ret;
7285}
7286
7287SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
7288 void __user *, arg, unsigned int, nr_args)
7289{
7290 struct io_ring_ctx *ctx;
7291 long ret = -EBADF;
7292 struct fd f;
7293
7294 f = fdget(fd);
7295 if (!f.file)
7296 return -EBADF;
7297
7298 ret = -EOPNOTSUPP;
7299 if (f.file->f_op != &io_uring_fops)
7300 goto out_fput;
7301
7302 ctx = f.file->private_data;
7303
7304 mutex_lock(&ctx->uring_lock);
7305 ret = __io_uring_register(ctx, opcode, arg, nr_args);
7306 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007307 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
7308 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007309out_fput:
7310 fdput(f);
7311 return ret;
7312}
7313
Jens Axboe2b188cc2019-01-07 10:46:33 -07007314static int __init io_uring_init(void)
7315{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007316#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
7317 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
7318 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
7319} while (0)
7320
7321#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
7322 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
7323 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
7324 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
7325 BUILD_BUG_SQE_ELEM(1, __u8, flags);
7326 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
7327 BUILD_BUG_SQE_ELEM(4, __s32, fd);
7328 BUILD_BUG_SQE_ELEM(8, __u64, off);
7329 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
7330 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007331 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007332 BUILD_BUG_SQE_ELEM(24, __u32, len);
7333 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
7334 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
7335 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
7336 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
7337 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
7338 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
7339 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
7340 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
7341 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
7342 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
7343 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
7344 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
7345 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007346 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007347 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
7348 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
7349 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007350 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007351
Jens Axboed3656342019-12-18 09:50:26 -07007352 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007353 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
7354 return 0;
7355};
7356__initcall(io_uring_init);