blob: 7c44b0ef10d7937561767242bb5c2af23b363546 [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
47#include <linux/refcount.h>
48#include <linux/uio.h>
49
50#include <linux/sched/signal.h>
51#include <linux/fs.h>
52#include <linux/file.h>
53#include <linux/fdtable.h>
54#include <linux/mm.h>
55#include <linux/mman.h>
56#include <linux/mmu_context.h>
57#include <linux/percpu.h>
58#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070059#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070060#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070061#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/net.h>
63#include <net/sock.h>
64#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070065#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070066#include <linux/anon_inodes.h>
67#include <linux/sched/mm.h>
68#include <linux/uaccess.h>
69#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070070#include <linux/sizes.h>
71#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070072#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070073#include <linux/namei.h>
74#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070075#include <linux/fadvise.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070076
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020077#define CREATE_TRACE_POINTS
78#include <trace/events/io_uring.h>
79
Jens Axboe2b188cc2019-01-07 10:46:33 -070080#include <uapi/linux/io_uring.h>
81
82#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060083#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070084
Daniel Xu5277dea2019-09-14 14:23:45 -070085#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060086#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060087
88/*
89 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
90 */
91#define IORING_FILE_TABLE_SHIFT 9
92#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
93#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
94#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070095
96struct io_uring {
97 u32 head ____cacheline_aligned_in_smp;
98 u32 tail ____cacheline_aligned_in_smp;
99};
100
Stefan Bühler1e84b972019-04-24 23:54:16 +0200101/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000102 * This data is shared with the application through the mmap at offsets
103 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200104 *
105 * The offsets to the member fields are published through struct
106 * io_sqring_offsets when calling io_uring_setup.
107 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000108struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200109 /*
110 * Head and tail offsets into the ring; the offsets need to be
111 * masked to get valid indices.
112 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000113 * The kernel controls head of the sq ring and the tail of the cq ring,
114 * and the application controls tail of the sq ring and the head of the
115 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200116 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000117 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200118 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200120 * ring_entries - 1)
121 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000122 u32 sq_ring_mask, cq_ring_mask;
123 /* Ring sizes (constant, power of 2) */
124 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200125 /*
126 * Number of invalid entries dropped by the kernel due to
127 * invalid index stored in array
128 *
129 * Written by the kernel, shouldn't be modified by the
130 * application (i.e. get number of "new events" by comparing to
131 * cached value).
132 *
133 * After a new SQ head value was read by the application this
134 * counter includes all submissions that were dropped reaching
135 * the new SQ head (and possibly more).
136 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000137 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200138 /*
139 * Runtime flags
140 *
141 * Written by the kernel, shouldn't be modified by the
142 * application.
143 *
144 * The application needs a full memory barrier before checking
145 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
146 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000147 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200148 /*
149 * Number of completion events lost because the queue was full;
150 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800151 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200152 * the completion queue.
153 *
154 * Written by the kernel, shouldn't be modified by the
155 * application (i.e. get number of "new events" by comparing to
156 * cached value).
157 *
158 * As completion events come in out of order this counter is not
159 * ordered with any other data.
160 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000161 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200162 /*
163 * Ring buffer of completion events.
164 *
165 * The kernel writes completion events fresh every time they are
166 * produced, so the application is allowed to modify pending
167 * entries.
168 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000169 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700170};
171
Jens Axboeedafcce2019-01-09 09:16:05 -0700172struct io_mapped_ubuf {
173 u64 ubuf;
174 size_t len;
175 struct bio_vec *bvec;
176 unsigned int nr_bvecs;
177};
178
Jens Axboe65e19f52019-10-26 07:20:21 -0600179struct fixed_file_table {
180 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700181};
182
Jens Axboe05f3fb32019-12-09 11:22:50 -0700183enum {
184 FFD_F_ATOMIC,
185};
186
187struct fixed_file_data {
188 struct fixed_file_table *table;
189 struct io_ring_ctx *ctx;
190
191 struct percpu_ref refs;
192 struct llist_head put_llist;
193 unsigned long state;
194 struct work_struct ref_work;
195 struct completion done;
196};
197
Jens Axboe2b188cc2019-01-07 10:46:33 -0700198struct io_ring_ctx {
199 struct {
200 struct percpu_ref refs;
201 } ____cacheline_aligned_in_smp;
202
203 struct {
204 unsigned int flags;
205 bool compat;
206 bool account_mem;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700207 bool cq_overflow_flushed;
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300208 bool drain_next;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700209
Hristo Venev75b28af2019-08-26 17:23:46 +0000210 /*
211 * Ring buffer of indices into array of io_uring_sqe, which is
212 * mmapped by the application using the IORING_OFF_SQES offset.
213 *
214 * This indirection could e.g. be used to assign fixed
215 * io_uring_sqe entries to operations and only submit them to
216 * the queue when needed.
217 *
218 * The kernel modifies neither the indices array nor the entries
219 * array.
220 */
221 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700222 unsigned cached_sq_head;
223 unsigned sq_entries;
224 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700225 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600226 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700227 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700228 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600229
230 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600231 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700232 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700233
Jens Axboefcb323c2019-10-24 12:39:47 -0600234 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700235 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700236 } ____cacheline_aligned_in_smp;
237
Hristo Venev75b28af2019-08-26 17:23:46 +0000238 struct io_rings *rings;
239
Jens Axboe2b188cc2019-01-07 10:46:33 -0700240 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600241 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700242 struct task_struct *sqo_thread; /* if using sq thread polling */
243 struct mm_struct *sqo_mm;
244 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700245
Jens Axboe6b063142019-01-10 22:13:58 -0700246 /*
247 * If used, fixed file set. Writers must ensure that ->refs is dead,
248 * readers must ensure that ->refs is alive as long as the file* is
249 * used. Only updated through io_uring_register(2).
250 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700251 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700252 unsigned nr_user_files;
253
Jens Axboeedafcce2019-01-09 09:16:05 -0700254 /* if used, fixed mapped user buffers */
255 unsigned nr_user_bufs;
256 struct io_mapped_ubuf *user_bufs;
257
Jens Axboe2b188cc2019-01-07 10:46:33 -0700258 struct user_struct *user;
259
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700260 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700261
Jens Axboe206aefd2019-11-07 18:27:42 -0700262 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
263 struct completion *completions;
264
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700265 /* if all else fails... */
266 struct io_kiocb *fallback_req;
267
Jens Axboe206aefd2019-11-07 18:27:42 -0700268#if defined(CONFIG_UNIX)
269 struct socket *ring_sock;
270#endif
271
272 struct {
273 unsigned cached_cq_tail;
274 unsigned cq_entries;
275 unsigned cq_mask;
276 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700277 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700278 struct wait_queue_head cq_wait;
279 struct fasync_struct *cq_fasync;
280 struct eventfd_ctx *cq_ev_fd;
281 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700282
283 struct {
284 struct mutex uring_lock;
285 wait_queue_head_t wait;
286 } ____cacheline_aligned_in_smp;
287
288 struct {
289 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700290 struct llist_head poll_llist;
291
Jens Axboedef596e2019-01-09 08:59:42 -0700292 /*
293 * ->poll_list is protected by the ctx->uring_lock for
294 * io_uring instances that don't use IORING_SETUP_SQPOLL.
295 * For SQPOLL, only the single threaded io_sq_thread() will
296 * manipulate the list, hence no extra locking is needed there.
297 */
298 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700299 struct hlist_head *cancel_hash;
300 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700301 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600302
303 spinlock_t inflight_lock;
304 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700305 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700306};
307
Jens Axboe09bb8392019-03-13 12:39:28 -0600308/*
309 * First field must be the file pointer in all the
310 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
311 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700312struct io_poll_iocb {
313 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700314 union {
315 struct wait_queue_head *head;
316 u64 addr;
317 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700318 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600319 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700320 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700321 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700322};
323
Jens Axboeb5dba592019-12-11 14:02:38 -0700324struct io_close {
325 struct file *file;
326 struct file *put_file;
327 int fd;
328};
329
Jens Axboead8a48a2019-11-15 08:49:11 -0700330struct io_timeout_data {
331 struct io_kiocb *req;
332 struct hrtimer timer;
333 struct timespec64 ts;
334 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300335 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700336};
337
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700338struct io_accept {
339 struct file *file;
340 struct sockaddr __user *addr;
341 int __user *addr_len;
342 int flags;
343};
344
345struct io_sync {
346 struct file *file;
347 loff_t len;
348 loff_t off;
349 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700350 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700351};
352
Jens Axboefbf23842019-12-17 18:45:56 -0700353struct io_cancel {
354 struct file *file;
355 u64 addr;
356};
357
Jens Axboeb29472e2019-12-17 18:50:29 -0700358struct io_timeout {
359 struct file *file;
360 u64 addr;
361 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700362 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700363};
364
Jens Axboe9adbd452019-12-20 08:45:55 -0700365struct io_rw {
366 /* NOTE: kiocb has the file as the first member, so don't do it here */
367 struct kiocb kiocb;
368 u64 addr;
369 u64 len;
370};
371
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700372struct io_connect {
373 struct file *file;
374 struct sockaddr __user *addr;
375 int addr_len;
376};
377
Jens Axboee47293f2019-12-20 08:58:21 -0700378struct io_sr_msg {
379 struct file *file;
380 struct user_msghdr __user *msg;
381 int msg_flags;
382};
383
Jens Axboe15b71ab2019-12-11 11:20:36 -0700384struct io_open {
385 struct file *file;
386 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700387 union {
388 umode_t mode;
389 unsigned mask;
390 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700391 const char __user *fname;
392 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700393 struct statx __user *buffer;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700394 int flags;
395};
396
Jens Axboe05f3fb32019-12-09 11:22:50 -0700397struct io_files_update {
398 struct file *file;
399 u64 arg;
400 u32 nr_args;
401 u32 offset;
402};
403
Jens Axboe4840e412019-12-25 22:03:45 -0700404struct io_fadvise {
405 struct file *file;
406 u64 offset;
407 u32 len;
408 u32 advice;
409};
410
Jens Axboec1ca7572019-12-25 22:18:28 -0700411struct io_madvise {
412 struct file *file;
413 u64 addr;
414 u32 len;
415 u32 advice;
416};
417
Jens Axboef499a022019-12-02 16:28:46 -0700418struct io_async_connect {
419 struct sockaddr_storage address;
420};
421
Jens Axboe03b12302019-12-02 18:50:25 -0700422struct io_async_msghdr {
423 struct iovec fast_iov[UIO_FASTIOV];
424 struct iovec *iov;
425 struct sockaddr __user *uaddr;
426 struct msghdr msg;
427};
428
Jens Axboef67676d2019-12-02 11:03:47 -0700429struct io_async_rw {
430 struct iovec fast_iov[UIO_FASTIOV];
431 struct iovec *iov;
432 ssize_t nr_segs;
433 ssize_t size;
434};
435
Jens Axboe15b71ab2019-12-11 11:20:36 -0700436struct io_async_open {
437 struct filename *filename;
438};
439
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700440struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700441 union {
442 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700443 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700444 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700445 struct io_timeout_data timeout;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700446 struct io_async_open open;
Jens Axboef67676d2019-12-02 11:03:47 -0700447 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700448};
449
Jens Axboe09bb8392019-03-13 12:39:28 -0600450/*
451 * NOTE! Each of the iocb union members has the file pointer
452 * as the first entry in their struct definition. So you can
453 * access the file pointer through any of the sub-structs,
454 * or directly as just 'ki_filp' in this struct.
455 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700456struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700457 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600458 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700459 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700460 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700461 struct io_accept accept;
462 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700463 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700464 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700465 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700466 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700467 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700468 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700469 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700470 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700471 struct io_madvise madvise;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700472 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700473
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700474 struct io_async_ctx *io;
Jens Axboee94f1412019-12-19 12:06:02 -0700475 union {
476 /*
477 * ring_file is only used in the submission path, and
478 * llist_node is only used for poll deferred completions
479 */
480 struct file *ring_file;
481 struct llist_node llist_node;
482 };
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300483 int ring_fd;
484 bool has_user;
485 bool in_async;
486 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700487 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700488
489 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700490 union {
491 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700492 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700493 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600494 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700495 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700496 refcount_t refs;
Stefan Bühler8449eed2019-04-27 20:34:19 +0200497#define REQ_F_NOWAIT 1 /* must not punt to workers */
Jens Axboedef596e2019-01-09 08:59:42 -0700498#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
Jens Axboe6b063142019-01-10 22:13:58 -0700499#define REQ_F_FIXED_FILE 4 /* ctx owns file */
Jens Axboe4d7dd462019-11-20 13:03:52 -0700500#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
Stefan Bühlere2033e32019-05-11 19:08:01 +0200501#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
502#define REQ_F_IO_DRAINED 32 /* drain done */
Jens Axboe9e645e112019-05-10 16:07:28 -0600503#define REQ_F_LINK 64 /* linked sqes */
Jens Axboe2665abf2019-11-05 12:40:47 -0700504#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
Zhengyuan Liuf7b76ac2019-07-16 23:26:14 +0800505#define REQ_F_FAIL_LINK 256 /* fail rest of links */
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +0300506#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
Jens Axboe5262f562019-09-17 12:26:57 -0600507#define REQ_F_TIMEOUT 1024 /* timeout request */
Jens Axboe491381ce2019-10-17 09:20:46 -0600508#define REQ_F_ISREG 2048 /* regular file */
509#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
Jens Axboe93bd25b2019-11-11 23:34:31 -0700510#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800511#define REQ_F_INFLIGHT 16384 /* on inflight list */
512#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
Jens Axboe4e88d6e2019-12-07 20:59:47 -0700513#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
Jens Axboece35a472019-12-17 08:04:44 -0700514#define REQ_F_FORCE_ASYNC 131072 /* IOSQE_ASYNC */
Jens Axboeba042912019-12-25 16:33:42 -0700515#define REQ_F_CUR_POS 262144 /* read/write uses file position */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700516 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600517 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600518 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700519
Jens Axboefcb323c2019-10-24 12:39:47 -0600520 struct list_head inflight_entry;
521
Jens Axboe561fb042019-10-24 07:25:42 -0600522 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700523};
524
525#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700526#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700527
Jens Axboe9a56a232019-01-09 09:06:50 -0700528struct io_submit_state {
529 struct blk_plug plug;
530
531 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700532 * io_kiocb alloc cache
533 */
534 void *reqs[IO_IOPOLL_BATCH];
535 unsigned int free_reqs;
536 unsigned int cur_req;
537
538 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700539 * File reference cache
540 */
541 struct file *file;
542 unsigned int fd;
543 unsigned int has_refs;
544 unsigned int used_refs;
545 unsigned int ios_left;
546};
547
Jens Axboed3656342019-12-18 09:50:26 -0700548struct io_op_def {
549 /* needs req->io allocated for deferral/async */
550 unsigned async_ctx : 1;
551 /* needs current->mm setup, does mm access */
552 unsigned needs_mm : 1;
553 /* needs req->file assigned */
554 unsigned needs_file : 1;
555 /* needs req->file assigned IFF fd is >= 0 */
556 unsigned fd_non_neg : 1;
557 /* hash wq insertion if file is a regular file */
558 unsigned hash_reg_file : 1;
559 /* unbound wq insertion if file is a non-regular file */
560 unsigned unbound_nonreg_file : 1;
561};
562
563static const struct io_op_def io_op_defs[] = {
564 {
565 /* IORING_OP_NOP */
566 },
567 {
568 /* IORING_OP_READV */
569 .async_ctx = 1,
570 .needs_mm = 1,
571 .needs_file = 1,
572 .unbound_nonreg_file = 1,
573 },
574 {
575 /* IORING_OP_WRITEV */
576 .async_ctx = 1,
577 .needs_mm = 1,
578 .needs_file = 1,
579 .hash_reg_file = 1,
580 .unbound_nonreg_file = 1,
581 },
582 {
583 /* IORING_OP_FSYNC */
584 .needs_file = 1,
585 },
586 {
587 /* IORING_OP_READ_FIXED */
588 .needs_file = 1,
589 .unbound_nonreg_file = 1,
590 },
591 {
592 /* IORING_OP_WRITE_FIXED */
593 .needs_file = 1,
594 .hash_reg_file = 1,
595 .unbound_nonreg_file = 1,
596 },
597 {
598 /* IORING_OP_POLL_ADD */
599 .needs_file = 1,
600 .unbound_nonreg_file = 1,
601 },
602 {
603 /* IORING_OP_POLL_REMOVE */
604 },
605 {
606 /* IORING_OP_SYNC_FILE_RANGE */
607 .needs_file = 1,
608 },
609 {
610 /* IORING_OP_SENDMSG */
611 .async_ctx = 1,
612 .needs_mm = 1,
613 .needs_file = 1,
614 .unbound_nonreg_file = 1,
615 },
616 {
617 /* IORING_OP_RECVMSG */
618 .async_ctx = 1,
619 .needs_mm = 1,
620 .needs_file = 1,
621 .unbound_nonreg_file = 1,
622 },
623 {
624 /* IORING_OP_TIMEOUT */
625 .async_ctx = 1,
626 .needs_mm = 1,
627 },
628 {
629 /* IORING_OP_TIMEOUT_REMOVE */
630 },
631 {
632 /* IORING_OP_ACCEPT */
633 .needs_mm = 1,
634 .needs_file = 1,
635 .unbound_nonreg_file = 1,
636 },
637 {
638 /* IORING_OP_ASYNC_CANCEL */
639 },
640 {
641 /* IORING_OP_LINK_TIMEOUT */
642 .async_ctx = 1,
643 .needs_mm = 1,
644 },
645 {
646 /* IORING_OP_CONNECT */
647 .async_ctx = 1,
648 .needs_mm = 1,
649 .needs_file = 1,
650 .unbound_nonreg_file = 1,
651 },
652 {
653 /* IORING_OP_FALLOCATE */
654 .needs_file = 1,
655 },
656 {
657 /* IORING_OP_OPENAT */
658 .needs_file = 1,
659 .fd_non_neg = 1,
660 },
661 {
662 /* IORING_OP_CLOSE */
663 .needs_file = 1,
664 },
665 {
666 /* IORING_OP_FILES_UPDATE */
667 .needs_mm = 1,
668 },
669 {
670 /* IORING_OP_STATX */
671 .needs_mm = 1,
672 .needs_file = 1,
673 .fd_non_neg = 1,
674 },
Jens Axboe3a6820f2019-12-22 15:19:35 -0700675 {
676 /* IORING_OP_READ */
677 .needs_mm = 1,
678 .needs_file = 1,
679 .unbound_nonreg_file = 1,
680 },
681 {
682 /* IORING_OP_WRITE */
683 .needs_mm = 1,
684 .needs_file = 1,
685 .unbound_nonreg_file = 1,
686 },
Jens Axboe4840e412019-12-25 22:03:45 -0700687 {
688 /* IORING_OP_FADVISE */
689 .needs_file = 1,
690 },
Jens Axboec1ca7572019-12-25 22:18:28 -0700691 {
692 /* IORING_OP_MADVISE */
693 .needs_mm = 1,
694 },
Jens Axboed3656342019-12-18 09:50:26 -0700695};
696
Jens Axboe561fb042019-10-24 07:25:42 -0600697static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700698static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800699static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700700static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700701static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
702static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700703static int __io_sqe_files_update(struct io_ring_ctx *ctx,
704 struct io_uring_files_update *ip,
705 unsigned nr_args);
Jens Axboede0617e2019-04-06 21:51:27 -0600706
Jens Axboe2b188cc2019-01-07 10:46:33 -0700707static struct kmem_cache *req_cachep;
708
709static const struct file_operations io_uring_fops;
710
711struct sock *io_uring_get_socket(struct file *file)
712{
713#if defined(CONFIG_UNIX)
714 if (file->f_op == &io_uring_fops) {
715 struct io_ring_ctx *ctx = file->private_data;
716
717 return ctx->ring_sock->sk;
718 }
719#endif
720 return NULL;
721}
722EXPORT_SYMBOL(io_uring_get_socket);
723
724static void io_ring_ctx_ref_free(struct percpu_ref *ref)
725{
726 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
727
Jens Axboe206aefd2019-11-07 18:27:42 -0700728 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700729}
730
731static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
732{
733 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700734 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700735
736 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
737 if (!ctx)
738 return NULL;
739
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700740 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
741 if (!ctx->fallback_req)
742 goto err;
743
Jens Axboe206aefd2019-11-07 18:27:42 -0700744 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
745 if (!ctx->completions)
746 goto err;
747
Jens Axboe78076bb2019-12-04 19:56:40 -0700748 /*
749 * Use 5 bits less than the max cq entries, that should give us around
750 * 32 entries per hash list if totally full and uniformly spread.
751 */
752 hash_bits = ilog2(p->cq_entries);
753 hash_bits -= 5;
754 if (hash_bits <= 0)
755 hash_bits = 1;
756 ctx->cancel_hash_bits = hash_bits;
757 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
758 GFP_KERNEL);
759 if (!ctx->cancel_hash)
760 goto err;
761 __hash_init(ctx->cancel_hash, 1U << hash_bits);
762
Roman Gushchin21482892019-05-07 10:01:48 -0700763 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700764 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
765 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700766
767 ctx->flags = p->flags;
768 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700769 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700770 init_completion(&ctx->completions[0]);
771 init_completion(&ctx->completions[1]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700772 mutex_init(&ctx->uring_lock);
773 init_waitqueue_head(&ctx->wait);
774 spin_lock_init(&ctx->completion_lock);
Jens Axboee94f1412019-12-19 12:06:02 -0700775 init_llist_head(&ctx->poll_llist);
Jens Axboedef596e2019-01-09 08:59:42 -0700776 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600777 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600778 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600779 init_waitqueue_head(&ctx->inflight_wait);
780 spin_lock_init(&ctx->inflight_lock);
781 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700782 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700783err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700784 if (ctx->fallback_req)
785 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700786 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700787 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700788 kfree(ctx);
789 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700790}
791
Bob Liu9d858b22019-11-13 18:06:25 +0800792static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600793{
Jackie Liua197f662019-11-08 08:09:12 -0700794 struct io_ring_ctx *ctx = req->ctx;
795
Jens Axboe498ccd92019-10-25 10:04:25 -0600796 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
797 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600798}
799
Bob Liu9d858b22019-11-13 18:06:25 +0800800static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600801{
Bob Liu9d858b22019-11-13 18:06:25 +0800802 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
803 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600804
Bob Liu9d858b22019-11-13 18:06:25 +0800805 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600806}
807
808static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600809{
810 struct io_kiocb *req;
811
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600812 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800813 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600814 list_del_init(&req->list);
815 return req;
816 }
817
818 return NULL;
819}
820
Jens Axboe5262f562019-09-17 12:26:57 -0600821static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
822{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600823 struct io_kiocb *req;
824
825 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700826 if (req) {
827 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
828 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800829 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700830 list_del_init(&req->list);
831 return req;
832 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600833 }
834
835 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600836}
837
Jens Axboede0617e2019-04-06 21:51:27 -0600838static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700839{
Hristo Venev75b28af2019-08-26 17:23:46 +0000840 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700841
Hristo Venev75b28af2019-08-26 17:23:46 +0000842 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700843 /* order cqe stores with ring update */
Hristo Venev75b28af2019-08-26 17:23:46 +0000844 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700845
Jens Axboe2b188cc2019-01-07 10:46:33 -0700846 if (wq_has_sleeper(&ctx->cq_wait)) {
847 wake_up_interruptible(&ctx->cq_wait);
848 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
849 }
850 }
851}
852
Jens Axboe94ae5e72019-11-14 19:39:52 -0700853static inline bool io_prep_async_work(struct io_kiocb *req,
854 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600855{
Jens Axboed3656342019-12-18 09:50:26 -0700856 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe561fb042019-10-24 07:25:42 -0600857 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600858
Jens Axboed3656342019-12-18 09:50:26 -0700859 if (req->flags & REQ_F_ISREG) {
860 if (def->hash_reg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700861 do_hashed = true;
Jens Axboed3656342019-12-18 09:50:26 -0700862 } else {
863 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700864 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -0600865 }
Jens Axboed3656342019-12-18 09:50:26 -0700866 if (def->needs_mm)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700867 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
Jens Axboe54a91f32019-09-10 09:15:04 -0600868
Jens Axboe94ae5e72019-11-14 19:39:52 -0700869 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600870 return do_hashed;
871}
872
Jackie Liua197f662019-11-08 08:09:12 -0700873static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600874{
Jackie Liua197f662019-11-08 08:09:12 -0700875 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700876 struct io_kiocb *link;
877 bool do_hashed;
878
879 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600880
881 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
882 req->flags);
883 if (!do_hashed) {
884 io_wq_enqueue(ctx->io_wq, &req->work);
885 } else {
886 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
887 file_inode(req->file));
888 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700889
890 if (link)
891 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600892}
893
Jens Axboe5262f562019-09-17 12:26:57 -0600894static void io_kill_timeout(struct io_kiocb *req)
895{
896 int ret;
897
Jens Axboe2d283902019-12-04 11:08:05 -0700898 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600899 if (ret != -1) {
900 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -0600901 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700902 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800903 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -0600904 }
905}
906
907static void io_kill_timeouts(struct io_ring_ctx *ctx)
908{
909 struct io_kiocb *req, *tmp;
910
911 spin_lock_irq(&ctx->completion_lock);
912 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
913 io_kill_timeout(req);
914 spin_unlock_irq(&ctx->completion_lock);
915}
916
Jens Axboede0617e2019-04-06 21:51:27 -0600917static void io_commit_cqring(struct io_ring_ctx *ctx)
918{
919 struct io_kiocb *req;
920
Jens Axboe5262f562019-09-17 12:26:57 -0600921 while ((req = io_get_timeout_req(ctx)) != NULL)
922 io_kill_timeout(req);
923
Jens Axboede0617e2019-04-06 21:51:27 -0600924 __io_commit_cqring(ctx);
925
926 while ((req = io_get_deferred_req(ctx)) != NULL) {
927 req->flags |= REQ_F_IO_DRAINED;
Jackie Liua197f662019-11-08 08:09:12 -0700928 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -0600929 }
930}
931
Jens Axboe2b188cc2019-01-07 10:46:33 -0700932static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
933{
Hristo Venev75b28af2019-08-26 17:23:46 +0000934 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700935 unsigned tail;
936
937 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +0200938 /*
939 * writes to the cq entry need to come after reading head; the
940 * control dependency is enough as we're using WRITE_ONCE to
941 * fill the cq entry
942 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000943 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700944 return NULL;
945
946 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +0000947 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -0700948}
949
Jens Axboe8c838782019-03-12 15:48:16 -0600950static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
951{
952 if (waitqueue_active(&ctx->wait))
953 wake_up(&ctx->wait);
954 if (waitqueue_active(&ctx->sqo_wait))
955 wake_up(&ctx->sqo_wait);
Jens Axboe9b402842019-04-11 11:45:41 -0600956 if (ctx->cq_ev_fd)
957 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -0600958}
959
Jens Axboec4a2ed72019-11-21 21:01:26 -0700960/* Returns true if there are no backlogged entries after the flush */
961static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700962{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700963 struct io_rings *rings = ctx->rings;
964 struct io_uring_cqe *cqe;
965 struct io_kiocb *req;
966 unsigned long flags;
967 LIST_HEAD(list);
968
969 if (!force) {
970 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700971 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700972 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
973 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -0700974 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700975 }
976
977 spin_lock_irqsave(&ctx->completion_lock, flags);
978
979 /* if force is set, the ring is going away. always drop after that */
980 if (force)
981 ctx->cq_overflow_flushed = true;
982
Jens Axboec4a2ed72019-11-21 21:01:26 -0700983 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700984 while (!list_empty(&ctx->cq_overflow_list)) {
985 cqe = io_get_cqring(ctx);
986 if (!cqe && !force)
987 break;
988
989 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
990 list);
991 list_move(&req->list, &list);
992 if (cqe) {
993 WRITE_ONCE(cqe->user_data, req->user_data);
994 WRITE_ONCE(cqe->res, req->result);
995 WRITE_ONCE(cqe->flags, 0);
996 } else {
997 WRITE_ONCE(ctx->rings->cq_overflow,
998 atomic_inc_return(&ctx->cached_cq_overflow));
999 }
1000 }
1001
1002 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001003 if (cqe) {
1004 clear_bit(0, &ctx->sq_check_overflow);
1005 clear_bit(0, &ctx->cq_check_overflow);
1006 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001007 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1008 io_cqring_ev_posted(ctx);
1009
1010 while (!list_empty(&list)) {
1011 req = list_first_entry(&list, struct io_kiocb, list);
1012 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001013 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001014 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001015
1016 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001017}
1018
Jens Axboe78e19bb2019-11-06 15:21:34 -07001019static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001020{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001021 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001022 struct io_uring_cqe *cqe;
1023
Jens Axboe78e19bb2019-11-06 15:21:34 -07001024 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001025
Jens Axboe2b188cc2019-01-07 10:46:33 -07001026 /*
1027 * If we can't get a cq entry, userspace overflowed the
1028 * submission (by quite a lot). Increment the overflow count in
1029 * the ring.
1030 */
1031 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001032 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001033 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001034 WRITE_ONCE(cqe->res, res);
1035 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001036 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001037 WRITE_ONCE(ctx->rings->cq_overflow,
1038 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001039 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001040 if (list_empty(&ctx->cq_overflow_list)) {
1041 set_bit(0, &ctx->sq_check_overflow);
1042 set_bit(0, &ctx->cq_check_overflow);
1043 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001044 refcount_inc(&req->refs);
1045 req->result = res;
1046 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001047 }
1048}
1049
Jens Axboe78e19bb2019-11-06 15:21:34 -07001050static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001051{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001052 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001053 unsigned long flags;
1054
1055 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001056 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001057 io_commit_cqring(ctx);
1058 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1059
Jens Axboe8c838782019-03-12 15:48:16 -06001060 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001061}
1062
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001063static inline bool io_is_fallback_req(struct io_kiocb *req)
1064{
1065 return req == (struct io_kiocb *)
1066 ((unsigned long) req->ctx->fallback_req & ~1UL);
1067}
1068
1069static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1070{
1071 struct io_kiocb *req;
1072
1073 req = ctx->fallback_req;
1074 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1075 return req;
1076
1077 return NULL;
1078}
1079
Jens Axboe2579f912019-01-09 09:10:43 -07001080static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1081 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001082{
Jens Axboefd6fab22019-03-14 16:30:06 -06001083 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001084 struct io_kiocb *req;
1085
Jens Axboe2579f912019-01-09 09:10:43 -07001086 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001087 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001088 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001089 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001090 } else if (!state->free_reqs) {
1091 size_t sz;
1092 int ret;
1093
1094 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001095 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1096
1097 /*
1098 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1099 * retry single alloc to be on the safe side.
1100 */
1101 if (unlikely(ret <= 0)) {
1102 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1103 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001104 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001105 ret = 1;
1106 }
Jens Axboe2579f912019-01-09 09:10:43 -07001107 state->free_reqs = ret - 1;
1108 state->cur_req = 1;
1109 req = state->reqs[0];
1110 } else {
1111 req = state->reqs[state->cur_req];
1112 state->free_reqs--;
1113 state->cur_req++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001114 }
1115
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001116got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001117 req->io = NULL;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001118 req->ring_file = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001119 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001120 req->ctx = ctx;
1121 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001122 /* one is dropped after submission, the other at completion */
1123 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001124 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001125 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001126 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001127fallback:
1128 req = io_get_fallback_req(ctx);
1129 if (req)
1130 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001131 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001132 return NULL;
1133}
1134
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001135static void __io_req_do_free(struct io_kiocb *req)
1136{
1137 if (likely(!io_is_fallback_req(req)))
1138 kmem_cache_free(req_cachep, req);
1139 else
1140 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1141}
1142
Jens Axboec6ca97b302019-12-28 12:11:08 -07001143static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001144{
Jens Axboefcb323c2019-10-24 12:39:47 -06001145 struct io_ring_ctx *ctx = req->ctx;
1146
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001147 if (req->io)
1148 kfree(req->io);
Jens Axboe05f3fb32019-12-09 11:22:50 -07001149 if (req->file) {
1150 if (req->flags & REQ_F_FIXED_FILE)
1151 percpu_ref_put(&ctx->file_data->refs);
1152 else
1153 fput(req->file);
1154 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001155}
1156
1157static void __io_free_req(struct io_kiocb *req)
1158{
1159 __io_req_aux_free(req);
1160
Jens Axboefcb323c2019-10-24 12:39:47 -06001161 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001162 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001163 unsigned long flags;
1164
1165 spin_lock_irqsave(&ctx->inflight_lock, flags);
1166 list_del(&req->inflight_entry);
1167 if (waitqueue_active(&ctx->inflight_wait))
1168 wake_up(&ctx->inflight_wait);
1169 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1170 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001171
1172 percpu_ref_put(&req->ctx->refs);
1173 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001174}
1175
Jens Axboec6ca97b302019-12-28 12:11:08 -07001176struct req_batch {
1177 void *reqs[IO_IOPOLL_BATCH];
1178 int to_free;
1179 int need_iter;
1180};
1181
1182static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1183{
1184 if (!rb->to_free)
1185 return;
1186 if (rb->need_iter) {
1187 int i, inflight = 0;
1188 unsigned long flags;
1189
1190 for (i = 0; i < rb->to_free; i++) {
1191 struct io_kiocb *req = rb->reqs[i];
1192
1193 if (req->flags & REQ_F_FIXED_FILE)
1194 req->file = NULL;
1195 if (req->flags & REQ_F_INFLIGHT)
1196 inflight++;
1197 else
1198 rb->reqs[i] = NULL;
1199 __io_req_aux_free(req);
1200 }
1201 if (!inflight)
1202 goto do_free;
1203
1204 spin_lock_irqsave(&ctx->inflight_lock, flags);
1205 for (i = 0; i < rb->to_free; i++) {
1206 struct io_kiocb *req = rb->reqs[i];
1207
1208 if (req) {
1209 list_del(&req->inflight_entry);
1210 if (!--inflight)
1211 break;
1212 }
1213 }
1214 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1215
1216 if (waitqueue_active(&ctx->inflight_wait))
1217 wake_up(&ctx->inflight_wait);
1218 }
1219do_free:
1220 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1221 percpu_ref_put_many(&ctx->refs, rb->to_free);
1222 percpu_ref_put_many(&ctx->file_data->refs, rb->to_free);
1223 rb->to_free = rb->need_iter = 0;
1224}
1225
Jackie Liua197f662019-11-08 08:09:12 -07001226static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001227{
Jackie Liua197f662019-11-08 08:09:12 -07001228 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001229 int ret;
1230
Jens Axboe2d283902019-12-04 11:08:05 -07001231 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001232 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001233 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001234 io_commit_cqring(ctx);
1235 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001236 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001237 return true;
1238 }
1239
1240 return false;
1241}
1242
Jens Axboeba816ad2019-09-28 11:36:45 -06001243static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001244{
Jens Axboe2665abf2019-11-05 12:40:47 -07001245 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001246 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001247
Jens Axboe4d7dd462019-11-20 13:03:52 -07001248 /* Already got next link */
1249 if (req->flags & REQ_F_LINK_NEXT)
1250 return;
1251
Jens Axboe9e645e112019-05-10 16:07:28 -06001252 /*
1253 * The list should never be empty when we are called here. But could
1254 * potentially happen if the chain is messed up, check to be on the
1255 * safe side.
1256 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001257 while (!list_empty(&req->link_list)) {
1258 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1259 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001260
Pavel Begunkov44932332019-12-05 16:16:35 +03001261 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1262 (nxt->flags & REQ_F_TIMEOUT))) {
1263 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001264 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001265 req->flags &= ~REQ_F_LINK_TIMEOUT;
1266 continue;
1267 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001268
Pavel Begunkov44932332019-12-05 16:16:35 +03001269 list_del_init(&req->link_list);
1270 if (!list_empty(&nxt->link_list))
1271 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001272 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001273 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001274 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001275
Jens Axboe4d7dd462019-11-20 13:03:52 -07001276 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001277 if (wake_ev)
1278 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001279}
1280
1281/*
1282 * Called if REQ_F_LINK is set, and we fail the head request
1283 */
1284static void io_fail_links(struct io_kiocb *req)
1285{
Jens Axboe2665abf2019-11-05 12:40:47 -07001286 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001287 unsigned long flags;
1288
1289 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001290
1291 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001292 struct io_kiocb *link = list_first_entry(&req->link_list,
1293 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001294
Pavel Begunkov44932332019-12-05 16:16:35 +03001295 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001296 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001297
1298 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001299 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001300 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001301 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001302 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001303 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001304 }
Jens Axboe5d960722019-11-19 15:31:28 -07001305 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001306 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001307
1308 io_commit_cqring(ctx);
1309 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1310 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001311}
1312
Jens Axboe4d7dd462019-11-20 13:03:52 -07001313static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001314{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001315 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001316 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001317
Jens Axboe9e645e112019-05-10 16:07:28 -06001318 /*
1319 * If LINK is set, we have dependent requests in this chain. If we
1320 * didn't fail this request, queue the first one up, moving any other
1321 * dependencies to the next request. In case of failure, fail the rest
1322 * of the chain.
1323 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001324 if (req->flags & REQ_F_FAIL_LINK) {
1325 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001326 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1327 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001328 struct io_ring_ctx *ctx = req->ctx;
1329 unsigned long flags;
1330
1331 /*
1332 * If this is a timeout link, we could be racing with the
1333 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001334 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001335 */
1336 spin_lock_irqsave(&ctx->completion_lock, flags);
1337 io_req_link_next(req, nxt);
1338 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1339 } else {
1340 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001341 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001342}
Jens Axboe9e645e112019-05-10 16:07:28 -06001343
Jackie Liuc69f8db2019-11-09 11:00:08 +08001344static void io_free_req(struct io_kiocb *req)
1345{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001346 struct io_kiocb *nxt = NULL;
1347
1348 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001349 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001350
1351 if (nxt)
1352 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001353}
1354
Jens Axboeba816ad2019-09-28 11:36:45 -06001355/*
1356 * Drop reference to request, return next in chain (if there is one) if this
1357 * was the last reference to this request.
1358 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001359__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001360static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001361{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001362 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001363
Jens Axboee65ef562019-03-12 10:16:44 -06001364 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001365 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001366}
1367
Jens Axboe2b188cc2019-01-07 10:46:33 -07001368static void io_put_req(struct io_kiocb *req)
1369{
Jens Axboedef596e2019-01-09 08:59:42 -07001370 if (refcount_dec_and_test(&req->refs))
1371 io_free_req(req);
1372}
1373
Jens Axboe978db572019-11-14 22:39:04 -07001374/*
1375 * Must only be used if we don't need to care about links, usually from
1376 * within the completion handling itself.
1377 */
1378static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001379{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001380 /* drop both submit and complete references */
1381 if (refcount_sub_and_test(2, &req->refs))
1382 __io_free_req(req);
1383}
1384
Jens Axboe978db572019-11-14 22:39:04 -07001385static void io_double_put_req(struct io_kiocb *req)
1386{
1387 /* drop both submit and complete references */
1388 if (refcount_sub_and_test(2, &req->refs))
1389 io_free_req(req);
1390}
1391
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001392static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001393{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001394 struct io_rings *rings = ctx->rings;
1395
Jens Axboead3eb2c2019-12-18 17:12:20 -07001396 if (test_bit(0, &ctx->cq_check_overflow)) {
1397 /*
1398 * noflush == true is from the waitqueue handler, just ensure
1399 * we wake up the task, and the next invocation will flush the
1400 * entries. We cannot safely to it from here.
1401 */
1402 if (noflush && !list_empty(&ctx->cq_overflow_list))
1403 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001404
Jens Axboead3eb2c2019-12-18 17:12:20 -07001405 io_cqring_overflow_flush(ctx, false);
1406 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001407
Jens Axboea3a0e432019-08-20 11:03:11 -06001408 /* See comment at the top of this file */
1409 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001410 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001411}
1412
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001413static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1414{
1415 struct io_rings *rings = ctx->rings;
1416
1417 /* make sure SQ entry isn't read before tail */
1418 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1419}
1420
Jens Axboe8237e042019-12-28 10:48:22 -07001421static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001422{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001423 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1424 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001425
Jens Axboec6ca97b302019-12-28 12:11:08 -07001426 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1427 rb->need_iter++;
1428
1429 rb->reqs[rb->to_free++] = req;
1430 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1431 io_free_req_many(req->ctx, rb);
1432 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001433}
1434
Jens Axboedef596e2019-01-09 08:59:42 -07001435/*
1436 * Find and free completed poll iocbs
1437 */
1438static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1439 struct list_head *done)
1440{
Jens Axboe8237e042019-12-28 10:48:22 -07001441 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001442 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001443
Jens Axboec6ca97b302019-12-28 12:11:08 -07001444 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001445 while (!list_empty(done)) {
1446 req = list_first_entry(done, struct io_kiocb, list);
1447 list_del(&req->list);
1448
Jens Axboe78e19bb2019-11-06 15:21:34 -07001449 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001450 (*nr_events)++;
1451
Jens Axboe8237e042019-12-28 10:48:22 -07001452 if (refcount_dec_and_test(&req->refs) &&
1453 !io_req_multi_free(&rb, req))
1454 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001455 }
Jens Axboedef596e2019-01-09 08:59:42 -07001456
Jens Axboe09bb8392019-03-13 12:39:28 -06001457 io_commit_cqring(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001458 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001459}
1460
1461static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1462 long min)
1463{
1464 struct io_kiocb *req, *tmp;
1465 LIST_HEAD(done);
1466 bool spin;
1467 int ret;
1468
1469 /*
1470 * Only spin for completions if we don't have multiple devices hanging
1471 * off our complete list, and we're under the requested amount.
1472 */
1473 spin = !ctx->poll_multi_file && *nr_events < min;
1474
1475 ret = 0;
1476 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001477 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001478
1479 /*
1480 * Move completed entries to our local list. If we find a
1481 * request that requires polling, break out and complete
1482 * the done list first, if we have entries there.
1483 */
1484 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1485 list_move_tail(&req->list, &done);
1486 continue;
1487 }
1488 if (!list_empty(&done))
1489 break;
1490
1491 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1492 if (ret < 0)
1493 break;
1494
1495 if (ret && spin)
1496 spin = false;
1497 ret = 0;
1498 }
1499
1500 if (!list_empty(&done))
1501 io_iopoll_complete(ctx, nr_events, &done);
1502
1503 return ret;
1504}
1505
1506/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001507 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001508 * non-spinning poll check - we'll still enter the driver poll loop, but only
1509 * as a non-spinning completion check.
1510 */
1511static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1512 long min)
1513{
Jens Axboe08f54392019-08-21 22:19:11 -06001514 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001515 int ret;
1516
1517 ret = io_do_iopoll(ctx, nr_events, min);
1518 if (ret < 0)
1519 return ret;
1520 if (!min || *nr_events >= min)
1521 return 0;
1522 }
1523
1524 return 1;
1525}
1526
1527/*
1528 * We can't just wait for polled events to come to us, we have to actively
1529 * find and complete them.
1530 */
1531static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1532{
1533 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1534 return;
1535
1536 mutex_lock(&ctx->uring_lock);
1537 while (!list_empty(&ctx->poll_list)) {
1538 unsigned int nr_events = 0;
1539
1540 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001541
1542 /*
1543 * Ensure we allow local-to-the-cpu processing to take place,
1544 * in this case we need to ensure that we reap all events.
1545 */
1546 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001547 }
1548 mutex_unlock(&ctx->uring_lock);
1549}
1550
Jens Axboe2b2ed972019-10-25 10:06:15 -06001551static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1552 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001553{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001554 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001555
1556 do {
1557 int tmin = 0;
1558
Jens Axboe500f9fb2019-08-19 12:15:59 -06001559 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001560 * Don't enter poll loop if we already have events pending.
1561 * If we do, we can potentially be spinning for commands that
1562 * already triggered a CQE (eg in error).
1563 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001564 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001565 break;
1566
1567 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001568 * If a submit got punted to a workqueue, we can have the
1569 * application entering polling for a command before it gets
1570 * issued. That app will hold the uring_lock for the duration
1571 * of the poll right here, so we need to take a breather every
1572 * now and then to ensure that the issue has a chance to add
1573 * the poll to the issued list. Otherwise we can spin here
1574 * forever, while the workqueue is stuck trying to acquire the
1575 * very same mutex.
1576 */
1577 if (!(++iters & 7)) {
1578 mutex_unlock(&ctx->uring_lock);
1579 mutex_lock(&ctx->uring_lock);
1580 }
1581
Jens Axboedef596e2019-01-09 08:59:42 -07001582 if (*nr_events < min)
1583 tmin = min - *nr_events;
1584
1585 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1586 if (ret <= 0)
1587 break;
1588 ret = 0;
1589 } while (min && !*nr_events && !need_resched());
1590
Jens Axboe2b2ed972019-10-25 10:06:15 -06001591 return ret;
1592}
1593
1594static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1595 long min)
1596{
1597 int ret;
1598
1599 /*
1600 * We disallow the app entering submit/complete with polling, but we
1601 * still need to lock the ring to prevent racing with polled issue
1602 * that got punted to a workqueue.
1603 */
1604 mutex_lock(&ctx->uring_lock);
1605 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001606 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001607 return ret;
1608}
1609
Jens Axboe491381ce2019-10-17 09:20:46 -06001610static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001611{
Jens Axboe491381ce2019-10-17 09:20:46 -06001612 /*
1613 * Tell lockdep we inherited freeze protection from submission
1614 * thread.
1615 */
1616 if (req->flags & REQ_F_ISREG) {
1617 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001618
Jens Axboe491381ce2019-10-17 09:20:46 -06001619 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001620 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001621 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001622}
1623
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001624static inline void req_set_fail_links(struct io_kiocb *req)
1625{
1626 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1627 req->flags |= REQ_F_FAIL_LINK;
1628}
1629
Jens Axboeba816ad2019-09-28 11:36:45 -06001630static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001631{
Jens Axboe9adbd452019-12-20 08:45:55 -07001632 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001633
Jens Axboe491381ce2019-10-17 09:20:46 -06001634 if (kiocb->ki_flags & IOCB_WRITE)
1635 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001636
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001637 if (res != req->result)
1638 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001639 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001640}
1641
1642static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1643{
Jens Axboe9adbd452019-12-20 08:45:55 -07001644 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001645
1646 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001647 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001648}
1649
Jens Axboeba816ad2019-09-28 11:36:45 -06001650static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1651{
Jens Axboe9adbd452019-12-20 08:45:55 -07001652 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001653 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001654
1655 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001656 io_put_req_find_next(req, &nxt);
1657
1658 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001659}
1660
Jens Axboedef596e2019-01-09 08:59:42 -07001661static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1662{
Jens Axboe9adbd452019-12-20 08:45:55 -07001663 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001664
Jens Axboe491381ce2019-10-17 09:20:46 -06001665 if (kiocb->ki_flags & IOCB_WRITE)
1666 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001667
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001668 if (res != req->result)
1669 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001670 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001671 if (res != -EAGAIN)
1672 req->flags |= REQ_F_IOPOLL_COMPLETED;
1673}
1674
1675/*
1676 * After the iocb has been issued, it's safe to be found on the poll list.
1677 * Adding the kiocb to the list AFTER submission ensures that we don't
1678 * find it from a io_iopoll_getevents() thread before the issuer is done
1679 * accessing the kiocb cookie.
1680 */
1681static void io_iopoll_req_issued(struct io_kiocb *req)
1682{
1683 struct io_ring_ctx *ctx = req->ctx;
1684
1685 /*
1686 * Track whether we have multiple files in our lists. This will impact
1687 * how we do polling eventually, not spinning if we're on potentially
1688 * different devices.
1689 */
1690 if (list_empty(&ctx->poll_list)) {
1691 ctx->poll_multi_file = false;
1692 } else if (!ctx->poll_multi_file) {
1693 struct io_kiocb *list_req;
1694
1695 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1696 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001697 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001698 ctx->poll_multi_file = true;
1699 }
1700
1701 /*
1702 * For fast devices, IO may have already completed. If it has, add
1703 * it to the front so we find it first.
1704 */
1705 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1706 list_add(&req->list, &ctx->poll_list);
1707 else
1708 list_add_tail(&req->list, &ctx->poll_list);
1709}
1710
Jens Axboe3d6770f2019-04-13 11:50:54 -06001711static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001712{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001713 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001714 int diff = state->has_refs - state->used_refs;
1715
1716 if (diff)
1717 fput_many(state->file, diff);
1718 state->file = NULL;
1719 }
1720}
1721
1722/*
1723 * Get as many references to a file as we have IOs left in this submission,
1724 * assuming most submissions are for one file, or at least that each file
1725 * has more than one submission.
1726 */
1727static struct file *io_file_get(struct io_submit_state *state, int fd)
1728{
1729 if (!state)
1730 return fget(fd);
1731
1732 if (state->file) {
1733 if (state->fd == fd) {
1734 state->used_refs++;
1735 state->ios_left--;
1736 return state->file;
1737 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001738 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001739 }
1740 state->file = fget_many(fd, state->ios_left);
1741 if (!state->file)
1742 return NULL;
1743
1744 state->fd = fd;
1745 state->has_refs = state->ios_left;
1746 state->used_refs = 1;
1747 state->ios_left--;
1748 return state->file;
1749}
1750
Jens Axboe2b188cc2019-01-07 10:46:33 -07001751/*
1752 * If we tracked the file through the SCM inflight mechanism, we could support
1753 * any file. For now, just ensure that anything potentially problematic is done
1754 * inline.
1755 */
1756static bool io_file_supports_async(struct file *file)
1757{
1758 umode_t mode = file_inode(file)->i_mode;
1759
Jens Axboe10d59342019-12-09 20:16:22 -07001760 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001761 return true;
1762 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1763 return true;
1764
1765 return false;
1766}
1767
Jens Axboe3529d8c2019-12-19 18:24:38 -07001768static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1769 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001770{
Jens Axboedef596e2019-01-09 08:59:42 -07001771 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001772 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001773 unsigned ioprio;
1774 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001775
Jens Axboe09bb8392019-03-13 12:39:28 -06001776 if (!req->file)
1777 return -EBADF;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001778
Jens Axboe491381ce2019-10-17 09:20:46 -06001779 if (S_ISREG(file_inode(req->file)->i_mode))
1780 req->flags |= REQ_F_ISREG;
1781
Jens Axboe2b188cc2019-01-07 10:46:33 -07001782 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07001783 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
1784 req->flags |= REQ_F_CUR_POS;
1785 kiocb->ki_pos = req->file->f_pos;
1786 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001787 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1788 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1789
1790 ioprio = READ_ONCE(sqe->ioprio);
1791 if (ioprio) {
1792 ret = ioprio_check_cap(ioprio);
1793 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001794 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001795
1796 kiocb->ki_ioprio = ioprio;
1797 } else
1798 kiocb->ki_ioprio = get_current_ioprio();
1799
1800 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1801 if (unlikely(ret))
Jens Axboe09bb8392019-03-13 12:39:28 -06001802 return ret;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001803
1804 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001805 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1806 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001807 req->flags |= REQ_F_NOWAIT;
1808
1809 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001810 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001811
Jens Axboedef596e2019-01-09 08:59:42 -07001812 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001813 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1814 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001815 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001816
Jens Axboedef596e2019-01-09 08:59:42 -07001817 kiocb->ki_flags |= IOCB_HIPRI;
1818 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001819 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001820 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001821 if (kiocb->ki_flags & IOCB_HIPRI)
1822 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001823 kiocb->ki_complete = io_complete_rw;
1824 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001825
Jens Axboe3529d8c2019-12-19 18:24:38 -07001826 req->rw.addr = READ_ONCE(sqe->addr);
1827 req->rw.len = READ_ONCE(sqe->len);
Jens Axboe9adbd452019-12-20 08:45:55 -07001828 /* we own ->private, reuse it for the buffer index */
1829 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001830 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001831 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001832}
1833
1834static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1835{
1836 switch (ret) {
1837 case -EIOCBQUEUED:
1838 break;
1839 case -ERESTARTSYS:
1840 case -ERESTARTNOINTR:
1841 case -ERESTARTNOHAND:
1842 case -ERESTART_RESTARTBLOCK:
1843 /*
1844 * We can't just restart the syscall, since previously
1845 * submitted sqes may already be in progress. Just fail this
1846 * IO with EINTR.
1847 */
1848 ret = -EINTR;
1849 /* fall through */
1850 default:
1851 kiocb->ki_complete(kiocb, ret, 0);
1852 }
1853}
1854
Jens Axboeba816ad2019-09-28 11:36:45 -06001855static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1856 bool in_async)
1857{
Jens Axboeba042912019-12-25 16:33:42 -07001858 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
1859
1860 if (req->flags & REQ_F_CUR_POS)
1861 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001862 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001863 *nxt = __io_complete_rw(kiocb, ret);
1864 else
1865 io_rw_done(kiocb, ret);
1866}
1867
Jens Axboe9adbd452019-12-20 08:45:55 -07001868static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03001869 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001870{
Jens Axboe9adbd452019-12-20 08:45:55 -07001871 struct io_ring_ctx *ctx = req->ctx;
1872 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001873 struct io_mapped_ubuf *imu;
1874 unsigned index, buf_index;
1875 size_t offset;
1876 u64 buf_addr;
1877
1878 /* attempt to use fixed buffers without having provided iovecs */
1879 if (unlikely(!ctx->user_bufs))
1880 return -EFAULT;
1881
Jens Axboe9adbd452019-12-20 08:45:55 -07001882 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07001883 if (unlikely(buf_index >= ctx->nr_user_bufs))
1884 return -EFAULT;
1885
1886 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1887 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07001888 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07001889
1890 /* overflow */
1891 if (buf_addr + len < buf_addr)
1892 return -EFAULT;
1893 /* not inside the mapped region */
1894 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1895 return -EFAULT;
1896
1897 /*
1898 * May not be a start of buffer, set size appropriately
1899 * and advance us to the beginning.
1900 */
1901 offset = buf_addr - imu->ubuf;
1902 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06001903
1904 if (offset) {
1905 /*
1906 * Don't use iov_iter_advance() here, as it's really slow for
1907 * using the latter parts of a big fixed buffer - it iterates
1908 * over each segment manually. We can cheat a bit here, because
1909 * we know that:
1910 *
1911 * 1) it's a BVEC iter, we set it up
1912 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1913 * first and last bvec
1914 *
1915 * So just find our index, and adjust the iterator afterwards.
1916 * If the offset is within the first bvec (or the whole first
1917 * bvec, just use iov_iter_advance(). This makes it easier
1918 * since we can just skip the first segment, which may not
1919 * be PAGE_SIZE aligned.
1920 */
1921 const struct bio_vec *bvec = imu->bvec;
1922
1923 if (offset <= bvec->bv_len) {
1924 iov_iter_advance(iter, offset);
1925 } else {
1926 unsigned long seg_skip;
1927
1928 /* skip first vec */
1929 offset -= bvec->bv_len;
1930 seg_skip = 1 + (offset >> PAGE_SHIFT);
1931
1932 iter->bvec = bvec + seg_skip;
1933 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02001934 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001935 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06001936 }
1937 }
1938
Jens Axboe5e559562019-11-13 16:12:46 -07001939 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001940}
1941
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001942static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1943 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001944{
Jens Axboe9adbd452019-12-20 08:45:55 -07001945 void __user *buf = u64_to_user_ptr(req->rw.addr);
1946 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001947 u8 opcode;
1948
Jens Axboed625c6e2019-12-17 19:53:05 -07001949 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03001950 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07001951 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07001952 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07001953 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001954
Jens Axboe9adbd452019-12-20 08:45:55 -07001955 /* buffer index only valid with fixed read/write */
1956 if (req->rw.kiocb.private)
1957 return -EINVAL;
1958
Jens Axboe3a6820f2019-12-22 15:19:35 -07001959 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
1960 ssize_t ret;
1961 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
1962 *iovec = NULL;
1963 return ret;
1964 }
1965
Jens Axboef67676d2019-12-02 11:03:47 -07001966 if (req->io) {
1967 struct io_async_rw *iorw = &req->io->rw;
1968
1969 *iovec = iorw->iov;
1970 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1971 if (iorw->iov == iorw->fast_iov)
1972 *iovec = NULL;
1973 return iorw->size;
1974 }
1975
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001976 if (!req->has_user)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001977 return -EFAULT;
1978
1979#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03001980 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001981 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1982 iovec, iter);
1983#endif
1984
1985 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1986}
1987
Jens Axboe32960612019-09-23 11:05:34 -06001988/*
1989 * For files that don't have ->read_iter() and ->write_iter(), handle them
1990 * by looping over ->read() or ->write() manually.
1991 */
1992static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1993 struct iov_iter *iter)
1994{
1995 ssize_t ret = 0;
1996
1997 /*
1998 * Don't support polled IO through this interface, and we can't
1999 * support non-blocking either. For the latter, this just causes
2000 * the kiocb to be handled from an async context.
2001 */
2002 if (kiocb->ki_flags & IOCB_HIPRI)
2003 return -EOPNOTSUPP;
2004 if (kiocb->ki_flags & IOCB_NOWAIT)
2005 return -EAGAIN;
2006
2007 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002008 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002009 ssize_t nr;
2010
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002011 if (!iov_iter_is_bvec(iter)) {
2012 iovec = iov_iter_iovec(iter);
2013 } else {
2014 /* fixed buffers import bvec */
2015 iovec.iov_base = kmap(iter->bvec->bv_page)
2016 + iter->iov_offset;
2017 iovec.iov_len = min(iter->count,
2018 iter->bvec->bv_len - iter->iov_offset);
2019 }
2020
Jens Axboe32960612019-09-23 11:05:34 -06002021 if (rw == READ) {
2022 nr = file->f_op->read(file, iovec.iov_base,
2023 iovec.iov_len, &kiocb->ki_pos);
2024 } else {
2025 nr = file->f_op->write(file, iovec.iov_base,
2026 iovec.iov_len, &kiocb->ki_pos);
2027 }
2028
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002029 if (iov_iter_is_bvec(iter))
2030 kunmap(iter->bvec->bv_page);
2031
Jens Axboe32960612019-09-23 11:05:34 -06002032 if (nr < 0) {
2033 if (!ret)
2034 ret = nr;
2035 break;
2036 }
2037 ret += nr;
2038 if (nr != iovec.iov_len)
2039 break;
2040 iov_iter_advance(iter, nr);
2041 }
2042
2043 return ret;
2044}
2045
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002046static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002047 struct iovec *iovec, struct iovec *fast_iov,
2048 struct iov_iter *iter)
2049{
2050 req->io->rw.nr_segs = iter->nr_segs;
2051 req->io->rw.size = io_size;
2052 req->io->rw.iov = iovec;
2053 if (!req->io->rw.iov) {
2054 req->io->rw.iov = req->io->rw.fast_iov;
2055 memcpy(req->io->rw.iov, fast_iov,
2056 sizeof(struct iovec) * iter->nr_segs);
2057 }
2058}
2059
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002060static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002061{
Jens Axboed3656342019-12-18 09:50:26 -07002062 if (!io_op_defs[req->opcode].async_ctx)
2063 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002064 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002065 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002066}
2067
2068static void io_rw_async(struct io_wq_work **workptr)
2069{
2070 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2071 struct iovec *iov = NULL;
2072
2073 if (req->io->rw.iov != req->io->rw.fast_iov)
2074 iov = req->io->rw.iov;
2075 io_wq_submit_work(workptr);
2076 kfree(iov);
2077}
2078
2079static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2080 struct iovec *iovec, struct iovec *fast_iov,
2081 struct iov_iter *iter)
2082{
Jens Axboe74566df2020-01-13 19:23:24 -07002083 if (req->opcode == IORING_OP_READ_FIXED ||
2084 req->opcode == IORING_OP_WRITE_FIXED)
2085 return 0;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002086 if (!req->io && io_alloc_async_ctx(req))
2087 return -ENOMEM;
2088
2089 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2090 req->work.func = io_rw_async;
2091 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002092}
2093
Jens Axboe3529d8c2019-12-19 18:24:38 -07002094static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2095 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002096{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002097 struct io_async_ctx *io;
2098 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002099 ssize_t ret;
2100
Jens Axboe3529d8c2019-12-19 18:24:38 -07002101 ret = io_prep_rw(req, sqe, force_nonblock);
2102 if (ret)
2103 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002104
Jens Axboe3529d8c2019-12-19 18:24:38 -07002105 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2106 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002107
Jens Axboe3529d8c2019-12-19 18:24:38 -07002108 if (!req->io)
2109 return 0;
2110
2111 io = req->io;
2112 io->rw.iov = io->rw.fast_iov;
2113 req->io = NULL;
2114 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
2115 req->io = io;
2116 if (ret < 0)
2117 return ret;
2118
2119 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2120 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002121}
2122
Pavel Begunkov267bc902019-11-07 01:41:08 +03002123static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002124 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002125{
2126 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002127 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002128 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002129 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002130 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002131
Jens Axboe3529d8c2019-12-19 18:24:38 -07002132 ret = io_import_iovec(READ, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002133 if (ret < 0)
2134 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002135
Jens Axboefd6c2e42019-12-18 12:19:41 -07002136 /* Ensure we clear previously set non-block flag */
2137 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002138 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002139
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002140 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002141 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002142 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002143 req->result = io_size;
2144
2145 /*
2146 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2147 * we know to async punt it even if it was opened O_NONBLOCK
2148 */
Jens Axboe9adbd452019-12-20 08:45:55 -07002149 if (force_nonblock && !io_file_supports_async(req->file)) {
Jens Axboef67676d2019-12-02 11:03:47 -07002150 req->flags |= REQ_F_MUST_PUNT;
2151 goto copy_iov;
2152 }
Jens Axboe9e645e112019-05-10 16:07:28 -06002153
Jens Axboe31b51512019-01-18 22:56:34 -07002154 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002155 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002156 if (!ret) {
2157 ssize_t ret2;
2158
Jens Axboe9adbd452019-12-20 08:45:55 -07002159 if (req->file->f_op->read_iter)
2160 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002161 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002162 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002163
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002164 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002165 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002166 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002167 } else {
2168copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002169 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002170 inline_vecs, &iter);
2171 if (ret)
2172 goto out_free;
2173 return -EAGAIN;
2174 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002175 }
Jens Axboef67676d2019-12-02 11:03:47 -07002176out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002177 if (!io_wq_current_is_worker())
2178 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002179 return ret;
2180}
2181
Jens Axboe3529d8c2019-12-19 18:24:38 -07002182static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2183 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002184{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002185 struct io_async_ctx *io;
2186 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002187 ssize_t ret;
2188
Jens Axboe3529d8c2019-12-19 18:24:38 -07002189 ret = io_prep_rw(req, sqe, force_nonblock);
2190 if (ret)
2191 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002192
Jens Axboe3529d8c2019-12-19 18:24:38 -07002193 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2194 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002195
Jens Axboe3529d8c2019-12-19 18:24:38 -07002196 if (!req->io)
2197 return 0;
2198
2199 io = req->io;
2200 io->rw.iov = io->rw.fast_iov;
2201 req->io = NULL;
2202 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
2203 req->io = io;
2204 if (ret < 0)
2205 return ret;
2206
2207 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2208 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002209}
2210
Pavel Begunkov267bc902019-11-07 01:41:08 +03002211static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002212 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002213{
2214 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002215 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002216 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002217 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002218 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002219
Jens Axboe3529d8c2019-12-19 18:24:38 -07002220 ret = io_import_iovec(WRITE, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002221 if (ret < 0)
2222 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002223
Jens Axboefd6c2e42019-12-18 12:19:41 -07002224 /* Ensure we clear previously set non-block flag */
2225 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002226 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002227
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002228 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002229 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002230 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002231 req->result = io_size;
2232
2233 /*
2234 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2235 * we know to async punt it even if it was opened O_NONBLOCK
2236 */
2237 if (force_nonblock && !io_file_supports_async(req->file)) {
2238 req->flags |= REQ_F_MUST_PUNT;
2239 goto copy_iov;
2240 }
2241
Jens Axboe10d59342019-12-09 20:16:22 -07002242 /* file path doesn't support NOWAIT for non-direct_IO */
2243 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2244 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002245 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002246
Jens Axboe31b51512019-01-18 22:56:34 -07002247 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002248 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002249 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002250 ssize_t ret2;
2251
Jens Axboe2b188cc2019-01-07 10:46:33 -07002252 /*
2253 * Open-code file_start_write here to grab freeze protection,
2254 * which will be released by another thread in
2255 * io_complete_rw(). Fool lockdep by telling it the lock got
2256 * released so that it doesn't complain about the held lock when
2257 * we return to userspace.
2258 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002259 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002260 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002261 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002262 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002263 SB_FREEZE_WRITE);
2264 }
2265 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002266
Jens Axboe9adbd452019-12-20 08:45:55 -07002267 if (req->file->f_op->write_iter)
2268 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002269 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002270 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboef67676d2019-12-02 11:03:47 -07002271 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002272 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002273 } else {
2274copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002275 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002276 inline_vecs, &iter);
2277 if (ret)
2278 goto out_free;
2279 return -EAGAIN;
2280 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002281 }
Jens Axboe31b51512019-01-18 22:56:34 -07002282out_free:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002283 if (!io_wq_current_is_worker())
2284 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002285 return ret;
2286}
2287
2288/*
2289 * IORING_OP_NOP just posts a completion event, nothing else.
2290 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002291static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002292{
2293 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002294
Jens Axboedef596e2019-01-09 08:59:42 -07002295 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2296 return -EINVAL;
2297
Jens Axboe78e19bb2019-11-06 15:21:34 -07002298 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002299 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002300 return 0;
2301}
2302
Jens Axboe3529d8c2019-12-19 18:24:38 -07002303static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002304{
Jens Axboe6b063142019-01-10 22:13:58 -07002305 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002306
Jens Axboe09bb8392019-03-13 12:39:28 -06002307 if (!req->file)
2308 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002309
Jens Axboe6b063142019-01-10 22:13:58 -07002310 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002311 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002312 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002313 return -EINVAL;
2314
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002315 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2316 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2317 return -EINVAL;
2318
2319 req->sync.off = READ_ONCE(sqe->off);
2320 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002321 return 0;
2322}
2323
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002324static bool io_req_cancelled(struct io_kiocb *req)
2325{
2326 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2327 req_set_fail_links(req);
2328 io_cqring_add_event(req, -ECANCELED);
2329 io_put_req(req);
2330 return true;
2331 }
2332
2333 return false;
2334}
2335
Jens Axboe78912932020-01-14 22:09:06 -07002336static void io_link_work_cb(struct io_wq_work **workptr)
2337{
2338 struct io_wq_work *work = *workptr;
2339 struct io_kiocb *link = work->data;
2340
2341 io_queue_linked_timeout(link);
2342 work->func = io_wq_submit_work;
2343}
2344
2345static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2346{
2347 struct io_kiocb *link;
2348
2349 io_prep_async_work(nxt, &link);
2350 *workptr = &nxt->work;
2351 if (link) {
2352 nxt->work.flags |= IO_WQ_WORK_CB;
2353 nxt->work.func = io_link_work_cb;
2354 nxt->work.data = link;
2355 }
2356}
2357
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002358static void io_fsync_finish(struct io_wq_work **workptr)
2359{
2360 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2361 loff_t end = req->sync.off + req->sync.len;
2362 struct io_kiocb *nxt = NULL;
2363 int ret;
2364
2365 if (io_req_cancelled(req))
2366 return;
2367
Jens Axboe9adbd452019-12-20 08:45:55 -07002368 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002369 end > 0 ? end : LLONG_MAX,
2370 req->sync.flags & IORING_FSYNC_DATASYNC);
2371 if (ret < 0)
2372 req_set_fail_links(req);
2373 io_cqring_add_event(req, ret);
2374 io_put_req_find_next(req, &nxt);
2375 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002376 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002377}
2378
Jens Axboefc4df992019-12-10 14:38:45 -07002379static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2380 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002381{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002382 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002383
2384 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002385 if (force_nonblock) {
2386 io_put_req(req);
2387 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002388 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002389 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002390
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002391 work = old_work = &req->work;
2392 io_fsync_finish(&work);
2393 if (work && work != old_work)
2394 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002395 return 0;
2396}
2397
Jens Axboed63d1b52019-12-10 10:38:56 -07002398static void io_fallocate_finish(struct io_wq_work **workptr)
2399{
2400 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2401 struct io_kiocb *nxt = NULL;
2402 int ret;
2403
2404 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2405 req->sync.len);
2406 if (ret < 0)
2407 req_set_fail_links(req);
2408 io_cqring_add_event(req, ret);
2409 io_put_req_find_next(req, &nxt);
2410 if (nxt)
2411 io_wq_assign_next(workptr, nxt);
2412}
2413
2414static int io_fallocate_prep(struct io_kiocb *req,
2415 const struct io_uring_sqe *sqe)
2416{
2417 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2418 return -EINVAL;
2419
2420 req->sync.off = READ_ONCE(sqe->off);
2421 req->sync.len = READ_ONCE(sqe->addr);
2422 req->sync.mode = READ_ONCE(sqe->len);
2423 return 0;
2424}
2425
2426static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2427 bool force_nonblock)
2428{
2429 struct io_wq_work *work, *old_work;
2430
2431 /* fallocate always requiring blocking context */
2432 if (force_nonblock) {
2433 io_put_req(req);
2434 req->work.func = io_fallocate_finish;
2435 return -EAGAIN;
2436 }
2437
2438 work = old_work = &req->work;
2439 io_fallocate_finish(&work);
2440 if (work && work != old_work)
2441 *nxt = container_of(work, struct io_kiocb, work);
2442
2443 return 0;
2444}
2445
Jens Axboe15b71ab2019-12-11 11:20:36 -07002446static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2447{
2448 int ret;
2449
2450 if (sqe->ioprio || sqe->buf_index)
2451 return -EINVAL;
2452
2453 req->open.dfd = READ_ONCE(sqe->fd);
2454 req->open.mode = READ_ONCE(sqe->len);
2455 req->open.fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2456 req->open.flags = READ_ONCE(sqe->open_flags);
2457
2458 req->open.filename = getname(req->open.fname);
2459 if (IS_ERR(req->open.filename)) {
2460 ret = PTR_ERR(req->open.filename);
2461 req->open.filename = NULL;
2462 return ret;
2463 }
2464
2465 return 0;
2466}
2467
2468static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2469 bool force_nonblock)
2470{
2471 struct open_flags op;
2472 struct open_how how;
2473 struct file *file;
2474 int ret;
2475
2476 if (force_nonblock) {
2477 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2478 return -EAGAIN;
2479 }
2480
2481 how = build_open_how(req->open.flags, req->open.mode);
2482 ret = build_open_flags(&how, &op);
2483 if (ret)
2484 goto err;
2485
2486 ret = get_unused_fd_flags(how.flags);
2487 if (ret < 0)
2488 goto err;
2489
2490 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2491 if (IS_ERR(file)) {
2492 put_unused_fd(ret);
2493 ret = PTR_ERR(file);
2494 } else {
2495 fsnotify_open(file);
2496 fd_install(ret, file);
2497 }
2498err:
2499 putname(req->open.filename);
2500 if (ret < 0)
2501 req_set_fail_links(req);
2502 io_cqring_add_event(req, ret);
2503 io_put_req_find_next(req, nxt);
2504 return 0;
2505}
2506
Jens Axboec1ca7572019-12-25 22:18:28 -07002507static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2508{
2509#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2510 if (sqe->ioprio || sqe->buf_index || sqe->off)
2511 return -EINVAL;
2512
2513 req->madvise.addr = READ_ONCE(sqe->addr);
2514 req->madvise.len = READ_ONCE(sqe->len);
2515 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2516 return 0;
2517#else
2518 return -EOPNOTSUPP;
2519#endif
2520}
2521
2522static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2523 bool force_nonblock)
2524{
2525#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2526 struct io_madvise *ma = &req->madvise;
2527 int ret;
2528
2529 if (force_nonblock)
2530 return -EAGAIN;
2531
2532 ret = do_madvise(ma->addr, ma->len, ma->advice);
2533 if (ret < 0)
2534 req_set_fail_links(req);
2535 io_cqring_add_event(req, ret);
2536 io_put_req_find_next(req, nxt);
2537 return 0;
2538#else
2539 return -EOPNOTSUPP;
2540#endif
2541}
2542
Jens Axboe4840e412019-12-25 22:03:45 -07002543static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2544{
2545 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2546 return -EINVAL;
2547
2548 req->fadvise.offset = READ_ONCE(sqe->off);
2549 req->fadvise.len = READ_ONCE(sqe->len);
2550 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2551 return 0;
2552}
2553
2554static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2555 bool force_nonblock)
2556{
2557 struct io_fadvise *fa = &req->fadvise;
2558 int ret;
2559
2560 /* DONTNEED may block, others _should_ not */
2561 if (fa->advice == POSIX_FADV_DONTNEED && force_nonblock)
2562 return -EAGAIN;
2563
2564 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2565 if (ret < 0)
2566 req_set_fail_links(req);
2567 io_cqring_add_event(req, ret);
2568 io_put_req_find_next(req, nxt);
2569 return 0;
2570}
2571
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002572static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2573{
2574 unsigned lookup_flags;
2575 int ret;
2576
2577 if (sqe->ioprio || sqe->buf_index)
2578 return -EINVAL;
2579
2580 req->open.dfd = READ_ONCE(sqe->fd);
2581 req->open.mask = READ_ONCE(sqe->len);
2582 req->open.fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2583 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2584 req->open.flags = READ_ONCE(sqe->statx_flags);
2585
2586 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.flags))
2587 return -EINVAL;
2588
2589 req->open.filename = getname_flags(req->open.fname, lookup_flags, NULL);
2590 if (IS_ERR(req->open.filename)) {
2591 ret = PTR_ERR(req->open.filename);
2592 req->open.filename = NULL;
2593 return ret;
2594 }
2595
2596 return 0;
2597}
2598
2599static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2600 bool force_nonblock)
2601{
2602 struct io_open *ctx = &req->open;
2603 unsigned lookup_flags;
2604 struct path path;
2605 struct kstat stat;
2606 int ret;
2607
2608 if (force_nonblock)
2609 return -EAGAIN;
2610
2611 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->flags))
2612 return -EINVAL;
2613
2614retry:
2615 /* filename_lookup() drops it, keep a reference */
2616 ctx->filename->refcnt++;
2617
2618 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2619 NULL);
2620 if (ret)
2621 goto err;
2622
2623 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->flags);
2624 path_put(&path);
2625 if (retry_estale(ret, lookup_flags)) {
2626 lookup_flags |= LOOKUP_REVAL;
2627 goto retry;
2628 }
2629 if (!ret)
2630 ret = cp_statx(&stat, ctx->buffer);
2631err:
2632 putname(ctx->filename);
2633 if (ret < 0)
2634 req_set_fail_links(req);
2635 io_cqring_add_event(req, ret);
2636 io_put_req_find_next(req, nxt);
2637 return 0;
2638}
2639
Jens Axboeb5dba592019-12-11 14:02:38 -07002640static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2641{
2642 /*
2643 * If we queue this for async, it must not be cancellable. That would
2644 * leave the 'file' in an undeterminate state.
2645 */
2646 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2647
2648 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2649 sqe->rw_flags || sqe->buf_index)
2650 return -EINVAL;
2651 if (sqe->flags & IOSQE_FIXED_FILE)
2652 return -EINVAL;
2653
2654 req->close.fd = READ_ONCE(sqe->fd);
2655 if (req->file->f_op == &io_uring_fops ||
2656 req->close.fd == req->ring_fd)
2657 return -EBADF;
2658
2659 return 0;
2660}
2661
2662static void io_close_finish(struct io_wq_work **workptr)
2663{
2664 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2665 struct io_kiocb *nxt = NULL;
2666
2667 /* Invoked with files, we need to do the close */
2668 if (req->work.files) {
2669 int ret;
2670
2671 ret = filp_close(req->close.put_file, req->work.files);
2672 if (ret < 0) {
2673 req_set_fail_links(req);
2674 }
2675 io_cqring_add_event(req, ret);
2676 }
2677
2678 fput(req->close.put_file);
2679
2680 /* we bypassed the re-issue, drop the submission reference */
2681 io_put_req(req);
2682 io_put_req_find_next(req, &nxt);
2683 if (nxt)
2684 io_wq_assign_next(workptr, nxt);
2685}
2686
2687static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
2688 bool force_nonblock)
2689{
2690 int ret;
2691
2692 req->close.put_file = NULL;
2693 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
2694 if (ret < 0)
2695 return ret;
2696
2697 /* if the file has a flush method, be safe and punt to async */
2698 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker()) {
2699 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2700 goto eagain;
2701 }
2702
2703 /*
2704 * No ->flush(), safely close from here and just punt the
2705 * fput() to async context.
2706 */
2707 ret = filp_close(req->close.put_file, current->files);
2708
2709 if (ret < 0)
2710 req_set_fail_links(req);
2711 io_cqring_add_event(req, ret);
2712
2713 if (io_wq_current_is_worker()) {
2714 struct io_wq_work *old_work, *work;
2715
2716 old_work = work = &req->work;
2717 io_close_finish(&work);
2718 if (work && work != old_work)
2719 *nxt = container_of(work, struct io_kiocb, work);
2720 return 0;
2721 }
2722
2723eagain:
2724 req->work.func = io_close_finish;
2725 return -EAGAIN;
2726}
2727
Jens Axboe3529d8c2019-12-19 18:24:38 -07002728static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002729{
2730 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002731
2732 if (!req->file)
2733 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002734
2735 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2736 return -EINVAL;
2737 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2738 return -EINVAL;
2739
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002740 req->sync.off = READ_ONCE(sqe->off);
2741 req->sync.len = READ_ONCE(sqe->len);
2742 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002743 return 0;
2744}
2745
2746static void io_sync_file_range_finish(struct io_wq_work **workptr)
2747{
2748 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2749 struct io_kiocb *nxt = NULL;
2750 int ret;
2751
2752 if (io_req_cancelled(req))
2753 return;
2754
Jens Axboe9adbd452019-12-20 08:45:55 -07002755 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002756 req->sync.flags);
2757 if (ret < 0)
2758 req_set_fail_links(req);
2759 io_cqring_add_event(req, ret);
2760 io_put_req_find_next(req, &nxt);
2761 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002762 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002763}
2764
Jens Axboefc4df992019-12-10 14:38:45 -07002765static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002766 bool force_nonblock)
2767{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002768 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002769
2770 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002771 if (force_nonblock) {
2772 io_put_req(req);
2773 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002774 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002775 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002776
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002777 work = old_work = &req->work;
2778 io_sync_file_range_finish(&work);
2779 if (work && work != old_work)
2780 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002781 return 0;
2782}
2783
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002784#if defined(CONFIG_NET)
2785static void io_sendrecv_async(struct io_wq_work **workptr)
2786{
2787 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2788 struct iovec *iov = NULL;
2789
2790 if (req->io->rw.iov != req->io->rw.fast_iov)
2791 iov = req->io->msg.iov;
2792 io_wq_submit_work(workptr);
2793 kfree(iov);
2794}
2795#endif
2796
Jens Axboe3529d8c2019-12-19 18:24:38 -07002797static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002798{
Jens Axboe03b12302019-12-02 18:50:25 -07002799#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002800 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002801 struct io_async_ctx *io = req->io;
Jens Axboe03b12302019-12-02 18:50:25 -07002802
Jens Axboee47293f2019-12-20 08:58:21 -07002803 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2804 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe3529d8c2019-12-19 18:24:38 -07002805
2806 if (!io)
2807 return 0;
2808
Jens Axboed9688562019-12-09 19:35:20 -07002809 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002810 return sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002811 &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002812#else
Jens Axboee47293f2019-12-20 08:58:21 -07002813 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002814#endif
2815}
2816
Jens Axboefc4df992019-12-10 14:38:45 -07002817static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2818 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002819{
2820#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002821 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07002822 struct socket *sock;
2823 int ret;
2824
2825 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2826 return -EINVAL;
2827
2828 sock = sock_from_file(req->file, &ret);
2829 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002830 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002831 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07002832 unsigned flags;
2833
Jens Axboe03b12302019-12-02 18:50:25 -07002834 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002835 kmsg = &req->io->msg;
2836 kmsg->msg.msg_name = &addr;
2837 /* if iov is set, it's allocated already */
2838 if (!kmsg->iov)
2839 kmsg->iov = kmsg->fast_iov;
2840 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002841 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07002842 struct io_sr_msg *sr = &req->sr_msg;
2843
Jens Axboe0b416c32019-12-15 10:57:46 -07002844 kmsg = &io.msg;
2845 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002846
2847 io.msg.iov = io.msg.fast_iov;
2848 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
2849 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002850 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002851 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002852 }
2853
Jens Axboee47293f2019-12-20 08:58:21 -07002854 flags = req->sr_msg.msg_flags;
2855 if (flags & MSG_DONTWAIT)
2856 req->flags |= REQ_F_NOWAIT;
2857 else if (force_nonblock)
2858 flags |= MSG_DONTWAIT;
2859
Jens Axboe0b416c32019-12-15 10:57:46 -07002860 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002861 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002862 if (req->io)
2863 return -EAGAIN;
2864 if (io_alloc_async_ctx(req))
2865 return -ENOMEM;
2866 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2867 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002868 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002869 }
2870 if (ret == -ERESTARTSYS)
2871 ret = -EINTR;
2872 }
2873
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002874 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002875 kfree(kmsg->iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002876 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002877 if (ret < 0)
2878 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07002879 io_put_req_find_next(req, nxt);
2880 return 0;
2881#else
2882 return -EOPNOTSUPP;
2883#endif
2884}
2885
Jens Axboe3529d8c2019-12-19 18:24:38 -07002886static int io_recvmsg_prep(struct io_kiocb *req,
2887 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07002888{
2889#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002890 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002891 struct io_async_ctx *io = req->io;
Jens Axboe06b76d42019-12-19 14:44:26 -07002892
Jens Axboe3529d8c2019-12-19 18:24:38 -07002893 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2894 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
2895
2896 if (!io)
Jens Axboe06b76d42019-12-19 14:44:26 -07002897 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07002898
Jens Axboed9688562019-12-09 19:35:20 -07002899 io->msg.iov = io->msg.fast_iov;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002900 return recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002901 &io->msg.uaddr, &io->msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002902#else
Jens Axboee47293f2019-12-20 08:58:21 -07002903 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07002904#endif
2905}
2906
Jens Axboefc4df992019-12-10 14:38:45 -07002907static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2908 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07002909{
2910#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07002911 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002912 struct socket *sock;
2913 int ret;
2914
2915 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2916 return -EINVAL;
2917
2918 sock = sock_from_file(req->file, &ret);
2919 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002920 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07002921 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002922 unsigned flags;
2923
Jens Axboe03b12302019-12-02 18:50:25 -07002924 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07002925 kmsg = &req->io->msg;
2926 kmsg->msg.msg_name = &addr;
2927 /* if iov is set, it's allocated already */
2928 if (!kmsg->iov)
2929 kmsg->iov = kmsg->fast_iov;
2930 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07002931 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07002932 struct io_sr_msg *sr = &req->sr_msg;
2933
Jens Axboe0b416c32019-12-15 10:57:46 -07002934 kmsg = &io.msg;
2935 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002936
2937 io.msg.iov = io.msg.fast_iov;
2938 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
2939 sr->msg_flags, &io.msg.uaddr,
2940 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07002941 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002942 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002943 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06002944
Jens Axboee47293f2019-12-20 08:58:21 -07002945 flags = req->sr_msg.msg_flags;
2946 if (flags & MSG_DONTWAIT)
2947 req->flags |= REQ_F_NOWAIT;
2948 else if (force_nonblock)
2949 flags |= MSG_DONTWAIT;
2950
2951 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
2952 kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07002953 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002954 if (req->io)
2955 return -EAGAIN;
2956 if (io_alloc_async_ctx(req))
2957 return -ENOMEM;
2958 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2959 req->work.func = io_sendrecv_async;
Jens Axboe0b416c32019-12-15 10:57:46 -07002960 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07002961 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07002962 if (ret == -ERESTARTSYS)
2963 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06002964 }
2965
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002966 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07002967 kfree(kmsg->iov);
Jens Axboe78e19bb2019-11-06 15:21:34 -07002968 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002969 if (ret < 0)
2970 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08002971 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06002972 return 0;
2973#else
2974 return -EOPNOTSUPP;
2975#endif
2976}
2977
Jens Axboe3529d8c2019-12-19 18:24:38 -07002978static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002979{
2980#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002981 struct io_accept *accept = &req->accept;
2982
Jens Axboe17f2fe32019-10-17 14:42:58 -06002983 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2984 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05002985 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06002986 return -EINVAL;
2987
Jens Axboed55e5f52019-12-11 16:12:15 -07002988 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
2989 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002990 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002991 return 0;
2992#else
2993 return -EOPNOTSUPP;
2994#endif
2995}
Jens Axboe17f2fe32019-10-17 14:42:58 -06002996
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002997#if defined(CONFIG_NET)
2998static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
2999 bool force_nonblock)
3000{
3001 struct io_accept *accept = &req->accept;
3002 unsigned file_flags;
3003 int ret;
3004
3005 file_flags = force_nonblock ? O_NONBLOCK : 0;
3006 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3007 accept->addr_len, accept->flags);
3008 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003009 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003010 if (ret == -ERESTARTSYS)
3011 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003012 if (ret < 0)
3013 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003014 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003015 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003016 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003017}
3018
3019static void io_accept_finish(struct io_wq_work **workptr)
3020{
3021 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3022 struct io_kiocb *nxt = NULL;
3023
3024 if (io_req_cancelled(req))
3025 return;
3026 __io_accept(req, &nxt, false);
3027 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003028 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003029}
3030#endif
3031
3032static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3033 bool force_nonblock)
3034{
3035#if defined(CONFIG_NET)
3036 int ret;
3037
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003038 ret = __io_accept(req, nxt, force_nonblock);
3039 if (ret == -EAGAIN && force_nonblock) {
3040 req->work.func = io_accept_finish;
3041 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
3042 io_put_req(req);
3043 return -EAGAIN;
3044 }
3045 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003046#else
3047 return -EOPNOTSUPP;
3048#endif
3049}
3050
Jens Axboe3529d8c2019-12-19 18:24:38 -07003051static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003052{
3053#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003054 struct io_connect *conn = &req->connect;
3055 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003056
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003057 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3058 return -EINVAL;
3059 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3060 return -EINVAL;
3061
Jens Axboe3529d8c2019-12-19 18:24:38 -07003062 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3063 conn->addr_len = READ_ONCE(sqe->addr2);
3064
3065 if (!io)
3066 return 0;
3067
3068 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003069 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003070#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003071 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07003072#endif
3073}
3074
Jens Axboefc4df992019-12-10 14:38:45 -07003075static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3076 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003077{
3078#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07003079 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003080 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003081 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003082
Jens Axboef499a022019-12-02 16:28:46 -07003083 if (req->io) {
3084 io = req->io;
3085 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003086 ret = move_addr_to_kernel(req->connect.addr,
3087 req->connect.addr_len,
3088 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003089 if (ret)
3090 goto out;
3091 io = &__io;
3092 }
3093
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003094 file_flags = force_nonblock ? O_NONBLOCK : 0;
3095
3096 ret = __sys_connect_file(req->file, &io->connect.address,
3097 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003098 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003099 if (req->io)
3100 return -EAGAIN;
3101 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003102 ret = -ENOMEM;
3103 goto out;
3104 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003105 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003106 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003107 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003108 if (ret == -ERESTARTSYS)
3109 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07003110out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003111 if (ret < 0)
3112 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003113 io_cqring_add_event(req, ret);
3114 io_put_req_find_next(req, nxt);
3115 return 0;
3116#else
3117 return -EOPNOTSUPP;
3118#endif
3119}
3120
Jens Axboe221c5eb2019-01-17 09:41:58 -07003121static void io_poll_remove_one(struct io_kiocb *req)
3122{
3123 struct io_poll_iocb *poll = &req->poll;
3124
3125 spin_lock(&poll->head->lock);
3126 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07003127 if (!list_empty(&poll->wait.entry)) {
3128 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07003129 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003130 }
3131 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003132 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003133}
3134
3135static void io_poll_remove_all(struct io_ring_ctx *ctx)
3136{
Jens Axboe78076bb2019-12-04 19:56:40 -07003137 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003138 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07003139 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003140
3141 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003142 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3143 struct hlist_head *list;
3144
3145 list = &ctx->cancel_hash[i];
3146 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3147 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003148 }
3149 spin_unlock_irq(&ctx->completion_lock);
3150}
3151
Jens Axboe47f46762019-11-09 17:43:02 -07003152static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3153{
Jens Axboe78076bb2019-12-04 19:56:40 -07003154 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07003155 struct io_kiocb *req;
3156
Jens Axboe78076bb2019-12-04 19:56:40 -07003157 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3158 hlist_for_each_entry(req, list, hash_node) {
3159 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07003160 io_poll_remove_one(req);
3161 return 0;
3162 }
Jens Axboe47f46762019-11-09 17:43:02 -07003163 }
3164
3165 return -ENOENT;
3166}
3167
Jens Axboe3529d8c2019-12-19 18:24:38 -07003168static int io_poll_remove_prep(struct io_kiocb *req,
3169 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003170{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003171 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3172 return -EINVAL;
3173 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3174 sqe->poll_events)
3175 return -EINVAL;
3176
Jens Axboe0969e782019-12-17 18:40:57 -07003177 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07003178 return 0;
3179}
3180
3181/*
3182 * Find a running poll command that matches one specified in sqe->addr,
3183 * and remove it if found.
3184 */
3185static int io_poll_remove(struct io_kiocb *req)
3186{
3187 struct io_ring_ctx *ctx = req->ctx;
3188 u64 addr;
3189 int ret;
3190
Jens Axboe0969e782019-12-17 18:40:57 -07003191 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003192 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07003193 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003194 spin_unlock_irq(&ctx->completion_lock);
3195
Jens Axboe78e19bb2019-11-06 15:21:34 -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 Axboee65ef562019-03-12 10:16:44 -06003199 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003200 return 0;
3201}
3202
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003203static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003204{
Jackie Liua197f662019-11-08 08:09:12 -07003205 struct io_ring_ctx *ctx = req->ctx;
3206
Jens Axboe8c838782019-03-12 15:48:16 -06003207 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003208 if (error)
3209 io_cqring_fill_event(req, error);
3210 else
3211 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06003212 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003213}
3214
Jens Axboe561fb042019-10-24 07:25:42 -06003215static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003216{
Jens Axboe561fb042019-10-24 07:25:42 -06003217 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003218 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3219 struct io_poll_iocb *poll = &req->poll;
3220 struct poll_table_struct pt = { ._key = poll->events };
3221 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07003222 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003223 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003224 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003225
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003226 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06003227 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003228 ret = -ECANCELED;
3229 } else if (READ_ONCE(poll->canceled)) {
3230 ret = -ECANCELED;
3231 }
Jens Axboe561fb042019-10-24 07:25:42 -06003232
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003233 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003234 mask = vfs_poll(poll->file, &pt) & poll->events;
3235
3236 /*
3237 * Note that ->ki_cancel callers also delete iocb from active_reqs after
3238 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
3239 * synchronize with them. In the cancellation case the list_del_init
3240 * itself is not actually needed, but harmless so we keep it in to
3241 * avoid further branches in the fast path.
3242 */
3243 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003244 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07003245 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003246 spin_unlock_irq(&ctx->completion_lock);
3247 return;
3248 }
Jens Axboe78076bb2019-12-04 19:56:40 -07003249 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003250 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003251 spin_unlock_irq(&ctx->completion_lock);
3252
Jens Axboe8c838782019-03-12 15:48:16 -06003253 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07003254
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003255 if (ret < 0)
3256 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003257 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07003258 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003259 io_wq_assign_next(workptr, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003260}
3261
Jens Axboee94f1412019-12-19 12:06:02 -07003262static void __io_poll_flush(struct io_ring_ctx *ctx, struct llist_node *nodes)
3263{
Jens Axboee94f1412019-12-19 12:06:02 -07003264 struct io_kiocb *req, *tmp;
Jens Axboe8237e042019-12-28 10:48:22 -07003265 struct req_batch rb;
Jens Axboee94f1412019-12-19 12:06:02 -07003266
Jens Axboec6ca97b302019-12-28 12:11:08 -07003267 rb.to_free = rb.need_iter = 0;
Jens Axboee94f1412019-12-19 12:06:02 -07003268 spin_lock_irq(&ctx->completion_lock);
3269 llist_for_each_entry_safe(req, tmp, nodes, llist_node) {
3270 hash_del(&req->hash_node);
3271 io_poll_complete(req, req->result, 0);
3272
Jens Axboe8237e042019-12-28 10:48:22 -07003273 if (refcount_dec_and_test(&req->refs) &&
3274 !io_req_multi_free(&rb, req)) {
3275 req->flags |= REQ_F_COMP_LOCKED;
3276 io_free_req(req);
Jens Axboee94f1412019-12-19 12:06:02 -07003277 }
3278 }
3279 spin_unlock_irq(&ctx->completion_lock);
3280
3281 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07003282 io_free_req_many(ctx, &rb);
Jens Axboee94f1412019-12-19 12:06:02 -07003283}
3284
3285static void io_poll_flush(struct io_wq_work **workptr)
3286{
3287 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3288 struct llist_node *nodes;
3289
3290 nodes = llist_del_all(&req->ctx->poll_llist);
3291 if (nodes)
3292 __io_poll_flush(req->ctx, nodes);
3293}
3294
Jens Axboe221c5eb2019-01-17 09:41:58 -07003295static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3296 void *key)
3297{
Jens Axboee9444752019-11-26 15:02:04 -07003298 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003299 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
3300 struct io_ring_ctx *ctx = req->ctx;
3301 __poll_t mask = key_to_poll(key);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003302
3303 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06003304 if (mask && !(mask & poll->events))
3305 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003306
Jens Axboe392edb42019-12-09 17:52:20 -07003307 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003308
Jens Axboe7c9e7f02019-11-12 08:15:53 -07003309 /*
3310 * Run completion inline if we can. We're using trylock here because
3311 * we are violating the completion_lock -> poll wq lock ordering.
3312 * If we have a link timeout we're going to need the completion_lock
3313 * for finalizing the request, mark us as having grabbed that already.
3314 */
Jens Axboee94f1412019-12-19 12:06:02 -07003315 if (mask) {
3316 unsigned long flags;
Jens Axboe8c838782019-03-12 15:48:16 -06003317
Jens Axboee94f1412019-12-19 12:06:02 -07003318 if (llist_empty(&ctx->poll_llist) &&
3319 spin_trylock_irqsave(&ctx->completion_lock, flags)) {
3320 hash_del(&req->hash_node);
3321 io_poll_complete(req, mask, 0);
3322 req->flags |= REQ_F_COMP_LOCKED;
3323 io_put_req(req);
3324 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3325
3326 io_cqring_ev_posted(ctx);
3327 req = NULL;
3328 } else {
3329 req->result = mask;
3330 req->llist_node.next = NULL;
3331 /* if the list wasn't empty, we're done */
3332 if (!llist_add(&req->llist_node, &ctx->poll_llist))
3333 req = NULL;
3334 else
3335 req->work.func = io_poll_flush;
3336 }
Jens Axboe8c838782019-03-12 15:48:16 -06003337 }
Jens Axboee94f1412019-12-19 12:06:02 -07003338 if (req)
3339 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003340
Jens Axboe221c5eb2019-01-17 09:41:58 -07003341 return 1;
3342}
3343
3344struct io_poll_table {
3345 struct poll_table_struct pt;
3346 struct io_kiocb *req;
3347 int error;
3348};
3349
3350static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3351 struct poll_table_struct *p)
3352{
3353 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3354
3355 if (unlikely(pt->req->poll.head)) {
3356 pt->error = -EINVAL;
3357 return;
3358 }
3359
3360 pt->error = 0;
3361 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07003362 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003363}
3364
Jens Axboeeac406c2019-11-14 12:09:58 -07003365static void io_poll_req_insert(struct io_kiocb *req)
3366{
3367 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07003368 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07003369
Jens Axboe78076bb2019-12-04 19:56:40 -07003370 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3371 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07003372}
3373
Jens Axboe3529d8c2019-12-19 18:24:38 -07003374static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003375{
3376 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003377 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003378
3379 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3380 return -EINVAL;
3381 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3382 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003383 if (!poll->file)
3384 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003385
Jens Axboe221c5eb2019-01-17 09:41:58 -07003386 events = READ_ONCE(sqe->poll_events);
3387 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07003388 return 0;
3389}
3390
3391static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3392{
3393 struct io_poll_iocb *poll = &req->poll;
3394 struct io_ring_ctx *ctx = req->ctx;
3395 struct io_poll_table ipt;
3396 bool cancel = false;
3397 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07003398
3399 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07003400 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003401
Jens Axboe221c5eb2019-01-17 09:41:58 -07003402 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06003403 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003404 poll->canceled = false;
3405
3406 ipt.pt._qproc = io_poll_queue_proc;
3407 ipt.pt._key = poll->events;
3408 ipt.req = req;
3409 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3410
3411 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07003412 INIT_LIST_HEAD(&poll->wait.entry);
3413 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
3414 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003415
Jens Axboe36703242019-07-25 10:20:18 -06003416 INIT_LIST_HEAD(&req->list);
3417
Jens Axboe221c5eb2019-01-17 09:41:58 -07003418 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003419
3420 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06003421 if (likely(poll->head)) {
3422 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07003423 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06003424 if (ipt.error)
3425 cancel = true;
3426 ipt.error = 0;
3427 mask = 0;
3428 }
3429 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07003430 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003431 else if (cancel)
3432 WRITE_ONCE(poll->canceled, true);
3433 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07003434 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003435 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003436 }
Jens Axboe8c838782019-03-12 15:48:16 -06003437 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06003438 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003439 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06003440 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07003441 spin_unlock_irq(&ctx->completion_lock);
3442
Jens Axboe8c838782019-03-12 15:48:16 -06003443 if (mask) {
3444 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003445 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003446 }
Jens Axboe8c838782019-03-12 15:48:16 -06003447 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003448}
3449
Jens Axboe5262f562019-09-17 12:26:57 -06003450static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3451{
Jens Axboead8a48a2019-11-15 08:49:11 -07003452 struct io_timeout_data *data = container_of(timer,
3453 struct io_timeout_data, timer);
3454 struct io_kiocb *req = data->req;
3455 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06003456 unsigned long flags;
3457
Jens Axboe5262f562019-09-17 12:26:57 -06003458 atomic_inc(&ctx->cq_timeouts);
3459
3460 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08003461 /*
Jens Axboe11365042019-10-16 09:08:32 -06003462 * We could be racing with timeout deletion. If the list is empty,
3463 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08003464 */
Jens Axboe842f9612019-10-29 12:34:10 -06003465 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06003466 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06003467
Jens Axboe11365042019-10-16 09:08:32 -06003468 /*
3469 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08003470 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06003471 * pointer will be increased, otherwise other timeout reqs may
3472 * return in advance without waiting for enough wait_nr.
3473 */
3474 prev = req;
3475 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3476 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06003477 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06003478 }
Jens Axboe842f9612019-10-29 12:34:10 -06003479
Jens Axboe78e19bb2019-11-06 15:21:34 -07003480 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06003481 io_commit_cqring(ctx);
3482 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3483
3484 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003485 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003486 io_put_req(req);
3487 return HRTIMER_NORESTART;
3488}
3489
Jens Axboe47f46762019-11-09 17:43:02 -07003490static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3491{
3492 struct io_kiocb *req;
3493 int ret = -ENOENT;
3494
3495 list_for_each_entry(req, &ctx->timeout_list, list) {
3496 if (user_data == req->user_data) {
3497 list_del_init(&req->list);
3498 ret = 0;
3499 break;
3500 }
3501 }
3502
3503 if (ret == -ENOENT)
3504 return ret;
3505
Jens Axboe2d283902019-12-04 11:08:05 -07003506 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07003507 if (ret == -1)
3508 return -EALREADY;
3509
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003510 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003511 io_cqring_fill_event(req, -ECANCELED);
3512 io_put_req(req);
3513 return 0;
3514}
3515
Jens Axboe3529d8c2019-12-19 18:24:38 -07003516static int io_timeout_remove_prep(struct io_kiocb *req,
3517 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07003518{
Jens Axboeb29472e2019-12-17 18:50:29 -07003519 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3520 return -EINVAL;
3521 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3522 return -EINVAL;
3523
3524 req->timeout.addr = READ_ONCE(sqe->addr);
3525 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3526 if (req->timeout.flags)
3527 return -EINVAL;
3528
Jens Axboeb29472e2019-12-17 18:50:29 -07003529 return 0;
3530}
3531
Jens Axboe11365042019-10-16 09:08:32 -06003532/*
3533 * Remove or update an existing timeout command
3534 */
Jens Axboefc4df992019-12-10 14:38:45 -07003535static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06003536{
3537 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07003538 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06003539
Jens Axboe11365042019-10-16 09:08:32 -06003540 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07003541 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06003542
Jens Axboe47f46762019-11-09 17:43:02 -07003543 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06003544 io_commit_cqring(ctx);
3545 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003546 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003547 if (ret < 0)
3548 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003549 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06003550 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06003551}
3552
Jens Axboe3529d8c2019-12-19 18:24:38 -07003553static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07003554 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06003555{
Jens Axboead8a48a2019-11-15 08:49:11 -07003556 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06003557 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06003558
Jens Axboead8a48a2019-11-15 08:49:11 -07003559 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06003560 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07003561 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06003562 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07003563 if (sqe->off && is_timeout_link)
3564 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06003565 flags = READ_ONCE(sqe->timeout_flags);
3566 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06003567 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06003568
Jens Axboe26a61672019-12-20 09:02:01 -07003569 req->timeout.count = READ_ONCE(sqe->off);
3570
Jens Axboe3529d8c2019-12-19 18:24:38 -07003571 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07003572 return -ENOMEM;
3573
3574 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07003575 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07003576 req->flags |= REQ_F_TIMEOUT;
3577
3578 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06003579 return -EFAULT;
3580
Jens Axboe11365042019-10-16 09:08:32 -06003581 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07003582 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06003583 else
Jens Axboead8a48a2019-11-15 08:49:11 -07003584 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06003585
Jens Axboead8a48a2019-11-15 08:49:11 -07003586 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
3587 return 0;
3588}
3589
Jens Axboefc4df992019-12-10 14:38:45 -07003590static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07003591{
3592 unsigned count;
3593 struct io_ring_ctx *ctx = req->ctx;
3594 struct io_timeout_data *data;
3595 struct list_head *entry;
3596 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07003597
Jens Axboe2d283902019-12-04 11:08:05 -07003598 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003599
Jens Axboe5262f562019-09-17 12:26:57 -06003600 /*
3601 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07003602 * timeout event to be satisfied. If it isn't set, then this is
3603 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06003604 */
Jens Axboe26a61672019-12-20 09:02:01 -07003605 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003606 if (!count) {
3607 req->flags |= REQ_F_TIMEOUT_NOSEQ;
3608 spin_lock_irq(&ctx->completion_lock);
3609 entry = ctx->timeout_list.prev;
3610 goto add;
3611 }
Jens Axboe5262f562019-09-17 12:26:57 -06003612
3613 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07003614 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06003615
3616 /*
3617 * Insertion sort, ensuring the first entry in the list is always
3618 * the one we need first.
3619 */
Jens Axboe5262f562019-09-17 12:26:57 -06003620 spin_lock_irq(&ctx->completion_lock);
3621 list_for_each_prev(entry, &ctx->timeout_list) {
3622 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08003623 unsigned nxt_sq_head;
3624 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07003625 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06003626
Jens Axboe93bd25b2019-11-11 23:34:31 -07003627 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
3628 continue;
3629
yangerkun5da0fb12019-10-15 21:59:29 +08003630 /*
3631 * Since cached_sq_head + count - 1 can overflow, use type long
3632 * long to store it.
3633 */
3634 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03003635 nxt_sq_head = nxt->sequence - nxt_offset + 1;
3636 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08003637
3638 /*
3639 * cached_sq_head may overflow, and it will never overflow twice
3640 * once there is some timeout req still be valid.
3641 */
3642 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08003643 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08003644
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003645 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06003646 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003647
3648 /*
3649 * Sequence of reqs after the insert one and itself should
3650 * be adjusted because each timeout req consumes a slot.
3651 */
3652 span++;
3653 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06003654 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003655 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003656add:
Jens Axboe5262f562019-09-17 12:26:57 -06003657 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07003658 data->timer.function = io_timeout_fn;
3659 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06003660 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003661 return 0;
3662}
3663
Jens Axboe62755e32019-10-28 21:49:21 -06003664static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06003665{
Jens Axboe62755e32019-10-28 21:49:21 -06003666 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06003667
Jens Axboe62755e32019-10-28 21:49:21 -06003668 return req->user_data == (unsigned long) data;
3669}
3670
Jens Axboee977d6d2019-11-05 12:39:45 -07003671static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003672{
Jens Axboe62755e32019-10-28 21:49:21 -06003673 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003674 int ret = 0;
3675
Jens Axboe62755e32019-10-28 21:49:21 -06003676 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3677 switch (cancel_ret) {
3678 case IO_WQ_CANCEL_OK:
3679 ret = 0;
3680 break;
3681 case IO_WQ_CANCEL_RUNNING:
3682 ret = -EALREADY;
3683 break;
3684 case IO_WQ_CANCEL_NOTFOUND:
3685 ret = -ENOENT;
3686 break;
3687 }
3688
Jens Axboee977d6d2019-11-05 12:39:45 -07003689 return ret;
3690}
3691
Jens Axboe47f46762019-11-09 17:43:02 -07003692static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3693 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003694 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07003695{
3696 unsigned long flags;
3697 int ret;
3698
3699 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3700 if (ret != -ENOENT) {
3701 spin_lock_irqsave(&ctx->completion_lock, flags);
3702 goto done;
3703 }
3704
3705 spin_lock_irqsave(&ctx->completion_lock, flags);
3706 ret = io_timeout_cancel(ctx, sqe_addr);
3707 if (ret != -ENOENT)
3708 goto done;
3709 ret = io_poll_cancel(ctx, sqe_addr);
3710done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003711 if (!ret)
3712 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07003713 io_cqring_fill_event(req, ret);
3714 io_commit_cqring(ctx);
3715 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3716 io_cqring_ev_posted(ctx);
3717
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003718 if (ret < 0)
3719 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003720 io_put_req_find_next(req, nxt);
3721}
3722
Jens Axboe3529d8c2019-12-19 18:24:38 -07003723static int io_async_cancel_prep(struct io_kiocb *req,
3724 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07003725{
Jens Axboefbf23842019-12-17 18:45:56 -07003726 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07003727 return -EINVAL;
3728 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3729 sqe->cancel_flags)
3730 return -EINVAL;
3731
Jens Axboefbf23842019-12-17 18:45:56 -07003732 req->cancel.addr = READ_ONCE(sqe->addr);
3733 return 0;
3734}
3735
3736static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
3737{
3738 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07003739
3740 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06003741 return 0;
3742}
3743
Jens Axboe05f3fb32019-12-09 11:22:50 -07003744static int io_files_update_prep(struct io_kiocb *req,
3745 const struct io_uring_sqe *sqe)
3746{
3747 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
3748 return -EINVAL;
3749
3750 req->files_update.offset = READ_ONCE(sqe->off);
3751 req->files_update.nr_args = READ_ONCE(sqe->len);
3752 if (!req->files_update.nr_args)
3753 return -EINVAL;
3754 req->files_update.arg = READ_ONCE(sqe->addr);
3755 return 0;
3756}
3757
3758static int io_files_update(struct io_kiocb *req, bool force_nonblock)
3759{
3760 struct io_ring_ctx *ctx = req->ctx;
3761 struct io_uring_files_update up;
3762 int ret;
3763
3764 if (force_nonblock) {
3765 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
3766 return -EAGAIN;
3767 }
3768
3769 up.offset = req->files_update.offset;
3770 up.fds = req->files_update.arg;
3771
3772 mutex_lock(&ctx->uring_lock);
3773 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
3774 mutex_unlock(&ctx->uring_lock);
3775
3776 if (ret < 0)
3777 req_set_fail_links(req);
3778 io_cqring_add_event(req, ret);
3779 io_put_req(req);
3780 return 0;
3781}
3782
Jens Axboe3529d8c2019-12-19 18:24:38 -07003783static int io_req_defer_prep(struct io_kiocb *req,
3784 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003785{
Jens Axboee7815732019-12-17 19:45:06 -07003786 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003787
Jens Axboed625c6e2019-12-17 19:53:05 -07003788 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07003789 case IORING_OP_NOP:
3790 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003791 case IORING_OP_READV:
3792 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07003793 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003794 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07003795 break;
3796 case IORING_OP_WRITEV:
3797 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07003798 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003799 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07003800 break;
Jens Axboe0969e782019-12-17 18:40:57 -07003801 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003802 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07003803 break;
3804 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003805 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07003806 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003807 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003808 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003809 break;
3810 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003811 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003812 break;
Jens Axboe03b12302019-12-02 18:50:25 -07003813 case IORING_OP_SENDMSG:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003814 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07003815 break;
3816 case IORING_OP_RECVMSG:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003817 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07003818 break;
Jens Axboef499a022019-12-02 16:28:46 -07003819 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003820 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07003821 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003822 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003823 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003824 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07003825 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003826 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07003827 break;
Jens Axboefbf23842019-12-17 18:45:56 -07003828 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003829 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07003830 break;
Jens Axboe2d283902019-12-04 11:08:05 -07003831 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003832 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003833 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003834 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003835 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003836 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07003837 case IORING_OP_FALLOCATE:
3838 ret = io_fallocate_prep(req, sqe);
3839 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003840 case IORING_OP_OPENAT:
3841 ret = io_openat_prep(req, sqe);
3842 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07003843 case IORING_OP_CLOSE:
3844 ret = io_close_prep(req, sqe);
3845 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07003846 case IORING_OP_FILES_UPDATE:
3847 ret = io_files_update_prep(req, sqe);
3848 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003849 case IORING_OP_STATX:
3850 ret = io_statx_prep(req, sqe);
3851 break;
Jens Axboe4840e412019-12-25 22:03:45 -07003852 case IORING_OP_FADVISE:
3853 ret = io_fadvise_prep(req, sqe);
3854 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07003855 case IORING_OP_MADVISE:
3856 ret = io_madvise_prep(req, sqe);
3857 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003858 default:
Jens Axboee7815732019-12-17 19:45:06 -07003859 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
3860 req->opcode);
3861 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003862 break;
Jens Axboef67676d2019-12-02 11:03:47 -07003863 }
3864
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003865 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003866}
3867
Jens Axboe3529d8c2019-12-19 18:24:38 -07003868static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06003869{
Jackie Liua197f662019-11-08 08:09:12 -07003870 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07003871 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06003872
Bob Liu9d858b22019-11-13 18:06:25 +08003873 /* Still need defer if there is pending req in defer list. */
3874 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06003875 return 0;
3876
Jens Axboe3529d8c2019-12-19 18:24:38 -07003877 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06003878 return -EAGAIN;
3879
Jens Axboe3529d8c2019-12-19 18:24:38 -07003880 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003881 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07003882 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07003883
Jens Axboede0617e2019-04-06 21:51:27 -06003884 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08003885 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06003886 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06003887 return 0;
3888 }
3889
Jens Axboe915967f2019-11-21 09:01:20 -07003890 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06003891 list_add_tail(&req->list, &ctx->defer_list);
3892 spin_unlock_irq(&ctx->completion_lock);
3893 return -EIOCBQUEUED;
3894}
3895
Jens Axboe3529d8c2019-12-19 18:24:38 -07003896static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3897 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003898{
Jackie Liua197f662019-11-08 08:09:12 -07003899 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07003900 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003901
Jens Axboed625c6e2019-12-17 19:53:05 -07003902 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07003903 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07003904 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003905 break;
3906 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003907 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07003908 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003909 if (sqe) {
3910 ret = io_read_prep(req, sqe, force_nonblock);
3911 if (ret < 0)
3912 break;
3913 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03003914 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003915 break;
3916 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07003917 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07003918 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003919 if (sqe) {
3920 ret = io_write_prep(req, sqe, force_nonblock);
3921 if (ret < 0)
3922 break;
3923 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03003924 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003925 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003926 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003927 if (sqe) {
3928 ret = io_prep_fsync(req, sqe);
3929 if (ret < 0)
3930 break;
3931 }
Jens Axboefc4df992019-12-10 14:38:45 -07003932 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003933 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003934 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003935 if (sqe) {
3936 ret = io_poll_add_prep(req, sqe);
3937 if (ret)
3938 break;
3939 }
Jens Axboefc4df992019-12-10 14:38:45 -07003940 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003941 break;
3942 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003943 if (sqe) {
3944 ret = io_poll_remove_prep(req, sqe);
3945 if (ret < 0)
3946 break;
3947 }
Jens Axboefc4df992019-12-10 14:38:45 -07003948 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003949 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003950 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003951 if (sqe) {
3952 ret = io_prep_sfr(req, sqe);
3953 if (ret < 0)
3954 break;
3955 }
Jens Axboefc4df992019-12-10 14:38:45 -07003956 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003957 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003958 case IORING_OP_SENDMSG:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003959 if (sqe) {
3960 ret = io_sendmsg_prep(req, sqe);
3961 if (ret < 0)
3962 break;
3963 }
Jens Axboefc4df992019-12-10 14:38:45 -07003964 ret = io_sendmsg(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003965 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06003966 case IORING_OP_RECVMSG:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003967 if (sqe) {
3968 ret = io_recvmsg_prep(req, sqe);
3969 if (ret)
3970 break;
3971 }
Jens Axboefc4df992019-12-10 14:38:45 -07003972 ret = io_recvmsg(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06003973 break;
Jens Axboe5262f562019-09-17 12:26:57 -06003974 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003975 if (sqe) {
3976 ret = io_timeout_prep(req, sqe, false);
3977 if (ret)
3978 break;
3979 }
Jens Axboefc4df992019-12-10 14:38:45 -07003980 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003981 break;
Jens Axboe11365042019-10-16 09:08:32 -06003982 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003983 if (sqe) {
3984 ret = io_timeout_remove_prep(req, sqe);
3985 if (ret)
3986 break;
3987 }
Jens Axboefc4df992019-12-10 14:38:45 -07003988 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06003989 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003990 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003991 if (sqe) {
3992 ret = io_accept_prep(req, sqe);
3993 if (ret)
3994 break;
3995 }
Jens Axboefc4df992019-12-10 14:38:45 -07003996 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003997 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003998 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07003999 if (sqe) {
4000 ret = io_connect_prep(req, sqe);
4001 if (ret)
4002 break;
4003 }
Jens Axboefc4df992019-12-10 14:38:45 -07004004 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004005 break;
Jens Axboe62755e32019-10-28 21:49:21 -06004006 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004007 if (sqe) {
4008 ret = io_async_cancel_prep(req, sqe);
4009 if (ret)
4010 break;
4011 }
Jens Axboefc4df992019-12-10 14:38:45 -07004012 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06004013 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004014 case IORING_OP_FALLOCATE:
4015 if (sqe) {
4016 ret = io_fallocate_prep(req, sqe);
4017 if (ret)
4018 break;
4019 }
4020 ret = io_fallocate(req, nxt, force_nonblock);
4021 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004022 case IORING_OP_OPENAT:
4023 if (sqe) {
4024 ret = io_openat_prep(req, sqe);
4025 if (ret)
4026 break;
4027 }
4028 ret = io_openat(req, nxt, force_nonblock);
4029 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004030 case IORING_OP_CLOSE:
4031 if (sqe) {
4032 ret = io_close_prep(req, sqe);
4033 if (ret)
4034 break;
4035 }
4036 ret = io_close(req, nxt, force_nonblock);
4037 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004038 case IORING_OP_FILES_UPDATE:
4039 if (sqe) {
4040 ret = io_files_update_prep(req, sqe);
4041 if (ret)
4042 break;
4043 }
4044 ret = io_files_update(req, force_nonblock);
4045 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004046 case IORING_OP_STATX:
4047 if (sqe) {
4048 ret = io_statx_prep(req, sqe);
4049 if (ret)
4050 break;
4051 }
4052 ret = io_statx(req, nxt, force_nonblock);
4053 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004054 case IORING_OP_FADVISE:
4055 if (sqe) {
4056 ret = io_fadvise_prep(req, sqe);
4057 if (ret)
4058 break;
4059 }
4060 ret = io_fadvise(req, nxt, force_nonblock);
4061 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004062 case IORING_OP_MADVISE:
4063 if (sqe) {
4064 ret = io_madvise_prep(req, sqe);
4065 if (ret)
4066 break;
4067 }
4068 ret = io_madvise(req, nxt, force_nonblock);
4069 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004070 default:
4071 ret = -EINVAL;
4072 break;
4073 }
4074
Jens Axboedef596e2019-01-09 08:59:42 -07004075 if (ret)
4076 return ret;
4077
4078 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07004079 const bool in_async = io_wq_current_is_worker();
4080
Jens Axboe9e645e112019-05-10 16:07:28 -06004081 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07004082 return -EAGAIN;
4083
Jens Axboe11ba8202020-01-15 21:51:17 -07004084 /* workqueue context doesn't hold uring_lock, grab it now */
4085 if (in_async)
4086 mutex_lock(&ctx->uring_lock);
4087
Jens Axboedef596e2019-01-09 08:59:42 -07004088 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07004089
4090 if (in_async)
4091 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07004092 }
4093
4094 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004095}
4096
Jens Axboe561fb042019-10-24 07:25:42 -06004097static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07004098{
Jens Axboe561fb042019-10-24 07:25:42 -06004099 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004100 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06004101 struct io_kiocb *nxt = NULL;
4102 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004103
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004104 /* if NO_CANCEL is set, we must still run the work */
4105 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4106 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06004107 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004108 }
Jens Axboe31b51512019-01-18 22:56:34 -07004109
Jens Axboe561fb042019-10-24 07:25:42 -06004110 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004111 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
4112 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06004113 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004114 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06004115 /*
4116 * We can get EAGAIN for polled IO even though we're
4117 * forcing a sync submission from here, since we can't
4118 * wait for request slots on the block side.
4119 */
4120 if (ret != -EAGAIN)
4121 break;
4122 cond_resched();
4123 } while (1);
4124 }
Jens Axboe31b51512019-01-18 22:56:34 -07004125
Jens Axboe561fb042019-10-24 07:25:42 -06004126 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08004127 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06004128
Jens Axboe561fb042019-10-24 07:25:42 -06004129 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004130 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004131 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06004132 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07004133 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004134
Jens Axboe561fb042019-10-24 07:25:42 -06004135 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07004136 if (!ret && nxt)
4137 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07004138}
Jens Axboe2b188cc2019-01-07 10:46:33 -07004139
Jens Axboe15b71ab2019-12-11 11:20:36 -07004140static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06004141{
Jens Axboed3656342019-12-18 09:50:26 -07004142 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004143 return 0;
Jens Axboed3656342019-12-18 09:50:26 -07004144 if (fd == -1 && io_op_defs[req->opcode].fd_non_neg)
4145 return 0;
4146 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06004147}
4148
Jens Axboe65e19f52019-10-26 07:20:21 -06004149static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4150 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06004151{
Jens Axboe65e19f52019-10-26 07:20:21 -06004152 struct fixed_file_table *table;
4153
Jens Axboe05f3fb32019-12-09 11:22:50 -07004154 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4155 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06004156}
4157
Jens Axboe3529d8c2019-12-19 18:24:38 -07004158static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4159 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06004160{
Jackie Liua197f662019-11-08 08:09:12 -07004161 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06004162 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07004163 int fd;
Jens Axboe09bb8392019-03-13 12:39:28 -06004164
Jens Axboe3529d8c2019-12-19 18:24:38 -07004165 flags = READ_ONCE(sqe->flags);
4166 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004167
Jackie Liu4fe2c962019-09-09 20:50:40 +08004168 if (flags & IOSQE_IO_DRAIN)
Jens Axboede0617e2019-04-06 21:51:27 -06004169 req->flags |= REQ_F_IO_DRAIN;
Jens Axboede0617e2019-04-06 21:51:27 -06004170
Jens Axboed3656342019-12-18 09:50:26 -07004171 if (!io_req_needs_file(req, fd))
4172 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06004173
4174 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07004175 if (unlikely(!ctx->file_data ||
Jens Axboe09bb8392019-03-13 12:39:28 -06004176 (unsigned) fd >= ctx->nr_user_files))
4177 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06004178 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004179 req->file = io_file_from_index(ctx, fd);
4180 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06004181 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06004182 req->flags |= REQ_F_FIXED_FILE;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004183 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe09bb8392019-03-13 12:39:28 -06004184 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004185 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06004186 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004187 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004188 req->file = io_file_get(state, fd);
4189 if (unlikely(!req->file))
4190 return -EBADF;
4191 }
4192
4193 return 0;
4194}
4195
Jackie Liua197f662019-11-08 08:09:12 -07004196static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004197{
Jens Axboefcb323c2019-10-24 12:39:47 -06004198 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07004199 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06004200
Jens Axboeb5dba592019-12-11 14:02:38 -07004201 if (!req->ring_file)
4202 return -EBADF;
4203
Jens Axboefcb323c2019-10-24 12:39:47 -06004204 rcu_read_lock();
4205 spin_lock_irq(&ctx->inflight_lock);
4206 /*
4207 * We use the f_ops->flush() handler to ensure that we can flush
4208 * out work accessing these files if the fd is closed. Check if
4209 * the fd has changed since we started down this path, and disallow
4210 * this operation if it has.
4211 */
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004212 if (fcheck(req->ring_fd) == req->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06004213 list_add(&req->inflight_entry, &ctx->inflight_list);
4214 req->flags |= REQ_F_INFLIGHT;
4215 req->work.files = current->files;
4216 ret = 0;
4217 }
4218 spin_unlock_irq(&ctx->inflight_lock);
4219 rcu_read_unlock();
4220
4221 return ret;
4222}
4223
Jens Axboe2665abf2019-11-05 12:40:47 -07004224static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
4225{
Jens Axboead8a48a2019-11-15 08:49:11 -07004226 struct io_timeout_data *data = container_of(timer,
4227 struct io_timeout_data, timer);
4228 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07004229 struct io_ring_ctx *ctx = req->ctx;
4230 struct io_kiocb *prev = NULL;
4231 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07004232
4233 spin_lock_irqsave(&ctx->completion_lock, flags);
4234
4235 /*
4236 * We don't expect the list to be empty, that will only happen if we
4237 * race with the completion of the linked work.
4238 */
Pavel Begunkov44932332019-12-05 16:16:35 +03004239 if (!list_empty(&req->link_list)) {
4240 prev = list_entry(req->link_list.prev, struct io_kiocb,
4241 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004242 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03004243 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004244 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4245 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07004246 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004247 }
4248
4249 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4250
4251 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004252 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004253 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4254 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07004255 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07004256 } else {
4257 io_cqring_add_event(req, -ETIME);
4258 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004259 }
Jens Axboe2665abf2019-11-05 12:40:47 -07004260 return HRTIMER_NORESTART;
4261}
4262
Jens Axboead8a48a2019-11-15 08:49:11 -07004263static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004264{
Jens Axboe76a46e02019-11-10 23:34:16 -07004265 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07004266
Jens Axboe76a46e02019-11-10 23:34:16 -07004267 /*
4268 * If the list is now empty, then our linked request finished before
4269 * we got a chance to setup the timer
4270 */
4271 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03004272 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07004273 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07004274
Jens Axboead8a48a2019-11-15 08:49:11 -07004275 data->timer.function = io_link_timeout_fn;
4276 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4277 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07004278 }
Jens Axboe76a46e02019-11-10 23:34:16 -07004279 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07004280
Jens Axboe2665abf2019-11-05 12:40:47 -07004281 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07004282 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004283}
4284
Jens Axboead8a48a2019-11-15 08:49:11 -07004285static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004286{
4287 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004288
Jens Axboe2665abf2019-11-05 12:40:47 -07004289 if (!(req->flags & REQ_F_LINK))
4290 return NULL;
4291
Pavel Begunkov44932332019-12-05 16:16:35 +03004292 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4293 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07004294 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07004295 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004296
Jens Axboe76a46e02019-11-10 23:34:16 -07004297 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07004298 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07004299}
4300
Jens Axboe3529d8c2019-12-19 18:24:38 -07004301static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004302{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004303 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004304 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004305 int ret;
4306
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004307again:
4308 linked_timeout = io_prep_linked_timeout(req);
4309
Jens Axboe3529d8c2019-12-19 18:24:38 -07004310 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06004311
4312 /*
4313 * We async punt it if the file wasn't marked NOWAIT, or if the file
4314 * doesn't support non-blocking read/write attempts
4315 */
4316 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4317 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004318 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
4319 ret = io_grab_files(req);
4320 if (ret)
4321 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004322 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004323
4324 /*
4325 * Queued up for async execution, worker will release
4326 * submit reference when the iocb is actually submitted.
4327 */
4328 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004329 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004330 }
Jens Axboee65ef562019-03-12 10:16:44 -06004331
Jens Axboefcb323c2019-10-24 12:39:47 -06004332err:
Jens Axboee65ef562019-03-12 10:16:44 -06004333 /* drop submission reference */
4334 io_put_req(req);
4335
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004336 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07004337 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004338 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004339 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004340 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004341 }
4342
Jens Axboee65ef562019-03-12 10:16:44 -06004343 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06004344 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004345 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004346 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004347 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06004348 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004349done_req:
4350 if (nxt) {
4351 req = nxt;
4352 nxt = NULL;
4353 goto again;
4354 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004355}
4356
Jens Axboe3529d8c2019-12-19 18:24:38 -07004357static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004358{
4359 int ret;
4360
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004361 if (unlikely(req->ctx->drain_next)) {
4362 req->flags |= REQ_F_IO_DRAIN;
4363 req->ctx->drain_next = false;
4364 }
4365 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
4366
Jens Axboe3529d8c2019-12-19 18:24:38 -07004367 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004368 if (ret) {
4369 if (ret != -EIOCBQUEUED) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004370 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004371 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004372 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004373 }
Jens Axboece35a472019-12-17 08:04:44 -07004374 } else if ((req->flags & REQ_F_FORCE_ASYNC) &&
4375 !io_wq_current_is_worker()) {
4376 /*
4377 * Never try inline submit of IOSQE_ASYNC is set, go straight
4378 * to async execution.
4379 */
4380 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4381 io_queue_async_work(req);
4382 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004383 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07004384 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08004385}
4386
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004387static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004388{
Jens Axboe94ae5e72019-11-14 19:39:52 -07004389 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004390 io_cqring_add_event(req, -ECANCELED);
4391 io_double_put_req(req);
4392 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07004393 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004394}
4395
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004396#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboece35a472019-12-17 08:04:44 -07004397 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
Jens Axboe9e645e112019-05-10 16:07:28 -06004398
Jens Axboe3529d8c2019-12-19 18:24:38 -07004399static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4400 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06004401{
Jackie Liua197f662019-11-08 08:09:12 -07004402 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004403 unsigned int sqe_flags;
Jens Axboe9e645e112019-05-10 16:07:28 -06004404 int ret;
4405
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004406 sqe_flags = READ_ONCE(sqe->flags);
4407
Jens Axboe9e645e112019-05-10 16:07:28 -06004408 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004409 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004410 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03004411 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06004412 }
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004413 if (sqe_flags & IOSQE_ASYNC)
Jens Axboece35a472019-12-17 08:04:44 -07004414 req->flags |= REQ_F_FORCE_ASYNC;
Jens Axboe9e645e112019-05-10 16:07:28 -06004415
Jens Axboe3529d8c2019-12-19 18:24:38 -07004416 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004417 if (unlikely(ret)) {
4418err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004419 io_cqring_add_event(req, ret);
4420 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004421 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06004422 }
4423
Jens Axboe9e645e112019-05-10 16:07:28 -06004424 /*
4425 * If we already have a head request, queue this one for async
4426 * submittal once the head completes. If we don't have a head but
4427 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4428 * submitted sync once the chain is complete. If none of those
4429 * conditions are true (normal request), then just queue it.
4430 */
4431 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03004432 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06004433
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004434 if (sqe_flags & IOSQE_IO_DRAIN)
Pavel Begunkov9d763772019-12-17 02:22:07 +03004435 head->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004436
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004437 if (sqe_flags & IOSQE_IO_HARDLINK)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004438 req->flags |= REQ_F_HARDLINK;
4439
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004440 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004441 ret = -EAGAIN;
4442 goto err_req;
4443 }
4444
Jens Axboe3529d8c2019-12-19 18:24:38 -07004445 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07004446 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004447 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03004448 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07004449 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07004450 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03004451 trace_io_uring_link(ctx, req, head);
4452 list_add_tail(&req->link_list, &head->link_list);
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004453
4454 /* last request of a link, enqueue the link */
4455 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
4456 io_queue_link_head(head);
4457 *link = NULL;
4458 }
4459 } else if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004460 req->flags |= REQ_F_LINK;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004461 if (sqe_flags & IOSQE_IO_HARDLINK)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004462 req->flags |= REQ_F_HARDLINK;
Jens Axboe9e645e112019-05-10 16:07:28 -06004463
Jens Axboe9e645e112019-05-10 16:07:28 -06004464 INIT_LIST_HEAD(&req->link_list);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004465 ret = io_req_defer_prep(req, sqe);
4466 if (ret)
4467 req->flags |= REQ_F_FAIL_LINK;
Jens Axboe9e645e112019-05-10 16:07:28 -06004468 *link = req;
4469 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004470 io_queue_sqe(req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004471 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004472
4473 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06004474}
4475
Jens Axboe9a56a232019-01-09 09:06:50 -07004476/*
4477 * Batched submission is done, ensure local IO is flushed out.
4478 */
4479static void io_submit_state_end(struct io_submit_state *state)
4480{
4481 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06004482 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07004483 if (state->free_reqs)
4484 kmem_cache_free_bulk(req_cachep, state->free_reqs,
4485 &state->reqs[state->cur_req]);
Jens Axboe9a56a232019-01-09 09:06:50 -07004486}
4487
4488/*
4489 * Start submission side cache.
4490 */
4491static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08004492 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07004493{
4494 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07004495 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07004496 state->file = NULL;
4497 state->ios_left = max_ios;
4498}
4499
Jens Axboe2b188cc2019-01-07 10:46:33 -07004500static void io_commit_sqring(struct io_ring_ctx *ctx)
4501{
Hristo Venev75b28af2019-08-26 17:23:46 +00004502 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004503
Hristo Venev75b28af2019-08-26 17:23:46 +00004504 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004505 /*
4506 * Ensure any loads from the SQEs are done at this point,
4507 * since once we write the new head, the application could
4508 * write new data to them.
4509 */
Hristo Venev75b28af2019-08-26 17:23:46 +00004510 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004511 }
4512}
4513
4514/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07004515 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07004516 * that is mapped by userspace. This means that care needs to be taken to
4517 * ensure that reads are stable, as we cannot rely on userspace always
4518 * being a good citizen. If members of the sqe are validated and then later
4519 * used, it's important that those reads are done through READ_ONCE() to
4520 * prevent a re-load down the line.
4521 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07004522static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
4523 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004524{
Hristo Venev75b28af2019-08-26 17:23:46 +00004525 struct io_rings *rings = ctx->rings;
4526 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004527 unsigned head;
4528
4529 /*
4530 * The cached sq head (or cq tail) serves two purposes:
4531 *
4532 * 1) allows us to batch the cost of updating the user visible
4533 * head updates.
4534 * 2) allows the kernel side to track the head on its own, even
4535 * though the application is the one updating it.
4536 */
4537 head = ctx->cached_sq_head;
Stefan Bühlere523a292019-04-19 11:57:44 +02004538 /* make sure SQ entry isn't read before tail */
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03004539 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07004540 return false;
4541
Hristo Venev75b28af2019-08-26 17:23:46 +00004542 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03004543 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004544 /*
4545 * All io need record the previous position, if LINK vs DARIN,
4546 * it can be used to mark the position of the first IO in the
4547 * link list.
4548 */
4549 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004550 *sqe_ptr = &ctx->sq_sqes[head];
4551 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
4552 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004553 ctx->cached_sq_head++;
4554 return true;
4555 }
4556
4557 /* drop invalid entries */
4558 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06004559 ctx->cached_sq_dropped++;
4560 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004561 return false;
4562}
4563
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004564static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004565 struct file *ring_file, int ring_fd,
4566 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07004567{
4568 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004569 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004570 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004571 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004572
Jens Axboec4a2ed72019-11-21 21:01:26 -07004573 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07004574 if (test_bit(0, &ctx->sq_check_overflow)) {
4575 if (!list_empty(&ctx->cq_overflow_list) &&
4576 !io_cqring_overflow_flush(ctx, false))
4577 return -EBUSY;
4578 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07004579
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004580 if (!percpu_ref_tryget_many(&ctx->refs, nr))
4581 return -EAGAIN;
4582
Jens Axboe6c271ce2019-01-10 11:22:30 -07004583 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08004584 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004585 statep = &state;
4586 }
4587
4588 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004589 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03004590 struct io_kiocb *req;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004591
Pavel Begunkov196be952019-11-07 01:41:06 +03004592 req = io_get_req(ctx, statep);
4593 if (unlikely(!req)) {
4594 if (!submitted)
4595 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004596 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06004597 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07004598 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004599 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03004600 break;
4601 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004602
Jens Axboed3656342019-12-18 09:50:26 -07004603 /* will complete beyond this point, count as submitted */
4604 submitted++;
4605
4606 if (unlikely(req->opcode >= IORING_OP_LAST)) {
4607 io_cqring_add_event(req, -EINVAL);
4608 io_double_put_req(req);
4609 break;
4610 }
4611
4612 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004613 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
4614 if (!mm_fault) {
4615 use_mm(ctx->sqo_mm);
4616 *mm = ctx->sqo_mm;
4617 }
4618 }
4619
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004620 req->ring_file = ring_file;
4621 req->ring_fd = ring_fd;
4622 req->has_user = *mm != NULL;
4623 req->in_async = async;
4624 req->needs_fixed_file = async;
Jens Axboed625c6e2019-12-17 19:53:05 -07004625 trace_io_uring_submit_sqe(ctx, req->user_data, true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004626 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004627 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004628 }
4629
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004630 if (submitted != nr)
4631 percpu_ref_put_many(&ctx->refs, nr - submitted);
Jens Axboe9e645e112019-05-10 16:07:28 -06004632 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004633 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004634 if (statep)
4635 io_submit_state_end(&state);
4636
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004637 /* Commit SQ ring head once we've consumed and submitted all SQEs */
4638 io_commit_sqring(ctx);
4639
Jens Axboe6c271ce2019-01-10 11:22:30 -07004640 return submitted;
4641}
4642
4643static int io_sq_thread(void *data)
4644{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004645 struct io_ring_ctx *ctx = data;
4646 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07004647 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004648 mm_segment_t old_fs;
4649 DEFINE_WAIT(wait);
4650 unsigned inflight;
4651 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07004652 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004653
Jens Axboe206aefd2019-11-07 18:27:42 -07004654 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08004655
Jens Axboe6c271ce2019-01-10 11:22:30 -07004656 old_fs = get_fs();
4657 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07004658 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004659
Jens Axboec1edbf52019-11-10 16:56:04 -07004660 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004661 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004662 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004663
4664 if (inflight) {
4665 unsigned nr_events = 0;
4666
4667 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06004668 /*
4669 * inflight is the count of the maximum possible
4670 * entries we submitted, but it can be smaller
4671 * if we dropped some of them. If we don't have
4672 * poll entries available, then we know that we
4673 * have nothing left to poll for. Reset the
4674 * inflight count to zero in that case.
4675 */
4676 mutex_lock(&ctx->uring_lock);
4677 if (!list_empty(&ctx->poll_list))
4678 __io_iopoll_check(ctx, &nr_events, 0);
4679 else
4680 inflight = 0;
4681 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004682 } else {
4683 /*
4684 * Normal IO, just pretend everything completed.
4685 * We don't have to poll completions for that.
4686 */
4687 nr_events = inflight;
4688 }
4689
4690 inflight -= nr_events;
4691 if (!inflight)
4692 timeout = jiffies + ctx->sq_thread_idle;
4693 }
4694
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004695 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07004696
4697 /*
4698 * If submit got -EBUSY, flag us as needing the application
4699 * to enter the kernel to reap and flush events.
4700 */
4701 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07004702 /*
4703 * We're polling. If we're within the defined idle
4704 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07004705 * to sleep. The exception is if we got EBUSY doing
4706 * more IO, we should wait for the application to
4707 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07004708 */
Jens Axboec1edbf52019-11-10 16:56:04 -07004709 if (inflight ||
4710 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
Jens Axboe9831a902019-09-19 09:48:55 -06004711 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07004712 continue;
4713 }
4714
4715 /*
4716 * Drop cur_mm before scheduling, we can't hold it for
4717 * long periods (or over schedule()). Do this before
4718 * adding ourselves to the waitqueue, as the unuse/drop
4719 * may sleep.
4720 */
4721 if (cur_mm) {
4722 unuse_mm(cur_mm);
4723 mmput(cur_mm);
4724 cur_mm = NULL;
4725 }
4726
4727 prepare_to_wait(&ctx->sqo_wait, &wait,
4728 TASK_INTERRUPTIBLE);
4729
4730 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00004731 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02004732 /* make sure to read SQ tail after writing flags */
4733 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07004734
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004735 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07004736 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004737 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07004738 finish_wait(&ctx->sqo_wait, &wait);
4739 break;
4740 }
4741 if (signal_pending(current))
4742 flush_signals(current);
4743 schedule();
4744 finish_wait(&ctx->sqo_wait, &wait);
4745
Hristo Venev75b28af2019-08-26 17:23:46 +00004746 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004747 continue;
4748 }
4749 finish_wait(&ctx->sqo_wait, &wait);
4750
Hristo Venev75b28af2019-08-26 17:23:46 +00004751 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004752 }
4753
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004754 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe8a4955f2019-12-09 14:52:35 -07004755 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004756 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07004757 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004758 if (ret > 0)
4759 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004760 }
4761
4762 set_fs(old_fs);
4763 if (cur_mm) {
4764 unuse_mm(cur_mm);
4765 mmput(cur_mm);
4766 }
Jens Axboe181e4482019-11-25 08:52:30 -07004767 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06004768
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004769 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06004770
Jens Axboe6c271ce2019-01-10 11:22:30 -07004771 return 0;
4772}
4773
Jens Axboebda52162019-09-24 13:47:15 -06004774struct io_wait_queue {
4775 struct wait_queue_entry wq;
4776 struct io_ring_ctx *ctx;
4777 unsigned to_wait;
4778 unsigned nr_timeouts;
4779};
4780
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004781static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06004782{
4783 struct io_ring_ctx *ctx = iowq->ctx;
4784
4785 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08004786 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06004787 * started waiting. For timeouts, we always want to return to userspace,
4788 * regardless of event count.
4789 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004790 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06004791 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
4792}
4793
4794static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
4795 int wake_flags, void *key)
4796{
4797 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
4798 wq);
4799
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004800 /* use noflush == true, as we can't safely rely on locking context */
4801 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06004802 return -1;
4803
4804 return autoremove_wake_function(curr, mode, wake_flags, key);
4805}
4806
Jens Axboe2b188cc2019-01-07 10:46:33 -07004807/*
4808 * Wait until events become available, if we don't already have some. The
4809 * application must reap them itself, as they reside on the shared cq ring.
4810 */
4811static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
4812 const sigset_t __user *sig, size_t sigsz)
4813{
Jens Axboebda52162019-09-24 13:47:15 -06004814 struct io_wait_queue iowq = {
4815 .wq = {
4816 .private = current,
4817 .func = io_wake_function,
4818 .entry = LIST_HEAD_INIT(iowq.wq.entry),
4819 },
4820 .ctx = ctx,
4821 .to_wait = min_events,
4822 };
Hristo Venev75b28af2019-08-26 17:23:46 +00004823 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004824 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004825
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004826 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004827 return 0;
4828
4829 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004830#ifdef CONFIG_COMPAT
4831 if (in_compat_syscall())
4832 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07004833 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004834 else
4835#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07004836 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01004837
Jens Axboe2b188cc2019-01-07 10:46:33 -07004838 if (ret)
4839 return ret;
4840 }
4841
Jens Axboebda52162019-09-24 13:47:15 -06004842 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004843 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06004844 do {
4845 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
4846 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07004847 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06004848 break;
4849 schedule();
4850 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004851 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06004852 break;
4853 }
4854 } while (1);
4855 finish_wait(&ctx->wait, &iowq.wq);
4856
Jackie Liue9ffa5c2019-10-29 11:16:42 +08004857 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004858
Hristo Venev75b28af2019-08-26 17:23:46 +00004859 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004860}
4861
Jens Axboe6b063142019-01-10 22:13:58 -07004862static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
4863{
4864#if defined(CONFIG_UNIX)
4865 if (ctx->ring_sock) {
4866 struct sock *sock = ctx->ring_sock->sk;
4867 struct sk_buff *skb;
4868
4869 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
4870 kfree_skb(skb);
4871 }
4872#else
4873 int i;
4874
Jens Axboe65e19f52019-10-26 07:20:21 -06004875 for (i = 0; i < ctx->nr_user_files; i++) {
4876 struct file *file;
4877
4878 file = io_file_from_index(ctx, i);
4879 if (file)
4880 fput(file);
4881 }
Jens Axboe6b063142019-01-10 22:13:58 -07004882#endif
4883}
4884
Jens Axboe05f3fb32019-12-09 11:22:50 -07004885static void io_file_ref_kill(struct percpu_ref *ref)
4886{
4887 struct fixed_file_data *data;
4888
4889 data = container_of(ref, struct fixed_file_data, refs);
4890 complete(&data->done);
4891}
4892
Jens Axboe6b063142019-01-10 22:13:58 -07004893static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
4894{
Jens Axboe05f3fb32019-12-09 11:22:50 -07004895 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06004896 unsigned nr_tables, i;
4897
Jens Axboe05f3fb32019-12-09 11:22:50 -07004898 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07004899 return -ENXIO;
4900
Jens Axboe05f3fb32019-12-09 11:22:50 -07004901 /* protect against inflight atomic switch, which drops the ref */
4902 flush_work(&data->ref_work);
4903 percpu_ref_get(&data->refs);
4904 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
4905 wait_for_completion(&data->done);
4906 percpu_ref_put(&data->refs);
4907 percpu_ref_exit(&data->refs);
4908
Jens Axboe6b063142019-01-10 22:13:58 -07004909 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06004910 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
4911 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004912 kfree(data->table[i].files);
4913 kfree(data->table);
4914 kfree(data);
4915 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004916 ctx->nr_user_files = 0;
4917 return 0;
4918}
4919
Jens Axboe6c271ce2019-01-10 11:22:30 -07004920static void io_sq_thread_stop(struct io_ring_ctx *ctx)
4921{
4922 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07004923 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02004924 /*
4925 * The park is a bit of a work-around, without it we get
4926 * warning spews on shutdown with SQPOLL set and affinity
4927 * set to a single CPU.
4928 */
Jens Axboe06058632019-04-13 09:26:03 -06004929 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004930 kthread_stop(ctx->sqo_thread);
4931 ctx->sqo_thread = NULL;
4932 }
4933}
4934
Jens Axboe6b063142019-01-10 22:13:58 -07004935static void io_finish_async(struct io_ring_ctx *ctx)
4936{
Jens Axboe6c271ce2019-01-10 11:22:30 -07004937 io_sq_thread_stop(ctx);
4938
Jens Axboe561fb042019-10-24 07:25:42 -06004939 if (ctx->io_wq) {
4940 io_wq_destroy(ctx->io_wq);
4941 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07004942 }
4943}
4944
4945#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07004946/*
4947 * Ensure the UNIX gc is aware of our file set, so we are certain that
4948 * the io_uring can be safely unregistered on process exit, even if we have
4949 * loops in the file referencing.
4950 */
4951static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
4952{
4953 struct sock *sk = ctx->ring_sock->sk;
4954 struct scm_fp_list *fpl;
4955 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06004956 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07004957
4958 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
4959 unsigned long inflight = ctx->user->unix_inflight + nr;
4960
4961 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
4962 return -EMFILE;
4963 }
4964
4965 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
4966 if (!fpl)
4967 return -ENOMEM;
4968
4969 skb = alloc_skb(0, GFP_KERNEL);
4970 if (!skb) {
4971 kfree(fpl);
4972 return -ENOMEM;
4973 }
4974
4975 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07004976
Jens Axboe08a45172019-10-03 08:11:03 -06004977 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07004978 fpl->user = get_uid(ctx->user);
4979 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06004980 struct file *file = io_file_from_index(ctx, i + offset);
4981
4982 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06004983 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06004984 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06004985 unix_inflight(fpl->user, fpl->fp[nr_files]);
4986 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07004987 }
4988
Jens Axboe08a45172019-10-03 08:11:03 -06004989 if (nr_files) {
4990 fpl->max = SCM_MAX_FD;
4991 fpl->count = nr_files;
4992 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004993 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06004994 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
4995 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07004996
Jens Axboe08a45172019-10-03 08:11:03 -06004997 for (i = 0; i < nr_files; i++)
4998 fput(fpl->fp[i]);
4999 } else {
5000 kfree_skb(skb);
5001 kfree(fpl);
5002 }
Jens Axboe6b063142019-01-10 22:13:58 -07005003
5004 return 0;
5005}
5006
5007/*
5008 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
5009 * causes regular reference counting to break down. We rely on the UNIX
5010 * garbage collection to take care of this problem for us.
5011 */
5012static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5013{
5014 unsigned left, total;
5015 int ret = 0;
5016
5017 total = 0;
5018 left = ctx->nr_user_files;
5019 while (left) {
5020 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07005021
5022 ret = __io_sqe_files_scm(ctx, this_files, total);
5023 if (ret)
5024 break;
5025 left -= this_files;
5026 total += this_files;
5027 }
5028
5029 if (!ret)
5030 return 0;
5031
5032 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005033 struct file *file = io_file_from_index(ctx, total);
5034
5035 if (file)
5036 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07005037 total++;
5038 }
5039
5040 return ret;
5041}
5042#else
5043static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5044{
5045 return 0;
5046}
5047#endif
5048
Jens Axboe65e19f52019-10-26 07:20:21 -06005049static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
5050 unsigned nr_files)
5051{
5052 int i;
5053
5054 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005055 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005056 unsigned this_files;
5057
5058 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
5059 table->files = kcalloc(this_files, sizeof(struct file *),
5060 GFP_KERNEL);
5061 if (!table->files)
5062 break;
5063 nr_files -= this_files;
5064 }
5065
5066 if (i == nr_tables)
5067 return 0;
5068
5069 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005070 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005071 kfree(table->files);
5072 }
5073 return 1;
5074}
5075
Jens Axboe05f3fb32019-12-09 11:22:50 -07005076static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06005077{
5078#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06005079 struct sock *sock = ctx->ring_sock->sk;
5080 struct sk_buff_head list, *head = &sock->sk_receive_queue;
5081 struct sk_buff *skb;
5082 int i;
5083
5084 __skb_queue_head_init(&list);
5085
5086 /*
5087 * Find the skb that holds this file in its SCM_RIGHTS. When found,
5088 * remove this entry and rearrange the file array.
5089 */
5090 skb = skb_dequeue(head);
5091 while (skb) {
5092 struct scm_fp_list *fp;
5093
5094 fp = UNIXCB(skb).fp;
5095 for (i = 0; i < fp->count; i++) {
5096 int left;
5097
5098 if (fp->fp[i] != file)
5099 continue;
5100
5101 unix_notinflight(fp->user, fp->fp[i]);
5102 left = fp->count - 1 - i;
5103 if (left) {
5104 memmove(&fp->fp[i], &fp->fp[i + 1],
5105 left * sizeof(struct file *));
5106 }
5107 fp->count--;
5108 if (!fp->count) {
5109 kfree_skb(skb);
5110 skb = NULL;
5111 } else {
5112 __skb_queue_tail(&list, skb);
5113 }
5114 fput(file);
5115 file = NULL;
5116 break;
5117 }
5118
5119 if (!file)
5120 break;
5121
5122 __skb_queue_tail(&list, skb);
5123
5124 skb = skb_dequeue(head);
5125 }
5126
5127 if (skb_peek(&list)) {
5128 spin_lock_irq(&head->lock);
5129 while ((skb = __skb_dequeue(&list)) != NULL)
5130 __skb_queue_tail(head, skb);
5131 spin_unlock_irq(&head->lock);
5132 }
5133#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07005134 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06005135#endif
5136}
5137
Jens Axboe05f3fb32019-12-09 11:22:50 -07005138struct io_file_put {
5139 struct llist_node llist;
5140 struct file *file;
5141 struct completion *done;
5142};
5143
5144static void io_ring_file_ref_switch(struct work_struct *work)
5145{
5146 struct io_file_put *pfile, *tmp;
5147 struct fixed_file_data *data;
5148 struct llist_node *node;
5149
5150 data = container_of(work, struct fixed_file_data, ref_work);
5151
5152 while ((node = llist_del_all(&data->put_llist)) != NULL) {
5153 llist_for_each_entry_safe(pfile, tmp, node, llist) {
5154 io_ring_file_put(data->ctx, pfile->file);
5155 if (pfile->done)
5156 complete(pfile->done);
5157 else
5158 kfree(pfile);
5159 }
5160 }
5161
5162 percpu_ref_get(&data->refs);
5163 percpu_ref_switch_to_percpu(&data->refs);
5164}
5165
5166static void io_file_data_ref_zero(struct percpu_ref *ref)
5167{
5168 struct fixed_file_data *data;
5169
5170 data = container_of(ref, struct fixed_file_data, refs);
5171
5172 /* we can't safely switch from inside this context, punt to wq */
5173 queue_work(system_wq, &data->ref_work);
5174}
5175
5176static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
5177 unsigned nr_args)
5178{
5179 __s32 __user *fds = (__s32 __user *) arg;
5180 unsigned nr_tables;
5181 struct file *file;
5182 int fd, ret = 0;
5183 unsigned i;
5184
5185 if (ctx->file_data)
5186 return -EBUSY;
5187 if (!nr_args)
5188 return -EINVAL;
5189 if (nr_args > IORING_MAX_FIXED_FILES)
5190 return -EMFILE;
5191
5192 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
5193 if (!ctx->file_data)
5194 return -ENOMEM;
5195 ctx->file_data->ctx = ctx;
5196 init_completion(&ctx->file_data->done);
5197
5198 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
5199 ctx->file_data->table = kcalloc(nr_tables,
5200 sizeof(struct fixed_file_table),
5201 GFP_KERNEL);
5202 if (!ctx->file_data->table) {
5203 kfree(ctx->file_data);
5204 ctx->file_data = NULL;
5205 return -ENOMEM;
5206 }
5207
5208 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
5209 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
5210 kfree(ctx->file_data->table);
5211 kfree(ctx->file_data);
5212 ctx->file_data = NULL;
5213 return -ENOMEM;
5214 }
5215 ctx->file_data->put_llist.first = NULL;
5216 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
5217
5218 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
5219 percpu_ref_exit(&ctx->file_data->refs);
5220 kfree(ctx->file_data->table);
5221 kfree(ctx->file_data);
5222 ctx->file_data = NULL;
5223 return -ENOMEM;
5224 }
5225
5226 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
5227 struct fixed_file_table *table;
5228 unsigned index;
5229
5230 ret = -EFAULT;
5231 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
5232 break;
5233 /* allow sparse sets */
5234 if (fd == -1) {
5235 ret = 0;
5236 continue;
5237 }
5238
5239 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
5240 index = i & IORING_FILE_TABLE_MASK;
5241 file = fget(fd);
5242
5243 ret = -EBADF;
5244 if (!file)
5245 break;
5246
5247 /*
5248 * Don't allow io_uring instances to be registered. If UNIX
5249 * isn't enabled, then this causes a reference cycle and this
5250 * instance can never get freed. If UNIX is enabled we'll
5251 * handle it just fine, but there's still no point in allowing
5252 * a ring fd as it doesn't support regular read/write anyway.
5253 */
5254 if (file->f_op == &io_uring_fops) {
5255 fput(file);
5256 break;
5257 }
5258 ret = 0;
5259 table->files[index] = file;
5260 }
5261
5262 if (ret) {
5263 for (i = 0; i < ctx->nr_user_files; i++) {
5264 file = io_file_from_index(ctx, i);
5265 if (file)
5266 fput(file);
5267 }
5268 for (i = 0; i < nr_tables; i++)
5269 kfree(ctx->file_data->table[i].files);
5270
5271 kfree(ctx->file_data->table);
5272 kfree(ctx->file_data);
5273 ctx->file_data = NULL;
5274 ctx->nr_user_files = 0;
5275 return ret;
5276 }
5277
5278 ret = io_sqe_files_scm(ctx);
5279 if (ret)
5280 io_sqe_files_unregister(ctx);
5281
5282 return ret;
5283}
5284
Jens Axboec3a31e62019-10-03 13:59:56 -06005285static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
5286 int index)
5287{
5288#if defined(CONFIG_UNIX)
5289 struct sock *sock = ctx->ring_sock->sk;
5290 struct sk_buff_head *head = &sock->sk_receive_queue;
5291 struct sk_buff *skb;
5292
5293 /*
5294 * See if we can merge this file into an existing skb SCM_RIGHTS
5295 * file set. If there's no room, fall back to allocating a new skb
5296 * and filling it in.
5297 */
5298 spin_lock_irq(&head->lock);
5299 skb = skb_peek(head);
5300 if (skb) {
5301 struct scm_fp_list *fpl = UNIXCB(skb).fp;
5302
5303 if (fpl->count < SCM_MAX_FD) {
5304 __skb_unlink(skb, head);
5305 spin_unlock_irq(&head->lock);
5306 fpl->fp[fpl->count] = get_file(file);
5307 unix_inflight(fpl->user, fpl->fp[fpl->count]);
5308 fpl->count++;
5309 spin_lock_irq(&head->lock);
5310 __skb_queue_head(head, skb);
5311 } else {
5312 skb = NULL;
5313 }
5314 }
5315 spin_unlock_irq(&head->lock);
5316
5317 if (skb) {
5318 fput(file);
5319 return 0;
5320 }
5321
5322 return __io_sqe_files_scm(ctx, 1, index);
5323#else
5324 return 0;
5325#endif
5326}
5327
Jens Axboe05f3fb32019-12-09 11:22:50 -07005328static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06005329{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005330 struct fixed_file_data *data;
5331
5332 data = container_of(ref, struct fixed_file_data, refs);
5333 clear_bit(FFD_F_ATOMIC, &data->state);
5334}
5335
5336static bool io_queue_file_removal(struct fixed_file_data *data,
5337 struct file *file)
5338{
5339 struct io_file_put *pfile, pfile_stack;
5340 DECLARE_COMPLETION_ONSTACK(done);
5341
5342 /*
5343 * If we fail allocating the struct we need for doing async reomval
5344 * of this file, just punt to sync and wait for it.
5345 */
5346 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
5347 if (!pfile) {
5348 pfile = &pfile_stack;
5349 pfile->done = &done;
5350 }
5351
5352 pfile->file = file;
5353 llist_add(&pfile->llist, &data->put_llist);
5354
5355 if (pfile == &pfile_stack) {
5356 if (!test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5357 percpu_ref_put(&data->refs);
5358 percpu_ref_switch_to_atomic(&data->refs,
5359 io_atomic_switch);
5360 }
5361 wait_for_completion(&done);
5362 flush_work(&data->ref_work);
5363 return false;
5364 }
5365
5366 return true;
5367}
5368
5369static int __io_sqe_files_update(struct io_ring_ctx *ctx,
5370 struct io_uring_files_update *up,
5371 unsigned nr_args)
5372{
5373 struct fixed_file_data *data = ctx->file_data;
5374 bool ref_switch = false;
5375 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005376 __s32 __user *fds;
5377 int fd, i, err;
5378 __u32 done;
5379
Jens Axboe05f3fb32019-12-09 11:22:50 -07005380 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06005381 return -EOVERFLOW;
5382 if (done > ctx->nr_user_files)
5383 return -EINVAL;
5384
5385 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005386 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06005387 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005388 struct fixed_file_table *table;
5389 unsigned index;
5390
Jens Axboec3a31e62019-10-03 13:59:56 -06005391 err = 0;
5392 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
5393 err = -EFAULT;
5394 break;
5395 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07005396 i = array_index_nospec(up->offset, ctx->nr_user_files);
5397 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06005398 index = i & IORING_FILE_TABLE_MASK;
5399 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005400 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06005401 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005402 if (io_queue_file_removal(data, file))
5403 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06005404 }
5405 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06005406 file = fget(fd);
5407 if (!file) {
5408 err = -EBADF;
5409 break;
5410 }
5411 /*
5412 * Don't allow io_uring instances to be registered. If
5413 * UNIX isn't enabled, then this causes a reference
5414 * cycle and this instance can never get freed. If UNIX
5415 * is enabled we'll handle it just fine, but there's
5416 * still no point in allowing a ring fd as it doesn't
5417 * support regular read/write anyway.
5418 */
5419 if (file->f_op == &io_uring_fops) {
5420 fput(file);
5421 err = -EBADF;
5422 break;
5423 }
Jens Axboe65e19f52019-10-26 07:20:21 -06005424 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005425 err = io_sqe_file_register(ctx, file, i);
5426 if (err)
5427 break;
5428 }
5429 nr_args--;
5430 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005431 up->offset++;
5432 }
5433
5434 if (ref_switch && !test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5435 percpu_ref_put(&data->refs);
5436 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06005437 }
5438
5439 return done ? done : err;
5440}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005441static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
5442 unsigned nr_args)
5443{
5444 struct io_uring_files_update up;
5445
5446 if (!ctx->file_data)
5447 return -ENXIO;
5448 if (!nr_args)
5449 return -EINVAL;
5450 if (copy_from_user(&up, arg, sizeof(up)))
5451 return -EFAULT;
5452 if (up.resv)
5453 return -EINVAL;
5454
5455 return __io_sqe_files_update(ctx, &up, nr_args);
5456}
Jens Axboec3a31e62019-10-03 13:59:56 -06005457
Jens Axboe7d723062019-11-12 22:31:31 -07005458static void io_put_work(struct io_wq_work *work)
5459{
5460 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5461
5462 io_put_req(req);
5463}
5464
5465static void io_get_work(struct io_wq_work *work)
5466{
5467 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5468
5469 refcount_inc(&req->refs);
5470}
5471
Jens Axboe6c271ce2019-01-10 11:22:30 -07005472static int io_sq_offload_start(struct io_ring_ctx *ctx,
5473 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005474{
Jens Axboe576a3472019-11-25 08:49:20 -07005475 struct io_wq_data data;
Jens Axboe561fb042019-10-24 07:25:42 -06005476 unsigned concurrency;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005477 int ret;
5478
Jens Axboe6c271ce2019-01-10 11:22:30 -07005479 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005480 mmgrab(current->mm);
5481 ctx->sqo_mm = current->mm;
5482
Jens Axboe6c271ce2019-01-10 11:22:30 -07005483 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06005484 ret = -EPERM;
5485 if (!capable(CAP_SYS_ADMIN))
5486 goto err;
5487
Jens Axboe917257d2019-04-13 09:28:55 -06005488 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
5489 if (!ctx->sq_thread_idle)
5490 ctx->sq_thread_idle = HZ;
5491
Jens Axboe6c271ce2019-01-10 11:22:30 -07005492 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06005493 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005494
Jens Axboe917257d2019-04-13 09:28:55 -06005495 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06005496 if (cpu >= nr_cpu_ids)
5497 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08005498 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06005499 goto err;
5500
Jens Axboe6c271ce2019-01-10 11:22:30 -07005501 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
5502 ctx, cpu,
5503 "io_uring-sq");
5504 } else {
5505 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
5506 "io_uring-sq");
5507 }
5508 if (IS_ERR(ctx->sqo_thread)) {
5509 ret = PTR_ERR(ctx->sqo_thread);
5510 ctx->sqo_thread = NULL;
5511 goto err;
5512 }
5513 wake_up_process(ctx->sqo_thread);
5514 } else if (p->flags & IORING_SETUP_SQ_AFF) {
5515 /* Can't have SQ_AFF without SQPOLL */
5516 ret = -EINVAL;
5517 goto err;
5518 }
5519
Jens Axboe576a3472019-11-25 08:49:20 -07005520 data.mm = ctx->sqo_mm;
5521 data.user = ctx->user;
Jens Axboe181e4482019-11-25 08:52:30 -07005522 data.creds = ctx->creds;
Jens Axboe576a3472019-11-25 08:49:20 -07005523 data.get_work = io_get_work;
5524 data.put_work = io_put_work;
5525
Jens Axboe561fb042019-10-24 07:25:42 -06005526 /* Do QD, or 4 * CPUS, whatever is smallest */
5527 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Jens Axboe576a3472019-11-25 08:49:20 -07005528 ctx->io_wq = io_wq_create(concurrency, &data);
Jens Axboe975c99a52019-10-30 08:42:56 -06005529 if (IS_ERR(ctx->io_wq)) {
5530 ret = PTR_ERR(ctx->io_wq);
5531 ctx->io_wq = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005532 goto err;
5533 }
5534
5535 return 0;
5536err:
Jens Axboe54a91f32019-09-10 09:15:04 -06005537 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005538 mmdrop(ctx->sqo_mm);
5539 ctx->sqo_mm = NULL;
5540 return ret;
5541}
5542
5543static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
5544{
5545 atomic_long_sub(nr_pages, &user->locked_vm);
5546}
5547
5548static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
5549{
5550 unsigned long page_limit, cur_pages, new_pages;
5551
5552 /* Don't allow more pages than we can safely lock */
5553 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
5554
5555 do {
5556 cur_pages = atomic_long_read(&user->locked_vm);
5557 new_pages = cur_pages + nr_pages;
5558 if (new_pages > page_limit)
5559 return -ENOMEM;
5560 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
5561 new_pages) != cur_pages);
5562
5563 return 0;
5564}
5565
5566static void io_mem_free(void *ptr)
5567{
Mark Rutland52e04ef2019-04-30 17:30:21 +01005568 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005569
Mark Rutland52e04ef2019-04-30 17:30:21 +01005570 if (!ptr)
5571 return;
5572
5573 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005574 if (put_page_testzero(page))
5575 free_compound_page(page);
5576}
5577
5578static void *io_mem_alloc(size_t size)
5579{
5580 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
5581 __GFP_NORETRY;
5582
5583 return (void *) __get_free_pages(gfp_flags, get_order(size));
5584}
5585
Hristo Venev75b28af2019-08-26 17:23:46 +00005586static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
5587 size_t *sq_offset)
5588{
5589 struct io_rings *rings;
5590 size_t off, sq_array_size;
5591
5592 off = struct_size(rings, cqes, cq_entries);
5593 if (off == SIZE_MAX)
5594 return SIZE_MAX;
5595
5596#ifdef CONFIG_SMP
5597 off = ALIGN(off, SMP_CACHE_BYTES);
5598 if (off == 0)
5599 return SIZE_MAX;
5600#endif
5601
5602 sq_array_size = array_size(sizeof(u32), sq_entries);
5603 if (sq_array_size == SIZE_MAX)
5604 return SIZE_MAX;
5605
5606 if (check_add_overflow(off, sq_array_size, &off))
5607 return SIZE_MAX;
5608
5609 if (sq_offset)
5610 *sq_offset = off;
5611
5612 return off;
5613}
5614
Jens Axboe2b188cc2019-01-07 10:46:33 -07005615static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
5616{
Hristo Venev75b28af2019-08-26 17:23:46 +00005617 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005618
Hristo Venev75b28af2019-08-26 17:23:46 +00005619 pages = (size_t)1 << get_order(
5620 rings_size(sq_entries, cq_entries, NULL));
5621 pages += (size_t)1 << get_order(
5622 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07005623
Hristo Venev75b28af2019-08-26 17:23:46 +00005624 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005625}
5626
Jens Axboeedafcce2019-01-09 09:16:05 -07005627static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
5628{
5629 int i, j;
5630
5631 if (!ctx->user_bufs)
5632 return -ENXIO;
5633
5634 for (i = 0; i < ctx->nr_user_bufs; i++) {
5635 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
5636
5637 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbard27c4d3a2019-08-04 19:32:06 -07005638 put_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07005639
5640 if (ctx->account_mem)
5641 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005642 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07005643 imu->nr_bvecs = 0;
5644 }
5645
5646 kfree(ctx->user_bufs);
5647 ctx->user_bufs = NULL;
5648 ctx->nr_user_bufs = 0;
5649 return 0;
5650}
5651
5652static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
5653 void __user *arg, unsigned index)
5654{
5655 struct iovec __user *src;
5656
5657#ifdef CONFIG_COMPAT
5658 if (ctx->compat) {
5659 struct compat_iovec __user *ciovs;
5660 struct compat_iovec ciov;
5661
5662 ciovs = (struct compat_iovec __user *) arg;
5663 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
5664 return -EFAULT;
5665
Jens Axboed55e5f52019-12-11 16:12:15 -07005666 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07005667 dst->iov_len = ciov.iov_len;
5668 return 0;
5669 }
5670#endif
5671 src = (struct iovec __user *) arg;
5672 if (copy_from_user(dst, &src[index], sizeof(*dst)))
5673 return -EFAULT;
5674 return 0;
5675}
5676
5677static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
5678 unsigned nr_args)
5679{
5680 struct vm_area_struct **vmas = NULL;
5681 struct page **pages = NULL;
5682 int i, j, got_pages = 0;
5683 int ret = -EINVAL;
5684
5685 if (ctx->user_bufs)
5686 return -EBUSY;
5687 if (!nr_args || nr_args > UIO_MAXIOV)
5688 return -EINVAL;
5689
5690 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
5691 GFP_KERNEL);
5692 if (!ctx->user_bufs)
5693 return -ENOMEM;
5694
5695 for (i = 0; i < nr_args; i++) {
5696 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
5697 unsigned long off, start, end, ubuf;
5698 int pret, nr_pages;
5699 struct iovec iov;
5700 size_t size;
5701
5702 ret = io_copy_iov(ctx, &iov, arg, i);
5703 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03005704 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07005705
5706 /*
5707 * Don't impose further limits on the size and buffer
5708 * constraints here, we'll -EINVAL later when IO is
5709 * submitted if they are wrong.
5710 */
5711 ret = -EFAULT;
5712 if (!iov.iov_base || !iov.iov_len)
5713 goto err;
5714
5715 /* arbitrary limit, but we need something */
5716 if (iov.iov_len > SZ_1G)
5717 goto err;
5718
5719 ubuf = (unsigned long) iov.iov_base;
5720 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
5721 start = ubuf >> PAGE_SHIFT;
5722 nr_pages = end - start;
5723
5724 if (ctx->account_mem) {
5725 ret = io_account_mem(ctx->user, nr_pages);
5726 if (ret)
5727 goto err;
5728 }
5729
5730 ret = 0;
5731 if (!pages || nr_pages > got_pages) {
5732 kfree(vmas);
5733 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005734 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07005735 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005736 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07005737 sizeof(struct vm_area_struct *),
5738 GFP_KERNEL);
5739 if (!pages || !vmas) {
5740 ret = -ENOMEM;
5741 if (ctx->account_mem)
5742 io_unaccount_mem(ctx->user, nr_pages);
5743 goto err;
5744 }
5745 got_pages = nr_pages;
5746 }
5747
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005748 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07005749 GFP_KERNEL);
5750 ret = -ENOMEM;
5751 if (!imu->bvec) {
5752 if (ctx->account_mem)
5753 io_unaccount_mem(ctx->user, nr_pages);
5754 goto err;
5755 }
5756
5757 ret = 0;
5758 down_read(&current->mm->mmap_sem);
Ira Weiny932f4a62019-05-13 17:17:03 -07005759 pret = get_user_pages(ubuf, nr_pages,
5760 FOLL_WRITE | FOLL_LONGTERM,
5761 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07005762 if (pret == nr_pages) {
5763 /* don't support file backed memory */
5764 for (j = 0; j < nr_pages; j++) {
5765 struct vm_area_struct *vma = vmas[j];
5766
5767 if (vma->vm_file &&
5768 !is_file_hugepages(vma->vm_file)) {
5769 ret = -EOPNOTSUPP;
5770 break;
5771 }
5772 }
5773 } else {
5774 ret = pret < 0 ? pret : -EFAULT;
5775 }
5776 up_read(&current->mm->mmap_sem);
5777 if (ret) {
5778 /*
5779 * if we did partial map, or found file backed vmas,
5780 * release any pages we did get
5781 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07005782 if (pret > 0)
5783 put_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07005784 if (ctx->account_mem)
5785 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005786 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07005787 goto err;
5788 }
5789
5790 off = ubuf & ~PAGE_MASK;
5791 size = iov.iov_len;
5792 for (j = 0; j < nr_pages; j++) {
5793 size_t vec_len;
5794
5795 vec_len = min_t(size_t, size, PAGE_SIZE - off);
5796 imu->bvec[j].bv_page = pages[j];
5797 imu->bvec[j].bv_len = vec_len;
5798 imu->bvec[j].bv_offset = off;
5799 off = 0;
5800 size -= vec_len;
5801 }
5802 /* store original address for later verification */
5803 imu->ubuf = ubuf;
5804 imu->len = iov.iov_len;
5805 imu->nr_bvecs = nr_pages;
5806
5807 ctx->nr_user_bufs++;
5808 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005809 kvfree(pages);
5810 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07005811 return 0;
5812err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01005813 kvfree(pages);
5814 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07005815 io_sqe_buffer_unregister(ctx);
5816 return ret;
5817}
5818
Jens Axboe9b402842019-04-11 11:45:41 -06005819static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
5820{
5821 __s32 __user *fds = arg;
5822 int fd;
5823
5824 if (ctx->cq_ev_fd)
5825 return -EBUSY;
5826
5827 if (copy_from_user(&fd, fds, sizeof(*fds)))
5828 return -EFAULT;
5829
5830 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
5831 if (IS_ERR(ctx->cq_ev_fd)) {
5832 int ret = PTR_ERR(ctx->cq_ev_fd);
5833 ctx->cq_ev_fd = NULL;
5834 return ret;
5835 }
5836
5837 return 0;
5838}
5839
5840static int io_eventfd_unregister(struct io_ring_ctx *ctx)
5841{
5842 if (ctx->cq_ev_fd) {
5843 eventfd_ctx_put(ctx->cq_ev_fd);
5844 ctx->cq_ev_fd = NULL;
5845 return 0;
5846 }
5847
5848 return -ENXIO;
5849}
5850
Jens Axboe2b188cc2019-01-07 10:46:33 -07005851static void io_ring_ctx_free(struct io_ring_ctx *ctx)
5852{
Jens Axboe6b063142019-01-10 22:13:58 -07005853 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005854 if (ctx->sqo_mm)
5855 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07005856
5857 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07005858 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07005859 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06005860 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07005861
Jens Axboe2b188cc2019-01-07 10:46:33 -07005862#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07005863 if (ctx->ring_sock) {
5864 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07005865 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07005866 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005867#endif
5868
Hristo Venev75b28af2019-08-26 17:23:46 +00005869 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005870 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005871
5872 percpu_ref_exit(&ctx->refs);
5873 if (ctx->account_mem)
5874 io_unaccount_mem(ctx->user,
5875 ring_pages(ctx->sq_entries, ctx->cq_entries));
5876 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07005877 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07005878 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07005879 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07005880 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005881 kfree(ctx);
5882}
5883
5884static __poll_t io_uring_poll(struct file *file, poll_table *wait)
5885{
5886 struct io_ring_ctx *ctx = file->private_data;
5887 __poll_t mask = 0;
5888
5889 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02005890 /*
5891 * synchronizes with barrier from wq_has_sleeper call in
5892 * io_commit_cqring
5893 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07005894 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00005895 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
5896 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005897 mask |= EPOLLOUT | EPOLLWRNORM;
yangerkundaa5de52019-09-24 20:53:34 +08005898 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005899 mask |= EPOLLIN | EPOLLRDNORM;
5900
5901 return mask;
5902}
5903
5904static int io_uring_fasync(int fd, struct file *file, int on)
5905{
5906 struct io_ring_ctx *ctx = file->private_data;
5907
5908 return fasync_helper(fd, file, on, &ctx->cq_fasync);
5909}
5910
5911static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
5912{
5913 mutex_lock(&ctx->uring_lock);
5914 percpu_ref_kill(&ctx->refs);
5915 mutex_unlock(&ctx->uring_lock);
5916
Jens Axboe5262f562019-09-17 12:26:57 -06005917 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005918 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06005919
5920 if (ctx->io_wq)
5921 io_wq_cancel_all(ctx->io_wq);
5922
Jens Axboedef596e2019-01-09 08:59:42 -07005923 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07005924 /* if we failed setting up the ctx, we might not have any rings */
5925 if (ctx->rings)
5926 io_cqring_overflow_flush(ctx, true);
Jens Axboe206aefd2019-11-07 18:27:42 -07005927 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005928 io_ring_ctx_free(ctx);
5929}
5930
5931static int io_uring_release(struct inode *inode, struct file *file)
5932{
5933 struct io_ring_ctx *ctx = file->private_data;
5934
5935 file->private_data = NULL;
5936 io_ring_ctx_wait_and_kill(ctx);
5937 return 0;
5938}
5939
Jens Axboefcb323c2019-10-24 12:39:47 -06005940static void io_uring_cancel_files(struct io_ring_ctx *ctx,
5941 struct files_struct *files)
5942{
5943 struct io_kiocb *req;
5944 DEFINE_WAIT(wait);
5945
5946 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07005947 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06005948
5949 spin_lock_irq(&ctx->inflight_lock);
5950 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07005951 if (req->work.files != files)
5952 continue;
5953 /* req is being completed, ignore */
5954 if (!refcount_inc_not_zero(&req->refs))
5955 continue;
5956 cancel_req = req;
5957 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06005958 }
Jens Axboe768134d2019-11-10 20:30:53 -07005959 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005960 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07005961 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06005962 spin_unlock_irq(&ctx->inflight_lock);
5963
Jens Axboe768134d2019-11-10 20:30:53 -07005964 /* We need to keep going until we don't find a matching req */
5965 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06005966 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08005967
5968 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
5969 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06005970 schedule();
5971 }
Jens Axboe768134d2019-11-10 20:30:53 -07005972 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06005973}
5974
5975static int io_uring_flush(struct file *file, void *data)
5976{
5977 struct io_ring_ctx *ctx = file->private_data;
5978
5979 io_uring_cancel_files(ctx, data);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005980 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
5981 io_cqring_overflow_flush(ctx, true);
Jens Axboefcb323c2019-10-24 12:39:47 -06005982 io_wq_cancel_all(ctx->io_wq);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005983 }
Jens Axboefcb323c2019-10-24 12:39:47 -06005984 return 0;
5985}
5986
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005987static void *io_uring_validate_mmap_request(struct file *file,
5988 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005989{
Jens Axboe2b188cc2019-01-07 10:46:33 -07005990 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01005991 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005992 struct page *page;
5993 void *ptr;
5994
5995 switch (offset) {
5996 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00005997 case IORING_OFF_CQ_RING:
5998 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005999 break;
6000 case IORING_OFF_SQES:
6001 ptr = ctx->sq_sqes;
6002 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006003 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006004 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006005 }
6006
6007 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07006008 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006009 return ERR_PTR(-EINVAL);
6010
6011 return ptr;
6012}
6013
6014#ifdef CONFIG_MMU
6015
6016static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6017{
6018 size_t sz = vma->vm_end - vma->vm_start;
6019 unsigned long pfn;
6020 void *ptr;
6021
6022 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
6023 if (IS_ERR(ptr))
6024 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006025
6026 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
6027 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
6028}
6029
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006030#else /* !CONFIG_MMU */
6031
6032static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6033{
6034 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
6035}
6036
6037static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
6038{
6039 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
6040}
6041
6042static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
6043 unsigned long addr, unsigned long len,
6044 unsigned long pgoff, unsigned long flags)
6045{
6046 void *ptr;
6047
6048 ptr = io_uring_validate_mmap_request(file, pgoff, len);
6049 if (IS_ERR(ptr))
6050 return PTR_ERR(ptr);
6051
6052 return (unsigned long) ptr;
6053}
6054
6055#endif /* !CONFIG_MMU */
6056
Jens Axboe2b188cc2019-01-07 10:46:33 -07006057SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
6058 u32, min_complete, u32, flags, const sigset_t __user *, sig,
6059 size_t, sigsz)
6060{
6061 struct io_ring_ctx *ctx;
6062 long ret = -EBADF;
6063 int submitted = 0;
6064 struct fd f;
6065
Jens Axboe6c271ce2019-01-10 11:22:30 -07006066 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006067 return -EINVAL;
6068
6069 f = fdget(fd);
6070 if (!f.file)
6071 return -EBADF;
6072
6073 ret = -EOPNOTSUPP;
6074 if (f.file->f_op != &io_uring_fops)
6075 goto out_fput;
6076
6077 ret = -ENXIO;
6078 ctx = f.file->private_data;
6079 if (!percpu_ref_tryget(&ctx->refs))
6080 goto out_fput;
6081
Jens Axboe6c271ce2019-01-10 11:22:30 -07006082 /*
6083 * For SQ polling, the thread will do all submissions and completions.
6084 * Just return the requested submit count, and wake the thread if
6085 * we were asked to.
6086 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006087 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006088 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07006089 if (!list_empty_careful(&ctx->cq_overflow_list))
6090 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006091 if (flags & IORING_ENTER_SQ_WAKEUP)
6092 wake_up(&ctx->sqo_wait);
6093 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006094 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006095 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006096
Jens Axboe44d28272020-01-16 19:00:24 -07006097 if (current->mm != ctx->sqo_mm ||
6098 current_cred() != ctx->creds) {
6099 ret = -EPERM;
6100 goto out;
6101 }
6102
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006103 to_submit = min(to_submit, ctx->sq_entries);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006104 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006105 /* already have mm, so io_submit_sqes() won't try to grab it */
6106 cur_mm = ctx->sqo_mm;
6107 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
6108 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006109 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006110
6111 if (submitted != to_submit)
6112 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006113 }
6114 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07006115 unsigned nr_events = 0;
6116
Jens Axboe2b188cc2019-01-07 10:46:33 -07006117 min_complete = min(min_complete, ctx->cq_entries);
6118
Jens Axboedef596e2019-01-09 08:59:42 -07006119 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07006120 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07006121 } else {
6122 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
6123 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006124 }
6125
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006126out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03006127 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006128out_fput:
6129 fdput(f);
6130 return submitted ? submitted : ret;
6131}
6132
6133static const struct file_operations io_uring_fops = {
6134 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06006135 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07006136 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006137#ifndef CONFIG_MMU
6138 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
6139 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
6140#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006141 .poll = io_uring_poll,
6142 .fasync = io_uring_fasync,
6143};
6144
6145static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
6146 struct io_uring_params *p)
6147{
Hristo Venev75b28af2019-08-26 17:23:46 +00006148 struct io_rings *rings;
6149 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006150
Hristo Venev75b28af2019-08-26 17:23:46 +00006151 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
6152 if (size == SIZE_MAX)
6153 return -EOVERFLOW;
6154
6155 rings = io_mem_alloc(size);
6156 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006157 return -ENOMEM;
6158
Hristo Venev75b28af2019-08-26 17:23:46 +00006159 ctx->rings = rings;
6160 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
6161 rings->sq_ring_mask = p->sq_entries - 1;
6162 rings->cq_ring_mask = p->cq_entries - 1;
6163 rings->sq_ring_entries = p->sq_entries;
6164 rings->cq_ring_entries = p->cq_entries;
6165 ctx->sq_mask = rings->sq_ring_mask;
6166 ctx->cq_mask = rings->cq_ring_mask;
6167 ctx->sq_entries = rings->sq_ring_entries;
6168 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006169
6170 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07006171 if (size == SIZE_MAX) {
6172 io_mem_free(ctx->rings);
6173 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006174 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07006175 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006176
6177 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07006178 if (!ctx->sq_sqes) {
6179 io_mem_free(ctx->rings);
6180 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006181 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07006182 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006183
Jens Axboe2b188cc2019-01-07 10:46:33 -07006184 return 0;
6185}
6186
6187/*
6188 * Allocate an anonymous fd, this is what constitutes the application
6189 * visible backing of an io_uring instance. The application mmaps this
6190 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
6191 * we have to tie this fd to a socket for file garbage collection purposes.
6192 */
6193static int io_uring_get_fd(struct io_ring_ctx *ctx)
6194{
6195 struct file *file;
6196 int ret;
6197
6198#if defined(CONFIG_UNIX)
6199 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
6200 &ctx->ring_sock);
6201 if (ret)
6202 return ret;
6203#endif
6204
6205 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
6206 if (ret < 0)
6207 goto err;
6208
6209 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
6210 O_RDWR | O_CLOEXEC);
6211 if (IS_ERR(file)) {
6212 put_unused_fd(ret);
6213 ret = PTR_ERR(file);
6214 goto err;
6215 }
6216
6217#if defined(CONFIG_UNIX)
6218 ctx->ring_sock->file = file;
6219#endif
6220 fd_install(ret, file);
6221 return ret;
6222err:
6223#if defined(CONFIG_UNIX)
6224 sock_release(ctx->ring_sock);
6225 ctx->ring_sock = NULL;
6226#endif
6227 return ret;
6228}
6229
6230static int io_uring_create(unsigned entries, struct io_uring_params *p)
6231{
6232 struct user_struct *user = NULL;
6233 struct io_ring_ctx *ctx;
6234 bool account_mem;
6235 int ret;
6236
Jens Axboe8110c1a2019-12-28 15:39:54 -07006237 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006238 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006239 if (entries > IORING_MAX_ENTRIES) {
6240 if (!(p->flags & IORING_SETUP_CLAMP))
6241 return -EINVAL;
6242 entries = IORING_MAX_ENTRIES;
6243 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006244
6245 /*
6246 * Use twice as many entries for the CQ ring. It's possible for the
6247 * application to drive a higher depth than the size of the SQ ring,
6248 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06006249 * some flexibility in overcommitting a bit. If the application has
6250 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
6251 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07006252 */
6253 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06006254 if (p->flags & IORING_SETUP_CQSIZE) {
6255 /*
6256 * If IORING_SETUP_CQSIZE is set, we do the same roundup
6257 * to a power-of-two, if it isn't already. We do NOT impose
6258 * any cq vs sq ring sizing.
6259 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07006260 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06006261 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006262 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
6263 if (!(p->flags & IORING_SETUP_CLAMP))
6264 return -EINVAL;
6265 p->cq_entries = IORING_MAX_CQ_ENTRIES;
6266 }
Jens Axboe33a107f2019-10-04 12:10:03 -06006267 p->cq_entries = roundup_pow_of_two(p->cq_entries);
6268 } else {
6269 p->cq_entries = 2 * p->sq_entries;
6270 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006271
6272 user = get_uid(current_user());
6273 account_mem = !capable(CAP_IPC_LOCK);
6274
6275 if (account_mem) {
6276 ret = io_account_mem(user,
6277 ring_pages(p->sq_entries, p->cq_entries));
6278 if (ret) {
6279 free_uid(user);
6280 return ret;
6281 }
6282 }
6283
6284 ctx = io_ring_ctx_alloc(p);
6285 if (!ctx) {
6286 if (account_mem)
6287 io_unaccount_mem(user, ring_pages(p->sq_entries,
6288 p->cq_entries));
6289 free_uid(user);
6290 return -ENOMEM;
6291 }
6292 ctx->compat = in_compat_syscall();
6293 ctx->account_mem = account_mem;
6294 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07006295 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07006296
6297 ret = io_allocate_scq_urings(ctx, p);
6298 if (ret)
6299 goto err;
6300
Jens Axboe6c271ce2019-01-10 11:22:30 -07006301 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006302 if (ret)
6303 goto err;
6304
Jens Axboe2b188cc2019-01-07 10:46:33 -07006305 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006306 p->sq_off.head = offsetof(struct io_rings, sq.head);
6307 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
6308 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
6309 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
6310 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
6311 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
6312 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006313
6314 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006315 p->cq_off.head = offsetof(struct io_rings, cq.head);
6316 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
6317 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
6318 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
6319 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
6320 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06006321
Jens Axboe044c1ab2019-10-28 09:15:33 -06006322 /*
6323 * Install ring fd as the very last thing, so we don't risk someone
6324 * having closed it before we finish setup
6325 */
6326 ret = io_uring_get_fd(ctx);
6327 if (ret < 0)
6328 goto err;
6329
Jens Axboeda8c9692019-12-02 18:51:26 -07006330 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboeba042912019-12-25 16:33:42 -07006331 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006332 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006333 return ret;
6334err:
6335 io_ring_ctx_wait_and_kill(ctx);
6336 return ret;
6337}
6338
6339/*
6340 * Sets up an aio uring context, and returns the fd. Applications asks for a
6341 * ring size, we return the actual sq/cq ring sizes (among other things) in the
6342 * params structure passed in.
6343 */
6344static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
6345{
6346 struct io_uring_params p;
6347 long ret;
6348 int i;
6349
6350 if (copy_from_user(&p, params, sizeof(p)))
6351 return -EFAULT;
6352 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
6353 if (p.resv[i])
6354 return -EINVAL;
6355 }
6356
Jens Axboe6c271ce2019-01-10 11:22:30 -07006357 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07006358 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
6359 IORING_SETUP_CLAMP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006360 return -EINVAL;
6361
6362 ret = io_uring_create(entries, &p);
6363 if (ret < 0)
6364 return ret;
6365
6366 if (copy_to_user(params, &p, sizeof(p)))
6367 return -EFAULT;
6368
6369 return ret;
6370}
6371
6372SYSCALL_DEFINE2(io_uring_setup, u32, entries,
6373 struct io_uring_params __user *, params)
6374{
6375 return io_uring_setup(entries, params);
6376}
6377
Jens Axboeedafcce2019-01-09 09:16:05 -07006378static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
6379 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06006380 __releases(ctx->uring_lock)
6381 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07006382{
6383 int ret;
6384
Jens Axboe35fa71a2019-04-22 10:23:23 -06006385 /*
6386 * We're inside the ring mutex, if the ref is already dying, then
6387 * someone else killed the ctx or is already going through
6388 * io_uring_register().
6389 */
6390 if (percpu_ref_is_dying(&ctx->refs))
6391 return -ENXIO;
6392
Jens Axboe05f3fb32019-12-09 11:22:50 -07006393 if (opcode != IORING_UNREGISTER_FILES &&
6394 opcode != IORING_REGISTER_FILES_UPDATE) {
6395 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06006396
Jens Axboe05f3fb32019-12-09 11:22:50 -07006397 /*
6398 * Drop uring mutex before waiting for references to exit. If
6399 * another thread is currently inside io_uring_enter() it might
6400 * need to grab the uring_lock to make progress. If we hold it
6401 * here across the drain wait, then we can deadlock. It's safe
6402 * to drop the mutex here, since no new references will come in
6403 * after we've killed the percpu ref.
6404 */
6405 mutex_unlock(&ctx->uring_lock);
6406 wait_for_completion(&ctx->completions[0]);
6407 mutex_lock(&ctx->uring_lock);
6408 }
Jens Axboeedafcce2019-01-09 09:16:05 -07006409
6410 switch (opcode) {
6411 case IORING_REGISTER_BUFFERS:
6412 ret = io_sqe_buffer_register(ctx, arg, nr_args);
6413 break;
6414 case IORING_UNREGISTER_BUFFERS:
6415 ret = -EINVAL;
6416 if (arg || nr_args)
6417 break;
6418 ret = io_sqe_buffer_unregister(ctx);
6419 break;
Jens Axboe6b063142019-01-10 22:13:58 -07006420 case IORING_REGISTER_FILES:
6421 ret = io_sqe_files_register(ctx, arg, nr_args);
6422 break;
6423 case IORING_UNREGISTER_FILES:
6424 ret = -EINVAL;
6425 if (arg || nr_args)
6426 break;
6427 ret = io_sqe_files_unregister(ctx);
6428 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06006429 case IORING_REGISTER_FILES_UPDATE:
6430 ret = io_sqe_files_update(ctx, arg, nr_args);
6431 break;
Jens Axboe9b402842019-04-11 11:45:41 -06006432 case IORING_REGISTER_EVENTFD:
6433 ret = -EINVAL;
6434 if (nr_args != 1)
6435 break;
6436 ret = io_eventfd_register(ctx, arg);
6437 break;
6438 case IORING_UNREGISTER_EVENTFD:
6439 ret = -EINVAL;
6440 if (arg || nr_args)
6441 break;
6442 ret = io_eventfd_unregister(ctx);
6443 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07006444 default:
6445 ret = -EINVAL;
6446 break;
6447 }
6448
Jens Axboe05f3fb32019-12-09 11:22:50 -07006449
6450 if (opcode != IORING_UNREGISTER_FILES &&
6451 opcode != IORING_REGISTER_FILES_UPDATE) {
6452 /* bring the ctx back to life */
6453 reinit_completion(&ctx->completions[0]);
6454 percpu_ref_reinit(&ctx->refs);
6455 }
Jens Axboeedafcce2019-01-09 09:16:05 -07006456 return ret;
6457}
6458
6459SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
6460 void __user *, arg, unsigned int, nr_args)
6461{
6462 struct io_ring_ctx *ctx;
6463 long ret = -EBADF;
6464 struct fd f;
6465
6466 f = fdget(fd);
6467 if (!f.file)
6468 return -EBADF;
6469
6470 ret = -EOPNOTSUPP;
6471 if (f.file->f_op != &io_uring_fops)
6472 goto out_fput;
6473
6474 ctx = f.file->private_data;
6475
6476 mutex_lock(&ctx->uring_lock);
6477 ret = __io_uring_register(ctx, opcode, arg, nr_args);
6478 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006479 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
6480 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006481out_fput:
6482 fdput(f);
6483 return ret;
6484}
6485
Jens Axboe2b188cc2019-01-07 10:46:33 -07006486static int __init io_uring_init(void)
6487{
Jens Axboed3656342019-12-18 09:50:26 -07006488 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006489 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
6490 return 0;
6491};
6492__initcall(io_uring_init);