blob: a16b5632ce6fa2f02ee34884ccb63475b51d88ec [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 Axboeb41e9852020-02-17 09:52:41 -070080#include <linux/task_work.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070081
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020082#define CREATE_TRACE_POINTS
83#include <trace/events/io_uring.h>
84
Jens Axboe2b188cc2019-01-07 10:46:33 -070085#include <uapi/linux/io_uring.h>
86
87#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060088#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070089
Daniel Xu5277dea2019-09-14 14:23:45 -070090#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060091#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060092
93/*
94 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
95 */
96#define IORING_FILE_TABLE_SHIFT 9
97#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
98#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
99#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700100
101struct io_uring {
102 u32 head ____cacheline_aligned_in_smp;
103 u32 tail ____cacheline_aligned_in_smp;
104};
105
Stefan Bühler1e84b972019-04-24 23:54:16 +0200106/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000107 * This data is shared with the application through the mmap at offsets
108 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200109 *
110 * The offsets to the member fields are published through struct
111 * io_sqring_offsets when calling io_uring_setup.
112 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000113struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200114 /*
115 * Head and tail offsets into the ring; the offsets need to be
116 * masked to get valid indices.
117 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000118 * The kernel controls head of the sq ring and the tail of the cq ring,
119 * and the application controls tail of the sq ring and the head of the
120 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200121 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000122 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200123 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000124 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200125 * ring_entries - 1)
126 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000127 u32 sq_ring_mask, cq_ring_mask;
128 /* Ring sizes (constant, power of 2) */
129 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200130 /*
131 * Number of invalid entries dropped by the kernel due to
132 * invalid index stored in array
133 *
134 * Written by the kernel, shouldn't be modified by the
135 * application (i.e. get number of "new events" by comparing to
136 * cached value).
137 *
138 * After a new SQ head value was read by the application this
139 * counter includes all submissions that were dropped reaching
140 * the new SQ head (and possibly more).
141 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000142 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200143 /*
144 * Runtime flags
145 *
146 * Written by the kernel, shouldn't be modified by the
147 * application.
148 *
149 * The application needs a full memory barrier before checking
150 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
151 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000152 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200153 /*
154 * Number of completion events lost because the queue was full;
155 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800156 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200157 * the completion queue.
158 *
159 * Written by the kernel, shouldn't be modified by the
160 * application (i.e. get number of "new events" by comparing to
161 * cached value).
162 *
163 * As completion events come in out of order this counter is not
164 * ordered with any other data.
165 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000166 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200167 /*
168 * Ring buffer of completion events.
169 *
170 * The kernel writes completion events fresh every time they are
171 * produced, so the application is allowed to modify pending
172 * entries.
173 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000174 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700175};
176
Jens Axboeedafcce2019-01-09 09:16:05 -0700177struct io_mapped_ubuf {
178 u64 ubuf;
179 size_t len;
180 struct bio_vec *bvec;
181 unsigned int nr_bvecs;
182};
183
Jens Axboe65e19f52019-10-26 07:20:21 -0600184struct fixed_file_table {
185 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700186};
187
Jens Axboe05f3fb32019-12-09 11:22:50 -0700188struct fixed_file_data {
189 struct fixed_file_table *table;
190 struct io_ring_ctx *ctx;
191
192 struct percpu_ref refs;
193 struct llist_head put_llist;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700194 struct work_struct ref_work;
195 struct completion done;
196};
197
Jens Axboe2b188cc2019-01-07 10:46:33 -0700198struct io_ring_ctx {
199 struct {
200 struct percpu_ref refs;
201 } ____cacheline_aligned_in_smp;
202
203 struct {
204 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800205 unsigned int compat: 1;
206 unsigned int account_mem: 1;
207 unsigned int cq_overflow_flushed: 1;
208 unsigned int drain_next: 1;
209 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700210
Hristo Venev75b28af2019-08-26 17:23:46 +0000211 /*
212 * Ring buffer of indices into array of io_uring_sqe, which is
213 * mmapped by the application using the IORING_OFF_SQES offset.
214 *
215 * This indirection could e.g. be used to assign fixed
216 * io_uring_sqe entries to operations and only submit them to
217 * the queue when needed.
218 *
219 * The kernel modifies neither the indices array nor the entries
220 * array.
221 */
222 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700223 unsigned cached_sq_head;
224 unsigned sq_entries;
225 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700226 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600227 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700228 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700229 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600230
231 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600232 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700233 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700234
Jens Axboefcb323c2019-10-24 12:39:47 -0600235 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700236 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700237 } ____cacheline_aligned_in_smp;
238
Hristo Venev75b28af2019-08-26 17:23:46 +0000239 struct io_rings *rings;
240
Jens Axboe2b188cc2019-01-07 10:46:33 -0700241 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600242 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700243 struct task_struct *sqo_thread; /* if using sq thread polling */
244 struct mm_struct *sqo_mm;
245 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700246
Jens Axboe6b063142019-01-10 22:13:58 -0700247 /*
248 * If used, fixed file set. Writers must ensure that ->refs is dead,
249 * readers must ensure that ->refs is alive as long as the file* is
250 * used. Only updated through io_uring_register(2).
251 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700252 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700253 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300254 int ring_fd;
255 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700256
Jens Axboeedafcce2019-01-09 09:16:05 -0700257 /* if used, fixed mapped user buffers */
258 unsigned nr_user_bufs;
259 struct io_mapped_ubuf *user_bufs;
260
Jens Axboe2b188cc2019-01-07 10:46:33 -0700261 struct user_struct *user;
262
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700263 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700264
Jens Axboe206aefd2019-11-07 18:27:42 -0700265 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
266 struct completion *completions;
267
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700268 /* if all else fails... */
269 struct io_kiocb *fallback_req;
270
Jens Axboe206aefd2019-11-07 18:27:42 -0700271#if defined(CONFIG_UNIX)
272 struct socket *ring_sock;
273#endif
274
Jens Axboe071698e2020-01-28 10:04:42 -0700275 struct idr personality_idr;
276
Jens Axboe206aefd2019-11-07 18:27:42 -0700277 struct {
278 unsigned cached_cq_tail;
279 unsigned cq_entries;
280 unsigned cq_mask;
281 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700282 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700283 struct wait_queue_head cq_wait;
284 struct fasync_struct *cq_fasync;
285 struct eventfd_ctx *cq_ev_fd;
286 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700287
288 struct {
289 struct mutex uring_lock;
290 wait_queue_head_t wait;
291 } ____cacheline_aligned_in_smp;
292
293 struct {
294 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700295
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 Begunkovcf6fd4b2019-11-25 23:14:39 +0300561 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700562 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700563
564 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700565 union {
566 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700567 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700568 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600569 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700570 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700571 refcount_t refs;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700572 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600573 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600574 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700575
Jens Axboefcb323c2019-10-24 12:39:47 -0600576 struct list_head inflight_entry;
577
Jens Axboeb41e9852020-02-17 09:52:41 -0700578 union {
579 /*
580 * Only commands that never go async can use the below fields,
581 * obviously. Right now only IORING_OP_POLL_ADD uses them.
582 */
583 struct {
584 struct task_struct *task;
585 struct callback_head task_work;
586 };
587 struct io_wq_work work;
588 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700589};
590
591#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700592#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700593
Jens Axboe9a56a232019-01-09 09:06:50 -0700594struct io_submit_state {
595 struct blk_plug plug;
596
597 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700598 * io_kiocb alloc cache
599 */
600 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300601 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700602
603 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700604 * File reference cache
605 */
606 struct file *file;
607 unsigned int fd;
608 unsigned int has_refs;
609 unsigned int used_refs;
610 unsigned int ios_left;
611};
612
Jens Axboed3656342019-12-18 09:50:26 -0700613struct io_op_def {
614 /* needs req->io allocated for deferral/async */
615 unsigned async_ctx : 1;
616 /* needs current->mm setup, does mm access */
617 unsigned needs_mm : 1;
618 /* needs req->file assigned */
619 unsigned needs_file : 1;
620 /* needs req->file assigned IFF fd is >= 0 */
621 unsigned fd_non_neg : 1;
622 /* hash wq insertion if file is a regular file */
623 unsigned hash_reg_file : 1;
624 /* unbound wq insertion if file is a non-regular file */
625 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700626 /* opcode is not supported by this kernel */
627 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700628 /* needs file table */
629 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700630 /* needs ->fs */
631 unsigned needs_fs : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700632};
633
634static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300635 [IORING_OP_NOP] = {},
636 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700637 .async_ctx = 1,
638 .needs_mm = 1,
639 .needs_file = 1,
640 .unbound_nonreg_file = 1,
641 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300642 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700643 .async_ctx = 1,
644 .needs_mm = 1,
645 .needs_file = 1,
646 .hash_reg_file = 1,
647 .unbound_nonreg_file = 1,
648 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300649 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700650 .needs_file = 1,
651 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300652 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700653 .needs_file = 1,
654 .unbound_nonreg_file = 1,
655 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300656 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700657 .needs_file = 1,
658 .hash_reg_file = 1,
659 .unbound_nonreg_file = 1,
660 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300661 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700662 .needs_file = 1,
663 .unbound_nonreg_file = 1,
664 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300665 [IORING_OP_POLL_REMOVE] = {},
666 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700667 .needs_file = 1,
668 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300669 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700670 .async_ctx = 1,
671 .needs_mm = 1,
672 .needs_file = 1,
673 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700674 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700675 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300676 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700677 .async_ctx = 1,
678 .needs_mm = 1,
679 .needs_file = 1,
680 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700681 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700682 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300683 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700684 .async_ctx = 1,
685 .needs_mm = 1,
686 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300687 [IORING_OP_TIMEOUT_REMOVE] = {},
688 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700689 .needs_mm = 1,
690 .needs_file = 1,
691 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700692 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700693 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300694 [IORING_OP_ASYNC_CANCEL] = {},
695 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700696 .async_ctx = 1,
697 .needs_mm = 1,
698 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300699 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700700 .async_ctx = 1,
701 .needs_mm = 1,
702 .needs_file = 1,
703 .unbound_nonreg_file = 1,
704 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300705 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700706 .needs_file = 1,
707 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300708 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700709 .needs_file = 1,
710 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700711 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700712 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700713 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300714 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700715 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700716 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700717 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300718 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700719 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700720 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700721 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300722 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700723 .needs_mm = 1,
724 .needs_file = 1,
725 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700726 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700727 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300728 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700729 .needs_mm = 1,
730 .needs_file = 1,
731 .unbound_nonreg_file = 1,
732 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300733 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700734 .needs_mm = 1,
735 .needs_file = 1,
736 .unbound_nonreg_file = 1,
737 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300738 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700739 .needs_file = 1,
740 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300741 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700742 .needs_mm = 1,
743 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300744 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700745 .needs_mm = 1,
746 .needs_file = 1,
747 .unbound_nonreg_file = 1,
748 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300749 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700750 .needs_mm = 1,
751 .needs_file = 1,
752 .unbound_nonreg_file = 1,
753 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300754 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700755 .needs_file = 1,
756 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700757 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700758 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700759 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700760 [IORING_OP_EPOLL_CTL] = {
761 .unbound_nonreg_file = 1,
762 .file_table = 1,
763 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300764 [IORING_OP_SPLICE] = {
765 .needs_file = 1,
766 .hash_reg_file = 1,
767 .unbound_nonreg_file = 1,
768 }
Jens Axboed3656342019-12-18 09:50:26 -0700769};
770
Jens Axboe561fb042019-10-24 07:25:42 -0600771static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700772static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800773static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700774static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700775static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
776static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700777static int __io_sqe_files_update(struct io_ring_ctx *ctx,
778 struct io_uring_files_update *ip,
779 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700780static int io_grab_files(struct io_kiocb *req);
Jens Axboe2faf8522020-02-04 19:54:55 -0700781static void io_ring_file_ref_flush(struct fixed_file_data *data);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300782static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700783static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
784 int fd, struct file **out_file, bool fixed);
785static void __io_queue_sqe(struct io_kiocb *req,
786 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600787
Jens Axboe2b188cc2019-01-07 10:46:33 -0700788static struct kmem_cache *req_cachep;
789
790static const struct file_operations io_uring_fops;
791
792struct sock *io_uring_get_socket(struct file *file)
793{
794#if defined(CONFIG_UNIX)
795 if (file->f_op == &io_uring_fops) {
796 struct io_ring_ctx *ctx = file->private_data;
797
798 return ctx->ring_sock->sk;
799 }
800#endif
801 return NULL;
802}
803EXPORT_SYMBOL(io_uring_get_socket);
804
805static void io_ring_ctx_ref_free(struct percpu_ref *ref)
806{
807 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
808
Jens Axboe206aefd2019-11-07 18:27:42 -0700809 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700810}
811
812static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
813{
814 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700815 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700816
817 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
818 if (!ctx)
819 return NULL;
820
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700821 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
822 if (!ctx->fallback_req)
823 goto err;
824
Jens Axboe206aefd2019-11-07 18:27:42 -0700825 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
826 if (!ctx->completions)
827 goto err;
828
Jens Axboe78076bb2019-12-04 19:56:40 -0700829 /*
830 * Use 5 bits less than the max cq entries, that should give us around
831 * 32 entries per hash list if totally full and uniformly spread.
832 */
833 hash_bits = ilog2(p->cq_entries);
834 hash_bits -= 5;
835 if (hash_bits <= 0)
836 hash_bits = 1;
837 ctx->cancel_hash_bits = hash_bits;
838 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
839 GFP_KERNEL);
840 if (!ctx->cancel_hash)
841 goto err;
842 __hash_init(ctx->cancel_hash, 1U << hash_bits);
843
Roman Gushchin21482892019-05-07 10:01:48 -0700844 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700845 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
846 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700847
848 ctx->flags = p->flags;
849 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700850 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700851 init_completion(&ctx->completions[0]);
852 init_completion(&ctx->completions[1]);
Jens Axboe071698e2020-01-28 10:04:42 -0700853 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700854 mutex_init(&ctx->uring_lock);
855 init_waitqueue_head(&ctx->wait);
856 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700857 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600858 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600859 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600860 init_waitqueue_head(&ctx->inflight_wait);
861 spin_lock_init(&ctx->inflight_lock);
862 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700863 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700864err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700865 if (ctx->fallback_req)
866 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700867 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700868 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700869 kfree(ctx);
870 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700871}
872
Bob Liu9d858b22019-11-13 18:06:25 +0800873static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600874{
Jackie Liua197f662019-11-08 08:09:12 -0700875 struct io_ring_ctx *ctx = req->ctx;
876
Jens Axboe498ccd92019-10-25 10:04:25 -0600877 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
878 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600879}
880
Bob Liu9d858b22019-11-13 18:06:25 +0800881static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600882{
Pavel Begunkov87987892020-01-18 01:22:30 +0300883 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800884 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600885
Bob Liu9d858b22019-11-13 18:06:25 +0800886 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600887}
888
889static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600890{
891 struct io_kiocb *req;
892
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600893 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800894 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600895 list_del_init(&req->list);
896 return req;
897 }
898
899 return NULL;
900}
901
Jens Axboe5262f562019-09-17 12:26:57 -0600902static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
903{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600904 struct io_kiocb *req;
905
906 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700907 if (req) {
908 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
909 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800910 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700911 list_del_init(&req->list);
912 return req;
913 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600914 }
915
916 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600917}
918
Jens Axboede0617e2019-04-06 21:51:27 -0600919static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700920{
Hristo Venev75b28af2019-08-26 17:23:46 +0000921 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700922
Pavel Begunkov07910152020-01-17 03:52:46 +0300923 /* order cqe stores with ring update */
924 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700925
Pavel Begunkov07910152020-01-17 03:52:46 +0300926 if (wq_has_sleeper(&ctx->cq_wait)) {
927 wake_up_interruptible(&ctx->cq_wait);
928 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700929 }
930}
931
Jens Axboecccf0ee2020-01-27 16:34:48 -0700932static inline void io_req_work_grab_env(struct io_kiocb *req,
933 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -0600934{
Jens Axboecccf0ee2020-01-27 16:34:48 -0700935 if (!req->work.mm && def->needs_mm) {
936 mmgrab(current->mm);
937 req->work.mm = current->mm;
938 }
939 if (!req->work.creds)
940 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -0700941 if (!req->work.fs && def->needs_fs) {
942 spin_lock(&current->fs->lock);
943 if (!current->fs->in_exec) {
944 req->work.fs = current->fs;
945 req->work.fs->users++;
946 } else {
947 req->work.flags |= IO_WQ_WORK_CANCEL;
948 }
949 spin_unlock(&current->fs->lock);
950 }
Jens Axboe6ab23142020-02-08 20:23:59 -0700951 if (!req->work.task_pid)
952 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -0700953}
954
955static inline void io_req_work_drop_env(struct io_kiocb *req)
956{
957 if (req->work.mm) {
958 mmdrop(req->work.mm);
959 req->work.mm = NULL;
960 }
961 if (req->work.creds) {
962 put_cred(req->work.creds);
963 req->work.creds = NULL;
964 }
Jens Axboeff002b32020-02-07 16:05:21 -0700965 if (req->work.fs) {
966 struct fs_struct *fs = req->work.fs;
967
968 spin_lock(&req->work.fs->lock);
969 if (--fs->users)
970 fs = NULL;
971 spin_unlock(&req->work.fs->lock);
972 if (fs)
973 free_fs_struct(fs);
974 }
Jens Axboe561fb042019-10-24 07:25:42 -0600975}
976
Pavel Begunkovdeb6dc02020-02-24 11:30:17 +0300977static inline void io_prep_next_work(struct io_kiocb *req,
978 struct io_kiocb **link)
979{
980 const struct io_op_def *def = &io_op_defs[req->opcode];
981
982 if (!(req->flags & REQ_F_ISREG) && def->unbound_nonreg_file)
983 req->work.flags |= IO_WQ_WORK_UNBOUND;
984
985 *link = io_prep_linked_timeout(req);
986}
987
Jens Axboe94ae5e72019-11-14 19:39:52 -0700988static inline bool io_prep_async_work(struct io_kiocb *req,
989 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600990{
Jens Axboed3656342019-12-18 09:50:26 -0700991 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe561fb042019-10-24 07:25:42 -0600992 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600993
Jens Axboed3656342019-12-18 09:50:26 -0700994 if (req->flags & REQ_F_ISREG) {
995 if (def->hash_reg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700996 do_hashed = true;
Jens Axboed3656342019-12-18 09:50:26 -0700997 } else {
998 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700999 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001000 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001001
1002 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001003
Jens Axboe94ae5e72019-11-14 19:39:52 -07001004 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001005 return do_hashed;
1006}
1007
Jackie Liua197f662019-11-08 08:09:12 -07001008static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001009{
Jackie Liua197f662019-11-08 08:09:12 -07001010 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001011 struct io_kiocb *link;
1012 bool do_hashed;
1013
1014 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001015
1016 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
1017 req->flags);
1018 if (!do_hashed) {
1019 io_wq_enqueue(ctx->io_wq, &req->work);
1020 } else {
1021 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
1022 file_inode(req->file));
1023 }
Jens Axboe94ae5e72019-11-14 19:39:52 -07001024
1025 if (link)
1026 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001027}
1028
Jens Axboe5262f562019-09-17 12:26:57 -06001029static void io_kill_timeout(struct io_kiocb *req)
1030{
1031 int ret;
1032
Jens Axboe2d283902019-12-04 11:08:05 -07001033 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001034 if (ret != -1) {
1035 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001036 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001037 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001038 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001039 }
1040}
1041
1042static void io_kill_timeouts(struct io_ring_ctx *ctx)
1043{
1044 struct io_kiocb *req, *tmp;
1045
1046 spin_lock_irq(&ctx->completion_lock);
1047 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1048 io_kill_timeout(req);
1049 spin_unlock_irq(&ctx->completion_lock);
1050}
1051
Jens Axboede0617e2019-04-06 21:51:27 -06001052static void io_commit_cqring(struct io_ring_ctx *ctx)
1053{
1054 struct io_kiocb *req;
1055
Jens Axboe5262f562019-09-17 12:26:57 -06001056 while ((req = io_get_timeout_req(ctx)) != NULL)
1057 io_kill_timeout(req);
1058
Jens Axboede0617e2019-04-06 21:51:27 -06001059 __io_commit_cqring(ctx);
1060
Pavel Begunkov87987892020-01-18 01:22:30 +03001061 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001062 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001063}
1064
Jens Axboe2b188cc2019-01-07 10:46:33 -07001065static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1066{
Hristo Venev75b28af2019-08-26 17:23:46 +00001067 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001068 unsigned tail;
1069
1070 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001071 /*
1072 * writes to the cq entry need to come after reading head; the
1073 * control dependency is enough as we're using WRITE_ONCE to
1074 * fill the cq entry
1075 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001076 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001077 return NULL;
1078
1079 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001080 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001081}
1082
Jens Axboef2842ab2020-01-08 11:04:00 -07001083static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1084{
Jens Axboef0b493e2020-02-01 21:30:11 -07001085 if (!ctx->cq_ev_fd)
1086 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001087 if (!ctx->eventfd_async)
1088 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001089 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001090}
1091
Jens Axboeb41e9852020-02-17 09:52:41 -07001092static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001093{
1094 if (waitqueue_active(&ctx->wait))
1095 wake_up(&ctx->wait);
1096 if (waitqueue_active(&ctx->sqo_wait))
1097 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001098 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001099 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001100}
1101
Jens Axboec4a2ed72019-11-21 21:01:26 -07001102/* Returns true if there are no backlogged entries after the flush */
1103static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001104{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001105 struct io_rings *rings = ctx->rings;
1106 struct io_uring_cqe *cqe;
1107 struct io_kiocb *req;
1108 unsigned long flags;
1109 LIST_HEAD(list);
1110
1111 if (!force) {
1112 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001113 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001114 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1115 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001116 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001117 }
1118
1119 spin_lock_irqsave(&ctx->completion_lock, flags);
1120
1121 /* if force is set, the ring is going away. always drop after that */
1122 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001123 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001124
Jens Axboec4a2ed72019-11-21 21:01:26 -07001125 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001126 while (!list_empty(&ctx->cq_overflow_list)) {
1127 cqe = io_get_cqring(ctx);
1128 if (!cqe && !force)
1129 break;
1130
1131 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1132 list);
1133 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001134 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001135 if (cqe) {
1136 WRITE_ONCE(cqe->user_data, req->user_data);
1137 WRITE_ONCE(cqe->res, req->result);
1138 WRITE_ONCE(cqe->flags, 0);
1139 } else {
1140 WRITE_ONCE(ctx->rings->cq_overflow,
1141 atomic_inc_return(&ctx->cached_cq_overflow));
1142 }
1143 }
1144
1145 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001146 if (cqe) {
1147 clear_bit(0, &ctx->sq_check_overflow);
1148 clear_bit(0, &ctx->cq_check_overflow);
1149 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001150 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1151 io_cqring_ev_posted(ctx);
1152
1153 while (!list_empty(&list)) {
1154 req = list_first_entry(&list, struct io_kiocb, list);
1155 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001156 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001157 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001158
1159 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001160}
1161
Jens Axboe78e19bb2019-11-06 15:21:34 -07001162static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001163{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001164 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001165 struct io_uring_cqe *cqe;
1166
Jens Axboe78e19bb2019-11-06 15:21:34 -07001167 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001168
Jens Axboe2b188cc2019-01-07 10:46:33 -07001169 /*
1170 * If we can't get a cq entry, userspace overflowed the
1171 * submission (by quite a lot). Increment the overflow count in
1172 * the ring.
1173 */
1174 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001175 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001176 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001177 WRITE_ONCE(cqe->res, res);
1178 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001179 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001180 WRITE_ONCE(ctx->rings->cq_overflow,
1181 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001182 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001183 if (list_empty(&ctx->cq_overflow_list)) {
1184 set_bit(0, &ctx->sq_check_overflow);
1185 set_bit(0, &ctx->cq_check_overflow);
1186 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001187 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001188 refcount_inc(&req->refs);
1189 req->result = res;
1190 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001191 }
1192}
1193
Jens Axboe78e19bb2019-11-06 15:21:34 -07001194static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001195{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001196 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001197 unsigned long flags;
1198
1199 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001200 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001201 io_commit_cqring(ctx);
1202 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1203
Jens Axboe8c838782019-03-12 15:48:16 -06001204 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001205}
1206
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001207static inline bool io_is_fallback_req(struct io_kiocb *req)
1208{
1209 return req == (struct io_kiocb *)
1210 ((unsigned long) req->ctx->fallback_req & ~1UL);
1211}
1212
1213static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1214{
1215 struct io_kiocb *req;
1216
1217 req = ctx->fallback_req;
1218 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1219 return req;
1220
1221 return NULL;
1222}
1223
Jens Axboe2579f912019-01-09 09:10:43 -07001224static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1225 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001226{
Jens Axboefd6fab22019-03-14 16:30:06 -06001227 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001228 struct io_kiocb *req;
1229
Jens Axboe2579f912019-01-09 09:10:43 -07001230 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001231 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001232 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001233 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001234 } else if (!state->free_reqs) {
1235 size_t sz;
1236 int ret;
1237
1238 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001239 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1240
1241 /*
1242 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1243 * retry single alloc to be on the safe side.
1244 */
1245 if (unlikely(ret <= 0)) {
1246 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1247 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001248 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001249 ret = 1;
1250 }
Jens Axboe2579f912019-01-09 09:10:43 -07001251 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001252 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001253 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001254 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001255 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001256 }
1257
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001258got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001259 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001260 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001261 req->ctx = ctx;
1262 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001263 /* one is dropped after submission, the other at completion */
1264 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001265 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001266 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001267 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001268fallback:
1269 req = io_get_fallback_req(ctx);
1270 if (req)
1271 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001272 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001273 return NULL;
1274}
1275
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001276static inline void io_put_file(struct io_kiocb *req, struct file *file,
1277 bool fixed)
1278{
1279 if (fixed)
1280 percpu_ref_put(&req->ctx->file_data->refs);
1281 else
1282 fput(file);
1283}
1284
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001285static void __io_req_do_free(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07001286{
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001287 if (likely(!io_is_fallback_req(req)))
1288 kmem_cache_free(req_cachep, req);
1289 else
1290 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1291}
1292
Jens Axboec6ca97b302019-12-28 12:11:08 -07001293static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001294{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001295 if (req->flags & REQ_F_NEED_CLEANUP)
1296 io_cleanup_req(req);
1297
YueHaibing96fd84d2020-01-07 22:22:44 +08001298 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001299 if (req->file)
1300 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboecccf0ee2020-01-27 16:34:48 -07001301
1302 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001303}
1304
1305static void __io_free_req(struct io_kiocb *req)
1306{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001307 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001308
Jens Axboefcb323c2019-10-24 12:39:47 -06001309 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001310 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001311 unsigned long flags;
1312
1313 spin_lock_irqsave(&ctx->inflight_lock, flags);
1314 list_del(&req->inflight_entry);
1315 if (waitqueue_active(&ctx->inflight_wait))
1316 wake_up(&ctx->inflight_wait);
1317 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1318 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001319
1320 percpu_ref_put(&req->ctx->refs);
1321 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001322}
1323
Jens Axboec6ca97b302019-12-28 12:11:08 -07001324struct req_batch {
1325 void *reqs[IO_IOPOLL_BATCH];
1326 int to_free;
1327 int need_iter;
1328};
1329
1330static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1331{
Jens Axboe10fef4b2020-01-09 07:52:28 -07001332 int fixed_refs = rb->to_free;
1333
Jens Axboec6ca97b302019-12-28 12:11:08 -07001334 if (!rb->to_free)
1335 return;
1336 if (rb->need_iter) {
1337 int i, inflight = 0;
1338 unsigned long flags;
1339
Jens Axboe10fef4b2020-01-09 07:52:28 -07001340 fixed_refs = 0;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001341 for (i = 0; i < rb->to_free; i++) {
1342 struct io_kiocb *req = rb->reqs[i];
1343
Jens Axboe10fef4b2020-01-09 07:52:28 -07001344 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001345 req->file = NULL;
Jens Axboe10fef4b2020-01-09 07:52:28 -07001346 fixed_refs++;
1347 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001348 if (req->flags & REQ_F_INFLIGHT)
1349 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001350 __io_req_aux_free(req);
1351 }
1352 if (!inflight)
1353 goto do_free;
1354
1355 spin_lock_irqsave(&ctx->inflight_lock, flags);
1356 for (i = 0; i < rb->to_free; i++) {
1357 struct io_kiocb *req = rb->reqs[i];
1358
Jens Axboe10fef4b2020-01-09 07:52:28 -07001359 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001360 list_del(&req->inflight_entry);
1361 if (!--inflight)
1362 break;
1363 }
1364 }
1365 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1366
1367 if (waitqueue_active(&ctx->inflight_wait))
1368 wake_up(&ctx->inflight_wait);
1369 }
1370do_free:
1371 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001372 if (fixed_refs)
1373 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001374 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001375 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001376}
1377
Jackie Liua197f662019-11-08 08:09:12 -07001378static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001379{
Jackie Liua197f662019-11-08 08:09:12 -07001380 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001381 int ret;
1382
Jens Axboe2d283902019-12-04 11:08:05 -07001383 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001384 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001385 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001386 io_commit_cqring(ctx);
1387 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001388 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001389 return true;
1390 }
1391
1392 return false;
1393}
1394
Jens Axboeba816ad2019-09-28 11:36:45 -06001395static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001396{
Jens Axboe2665abf2019-11-05 12:40:47 -07001397 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001398 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001399
Jens Axboe4d7dd462019-11-20 13:03:52 -07001400 /* Already got next link */
1401 if (req->flags & REQ_F_LINK_NEXT)
1402 return;
1403
Jens Axboe9e645e112019-05-10 16:07:28 -06001404 /*
1405 * The list should never be empty when we are called here. But could
1406 * potentially happen if the chain is messed up, check to be on the
1407 * safe side.
1408 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001409 while (!list_empty(&req->link_list)) {
1410 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1411 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001412
Pavel Begunkov44932332019-12-05 16:16:35 +03001413 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1414 (nxt->flags & REQ_F_TIMEOUT))) {
1415 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001416 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001417 req->flags &= ~REQ_F_LINK_TIMEOUT;
1418 continue;
1419 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001420
Pavel Begunkov44932332019-12-05 16:16:35 +03001421 list_del_init(&req->link_list);
1422 if (!list_empty(&nxt->link_list))
1423 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001424 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001425 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001426 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001427
Jens Axboe4d7dd462019-11-20 13:03:52 -07001428 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001429 if (wake_ev)
1430 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001431}
1432
1433/*
1434 * Called if REQ_F_LINK is set, and we fail the head request
1435 */
1436static void io_fail_links(struct io_kiocb *req)
1437{
Jens Axboe2665abf2019-11-05 12:40:47 -07001438 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001439 unsigned long flags;
1440
1441 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001442
1443 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001444 struct io_kiocb *link = list_first_entry(&req->link_list,
1445 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001446
Pavel Begunkov44932332019-12-05 16:16:35 +03001447 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001448 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001449
1450 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001451 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001452 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001453 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001454 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001455 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001456 }
Jens Axboe5d960722019-11-19 15:31:28 -07001457 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001458 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001459
1460 io_commit_cqring(ctx);
1461 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1462 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001463}
1464
Jens Axboe4d7dd462019-11-20 13:03:52 -07001465static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001466{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001467 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001468 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001469
Jens Axboe9e645e112019-05-10 16:07:28 -06001470 /*
1471 * If LINK is set, we have dependent requests in this chain. If we
1472 * didn't fail this request, queue the first one up, moving any other
1473 * dependencies to the next request. In case of failure, fail the rest
1474 * of the chain.
1475 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001476 if (req->flags & REQ_F_FAIL_LINK) {
1477 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001478 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1479 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001480 struct io_ring_ctx *ctx = req->ctx;
1481 unsigned long flags;
1482
1483 /*
1484 * If this is a timeout link, we could be racing with the
1485 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001486 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001487 */
1488 spin_lock_irqsave(&ctx->completion_lock, flags);
1489 io_req_link_next(req, nxt);
1490 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1491 } else {
1492 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001493 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001494}
Jens Axboe9e645e112019-05-10 16:07:28 -06001495
Jackie Liuc69f8db2019-11-09 11:00:08 +08001496static void io_free_req(struct io_kiocb *req)
1497{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001498 struct io_kiocb *nxt = NULL;
1499
1500 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001501 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001502
1503 if (nxt)
1504 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001505}
1506
Jens Axboeba816ad2019-09-28 11:36:45 -06001507/*
1508 * Drop reference to request, return next in chain (if there is one) if this
1509 * was the last reference to this request.
1510 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001511__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001512static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001513{
Jens Axboe2a44f462020-02-25 13:25:41 -07001514 if (refcount_dec_and_test(&req->refs)) {
1515 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001516 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001517 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001518}
1519
Jens Axboe2b188cc2019-01-07 10:46:33 -07001520static void io_put_req(struct io_kiocb *req)
1521{
Jens Axboedef596e2019-01-09 08:59:42 -07001522 if (refcount_dec_and_test(&req->refs))
1523 io_free_req(req);
1524}
1525
Jens Axboe978db572019-11-14 22:39:04 -07001526/*
1527 * Must only be used if we don't need to care about links, usually from
1528 * within the completion handling itself.
1529 */
1530static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001531{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001532 /* drop both submit and complete references */
1533 if (refcount_sub_and_test(2, &req->refs))
1534 __io_free_req(req);
1535}
1536
Jens Axboe978db572019-11-14 22:39:04 -07001537static void io_double_put_req(struct io_kiocb *req)
1538{
1539 /* drop both submit and complete references */
1540 if (refcount_sub_and_test(2, &req->refs))
1541 io_free_req(req);
1542}
1543
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001544static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001545{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001546 struct io_rings *rings = ctx->rings;
1547
Jens Axboead3eb2c2019-12-18 17:12:20 -07001548 if (test_bit(0, &ctx->cq_check_overflow)) {
1549 /*
1550 * noflush == true is from the waitqueue handler, just ensure
1551 * we wake up the task, and the next invocation will flush the
1552 * entries. We cannot safely to it from here.
1553 */
1554 if (noflush && !list_empty(&ctx->cq_overflow_list))
1555 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001556
Jens Axboead3eb2c2019-12-18 17:12:20 -07001557 io_cqring_overflow_flush(ctx, false);
1558 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001559
Jens Axboea3a0e432019-08-20 11:03:11 -06001560 /* See comment at the top of this file */
1561 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001562 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001563}
1564
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001565static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1566{
1567 struct io_rings *rings = ctx->rings;
1568
1569 /* make sure SQ entry isn't read before tail */
1570 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1571}
1572
Jens Axboe8237e042019-12-28 10:48:22 -07001573static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001574{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001575 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1576 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001577
Jens Axboec6ca97b302019-12-28 12:11:08 -07001578 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1579 rb->need_iter++;
1580
1581 rb->reqs[rb->to_free++] = req;
1582 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1583 io_free_req_many(req->ctx, rb);
1584 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001585}
1586
Jens Axboedef596e2019-01-09 08:59:42 -07001587/*
1588 * Find and free completed poll iocbs
1589 */
1590static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1591 struct list_head *done)
1592{
Jens Axboe8237e042019-12-28 10:48:22 -07001593 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001594 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001595
Jens Axboec6ca97b302019-12-28 12:11:08 -07001596 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001597 while (!list_empty(done)) {
1598 req = list_first_entry(done, struct io_kiocb, list);
1599 list_del(&req->list);
1600
Jens Axboe78e19bb2019-11-06 15:21:34 -07001601 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001602 (*nr_events)++;
1603
Jens Axboe8237e042019-12-28 10:48:22 -07001604 if (refcount_dec_and_test(&req->refs) &&
1605 !io_req_multi_free(&rb, req))
1606 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001607 }
Jens Axboedef596e2019-01-09 08:59:42 -07001608
Jens Axboe09bb8392019-03-13 12:39:28 -06001609 io_commit_cqring(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001610 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001611}
1612
1613static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1614 long min)
1615{
1616 struct io_kiocb *req, *tmp;
1617 LIST_HEAD(done);
1618 bool spin;
1619 int ret;
1620
1621 /*
1622 * Only spin for completions if we don't have multiple devices hanging
1623 * off our complete list, and we're under the requested amount.
1624 */
1625 spin = !ctx->poll_multi_file && *nr_events < min;
1626
1627 ret = 0;
1628 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001629 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001630
1631 /*
1632 * Move completed entries to our local list. If we find a
1633 * request that requires polling, break out and complete
1634 * the done list first, if we have entries there.
1635 */
1636 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1637 list_move_tail(&req->list, &done);
1638 continue;
1639 }
1640 if (!list_empty(&done))
1641 break;
1642
1643 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1644 if (ret < 0)
1645 break;
1646
1647 if (ret && spin)
1648 spin = false;
1649 ret = 0;
1650 }
1651
1652 if (!list_empty(&done))
1653 io_iopoll_complete(ctx, nr_events, &done);
1654
1655 return ret;
1656}
1657
1658/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001659 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001660 * non-spinning poll check - we'll still enter the driver poll loop, but only
1661 * as a non-spinning completion check.
1662 */
1663static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1664 long min)
1665{
Jens Axboe08f54392019-08-21 22:19:11 -06001666 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001667 int ret;
1668
1669 ret = io_do_iopoll(ctx, nr_events, min);
1670 if (ret < 0)
1671 return ret;
1672 if (!min || *nr_events >= min)
1673 return 0;
1674 }
1675
1676 return 1;
1677}
1678
1679/*
1680 * We can't just wait for polled events to come to us, we have to actively
1681 * find and complete them.
1682 */
1683static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1684{
1685 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1686 return;
1687
1688 mutex_lock(&ctx->uring_lock);
1689 while (!list_empty(&ctx->poll_list)) {
1690 unsigned int nr_events = 0;
1691
1692 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001693
1694 /*
1695 * Ensure we allow local-to-the-cpu processing to take place,
1696 * in this case we need to ensure that we reap all events.
1697 */
1698 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001699 }
1700 mutex_unlock(&ctx->uring_lock);
1701}
1702
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001703static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1704 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001705{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001706 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001707
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001708 /*
1709 * We disallow the app entering submit/complete with polling, but we
1710 * still need to lock the ring to prevent racing with polled issue
1711 * that got punted to a workqueue.
1712 */
1713 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001714 do {
1715 int tmin = 0;
1716
Jens Axboe500f9fb2019-08-19 12:15:59 -06001717 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001718 * Don't enter poll loop if we already have events pending.
1719 * If we do, we can potentially be spinning for commands that
1720 * already triggered a CQE (eg in error).
1721 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001722 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001723 break;
1724
1725 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001726 * If a submit got punted to a workqueue, we can have the
1727 * application entering polling for a command before it gets
1728 * issued. That app will hold the uring_lock for the duration
1729 * of the poll right here, so we need to take a breather every
1730 * now and then to ensure that the issue has a chance to add
1731 * the poll to the issued list. Otherwise we can spin here
1732 * forever, while the workqueue is stuck trying to acquire the
1733 * very same mutex.
1734 */
1735 if (!(++iters & 7)) {
1736 mutex_unlock(&ctx->uring_lock);
1737 mutex_lock(&ctx->uring_lock);
1738 }
1739
Jens Axboedef596e2019-01-09 08:59:42 -07001740 if (*nr_events < min)
1741 tmin = min - *nr_events;
1742
1743 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1744 if (ret <= 0)
1745 break;
1746 ret = 0;
1747 } while (min && !*nr_events && !need_resched());
1748
Jens Axboe500f9fb2019-08-19 12:15:59 -06001749 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001750 return ret;
1751}
1752
Jens Axboe491381ce2019-10-17 09:20:46 -06001753static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001754{
Jens Axboe491381ce2019-10-17 09:20:46 -06001755 /*
1756 * Tell lockdep we inherited freeze protection from submission
1757 * thread.
1758 */
1759 if (req->flags & REQ_F_ISREG) {
1760 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001761
Jens Axboe491381ce2019-10-17 09:20:46 -06001762 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001763 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001764 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001765}
1766
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001767static inline void req_set_fail_links(struct io_kiocb *req)
1768{
1769 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1770 req->flags |= REQ_F_FAIL_LINK;
1771}
1772
Jens Axboeba816ad2019-09-28 11:36:45 -06001773static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001774{
Jens Axboe9adbd452019-12-20 08:45:55 -07001775 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001776
Jens Axboe491381ce2019-10-17 09:20:46 -06001777 if (kiocb->ki_flags & IOCB_WRITE)
1778 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001779
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001780 if (res != req->result)
1781 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001782 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001783}
1784
1785static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1786{
Jens Axboe9adbd452019-12-20 08:45:55 -07001787 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001788
1789 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001790 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001791}
1792
Jens Axboeba816ad2019-09-28 11:36:45 -06001793static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1794{
Jens Axboe9adbd452019-12-20 08:45:55 -07001795 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001796 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001797
1798 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001799 io_put_req_find_next(req, &nxt);
1800
1801 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001802}
1803
Jens Axboedef596e2019-01-09 08:59:42 -07001804static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1805{
Jens Axboe9adbd452019-12-20 08:45:55 -07001806 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001807
Jens Axboe491381ce2019-10-17 09:20:46 -06001808 if (kiocb->ki_flags & IOCB_WRITE)
1809 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001810
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001811 if (res != req->result)
1812 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001813 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001814 if (res != -EAGAIN)
1815 req->flags |= REQ_F_IOPOLL_COMPLETED;
1816}
1817
1818/*
1819 * After the iocb has been issued, it's safe to be found on the poll list.
1820 * Adding the kiocb to the list AFTER submission ensures that we don't
1821 * find it from a io_iopoll_getevents() thread before the issuer is done
1822 * accessing the kiocb cookie.
1823 */
1824static void io_iopoll_req_issued(struct io_kiocb *req)
1825{
1826 struct io_ring_ctx *ctx = req->ctx;
1827
1828 /*
1829 * Track whether we have multiple files in our lists. This will impact
1830 * how we do polling eventually, not spinning if we're on potentially
1831 * different devices.
1832 */
1833 if (list_empty(&ctx->poll_list)) {
1834 ctx->poll_multi_file = false;
1835 } else if (!ctx->poll_multi_file) {
1836 struct io_kiocb *list_req;
1837
1838 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1839 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001840 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001841 ctx->poll_multi_file = true;
1842 }
1843
1844 /*
1845 * For fast devices, IO may have already completed. If it has, add
1846 * it to the front so we find it first.
1847 */
1848 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1849 list_add(&req->list, &ctx->poll_list);
1850 else
1851 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001852
1853 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1854 wq_has_sleeper(&ctx->sqo_wait))
1855 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001856}
1857
Jens Axboe3d6770f2019-04-13 11:50:54 -06001858static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001859{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001860 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001861 int diff = state->has_refs - state->used_refs;
1862
1863 if (diff)
1864 fput_many(state->file, diff);
1865 state->file = NULL;
1866 }
1867}
1868
1869/*
1870 * Get as many references to a file as we have IOs left in this submission,
1871 * assuming most submissions are for one file, or at least that each file
1872 * has more than one submission.
1873 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001874static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07001875{
1876 if (!state)
1877 return fget(fd);
1878
1879 if (state->file) {
1880 if (state->fd == fd) {
1881 state->used_refs++;
1882 state->ios_left--;
1883 return state->file;
1884 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001885 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001886 }
1887 state->file = fget_many(fd, state->ios_left);
1888 if (!state->file)
1889 return NULL;
1890
1891 state->fd = fd;
1892 state->has_refs = state->ios_left;
1893 state->used_refs = 1;
1894 state->ios_left--;
1895 return state->file;
1896}
1897
Jens Axboe2b188cc2019-01-07 10:46:33 -07001898/*
1899 * If we tracked the file through the SCM inflight mechanism, we could support
1900 * any file. For now, just ensure that anything potentially problematic is done
1901 * inline.
1902 */
1903static bool io_file_supports_async(struct file *file)
1904{
1905 umode_t mode = file_inode(file)->i_mode;
1906
Jens Axboe10d59342019-12-09 20:16:22 -07001907 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001908 return true;
1909 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1910 return true;
1911
1912 return false;
1913}
1914
Jens Axboe3529d8c2019-12-19 18:24:38 -07001915static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1916 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001917{
Jens Axboedef596e2019-01-09 08:59:42 -07001918 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001919 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001920 unsigned ioprio;
1921 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001922
Jens Axboe491381ce2019-10-17 09:20:46 -06001923 if (S_ISREG(file_inode(req->file)->i_mode))
1924 req->flags |= REQ_F_ISREG;
1925
Jens Axboe2b188cc2019-01-07 10:46:33 -07001926 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07001927 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
1928 req->flags |= REQ_F_CUR_POS;
1929 kiocb->ki_pos = req->file->f_pos;
1930 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001931 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03001932 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1933 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1934 if (unlikely(ret))
1935 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001936
1937 ioprio = READ_ONCE(sqe->ioprio);
1938 if (ioprio) {
1939 ret = ioprio_check_cap(ioprio);
1940 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001941 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001942
1943 kiocb->ki_ioprio = ioprio;
1944 } else
1945 kiocb->ki_ioprio = get_current_ioprio();
1946
Stefan Bühler8449eed2019-04-27 20:34:19 +02001947 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001948 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1949 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001950 req->flags |= REQ_F_NOWAIT;
1951
1952 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001953 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001954
Jens Axboedef596e2019-01-09 08:59:42 -07001955 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001956 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1957 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001958 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001959
Jens Axboedef596e2019-01-09 08:59:42 -07001960 kiocb->ki_flags |= IOCB_HIPRI;
1961 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001962 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001963 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001964 if (kiocb->ki_flags & IOCB_HIPRI)
1965 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001966 kiocb->ki_complete = io_complete_rw;
1967 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001968
Jens Axboe3529d8c2019-12-19 18:24:38 -07001969 req->rw.addr = READ_ONCE(sqe->addr);
1970 req->rw.len = READ_ONCE(sqe->len);
Jens Axboe9adbd452019-12-20 08:45:55 -07001971 /* we own ->private, reuse it for the buffer index */
1972 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001973 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001974 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001975}
1976
1977static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1978{
1979 switch (ret) {
1980 case -EIOCBQUEUED:
1981 break;
1982 case -ERESTARTSYS:
1983 case -ERESTARTNOINTR:
1984 case -ERESTARTNOHAND:
1985 case -ERESTART_RESTARTBLOCK:
1986 /*
1987 * We can't just restart the syscall, since previously
1988 * submitted sqes may already be in progress. Just fail this
1989 * IO with EINTR.
1990 */
1991 ret = -EINTR;
1992 /* fall through */
1993 default:
1994 kiocb->ki_complete(kiocb, ret, 0);
1995 }
1996}
1997
Pavel Begunkovbcaec082020-02-24 11:30:18 +03001998static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt)
Jens Axboeba816ad2019-09-28 11:36:45 -06001999{
Jens Axboeba042912019-12-25 16:33:42 -07002000 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2001
2002 if (req->flags & REQ_F_CUR_POS)
2003 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002004 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06002005 *nxt = __io_complete_rw(kiocb, ret);
2006 else
2007 io_rw_done(kiocb, ret);
2008}
2009
Jens Axboe9adbd452019-12-20 08:45:55 -07002010static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002011 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002012{
Jens Axboe9adbd452019-12-20 08:45:55 -07002013 struct io_ring_ctx *ctx = req->ctx;
2014 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002015 struct io_mapped_ubuf *imu;
2016 unsigned index, buf_index;
2017 size_t offset;
2018 u64 buf_addr;
2019
2020 /* attempt to use fixed buffers without having provided iovecs */
2021 if (unlikely(!ctx->user_bufs))
2022 return -EFAULT;
2023
Jens Axboe9adbd452019-12-20 08:45:55 -07002024 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002025 if (unlikely(buf_index >= ctx->nr_user_bufs))
2026 return -EFAULT;
2027
2028 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2029 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002030 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002031
2032 /* overflow */
2033 if (buf_addr + len < buf_addr)
2034 return -EFAULT;
2035 /* not inside the mapped region */
2036 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2037 return -EFAULT;
2038
2039 /*
2040 * May not be a start of buffer, set size appropriately
2041 * and advance us to the beginning.
2042 */
2043 offset = buf_addr - imu->ubuf;
2044 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002045
2046 if (offset) {
2047 /*
2048 * Don't use iov_iter_advance() here, as it's really slow for
2049 * using the latter parts of a big fixed buffer - it iterates
2050 * over each segment manually. We can cheat a bit here, because
2051 * we know that:
2052 *
2053 * 1) it's a BVEC iter, we set it up
2054 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2055 * first and last bvec
2056 *
2057 * So just find our index, and adjust the iterator afterwards.
2058 * If the offset is within the first bvec (or the whole first
2059 * bvec, just use iov_iter_advance(). This makes it easier
2060 * since we can just skip the first segment, which may not
2061 * be PAGE_SIZE aligned.
2062 */
2063 const struct bio_vec *bvec = imu->bvec;
2064
2065 if (offset <= bvec->bv_len) {
2066 iov_iter_advance(iter, offset);
2067 } else {
2068 unsigned long seg_skip;
2069
2070 /* skip first vec */
2071 offset -= bvec->bv_len;
2072 seg_skip = 1 + (offset >> PAGE_SHIFT);
2073
2074 iter->bvec = bvec + seg_skip;
2075 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002076 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002077 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002078 }
2079 }
2080
Jens Axboe5e559562019-11-13 16:12:46 -07002081 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002082}
2083
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002084static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
2085 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002086{
Jens Axboe9adbd452019-12-20 08:45:55 -07002087 void __user *buf = u64_to_user_ptr(req->rw.addr);
2088 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002089 u8 opcode;
2090
Jens Axboed625c6e2019-12-17 19:53:05 -07002091 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002092 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002093 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002094 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002095 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002096
Jens Axboe9adbd452019-12-20 08:45:55 -07002097 /* buffer index only valid with fixed read/write */
2098 if (req->rw.kiocb.private)
2099 return -EINVAL;
2100
Jens Axboe3a6820f2019-12-22 15:19:35 -07002101 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
2102 ssize_t ret;
2103 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2104 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002105 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002106 }
2107
Jens Axboef67676d2019-12-02 11:03:47 -07002108 if (req->io) {
2109 struct io_async_rw *iorw = &req->io->rw;
2110
2111 *iovec = iorw->iov;
2112 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2113 if (iorw->iov == iorw->fast_iov)
2114 *iovec = NULL;
2115 return iorw->size;
2116 }
2117
Jens Axboe2b188cc2019-01-07 10:46:33 -07002118#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002119 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002120 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2121 iovec, iter);
2122#endif
2123
2124 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2125}
2126
Jens Axboe32960612019-09-23 11:05:34 -06002127/*
2128 * For files that don't have ->read_iter() and ->write_iter(), handle them
2129 * by looping over ->read() or ->write() manually.
2130 */
2131static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2132 struct iov_iter *iter)
2133{
2134 ssize_t ret = 0;
2135
2136 /*
2137 * Don't support polled IO through this interface, and we can't
2138 * support non-blocking either. For the latter, this just causes
2139 * the kiocb to be handled from an async context.
2140 */
2141 if (kiocb->ki_flags & IOCB_HIPRI)
2142 return -EOPNOTSUPP;
2143 if (kiocb->ki_flags & IOCB_NOWAIT)
2144 return -EAGAIN;
2145
2146 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002147 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002148 ssize_t nr;
2149
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002150 if (!iov_iter_is_bvec(iter)) {
2151 iovec = iov_iter_iovec(iter);
2152 } else {
2153 /* fixed buffers import bvec */
2154 iovec.iov_base = kmap(iter->bvec->bv_page)
2155 + iter->iov_offset;
2156 iovec.iov_len = min(iter->count,
2157 iter->bvec->bv_len - iter->iov_offset);
2158 }
2159
Jens Axboe32960612019-09-23 11:05:34 -06002160 if (rw == READ) {
2161 nr = file->f_op->read(file, iovec.iov_base,
2162 iovec.iov_len, &kiocb->ki_pos);
2163 } else {
2164 nr = file->f_op->write(file, iovec.iov_base,
2165 iovec.iov_len, &kiocb->ki_pos);
2166 }
2167
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002168 if (iov_iter_is_bvec(iter))
2169 kunmap(iter->bvec->bv_page);
2170
Jens Axboe32960612019-09-23 11:05:34 -06002171 if (nr < 0) {
2172 if (!ret)
2173 ret = nr;
2174 break;
2175 }
2176 ret += nr;
2177 if (nr != iovec.iov_len)
2178 break;
2179 iov_iter_advance(iter, nr);
2180 }
2181
2182 return ret;
2183}
2184
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002185static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002186 struct iovec *iovec, struct iovec *fast_iov,
2187 struct iov_iter *iter)
2188{
2189 req->io->rw.nr_segs = iter->nr_segs;
2190 req->io->rw.size = io_size;
2191 req->io->rw.iov = iovec;
2192 if (!req->io->rw.iov) {
2193 req->io->rw.iov = req->io->rw.fast_iov;
2194 memcpy(req->io->rw.iov, fast_iov,
2195 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002196 } else {
2197 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002198 }
2199}
2200
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002201static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002202{
Jens Axboed3656342019-12-18 09:50:26 -07002203 if (!io_op_defs[req->opcode].async_ctx)
2204 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002205 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002206 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002207}
2208
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002209static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2210 struct iovec *iovec, struct iovec *fast_iov,
2211 struct iov_iter *iter)
2212{
Jens Axboe980ad262020-01-24 23:08:54 -07002213 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002214 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002215 if (!req->io) {
2216 if (io_alloc_async_ctx(req))
2217 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002218
Jens Axboe5d204bc2020-01-31 12:06:52 -07002219 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2220 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002221 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002222}
2223
Jens Axboe3529d8c2019-12-19 18:24:38 -07002224static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2225 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002226{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002227 struct io_async_ctx *io;
2228 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002229 ssize_t ret;
2230
Jens Axboe3529d8c2019-12-19 18:24:38 -07002231 ret = io_prep_rw(req, sqe, force_nonblock);
2232 if (ret)
2233 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002234
Jens Axboe3529d8c2019-12-19 18:24:38 -07002235 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2236 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002237
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002238 /* either don't need iovec imported or already have it */
2239 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002240 return 0;
2241
2242 io = req->io;
2243 io->rw.iov = io->rw.fast_iov;
2244 req->io = NULL;
2245 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
2246 req->io = io;
2247 if (ret < 0)
2248 return ret;
2249
2250 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2251 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002252}
2253
Pavel Begunkov267bc902019-11-07 01:41:08 +03002254static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002255 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002256{
2257 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002258 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002259 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002260 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002261 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002262
Jens Axboe3529d8c2019-12-19 18:24:38 -07002263 ret = io_import_iovec(READ, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002264 if (ret < 0)
2265 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002266
Jens Axboefd6c2e42019-12-18 12:19:41 -07002267 /* Ensure we clear previously set non-block flag */
2268 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002269 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002270
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002271 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002272 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002273 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002274 req->result = io_size;
2275
2276 /*
2277 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2278 * we know to async punt it even if it was opened O_NONBLOCK
2279 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002280 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002281 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002282
Jens Axboe31b51512019-01-18 22:56:34 -07002283 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002284 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002285 if (!ret) {
2286 ssize_t ret2;
2287
Jens Axboe9adbd452019-12-20 08:45:55 -07002288 if (req->file->f_op->read_iter)
2289 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002290 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002291 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002292
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002293 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002294 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002295 kiocb_done(kiocb, ret2, nxt);
Jens Axboef67676d2019-12-02 11:03:47 -07002296 } else {
2297copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002298 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002299 inline_vecs, &iter);
2300 if (ret)
2301 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002302 /* any defer here is final, must blocking retry */
2303 if (!(req->flags & REQ_F_NOWAIT))
2304 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002305 return -EAGAIN;
2306 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002307 }
Jens Axboef67676d2019-12-02 11:03:47 -07002308out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002309 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002310 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002311 return ret;
2312}
2313
Jens Axboe3529d8c2019-12-19 18:24:38 -07002314static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2315 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002316{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002317 struct io_async_ctx *io;
2318 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002319 ssize_t ret;
2320
Jens Axboe3529d8c2019-12-19 18:24:38 -07002321 ret = io_prep_rw(req, sqe, force_nonblock);
2322 if (ret)
2323 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002324
Jens Axboe3529d8c2019-12-19 18:24:38 -07002325 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2326 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002327
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002328 /* either don't need iovec imported or already have it */
2329 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002330 return 0;
2331
2332 io = req->io;
2333 io->rw.iov = io->rw.fast_iov;
2334 req->io = NULL;
2335 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
2336 req->io = io;
2337 if (ret < 0)
2338 return ret;
2339
2340 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2341 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002342}
2343
Pavel Begunkov267bc902019-11-07 01:41:08 +03002344static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002345 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002346{
2347 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002348 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002349 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002350 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002351 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002352
Jens Axboe3529d8c2019-12-19 18:24:38 -07002353 ret = io_import_iovec(WRITE, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002354 if (ret < 0)
2355 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002356
Jens Axboefd6c2e42019-12-18 12:19:41 -07002357 /* Ensure we clear previously set non-block flag */
2358 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002359 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002360
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002361 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002362 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002363 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002364 req->result = io_size;
2365
2366 /*
2367 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2368 * we know to async punt it even if it was opened O_NONBLOCK
2369 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002370 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002371 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002372
Jens Axboe10d59342019-12-09 20:16:22 -07002373 /* file path doesn't support NOWAIT for non-direct_IO */
2374 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2375 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002376 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002377
Jens Axboe31b51512019-01-18 22:56:34 -07002378 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002379 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002380 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002381 ssize_t ret2;
2382
Jens Axboe2b188cc2019-01-07 10:46:33 -07002383 /*
2384 * Open-code file_start_write here to grab freeze protection,
2385 * which will be released by another thread in
2386 * io_complete_rw(). Fool lockdep by telling it the lock got
2387 * released so that it doesn't complain about the held lock when
2388 * we return to userspace.
2389 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002390 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002391 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002392 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002393 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002394 SB_FREEZE_WRITE);
2395 }
2396 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002397
Jens Axboe9adbd452019-12-20 08:45:55 -07002398 if (req->file->f_op->write_iter)
2399 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002400 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002401 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboefaac9962020-02-07 15:45:22 -07002402 /*
2403 * Raw bdev writes will -EOPNOTSUPP for IOCB_NOWAIT. Just
2404 * retry them without IOCB_NOWAIT.
2405 */
2406 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2407 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002408 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002409 kiocb_done(kiocb, ret2, nxt);
Jens Axboef67676d2019-12-02 11:03:47 -07002410 } else {
2411copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002412 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002413 inline_vecs, &iter);
2414 if (ret)
2415 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002416 /* any defer here is final, must blocking retry */
2417 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002418 return -EAGAIN;
2419 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002420 }
Jens Axboe31b51512019-01-18 22:56:34 -07002421out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002422 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002423 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002424 return ret;
2425}
2426
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002427static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2428{
2429 struct io_splice* sp = &req->splice;
2430 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2431 int ret;
2432
2433 if (req->flags & REQ_F_NEED_CLEANUP)
2434 return 0;
2435
2436 sp->file_in = NULL;
2437 sp->off_in = READ_ONCE(sqe->splice_off_in);
2438 sp->off_out = READ_ONCE(sqe->off);
2439 sp->len = READ_ONCE(sqe->len);
2440 sp->flags = READ_ONCE(sqe->splice_flags);
2441
2442 if (unlikely(sp->flags & ~valid_flags))
2443 return -EINVAL;
2444
2445 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2446 (sp->flags & SPLICE_F_FD_IN_FIXED));
2447 if (ret)
2448 return ret;
2449 req->flags |= REQ_F_NEED_CLEANUP;
2450
2451 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2452 req->work.flags |= IO_WQ_WORK_UNBOUND;
2453
2454 return 0;
2455}
2456
2457static bool io_splice_punt(struct file *file)
2458{
2459 if (get_pipe_info(file))
2460 return false;
2461 if (!io_file_supports_async(file))
2462 return true;
2463 return !(file->f_mode & O_NONBLOCK);
2464}
2465
2466static int io_splice(struct io_kiocb *req, struct io_kiocb **nxt,
2467 bool force_nonblock)
2468{
2469 struct io_splice *sp = &req->splice;
2470 struct file *in = sp->file_in;
2471 struct file *out = sp->file_out;
2472 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2473 loff_t *poff_in, *poff_out;
2474 long ret;
2475
2476 if (force_nonblock) {
2477 if (io_splice_punt(in) || io_splice_punt(out))
2478 return -EAGAIN;
2479 flags |= SPLICE_F_NONBLOCK;
2480 }
2481
2482 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2483 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2484 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2485 if (force_nonblock && ret == -EAGAIN)
2486 return -EAGAIN;
2487
2488 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2489 req->flags &= ~REQ_F_NEED_CLEANUP;
2490
2491 io_cqring_add_event(req, ret);
2492 if (ret != sp->len)
2493 req_set_fail_links(req);
2494 io_put_req_find_next(req, nxt);
2495 return 0;
2496}
2497
Jens Axboe2b188cc2019-01-07 10:46:33 -07002498/*
2499 * IORING_OP_NOP just posts a completion event, nothing else.
2500 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002501static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002502{
2503 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002504
Jens Axboedef596e2019-01-09 08:59:42 -07002505 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2506 return -EINVAL;
2507
Jens Axboe78e19bb2019-11-06 15:21:34 -07002508 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002509 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002510 return 0;
2511}
2512
Jens Axboe3529d8c2019-12-19 18:24:38 -07002513static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002514{
Jens Axboe6b063142019-01-10 22:13:58 -07002515 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002516
Jens Axboe09bb8392019-03-13 12:39:28 -06002517 if (!req->file)
2518 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002519
Jens Axboe6b063142019-01-10 22:13:58 -07002520 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002521 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002522 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002523 return -EINVAL;
2524
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002525 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2526 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2527 return -EINVAL;
2528
2529 req->sync.off = READ_ONCE(sqe->off);
2530 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002531 return 0;
2532}
2533
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002534static bool io_req_cancelled(struct io_kiocb *req)
2535{
2536 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2537 req_set_fail_links(req);
2538 io_cqring_add_event(req, -ECANCELED);
2539 io_put_req(req);
2540 return true;
2541 }
2542
2543 return false;
2544}
2545
Jens Axboe78912932020-01-14 22:09:06 -07002546static void io_link_work_cb(struct io_wq_work **workptr)
2547{
2548 struct io_wq_work *work = *workptr;
2549 struct io_kiocb *link = work->data;
2550
2551 io_queue_linked_timeout(link);
Pavel Begunkov5eae8612020-02-28 10:36:38 +03002552 io_wq_submit_work(workptr);
Jens Axboe78912932020-01-14 22:09:06 -07002553}
2554
2555static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2556{
2557 struct io_kiocb *link;
2558
Pavel Begunkovdeb6dc02020-02-24 11:30:17 +03002559 io_prep_next_work(nxt, &link);
Jens Axboe78912932020-01-14 22:09:06 -07002560 *workptr = &nxt->work;
2561 if (link) {
Jens Axboe78912932020-01-14 22:09:06 -07002562 nxt->work.func = io_link_work_cb;
2563 nxt->work.data = link;
2564 }
2565}
2566
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002567static void __io_fsync(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002568{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002569 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002570 int ret;
2571
Jens Axboe9adbd452019-12-20 08:45:55 -07002572 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002573 end > 0 ? end : LLONG_MAX,
2574 req->sync.flags & IORING_FSYNC_DATASYNC);
2575 if (ret < 0)
2576 req_set_fail_links(req);
2577 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002578 io_put_req_find_next(req, nxt);
2579}
2580
2581static void io_fsync_finish(struct io_wq_work **workptr)
2582{
2583 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2584 struct io_kiocb *nxt = NULL;
2585
2586 if (io_req_cancelled(req))
2587 return;
2588 __io_fsync(req, &nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002589 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002590 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002591}
2592
Jens Axboefc4df992019-12-10 14:38:45 -07002593static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2594 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002595{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002596 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002597 if (force_nonblock) {
2598 io_put_req(req);
2599 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002600 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002601 }
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002602 __io_fsync(req, nxt);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002603 return 0;
2604}
2605
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002606static void __io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboed63d1b52019-12-10 10:38:56 -07002607{
Jens Axboed63d1b52019-12-10 10:38:56 -07002608 int ret;
2609
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03002610 if (io_req_cancelled(req))
2611 return;
2612
Jens Axboed63d1b52019-12-10 10:38:56 -07002613 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2614 req->sync.len);
2615 if (ret < 0)
2616 req_set_fail_links(req);
2617 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002618 io_put_req_find_next(req, nxt);
2619}
2620
2621static void io_fallocate_finish(struct io_wq_work **workptr)
2622{
2623 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2624 struct io_kiocb *nxt = NULL;
2625
2626 __io_fallocate(req, &nxt);
Jens Axboed63d1b52019-12-10 10:38:56 -07002627 if (nxt)
2628 io_wq_assign_next(workptr, nxt);
2629}
2630
2631static int io_fallocate_prep(struct io_kiocb *req,
2632 const struct io_uring_sqe *sqe)
2633{
2634 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2635 return -EINVAL;
2636
2637 req->sync.off = READ_ONCE(sqe->off);
2638 req->sync.len = READ_ONCE(sqe->addr);
2639 req->sync.mode = READ_ONCE(sqe->len);
2640 return 0;
2641}
2642
2643static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2644 bool force_nonblock)
2645{
Jens Axboed63d1b52019-12-10 10:38:56 -07002646 /* fallocate always requiring blocking context */
2647 if (force_nonblock) {
2648 io_put_req(req);
2649 req->work.func = io_fallocate_finish;
2650 return -EAGAIN;
2651 }
2652
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002653 __io_fallocate(req, nxt);
Jens Axboed63d1b52019-12-10 10:38:56 -07002654 return 0;
2655}
2656
Jens Axboe15b71ab2019-12-11 11:20:36 -07002657static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2658{
Jens Axboef8748882020-01-08 17:47:02 -07002659 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002660 int ret;
2661
2662 if (sqe->ioprio || sqe->buf_index)
2663 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002664 if (sqe->flags & IOSQE_FIXED_FILE)
2665 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002666 if (req->flags & REQ_F_NEED_CLEANUP)
2667 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002668
2669 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002670 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002671 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002672 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002673
Jens Axboef8748882020-01-08 17:47:02 -07002674 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002675 if (IS_ERR(req->open.filename)) {
2676 ret = PTR_ERR(req->open.filename);
2677 req->open.filename = NULL;
2678 return ret;
2679 }
2680
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002681 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002682 return 0;
2683}
2684
Jens Axboecebdb982020-01-08 17:59:24 -07002685static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2686{
2687 struct open_how __user *how;
2688 const char __user *fname;
2689 size_t len;
2690 int ret;
2691
2692 if (sqe->ioprio || sqe->buf_index)
2693 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002694 if (sqe->flags & IOSQE_FIXED_FILE)
2695 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002696 if (req->flags & REQ_F_NEED_CLEANUP)
2697 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002698
2699 req->open.dfd = READ_ONCE(sqe->fd);
2700 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2701 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2702 len = READ_ONCE(sqe->len);
2703
2704 if (len < OPEN_HOW_SIZE_VER0)
2705 return -EINVAL;
2706
2707 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2708 len);
2709 if (ret)
2710 return ret;
2711
2712 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2713 req->open.how.flags |= O_LARGEFILE;
2714
2715 req->open.filename = getname(fname);
2716 if (IS_ERR(req->open.filename)) {
2717 ret = PTR_ERR(req->open.filename);
2718 req->open.filename = NULL;
2719 return ret;
2720 }
2721
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002722 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002723 return 0;
2724}
2725
2726static int io_openat2(struct io_kiocb *req, struct io_kiocb **nxt,
2727 bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002728{
2729 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002730 struct file *file;
2731 int ret;
2732
Jens Axboef86cd202020-01-29 13:46:44 -07002733 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002734 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002735
Jens Axboecebdb982020-01-08 17:59:24 -07002736 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002737 if (ret)
2738 goto err;
2739
Jens Axboecebdb982020-01-08 17:59:24 -07002740 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002741 if (ret < 0)
2742 goto err;
2743
2744 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2745 if (IS_ERR(file)) {
2746 put_unused_fd(ret);
2747 ret = PTR_ERR(file);
2748 } else {
2749 fsnotify_open(file);
2750 fd_install(ret, file);
2751 }
2752err:
2753 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002754 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002755 if (ret < 0)
2756 req_set_fail_links(req);
2757 io_cqring_add_event(req, ret);
2758 io_put_req_find_next(req, nxt);
2759 return 0;
2760}
2761
Jens Axboecebdb982020-01-08 17:59:24 -07002762static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2763 bool force_nonblock)
2764{
2765 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
2766 return io_openat2(req, nxt, force_nonblock);
2767}
2768
Jens Axboe3e4827b2020-01-08 15:18:09 -07002769static int io_epoll_ctl_prep(struct io_kiocb *req,
2770 const struct io_uring_sqe *sqe)
2771{
2772#if defined(CONFIG_EPOLL)
2773 if (sqe->ioprio || sqe->buf_index)
2774 return -EINVAL;
2775
2776 req->epoll.epfd = READ_ONCE(sqe->fd);
2777 req->epoll.op = READ_ONCE(sqe->len);
2778 req->epoll.fd = READ_ONCE(sqe->off);
2779
2780 if (ep_op_has_event(req->epoll.op)) {
2781 struct epoll_event __user *ev;
2782
2783 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
2784 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
2785 return -EFAULT;
2786 }
2787
2788 return 0;
2789#else
2790 return -EOPNOTSUPP;
2791#endif
2792}
2793
2794static int io_epoll_ctl(struct io_kiocb *req, struct io_kiocb **nxt,
2795 bool force_nonblock)
2796{
2797#if defined(CONFIG_EPOLL)
2798 struct io_epoll *ie = &req->epoll;
2799 int ret;
2800
2801 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
2802 if (force_nonblock && ret == -EAGAIN)
2803 return -EAGAIN;
2804
2805 if (ret < 0)
2806 req_set_fail_links(req);
2807 io_cqring_add_event(req, ret);
2808 io_put_req_find_next(req, nxt);
2809 return 0;
2810#else
2811 return -EOPNOTSUPP;
2812#endif
2813}
2814
Jens Axboec1ca7572019-12-25 22:18:28 -07002815static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2816{
2817#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2818 if (sqe->ioprio || sqe->buf_index || sqe->off)
2819 return -EINVAL;
2820
2821 req->madvise.addr = READ_ONCE(sqe->addr);
2822 req->madvise.len = READ_ONCE(sqe->len);
2823 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2824 return 0;
2825#else
2826 return -EOPNOTSUPP;
2827#endif
2828}
2829
2830static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2831 bool force_nonblock)
2832{
2833#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2834 struct io_madvise *ma = &req->madvise;
2835 int ret;
2836
2837 if (force_nonblock)
2838 return -EAGAIN;
2839
2840 ret = do_madvise(ma->addr, ma->len, ma->advice);
2841 if (ret < 0)
2842 req_set_fail_links(req);
2843 io_cqring_add_event(req, ret);
2844 io_put_req_find_next(req, nxt);
2845 return 0;
2846#else
2847 return -EOPNOTSUPP;
2848#endif
2849}
2850
Jens Axboe4840e412019-12-25 22:03:45 -07002851static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2852{
2853 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2854 return -EINVAL;
2855
2856 req->fadvise.offset = READ_ONCE(sqe->off);
2857 req->fadvise.len = READ_ONCE(sqe->len);
2858 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2859 return 0;
2860}
2861
2862static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2863 bool force_nonblock)
2864{
2865 struct io_fadvise *fa = &req->fadvise;
2866 int ret;
2867
Jens Axboe3e694262020-02-01 09:22:49 -07002868 if (force_nonblock) {
2869 switch (fa->advice) {
2870 case POSIX_FADV_NORMAL:
2871 case POSIX_FADV_RANDOM:
2872 case POSIX_FADV_SEQUENTIAL:
2873 break;
2874 default:
2875 return -EAGAIN;
2876 }
2877 }
Jens Axboe4840e412019-12-25 22:03:45 -07002878
2879 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2880 if (ret < 0)
2881 req_set_fail_links(req);
2882 io_cqring_add_event(req, ret);
2883 io_put_req_find_next(req, nxt);
2884 return 0;
2885}
2886
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002887static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2888{
Jens Axboef8748882020-01-08 17:47:02 -07002889 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002890 unsigned lookup_flags;
2891 int ret;
2892
2893 if (sqe->ioprio || sqe->buf_index)
2894 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002895 if (sqe->flags & IOSQE_FIXED_FILE)
2896 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002897 if (req->flags & REQ_F_NEED_CLEANUP)
2898 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002899
2900 req->open.dfd = READ_ONCE(sqe->fd);
2901 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002902 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002903 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07002904 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002905
Jens Axboec12cedf2020-01-08 17:41:21 -07002906 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002907 return -EINVAL;
2908
Jens Axboef8748882020-01-08 17:47:02 -07002909 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002910 if (IS_ERR(req->open.filename)) {
2911 ret = PTR_ERR(req->open.filename);
2912 req->open.filename = NULL;
2913 return ret;
2914 }
2915
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002916 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002917 return 0;
2918}
2919
2920static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2921 bool force_nonblock)
2922{
2923 struct io_open *ctx = &req->open;
2924 unsigned lookup_flags;
2925 struct path path;
2926 struct kstat stat;
2927 int ret;
2928
2929 if (force_nonblock)
2930 return -EAGAIN;
2931
Jens Axboec12cedf2020-01-08 17:41:21 -07002932 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002933 return -EINVAL;
2934
2935retry:
2936 /* filename_lookup() drops it, keep a reference */
2937 ctx->filename->refcnt++;
2938
2939 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2940 NULL);
2941 if (ret)
2942 goto err;
2943
Jens Axboec12cedf2020-01-08 17:41:21 -07002944 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002945 path_put(&path);
2946 if (retry_estale(ret, lookup_flags)) {
2947 lookup_flags |= LOOKUP_REVAL;
2948 goto retry;
2949 }
2950 if (!ret)
2951 ret = cp_statx(&stat, ctx->buffer);
2952err:
2953 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002954 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002955 if (ret < 0)
2956 req_set_fail_links(req);
2957 io_cqring_add_event(req, ret);
2958 io_put_req_find_next(req, nxt);
2959 return 0;
2960}
2961
Jens Axboeb5dba592019-12-11 14:02:38 -07002962static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2963{
2964 /*
2965 * If we queue this for async, it must not be cancellable. That would
2966 * leave the 'file' in an undeterminate state.
2967 */
2968 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2969
2970 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2971 sqe->rw_flags || sqe->buf_index)
2972 return -EINVAL;
2973 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002974 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07002975
2976 req->close.fd = READ_ONCE(sqe->fd);
2977 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03002978 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07002979 return -EBADF;
2980
2981 return 0;
2982}
2983
Pavel Begunkova93b3332020-02-08 14:04:34 +03002984/* only called when __close_fd_get_file() is done */
2985static void __io_close_finish(struct io_kiocb *req, struct io_kiocb **nxt)
2986{
2987 int ret;
2988
2989 ret = filp_close(req->close.put_file, req->work.files);
2990 if (ret < 0)
2991 req_set_fail_links(req);
2992 io_cqring_add_event(req, ret);
2993 fput(req->close.put_file);
2994 io_put_req_find_next(req, nxt);
2995}
2996
Jens Axboeb5dba592019-12-11 14:02:38 -07002997static void io_close_finish(struct io_wq_work **workptr)
2998{
2999 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3000 struct io_kiocb *nxt = NULL;
3001
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003002 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkova93b3332020-02-08 14:04:34 +03003003 __io_close_finish(req, &nxt);
Jens Axboeb5dba592019-12-11 14:02:38 -07003004 if (nxt)
3005 io_wq_assign_next(workptr, nxt);
3006}
3007
3008static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
3009 bool force_nonblock)
3010{
3011 int ret;
3012
3013 req->close.put_file = NULL;
3014 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3015 if (ret < 0)
3016 return ret;
3017
3018 /* if the file has a flush method, be safe and punt to async */
Jens Axboef86cd202020-01-29 13:46:44 -07003019 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker())
Jens Axboeb5dba592019-12-11 14:02:38 -07003020 goto eagain;
Jens Axboeb5dba592019-12-11 14:02:38 -07003021
3022 /*
3023 * No ->flush(), safely close from here and just punt the
3024 * fput() to async context.
3025 */
Pavel Begunkova93b3332020-02-08 14:04:34 +03003026 __io_close_finish(req, nxt);
3027 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003028eagain:
3029 req->work.func = io_close_finish;
Jens Axboe1a417f42020-01-31 17:16:48 -07003030 /*
3031 * Do manual async queue here to avoid grabbing files - we don't
3032 * need the files, and it'll cause io_close_finish() to close
3033 * the file again and cause a double CQE entry for this request
3034 */
3035 io_queue_async_work(req);
3036 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003037}
3038
Jens Axboe3529d8c2019-12-19 18:24:38 -07003039static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003040{
3041 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003042
3043 if (!req->file)
3044 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003045
3046 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3047 return -EINVAL;
3048 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3049 return -EINVAL;
3050
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003051 req->sync.off = READ_ONCE(sqe->off);
3052 req->sync.len = READ_ONCE(sqe->len);
3053 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003054 return 0;
3055}
3056
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003057static void __io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003058{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003059 int ret;
3060
Jens Axboe9adbd452019-12-20 08:45:55 -07003061 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003062 req->sync.flags);
3063 if (ret < 0)
3064 req_set_fail_links(req);
3065 io_cqring_add_event(req, ret);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003066 io_put_req_find_next(req, nxt);
3067}
3068
3069
3070static void io_sync_file_range_finish(struct io_wq_work **workptr)
3071{
3072 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3073 struct io_kiocb *nxt = NULL;
3074
3075 if (io_req_cancelled(req))
3076 return;
3077 __io_sync_file_range(req, &nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003078 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003079 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003080}
3081
Jens Axboefc4df992019-12-10 14:38:45 -07003082static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003083 bool force_nonblock)
3084{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003085 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003086 if (force_nonblock) {
3087 io_put_req(req);
3088 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003089 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003090 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003091
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003092 __io_sync_file_range(req, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003093 return 0;
3094}
3095
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003096static int io_setup_async_msg(struct io_kiocb *req,
3097 struct io_async_msghdr *kmsg)
3098{
3099 if (req->io)
3100 return -EAGAIN;
3101 if (io_alloc_async_ctx(req)) {
3102 if (kmsg->iov != kmsg->fast_iov)
3103 kfree(kmsg->iov);
3104 return -ENOMEM;
3105 }
3106 req->flags |= REQ_F_NEED_CLEANUP;
3107 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3108 return -EAGAIN;
3109}
3110
Jens Axboe3529d8c2019-12-19 18:24:38 -07003111static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003112{
Jens Axboe03b12302019-12-02 18:50:25 -07003113#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003114 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003115 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003116 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003117
Jens Axboee47293f2019-12-20 08:58:21 -07003118 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3119 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003120 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003121
Jens Axboed8768362020-02-27 14:17:49 -07003122#ifdef CONFIG_COMPAT
3123 if (req->ctx->compat)
3124 sr->msg_flags |= MSG_CMSG_COMPAT;
3125#endif
3126
Jens Axboefddafac2020-01-04 20:19:44 -07003127 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003128 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003129 /* iovec is already imported */
3130 if (req->flags & REQ_F_NEED_CLEANUP)
3131 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003132
Jens Axboed9688562019-12-09 19:35:20 -07003133 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003134 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003135 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003136 if (!ret)
3137 req->flags |= REQ_F_NEED_CLEANUP;
3138 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003139#else
Jens Axboee47293f2019-12-20 08:58:21 -07003140 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003141#endif
3142}
3143
Jens Axboefc4df992019-12-10 14:38:45 -07003144static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3145 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003146{
3147#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003148 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003149 struct socket *sock;
3150 int ret;
3151
3152 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3153 return -EINVAL;
3154
3155 sock = sock_from_file(req->file, &ret);
3156 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003157 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003158 unsigned flags;
3159
Jens Axboe03b12302019-12-02 18:50:25 -07003160 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003161 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003162 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003163 /* if iov is set, it's allocated already */
3164 if (!kmsg->iov)
3165 kmsg->iov = kmsg->fast_iov;
3166 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003167 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003168 struct io_sr_msg *sr = &req->sr_msg;
3169
Jens Axboe0b416c32019-12-15 10:57:46 -07003170 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003171 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003172
3173 io.msg.iov = io.msg.fast_iov;
3174 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3175 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003176 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003177 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003178 }
3179
Jens Axboee47293f2019-12-20 08:58:21 -07003180 flags = req->sr_msg.msg_flags;
3181 if (flags & MSG_DONTWAIT)
3182 req->flags |= REQ_F_NOWAIT;
3183 else if (force_nonblock)
3184 flags |= MSG_DONTWAIT;
3185
Jens Axboe0b416c32019-12-15 10:57:46 -07003186 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003187 if (force_nonblock && ret == -EAGAIN)
3188 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003189 if (ret == -ERESTARTSYS)
3190 ret = -EINTR;
3191 }
3192
Pavel Begunkov1e950812020-02-06 19:51:16 +03003193 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003194 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003195 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003196 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003197 if (ret < 0)
3198 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003199 io_put_req_find_next(req, nxt);
3200 return 0;
3201#else
3202 return -EOPNOTSUPP;
3203#endif
3204}
3205
Jens Axboefddafac2020-01-04 20:19:44 -07003206static int io_send(struct io_kiocb *req, struct io_kiocb **nxt,
3207 bool force_nonblock)
3208{
3209#if defined(CONFIG_NET)
3210 struct socket *sock;
3211 int ret;
3212
3213 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3214 return -EINVAL;
3215
3216 sock = sock_from_file(req->file, &ret);
3217 if (sock) {
3218 struct io_sr_msg *sr = &req->sr_msg;
3219 struct msghdr msg;
3220 struct iovec iov;
3221 unsigned flags;
3222
3223 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3224 &msg.msg_iter);
3225 if (ret)
3226 return ret;
3227
3228 msg.msg_name = NULL;
3229 msg.msg_control = NULL;
3230 msg.msg_controllen = 0;
3231 msg.msg_namelen = 0;
3232
3233 flags = req->sr_msg.msg_flags;
3234 if (flags & MSG_DONTWAIT)
3235 req->flags |= REQ_F_NOWAIT;
3236 else if (force_nonblock)
3237 flags |= MSG_DONTWAIT;
3238
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003239 msg.msg_flags = flags;
3240 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003241 if (force_nonblock && ret == -EAGAIN)
3242 return -EAGAIN;
3243 if (ret == -ERESTARTSYS)
3244 ret = -EINTR;
3245 }
3246
3247 io_cqring_add_event(req, ret);
3248 if (ret < 0)
3249 req_set_fail_links(req);
3250 io_put_req_find_next(req, nxt);
3251 return 0;
3252#else
3253 return -EOPNOTSUPP;
3254#endif
3255}
3256
Jens Axboe3529d8c2019-12-19 18:24:38 -07003257static int io_recvmsg_prep(struct io_kiocb *req,
3258 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003259{
3260#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003261 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003262 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003263 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003264
Jens Axboe3529d8c2019-12-19 18:24:38 -07003265 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3266 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003267 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003268
Jens Axboed8768362020-02-27 14:17:49 -07003269#ifdef CONFIG_COMPAT
3270 if (req->ctx->compat)
3271 sr->msg_flags |= MSG_CMSG_COMPAT;
3272#endif
3273
Jens Axboefddafac2020-01-04 20:19:44 -07003274 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003275 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003276 /* iovec is already imported */
3277 if (req->flags & REQ_F_NEED_CLEANUP)
3278 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003279
Jens Axboed9688562019-12-09 19:35:20 -07003280 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003281 ret = recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003282 &io->msg.uaddr, &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003283 if (!ret)
3284 req->flags |= REQ_F_NEED_CLEANUP;
3285 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003286#else
Jens Axboee47293f2019-12-20 08:58:21 -07003287 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003288#endif
3289}
3290
Jens Axboefc4df992019-12-10 14:38:45 -07003291static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3292 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003293{
3294#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003295 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003296 struct socket *sock;
3297 int ret;
3298
3299 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3300 return -EINVAL;
3301
3302 sock = sock_from_file(req->file, &ret);
3303 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003304 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003305 unsigned flags;
3306
Jens Axboe03b12302019-12-02 18:50:25 -07003307 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003308 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003309 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003310 /* if iov is set, it's allocated already */
3311 if (!kmsg->iov)
3312 kmsg->iov = kmsg->fast_iov;
3313 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003314 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003315 struct io_sr_msg *sr = &req->sr_msg;
3316
Jens Axboe0b416c32019-12-15 10:57:46 -07003317 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003318 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003319
3320 io.msg.iov = io.msg.fast_iov;
3321 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
3322 sr->msg_flags, &io.msg.uaddr,
3323 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003324 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003325 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003326 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003327
Jens Axboee47293f2019-12-20 08:58:21 -07003328 flags = req->sr_msg.msg_flags;
3329 if (flags & MSG_DONTWAIT)
3330 req->flags |= REQ_F_NOWAIT;
3331 else if (force_nonblock)
3332 flags |= MSG_DONTWAIT;
3333
3334 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3335 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003336 if (force_nonblock && ret == -EAGAIN)
3337 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003338 if (ret == -ERESTARTSYS)
3339 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003340 }
3341
Pavel Begunkov1e950812020-02-06 19:51:16 +03003342 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003343 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003344 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003345 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003346 if (ret < 0)
3347 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003348 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003349 return 0;
3350#else
3351 return -EOPNOTSUPP;
3352#endif
3353}
3354
Jens Axboefddafac2020-01-04 20:19:44 -07003355static int io_recv(struct io_kiocb *req, struct io_kiocb **nxt,
3356 bool force_nonblock)
3357{
3358#if defined(CONFIG_NET)
3359 struct socket *sock;
3360 int ret;
3361
3362 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3363 return -EINVAL;
3364
3365 sock = sock_from_file(req->file, &ret);
3366 if (sock) {
3367 struct io_sr_msg *sr = &req->sr_msg;
3368 struct msghdr msg;
3369 struct iovec iov;
3370 unsigned flags;
3371
3372 ret = import_single_range(READ, sr->buf, sr->len, &iov,
3373 &msg.msg_iter);
3374 if (ret)
3375 return ret;
3376
3377 msg.msg_name = NULL;
3378 msg.msg_control = NULL;
3379 msg.msg_controllen = 0;
3380 msg.msg_namelen = 0;
3381 msg.msg_iocb = NULL;
3382 msg.msg_flags = 0;
3383
3384 flags = req->sr_msg.msg_flags;
3385 if (flags & MSG_DONTWAIT)
3386 req->flags |= REQ_F_NOWAIT;
3387 else if (force_nonblock)
3388 flags |= MSG_DONTWAIT;
3389
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003390 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003391 if (force_nonblock && ret == -EAGAIN)
3392 return -EAGAIN;
3393 if (ret == -ERESTARTSYS)
3394 ret = -EINTR;
3395 }
3396
3397 io_cqring_add_event(req, ret);
3398 if (ret < 0)
3399 req_set_fail_links(req);
3400 io_put_req_find_next(req, nxt);
3401 return 0;
3402#else
3403 return -EOPNOTSUPP;
3404#endif
3405}
3406
3407
Jens Axboe3529d8c2019-12-19 18:24:38 -07003408static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003409{
3410#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003411 struct io_accept *accept = &req->accept;
3412
Jens Axboe17f2fe32019-10-17 14:42:58 -06003413 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3414 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003415 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003416 return -EINVAL;
3417
Jens Axboed55e5f52019-12-11 16:12:15 -07003418 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3419 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003420 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003421 return 0;
3422#else
3423 return -EOPNOTSUPP;
3424#endif
3425}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003426
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003427#if defined(CONFIG_NET)
3428static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3429 bool force_nonblock)
3430{
3431 struct io_accept *accept = &req->accept;
3432 unsigned file_flags;
3433 int ret;
3434
3435 file_flags = force_nonblock ? O_NONBLOCK : 0;
3436 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3437 accept->addr_len, accept->flags);
3438 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003439 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003440 if (ret == -ERESTARTSYS)
3441 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003442 if (ret < 0)
3443 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003444 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003445 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003446 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003447}
3448
3449static void io_accept_finish(struct io_wq_work **workptr)
3450{
3451 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3452 struct io_kiocb *nxt = NULL;
3453
Jens Axboee441d1c2020-02-20 09:59:02 -07003454 io_put_req(req);
3455
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003456 if (io_req_cancelled(req))
3457 return;
3458 __io_accept(req, &nxt, false);
3459 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003460 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003461}
3462#endif
3463
3464static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3465 bool force_nonblock)
3466{
3467#if defined(CONFIG_NET)
3468 int ret;
3469
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003470 ret = __io_accept(req, nxt, force_nonblock);
3471 if (ret == -EAGAIN && force_nonblock) {
3472 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003473 return -EAGAIN;
3474 }
3475 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003476#else
3477 return -EOPNOTSUPP;
3478#endif
3479}
3480
Jens Axboe3529d8c2019-12-19 18:24:38 -07003481static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003482{
3483#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003484 struct io_connect *conn = &req->connect;
3485 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003486
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003487 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3488 return -EINVAL;
3489 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3490 return -EINVAL;
3491
Jens Axboe3529d8c2019-12-19 18:24:38 -07003492 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3493 conn->addr_len = READ_ONCE(sqe->addr2);
3494
3495 if (!io)
3496 return 0;
3497
3498 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003499 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003500#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003501 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07003502#endif
3503}
3504
Jens Axboefc4df992019-12-10 14:38:45 -07003505static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3506 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003507{
3508#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07003509 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003510 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003511 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003512
Jens Axboef499a022019-12-02 16:28:46 -07003513 if (req->io) {
3514 io = req->io;
3515 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003516 ret = move_addr_to_kernel(req->connect.addr,
3517 req->connect.addr_len,
3518 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003519 if (ret)
3520 goto out;
3521 io = &__io;
3522 }
3523
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003524 file_flags = force_nonblock ? O_NONBLOCK : 0;
3525
3526 ret = __sys_connect_file(req->file, &io->connect.address,
3527 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003528 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003529 if (req->io)
3530 return -EAGAIN;
3531 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003532 ret = -ENOMEM;
3533 goto out;
3534 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003535 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003536 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003537 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003538 if (ret == -ERESTARTSYS)
3539 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07003540out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003541 if (ret < 0)
3542 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003543 io_cqring_add_event(req, ret);
3544 io_put_req_find_next(req, nxt);
3545 return 0;
3546#else
3547 return -EOPNOTSUPP;
3548#endif
3549}
3550
Jens Axboeb41e9852020-02-17 09:52:41 -07003551static bool io_poll_remove_one(struct io_kiocb *req)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003552{
3553 struct io_poll_iocb *poll = &req->poll;
Jens Axboeb41e9852020-02-17 09:52:41 -07003554 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003555
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);
Jens Axboeb41e9852020-02-17 09:52:41 -07003560 do_complete = true;
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 Axboeb41e9852020-02-17 09:52:41 -07003564 if (do_complete) {
3565 io_cqring_fill_event(req, -ECANCELED);
3566 io_commit_cqring(req->ctx);
3567 req->flags |= REQ_F_COMP_LOCKED;
3568 io_put_req(req);
3569 }
3570
3571 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003572}
3573
3574static void io_poll_remove_all(struct io_ring_ctx *ctx)
3575{
Jens Axboe78076bb2019-12-04 19:56:40 -07003576 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003577 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07003578 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003579
3580 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003581 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3582 struct hlist_head *list;
3583
3584 list = &ctx->cancel_hash[i];
3585 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3586 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003587 }
3588 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07003589
3590 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003591}
3592
Jens Axboe47f46762019-11-09 17:43:02 -07003593static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3594{
Jens Axboe78076bb2019-12-04 19:56:40 -07003595 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07003596 struct io_kiocb *req;
3597
Jens Axboe78076bb2019-12-04 19:56:40 -07003598 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3599 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07003600 if (sqe_addr != req->user_data)
3601 continue;
3602 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07003603 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07003604 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07003605 }
3606
3607 return -ENOENT;
3608}
3609
Jens Axboe3529d8c2019-12-19 18:24:38 -07003610static int io_poll_remove_prep(struct io_kiocb *req,
3611 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003612{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003613 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3614 return -EINVAL;
3615 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3616 sqe->poll_events)
3617 return -EINVAL;
3618
Jens Axboe0969e782019-12-17 18:40:57 -07003619 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07003620 return 0;
3621}
3622
3623/*
3624 * Find a running poll command that matches one specified in sqe->addr,
3625 * and remove it if found.
3626 */
3627static int io_poll_remove(struct io_kiocb *req)
3628{
3629 struct io_ring_ctx *ctx = req->ctx;
3630 u64 addr;
3631 int ret;
3632
Jens Axboe0969e782019-12-17 18:40:57 -07003633 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003634 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07003635 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003636 spin_unlock_irq(&ctx->completion_lock);
3637
Jens Axboe78e19bb2019-11-06 15:21:34 -07003638 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003639 if (ret < 0)
3640 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003641 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003642 return 0;
3643}
3644
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003645static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003646{
Jackie Liua197f662019-11-08 08:09:12 -07003647 struct io_ring_ctx *ctx = req->ctx;
3648
Jens Axboe8c838782019-03-12 15:48:16 -06003649 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03003650 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06003651 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003652}
3653
Jens Axboeb41e9852020-02-17 09:52:41 -07003654static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003655{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003656 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003657
Jens Axboe221c5eb2019-01-17 09:41:58 -07003658 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003659 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07003660 io_poll_complete(req, req->result, 0);
3661 req->flags |= REQ_F_COMP_LOCKED;
3662 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003663 spin_unlock_irq(&ctx->completion_lock);
3664
Jens Axboe8c838782019-03-12 15:48:16 -06003665 io_cqring_ev_posted(ctx);
Jens Axboeb41e9852020-02-17 09:52:41 -07003666}
Jens Axboe89723d02019-11-05 15:32:58 -07003667
Jens Axboeb41e9852020-02-17 09:52:41 -07003668static void io_poll_task_func(struct callback_head *cb)
3669{
3670 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
3671 struct io_kiocb *nxt = NULL;
3672
3673 io_poll_task_handler(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07003674 if (nxt)
Jens Axboeb41e9852020-02-17 09:52:41 -07003675 __io_queue_sqe(nxt, NULL);
Jens Axboef0b493e2020-02-01 21:30:11 -07003676}
3677
Jens Axboe221c5eb2019-01-17 09:41:58 -07003678static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3679 void *key)
3680{
Jens Axboec2f2eb72020-02-10 09:07:05 -07003681 struct io_kiocb *req = wait->private;
3682 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003683 __poll_t mask = key_to_poll(key);
Jens Axboeb41e9852020-02-17 09:52:41 -07003684 struct task_struct *tsk;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003685
3686 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06003687 if (mask && !(mask & poll->events))
3688 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003689
Jens Axboe392edb42019-12-09 17:52:20 -07003690 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003691
Jens Axboeb41e9852020-02-17 09:52:41 -07003692 tsk = req->task;
3693 req->result = mask;
3694 init_task_work(&req->task_work, io_poll_task_func);
3695 task_work_add(tsk, &req->task_work, true);
3696 wake_up_process(tsk);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003697 return 1;
3698}
3699
3700struct io_poll_table {
3701 struct poll_table_struct pt;
3702 struct io_kiocb *req;
3703 int error;
3704};
3705
3706static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3707 struct poll_table_struct *p)
3708{
3709 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3710
3711 if (unlikely(pt->req->poll.head)) {
3712 pt->error = -EINVAL;
3713 return;
3714 }
3715
3716 pt->error = 0;
3717 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07003718 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003719}
3720
Jens Axboeeac406c2019-11-14 12:09:58 -07003721static void io_poll_req_insert(struct io_kiocb *req)
3722{
3723 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07003724 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07003725
Jens Axboe78076bb2019-12-04 19:56:40 -07003726 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3727 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07003728}
3729
Jens Axboe3529d8c2019-12-19 18:24:38 -07003730static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003731{
3732 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003733 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003734
3735 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3736 return -EINVAL;
3737 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3738 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003739 if (!poll->file)
3740 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003741
Jens Axboe221c5eb2019-01-17 09:41:58 -07003742 events = READ_ONCE(sqe->poll_events);
3743 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07003744
3745 /* task will wait for requests on exit, don't need a ref */
3746 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07003747 return 0;
3748}
3749
3750static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3751{
3752 struct io_poll_iocb *poll = &req->poll;
3753 struct io_ring_ctx *ctx = req->ctx;
3754 struct io_poll_table ipt;
3755 bool cancel = false;
3756 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07003757
Jens Axboe78076bb2019-12-04 19:56:40 -07003758 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003759
Jens Axboe221c5eb2019-01-17 09:41:58 -07003760 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06003761 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003762 poll->canceled = false;
3763
3764 ipt.pt._qproc = io_poll_queue_proc;
3765 ipt.pt._key = poll->events;
3766 ipt.req = req;
3767 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3768
3769 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07003770 INIT_LIST_HEAD(&poll->wait.entry);
3771 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
Jens Axboec2f2eb72020-02-10 09:07:05 -07003772 poll->wait.private = req;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003773
Jens Axboe36703242019-07-25 10:20:18 -06003774 INIT_LIST_HEAD(&req->list);
3775
Jens Axboe221c5eb2019-01-17 09:41:58 -07003776 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003777
3778 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06003779 if (likely(poll->head)) {
3780 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07003781 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06003782 if (ipt.error)
3783 cancel = true;
3784 ipt.error = 0;
3785 mask = 0;
3786 }
3787 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07003788 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003789 else if (cancel)
3790 WRITE_ONCE(poll->canceled, true);
3791 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07003792 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003793 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003794 }
Jens Axboe8c838782019-03-12 15:48:16 -06003795 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06003796 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003797 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06003798 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07003799 spin_unlock_irq(&ctx->completion_lock);
3800
Jens Axboe8c838782019-03-12 15:48:16 -06003801 if (mask) {
3802 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003803 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003804 }
Jens Axboe8c838782019-03-12 15:48:16 -06003805 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003806}
3807
Jens Axboe5262f562019-09-17 12:26:57 -06003808static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3809{
Jens Axboead8a48a2019-11-15 08:49:11 -07003810 struct io_timeout_data *data = container_of(timer,
3811 struct io_timeout_data, timer);
3812 struct io_kiocb *req = data->req;
3813 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06003814 unsigned long flags;
3815
Jens Axboe5262f562019-09-17 12:26:57 -06003816 atomic_inc(&ctx->cq_timeouts);
3817
3818 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08003819 /*
Jens Axboe11365042019-10-16 09:08:32 -06003820 * We could be racing with timeout deletion. If the list is empty,
3821 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08003822 */
Jens Axboe842f9612019-10-29 12:34:10 -06003823 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06003824 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06003825
Jens Axboe11365042019-10-16 09:08:32 -06003826 /*
3827 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08003828 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06003829 * pointer will be increased, otherwise other timeout reqs may
3830 * return in advance without waiting for enough wait_nr.
3831 */
3832 prev = req;
3833 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3834 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06003835 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06003836 }
Jens Axboe842f9612019-10-29 12:34:10 -06003837
Jens Axboe78e19bb2019-11-06 15:21:34 -07003838 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06003839 io_commit_cqring(ctx);
3840 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3841
3842 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003843 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003844 io_put_req(req);
3845 return HRTIMER_NORESTART;
3846}
3847
Jens Axboe47f46762019-11-09 17:43:02 -07003848static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3849{
3850 struct io_kiocb *req;
3851 int ret = -ENOENT;
3852
3853 list_for_each_entry(req, &ctx->timeout_list, list) {
3854 if (user_data == req->user_data) {
3855 list_del_init(&req->list);
3856 ret = 0;
3857 break;
3858 }
3859 }
3860
3861 if (ret == -ENOENT)
3862 return ret;
3863
Jens Axboe2d283902019-12-04 11:08:05 -07003864 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07003865 if (ret == -1)
3866 return -EALREADY;
3867
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003868 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003869 io_cqring_fill_event(req, -ECANCELED);
3870 io_put_req(req);
3871 return 0;
3872}
3873
Jens Axboe3529d8c2019-12-19 18:24:38 -07003874static int io_timeout_remove_prep(struct io_kiocb *req,
3875 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07003876{
Jens Axboeb29472e2019-12-17 18:50:29 -07003877 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3878 return -EINVAL;
3879 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3880 return -EINVAL;
3881
3882 req->timeout.addr = READ_ONCE(sqe->addr);
3883 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3884 if (req->timeout.flags)
3885 return -EINVAL;
3886
Jens Axboeb29472e2019-12-17 18:50:29 -07003887 return 0;
3888}
3889
Jens Axboe11365042019-10-16 09:08:32 -06003890/*
3891 * Remove or update an existing timeout command
3892 */
Jens Axboefc4df992019-12-10 14:38:45 -07003893static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06003894{
3895 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07003896 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06003897
Jens Axboe11365042019-10-16 09:08:32 -06003898 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07003899 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06003900
Jens Axboe47f46762019-11-09 17:43:02 -07003901 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06003902 io_commit_cqring(ctx);
3903 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003904 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003905 if (ret < 0)
3906 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003907 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06003908 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06003909}
3910
Jens Axboe3529d8c2019-12-19 18:24:38 -07003911static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07003912 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06003913{
Jens Axboead8a48a2019-11-15 08:49:11 -07003914 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06003915 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06003916
Jens Axboead8a48a2019-11-15 08:49:11 -07003917 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06003918 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07003919 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06003920 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07003921 if (sqe->off && is_timeout_link)
3922 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06003923 flags = READ_ONCE(sqe->timeout_flags);
3924 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06003925 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06003926
Jens Axboe26a61672019-12-20 09:02:01 -07003927 req->timeout.count = READ_ONCE(sqe->off);
3928
Jens Axboe3529d8c2019-12-19 18:24:38 -07003929 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07003930 return -ENOMEM;
3931
3932 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07003933 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07003934 req->flags |= REQ_F_TIMEOUT;
3935
3936 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06003937 return -EFAULT;
3938
Jens Axboe11365042019-10-16 09:08:32 -06003939 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07003940 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06003941 else
Jens Axboead8a48a2019-11-15 08:49:11 -07003942 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06003943
Jens Axboead8a48a2019-11-15 08:49:11 -07003944 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
3945 return 0;
3946}
3947
Jens Axboefc4df992019-12-10 14:38:45 -07003948static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07003949{
3950 unsigned count;
3951 struct io_ring_ctx *ctx = req->ctx;
3952 struct io_timeout_data *data;
3953 struct list_head *entry;
3954 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07003955
Jens Axboe2d283902019-12-04 11:08:05 -07003956 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003957
Jens Axboe5262f562019-09-17 12:26:57 -06003958 /*
3959 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07003960 * timeout event to be satisfied. If it isn't set, then this is
3961 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06003962 */
Jens Axboe26a61672019-12-20 09:02:01 -07003963 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003964 if (!count) {
3965 req->flags |= REQ_F_TIMEOUT_NOSEQ;
3966 spin_lock_irq(&ctx->completion_lock);
3967 entry = ctx->timeout_list.prev;
3968 goto add;
3969 }
Jens Axboe5262f562019-09-17 12:26:57 -06003970
3971 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07003972 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06003973
3974 /*
3975 * Insertion sort, ensuring the first entry in the list is always
3976 * the one we need first.
3977 */
Jens Axboe5262f562019-09-17 12:26:57 -06003978 spin_lock_irq(&ctx->completion_lock);
3979 list_for_each_prev(entry, &ctx->timeout_list) {
3980 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08003981 unsigned nxt_sq_head;
3982 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07003983 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06003984
Jens Axboe93bd25b2019-11-11 23:34:31 -07003985 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
3986 continue;
3987
yangerkun5da0fb12019-10-15 21:59:29 +08003988 /*
3989 * Since cached_sq_head + count - 1 can overflow, use type long
3990 * long to store it.
3991 */
3992 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03003993 nxt_sq_head = nxt->sequence - nxt_offset + 1;
3994 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08003995
3996 /*
3997 * cached_sq_head may overflow, and it will never overflow twice
3998 * once there is some timeout req still be valid.
3999 */
4000 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004001 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004002
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004003 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004004 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004005
4006 /*
4007 * Sequence of reqs after the insert one and itself should
4008 * be adjusted because each timeout req consumes a slot.
4009 */
4010 span++;
4011 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004012 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004013 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004014add:
Jens Axboe5262f562019-09-17 12:26:57 -06004015 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004016 data->timer.function = io_timeout_fn;
4017 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004018 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004019 return 0;
4020}
4021
Jens Axboe62755e32019-10-28 21:49:21 -06004022static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004023{
Jens Axboe62755e32019-10-28 21:49:21 -06004024 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004025
Jens Axboe62755e32019-10-28 21:49:21 -06004026 return req->user_data == (unsigned long) data;
4027}
4028
Jens Axboee977d6d2019-11-05 12:39:45 -07004029static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004030{
Jens Axboe62755e32019-10-28 21:49:21 -06004031 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004032 int ret = 0;
4033
Jens Axboe62755e32019-10-28 21:49:21 -06004034 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4035 switch (cancel_ret) {
4036 case IO_WQ_CANCEL_OK:
4037 ret = 0;
4038 break;
4039 case IO_WQ_CANCEL_RUNNING:
4040 ret = -EALREADY;
4041 break;
4042 case IO_WQ_CANCEL_NOTFOUND:
4043 ret = -ENOENT;
4044 break;
4045 }
4046
Jens Axboee977d6d2019-11-05 12:39:45 -07004047 return ret;
4048}
4049
Jens Axboe47f46762019-11-09 17:43:02 -07004050static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4051 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004052 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004053{
4054 unsigned long flags;
4055 int ret;
4056
4057 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4058 if (ret != -ENOENT) {
4059 spin_lock_irqsave(&ctx->completion_lock, flags);
4060 goto done;
4061 }
4062
4063 spin_lock_irqsave(&ctx->completion_lock, flags);
4064 ret = io_timeout_cancel(ctx, sqe_addr);
4065 if (ret != -ENOENT)
4066 goto done;
4067 ret = io_poll_cancel(ctx, sqe_addr);
4068done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004069 if (!ret)
4070 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004071 io_cqring_fill_event(req, ret);
4072 io_commit_cqring(ctx);
4073 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4074 io_cqring_ev_posted(ctx);
4075
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004076 if (ret < 0)
4077 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004078 io_put_req_find_next(req, nxt);
4079}
4080
Jens Axboe3529d8c2019-12-19 18:24:38 -07004081static int io_async_cancel_prep(struct io_kiocb *req,
4082 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004083{
Jens Axboefbf23842019-12-17 18:45:56 -07004084 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004085 return -EINVAL;
4086 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4087 sqe->cancel_flags)
4088 return -EINVAL;
4089
Jens Axboefbf23842019-12-17 18:45:56 -07004090 req->cancel.addr = READ_ONCE(sqe->addr);
4091 return 0;
4092}
4093
4094static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
4095{
4096 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004097
4098 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004099 return 0;
4100}
4101
Jens Axboe05f3fb32019-12-09 11:22:50 -07004102static int io_files_update_prep(struct io_kiocb *req,
4103 const struct io_uring_sqe *sqe)
4104{
4105 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4106 return -EINVAL;
4107
4108 req->files_update.offset = READ_ONCE(sqe->off);
4109 req->files_update.nr_args = READ_ONCE(sqe->len);
4110 if (!req->files_update.nr_args)
4111 return -EINVAL;
4112 req->files_update.arg = READ_ONCE(sqe->addr);
4113 return 0;
4114}
4115
4116static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4117{
4118 struct io_ring_ctx *ctx = req->ctx;
4119 struct io_uring_files_update up;
4120 int ret;
4121
Jens Axboef86cd202020-01-29 13:46:44 -07004122 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004123 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004124
4125 up.offset = req->files_update.offset;
4126 up.fds = req->files_update.arg;
4127
4128 mutex_lock(&ctx->uring_lock);
4129 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4130 mutex_unlock(&ctx->uring_lock);
4131
4132 if (ret < 0)
4133 req_set_fail_links(req);
4134 io_cqring_add_event(req, ret);
4135 io_put_req(req);
4136 return 0;
4137}
4138
Jens Axboe3529d8c2019-12-19 18:24:38 -07004139static int io_req_defer_prep(struct io_kiocb *req,
4140 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004141{
Jens Axboee7815732019-12-17 19:45:06 -07004142 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004143
Jens Axboef86cd202020-01-29 13:46:44 -07004144 if (io_op_defs[req->opcode].file_table) {
4145 ret = io_grab_files(req);
4146 if (unlikely(ret))
4147 return ret;
4148 }
4149
Jens Axboecccf0ee2020-01-27 16:34:48 -07004150 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4151
Jens Axboed625c6e2019-12-17 19:53:05 -07004152 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004153 case IORING_OP_NOP:
4154 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004155 case IORING_OP_READV:
4156 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004157 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004158 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004159 break;
4160 case IORING_OP_WRITEV:
4161 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004162 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004163 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004164 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004165 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004166 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004167 break;
4168 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004169 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004170 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004171 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004172 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004173 break;
4174 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004175 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004176 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004177 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004178 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004179 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004180 break;
4181 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004182 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004183 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004184 break;
Jens Axboef499a022019-12-02 16:28:46 -07004185 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004186 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004187 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004188 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004189 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004190 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004191 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004192 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004193 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004194 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004195 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004196 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004197 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004198 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004199 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004200 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004201 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004202 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004203 case IORING_OP_FALLOCATE:
4204 ret = io_fallocate_prep(req, sqe);
4205 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004206 case IORING_OP_OPENAT:
4207 ret = io_openat_prep(req, sqe);
4208 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004209 case IORING_OP_CLOSE:
4210 ret = io_close_prep(req, sqe);
4211 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004212 case IORING_OP_FILES_UPDATE:
4213 ret = io_files_update_prep(req, sqe);
4214 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004215 case IORING_OP_STATX:
4216 ret = io_statx_prep(req, sqe);
4217 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004218 case IORING_OP_FADVISE:
4219 ret = io_fadvise_prep(req, sqe);
4220 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004221 case IORING_OP_MADVISE:
4222 ret = io_madvise_prep(req, sqe);
4223 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004224 case IORING_OP_OPENAT2:
4225 ret = io_openat2_prep(req, sqe);
4226 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004227 case IORING_OP_EPOLL_CTL:
4228 ret = io_epoll_ctl_prep(req, sqe);
4229 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004230 case IORING_OP_SPLICE:
4231 ret = io_splice_prep(req, sqe);
4232 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004233 default:
Jens Axboee7815732019-12-17 19:45:06 -07004234 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4235 req->opcode);
4236 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004237 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004238 }
4239
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004240 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004241}
4242
Jens Axboe3529d8c2019-12-19 18:24:38 -07004243static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004244{
Jackie Liua197f662019-11-08 08:09:12 -07004245 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004246 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004247
Bob Liu9d858b22019-11-13 18:06:25 +08004248 /* Still need defer if there is pending req in defer list. */
4249 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004250 return 0;
4251
Jens Axboe3529d8c2019-12-19 18:24:38 -07004252 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004253 return -EAGAIN;
4254
Jens Axboe3529d8c2019-12-19 18:24:38 -07004255 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004256 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004257 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004258
Jens Axboede0617e2019-04-06 21:51:27 -06004259 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004260 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004261 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004262 return 0;
4263 }
4264
Jens Axboe915967f2019-11-21 09:01:20 -07004265 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004266 list_add_tail(&req->list, &ctx->defer_list);
4267 spin_unlock_irq(&ctx->completion_lock);
4268 return -EIOCBQUEUED;
4269}
4270
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004271static void io_cleanup_req(struct io_kiocb *req)
4272{
4273 struct io_async_ctx *io = req->io;
4274
4275 switch (req->opcode) {
4276 case IORING_OP_READV:
4277 case IORING_OP_READ_FIXED:
4278 case IORING_OP_READ:
4279 case IORING_OP_WRITEV:
4280 case IORING_OP_WRITE_FIXED:
4281 case IORING_OP_WRITE:
4282 if (io->rw.iov != io->rw.fast_iov)
4283 kfree(io->rw.iov);
4284 break;
4285 case IORING_OP_SENDMSG:
4286 case IORING_OP_RECVMSG:
4287 if (io->msg.iov != io->msg.fast_iov)
4288 kfree(io->msg.iov);
4289 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004290 case IORING_OP_OPENAT:
4291 case IORING_OP_OPENAT2:
4292 case IORING_OP_STATX:
4293 putname(req->open.filename);
4294 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004295 case IORING_OP_SPLICE:
4296 io_put_file(req, req->splice.file_in,
4297 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
4298 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004299 }
4300
4301 req->flags &= ~REQ_F_NEED_CLEANUP;
4302}
4303
Jens Axboe3529d8c2019-12-19 18:24:38 -07004304static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4305 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004306{
Jackie Liua197f662019-11-08 08:09:12 -07004307 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004308 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004309
Jens Axboed625c6e2019-12-17 19:53:05 -07004310 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004311 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004312 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004313 break;
4314 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004315 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004316 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004317 if (sqe) {
4318 ret = io_read_prep(req, sqe, force_nonblock);
4319 if (ret < 0)
4320 break;
4321 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004322 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004323 break;
4324 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07004325 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004326 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004327 if (sqe) {
4328 ret = io_write_prep(req, sqe, force_nonblock);
4329 if (ret < 0)
4330 break;
4331 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004332 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004333 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004334 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004335 if (sqe) {
4336 ret = io_prep_fsync(req, sqe);
4337 if (ret < 0)
4338 break;
4339 }
Jens Axboefc4df992019-12-10 14:38:45 -07004340 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004341 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004342 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004343 if (sqe) {
4344 ret = io_poll_add_prep(req, sqe);
4345 if (ret)
4346 break;
4347 }
Jens Axboefc4df992019-12-10 14:38:45 -07004348 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004349 break;
4350 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004351 if (sqe) {
4352 ret = io_poll_remove_prep(req, sqe);
4353 if (ret < 0)
4354 break;
4355 }
Jens Axboefc4df992019-12-10 14:38:45 -07004356 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004357 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004358 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004359 if (sqe) {
4360 ret = io_prep_sfr(req, sqe);
4361 if (ret < 0)
4362 break;
4363 }
Jens Axboefc4df992019-12-10 14:38:45 -07004364 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004365 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004366 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004367 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004368 if (sqe) {
4369 ret = io_sendmsg_prep(req, sqe);
4370 if (ret < 0)
4371 break;
4372 }
Jens Axboefddafac2020-01-04 20:19:44 -07004373 if (req->opcode == IORING_OP_SENDMSG)
4374 ret = io_sendmsg(req, nxt, force_nonblock);
4375 else
4376 ret = io_send(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004377 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06004378 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004379 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004380 if (sqe) {
4381 ret = io_recvmsg_prep(req, sqe);
4382 if (ret)
4383 break;
4384 }
Jens Axboefddafac2020-01-04 20:19:44 -07004385 if (req->opcode == IORING_OP_RECVMSG)
4386 ret = io_recvmsg(req, nxt, force_nonblock);
4387 else
4388 ret = io_recv(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06004389 break;
Jens Axboe5262f562019-09-17 12:26:57 -06004390 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004391 if (sqe) {
4392 ret = io_timeout_prep(req, sqe, false);
4393 if (ret)
4394 break;
4395 }
Jens Axboefc4df992019-12-10 14:38:45 -07004396 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004397 break;
Jens Axboe11365042019-10-16 09:08:32 -06004398 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004399 if (sqe) {
4400 ret = io_timeout_remove_prep(req, sqe);
4401 if (ret)
4402 break;
4403 }
Jens Axboefc4df992019-12-10 14:38:45 -07004404 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06004405 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06004406 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004407 if (sqe) {
4408 ret = io_accept_prep(req, sqe);
4409 if (ret)
4410 break;
4411 }
Jens Axboefc4df992019-12-10 14:38:45 -07004412 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004413 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004414 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004415 if (sqe) {
4416 ret = io_connect_prep(req, sqe);
4417 if (ret)
4418 break;
4419 }
Jens Axboefc4df992019-12-10 14:38:45 -07004420 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004421 break;
Jens Axboe62755e32019-10-28 21:49:21 -06004422 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004423 if (sqe) {
4424 ret = io_async_cancel_prep(req, sqe);
4425 if (ret)
4426 break;
4427 }
Jens Axboefc4df992019-12-10 14:38:45 -07004428 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06004429 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004430 case IORING_OP_FALLOCATE:
4431 if (sqe) {
4432 ret = io_fallocate_prep(req, sqe);
4433 if (ret)
4434 break;
4435 }
4436 ret = io_fallocate(req, nxt, force_nonblock);
4437 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004438 case IORING_OP_OPENAT:
4439 if (sqe) {
4440 ret = io_openat_prep(req, sqe);
4441 if (ret)
4442 break;
4443 }
4444 ret = io_openat(req, nxt, force_nonblock);
4445 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004446 case IORING_OP_CLOSE:
4447 if (sqe) {
4448 ret = io_close_prep(req, sqe);
4449 if (ret)
4450 break;
4451 }
4452 ret = io_close(req, nxt, force_nonblock);
4453 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004454 case IORING_OP_FILES_UPDATE:
4455 if (sqe) {
4456 ret = io_files_update_prep(req, sqe);
4457 if (ret)
4458 break;
4459 }
4460 ret = io_files_update(req, force_nonblock);
4461 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004462 case IORING_OP_STATX:
4463 if (sqe) {
4464 ret = io_statx_prep(req, sqe);
4465 if (ret)
4466 break;
4467 }
4468 ret = io_statx(req, nxt, force_nonblock);
4469 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004470 case IORING_OP_FADVISE:
4471 if (sqe) {
4472 ret = io_fadvise_prep(req, sqe);
4473 if (ret)
4474 break;
4475 }
4476 ret = io_fadvise(req, nxt, force_nonblock);
4477 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004478 case IORING_OP_MADVISE:
4479 if (sqe) {
4480 ret = io_madvise_prep(req, sqe);
4481 if (ret)
4482 break;
4483 }
4484 ret = io_madvise(req, nxt, force_nonblock);
4485 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004486 case IORING_OP_OPENAT2:
4487 if (sqe) {
4488 ret = io_openat2_prep(req, sqe);
4489 if (ret)
4490 break;
4491 }
4492 ret = io_openat2(req, nxt, force_nonblock);
4493 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004494 case IORING_OP_EPOLL_CTL:
4495 if (sqe) {
4496 ret = io_epoll_ctl_prep(req, sqe);
4497 if (ret)
4498 break;
4499 }
4500 ret = io_epoll_ctl(req, nxt, force_nonblock);
4501 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004502 case IORING_OP_SPLICE:
4503 if (sqe) {
4504 ret = io_splice_prep(req, sqe);
4505 if (ret < 0)
4506 break;
4507 }
4508 ret = io_splice(req, nxt, force_nonblock);
4509 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004510 default:
4511 ret = -EINVAL;
4512 break;
4513 }
4514
Jens Axboedef596e2019-01-09 08:59:42 -07004515 if (ret)
4516 return ret;
4517
4518 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07004519 const bool in_async = io_wq_current_is_worker();
4520
Jens Axboe9e645e112019-05-10 16:07:28 -06004521 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07004522 return -EAGAIN;
4523
Jens Axboe11ba8202020-01-15 21:51:17 -07004524 /* workqueue context doesn't hold uring_lock, grab it now */
4525 if (in_async)
4526 mutex_lock(&ctx->uring_lock);
4527
Jens Axboedef596e2019-01-09 08:59:42 -07004528 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07004529
4530 if (in_async)
4531 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07004532 }
4533
4534 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004535}
4536
Jens Axboe561fb042019-10-24 07:25:42 -06004537static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07004538{
Jens Axboe561fb042019-10-24 07:25:42 -06004539 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004540 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06004541 struct io_kiocb *nxt = NULL;
4542 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004543
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004544 /* if NO_CANCEL is set, we must still run the work */
4545 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4546 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06004547 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004548 }
Jens Axboe31b51512019-01-18 22:56:34 -07004549
Jens Axboe561fb042019-10-24 07:25:42 -06004550 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06004551 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004552 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06004553 /*
4554 * We can get EAGAIN for polled IO even though we're
4555 * forcing a sync submission from here, since we can't
4556 * wait for request slots on the block side.
4557 */
4558 if (ret != -EAGAIN)
4559 break;
4560 cond_resched();
4561 } while (1);
4562 }
Jens Axboe31b51512019-01-18 22:56:34 -07004563
Jens Axboe561fb042019-10-24 07:25:42 -06004564 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08004565 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06004566
Jens Axboe561fb042019-10-24 07:25:42 -06004567 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004568 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004569 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06004570 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07004571 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004572
Jens Axboe561fb042019-10-24 07:25:42 -06004573 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07004574 if (!ret && nxt)
4575 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07004576}
Jens Axboe2b188cc2019-01-07 10:46:33 -07004577
Jens Axboe15b71ab2019-12-11 11:20:36 -07004578static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004579{
Jens Axboed3656342019-12-18 09:50:26 -07004580 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004581 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07004582 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07004583 return 0;
4584 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06004585}
4586
Jens Axboe65e19f52019-10-26 07:20:21 -06004587static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4588 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06004589{
Jens Axboe65e19f52019-10-26 07:20:21 -06004590 struct fixed_file_table *table;
4591
Jens Axboe05f3fb32019-12-09 11:22:50 -07004592 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4593 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06004594}
4595
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004596static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
4597 int fd, struct file **out_file, bool fixed)
4598{
4599 struct io_ring_ctx *ctx = req->ctx;
4600 struct file *file;
4601
4602 if (fixed) {
4603 if (unlikely(!ctx->file_data ||
4604 (unsigned) fd >= ctx->nr_user_files))
4605 return -EBADF;
4606 fd = array_index_nospec(fd, ctx->nr_user_files);
4607 file = io_file_from_index(ctx, fd);
4608 if (!file)
4609 return -EBADF;
4610 percpu_ref_get(&ctx->file_data->refs);
4611 } else {
4612 trace_io_uring_file_get(ctx, fd);
4613 file = __io_file_get(state, fd);
4614 if (unlikely(!file))
4615 return -EBADF;
4616 }
4617
4618 *out_file = file;
4619 return 0;
4620}
4621
Jens Axboe3529d8c2019-12-19 18:24:38 -07004622static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4623 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06004624{
4625 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07004626 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004627 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06004628
Jens Axboe3529d8c2019-12-19 18:24:38 -07004629 flags = READ_ONCE(sqe->flags);
4630 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004631
Jens Axboed3656342019-12-18 09:50:26 -07004632 if (!io_req_needs_file(req, fd))
4633 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06004634
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004635 fixed = (flags & IOSQE_FIXED_FILE);
4636 if (unlikely(!fixed && req->needs_fixed_file))
4637 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06004638
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004639 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06004640}
4641
Jackie Liua197f662019-11-08 08:09:12 -07004642static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004643{
Jens Axboefcb323c2019-10-24 12:39:47 -06004644 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07004645 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06004646
Jens Axboef86cd202020-01-29 13:46:44 -07004647 if (req->work.files)
4648 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004649 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07004650 return -EBADF;
4651
Jens Axboefcb323c2019-10-24 12:39:47 -06004652 rcu_read_lock();
4653 spin_lock_irq(&ctx->inflight_lock);
4654 /*
4655 * We use the f_ops->flush() handler to ensure that we can flush
4656 * out work accessing these files if the fd is closed. Check if
4657 * the fd has changed since we started down this path, and disallow
4658 * this operation if it has.
4659 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004660 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06004661 list_add(&req->inflight_entry, &ctx->inflight_list);
4662 req->flags |= REQ_F_INFLIGHT;
4663 req->work.files = current->files;
4664 ret = 0;
4665 }
4666 spin_unlock_irq(&ctx->inflight_lock);
4667 rcu_read_unlock();
4668
4669 return ret;
4670}
4671
Jens Axboe2665abf2019-11-05 12:40:47 -07004672static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
4673{
Jens Axboead8a48a2019-11-15 08:49:11 -07004674 struct io_timeout_data *data = container_of(timer,
4675 struct io_timeout_data, timer);
4676 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07004677 struct io_ring_ctx *ctx = req->ctx;
4678 struct io_kiocb *prev = NULL;
4679 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07004680
4681 spin_lock_irqsave(&ctx->completion_lock, flags);
4682
4683 /*
4684 * We don't expect the list to be empty, that will only happen if we
4685 * race with the completion of the linked work.
4686 */
Pavel Begunkov44932332019-12-05 16:16:35 +03004687 if (!list_empty(&req->link_list)) {
4688 prev = list_entry(req->link_list.prev, struct io_kiocb,
4689 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004690 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03004691 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004692 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4693 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07004694 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004695 }
4696
4697 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4698
4699 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004700 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004701 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4702 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07004703 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07004704 } else {
4705 io_cqring_add_event(req, -ETIME);
4706 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004707 }
Jens Axboe2665abf2019-11-05 12:40:47 -07004708 return HRTIMER_NORESTART;
4709}
4710
Jens Axboead8a48a2019-11-15 08:49:11 -07004711static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004712{
Jens Axboe76a46e02019-11-10 23:34:16 -07004713 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07004714
Jens Axboe76a46e02019-11-10 23:34:16 -07004715 /*
4716 * If the list is now empty, then our linked request finished before
4717 * we got a chance to setup the timer
4718 */
4719 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03004720 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07004721 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07004722
Jens Axboead8a48a2019-11-15 08:49:11 -07004723 data->timer.function = io_link_timeout_fn;
4724 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4725 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07004726 }
Jens Axboe76a46e02019-11-10 23:34:16 -07004727 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07004728
Jens Axboe2665abf2019-11-05 12:40:47 -07004729 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07004730 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004731}
4732
Jens Axboead8a48a2019-11-15 08:49:11 -07004733static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004734{
4735 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004736
Jens Axboe2665abf2019-11-05 12:40:47 -07004737 if (!(req->flags & REQ_F_LINK))
4738 return NULL;
4739
Pavel Begunkov44932332019-12-05 16:16:35 +03004740 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4741 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07004742 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07004743 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004744
Jens Axboe76a46e02019-11-10 23:34:16 -07004745 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07004746 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07004747}
4748
Jens Axboe3529d8c2019-12-19 18:24:38 -07004749static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004750{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004751 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004752 struct io_kiocb *nxt = NULL;
Jens Axboe193155c2020-02-22 23:22:19 -07004753 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004754 int ret;
4755
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004756again:
4757 linked_timeout = io_prep_linked_timeout(req);
4758
Jens Axboe193155c2020-02-22 23:22:19 -07004759 if (req->work.creds && req->work.creds != current_cred()) {
4760 if (old_creds)
4761 revert_creds(old_creds);
4762 if (old_creds == req->work.creds)
4763 old_creds = NULL; /* restored original creds */
4764 else
4765 old_creds = override_creds(req->work.creds);
4766 }
4767
Jens Axboe3529d8c2019-12-19 18:24:38 -07004768 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06004769
4770 /*
4771 * We async punt it if the file wasn't marked NOWAIT, or if the file
4772 * doesn't support non-blocking read/write attempts
4773 */
4774 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4775 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004776punt:
Jens Axboef86cd202020-01-29 13:46:44 -07004777 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004778 ret = io_grab_files(req);
4779 if (ret)
4780 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004781 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004782
4783 /*
4784 * Queued up for async execution, worker will release
4785 * submit reference when the iocb is actually submitted.
4786 */
4787 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004788 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004789 }
Jens Axboee65ef562019-03-12 10:16:44 -06004790
Jens Axboefcb323c2019-10-24 12:39:47 -06004791err:
Jens Axboee65ef562019-03-12 10:16:44 -06004792 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07004793 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06004794
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004795 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07004796 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004797 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004798 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004799 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004800 }
4801
Jens Axboee65ef562019-03-12 10:16:44 -06004802 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06004803 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004804 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004805 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004806 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06004807 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004808done_req:
4809 if (nxt) {
4810 req = nxt;
4811 nxt = NULL;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004812
4813 if (req->flags & REQ_F_FORCE_ASYNC)
4814 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004815 goto again;
4816 }
Jens Axboe193155c2020-02-22 23:22:19 -07004817 if (old_creds)
4818 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004819}
4820
Jens Axboe3529d8c2019-12-19 18:24:38 -07004821static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004822{
4823 int ret;
4824
Jens Axboe3529d8c2019-12-19 18:24:38 -07004825 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004826 if (ret) {
4827 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004828fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004829 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004830 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004831 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004832 }
Pavel Begunkov25508782019-12-30 21:24:47 +03004833 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004834 ret = io_req_defer_prep(req, sqe);
4835 if (unlikely(ret < 0))
4836 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07004837 /*
4838 * Never try inline submit of IOSQE_ASYNC is set, go straight
4839 * to async execution.
4840 */
4841 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4842 io_queue_async_work(req);
4843 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004844 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07004845 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08004846}
4847
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004848static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004849{
Jens Axboe94ae5e72019-11-14 19:39:52 -07004850 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004851 io_cqring_add_event(req, -ECANCELED);
4852 io_double_put_req(req);
4853 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07004854 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004855}
4856
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004857#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboece35a472019-12-17 08:04:44 -07004858 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
Jens Axboe9e645e112019-05-10 16:07:28 -06004859
Jens Axboe3529d8c2019-12-19 18:24:38 -07004860static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4861 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06004862{
Jackie Liua197f662019-11-08 08:09:12 -07004863 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004864 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07004865 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06004866
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004867 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06004868
4869 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004870 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004871 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03004872 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06004873 }
4874
Jens Axboe75c6a032020-01-28 10:15:23 -07004875 id = READ_ONCE(sqe->personality);
4876 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07004877 req->work.creds = idr_find(&ctx->personality_idr, id);
4878 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07004879 ret = -EINVAL;
4880 goto err_req;
4881 }
Jens Axboe193155c2020-02-22 23:22:19 -07004882 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07004883 }
4884
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03004885 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03004886 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
4887 IOSQE_ASYNC | IOSQE_FIXED_FILE);
Jens Axboe9e645e112019-05-10 16:07:28 -06004888
Jens Axboe3529d8c2019-12-19 18:24:38 -07004889 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004890 if (unlikely(ret)) {
4891err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004892 io_cqring_add_event(req, ret);
4893 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004894 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06004895 }
4896
Jens Axboe9e645e112019-05-10 16:07:28 -06004897 /*
4898 * If we already have a head request, queue this one for async
4899 * submittal once the head completes. If we don't have a head but
4900 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4901 * submitted sync once the chain is complete. If none of those
4902 * conditions are true (normal request), then just queue it.
4903 */
4904 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03004905 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06004906
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03004907 /*
4908 * Taking sequential execution of a link, draining both sides
4909 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
4910 * requests in the link. So, it drains the head and the
4911 * next after the link request. The last one is done via
4912 * drain_next flag to persist the effect across calls.
4913 */
Pavel Begunkov711be032020-01-17 03:57:59 +03004914 if (sqe_flags & IOSQE_IO_DRAIN) {
4915 head->flags |= REQ_F_IO_DRAIN;
4916 ctx->drain_next = 1;
4917 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004918 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004919 ret = -EAGAIN;
4920 goto err_req;
4921 }
4922
Jens Axboe3529d8c2019-12-19 18:24:38 -07004923 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07004924 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004925 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03004926 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07004927 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07004928 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03004929 trace_io_uring_link(ctx, req, head);
4930 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06004931
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004932 /* last request of a link, enqueue the link */
4933 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
4934 io_queue_link_head(head);
4935 *link = NULL;
4936 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004937 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03004938 if (unlikely(ctx->drain_next)) {
4939 req->flags |= REQ_F_IO_DRAIN;
4940 req->ctx->drain_next = 0;
4941 }
4942 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
4943 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03004944 INIT_LIST_HEAD(&req->link_list);
4945 ret = io_req_defer_prep(req, sqe);
4946 if (ret)
4947 req->flags |= REQ_F_FAIL_LINK;
4948 *link = req;
4949 } else {
4950 io_queue_sqe(req, sqe);
4951 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004952 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004953
4954 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06004955}
4956
Jens Axboe9a56a232019-01-09 09:06:50 -07004957/*
4958 * Batched submission is done, ensure local IO is flushed out.
4959 */
4960static void io_submit_state_end(struct io_submit_state *state)
4961{
4962 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06004963 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07004964 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03004965 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07004966}
4967
4968/*
4969 * Start submission side cache.
4970 */
4971static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08004972 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07004973{
4974 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07004975 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07004976 state->file = NULL;
4977 state->ios_left = max_ios;
4978}
4979
Jens Axboe2b188cc2019-01-07 10:46:33 -07004980static void io_commit_sqring(struct io_ring_ctx *ctx)
4981{
Hristo Venev75b28af2019-08-26 17:23:46 +00004982 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004983
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03004984 /*
4985 * Ensure any loads from the SQEs are done at this point,
4986 * since once we write the new head, the application could
4987 * write new data to them.
4988 */
4989 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004990}
4991
4992/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07004993 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07004994 * that is mapped by userspace. This means that care needs to be taken to
4995 * ensure that reads are stable, as we cannot rely on userspace always
4996 * being a good citizen. If members of the sqe are validated and then later
4997 * used, it's important that those reads are done through READ_ONCE() to
4998 * prevent a re-load down the line.
4999 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07005000static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
5001 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005002{
Hristo Venev75b28af2019-08-26 17:23:46 +00005003 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005004 unsigned head;
5005
5006 /*
5007 * The cached sq head (or cq tail) serves two purposes:
5008 *
5009 * 1) allows us to batch the cost of updating the user visible
5010 * head updates.
5011 * 2) allows the kernel side to track the head on its own, even
5012 * though the application is the one updating it.
5013 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005014 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03005015 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005016 /*
5017 * All io need record the previous position, if LINK vs DARIN,
5018 * it can be used to mark the position of the first IO in the
5019 * link list.
5020 */
5021 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07005022 *sqe_ptr = &ctx->sq_sqes[head];
5023 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
5024 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005025 ctx->cached_sq_head++;
5026 return true;
5027 }
5028
5029 /* drop invalid entries */
5030 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06005031 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005032 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005033 return false;
5034}
5035
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005036static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005037 struct file *ring_file, int ring_fd,
5038 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005039{
5040 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005041 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005042 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005043 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005044
Jens Axboec4a2ed72019-11-21 21:01:26 -07005045 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005046 if (test_bit(0, &ctx->sq_check_overflow)) {
5047 if (!list_empty(&ctx->cq_overflow_list) &&
5048 !io_cqring_overflow_flush(ctx, false))
5049 return -EBUSY;
5050 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005051
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005052 /* make sure SQ entry isn't read before tail */
5053 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005054
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005055 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5056 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005057
5058 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005059 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005060 statep = &state;
5061 }
5062
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005063 ctx->ring_fd = ring_fd;
5064 ctx->ring_file = ring_file;
5065
Jens Axboe6c271ce2019-01-10 11:22:30 -07005066 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005067 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005068 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005069 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005070
Pavel Begunkov196be952019-11-07 01:41:06 +03005071 req = io_get_req(ctx, statep);
5072 if (unlikely(!req)) {
5073 if (!submitted)
5074 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005075 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005076 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005077 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005078 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005079 break;
5080 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005081
Jens Axboed3656342019-12-18 09:50:26 -07005082 /* will complete beyond this point, count as submitted */
5083 submitted++;
5084
5085 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005086 err = -EINVAL;
5087fail_req:
5088 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005089 io_double_put_req(req);
5090 break;
5091 }
5092
5093 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005094 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005095 if (unlikely(mm_fault)) {
5096 err = -EFAULT;
5097 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005098 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005099 use_mm(ctx->sqo_mm);
5100 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005101 }
5102
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005103 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005104 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5105 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005106 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005107 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005108 }
5109
Pavel Begunkov9466f432020-01-25 22:34:01 +03005110 if (unlikely(submitted != nr)) {
5111 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5112
5113 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5114 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005115 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005116 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005117 if (statep)
5118 io_submit_state_end(&state);
5119
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005120 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5121 io_commit_sqring(ctx);
5122
Jens Axboe6c271ce2019-01-10 11:22:30 -07005123 return submitted;
5124}
5125
5126static int io_sq_thread(void *data)
5127{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005128 struct io_ring_ctx *ctx = data;
5129 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005130 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005131 mm_segment_t old_fs;
5132 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005133 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005134 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005135
Jens Axboe206aefd2019-11-07 18:27:42 -07005136 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005137
Jens Axboe6c271ce2019-01-10 11:22:30 -07005138 old_fs = get_fs();
5139 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005140 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005141
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005142 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005143 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005144 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005145
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005146 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005147 unsigned nr_events = 0;
5148
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005149 mutex_lock(&ctx->uring_lock);
5150 if (!list_empty(&ctx->poll_list))
5151 io_iopoll_getevents(ctx, &nr_events, 0);
5152 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005153 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005154 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005155 }
5156
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005157 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005158
5159 /*
5160 * If submit got -EBUSY, flag us as needing the application
5161 * to enter the kernel to reap and flush events.
5162 */
5163 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005164 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005165 * Drop cur_mm before scheduling, we can't hold it for
5166 * long periods (or over schedule()). Do this before
5167 * adding ourselves to the waitqueue, as the unuse/drop
5168 * may sleep.
5169 */
5170 if (cur_mm) {
5171 unuse_mm(cur_mm);
5172 mmput(cur_mm);
5173 cur_mm = NULL;
5174 }
5175
5176 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005177 * We're polling. If we're within the defined idle
5178 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005179 * to sleep. The exception is if we got EBUSY doing
5180 * more IO, we should wait for the application to
5181 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005182 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005183 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005184 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5185 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005186 if (current->task_works)
5187 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005188 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005189 continue;
5190 }
5191
Jens Axboe6c271ce2019-01-10 11:22:30 -07005192 prepare_to_wait(&ctx->sqo_wait, &wait,
5193 TASK_INTERRUPTIBLE);
5194
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005195 /*
5196 * While doing polled IO, before going to sleep, we need
5197 * to check if there are new reqs added to poll_list, it
5198 * is because reqs may have been punted to io worker and
5199 * will be added to poll_list later, hence check the
5200 * poll_list again.
5201 */
5202 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5203 !list_empty_careful(&ctx->poll_list)) {
5204 finish_wait(&ctx->sqo_wait, &wait);
5205 continue;
5206 }
5207
Jens Axboe6c271ce2019-01-10 11:22:30 -07005208 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005209 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005210 /* make sure to read SQ tail after writing flags */
5211 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005212
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005213 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005214 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005215 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005216 finish_wait(&ctx->sqo_wait, &wait);
5217 break;
5218 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005219 if (current->task_works) {
5220 task_work_run();
5221 continue;
5222 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005223 if (signal_pending(current))
5224 flush_signals(current);
5225 schedule();
5226 finish_wait(&ctx->sqo_wait, &wait);
5227
Hristo Venev75b28af2019-08-26 17:23:46 +00005228 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005229 continue;
5230 }
5231 finish_wait(&ctx->sqo_wait, &wait);
5232
Hristo Venev75b28af2019-08-26 17:23:46 +00005233 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005234 }
5235
Jens Axboe8a4955f2019-12-09 14:52:35 -07005236 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005237 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005238 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005239 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005240 }
5241
Jens Axboeb41e9852020-02-17 09:52:41 -07005242 if (current->task_works)
5243 task_work_run();
5244
Jens Axboe6c271ce2019-01-10 11:22:30 -07005245 set_fs(old_fs);
5246 if (cur_mm) {
5247 unuse_mm(cur_mm);
5248 mmput(cur_mm);
5249 }
Jens Axboe181e4482019-11-25 08:52:30 -07005250 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06005251
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005252 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06005253
Jens Axboe6c271ce2019-01-10 11:22:30 -07005254 return 0;
5255}
5256
Jens Axboebda52162019-09-24 13:47:15 -06005257struct io_wait_queue {
5258 struct wait_queue_entry wq;
5259 struct io_ring_ctx *ctx;
5260 unsigned to_wait;
5261 unsigned nr_timeouts;
5262};
5263
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005264static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06005265{
5266 struct io_ring_ctx *ctx = iowq->ctx;
5267
5268 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08005269 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06005270 * started waiting. For timeouts, we always want to return to userspace,
5271 * regardless of event count.
5272 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005273 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06005274 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
5275}
5276
5277static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
5278 int wake_flags, void *key)
5279{
5280 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
5281 wq);
5282
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005283 /* use noflush == true, as we can't safely rely on locking context */
5284 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06005285 return -1;
5286
5287 return autoremove_wake_function(curr, mode, wake_flags, key);
5288}
5289
Jens Axboe2b188cc2019-01-07 10:46:33 -07005290/*
5291 * Wait until events become available, if we don't already have some. The
5292 * application must reap them itself, as they reside on the shared cq ring.
5293 */
5294static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
5295 const sigset_t __user *sig, size_t sigsz)
5296{
Jens Axboebda52162019-09-24 13:47:15 -06005297 struct io_wait_queue iowq = {
5298 .wq = {
5299 .private = current,
5300 .func = io_wake_function,
5301 .entry = LIST_HEAD_INIT(iowq.wq.entry),
5302 },
5303 .ctx = ctx,
5304 .to_wait = min_events,
5305 };
Hristo Venev75b28af2019-08-26 17:23:46 +00005306 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005307 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005308
Jens Axboeb41e9852020-02-17 09:52:41 -07005309 do {
5310 if (io_cqring_events(ctx, false) >= min_events)
5311 return 0;
5312 if (!current->task_works)
5313 break;
5314 task_work_run();
5315 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005316
5317 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005318#ifdef CONFIG_COMPAT
5319 if (in_compat_syscall())
5320 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07005321 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005322 else
5323#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07005324 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005325
Jens Axboe2b188cc2019-01-07 10:46:33 -07005326 if (ret)
5327 return ret;
5328 }
5329
Jens Axboebda52162019-09-24 13:47:15 -06005330 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005331 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06005332 do {
5333 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
5334 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07005335 if (current->task_works)
5336 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005337 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06005338 break;
5339 schedule();
5340 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005341 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06005342 break;
5343 }
5344 } while (1);
5345 finish_wait(&ctx->wait, &iowq.wq);
5346
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005347 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005348
Hristo Venev75b28af2019-08-26 17:23:46 +00005349 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005350}
5351
Jens Axboe6b063142019-01-10 22:13:58 -07005352static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
5353{
5354#if defined(CONFIG_UNIX)
5355 if (ctx->ring_sock) {
5356 struct sock *sock = ctx->ring_sock->sk;
5357 struct sk_buff *skb;
5358
5359 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
5360 kfree_skb(skb);
5361 }
5362#else
5363 int i;
5364
Jens Axboe65e19f52019-10-26 07:20:21 -06005365 for (i = 0; i < ctx->nr_user_files; i++) {
5366 struct file *file;
5367
5368 file = io_file_from_index(ctx, i);
5369 if (file)
5370 fput(file);
5371 }
Jens Axboe6b063142019-01-10 22:13:58 -07005372#endif
5373}
5374
Jens Axboe05f3fb32019-12-09 11:22:50 -07005375static void io_file_ref_kill(struct percpu_ref *ref)
5376{
5377 struct fixed_file_data *data;
5378
5379 data = container_of(ref, struct fixed_file_data, refs);
5380 complete(&data->done);
5381}
5382
Jens Axboe6b063142019-01-10 22:13:58 -07005383static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
5384{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005385 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06005386 unsigned nr_tables, i;
5387
Jens Axboe05f3fb32019-12-09 11:22:50 -07005388 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07005389 return -ENXIO;
5390
Jens Axboe05f3fb32019-12-09 11:22:50 -07005391 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
Jens Axboee46a7952020-01-17 11:15:34 -07005392 flush_work(&data->ref_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07005393 wait_for_completion(&data->done);
5394 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005395 percpu_ref_exit(&data->refs);
5396
Jens Axboe6b063142019-01-10 22:13:58 -07005397 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06005398 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
5399 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005400 kfree(data->table[i].files);
5401 kfree(data->table);
5402 kfree(data);
5403 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005404 ctx->nr_user_files = 0;
5405 return 0;
5406}
5407
Jens Axboe6c271ce2019-01-10 11:22:30 -07005408static void io_sq_thread_stop(struct io_ring_ctx *ctx)
5409{
5410 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07005411 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005412 /*
5413 * The park is a bit of a work-around, without it we get
5414 * warning spews on shutdown with SQPOLL set and affinity
5415 * set to a single CPU.
5416 */
Jens Axboe06058632019-04-13 09:26:03 -06005417 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005418 kthread_stop(ctx->sqo_thread);
5419 ctx->sqo_thread = NULL;
5420 }
5421}
5422
Jens Axboe6b063142019-01-10 22:13:58 -07005423static void io_finish_async(struct io_ring_ctx *ctx)
5424{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005425 io_sq_thread_stop(ctx);
5426
Jens Axboe561fb042019-10-24 07:25:42 -06005427 if (ctx->io_wq) {
5428 io_wq_destroy(ctx->io_wq);
5429 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005430 }
5431}
5432
5433#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07005434/*
5435 * Ensure the UNIX gc is aware of our file set, so we are certain that
5436 * the io_uring can be safely unregistered on process exit, even if we have
5437 * loops in the file referencing.
5438 */
5439static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
5440{
5441 struct sock *sk = ctx->ring_sock->sk;
5442 struct scm_fp_list *fpl;
5443 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06005444 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07005445
5446 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
5447 unsigned long inflight = ctx->user->unix_inflight + nr;
5448
5449 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
5450 return -EMFILE;
5451 }
5452
5453 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
5454 if (!fpl)
5455 return -ENOMEM;
5456
5457 skb = alloc_skb(0, GFP_KERNEL);
5458 if (!skb) {
5459 kfree(fpl);
5460 return -ENOMEM;
5461 }
5462
5463 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07005464
Jens Axboe08a45172019-10-03 08:11:03 -06005465 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07005466 fpl->user = get_uid(ctx->user);
5467 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005468 struct file *file = io_file_from_index(ctx, i + offset);
5469
5470 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06005471 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06005472 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06005473 unix_inflight(fpl->user, fpl->fp[nr_files]);
5474 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07005475 }
5476
Jens Axboe08a45172019-10-03 08:11:03 -06005477 if (nr_files) {
5478 fpl->max = SCM_MAX_FD;
5479 fpl->count = nr_files;
5480 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005481 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06005482 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
5483 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07005484
Jens Axboe08a45172019-10-03 08:11:03 -06005485 for (i = 0; i < nr_files; i++)
5486 fput(fpl->fp[i]);
5487 } else {
5488 kfree_skb(skb);
5489 kfree(fpl);
5490 }
Jens Axboe6b063142019-01-10 22:13:58 -07005491
5492 return 0;
5493}
5494
5495/*
5496 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
5497 * causes regular reference counting to break down. We rely on the UNIX
5498 * garbage collection to take care of this problem for us.
5499 */
5500static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5501{
5502 unsigned left, total;
5503 int ret = 0;
5504
5505 total = 0;
5506 left = ctx->nr_user_files;
5507 while (left) {
5508 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07005509
5510 ret = __io_sqe_files_scm(ctx, this_files, total);
5511 if (ret)
5512 break;
5513 left -= this_files;
5514 total += this_files;
5515 }
5516
5517 if (!ret)
5518 return 0;
5519
5520 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005521 struct file *file = io_file_from_index(ctx, total);
5522
5523 if (file)
5524 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07005525 total++;
5526 }
5527
5528 return ret;
5529}
5530#else
5531static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5532{
5533 return 0;
5534}
5535#endif
5536
Jens Axboe65e19f52019-10-26 07:20:21 -06005537static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
5538 unsigned nr_files)
5539{
5540 int i;
5541
5542 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005543 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005544 unsigned this_files;
5545
5546 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
5547 table->files = kcalloc(this_files, sizeof(struct file *),
5548 GFP_KERNEL);
5549 if (!table->files)
5550 break;
5551 nr_files -= this_files;
5552 }
5553
5554 if (i == nr_tables)
5555 return 0;
5556
5557 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005558 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005559 kfree(table->files);
5560 }
5561 return 1;
5562}
5563
Jens Axboe05f3fb32019-12-09 11:22:50 -07005564static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06005565{
5566#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06005567 struct sock *sock = ctx->ring_sock->sk;
5568 struct sk_buff_head list, *head = &sock->sk_receive_queue;
5569 struct sk_buff *skb;
5570 int i;
5571
5572 __skb_queue_head_init(&list);
5573
5574 /*
5575 * Find the skb that holds this file in its SCM_RIGHTS. When found,
5576 * remove this entry and rearrange the file array.
5577 */
5578 skb = skb_dequeue(head);
5579 while (skb) {
5580 struct scm_fp_list *fp;
5581
5582 fp = UNIXCB(skb).fp;
5583 for (i = 0; i < fp->count; i++) {
5584 int left;
5585
5586 if (fp->fp[i] != file)
5587 continue;
5588
5589 unix_notinflight(fp->user, fp->fp[i]);
5590 left = fp->count - 1 - i;
5591 if (left) {
5592 memmove(&fp->fp[i], &fp->fp[i + 1],
5593 left * sizeof(struct file *));
5594 }
5595 fp->count--;
5596 if (!fp->count) {
5597 kfree_skb(skb);
5598 skb = NULL;
5599 } else {
5600 __skb_queue_tail(&list, skb);
5601 }
5602 fput(file);
5603 file = NULL;
5604 break;
5605 }
5606
5607 if (!file)
5608 break;
5609
5610 __skb_queue_tail(&list, skb);
5611
5612 skb = skb_dequeue(head);
5613 }
5614
5615 if (skb_peek(&list)) {
5616 spin_lock_irq(&head->lock);
5617 while ((skb = __skb_dequeue(&list)) != NULL)
5618 __skb_queue_tail(head, skb);
5619 spin_unlock_irq(&head->lock);
5620 }
5621#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07005622 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06005623#endif
5624}
5625
Jens Axboe05f3fb32019-12-09 11:22:50 -07005626struct io_file_put {
5627 struct llist_node llist;
5628 struct file *file;
5629 struct completion *done;
5630};
5631
Jens Axboe2faf8522020-02-04 19:54:55 -07005632static void io_ring_file_ref_flush(struct fixed_file_data *data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005633{
5634 struct io_file_put *pfile, *tmp;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005635 struct llist_node *node;
5636
Jens Axboe05f3fb32019-12-09 11:22:50 -07005637 while ((node = llist_del_all(&data->put_llist)) != NULL) {
5638 llist_for_each_entry_safe(pfile, tmp, node, llist) {
5639 io_ring_file_put(data->ctx, pfile->file);
5640 if (pfile->done)
5641 complete(pfile->done);
5642 else
5643 kfree(pfile);
5644 }
5645 }
Jens Axboe2faf8522020-02-04 19:54:55 -07005646}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005647
Jens Axboe2faf8522020-02-04 19:54:55 -07005648static void io_ring_file_ref_switch(struct work_struct *work)
5649{
5650 struct fixed_file_data *data;
5651
5652 data = container_of(work, struct fixed_file_data, ref_work);
5653 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005654 percpu_ref_switch_to_percpu(&data->refs);
5655}
5656
5657static void io_file_data_ref_zero(struct percpu_ref *ref)
5658{
5659 struct fixed_file_data *data;
5660
5661 data = container_of(ref, struct fixed_file_data, refs);
5662
Jens Axboe2faf8522020-02-04 19:54:55 -07005663 /*
5664 * We can't safely switch from inside this context, punt to wq. If
5665 * the table ref is going away, the table is being unregistered.
5666 * Don't queue up the async work for that case, the caller will
5667 * handle it.
5668 */
5669 if (!percpu_ref_is_dying(&data->refs))
5670 queue_work(system_wq, &data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005671}
5672
5673static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
5674 unsigned nr_args)
5675{
5676 __s32 __user *fds = (__s32 __user *) arg;
5677 unsigned nr_tables;
5678 struct file *file;
5679 int fd, ret = 0;
5680 unsigned i;
5681
5682 if (ctx->file_data)
5683 return -EBUSY;
5684 if (!nr_args)
5685 return -EINVAL;
5686 if (nr_args > IORING_MAX_FIXED_FILES)
5687 return -EMFILE;
5688
5689 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
5690 if (!ctx->file_data)
5691 return -ENOMEM;
5692 ctx->file_data->ctx = ctx;
5693 init_completion(&ctx->file_data->done);
5694
5695 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
5696 ctx->file_data->table = kcalloc(nr_tables,
5697 sizeof(struct fixed_file_table),
5698 GFP_KERNEL);
5699 if (!ctx->file_data->table) {
5700 kfree(ctx->file_data);
5701 ctx->file_data = NULL;
5702 return -ENOMEM;
5703 }
5704
5705 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
5706 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
5707 kfree(ctx->file_data->table);
5708 kfree(ctx->file_data);
5709 ctx->file_data = NULL;
5710 return -ENOMEM;
5711 }
5712 ctx->file_data->put_llist.first = NULL;
5713 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
5714
5715 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
5716 percpu_ref_exit(&ctx->file_data->refs);
5717 kfree(ctx->file_data->table);
5718 kfree(ctx->file_data);
5719 ctx->file_data = NULL;
5720 return -ENOMEM;
5721 }
5722
5723 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
5724 struct fixed_file_table *table;
5725 unsigned index;
5726
5727 ret = -EFAULT;
5728 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
5729 break;
5730 /* allow sparse sets */
5731 if (fd == -1) {
5732 ret = 0;
5733 continue;
5734 }
5735
5736 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
5737 index = i & IORING_FILE_TABLE_MASK;
5738 file = fget(fd);
5739
5740 ret = -EBADF;
5741 if (!file)
5742 break;
5743
5744 /*
5745 * Don't allow io_uring instances to be registered. If UNIX
5746 * isn't enabled, then this causes a reference cycle and this
5747 * instance can never get freed. If UNIX is enabled we'll
5748 * handle it just fine, but there's still no point in allowing
5749 * a ring fd as it doesn't support regular read/write anyway.
5750 */
5751 if (file->f_op == &io_uring_fops) {
5752 fput(file);
5753 break;
5754 }
5755 ret = 0;
5756 table->files[index] = file;
5757 }
5758
5759 if (ret) {
5760 for (i = 0; i < ctx->nr_user_files; i++) {
5761 file = io_file_from_index(ctx, i);
5762 if (file)
5763 fput(file);
5764 }
5765 for (i = 0; i < nr_tables; i++)
5766 kfree(ctx->file_data->table[i].files);
5767
5768 kfree(ctx->file_data->table);
5769 kfree(ctx->file_data);
5770 ctx->file_data = NULL;
5771 ctx->nr_user_files = 0;
5772 return ret;
5773 }
5774
5775 ret = io_sqe_files_scm(ctx);
5776 if (ret)
5777 io_sqe_files_unregister(ctx);
5778
5779 return ret;
5780}
5781
Jens Axboec3a31e62019-10-03 13:59:56 -06005782static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
5783 int index)
5784{
5785#if defined(CONFIG_UNIX)
5786 struct sock *sock = ctx->ring_sock->sk;
5787 struct sk_buff_head *head = &sock->sk_receive_queue;
5788 struct sk_buff *skb;
5789
5790 /*
5791 * See if we can merge this file into an existing skb SCM_RIGHTS
5792 * file set. If there's no room, fall back to allocating a new skb
5793 * and filling it in.
5794 */
5795 spin_lock_irq(&head->lock);
5796 skb = skb_peek(head);
5797 if (skb) {
5798 struct scm_fp_list *fpl = UNIXCB(skb).fp;
5799
5800 if (fpl->count < SCM_MAX_FD) {
5801 __skb_unlink(skb, head);
5802 spin_unlock_irq(&head->lock);
5803 fpl->fp[fpl->count] = get_file(file);
5804 unix_inflight(fpl->user, fpl->fp[fpl->count]);
5805 fpl->count++;
5806 spin_lock_irq(&head->lock);
5807 __skb_queue_head(head, skb);
5808 } else {
5809 skb = NULL;
5810 }
5811 }
5812 spin_unlock_irq(&head->lock);
5813
5814 if (skb) {
5815 fput(file);
5816 return 0;
5817 }
5818
5819 return __io_sqe_files_scm(ctx, 1, index);
5820#else
5821 return 0;
5822#endif
5823}
5824
Jens Axboe05f3fb32019-12-09 11:22:50 -07005825static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06005826{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005827 struct fixed_file_data *data;
5828
Jens Axboedd3db2a2020-02-26 10:23:43 -07005829 /*
5830 * Juggle reference to ensure we hit zero, if needed, so we can
5831 * switch back to percpu mode
5832 */
Jens Axboe05f3fb32019-12-09 11:22:50 -07005833 data = container_of(ref, struct fixed_file_data, refs);
Jens Axboedd3db2a2020-02-26 10:23:43 -07005834 percpu_ref_put(&data->refs);
5835 percpu_ref_get(&data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005836}
5837
5838static bool io_queue_file_removal(struct fixed_file_data *data,
5839 struct file *file)
5840{
5841 struct io_file_put *pfile, pfile_stack;
5842 DECLARE_COMPLETION_ONSTACK(done);
5843
5844 /*
5845 * If we fail allocating the struct we need for doing async reomval
5846 * of this file, just punt to sync and wait for it.
5847 */
5848 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
5849 if (!pfile) {
5850 pfile = &pfile_stack;
5851 pfile->done = &done;
5852 }
5853
5854 pfile->file = file;
5855 llist_add(&pfile->llist, &data->put_llist);
5856
5857 if (pfile == &pfile_stack) {
Jens Axboedd3db2a2020-02-26 10:23:43 -07005858 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005859 wait_for_completion(&done);
5860 flush_work(&data->ref_work);
5861 return false;
5862 }
5863
5864 return true;
5865}
5866
5867static int __io_sqe_files_update(struct io_ring_ctx *ctx,
5868 struct io_uring_files_update *up,
5869 unsigned nr_args)
5870{
5871 struct fixed_file_data *data = ctx->file_data;
5872 bool ref_switch = false;
5873 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005874 __s32 __user *fds;
5875 int fd, i, err;
5876 __u32 done;
5877
Jens Axboe05f3fb32019-12-09 11:22:50 -07005878 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06005879 return -EOVERFLOW;
5880 if (done > ctx->nr_user_files)
5881 return -EINVAL;
5882
5883 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005884 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06005885 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005886 struct fixed_file_table *table;
5887 unsigned index;
5888
Jens Axboec3a31e62019-10-03 13:59:56 -06005889 err = 0;
5890 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
5891 err = -EFAULT;
5892 break;
5893 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07005894 i = array_index_nospec(up->offset, ctx->nr_user_files);
5895 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06005896 index = i & IORING_FILE_TABLE_MASK;
5897 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005898 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06005899 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005900 if (io_queue_file_removal(data, file))
5901 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06005902 }
5903 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06005904 file = fget(fd);
5905 if (!file) {
5906 err = -EBADF;
5907 break;
5908 }
5909 /*
5910 * Don't allow io_uring instances to be registered. If
5911 * UNIX isn't enabled, then this causes a reference
5912 * cycle and this instance can never get freed. If UNIX
5913 * is enabled we'll handle it just fine, but there's
5914 * still no point in allowing a ring fd as it doesn't
5915 * support regular read/write anyway.
5916 */
5917 if (file->f_op == &io_uring_fops) {
5918 fput(file);
5919 err = -EBADF;
5920 break;
5921 }
Jens Axboe65e19f52019-10-26 07:20:21 -06005922 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005923 err = io_sqe_file_register(ctx, file, i);
5924 if (err)
5925 break;
5926 }
5927 nr_args--;
5928 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005929 up->offset++;
5930 }
5931
Jens Axboedd3db2a2020-02-26 10:23:43 -07005932 if (ref_switch)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005933 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06005934
5935 return done ? done : err;
5936}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005937static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
5938 unsigned nr_args)
5939{
5940 struct io_uring_files_update up;
5941
5942 if (!ctx->file_data)
5943 return -ENXIO;
5944 if (!nr_args)
5945 return -EINVAL;
5946 if (copy_from_user(&up, arg, sizeof(up)))
5947 return -EFAULT;
5948 if (up.resv)
5949 return -EINVAL;
5950
5951 return __io_sqe_files_update(ctx, &up, nr_args);
5952}
Jens Axboec3a31e62019-10-03 13:59:56 -06005953
Jens Axboe7d723062019-11-12 22:31:31 -07005954static void io_put_work(struct io_wq_work *work)
5955{
5956 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5957
5958 io_put_req(req);
5959}
5960
5961static void io_get_work(struct io_wq_work *work)
5962{
5963 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5964
5965 refcount_inc(&req->refs);
5966}
5967
Pavel Begunkov24369c22020-01-28 03:15:48 +03005968static int io_init_wq_offload(struct io_ring_ctx *ctx,
5969 struct io_uring_params *p)
5970{
5971 struct io_wq_data data;
5972 struct fd f;
5973 struct io_ring_ctx *ctx_attach;
5974 unsigned int concurrency;
5975 int ret = 0;
5976
5977 data.user = ctx->user;
5978 data.get_work = io_get_work;
5979 data.put_work = io_put_work;
5980
5981 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
5982 /* Do QD, or 4 * CPUS, whatever is smallest */
5983 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
5984
5985 ctx->io_wq = io_wq_create(concurrency, &data);
5986 if (IS_ERR(ctx->io_wq)) {
5987 ret = PTR_ERR(ctx->io_wq);
5988 ctx->io_wq = NULL;
5989 }
5990 return ret;
5991 }
5992
5993 f = fdget(p->wq_fd);
5994 if (!f.file)
5995 return -EBADF;
5996
5997 if (f.file->f_op != &io_uring_fops) {
5998 ret = -EINVAL;
5999 goto out_fput;
6000 }
6001
6002 ctx_attach = f.file->private_data;
6003 /* @io_wq is protected by holding the fd */
6004 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6005 ret = -EINVAL;
6006 goto out_fput;
6007 }
6008
6009 ctx->io_wq = ctx_attach->io_wq;
6010out_fput:
6011 fdput(f);
6012 return ret;
6013}
6014
Jens Axboe6c271ce2019-01-10 11:22:30 -07006015static int io_sq_offload_start(struct io_ring_ctx *ctx,
6016 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006017{
6018 int ret;
6019
Jens Axboe6c271ce2019-01-10 11:22:30 -07006020 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006021 mmgrab(current->mm);
6022 ctx->sqo_mm = current->mm;
6023
Jens Axboe6c271ce2019-01-10 11:22:30 -07006024 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006025 ret = -EPERM;
6026 if (!capable(CAP_SYS_ADMIN))
6027 goto err;
6028
Jens Axboe917257d2019-04-13 09:28:55 -06006029 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6030 if (!ctx->sq_thread_idle)
6031 ctx->sq_thread_idle = HZ;
6032
Jens Axboe6c271ce2019-01-10 11:22:30 -07006033 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006034 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006035
Jens Axboe917257d2019-04-13 09:28:55 -06006036 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006037 if (cpu >= nr_cpu_ids)
6038 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006039 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006040 goto err;
6041
Jens Axboe6c271ce2019-01-10 11:22:30 -07006042 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6043 ctx, cpu,
6044 "io_uring-sq");
6045 } else {
6046 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6047 "io_uring-sq");
6048 }
6049 if (IS_ERR(ctx->sqo_thread)) {
6050 ret = PTR_ERR(ctx->sqo_thread);
6051 ctx->sqo_thread = NULL;
6052 goto err;
6053 }
6054 wake_up_process(ctx->sqo_thread);
6055 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6056 /* Can't have SQ_AFF without SQPOLL */
6057 ret = -EINVAL;
6058 goto err;
6059 }
6060
Pavel Begunkov24369c22020-01-28 03:15:48 +03006061 ret = io_init_wq_offload(ctx, p);
6062 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006063 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006064
6065 return 0;
6066err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006067 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006068 mmdrop(ctx->sqo_mm);
6069 ctx->sqo_mm = NULL;
6070 return ret;
6071}
6072
6073static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6074{
6075 atomic_long_sub(nr_pages, &user->locked_vm);
6076}
6077
6078static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6079{
6080 unsigned long page_limit, cur_pages, new_pages;
6081
6082 /* Don't allow more pages than we can safely lock */
6083 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6084
6085 do {
6086 cur_pages = atomic_long_read(&user->locked_vm);
6087 new_pages = cur_pages + nr_pages;
6088 if (new_pages > page_limit)
6089 return -ENOMEM;
6090 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6091 new_pages) != cur_pages);
6092
6093 return 0;
6094}
6095
6096static void io_mem_free(void *ptr)
6097{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006098 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006099
Mark Rutland52e04ef2019-04-30 17:30:21 +01006100 if (!ptr)
6101 return;
6102
6103 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006104 if (put_page_testzero(page))
6105 free_compound_page(page);
6106}
6107
6108static void *io_mem_alloc(size_t size)
6109{
6110 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6111 __GFP_NORETRY;
6112
6113 return (void *) __get_free_pages(gfp_flags, get_order(size));
6114}
6115
Hristo Venev75b28af2019-08-26 17:23:46 +00006116static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6117 size_t *sq_offset)
6118{
6119 struct io_rings *rings;
6120 size_t off, sq_array_size;
6121
6122 off = struct_size(rings, cqes, cq_entries);
6123 if (off == SIZE_MAX)
6124 return SIZE_MAX;
6125
6126#ifdef CONFIG_SMP
6127 off = ALIGN(off, SMP_CACHE_BYTES);
6128 if (off == 0)
6129 return SIZE_MAX;
6130#endif
6131
6132 sq_array_size = array_size(sizeof(u32), sq_entries);
6133 if (sq_array_size == SIZE_MAX)
6134 return SIZE_MAX;
6135
6136 if (check_add_overflow(off, sq_array_size, &off))
6137 return SIZE_MAX;
6138
6139 if (sq_offset)
6140 *sq_offset = off;
6141
6142 return off;
6143}
6144
Jens Axboe2b188cc2019-01-07 10:46:33 -07006145static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6146{
Hristo Venev75b28af2019-08-26 17:23:46 +00006147 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006148
Hristo Venev75b28af2019-08-26 17:23:46 +00006149 pages = (size_t)1 << get_order(
6150 rings_size(sq_entries, cq_entries, NULL));
6151 pages += (size_t)1 << get_order(
6152 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006153
Hristo Venev75b28af2019-08-26 17:23:46 +00006154 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006155}
6156
Jens Axboeedafcce2019-01-09 09:16:05 -07006157static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6158{
6159 int i, j;
6160
6161 if (!ctx->user_bufs)
6162 return -ENXIO;
6163
6164 for (i = 0; i < ctx->nr_user_bufs; i++) {
6165 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6166
6167 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006168 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006169
6170 if (ctx->account_mem)
6171 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006172 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006173 imu->nr_bvecs = 0;
6174 }
6175
6176 kfree(ctx->user_bufs);
6177 ctx->user_bufs = NULL;
6178 ctx->nr_user_bufs = 0;
6179 return 0;
6180}
6181
6182static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6183 void __user *arg, unsigned index)
6184{
6185 struct iovec __user *src;
6186
6187#ifdef CONFIG_COMPAT
6188 if (ctx->compat) {
6189 struct compat_iovec __user *ciovs;
6190 struct compat_iovec ciov;
6191
6192 ciovs = (struct compat_iovec __user *) arg;
6193 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6194 return -EFAULT;
6195
Jens Axboed55e5f52019-12-11 16:12:15 -07006196 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006197 dst->iov_len = ciov.iov_len;
6198 return 0;
6199 }
6200#endif
6201 src = (struct iovec __user *) arg;
6202 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6203 return -EFAULT;
6204 return 0;
6205}
6206
6207static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6208 unsigned nr_args)
6209{
6210 struct vm_area_struct **vmas = NULL;
6211 struct page **pages = NULL;
6212 int i, j, got_pages = 0;
6213 int ret = -EINVAL;
6214
6215 if (ctx->user_bufs)
6216 return -EBUSY;
6217 if (!nr_args || nr_args > UIO_MAXIOV)
6218 return -EINVAL;
6219
6220 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
6221 GFP_KERNEL);
6222 if (!ctx->user_bufs)
6223 return -ENOMEM;
6224
6225 for (i = 0; i < nr_args; i++) {
6226 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6227 unsigned long off, start, end, ubuf;
6228 int pret, nr_pages;
6229 struct iovec iov;
6230 size_t size;
6231
6232 ret = io_copy_iov(ctx, &iov, arg, i);
6233 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03006234 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07006235
6236 /*
6237 * Don't impose further limits on the size and buffer
6238 * constraints here, we'll -EINVAL later when IO is
6239 * submitted if they are wrong.
6240 */
6241 ret = -EFAULT;
6242 if (!iov.iov_base || !iov.iov_len)
6243 goto err;
6244
6245 /* arbitrary limit, but we need something */
6246 if (iov.iov_len > SZ_1G)
6247 goto err;
6248
6249 ubuf = (unsigned long) iov.iov_base;
6250 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
6251 start = ubuf >> PAGE_SHIFT;
6252 nr_pages = end - start;
6253
6254 if (ctx->account_mem) {
6255 ret = io_account_mem(ctx->user, nr_pages);
6256 if (ret)
6257 goto err;
6258 }
6259
6260 ret = 0;
6261 if (!pages || nr_pages > got_pages) {
6262 kfree(vmas);
6263 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006264 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07006265 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006266 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07006267 sizeof(struct vm_area_struct *),
6268 GFP_KERNEL);
6269 if (!pages || !vmas) {
6270 ret = -ENOMEM;
6271 if (ctx->account_mem)
6272 io_unaccount_mem(ctx->user, nr_pages);
6273 goto err;
6274 }
6275 got_pages = nr_pages;
6276 }
6277
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006278 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07006279 GFP_KERNEL);
6280 ret = -ENOMEM;
6281 if (!imu->bvec) {
6282 if (ctx->account_mem)
6283 io_unaccount_mem(ctx->user, nr_pages);
6284 goto err;
6285 }
6286
6287 ret = 0;
6288 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08006289 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07006290 FOLL_WRITE | FOLL_LONGTERM,
6291 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006292 if (pret == nr_pages) {
6293 /* don't support file backed memory */
6294 for (j = 0; j < nr_pages; j++) {
6295 struct vm_area_struct *vma = vmas[j];
6296
6297 if (vma->vm_file &&
6298 !is_file_hugepages(vma->vm_file)) {
6299 ret = -EOPNOTSUPP;
6300 break;
6301 }
6302 }
6303 } else {
6304 ret = pret < 0 ? pret : -EFAULT;
6305 }
6306 up_read(&current->mm->mmap_sem);
6307 if (ret) {
6308 /*
6309 * if we did partial map, or found file backed vmas,
6310 * release any pages we did get
6311 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07006312 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006313 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006314 if (ctx->account_mem)
6315 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006316 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006317 goto err;
6318 }
6319
6320 off = ubuf & ~PAGE_MASK;
6321 size = iov.iov_len;
6322 for (j = 0; j < nr_pages; j++) {
6323 size_t vec_len;
6324
6325 vec_len = min_t(size_t, size, PAGE_SIZE - off);
6326 imu->bvec[j].bv_page = pages[j];
6327 imu->bvec[j].bv_len = vec_len;
6328 imu->bvec[j].bv_offset = off;
6329 off = 0;
6330 size -= vec_len;
6331 }
6332 /* store original address for later verification */
6333 imu->ubuf = ubuf;
6334 imu->len = iov.iov_len;
6335 imu->nr_bvecs = nr_pages;
6336
6337 ctx->nr_user_bufs++;
6338 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006339 kvfree(pages);
6340 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006341 return 0;
6342err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006343 kvfree(pages);
6344 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006345 io_sqe_buffer_unregister(ctx);
6346 return ret;
6347}
6348
Jens Axboe9b402842019-04-11 11:45:41 -06006349static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
6350{
6351 __s32 __user *fds = arg;
6352 int fd;
6353
6354 if (ctx->cq_ev_fd)
6355 return -EBUSY;
6356
6357 if (copy_from_user(&fd, fds, sizeof(*fds)))
6358 return -EFAULT;
6359
6360 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
6361 if (IS_ERR(ctx->cq_ev_fd)) {
6362 int ret = PTR_ERR(ctx->cq_ev_fd);
6363 ctx->cq_ev_fd = NULL;
6364 return ret;
6365 }
6366
6367 return 0;
6368}
6369
6370static int io_eventfd_unregister(struct io_ring_ctx *ctx)
6371{
6372 if (ctx->cq_ev_fd) {
6373 eventfd_ctx_put(ctx->cq_ev_fd);
6374 ctx->cq_ev_fd = NULL;
6375 return 0;
6376 }
6377
6378 return -ENXIO;
6379}
6380
Jens Axboe2b188cc2019-01-07 10:46:33 -07006381static void io_ring_ctx_free(struct io_ring_ctx *ctx)
6382{
Jens Axboe6b063142019-01-10 22:13:58 -07006383 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006384 if (ctx->sqo_mm)
6385 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07006386
6387 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07006388 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07006389 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06006390 io_eventfd_unregister(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07006391 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07006392
Jens Axboe2b188cc2019-01-07 10:46:33 -07006393#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07006394 if (ctx->ring_sock) {
6395 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006396 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07006397 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006398#endif
6399
Hristo Venev75b28af2019-08-26 17:23:46 +00006400 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006401 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006402
6403 percpu_ref_exit(&ctx->refs);
6404 if (ctx->account_mem)
6405 io_unaccount_mem(ctx->user,
6406 ring_pages(ctx->sq_entries, ctx->cq_entries));
6407 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07006408 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07006409 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07006410 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07006411 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006412 kfree(ctx);
6413}
6414
6415static __poll_t io_uring_poll(struct file *file, poll_table *wait)
6416{
6417 struct io_ring_ctx *ctx = file->private_data;
6418 __poll_t mask = 0;
6419
6420 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02006421 /*
6422 * synchronizes with barrier from wq_has_sleeper call in
6423 * io_commit_cqring
6424 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006425 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00006426 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
6427 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006428 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01006429 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006430 mask |= EPOLLIN | EPOLLRDNORM;
6431
6432 return mask;
6433}
6434
6435static int io_uring_fasync(int fd, struct file *file, int on)
6436{
6437 struct io_ring_ctx *ctx = file->private_data;
6438
6439 return fasync_helper(fd, file, on, &ctx->cq_fasync);
6440}
6441
Jens Axboe071698e2020-01-28 10:04:42 -07006442static int io_remove_personalities(int id, void *p, void *data)
6443{
6444 struct io_ring_ctx *ctx = data;
6445 const struct cred *cred;
6446
6447 cred = idr_remove(&ctx->personality_idr, id);
6448 if (cred)
6449 put_cred(cred);
6450 return 0;
6451}
6452
Jens Axboe2b188cc2019-01-07 10:46:33 -07006453static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
6454{
6455 mutex_lock(&ctx->uring_lock);
6456 percpu_ref_kill(&ctx->refs);
6457 mutex_unlock(&ctx->uring_lock);
6458
Jens Axboedf069d82020-02-04 16:48:34 -07006459 /*
6460 * Wait for sq thread to idle, if we have one. It won't spin on new
6461 * work after we've killed the ctx ref above. This is important to do
6462 * before we cancel existing commands, as the thread could otherwise
6463 * be queueing new work post that. If that's work we need to cancel,
6464 * it could cause shutdown to hang.
6465 */
6466 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
6467 cpu_relax();
6468
Jens Axboe5262f562019-09-17 12:26:57 -06006469 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07006470 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06006471
6472 if (ctx->io_wq)
6473 io_wq_cancel_all(ctx->io_wq);
6474
Jens Axboedef596e2019-01-09 08:59:42 -07006475 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07006476 /* if we failed setting up the ctx, we might not have any rings */
6477 if (ctx->rings)
6478 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07006479 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07006480 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006481 io_ring_ctx_free(ctx);
6482}
6483
6484static int io_uring_release(struct inode *inode, struct file *file)
6485{
6486 struct io_ring_ctx *ctx = file->private_data;
6487
6488 file->private_data = NULL;
6489 io_ring_ctx_wait_and_kill(ctx);
6490 return 0;
6491}
6492
Jens Axboefcb323c2019-10-24 12:39:47 -06006493static void io_uring_cancel_files(struct io_ring_ctx *ctx,
6494 struct files_struct *files)
6495{
6496 struct io_kiocb *req;
6497 DEFINE_WAIT(wait);
6498
6499 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07006500 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06006501
6502 spin_lock_irq(&ctx->inflight_lock);
6503 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07006504 if (req->work.files != files)
6505 continue;
6506 /* req is being completed, ignore */
6507 if (!refcount_inc_not_zero(&req->refs))
6508 continue;
6509 cancel_req = req;
6510 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06006511 }
Jens Axboe768134d2019-11-10 20:30:53 -07006512 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006513 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07006514 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06006515 spin_unlock_irq(&ctx->inflight_lock);
6516
Jens Axboe768134d2019-11-10 20:30:53 -07006517 /* We need to keep going until we don't find a matching req */
6518 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006519 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08006520
Jens Axboe2ca10252020-02-13 17:17:35 -07006521 if (cancel_req->flags & REQ_F_OVERFLOW) {
6522 spin_lock_irq(&ctx->completion_lock);
6523 list_del(&cancel_req->list);
6524 cancel_req->flags &= ~REQ_F_OVERFLOW;
6525 if (list_empty(&ctx->cq_overflow_list)) {
6526 clear_bit(0, &ctx->sq_check_overflow);
6527 clear_bit(0, &ctx->cq_check_overflow);
6528 }
6529 spin_unlock_irq(&ctx->completion_lock);
6530
6531 WRITE_ONCE(ctx->rings->cq_overflow,
6532 atomic_inc_return(&ctx->cached_cq_overflow));
6533
6534 /*
6535 * Put inflight ref and overflow ref. If that's
6536 * all we had, then we're done with this request.
6537 */
6538 if (refcount_sub_and_test(2, &cancel_req->refs)) {
6539 io_put_req(cancel_req);
6540 continue;
6541 }
6542 }
6543
Bob Liu2f6d9b92019-11-13 18:06:24 +08006544 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
6545 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06006546 schedule();
6547 }
Jens Axboe768134d2019-11-10 20:30:53 -07006548 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06006549}
6550
6551static int io_uring_flush(struct file *file, void *data)
6552{
6553 struct io_ring_ctx *ctx = file->private_data;
6554
6555 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07006556
6557 /*
6558 * If the task is going away, cancel work it may have pending
6559 */
6560 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
6561 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
6562
Jens Axboefcb323c2019-10-24 12:39:47 -06006563 return 0;
6564}
6565
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006566static void *io_uring_validate_mmap_request(struct file *file,
6567 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006568{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006569 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006570 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006571 struct page *page;
6572 void *ptr;
6573
6574 switch (offset) {
6575 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00006576 case IORING_OFF_CQ_RING:
6577 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006578 break;
6579 case IORING_OFF_SQES:
6580 ptr = ctx->sq_sqes;
6581 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006582 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006583 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006584 }
6585
6586 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07006587 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006588 return ERR_PTR(-EINVAL);
6589
6590 return ptr;
6591}
6592
6593#ifdef CONFIG_MMU
6594
6595static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6596{
6597 size_t sz = vma->vm_end - vma->vm_start;
6598 unsigned long pfn;
6599 void *ptr;
6600
6601 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
6602 if (IS_ERR(ptr))
6603 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006604
6605 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
6606 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
6607}
6608
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006609#else /* !CONFIG_MMU */
6610
6611static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6612{
6613 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
6614}
6615
6616static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
6617{
6618 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
6619}
6620
6621static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
6622 unsigned long addr, unsigned long len,
6623 unsigned long pgoff, unsigned long flags)
6624{
6625 void *ptr;
6626
6627 ptr = io_uring_validate_mmap_request(file, pgoff, len);
6628 if (IS_ERR(ptr))
6629 return PTR_ERR(ptr);
6630
6631 return (unsigned long) ptr;
6632}
6633
6634#endif /* !CONFIG_MMU */
6635
Jens Axboe2b188cc2019-01-07 10:46:33 -07006636SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
6637 u32, min_complete, u32, flags, const sigset_t __user *, sig,
6638 size_t, sigsz)
6639{
6640 struct io_ring_ctx *ctx;
6641 long ret = -EBADF;
6642 int submitted = 0;
6643 struct fd f;
6644
Jens Axboeb41e9852020-02-17 09:52:41 -07006645 if (current->task_works)
6646 task_work_run();
6647
Jens Axboe6c271ce2019-01-10 11:22:30 -07006648 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006649 return -EINVAL;
6650
6651 f = fdget(fd);
6652 if (!f.file)
6653 return -EBADF;
6654
6655 ret = -EOPNOTSUPP;
6656 if (f.file->f_op != &io_uring_fops)
6657 goto out_fput;
6658
6659 ret = -ENXIO;
6660 ctx = f.file->private_data;
6661 if (!percpu_ref_tryget(&ctx->refs))
6662 goto out_fput;
6663
Jens Axboe6c271ce2019-01-10 11:22:30 -07006664 /*
6665 * For SQ polling, the thread will do all submissions and completions.
6666 * Just return the requested submit count, and wake the thread if
6667 * we were asked to.
6668 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006669 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006670 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07006671 if (!list_empty_careful(&ctx->cq_overflow_list))
6672 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006673 if (flags & IORING_ENTER_SQ_WAKEUP)
6674 wake_up(&ctx->sqo_wait);
6675 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006676 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006677 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006678
6679 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006680 /* already have mm, so io_submit_sqes() won't try to grab it */
6681 cur_mm = ctx->sqo_mm;
6682 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
6683 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006684 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006685
6686 if (submitted != to_submit)
6687 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006688 }
6689 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07006690 unsigned nr_events = 0;
6691
Jens Axboe2b188cc2019-01-07 10:46:33 -07006692 min_complete = min(min_complete, ctx->cq_entries);
6693
Jens Axboedef596e2019-01-09 08:59:42 -07006694 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07006695 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07006696 } else {
6697 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
6698 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006699 }
6700
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006701out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03006702 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006703out_fput:
6704 fdput(f);
6705 return submitted ? submitted : ret;
6706}
6707
Tobias Klauserbebdb652020-02-26 18:38:32 +01006708#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07006709static int io_uring_show_cred(int id, void *p, void *data)
6710{
6711 const struct cred *cred = p;
6712 struct seq_file *m = data;
6713 struct user_namespace *uns = seq_user_ns(m);
6714 struct group_info *gi;
6715 kernel_cap_t cap;
6716 unsigned __capi;
6717 int g;
6718
6719 seq_printf(m, "%5d\n", id);
6720 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
6721 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
6722 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
6723 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
6724 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
6725 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
6726 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
6727 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
6728 seq_puts(m, "\n\tGroups:\t");
6729 gi = cred->group_info;
6730 for (g = 0; g < gi->ngroups; g++) {
6731 seq_put_decimal_ull(m, g ? " " : "",
6732 from_kgid_munged(uns, gi->gid[g]));
6733 }
6734 seq_puts(m, "\n\tCapEff:\t");
6735 cap = cred->cap_effective;
6736 CAP_FOR_EACH_U32(__capi)
6737 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
6738 seq_putc(m, '\n');
6739 return 0;
6740}
6741
6742static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
6743{
6744 int i;
6745
6746 mutex_lock(&ctx->uring_lock);
6747 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
6748 for (i = 0; i < ctx->nr_user_files; i++) {
6749 struct fixed_file_table *table;
6750 struct file *f;
6751
6752 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6753 f = table->files[i & IORING_FILE_TABLE_MASK];
6754 if (f)
6755 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
6756 else
6757 seq_printf(m, "%5u: <none>\n", i);
6758 }
6759 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
6760 for (i = 0; i < ctx->nr_user_bufs; i++) {
6761 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
6762
6763 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
6764 (unsigned int) buf->len);
6765 }
6766 if (!idr_is_empty(&ctx->personality_idr)) {
6767 seq_printf(m, "Personalities:\n");
6768 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
6769 }
6770 mutex_unlock(&ctx->uring_lock);
6771}
6772
6773static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
6774{
6775 struct io_ring_ctx *ctx = f->private_data;
6776
6777 if (percpu_ref_tryget(&ctx->refs)) {
6778 __io_uring_show_fdinfo(ctx, m);
6779 percpu_ref_put(&ctx->refs);
6780 }
6781}
Tobias Klauserbebdb652020-02-26 18:38:32 +01006782#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07006783
Jens Axboe2b188cc2019-01-07 10:46:33 -07006784static const struct file_operations io_uring_fops = {
6785 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06006786 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07006787 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006788#ifndef CONFIG_MMU
6789 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
6790 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
6791#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006792 .poll = io_uring_poll,
6793 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01006794#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07006795 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01006796#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006797};
6798
6799static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
6800 struct io_uring_params *p)
6801{
Hristo Venev75b28af2019-08-26 17:23:46 +00006802 struct io_rings *rings;
6803 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006804
Hristo Venev75b28af2019-08-26 17:23:46 +00006805 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
6806 if (size == SIZE_MAX)
6807 return -EOVERFLOW;
6808
6809 rings = io_mem_alloc(size);
6810 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006811 return -ENOMEM;
6812
Hristo Venev75b28af2019-08-26 17:23:46 +00006813 ctx->rings = rings;
6814 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
6815 rings->sq_ring_mask = p->sq_entries - 1;
6816 rings->cq_ring_mask = p->cq_entries - 1;
6817 rings->sq_ring_entries = p->sq_entries;
6818 rings->cq_ring_entries = p->cq_entries;
6819 ctx->sq_mask = rings->sq_ring_mask;
6820 ctx->cq_mask = rings->cq_ring_mask;
6821 ctx->sq_entries = rings->sq_ring_entries;
6822 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006823
6824 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07006825 if (size == SIZE_MAX) {
6826 io_mem_free(ctx->rings);
6827 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006828 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07006829 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006830
6831 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07006832 if (!ctx->sq_sqes) {
6833 io_mem_free(ctx->rings);
6834 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006835 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07006836 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006837
Jens Axboe2b188cc2019-01-07 10:46:33 -07006838 return 0;
6839}
6840
6841/*
6842 * Allocate an anonymous fd, this is what constitutes the application
6843 * visible backing of an io_uring instance. The application mmaps this
6844 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
6845 * we have to tie this fd to a socket for file garbage collection purposes.
6846 */
6847static int io_uring_get_fd(struct io_ring_ctx *ctx)
6848{
6849 struct file *file;
6850 int ret;
6851
6852#if defined(CONFIG_UNIX)
6853 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
6854 &ctx->ring_sock);
6855 if (ret)
6856 return ret;
6857#endif
6858
6859 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
6860 if (ret < 0)
6861 goto err;
6862
6863 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
6864 O_RDWR | O_CLOEXEC);
6865 if (IS_ERR(file)) {
6866 put_unused_fd(ret);
6867 ret = PTR_ERR(file);
6868 goto err;
6869 }
6870
6871#if defined(CONFIG_UNIX)
6872 ctx->ring_sock->file = file;
6873#endif
6874 fd_install(ret, file);
6875 return ret;
6876err:
6877#if defined(CONFIG_UNIX)
6878 sock_release(ctx->ring_sock);
6879 ctx->ring_sock = NULL;
6880#endif
6881 return ret;
6882}
6883
6884static int io_uring_create(unsigned entries, struct io_uring_params *p)
6885{
6886 struct user_struct *user = NULL;
6887 struct io_ring_ctx *ctx;
6888 bool account_mem;
6889 int ret;
6890
Jens Axboe8110c1a2019-12-28 15:39:54 -07006891 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006892 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006893 if (entries > IORING_MAX_ENTRIES) {
6894 if (!(p->flags & IORING_SETUP_CLAMP))
6895 return -EINVAL;
6896 entries = IORING_MAX_ENTRIES;
6897 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006898
6899 /*
6900 * Use twice as many entries for the CQ ring. It's possible for the
6901 * application to drive a higher depth than the size of the SQ ring,
6902 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06006903 * some flexibility in overcommitting a bit. If the application has
6904 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
6905 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07006906 */
6907 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06006908 if (p->flags & IORING_SETUP_CQSIZE) {
6909 /*
6910 * If IORING_SETUP_CQSIZE is set, we do the same roundup
6911 * to a power-of-two, if it isn't already. We do NOT impose
6912 * any cq vs sq ring sizing.
6913 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07006914 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06006915 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006916 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
6917 if (!(p->flags & IORING_SETUP_CLAMP))
6918 return -EINVAL;
6919 p->cq_entries = IORING_MAX_CQ_ENTRIES;
6920 }
Jens Axboe33a107f2019-10-04 12:10:03 -06006921 p->cq_entries = roundup_pow_of_two(p->cq_entries);
6922 } else {
6923 p->cq_entries = 2 * p->sq_entries;
6924 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006925
6926 user = get_uid(current_user());
6927 account_mem = !capable(CAP_IPC_LOCK);
6928
6929 if (account_mem) {
6930 ret = io_account_mem(user,
6931 ring_pages(p->sq_entries, p->cq_entries));
6932 if (ret) {
6933 free_uid(user);
6934 return ret;
6935 }
6936 }
6937
6938 ctx = io_ring_ctx_alloc(p);
6939 if (!ctx) {
6940 if (account_mem)
6941 io_unaccount_mem(user, ring_pages(p->sq_entries,
6942 p->cq_entries));
6943 free_uid(user);
6944 return -ENOMEM;
6945 }
6946 ctx->compat = in_compat_syscall();
6947 ctx->account_mem = account_mem;
6948 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07006949 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07006950
6951 ret = io_allocate_scq_urings(ctx, p);
6952 if (ret)
6953 goto err;
6954
Jens Axboe6c271ce2019-01-10 11:22:30 -07006955 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006956 if (ret)
6957 goto err;
6958
Jens Axboe2b188cc2019-01-07 10:46:33 -07006959 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006960 p->sq_off.head = offsetof(struct io_rings, sq.head);
6961 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
6962 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
6963 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
6964 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
6965 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
6966 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006967
6968 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006969 p->cq_off.head = offsetof(struct io_rings, cq.head);
6970 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
6971 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
6972 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
6973 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
6974 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06006975
Jens Axboe044c1ab2019-10-28 09:15:33 -06006976 /*
6977 * Install ring fd as the very last thing, so we don't risk someone
6978 * having closed it before we finish setup
6979 */
6980 ret = io_uring_get_fd(ctx);
6981 if (ret < 0)
6982 goto err;
6983
Jens Axboeda8c9692019-12-02 18:51:26 -07006984 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07006985 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
6986 IORING_FEAT_CUR_PERSONALITY;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006987 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006988 return ret;
6989err:
6990 io_ring_ctx_wait_and_kill(ctx);
6991 return ret;
6992}
6993
6994/*
6995 * Sets up an aio uring context, and returns the fd. Applications asks for a
6996 * ring size, we return the actual sq/cq ring sizes (among other things) in the
6997 * params structure passed in.
6998 */
6999static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7000{
7001 struct io_uring_params p;
7002 long ret;
7003 int i;
7004
7005 if (copy_from_user(&p, params, sizeof(p)))
7006 return -EFAULT;
7007 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7008 if (p.resv[i])
7009 return -EINVAL;
7010 }
7011
Jens Axboe6c271ce2019-01-10 11:22:30 -07007012 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007013 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007014 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007015 return -EINVAL;
7016
7017 ret = io_uring_create(entries, &p);
7018 if (ret < 0)
7019 return ret;
7020
7021 if (copy_to_user(params, &p, sizeof(p)))
7022 return -EFAULT;
7023
7024 return ret;
7025}
7026
7027SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7028 struct io_uring_params __user *, params)
7029{
7030 return io_uring_setup(entries, params);
7031}
7032
Jens Axboe66f4af92020-01-16 15:36:52 -07007033static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7034{
7035 struct io_uring_probe *p;
7036 size_t size;
7037 int i, ret;
7038
7039 size = struct_size(p, ops, nr_args);
7040 if (size == SIZE_MAX)
7041 return -EOVERFLOW;
7042 p = kzalloc(size, GFP_KERNEL);
7043 if (!p)
7044 return -ENOMEM;
7045
7046 ret = -EFAULT;
7047 if (copy_from_user(p, arg, size))
7048 goto out;
7049 ret = -EINVAL;
7050 if (memchr_inv(p, 0, size))
7051 goto out;
7052
7053 p->last_op = IORING_OP_LAST - 1;
7054 if (nr_args > IORING_OP_LAST)
7055 nr_args = IORING_OP_LAST;
7056
7057 for (i = 0; i < nr_args; i++) {
7058 p->ops[i].op = i;
7059 if (!io_op_defs[i].not_supported)
7060 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7061 }
7062 p->ops_len = i;
7063
7064 ret = 0;
7065 if (copy_to_user(arg, p, size))
7066 ret = -EFAULT;
7067out:
7068 kfree(p);
7069 return ret;
7070}
7071
Jens Axboe071698e2020-01-28 10:04:42 -07007072static int io_register_personality(struct io_ring_ctx *ctx)
7073{
7074 const struct cred *creds = get_current_cred();
7075 int id;
7076
7077 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7078 USHRT_MAX, GFP_KERNEL);
7079 if (id < 0)
7080 put_cred(creds);
7081 return id;
7082}
7083
7084static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7085{
7086 const struct cred *old_creds;
7087
7088 old_creds = idr_remove(&ctx->personality_idr, id);
7089 if (old_creds) {
7090 put_cred(old_creds);
7091 return 0;
7092 }
7093
7094 return -EINVAL;
7095}
7096
7097static bool io_register_op_must_quiesce(int op)
7098{
7099 switch (op) {
7100 case IORING_UNREGISTER_FILES:
7101 case IORING_REGISTER_FILES_UPDATE:
7102 case IORING_REGISTER_PROBE:
7103 case IORING_REGISTER_PERSONALITY:
7104 case IORING_UNREGISTER_PERSONALITY:
7105 return false;
7106 default:
7107 return true;
7108 }
7109}
7110
Jens Axboeedafcce2019-01-09 09:16:05 -07007111static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7112 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007113 __releases(ctx->uring_lock)
7114 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007115{
7116 int ret;
7117
Jens Axboe35fa71a2019-04-22 10:23:23 -06007118 /*
7119 * We're inside the ring mutex, if the ref is already dying, then
7120 * someone else killed the ctx or is already going through
7121 * io_uring_register().
7122 */
7123 if (percpu_ref_is_dying(&ctx->refs))
7124 return -ENXIO;
7125
Jens Axboe071698e2020-01-28 10:04:42 -07007126 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007127 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007128
Jens Axboe05f3fb32019-12-09 11:22:50 -07007129 /*
7130 * Drop uring mutex before waiting for references to exit. If
7131 * another thread is currently inside io_uring_enter() it might
7132 * need to grab the uring_lock to make progress. If we hold it
7133 * here across the drain wait, then we can deadlock. It's safe
7134 * to drop the mutex here, since no new references will come in
7135 * after we've killed the percpu ref.
7136 */
7137 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007138 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007139 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007140 if (ret) {
7141 percpu_ref_resurrect(&ctx->refs);
7142 ret = -EINTR;
7143 goto out;
7144 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007145 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007146
7147 switch (opcode) {
7148 case IORING_REGISTER_BUFFERS:
7149 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7150 break;
7151 case IORING_UNREGISTER_BUFFERS:
7152 ret = -EINVAL;
7153 if (arg || nr_args)
7154 break;
7155 ret = io_sqe_buffer_unregister(ctx);
7156 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007157 case IORING_REGISTER_FILES:
7158 ret = io_sqe_files_register(ctx, arg, nr_args);
7159 break;
7160 case IORING_UNREGISTER_FILES:
7161 ret = -EINVAL;
7162 if (arg || nr_args)
7163 break;
7164 ret = io_sqe_files_unregister(ctx);
7165 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06007166 case IORING_REGISTER_FILES_UPDATE:
7167 ret = io_sqe_files_update(ctx, arg, nr_args);
7168 break;
Jens Axboe9b402842019-04-11 11:45:41 -06007169 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07007170 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06007171 ret = -EINVAL;
7172 if (nr_args != 1)
7173 break;
7174 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07007175 if (ret)
7176 break;
7177 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
7178 ctx->eventfd_async = 1;
7179 else
7180 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06007181 break;
7182 case IORING_UNREGISTER_EVENTFD:
7183 ret = -EINVAL;
7184 if (arg || nr_args)
7185 break;
7186 ret = io_eventfd_unregister(ctx);
7187 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07007188 case IORING_REGISTER_PROBE:
7189 ret = -EINVAL;
7190 if (!arg || nr_args > 256)
7191 break;
7192 ret = io_probe(ctx, arg, nr_args);
7193 break;
Jens Axboe071698e2020-01-28 10:04:42 -07007194 case IORING_REGISTER_PERSONALITY:
7195 ret = -EINVAL;
7196 if (arg || nr_args)
7197 break;
7198 ret = io_register_personality(ctx);
7199 break;
7200 case IORING_UNREGISTER_PERSONALITY:
7201 ret = -EINVAL;
7202 if (arg)
7203 break;
7204 ret = io_unregister_personality(ctx, nr_args);
7205 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07007206 default:
7207 ret = -EINVAL;
7208 break;
7209 }
7210
Jens Axboe071698e2020-01-28 10:04:42 -07007211 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007212 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07007213 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07007214out:
7215 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007216 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007217 return ret;
7218}
7219
7220SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
7221 void __user *, arg, unsigned int, nr_args)
7222{
7223 struct io_ring_ctx *ctx;
7224 long ret = -EBADF;
7225 struct fd f;
7226
7227 f = fdget(fd);
7228 if (!f.file)
7229 return -EBADF;
7230
7231 ret = -EOPNOTSUPP;
7232 if (f.file->f_op != &io_uring_fops)
7233 goto out_fput;
7234
7235 ctx = f.file->private_data;
7236
7237 mutex_lock(&ctx->uring_lock);
7238 ret = __io_uring_register(ctx, opcode, arg, nr_args);
7239 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007240 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
7241 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007242out_fput:
7243 fdput(f);
7244 return ret;
7245}
7246
Jens Axboe2b188cc2019-01-07 10:46:33 -07007247static int __init io_uring_init(void)
7248{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007249#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
7250 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
7251 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
7252} while (0)
7253
7254#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
7255 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
7256 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
7257 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
7258 BUILD_BUG_SQE_ELEM(1, __u8, flags);
7259 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
7260 BUILD_BUG_SQE_ELEM(4, __s32, fd);
7261 BUILD_BUG_SQE_ELEM(8, __u64, off);
7262 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
7263 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007264 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007265 BUILD_BUG_SQE_ELEM(24, __u32, len);
7266 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
7267 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
7268 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
7269 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
7270 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
7271 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
7272 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
7273 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
7274 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
7275 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
7276 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
7277 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
7278 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007279 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007280 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
7281 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
7282 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007283 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007284
Jens Axboed3656342019-12-18 09:50:26 -07007285 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007286 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
7287 return 0;
7288};
7289__initcall(io_uring_init);