blob: 05ec385a609495412a29493aac04a21eb6b03c6d [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>
Jens Axboe52de1fe2020-02-27 10:15:42 -070047#include <net/compat.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070048#include <linux/refcount.h>
49#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030050#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070051
52#include <linux/sched/signal.h>
53#include <linux/fs.h>
54#include <linux/file.h>
55#include <linux/fdtable.h>
56#include <linux/mm.h>
57#include <linux/mman.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070058#include <linux/percpu.h>
59#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070060#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070061#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070062#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070063#include <linux/net.h>
64#include <net/sock.h>
65#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070066#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070067#include <linux/anon_inodes.h>
68#include <linux/sched/mm.h>
69#include <linux/uaccess.h>
70#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070071#include <linux/sizes.h>
72#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070073#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070074#include <linux/namei.h>
75#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070076#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070077#include <linux/eventpoll.h>
Jens Axboeff002b32020-02-07 16:05:21 -070078#include <linux/fs_struct.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030079#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070080#include <linux/task_work.h>
Jens Axboebcf5a062020-05-22 09:24:42 -060081#include <linux/pagemap.h>
Jens Axboe0f212202020-09-13 13:09:39 -060082#include <linux/io_uring.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070083
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020084#define CREATE_TRACE_POINTS
85#include <trace/events/io_uring.h>
86
Jens Axboe2b188cc2019-01-07 10:46:33 -070087#include <uapi/linux/io_uring.h>
88
89#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060090#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070091
Daniel Xu5277dea2019-09-14 14:23:45 -070092#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060093#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060094
95/*
96 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
97 */
98#define IORING_FILE_TABLE_SHIFT 9
99#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
100#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
101#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700102
103struct io_uring {
104 u32 head ____cacheline_aligned_in_smp;
105 u32 tail ____cacheline_aligned_in_smp;
106};
107
Stefan Bühler1e84b972019-04-24 23:54:16 +0200108/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000109 * This data is shared with the application through the mmap at offsets
110 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200111 *
112 * The offsets to the member fields are published through struct
113 * io_sqring_offsets when calling io_uring_setup.
114 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000115struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200116 /*
117 * Head and tail offsets into the ring; the offsets need to be
118 * masked to get valid indices.
119 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000120 * The kernel controls head of the sq ring and the tail of the cq ring,
121 * and the application controls tail of the sq ring and the head of the
122 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200123 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000124 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200125 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000126 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200127 * ring_entries - 1)
128 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000129 u32 sq_ring_mask, cq_ring_mask;
130 /* Ring sizes (constant, power of 2) */
131 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200132 /*
133 * Number of invalid entries dropped by the kernel due to
134 * invalid index stored in array
135 *
136 * Written by the kernel, shouldn't be modified by the
137 * application (i.e. get number of "new events" by comparing to
138 * cached value).
139 *
140 * After a new SQ head value was read by the application this
141 * counter includes all submissions that were dropped reaching
142 * the new SQ head (and possibly more).
143 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000144 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200145 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200146 * Runtime SQ flags
Stefan Bühler1e84b972019-04-24 23:54:16 +0200147 *
148 * Written by the kernel, shouldn't be modified by the
149 * application.
150 *
151 * The application needs a full memory barrier before checking
152 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
153 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000154 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200155 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200156 * Runtime CQ flags
157 *
158 * Written by the application, shouldn't be modified by the
159 * kernel.
160 */
161 u32 cq_flags;
162 /*
Stefan Bühler1e84b972019-04-24 23:54:16 +0200163 * Number of completion events lost because the queue was full;
164 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800165 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200166 * the completion queue.
167 *
168 * Written by the kernel, shouldn't be modified by the
169 * application (i.e. get number of "new events" by comparing to
170 * cached value).
171 *
172 * As completion events come in out of order this counter is not
173 * ordered with any other data.
174 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000175 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200176 /*
177 * Ring buffer of completion events.
178 *
179 * The kernel writes completion events fresh every time they are
180 * produced, so the application is allowed to modify pending
181 * entries.
182 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000183 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700184};
185
Jens Axboeedafcce2019-01-09 09:16:05 -0700186struct io_mapped_ubuf {
187 u64 ubuf;
188 size_t len;
189 struct bio_vec *bvec;
190 unsigned int nr_bvecs;
191};
192
Jens Axboe65e19f52019-10-26 07:20:21 -0600193struct fixed_file_table {
194 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700195};
196
Xiaoguang Wang05589552020-03-31 14:05:18 +0800197struct fixed_file_ref_node {
198 struct percpu_ref refs;
199 struct list_head node;
200 struct list_head file_list;
201 struct fixed_file_data *file_data;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600202 struct llist_node llist;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800203};
204
Jens Axboe05f3fb32019-12-09 11:22:50 -0700205struct fixed_file_data {
206 struct fixed_file_table *table;
207 struct io_ring_ctx *ctx;
208
Xiaoguang Wang05589552020-03-31 14:05:18 +0800209 struct percpu_ref *cur_refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700210 struct percpu_ref refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700211 struct completion done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800212 struct list_head ref_list;
213 spinlock_t lock;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700214};
215
Jens Axboe5a2e7452020-02-23 16:23:11 -0700216struct io_buffer {
217 struct list_head list;
218 __u64 addr;
219 __s32 len;
220 __u16 bid;
221};
222
Jens Axboe2b188cc2019-01-07 10:46:33 -0700223struct io_ring_ctx {
224 struct {
225 struct percpu_ref refs;
226 } ____cacheline_aligned_in_smp;
227
228 struct {
229 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800230 unsigned int compat: 1;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -0700231 unsigned int limit_mem: 1;
Randy Dunlape1d85332020-02-05 20:57:10 -0800232 unsigned int cq_overflow_flushed: 1;
233 unsigned int drain_next: 1;
234 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700235
Hristo Venev75b28af2019-08-26 17:23:46 +0000236 /*
237 * Ring buffer of indices into array of io_uring_sqe, which is
238 * mmapped by the application using the IORING_OFF_SQES offset.
239 *
240 * This indirection could e.g. be used to assign fixed
241 * io_uring_sqe entries to operations and only submit them to
242 * the queue when needed.
243 *
244 * The kernel modifies neither the indices array nor the entries
245 * array.
246 */
247 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700248 unsigned cached_sq_head;
249 unsigned sq_entries;
250 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700251 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600252 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700253 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700254 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600255
256 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600257 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700258 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700259
Jens Axboefcb323c2019-10-24 12:39:47 -0600260 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700261 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700262 } ____cacheline_aligned_in_smp;
263
Hristo Venev75b28af2019-08-26 17:23:46 +0000264 struct io_rings *rings;
265
Jens Axboe2b188cc2019-01-07 10:46:33 -0700266 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600267 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700268 struct task_struct *sqo_thread; /* if using sq thread polling */
Jens Axboe2aede0e2020-09-14 10:45:53 -0600269
270 /*
271 * For SQPOLL usage - we hold a reference to the parent task, so we
272 * have access to the ->files
273 */
274 struct task_struct *sqo_task;
275
276 /* Only used for accounting purposes */
277 struct mm_struct *mm_account;
278
Jens Axboe2b188cc2019-01-07 10:46:33 -0700279 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700280
Jens Axboe6b063142019-01-10 22:13:58 -0700281 /*
282 * If used, fixed file set. Writers must ensure that ->refs is dead,
283 * readers must ensure that ->refs is alive as long as the file* is
284 * used. Only updated through io_uring_register(2).
285 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700286 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700287 unsigned nr_user_files;
288
Jens Axboeedafcce2019-01-09 09:16:05 -0700289 /* if used, fixed mapped user buffers */
290 unsigned nr_user_bufs;
291 struct io_mapped_ubuf *user_bufs;
292
Jens Axboe2b188cc2019-01-07 10:46:33 -0700293 struct user_struct *user;
294
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700295 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700296
Jens Axboe0f158b42020-05-14 17:18:39 -0600297 struct completion ref_comp;
298 struct completion sq_thread_comp;
Jens Axboe206aefd2019-11-07 18:27:42 -0700299
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700300 /* if all else fails... */
301 struct io_kiocb *fallback_req;
302
Jens Axboe206aefd2019-11-07 18:27:42 -0700303#if defined(CONFIG_UNIX)
304 struct socket *ring_sock;
305#endif
306
Jens Axboe5a2e7452020-02-23 16:23:11 -0700307 struct idr io_buffer_idr;
308
Jens Axboe071698e2020-01-28 10:04:42 -0700309 struct idr personality_idr;
310
Jens Axboe206aefd2019-11-07 18:27:42 -0700311 struct {
312 unsigned cached_cq_tail;
313 unsigned cq_entries;
314 unsigned cq_mask;
315 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700316 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700317 struct wait_queue_head cq_wait;
318 struct fasync_struct *cq_fasync;
319 struct eventfd_ctx *cq_ev_fd;
320 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700321
322 struct {
323 struct mutex uring_lock;
324 wait_queue_head_t wait;
325 } ____cacheline_aligned_in_smp;
326
327 struct {
328 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700329
Jens Axboedef596e2019-01-09 08:59:42 -0700330 /*
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300331 * ->iopoll_list is protected by the ctx->uring_lock for
Jens Axboedef596e2019-01-09 08:59:42 -0700332 * io_uring instances that don't use IORING_SETUP_SQPOLL.
333 * For SQPOLL, only the single threaded io_sq_thread() will
334 * manipulate the list, hence no extra locking is needed there.
335 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300336 struct list_head iopoll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700337 struct hlist_head *cancel_hash;
338 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700339 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600340
341 spinlock_t inflight_lock;
342 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700343 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600344
Jens Axboe4a38aed22020-05-14 17:21:15 -0600345 struct delayed_work file_put_work;
346 struct llist_head file_put_llist;
347
Jens Axboe85faa7b2020-04-09 18:14:00 -0600348 struct work_struct exit_work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700349};
350
Jens Axboe09bb8392019-03-13 12:39:28 -0600351/*
352 * First field must be the file pointer in all the
353 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
354 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700355struct io_poll_iocb {
356 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700357 union {
358 struct wait_queue_head *head;
359 u64 addr;
360 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700361 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600362 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700363 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700364 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700365};
366
Jens Axboeb5dba592019-12-11 14:02:38 -0700367struct io_close {
368 struct file *file;
369 struct file *put_file;
370 int fd;
371};
372
Jens Axboead8a48a2019-11-15 08:49:11 -0700373struct io_timeout_data {
374 struct io_kiocb *req;
375 struct hrtimer timer;
376 struct timespec64 ts;
377 enum hrtimer_mode mode;
378};
379
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700380struct io_accept {
381 struct file *file;
382 struct sockaddr __user *addr;
383 int __user *addr_len;
384 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600385 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700386};
387
388struct io_sync {
389 struct file *file;
390 loff_t len;
391 loff_t off;
392 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700393 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700394};
395
Jens Axboefbf23842019-12-17 18:45:56 -0700396struct io_cancel {
397 struct file *file;
398 u64 addr;
399};
400
Jens Axboeb29472e2019-12-17 18:50:29 -0700401struct io_timeout {
402 struct file *file;
403 u64 addr;
404 int flags;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +0300405 u32 off;
406 u32 target_seq;
Pavel Begunkov135fcde2020-07-13 23:37:12 +0300407 struct list_head list;
Jens Axboeb29472e2019-12-17 18:50:29 -0700408};
409
Jens Axboe9adbd452019-12-20 08:45:55 -0700410struct io_rw {
411 /* NOTE: kiocb has the file as the first member, so don't do it here */
412 struct kiocb kiocb;
413 u64 addr;
414 u64 len;
415};
416
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700417struct io_connect {
418 struct file *file;
419 struct sockaddr __user *addr;
420 int addr_len;
421};
422
Jens Axboee47293f2019-12-20 08:58:21 -0700423struct io_sr_msg {
424 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700425 union {
Pavel Begunkov270a5942020-07-12 20:41:04 +0300426 struct user_msghdr __user *umsg;
Jens Axboefddafac2020-01-04 20:19:44 -0700427 void __user *buf;
428 };
Jens Axboee47293f2019-12-20 08:58:21 -0700429 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700430 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700431 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700432 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700433};
434
Jens Axboe15b71ab2019-12-11 11:20:36 -0700435struct io_open {
436 struct file *file;
437 int dfd;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700438 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700439 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600440 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700441};
442
Jens Axboe05f3fb32019-12-09 11:22:50 -0700443struct io_files_update {
444 struct file *file;
445 u64 arg;
446 u32 nr_args;
447 u32 offset;
448};
449
Jens Axboe4840e412019-12-25 22:03:45 -0700450struct io_fadvise {
451 struct file *file;
452 u64 offset;
453 u32 len;
454 u32 advice;
455};
456
Jens Axboec1ca7572019-12-25 22:18:28 -0700457struct io_madvise {
458 struct file *file;
459 u64 addr;
460 u32 len;
461 u32 advice;
462};
463
Jens Axboe3e4827b2020-01-08 15:18:09 -0700464struct io_epoll {
465 struct file *file;
466 int epfd;
467 int op;
468 int fd;
469 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700470};
471
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300472struct io_splice {
473 struct file *file_out;
474 struct file *file_in;
475 loff_t off_out;
476 loff_t off_in;
477 u64 len;
478 unsigned int flags;
479};
480
Jens Axboeddf0322d2020-02-23 16:41:33 -0700481struct io_provide_buf {
482 struct file *file;
483 __u64 addr;
484 __s32 len;
485 __u32 bgid;
486 __u16 nbufs;
487 __u16 bid;
488};
489
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700490struct io_statx {
491 struct file *file;
492 int dfd;
493 unsigned int mask;
494 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700495 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700496 struct statx __user *buffer;
497};
498
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300499struct io_completion {
500 struct file *file;
501 struct list_head list;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +0300502 int cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300503};
504
Jens Axboef499a022019-12-02 16:28:46 -0700505struct io_async_connect {
506 struct sockaddr_storage address;
507};
508
Jens Axboe03b12302019-12-02 18:50:25 -0700509struct io_async_msghdr {
510 struct iovec fast_iov[UIO_FASTIOV];
511 struct iovec *iov;
512 struct sockaddr __user *uaddr;
513 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700514 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700515};
516
Jens Axboef67676d2019-12-02 11:03:47 -0700517struct io_async_rw {
518 struct iovec fast_iov[UIO_FASTIOV];
Jens Axboeff6165b2020-08-13 09:47:43 -0600519 const struct iovec *free_iovec;
520 struct iov_iter iter;
Jens Axboe227c0c92020-08-13 11:51:40 -0600521 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600522 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700523};
524
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700525struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700526 union {
527 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700528 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700529 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700530 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700531 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700532};
533
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300534enum {
535 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
536 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
537 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
538 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
539 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700540 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300541
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300542 REQ_F_LINK_HEAD_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300543 REQ_F_FAIL_LINK_BIT,
544 REQ_F_INFLIGHT_BIT,
545 REQ_F_CUR_POS_BIT,
546 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300547 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300548 REQ_F_ISREG_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300549 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300550 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700551 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700552 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600553 REQ_F_NO_FILE_TABLE_BIT,
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800554 REQ_F_WORK_INITIALIZED_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700555
556 /* not a real bit, just to check we're not overflowing the space */
557 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300558};
559
560enum {
561 /* ctx owns file */
562 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
563 /* drain existing IO first */
564 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
565 /* linked sqes */
566 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
567 /* doesn't sever on completion < 0 */
568 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
569 /* IOSQE_ASYNC */
570 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700571 /* IOSQE_BUFFER_SELECT */
572 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300573
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300574 /* head of a link */
575 REQ_F_LINK_HEAD = BIT(REQ_F_LINK_HEAD_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300576 /* fail rest of links */
577 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
578 /* on inflight list */
579 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
580 /* read/write uses file position */
581 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
582 /* must not punt to workers */
583 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300584 /* has linked timeout */
585 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300586 /* regular file */
587 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300588 /* completion under lock */
589 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300590 /* needs cleanup */
591 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700592 /* already went through poll handler */
593 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700594 /* buffer already selected */
595 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600596 /* doesn't need file table for this request */
597 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800598 /* io_wq_work is initialized */
599 REQ_F_WORK_INITIALIZED = BIT(REQ_F_WORK_INITIALIZED_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700600};
601
602struct async_poll {
603 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600604 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300605};
606
Jens Axboe09bb8392019-03-13 12:39:28 -0600607/*
608 * NOTE! Each of the iocb union members has the file pointer
609 * as the first entry in their struct definition. So you can
610 * access the file pointer through any of the sub-structs,
611 * or directly as just 'ki_filp' in this struct.
612 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700613struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700614 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600615 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700616 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700617 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700618 struct io_accept accept;
619 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700620 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700621 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700622 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700623 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700624 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700625 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700626 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700627 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700628 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700629 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300630 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700631 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700632 struct io_statx statx;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300633 /* use only after cleaning per-op data, see io_clean_op() */
634 struct io_completion compl;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700635 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700636
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700637 struct io_async_ctx *io;
Jens Axboed625c6e2019-12-17 19:53:05 -0700638 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800639 /* polled IO has completed */
640 u8 iopoll_completed;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700641
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700642 u16 buf_index;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300643 u32 result;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700644
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300645 struct io_ring_ctx *ctx;
646 unsigned int flags;
647 refcount_t refs;
648 struct task_struct *task;
649 u64 user_data;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700650
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300651 struct list_head link_list;
Jens Axboed7718a92020-02-14 22:23:12 -0700652
Pavel Begunkovd21ffe72020-07-13 23:37:10 +0300653 /*
654 * 1. used with ctx->iopoll_list with reads/writes
655 * 2. to track reqs with ->files (see io_op_def::file_table)
656 */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300657 struct list_head inflight_entry;
Jens Axboefcb323c2019-10-24 12:39:47 -0600658
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300659 struct percpu_ref *fixed_file_refs;
660 struct callback_head task_work;
661 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
662 struct hlist_node hash_node;
663 struct async_poll *apoll;
664 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700665};
666
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300667struct io_defer_entry {
668 struct list_head list;
669 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300670 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300671};
672
Jens Axboedef596e2019-01-09 08:59:42 -0700673#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700674
Jens Axboe013538b2020-06-22 09:29:15 -0600675struct io_comp_state {
676 unsigned int nr;
677 struct list_head list;
678 struct io_ring_ctx *ctx;
679};
680
Jens Axboe9a56a232019-01-09 09:06:50 -0700681struct io_submit_state {
682 struct blk_plug plug;
683
684 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700685 * io_kiocb alloc cache
686 */
687 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300688 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700689
690 /*
Jens Axboe013538b2020-06-22 09:29:15 -0600691 * Batch completion logic
692 */
693 struct io_comp_state comp;
694
695 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700696 * File reference cache
697 */
698 struct file *file;
699 unsigned int fd;
700 unsigned int has_refs;
Jens Axboe9a56a232019-01-09 09:06:50 -0700701 unsigned int ios_left;
702};
703
Jens Axboed3656342019-12-18 09:50:26 -0700704struct io_op_def {
705 /* needs req->io allocated for deferral/async */
706 unsigned async_ctx : 1;
707 /* needs current->mm setup, does mm access */
708 unsigned needs_mm : 1;
709 /* needs req->file assigned */
710 unsigned needs_file : 1;
Jens Axboefd2206e2020-06-02 16:40:47 -0600711 /* don't fail if file grab fails */
712 unsigned needs_file_no_error : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700713 /* hash wq insertion if file is a regular file */
714 unsigned hash_reg_file : 1;
715 /* unbound wq insertion if file is a non-regular file */
716 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700717 /* opcode is not supported by this kernel */
718 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700719 /* needs file table */
720 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700721 /* needs ->fs */
722 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700723 /* set if opcode supports polled "wait" */
724 unsigned pollin : 1;
725 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700726 /* op supports buffer selection */
727 unsigned buffer_select : 1;
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300728 unsigned needs_fsize : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700729};
730
731static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300732 [IORING_OP_NOP] = {},
733 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700734 .async_ctx = 1,
735 .needs_mm = 1,
736 .needs_file = 1,
737 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700738 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700739 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700740 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300741 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700742 .async_ctx = 1,
743 .needs_mm = 1,
744 .needs_file = 1,
745 .hash_reg_file = 1,
746 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700747 .pollout = 1,
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300748 .needs_fsize = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700749 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300750 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700751 .needs_file = 1,
752 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300753 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700754 .needs_file = 1,
755 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700756 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700757 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300758 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700759 .needs_file = 1,
760 .hash_reg_file = 1,
761 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700762 .pollout = 1,
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300763 .needs_fsize = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700764 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300765 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700766 .needs_file = 1,
767 .unbound_nonreg_file = 1,
768 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300769 [IORING_OP_POLL_REMOVE] = {},
770 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700771 .needs_file = 1,
772 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300773 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700774 .async_ctx = 1,
775 .needs_mm = 1,
776 .needs_file = 1,
777 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700778 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700779 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700780 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300781 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700782 .async_ctx = 1,
783 .needs_mm = 1,
784 .needs_file = 1,
785 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700786 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700787 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700788 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700789 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300790 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700791 .async_ctx = 1,
792 .needs_mm = 1,
793 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300794 [IORING_OP_TIMEOUT_REMOVE] = {},
795 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700796 .needs_mm = 1,
797 .needs_file = 1,
798 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700799 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700800 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700801 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300802 [IORING_OP_ASYNC_CANCEL] = {},
803 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700804 .async_ctx = 1,
805 .needs_mm = 1,
806 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300807 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700808 .async_ctx = 1,
809 .needs_mm = 1,
810 .needs_file = 1,
811 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700812 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700813 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300814 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700815 .needs_file = 1,
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300816 .needs_fsize = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700817 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300818 [IORING_OP_OPENAT] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700819 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700820 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700821 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300822 [IORING_OP_CLOSE] = {
Jens Axboefd2206e2020-06-02 16:40:47 -0600823 .needs_file = 1,
824 .needs_file_no_error = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700825 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700826 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300827 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700828 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700829 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700830 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300831 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700832 .needs_mm = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700833 .needs_fs = 1,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600834 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700835 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300836 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700837 .needs_mm = 1,
838 .needs_file = 1,
839 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700840 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700841 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700842 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300843 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700844 .needs_mm = 1,
845 .needs_file = 1,
846 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700847 .pollout = 1,
Pavel Begunkov57f1a642020-07-15 12:46:52 +0300848 .needs_fsize = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700849 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300850 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700851 .needs_file = 1,
852 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300853 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700854 .needs_mm = 1,
855 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300856 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700857 .needs_mm = 1,
858 .needs_file = 1,
859 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700860 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700861 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300862 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700863 .needs_mm = 1,
864 .needs_file = 1,
865 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700866 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700867 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700868 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300869 [IORING_OP_OPENAT2] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700870 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700871 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700872 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700873 [IORING_OP_EPOLL_CTL] = {
874 .unbound_nonreg_file = 1,
875 .file_table = 1,
876 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300877 [IORING_OP_SPLICE] = {
878 .needs_file = 1,
879 .hash_reg_file = 1,
880 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700881 },
882 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700883 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +0300884 [IORING_OP_TEE] = {
885 .needs_file = 1,
886 .hash_reg_file = 1,
887 .unbound_nonreg_file = 1,
888 },
Jens Axboed3656342019-12-18 09:50:26 -0700889};
890
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -0700891enum io_mem_account {
892 ACCT_LOCKED,
893 ACCT_PINNED,
894};
895
Pavel Begunkov81b68a52020-07-30 18:43:46 +0300896static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
897 struct io_comp_state *cs);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700898static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800899static void io_put_req(struct io_kiocb *req);
Jens Axboec40f6372020-06-25 15:39:59 -0600900static void io_double_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700901static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700902static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
Jens Axboe7271ef32020-08-10 09:55:22 -0600903static void __io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700904static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700905static int __io_sqe_files_update(struct io_ring_ctx *ctx,
906 struct io_uring_files_update *ip,
907 unsigned nr_args);
Pavel Begunkovf56040b2020-07-23 20:25:21 +0300908static int io_prep_work_files(struct io_kiocb *req);
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300909static void __io_clean_op(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700910static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
911 int fd, struct file **out_file, bool fixed);
912static void __io_queue_sqe(struct io_kiocb *req,
Jens Axboef13fad72020-06-22 09:34:30 -0600913 const struct io_uring_sqe *sqe,
914 struct io_comp_state *cs);
Jens Axboe4349f302020-07-09 15:07:01 -0600915static void io_file_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -0600916
Jens Axboeb63534c2020-06-04 11:28:00 -0600917static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
918 struct iovec **iovec, struct iov_iter *iter,
919 bool needs_lock);
Jens Axboeff6165b2020-08-13 09:47:43 -0600920static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
921 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -0600922 struct iov_iter *iter, bool force);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700923
924static struct kmem_cache *req_cachep;
925
926static const struct file_operations io_uring_fops;
927
928struct sock *io_uring_get_socket(struct file *file)
929{
930#if defined(CONFIG_UNIX)
931 if (file->f_op == &io_uring_fops) {
932 struct io_ring_ctx *ctx = file->private_data;
933
934 return ctx->ring_sock->sk;
935 }
936#endif
937 return NULL;
938}
939EXPORT_SYMBOL(io_uring_get_socket);
940
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300941static inline void io_clean_op(struct io_kiocb *req)
942{
Pavel Begunkovbb175342020-08-20 11:33:35 +0300943 if (req->flags & (REQ_F_NEED_CLEANUP | REQ_F_BUFFER_SELECTED |
944 REQ_F_INFLIGHT))
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300945 __io_clean_op(req);
946}
947
Jens Axboe4349f302020-07-09 15:07:01 -0600948static void io_sq_thread_drop_mm(void)
Jens Axboec40f6372020-06-25 15:39:59 -0600949{
950 struct mm_struct *mm = current->mm;
951
952 if (mm) {
953 kthread_unuse_mm(mm);
954 mmput(mm);
955 }
956}
957
958static int __io_sq_thread_acquire_mm(struct io_ring_ctx *ctx)
959{
960 if (!current->mm) {
Pavel Begunkovcbcf7212020-07-18 11:31:21 +0300961 if (unlikely(!(ctx->flags & IORING_SETUP_SQPOLL) ||
Jens Axboe2aede0e2020-09-14 10:45:53 -0600962 !ctx->sqo_task->mm ||
963 !mmget_not_zero(ctx->sqo_task->mm)))
Jens Axboec40f6372020-06-25 15:39:59 -0600964 return -EFAULT;
Jens Axboe2aede0e2020-09-14 10:45:53 -0600965 kthread_use_mm(ctx->sqo_task->mm);
Jens Axboec40f6372020-06-25 15:39:59 -0600966 }
967
968 return 0;
969}
970
971static int io_sq_thread_acquire_mm(struct io_ring_ctx *ctx,
972 struct io_kiocb *req)
973{
974 if (!io_op_defs[req->opcode].needs_mm)
975 return 0;
976 return __io_sq_thread_acquire_mm(ctx);
977}
978
979static inline void req_set_fail_links(struct io_kiocb *req)
980{
981 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
982 req->flags |= REQ_F_FAIL_LINK;
983}
Jens Axboe4a38aed22020-05-14 17:21:15 -0600984
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +0800985/*
986 * Note: must call io_req_init_async() for the first time you
987 * touch any members of io_wq_work.
988 */
989static inline void io_req_init_async(struct io_kiocb *req)
990{
991 if (req->flags & REQ_F_WORK_INITIALIZED)
992 return;
993
994 memset(&req->work, 0, sizeof(req->work));
995 req->flags |= REQ_F_WORK_INITIALIZED;
996}
997
Pavel Begunkov0cdaf762020-05-17 14:13:40 +0300998static inline bool io_async_submit(struct io_ring_ctx *ctx)
999{
1000 return ctx->flags & IORING_SETUP_SQPOLL;
1001}
1002
Jens Axboe2b188cc2019-01-07 10:46:33 -07001003static void io_ring_ctx_ref_free(struct percpu_ref *ref)
1004{
1005 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1006
Jens Axboe0f158b42020-05-14 17:18:39 -06001007 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001008}
1009
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001010static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1011{
1012 return !req->timeout.off;
1013}
1014
Jens Axboe2b188cc2019-01-07 10:46:33 -07001015static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
1016{
1017 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001018 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001019
1020 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1021 if (!ctx)
1022 return NULL;
1023
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001024 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
1025 if (!ctx->fallback_req)
1026 goto err;
1027
Jens Axboe78076bb2019-12-04 19:56:40 -07001028 /*
1029 * Use 5 bits less than the max cq entries, that should give us around
1030 * 32 entries per hash list if totally full and uniformly spread.
1031 */
1032 hash_bits = ilog2(p->cq_entries);
1033 hash_bits -= 5;
1034 if (hash_bits <= 0)
1035 hash_bits = 1;
1036 ctx->cancel_hash_bits = hash_bits;
1037 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1038 GFP_KERNEL);
1039 if (!ctx->cancel_hash)
1040 goto err;
1041 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1042
Roman Gushchin21482892019-05-07 10:01:48 -07001043 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001044 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1045 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001046
1047 ctx->flags = p->flags;
Jens Axboe583863e2020-05-17 09:20:00 -06001048 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001049 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001050 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001051 init_completion(&ctx->ref_comp);
1052 init_completion(&ctx->sq_thread_comp);
Jens Axboe5a2e7452020-02-23 16:23:11 -07001053 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -07001054 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001055 mutex_init(&ctx->uring_lock);
1056 init_waitqueue_head(&ctx->wait);
1057 spin_lock_init(&ctx->completion_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03001058 INIT_LIST_HEAD(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001059 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001060 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -06001061 init_waitqueue_head(&ctx->inflight_wait);
1062 spin_lock_init(&ctx->inflight_lock);
1063 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe4a38aed22020-05-14 17:21:15 -06001064 INIT_DELAYED_WORK(&ctx->file_put_work, io_file_put_work);
1065 init_llist_head(&ctx->file_put_llist);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001066 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001067err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001068 if (ctx->fallback_req)
1069 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe78076bb2019-12-04 19:56:40 -07001070 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001071 kfree(ctx);
1072 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001073}
1074
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001075static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001076{
Jens Axboe2bc99302020-07-09 09:43:27 -06001077 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1078 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001079
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001080 return seq != ctx->cached_cq_tail
Pavel Begunkov31af27c2020-04-15 00:39:50 +03001081 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboe2bc99302020-07-09 09:43:27 -06001082 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001083
Bob Liu9d858b22019-11-13 18:06:25 +08001084 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001085}
1086
Jens Axboede0617e2019-04-06 21:51:27 -06001087static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001088{
Hristo Venev75b28af2019-08-26 17:23:46 +00001089 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001090
Pavel Begunkov07910152020-01-17 03:52:46 +03001091 /* order cqe stores with ring update */
1092 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001093
Pavel Begunkov07910152020-01-17 03:52:46 +03001094 if (wq_has_sleeper(&ctx->cq_wait)) {
1095 wake_up_interruptible(&ctx->cq_wait);
1096 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001097 }
1098}
1099
Jens Axboe51a4cc12020-08-10 10:55:56 -06001100/*
1101 * Returns true if we need to defer file table putting. This can only happen
1102 * from the error path with REQ_F_COMP_LOCKED set.
1103 */
1104static bool io_req_clean_work(struct io_kiocb *req)
Jens Axboecccf0ee2020-01-27 16:34:48 -07001105{
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001106 if (!(req->flags & REQ_F_WORK_INITIALIZED))
Jens Axboe51a4cc12020-08-10 10:55:56 -06001107 return false;
1108
1109 req->flags &= ~REQ_F_WORK_INITIALIZED;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08001110
Jens Axboecccf0ee2020-01-27 16:34:48 -07001111 if (req->work.mm) {
1112 mmdrop(req->work.mm);
1113 req->work.mm = NULL;
1114 }
1115 if (req->work.creds) {
1116 put_cred(req->work.creds);
1117 req->work.creds = NULL;
1118 }
Jens Axboeff002b32020-02-07 16:05:21 -07001119 if (req->work.fs) {
1120 struct fs_struct *fs = req->work.fs;
1121
Jens Axboe51a4cc12020-08-10 10:55:56 -06001122 if (req->flags & REQ_F_COMP_LOCKED)
1123 return true;
1124
Jens Axboeff002b32020-02-07 16:05:21 -07001125 spin_lock(&req->work.fs->lock);
1126 if (--fs->users)
1127 fs = NULL;
1128 spin_unlock(&req->work.fs->lock);
1129 if (fs)
1130 free_fs_struct(fs);
Pavel Begunkovb65e0dd2020-07-25 14:41:58 +03001131 req->work.fs = NULL;
Jens Axboeff002b32020-02-07 16:05:21 -07001132 }
Jens Axboe51a4cc12020-08-10 10:55:56 -06001133
1134 return false;
Jens Axboe561fb042019-10-24 07:25:42 -06001135}
1136
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001137static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001138{
Jens Axboed3656342019-12-18 09:50:26 -07001139 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001140
Pavel Begunkov16d59802020-07-12 16:16:47 +03001141 io_req_init_async(req);
1142
Jens Axboed3656342019-12-18 09:50:26 -07001143 if (req->flags & REQ_F_ISREG) {
Jens Axboeeefdf302020-08-27 16:40:19 -06001144 if (def->hash_reg_file || (req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001145 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001146 } else {
1147 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001148 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001149 }
Pavel Begunkovdca9cf82020-07-15 12:46:49 +03001150 if (!req->work.mm && def->needs_mm) {
1151 mmgrab(current->mm);
1152 req->work.mm = current->mm;
1153 }
1154 if (!req->work.creds)
1155 req->work.creds = get_current_cred();
1156 if (!req->work.fs && def->needs_fs) {
1157 spin_lock(&current->fs->lock);
1158 if (!current->fs->in_exec) {
1159 req->work.fs = current->fs;
1160 req->work.fs->users++;
1161 } else {
1162 req->work.flags |= IO_WQ_WORK_CANCEL;
1163 }
1164 spin_unlock(&current->fs->lock);
1165 }
Pavel Begunkov57f1a642020-07-15 12:46:52 +03001166 if (def->needs_fsize)
1167 req->work.fsize = rlimit(RLIMIT_FSIZE);
1168 else
1169 req->work.fsize = RLIM_INFINITY;
Jens Axboe561fb042019-10-24 07:25:42 -06001170}
1171
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001172static void io_prep_async_link(struct io_kiocb *req)
1173{
1174 struct io_kiocb *cur;
1175
1176 io_prep_async_work(req);
1177 if (req->flags & REQ_F_LINK_HEAD)
1178 list_for_each_entry(cur, &req->link_list, link_list)
1179 io_prep_async_work(cur);
1180}
1181
Jens Axboe7271ef32020-08-10 09:55:22 -06001182static struct io_kiocb *__io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001183{
Jackie Liua197f662019-11-08 08:09:12 -07001184 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001185 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001186
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001187 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1188 &req->work, req->flags);
1189 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001190 return link;
Jens Axboe18d9be12019-09-10 09:13:05 -06001191}
1192
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001193static void io_queue_async_work(struct io_kiocb *req)
1194{
Jens Axboe7271ef32020-08-10 09:55:22 -06001195 struct io_kiocb *link;
1196
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001197 /* init ->work of the whole link before punting */
1198 io_prep_async_link(req);
Jens Axboe7271ef32020-08-10 09:55:22 -06001199 link = __io_queue_async_work(req);
1200
1201 if (link)
1202 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001203}
1204
Jens Axboe5262f562019-09-17 12:26:57 -06001205static void io_kill_timeout(struct io_kiocb *req)
1206{
1207 int ret;
1208
Jens Axboe2d283902019-12-04 11:08:05 -07001209 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001210 if (ret != -1) {
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001211 atomic_set(&req->ctx->cq_timeouts,
1212 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001213 list_del_init(&req->timeout.list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001214 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001215 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001216 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001217 }
1218}
1219
Jens Axboef3606e32020-09-22 08:18:24 -06001220static bool io_task_match(struct io_kiocb *req, struct task_struct *tsk)
1221{
1222 struct io_ring_ctx *ctx = req->ctx;
1223
1224 if (!tsk || req->task == tsk)
1225 return true;
1226 if ((ctx->flags & IORING_SETUP_SQPOLL) && req->task == ctx->sqo_thread)
1227 return true;
1228 return false;
1229}
1230
Jens Axboe76e1b642020-09-26 15:05:03 -06001231/*
1232 * Returns true if we found and killed one or more timeouts
1233 */
1234static bool io_kill_timeouts(struct io_ring_ctx *ctx, struct task_struct *tsk)
Jens Axboe5262f562019-09-17 12:26:57 -06001235{
1236 struct io_kiocb *req, *tmp;
Jens Axboe76e1b642020-09-26 15:05:03 -06001237 int canceled = 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001238
1239 spin_lock_irq(&ctx->completion_lock);
Jens Axboef3606e32020-09-22 08:18:24 -06001240 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Jens Axboe76e1b642020-09-26 15:05:03 -06001241 if (io_task_match(req, tsk)) {
Jens Axboef3606e32020-09-22 08:18:24 -06001242 io_kill_timeout(req);
Jens Axboe76e1b642020-09-26 15:05:03 -06001243 canceled++;
1244 }
Jens Axboef3606e32020-09-22 08:18:24 -06001245 }
Jens Axboe5262f562019-09-17 12:26:57 -06001246 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe76e1b642020-09-26 15:05:03 -06001247 return canceled != 0;
Jens Axboe5262f562019-09-17 12:26:57 -06001248}
1249
Pavel Begunkov04518942020-05-26 20:34:05 +03001250static void __io_queue_deferred(struct io_ring_ctx *ctx)
1251{
1252 do {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001253 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1254 struct io_defer_entry, list);
Jens Axboe7271ef32020-08-10 09:55:22 -06001255 struct io_kiocb *link;
Pavel Begunkov04518942020-05-26 20:34:05 +03001256
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001257 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001258 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001259 list_del_init(&de->list);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001260 /* punt-init is done before queueing for defer */
Jens Axboe7271ef32020-08-10 09:55:22 -06001261 link = __io_queue_async_work(de->req);
1262 if (link) {
1263 __io_queue_linked_timeout(link);
1264 /* drop submission reference */
1265 link->flags |= REQ_F_COMP_LOCKED;
1266 io_put_req(link);
1267 }
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001268 kfree(de);
Pavel Begunkov04518942020-05-26 20:34:05 +03001269 } while (!list_empty(&ctx->defer_list));
1270}
1271
Pavel Begunkov360428f2020-05-30 14:54:17 +03001272static void io_flush_timeouts(struct io_ring_ctx *ctx)
1273{
1274 while (!list_empty(&ctx->timeout_list)) {
1275 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001276 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001277
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001278 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001279 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001280 if (req->timeout.target_seq != ctx->cached_cq_tail
1281 - atomic_read(&ctx->cq_timeouts))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001282 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001283
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001284 list_del_init(&req->timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001285 io_kill_timeout(req);
1286 }
1287}
1288
Jens Axboede0617e2019-04-06 21:51:27 -06001289static void io_commit_cqring(struct io_ring_ctx *ctx)
1290{
Pavel Begunkov360428f2020-05-30 14:54:17 +03001291 io_flush_timeouts(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001292 __io_commit_cqring(ctx);
1293
Pavel Begunkov04518942020-05-26 20:34:05 +03001294 if (unlikely(!list_empty(&ctx->defer_list)))
1295 __io_queue_deferred(ctx);
Jens Axboede0617e2019-04-06 21:51:27 -06001296}
1297
Jens Axboe2b188cc2019-01-07 10:46:33 -07001298static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1299{
Hristo Venev75b28af2019-08-26 17:23:46 +00001300 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001301 unsigned tail;
1302
1303 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001304 /*
1305 * writes to the cq entry need to come after reading head; the
1306 * control dependency is enough as we're using WRITE_ONCE to
1307 * fill the cq entry
1308 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001309 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001310 return NULL;
1311
1312 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001313 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001314}
1315
Jens Axboef2842ab2020-01-08 11:04:00 -07001316static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1317{
Jens Axboef0b493e2020-02-01 21:30:11 -07001318 if (!ctx->cq_ev_fd)
1319 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001320 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1321 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001322 if (!ctx->eventfd_async)
1323 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001324 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001325}
1326
Jens Axboeb41e9852020-02-17 09:52:41 -07001327static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001328{
1329 if (waitqueue_active(&ctx->wait))
1330 wake_up(&ctx->wait);
1331 if (waitqueue_active(&ctx->sqo_wait))
1332 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001333 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001334 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001335}
1336
Pavel Begunkov46930142020-07-30 18:43:49 +03001337static void io_cqring_mark_overflow(struct io_ring_ctx *ctx)
1338{
1339 if (list_empty(&ctx->cq_overflow_list)) {
1340 clear_bit(0, &ctx->sq_check_overflow);
1341 clear_bit(0, &ctx->cq_check_overflow);
1342 ctx->rings->sq_flags &= ~IORING_SQ_CQ_OVERFLOW;
1343 }
1344}
1345
Jens Axboee6c8aa92020-09-28 13:10:13 -06001346static inline bool io_match_files(struct io_kiocb *req,
1347 struct files_struct *files)
1348{
1349 if (!files)
1350 return true;
1351 if (req->flags & REQ_F_WORK_INITIALIZED)
1352 return req->work.files == files;
1353 return false;
1354}
1355
Jens Axboec4a2ed72019-11-21 21:01:26 -07001356/* Returns true if there are no backlogged entries after the flush */
Jens Axboee6c8aa92020-09-28 13:10:13 -06001357static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force,
1358 struct task_struct *tsk,
1359 struct files_struct *files)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001360{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001361 struct io_rings *rings = ctx->rings;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001362 struct io_kiocb *req, *tmp;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001363 struct io_uring_cqe *cqe;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001364 unsigned long flags;
1365 LIST_HEAD(list);
1366
1367 if (!force) {
1368 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001369 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001370 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1371 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001372 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001373 }
1374
1375 spin_lock_irqsave(&ctx->completion_lock, flags);
1376
1377 /* if force is set, the ring is going away. always drop after that */
1378 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001379 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001380
Jens Axboec4a2ed72019-11-21 21:01:26 -07001381 cqe = NULL;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001382 list_for_each_entry_safe(req, tmp, &ctx->cq_overflow_list, compl.list) {
1383 if (tsk && req->task != tsk)
1384 continue;
1385 if (!io_match_files(req, files))
1386 continue;
1387
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001388 cqe = io_get_cqring(ctx);
1389 if (!cqe && !force)
1390 break;
1391
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001392 list_move(&req->compl.list, &list);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001393 if (cqe) {
1394 WRITE_ONCE(cqe->user_data, req->user_data);
1395 WRITE_ONCE(cqe->res, req->result);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001396 WRITE_ONCE(cqe->flags, req->compl.cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001397 } else {
1398 WRITE_ONCE(ctx->rings->cq_overflow,
1399 atomic_inc_return(&ctx->cached_cq_overflow));
1400 }
1401 }
1402
1403 io_commit_cqring(ctx);
Pavel Begunkov46930142020-07-30 18:43:49 +03001404 io_cqring_mark_overflow(ctx);
1405
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001406 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1407 io_cqring_ev_posted(ctx);
1408
1409 while (!list_empty(&list)) {
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001410 req = list_first_entry(&list, struct io_kiocb, compl.list);
1411 list_del(&req->compl.list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001412 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001413 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001414
1415 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001416}
1417
Jens Axboebcda7ba2020-02-23 16:42:51 -07001418static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001419{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001420 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001421 struct io_uring_cqe *cqe;
1422
Jens Axboe78e19bb2019-11-06 15:21:34 -07001423 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001424
Jens Axboe2b188cc2019-01-07 10:46:33 -07001425 /*
1426 * If we can't get a cq entry, userspace overflowed the
1427 * submission (by quite a lot). Increment the overflow count in
1428 * the ring.
1429 */
1430 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001431 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001432 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001433 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001434 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe0f212202020-09-13 13:09:39 -06001435 } else if (ctx->cq_overflow_flushed || req->task->io_uring->in_idle) {
1436 /*
1437 * If we're in ring overflow flush mode, or in task cancel mode,
1438 * then we cannot store the request for later flushing, we need
1439 * to drop it on the floor.
1440 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07001441 WRITE_ONCE(ctx->rings->cq_overflow,
1442 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001443 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001444 if (list_empty(&ctx->cq_overflow_list)) {
1445 set_bit(0, &ctx->sq_check_overflow);
1446 set_bit(0, &ctx->cq_check_overflow);
Xiaoguang Wang6d5f9042020-07-09 09:15:29 +08001447 ctx->rings->sq_flags |= IORING_SQ_CQ_OVERFLOW;
Jens Axboead3eb2c2019-12-18 17:12:20 -07001448 }
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001449 io_clean_op(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001450 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001451 req->compl.cflags = cflags;
Pavel Begunkov40d8ddd2020-07-13 23:37:11 +03001452 refcount_inc(&req->refs);
1453 list_add_tail(&req->compl.list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001454 }
1455}
1456
Jens Axboebcda7ba2020-02-23 16:42:51 -07001457static void io_cqring_fill_event(struct io_kiocb *req, long res)
1458{
1459 __io_cqring_fill_event(req, res, 0);
1460}
1461
Jens Axboee1e16092020-06-22 09:17:17 -06001462static void io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001463{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001464 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001465 unsigned long flags;
1466
1467 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001468 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001469 io_commit_cqring(ctx);
1470 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1471
Jens Axboe8c838782019-03-12 15:48:16 -06001472 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001473}
1474
Jens Axboe229a7b62020-06-22 10:13:11 -06001475static void io_submit_flush_completions(struct io_comp_state *cs)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001476{
Jens Axboe229a7b62020-06-22 10:13:11 -06001477 struct io_ring_ctx *ctx = cs->ctx;
1478
1479 spin_lock_irq(&ctx->completion_lock);
1480 while (!list_empty(&cs->list)) {
1481 struct io_kiocb *req;
1482
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001483 req = list_first_entry(&cs->list, struct io_kiocb, compl.list);
1484 list_del(&req->compl.list);
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001485 __io_cqring_fill_event(req, req->result, req->compl.cflags);
Jens Axboe229a7b62020-06-22 10:13:11 -06001486 if (!(req->flags & REQ_F_LINK_HEAD)) {
1487 req->flags |= REQ_F_COMP_LOCKED;
1488 io_put_req(req);
1489 } else {
1490 spin_unlock_irq(&ctx->completion_lock);
1491 io_put_req(req);
1492 spin_lock_irq(&ctx->completion_lock);
1493 }
1494 }
1495 io_commit_cqring(ctx);
1496 spin_unlock_irq(&ctx->completion_lock);
1497
1498 io_cqring_ev_posted(ctx);
1499 cs->nr = 0;
1500}
1501
1502static void __io_req_complete(struct io_kiocb *req, long res, unsigned cflags,
1503 struct io_comp_state *cs)
1504{
1505 if (!cs) {
1506 io_cqring_add_event(req, res, cflags);
1507 io_put_req(req);
1508 } else {
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001509 io_clean_op(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06001510 req->result = res;
Pavel Begunkov0f7e4662020-07-13 23:37:16 +03001511 req->compl.cflags = cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001512 list_add_tail(&req->compl.list, &cs->list);
Jens Axboe229a7b62020-06-22 10:13:11 -06001513 if (++cs->nr >= 32)
1514 io_submit_flush_completions(cs);
1515 }
Jens Axboee1e16092020-06-22 09:17:17 -06001516}
1517
1518static void io_req_complete(struct io_kiocb *req, long res)
1519{
Jens Axboe229a7b62020-06-22 10:13:11 -06001520 __io_req_complete(req, res, 0, NULL);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001521}
1522
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001523static inline bool io_is_fallback_req(struct io_kiocb *req)
1524{
1525 return req == (struct io_kiocb *)
1526 ((unsigned long) req->ctx->fallback_req & ~1UL);
1527}
1528
1529static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1530{
1531 struct io_kiocb *req;
1532
1533 req = ctx->fallback_req;
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001534 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001535 return req;
1536
1537 return NULL;
1538}
1539
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001540static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1541 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001542{
Jens Axboefd6fab22019-03-14 16:30:06 -06001543 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001544 struct io_kiocb *req;
1545
Pavel Begunkovf6b6c7d2020-06-21 13:09:53 +03001546 if (!state->free_reqs) {
Jens Axboe2579f912019-01-09 09:10:43 -07001547 size_t sz;
1548 int ret;
1549
1550 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001551 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1552
1553 /*
1554 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1555 * retry single alloc to be on the safe side.
1556 */
1557 if (unlikely(ret <= 0)) {
1558 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1559 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001560 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001561 ret = 1;
1562 }
Jens Axboe2579f912019-01-09 09:10:43 -07001563 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001564 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001565 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001566 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001567 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001568 }
1569
Jens Axboe2579f912019-01-09 09:10:43 -07001570 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001571fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001572 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001573}
1574
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001575static inline void io_put_file(struct io_kiocb *req, struct file *file,
1576 bool fixed)
1577{
1578 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001579 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001580 else
1581 fput(file);
1582}
1583
Jens Axboe51a4cc12020-08-10 10:55:56 -06001584static bool io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001585{
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03001586 io_clean_op(req);
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001587
Jens Axboe5acbbc82020-07-08 15:15:26 -06001588 if (req->io)
1589 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001590 if (req->file)
1591 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboefcb323c2019-10-24 12:39:47 -06001592
Jens Axboe51a4cc12020-08-10 10:55:56 -06001593 return io_req_clean_work(req);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001594}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001595
Jens Axboe51a4cc12020-08-10 10:55:56 -06001596static void __io_free_req_finish(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03001597{
Jens Axboe0f212202020-09-13 13:09:39 -06001598 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe51a4cc12020-08-10 10:55:56 -06001599 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001600
Jens Axboe0f212202020-09-13 13:09:39 -06001601 atomic_long_inc(&tctx->req_complete);
1602 if (tctx->in_idle)
1603 wake_up(&tctx->wait);
Jens Axboee3bc8e92020-09-24 08:45:57 -06001604 put_task_struct(req->task);
1605
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001606 if (likely(!io_is_fallback_req(req)))
1607 kmem_cache_free(req_cachep, req);
1608 else
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001609 clear_bit_unlock(0, (unsigned long *) &ctx->fallback_req);
1610 percpu_ref_put(&ctx->refs);
Jens Axboee65ef562019-03-12 10:16:44 -06001611}
1612
Jens Axboe51a4cc12020-08-10 10:55:56 -06001613static void io_req_task_file_table_put(struct callback_head *cb)
1614{
1615 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
1616 struct fs_struct *fs = req->work.fs;
1617
1618 spin_lock(&req->work.fs->lock);
1619 if (--fs->users)
1620 fs = NULL;
1621 spin_unlock(&req->work.fs->lock);
1622 if (fs)
1623 free_fs_struct(fs);
1624 req->work.fs = NULL;
1625 __io_free_req_finish(req);
1626}
1627
1628static void __io_free_req(struct io_kiocb *req)
1629{
1630 if (!io_dismantle_req(req)) {
1631 __io_free_req_finish(req);
1632 } else {
1633 int ret;
1634
1635 init_task_work(&req->task_work, io_req_task_file_table_put);
1636 ret = task_work_add(req->task, &req->task_work, TWA_RESUME);
1637 if (unlikely(ret)) {
1638 struct task_struct *tsk;
1639
1640 tsk = io_wq_get_task(req->ctx->io_wq);
1641 task_work_add(tsk, &req->task_work, 0);
1642 }
1643 }
1644}
1645
Jackie Liua197f662019-11-08 08:09:12 -07001646static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001647{
Jackie Liua197f662019-11-08 08:09:12 -07001648 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001649 int ret;
1650
Jens Axboe2d283902019-12-04 11:08:05 -07001651 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001652 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001653 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001654 io_commit_cqring(ctx);
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001655 req->flags &= ~REQ_F_LINK_HEAD;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001656 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001657 return true;
1658 }
1659
1660 return false;
1661}
1662
Jens Axboeab0b6452020-06-30 08:43:15 -06001663static bool __io_kill_linked_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001664{
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001665 struct io_kiocb *link;
Jens Axboeab0b6452020-06-30 08:43:15 -06001666 bool wake_ev;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001667
1668 if (list_empty(&req->link_list))
Jens Axboeab0b6452020-06-30 08:43:15 -06001669 return false;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001670 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
1671 if (link->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboeab0b6452020-06-30 08:43:15 -06001672 return false;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001673
1674 list_del_init(&link->link_list);
Jens Axboe9b7adba2020-08-10 10:54:02 -06001675 link->flags |= REQ_F_COMP_LOCKED;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001676 wake_ev = io_link_cancel_timeout(link);
1677 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboeab0b6452020-06-30 08:43:15 -06001678 return wake_ev;
1679}
1680
1681static void io_kill_linked_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001682{
Jens Axboe2665abf2019-11-05 12:40:47 -07001683 struct io_ring_ctx *ctx = req->ctx;
Jens Axboeab0b6452020-06-30 08:43:15 -06001684 bool wake_ev;
Jens Axboe9e645e112019-05-10 16:07:28 -06001685
Jens Axboeab0b6452020-06-30 08:43:15 -06001686 if (!(req->flags & REQ_F_COMP_LOCKED)) {
1687 unsigned long flags;
1688
1689 spin_lock_irqsave(&ctx->completion_lock, flags);
1690 wake_ev = __io_kill_linked_timeout(req);
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001691 spin_unlock_irqrestore(&ctx->completion_lock, flags);
Jens Axboeab0b6452020-06-30 08:43:15 -06001692 } else {
1693 wake_ev = __io_kill_linked_timeout(req);
1694 }
1695
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001696 if (wake_ev)
1697 io_cqring_ev_posted(ctx);
1698}
1699
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001700static struct io_kiocb *io_req_link_next(struct io_kiocb *req)
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001701{
1702 struct io_kiocb *nxt;
Jens Axboe4d7dd462019-11-20 13:03:52 -07001703
Jens Axboe9e645e112019-05-10 16:07:28 -06001704 /*
1705 * The list should never be empty when we are called here. But could
1706 * potentially happen if the chain is messed up, check to be on the
1707 * safe side.
1708 */
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001709 if (unlikely(list_empty(&req->link_list)))
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001710 return NULL;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001711
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001712 nxt = list_first_entry(&req->link_list, struct io_kiocb, link_list);
1713 list_del_init(&req->link_list);
1714 if (!list_empty(&nxt->link_list))
1715 nxt->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001716 return nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06001717}
1718
1719/*
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001720 * Called if REQ_F_LINK_HEAD is set, and we fail the head request
Jens Axboe9e645e112019-05-10 16:07:28 -06001721 */
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001722static void __io_fail_links(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001723{
Jens Axboe2665abf2019-11-05 12:40:47 -07001724 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9e645e112019-05-10 16:07:28 -06001725
1726 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001727 struct io_kiocb *link = list_first_entry(&req->link_list,
1728 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001729
Pavel Begunkov44932332019-12-05 16:16:35 +03001730 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001731 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001732
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001733 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe9b7adba2020-08-10 10:54:02 -06001734 link->flags |= REQ_F_COMP_LOCKED;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001735 __io_double_put_req(link);
Jens Axboe5d960722019-11-19 15:31:28 -07001736 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001737 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001738
1739 io_commit_cqring(ctx);
Jens Axboe2665abf2019-11-05 12:40:47 -07001740 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001741}
1742
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001743static void io_fail_links(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001744{
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001745 struct io_ring_ctx *ctx = req->ctx;
1746
1747 if (!(req->flags & REQ_F_COMP_LOCKED)) {
1748 unsigned long flags;
1749
1750 spin_lock_irqsave(&ctx->completion_lock, flags);
1751 __io_fail_links(req);
1752 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1753 } else {
1754 __io_fail_links(req);
1755 }
1756
Jens Axboe9e645e112019-05-10 16:07:28 -06001757 io_cqring_ev_posted(ctx);
1758}
1759
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03001760static struct io_kiocb *__io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001761{
Pavel Begunkov9b0d9112020-06-28 12:52:34 +03001762 req->flags &= ~REQ_F_LINK_HEAD;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03001763 if (req->flags & REQ_F_LINK_TIMEOUT)
1764 io_kill_linked_timeout(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001765
Jens Axboe9e645e112019-05-10 16:07:28 -06001766 /*
1767 * If LINK is set, we have dependent requests in this chain. If we
1768 * didn't fail this request, queue the first one up, moving any other
1769 * dependencies to the next request. In case of failure, fail the rest
1770 * of the chain.
1771 */
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001772 if (likely(!(req->flags & REQ_F_FAIL_LINK)))
1773 return io_req_link_next(req);
1774 io_fail_links(req);
1775 return NULL;
Jens Axboe4d7dd462019-11-20 13:03:52 -07001776}
Jens Axboe2665abf2019-11-05 12:40:47 -07001777
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03001778static struct io_kiocb *io_req_find_next(struct io_kiocb *req)
1779{
1780 if (likely(!(req->flags & REQ_F_LINK_HEAD)))
1781 return NULL;
1782 return __io_req_find_next(req);
1783}
1784
Jens Axboefd7d6de2020-08-23 11:00:37 -06001785static int io_req_task_work_add(struct io_kiocb *req, struct callback_head *cb,
1786 bool twa_signal_ok)
Jens Axboec2c4c832020-07-01 15:37:11 -06001787{
1788 struct task_struct *tsk = req->task;
1789 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06001790 int ret, notify;
Jens Axboec2c4c832020-07-01 15:37:11 -06001791
Jens Axboe6200b0a2020-09-13 14:38:30 -06001792 if (tsk->flags & PF_EXITING)
1793 return -ESRCH;
1794
Jens Axboec2c4c832020-07-01 15:37:11 -06001795 /*
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06001796 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
1797 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
1798 * processing task_work. There's no reliable way to tell if TWA_RESUME
1799 * will do the job.
Jens Axboec2c4c832020-07-01 15:37:11 -06001800 */
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06001801 notify = 0;
Jens Axboefd7d6de2020-08-23 11:00:37 -06001802 if (!(ctx->flags & IORING_SETUP_SQPOLL) && twa_signal_ok)
Jens Axboec2c4c832020-07-01 15:37:11 -06001803 notify = TWA_SIGNAL;
1804
1805 ret = task_work_add(tsk, cb, notify);
1806 if (!ret)
1807 wake_up_process(tsk);
Jens Axboe0ba9c9e2020-08-06 19:41:50 -06001808
Jens Axboec2c4c832020-07-01 15:37:11 -06001809 return ret;
1810}
1811
Jens Axboec40f6372020-06-25 15:39:59 -06001812static void __io_req_task_cancel(struct io_kiocb *req, int error)
1813{
1814 struct io_ring_ctx *ctx = req->ctx;
1815
1816 spin_lock_irq(&ctx->completion_lock);
1817 io_cqring_fill_event(req, error);
1818 io_commit_cqring(ctx);
1819 spin_unlock_irq(&ctx->completion_lock);
1820
1821 io_cqring_ev_posted(ctx);
1822 req_set_fail_links(req);
1823 io_double_put_req(req);
1824}
1825
1826static void io_req_task_cancel(struct callback_head *cb)
1827{
1828 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06001829 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06001830
1831 __io_req_task_cancel(req, -ECANCELED);
Jens Axboe87ceb6a2020-09-14 08:20:12 -06001832 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06001833}
1834
1835static void __io_req_task_submit(struct io_kiocb *req)
1836{
1837 struct io_ring_ctx *ctx = req->ctx;
1838
Jens Axboec40f6372020-06-25 15:39:59 -06001839 if (!__io_sq_thread_acquire_mm(ctx)) {
1840 mutex_lock(&ctx->uring_lock);
1841 __io_queue_sqe(req, NULL, NULL);
1842 mutex_unlock(&ctx->uring_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07001843 } else {
Jens Axboec40f6372020-06-25 15:39:59 -06001844 __io_req_task_cancel(req, -EFAULT);
Jens Axboe2665abf2019-11-05 12:40:47 -07001845 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001846}
1847
Jens Axboec40f6372020-06-25 15:39:59 -06001848static void io_req_task_submit(struct callback_head *cb)
1849{
1850 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06001851 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06001852
1853 __io_req_task_submit(req);
Jens Axboe6d816e02020-08-11 08:04:14 -06001854 percpu_ref_put(&ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06001855}
1856
1857static void io_req_task_queue(struct io_kiocb *req)
1858{
Jens Axboec40f6372020-06-25 15:39:59 -06001859 int ret;
1860
1861 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06001862 percpu_ref_get(&req->ctx->refs);
Jens Axboec40f6372020-06-25 15:39:59 -06001863
Jens Axboefd7d6de2020-08-23 11:00:37 -06001864 ret = io_req_task_work_add(req, &req->task_work, true);
Jens Axboec40f6372020-06-25 15:39:59 -06001865 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06001866 struct task_struct *tsk;
1867
Jens Axboec40f6372020-06-25 15:39:59 -06001868 init_task_work(&req->task_work, io_req_task_cancel);
1869 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboec2c4c832020-07-01 15:37:11 -06001870 task_work_add(tsk, &req->task_work, 0);
1871 wake_up_process(tsk);
Jens Axboec40f6372020-06-25 15:39:59 -06001872 }
Jens Axboec40f6372020-06-25 15:39:59 -06001873}
1874
Pavel Begunkovc3524382020-06-28 12:52:32 +03001875static void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08001876{
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001877 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001878
Pavel Begunkov906a8c32020-06-27 14:04:55 +03001879 if (nxt)
1880 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001881}
1882
Jens Axboe9e645e112019-05-10 16:07:28 -06001883static void io_free_req(struct io_kiocb *req)
1884{
Pavel Begunkovc3524382020-06-28 12:52:32 +03001885 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001886 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001887}
1888
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001889struct req_batch {
1890 void *reqs[IO_IOPOLL_BATCH];
1891 int to_free;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001892
1893 struct task_struct *task;
1894 int task_refs;
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001895};
1896
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001897static inline void io_init_req_batch(struct req_batch *rb)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001898{
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001899 rb->to_free = 0;
1900 rb->task_refs = 0;
1901 rb->task = NULL;
1902}
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001903
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001904static void __io_req_free_batch_flush(struct io_ring_ctx *ctx,
1905 struct req_batch *rb)
1906{
1907 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1908 percpu_ref_put_many(&ctx->refs, rb->to_free);
1909 rb->to_free = 0;
1910}
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001911
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001912static void io_req_free_batch_finish(struct io_ring_ctx *ctx,
1913 struct req_batch *rb)
1914{
1915 if (rb->to_free)
1916 __io_req_free_batch_flush(ctx, rb);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001917 if (rb->task) {
Jens Axboe0f212202020-09-13 13:09:39 -06001918 atomic_long_add(rb->task_refs, &rb->task->io_uring->req_complete);
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001919 put_task_struct_many(rb->task, rb->task_refs);
1920 rb->task = NULL;
1921 }
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001922}
1923
1924static void io_req_free_batch(struct req_batch *rb, struct io_kiocb *req)
1925{
1926 if (unlikely(io_is_fallback_req(req))) {
1927 io_free_req(req);
1928 return;
1929 }
1930 if (req->flags & REQ_F_LINK_HEAD)
1931 io_queue_next(req);
1932
Jens Axboee3bc8e92020-09-24 08:45:57 -06001933 if (req->task != rb->task) {
Jens Axboe0f212202020-09-13 13:09:39 -06001934 if (rb->task) {
1935 atomic_long_add(rb->task_refs, &rb->task->io_uring->req_complete);
Jens Axboee3bc8e92020-09-24 08:45:57 -06001936 put_task_struct_many(rb->task, rb->task_refs);
Jens Axboe0f212202020-09-13 13:09:39 -06001937 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06001938 rb->task = req->task;
1939 rb->task_refs = 0;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001940 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06001941 rb->task_refs++;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03001942
Jens Axboe51a4cc12020-08-10 10:55:56 -06001943 WARN_ON_ONCE(io_dismantle_req(req));
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03001944 rb->reqs[rb->to_free++] = req;
1945 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1946 __io_req_free_batch_flush(req->ctx, rb);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001947}
1948
Jens Axboeba816ad2019-09-28 11:36:45 -06001949/*
1950 * Drop reference to request, return next in chain (if there is one) if this
1951 * was the last reference to this request.
1952 */
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001953static struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06001954{
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001955 struct io_kiocb *nxt = NULL;
1956
Jens Axboe2a44f462020-02-25 13:25:41 -07001957 if (refcount_dec_and_test(&req->refs)) {
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001958 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001959 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001960 }
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001961 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001962}
1963
Jens Axboe2b188cc2019-01-07 10:46:33 -07001964static void io_put_req(struct io_kiocb *req)
1965{
Jens Axboedef596e2019-01-09 08:59:42 -07001966 if (refcount_dec_and_test(&req->refs))
1967 io_free_req(req);
1968}
1969
Pavel Begunkovf4db7182020-06-25 18:20:54 +03001970static struct io_wq_work *io_steal_work(struct io_kiocb *req)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001971{
Pavel Begunkov6df1db62020-07-03 22:15:06 +03001972 struct io_kiocb *nxt;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001973
Pavel Begunkovf4db7182020-06-25 18:20:54 +03001974 /*
1975 * A ref is owned by io-wq in which context we're. So, if that's the
1976 * last one, it's safe to steal next work. False negatives are Ok,
1977 * it just will be re-punted async in io_put_work()
1978 */
1979 if (refcount_read(&req->refs) != 1)
1980 return NULL;
1981
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03001982 nxt = io_req_find_next(req);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03001983 return nxt ? &nxt->work : NULL;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001984}
1985
Jens Axboe978db572019-11-14 22:39:04 -07001986/*
1987 * Must only be used if we don't need to care about links, usually from
1988 * within the completion handling itself.
1989 */
1990static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001991{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001992 /* drop both submit and complete references */
1993 if (refcount_sub_and_test(2, &req->refs))
1994 __io_free_req(req);
1995}
1996
Jens Axboe978db572019-11-14 22:39:04 -07001997static void io_double_put_req(struct io_kiocb *req)
1998{
1999 /* drop both submit and complete references */
2000 if (refcount_sub_and_test(2, &req->refs))
2001 io_free_req(req);
2002}
2003
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002004static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06002005{
Jens Axboe84f97dc2019-11-06 11:27:53 -07002006 struct io_rings *rings = ctx->rings;
2007
Jens Axboead3eb2c2019-12-18 17:12:20 -07002008 if (test_bit(0, &ctx->cq_check_overflow)) {
2009 /*
2010 * noflush == true is from the waitqueue handler, just ensure
2011 * we wake up the task, and the next invocation will flush the
2012 * entries. We cannot safely to it from here.
2013 */
2014 if (noflush && !list_empty(&ctx->cq_overflow_list))
2015 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002016
Jens Axboee6c8aa92020-09-28 13:10:13 -06002017 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboead3eb2c2019-12-18 17:12:20 -07002018 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002019
Jens Axboea3a0e432019-08-20 11:03:11 -06002020 /* See comment at the top of this file */
2021 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07002022 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06002023}
2024
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002025static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2026{
2027 struct io_rings *rings = ctx->rings;
2028
2029 /* make sure SQ entry isn't read before tail */
2030 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2031}
2032
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002033static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002034{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002035 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002036
Jens Axboebcda7ba2020-02-23 16:42:51 -07002037 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2038 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002039 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002040 kfree(kbuf);
2041 return cflags;
2042}
2043
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002044static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2045{
2046 struct io_buffer *kbuf;
2047
2048 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2049 return io_put_kbuf(req, kbuf);
2050}
2051
Jens Axboe4c6e2772020-07-01 11:29:10 -06002052static inline bool io_run_task_work(void)
2053{
Jens Axboe6200b0a2020-09-13 14:38:30 -06002054 /*
2055 * Not safe to run on exiting task, and the task_work handling will
2056 * not add work to such a task.
2057 */
2058 if (unlikely(current->flags & PF_EXITING))
2059 return false;
Jens Axboe4c6e2772020-07-01 11:29:10 -06002060 if (current->task_works) {
2061 __set_current_state(TASK_RUNNING);
2062 task_work_run();
2063 return true;
2064 }
2065
2066 return false;
2067}
2068
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002069static void io_iopoll_queue(struct list_head *again)
2070{
2071 struct io_kiocb *req;
2072
2073 do {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002074 req = list_first_entry(again, struct io_kiocb, inflight_entry);
2075 list_del(&req->inflight_entry);
Pavel Begunkov81b68a52020-07-30 18:43:46 +03002076 __io_complete_rw(req, -EAGAIN, 0, NULL);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002077 } while (!list_empty(again));
2078}
2079
Jens Axboedef596e2019-01-09 08:59:42 -07002080/*
2081 * Find and free completed poll iocbs
2082 */
2083static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
2084 struct list_head *done)
2085{
Jens Axboe8237e042019-12-28 10:48:22 -07002086 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07002087 struct io_kiocb *req;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002088 LIST_HEAD(again);
2089
2090 /* order with ->result store in io_complete_rw_iopoll() */
2091 smp_rmb();
Jens Axboedef596e2019-01-09 08:59:42 -07002092
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002093 io_init_req_batch(&rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002094 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002095 int cflags = 0;
2096
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002097 req = list_first_entry(done, struct io_kiocb, inflight_entry);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002098 if (READ_ONCE(req->result) == -EAGAIN) {
Jens Axboe56450c22020-08-26 18:58:26 -06002099 req->result = 0;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002100 req->iopoll_completed = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002101 list_move_tail(&req->inflight_entry, &again);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002102 continue;
2103 }
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002104 list_del(&req->inflight_entry);
Jens Axboedef596e2019-01-09 08:59:42 -07002105
Jens Axboebcda7ba2020-02-23 16:42:51 -07002106 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002107 cflags = io_put_rw_kbuf(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002108
2109 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07002110 (*nr_events)++;
2111
Pavel Begunkovc3524382020-06-28 12:52:32 +03002112 if (refcount_dec_and_test(&req->refs))
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002113 io_req_free_batch(&rb, req);
Jens Axboedef596e2019-01-09 08:59:42 -07002114 }
Jens Axboedef596e2019-01-09 08:59:42 -07002115
Jens Axboe09bb8392019-03-13 12:39:28 -06002116 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08002117 if (ctx->flags & IORING_SETUP_SQPOLL)
2118 io_cqring_ev_posted(ctx);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002119 io_req_free_batch_finish(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002120
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002121 if (!list_empty(&again))
2122 io_iopoll_queue(&again);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002123}
2124
Jens Axboedef596e2019-01-09 08:59:42 -07002125static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
2126 long min)
2127{
2128 struct io_kiocb *req, *tmp;
2129 LIST_HEAD(done);
2130 bool spin;
2131 int ret;
2132
2133 /*
2134 * Only spin for completions if we don't have multiple devices hanging
2135 * off our complete list, and we're under the requested amount.
2136 */
2137 spin = !ctx->poll_multi_file && *nr_events < min;
2138
2139 ret = 0;
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002140 list_for_each_entry_safe(req, tmp, &ctx->iopoll_list, inflight_entry) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002141 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07002142
2143 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002144 * Move completed and retryable entries to our local lists.
2145 * If we find a request that requires polling, break out
2146 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002147 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002148 if (READ_ONCE(req->iopoll_completed)) {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002149 list_move_tail(&req->inflight_entry, &done);
Jens Axboedef596e2019-01-09 08:59:42 -07002150 continue;
2151 }
2152 if (!list_empty(&done))
2153 break;
2154
2155 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
2156 if (ret < 0)
2157 break;
2158
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002159 /* iopoll may have completed current req */
2160 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002161 list_move_tail(&req->inflight_entry, &done);
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002162
Jens Axboedef596e2019-01-09 08:59:42 -07002163 if (ret && spin)
2164 spin = false;
2165 ret = 0;
2166 }
2167
2168 if (!list_empty(&done))
2169 io_iopoll_complete(ctx, nr_events, &done);
2170
2171 return ret;
2172}
2173
2174/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08002175 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07002176 * non-spinning poll check - we'll still enter the driver poll loop, but only
2177 * as a non-spinning completion check.
2178 */
2179static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
2180 long min)
2181{
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002182 while (!list_empty(&ctx->iopoll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07002183 int ret;
2184
2185 ret = io_do_iopoll(ctx, nr_events, min);
2186 if (ret < 0)
2187 return ret;
Pavel Begunkoveba0a4d2020-07-06 17:59:30 +03002188 if (*nr_events >= min)
Jens Axboedef596e2019-01-09 08:59:42 -07002189 return 0;
2190 }
2191
2192 return 1;
2193}
2194
2195/*
2196 * We can't just wait for polled events to come to us, we have to actively
2197 * find and complete them.
2198 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002199static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002200{
2201 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2202 return;
2203
2204 mutex_lock(&ctx->uring_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002205 while (!list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002206 unsigned int nr_events = 0;
2207
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002208 io_do_iopoll(ctx, &nr_events, 0);
Jens Axboe08f54392019-08-21 22:19:11 -06002209
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002210 /* let it sleep and repeat later if can't complete a request */
2211 if (nr_events == 0)
2212 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002213 /*
2214 * Ensure we allow local-to-the-cpu processing to take place,
2215 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002216 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002217 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002218 if (need_resched()) {
2219 mutex_unlock(&ctx->uring_lock);
2220 cond_resched();
2221 mutex_lock(&ctx->uring_lock);
2222 }
Jens Axboedef596e2019-01-09 08:59:42 -07002223 }
2224 mutex_unlock(&ctx->uring_lock);
2225}
2226
Pavel Begunkov7668b922020-07-07 16:36:21 +03002227static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002228{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002229 unsigned int nr_events = 0;
Jens Axboe2b2ed972019-10-25 10:06:15 -06002230 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002231
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002232 /*
2233 * We disallow the app entering submit/complete with polling, but we
2234 * still need to lock the ring to prevent racing with polled issue
2235 * that got punted to a workqueue.
2236 */
2237 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002238 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002239 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06002240 * Don't enter poll loop if we already have events pending.
2241 * If we do, we can potentially be spinning for commands that
2242 * already triggered a CQE (eg in error).
2243 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07002244 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06002245 break;
2246
2247 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06002248 * If a submit got punted to a workqueue, we can have the
2249 * application entering polling for a command before it gets
2250 * issued. That app will hold the uring_lock for the duration
2251 * of the poll right here, so we need to take a breather every
2252 * now and then to ensure that the issue has a chance to add
2253 * the poll to the issued list. Otherwise we can spin here
2254 * forever, while the workqueue is stuck trying to acquire the
2255 * very same mutex.
2256 */
2257 if (!(++iters & 7)) {
2258 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002259 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002260 mutex_lock(&ctx->uring_lock);
2261 }
2262
Pavel Begunkov7668b922020-07-07 16:36:21 +03002263 ret = io_iopoll_getevents(ctx, &nr_events, min);
Jens Axboedef596e2019-01-09 08:59:42 -07002264 if (ret <= 0)
2265 break;
2266 ret = 0;
Pavel Begunkov7668b922020-07-07 16:36:21 +03002267 } while (min && !nr_events && !need_resched());
Jens Axboedef596e2019-01-09 08:59:42 -07002268
Jens Axboe500f9fb2019-08-19 12:15:59 -06002269 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002270 return ret;
2271}
2272
Jens Axboe491381ce2019-10-17 09:20:46 -06002273static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002274{
Jens Axboe491381ce2019-10-17 09:20:46 -06002275 /*
2276 * Tell lockdep we inherited freeze protection from submission
2277 * thread.
2278 */
2279 if (req->flags & REQ_F_ISREG) {
2280 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002281
Jens Axboe491381ce2019-10-17 09:20:46 -06002282 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002283 }
Jens Axboe491381ce2019-10-17 09:20:46 -06002284 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002285}
2286
Jens Axboea1d7c392020-06-22 11:09:46 -06002287static void io_complete_rw_common(struct kiocb *kiocb, long res,
2288 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002289{
Jens Axboe9adbd452019-12-20 08:45:55 -07002290 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002291 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002292
Jens Axboe491381ce2019-10-17 09:20:46 -06002293 if (kiocb->ki_flags & IOCB_WRITE)
2294 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002295
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002296 if (res != req->result)
2297 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002298 if (req->flags & REQ_F_BUFFER_SELECTED)
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002299 cflags = io_put_rw_kbuf(req);
Jens Axboea1d7c392020-06-22 11:09:46 -06002300 __io_req_complete(req, res, cflags, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002301}
2302
Jens Axboeb63534c2020-06-04 11:28:00 -06002303#ifdef CONFIG_BLOCK
2304static bool io_resubmit_prep(struct io_kiocb *req, int error)
2305{
2306 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2307 ssize_t ret = -ECANCELED;
2308 struct iov_iter iter;
2309 int rw;
2310
2311 if (error) {
2312 ret = error;
2313 goto end_req;
2314 }
2315
2316 switch (req->opcode) {
2317 case IORING_OP_READV:
2318 case IORING_OP_READ_FIXED:
2319 case IORING_OP_READ:
2320 rw = READ;
2321 break;
2322 case IORING_OP_WRITEV:
2323 case IORING_OP_WRITE_FIXED:
2324 case IORING_OP_WRITE:
2325 rw = WRITE;
2326 break;
2327 default:
2328 printk_once(KERN_WARNING "io_uring: bad opcode in resubmit %d\n",
2329 req->opcode);
2330 goto end_req;
2331 }
2332
Jens Axboe8f3d7492020-09-14 09:28:14 -06002333 if (!req->io) {
2334 ret = io_import_iovec(rw, req, &iovec, &iter, false);
2335 if (ret < 0)
2336 goto end_req;
2337 ret = io_setup_async_rw(req, iovec, inline_vecs, &iter, false);
2338 if (!ret)
2339 return true;
2340 kfree(iovec);
2341 } else {
Jens Axboeb63534c2020-06-04 11:28:00 -06002342 return true;
Jens Axboe8f3d7492020-09-14 09:28:14 -06002343 }
Jens Axboeb63534c2020-06-04 11:28:00 -06002344end_req:
Jens Axboeb63534c2020-06-04 11:28:00 -06002345 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06002346 io_req_complete(req, ret);
Jens Axboeb63534c2020-06-04 11:28:00 -06002347 return false;
2348}
Jens Axboeb63534c2020-06-04 11:28:00 -06002349#endif
2350
2351static bool io_rw_reissue(struct io_kiocb *req, long res)
2352{
2353#ifdef CONFIG_BLOCK
Jens Axboe355afae2020-09-02 09:30:31 -06002354 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboeb63534c2020-06-04 11:28:00 -06002355 int ret;
2356
Jens Axboe355afae2020-09-02 09:30:31 -06002357 if (!S_ISBLK(mode) && !S_ISREG(mode))
2358 return false;
Jens Axboeb63534c2020-06-04 11:28:00 -06002359 if ((res != -EAGAIN && res != -EOPNOTSUPP) || io_wq_current_is_worker())
2360 return false;
2361
Jens Axboefdee9462020-08-27 16:46:24 -06002362 ret = io_sq_thread_acquire_mm(req->ctx, req);
Jens Axboe6d816e02020-08-11 08:04:14 -06002363
Jens Axboefdee9462020-08-27 16:46:24 -06002364 if (io_resubmit_prep(req, ret)) {
2365 refcount_inc(&req->refs);
2366 io_queue_async_work(req);
Jens Axboeb63534c2020-06-04 11:28:00 -06002367 return true;
Jens Axboefdee9462020-08-27 16:46:24 -06002368 }
2369
Jens Axboeb63534c2020-06-04 11:28:00 -06002370#endif
2371 return false;
2372}
2373
Jens Axboea1d7c392020-06-22 11:09:46 -06002374static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2375 struct io_comp_state *cs)
2376{
2377 if (!io_rw_reissue(req, res))
2378 io_complete_rw_common(&req->rw.kiocb, res, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002379}
2380
2381static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2382{
Jens Axboe9adbd452019-12-20 08:45:55 -07002383 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002384
Jens Axboea1d7c392020-06-22 11:09:46 -06002385 __io_complete_rw(req, res, res2, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002386}
2387
Jens Axboedef596e2019-01-09 08:59:42 -07002388static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2389{
Jens Axboe9adbd452019-12-20 08:45:55 -07002390 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002391
Jens Axboe491381ce2019-10-17 09:20:46 -06002392 if (kiocb->ki_flags & IOCB_WRITE)
2393 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07002394
Xiaoguang Wang2d7d6792020-06-16 02:06:37 +08002395 if (res != -EAGAIN && res != req->result)
Jens Axboe4e88d6e2019-12-07 20:59:47 -07002396 req_set_fail_links(req);
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002397
2398 WRITE_ONCE(req->result, res);
2399 /* order with io_poll_complete() checking ->result */
Pavel Begunkovcd664b02020-06-25 12:37:10 +03002400 smp_wmb();
2401 WRITE_ONCE(req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002402}
2403
2404/*
2405 * After the iocb has been issued, it's safe to be found on the poll list.
2406 * Adding the kiocb to the list AFTER submission ensures that we don't
2407 * find it from a io_iopoll_getevents() thread before the issuer is done
2408 * accessing the kiocb cookie.
2409 */
2410static void io_iopoll_req_issued(struct io_kiocb *req)
2411{
2412 struct io_ring_ctx *ctx = req->ctx;
2413
2414 /*
2415 * Track whether we have multiple files in our lists. This will impact
2416 * how we do polling eventually, not spinning if we're on potentially
2417 * different devices.
2418 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002419 if (list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002420 ctx->poll_multi_file = false;
2421 } else if (!ctx->poll_multi_file) {
2422 struct io_kiocb *list_req;
2423
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002424 list_req = list_first_entry(&ctx->iopoll_list, struct io_kiocb,
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002425 inflight_entry);
Jens Axboe9adbd452019-12-20 08:45:55 -07002426 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07002427 ctx->poll_multi_file = true;
2428 }
2429
2430 /*
2431 * For fast devices, IO may have already completed. If it has, add
2432 * it to the front so we find it first.
2433 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002434 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002435 list_add(&req->inflight_entry, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002436 else
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002437 list_add_tail(&req->inflight_entry, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002438
2439 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2440 wq_has_sleeper(&ctx->sqo_wait))
2441 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002442}
2443
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002444static void __io_state_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002445{
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002446 if (state->has_refs)
2447 fput_many(state->file, state->has_refs);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002448 state->file = NULL;
2449}
2450
2451static inline void io_state_file_put(struct io_submit_state *state)
2452{
2453 if (state->file)
2454 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002455}
2456
2457/*
2458 * Get as many references to a file as we have IOs left in this submission,
2459 * assuming most submissions are for one file, or at least that each file
2460 * has more than one submission.
2461 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002462static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002463{
2464 if (!state)
2465 return fget(fd);
2466
2467 if (state->file) {
2468 if (state->fd == fd) {
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002469 state->has_refs--;
Jens Axboe9a56a232019-01-09 09:06:50 -07002470 state->ios_left--;
2471 return state->file;
2472 }
Pavel Begunkov9f13c352020-05-17 14:13:41 +03002473 __io_state_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002474 }
2475 state->file = fget_many(fd, state->ios_left);
2476 if (!state->file)
2477 return NULL;
2478
2479 state->fd = fd;
Jens Axboe9a56a232019-01-09 09:06:50 -07002480 state->ios_left--;
Pavel Begunkov06ef3602020-07-16 23:28:33 +03002481 state->has_refs = state->ios_left;
Jens Axboe9a56a232019-01-09 09:06:50 -07002482 return state->file;
2483}
2484
Jens Axboe4503b762020-06-01 10:00:27 -06002485static bool io_bdev_nowait(struct block_device *bdev)
2486{
2487#ifdef CONFIG_BLOCK
2488 return !bdev || queue_is_mq(bdev_get_queue(bdev));
2489#else
2490 return true;
2491#endif
2492}
2493
Jens Axboe2b188cc2019-01-07 10:46:33 -07002494/*
2495 * If we tracked the file through the SCM inflight mechanism, we could support
2496 * any file. For now, just ensure that anything potentially problematic is done
2497 * inline.
2498 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002499static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002500{
2501 umode_t mode = file_inode(file)->i_mode;
2502
Jens Axboe4503b762020-06-01 10:00:27 -06002503 if (S_ISBLK(mode)) {
2504 if (io_bdev_nowait(file->f_inode->i_bdev))
2505 return true;
2506 return false;
2507 }
2508 if (S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002509 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002510 if (S_ISREG(mode)) {
2511 if (io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
2512 file->f_op != &io_uring_fops)
2513 return true;
2514 return false;
2515 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002516
Jens Axboec5b85622020-06-09 19:23:05 -06002517 /* any ->read/write should understand O_NONBLOCK */
2518 if (file->f_flags & O_NONBLOCK)
2519 return true;
2520
Jens Axboeaf197f52020-04-28 13:15:06 -06002521 if (!(file->f_mode & FMODE_NOWAIT))
2522 return false;
2523
2524 if (rw == READ)
2525 return file->f_op->read_iter != NULL;
2526
2527 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002528}
2529
Jens Axboe3529d8c2019-12-19 18:24:38 -07002530static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2531 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002532{
Jens Axboedef596e2019-01-09 08:59:42 -07002533 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002534 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002535 unsigned ioprio;
2536 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002537
Jens Axboe491381ce2019-10-17 09:20:46 -06002538 if (S_ISREG(file_inode(req->file)->i_mode))
2539 req->flags |= REQ_F_ISREG;
2540
Jens Axboe2b188cc2019-01-07 10:46:33 -07002541 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002542 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2543 req->flags |= REQ_F_CUR_POS;
2544 kiocb->ki_pos = req->file->f_pos;
2545 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002546 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002547 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2548 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2549 if (unlikely(ret))
2550 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002551
2552 ioprio = READ_ONCE(sqe->ioprio);
2553 if (ioprio) {
2554 ret = ioprio_check_cap(ioprio);
2555 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002556 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002557
2558 kiocb->ki_ioprio = ioprio;
2559 } else
2560 kiocb->ki_ioprio = get_current_ioprio();
2561
Stefan Bühler8449eed2019-04-27 20:34:19 +02002562 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboec5b85622020-06-09 19:23:05 -06002563 if (kiocb->ki_flags & IOCB_NOWAIT)
Stefan Bühler8449eed2019-04-27 20:34:19 +02002564 req->flags |= REQ_F_NOWAIT;
2565
2566 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002567 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002568
Jens Axboedef596e2019-01-09 08:59:42 -07002569 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002570 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2571 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002572 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002573
Jens Axboedef596e2019-01-09 08:59:42 -07002574 kiocb->ki_flags |= IOCB_HIPRI;
2575 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002576 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002577 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002578 if (kiocb->ki_flags & IOCB_HIPRI)
2579 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002580 kiocb->ki_complete = io_complete_rw;
2581 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002582
Jens Axboe3529d8c2019-12-19 18:24:38 -07002583 req->rw.addr = READ_ONCE(sqe->addr);
2584 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002585 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002586 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002587}
2588
2589static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2590{
2591 switch (ret) {
2592 case -EIOCBQUEUED:
2593 break;
2594 case -ERESTARTSYS:
2595 case -ERESTARTNOINTR:
2596 case -ERESTARTNOHAND:
2597 case -ERESTART_RESTARTBLOCK:
2598 /*
2599 * We can't just restart the syscall, since previously
2600 * submitted sqes may already be in progress. Just fail this
2601 * IO with EINTR.
2602 */
2603 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002604 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002605 default:
2606 kiocb->ki_complete(kiocb, ret, 0);
2607 }
2608}
2609
Jens Axboea1d7c392020-06-22 11:09:46 -06002610static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
2611 struct io_comp_state *cs)
Jens Axboeba816ad2019-09-28 11:36:45 -06002612{
Jens Axboeba042912019-12-25 16:33:42 -07002613 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2614
Jens Axboe227c0c92020-08-13 11:51:40 -06002615 /* add previously done IO, if any */
2616 if (req->io && req->io->rw.bytes_done > 0) {
2617 if (ret < 0)
2618 ret = req->io->rw.bytes_done;
2619 else
2620 ret += req->io->rw.bytes_done;
2621 }
2622
Jens Axboeba042912019-12-25 16:33:42 -07002623 if (req->flags & REQ_F_CUR_POS)
2624 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002625 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboea1d7c392020-06-22 11:09:46 -06002626 __io_complete_rw(req, ret, 0, cs);
Jens Axboeba816ad2019-09-28 11:36:45 -06002627 else
2628 io_rw_done(kiocb, ret);
2629}
2630
Jens Axboe9adbd452019-12-20 08:45:55 -07002631static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002632 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002633{
Jens Axboe9adbd452019-12-20 08:45:55 -07002634 struct io_ring_ctx *ctx = req->ctx;
2635 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002636 struct io_mapped_ubuf *imu;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002637 u16 index, buf_index;
Jens Axboeedafcce2019-01-09 09:16:05 -07002638 size_t offset;
2639 u64 buf_addr;
2640
2641 /* attempt to use fixed buffers without having provided iovecs */
2642 if (unlikely(!ctx->user_bufs))
2643 return -EFAULT;
2644
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002645 buf_index = req->buf_index;
Jens Axboeedafcce2019-01-09 09:16:05 -07002646 if (unlikely(buf_index >= ctx->nr_user_bufs))
2647 return -EFAULT;
2648
2649 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2650 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002651 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002652
2653 /* overflow */
2654 if (buf_addr + len < buf_addr)
2655 return -EFAULT;
2656 /* not inside the mapped region */
2657 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2658 return -EFAULT;
2659
2660 /*
2661 * May not be a start of buffer, set size appropriately
2662 * and advance us to the beginning.
2663 */
2664 offset = buf_addr - imu->ubuf;
2665 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002666
2667 if (offset) {
2668 /*
2669 * Don't use iov_iter_advance() here, as it's really slow for
2670 * using the latter parts of a big fixed buffer - it iterates
2671 * over each segment manually. We can cheat a bit here, because
2672 * we know that:
2673 *
2674 * 1) it's a BVEC iter, we set it up
2675 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2676 * first and last bvec
2677 *
2678 * So just find our index, and adjust the iterator afterwards.
2679 * If the offset is within the first bvec (or the whole first
2680 * bvec, just use iov_iter_advance(). This makes it easier
2681 * since we can just skip the first segment, which may not
2682 * be PAGE_SIZE aligned.
2683 */
2684 const struct bio_vec *bvec = imu->bvec;
2685
2686 if (offset <= bvec->bv_len) {
2687 iov_iter_advance(iter, offset);
2688 } else {
2689 unsigned long seg_skip;
2690
2691 /* skip first vec */
2692 offset -= bvec->bv_len;
2693 seg_skip = 1 + (offset >> PAGE_SHIFT);
2694
2695 iter->bvec = bvec + seg_skip;
2696 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002697 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002698 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002699 }
2700 }
2701
Jens Axboe5e559562019-11-13 16:12:46 -07002702 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002703}
2704
Jens Axboebcda7ba2020-02-23 16:42:51 -07002705static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2706{
2707 if (needs_lock)
2708 mutex_unlock(&ctx->uring_lock);
2709}
2710
2711static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2712{
2713 /*
2714 * "Normal" inline submissions always hold the uring_lock, since we
2715 * grab it from the system call. Same is true for the SQPOLL offload.
2716 * The only exception is when we've detached the request and issue it
2717 * from an async worker thread, grab the lock for that case.
2718 */
2719 if (needs_lock)
2720 mutex_lock(&ctx->uring_lock);
2721}
2722
2723static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2724 int bgid, struct io_buffer *kbuf,
2725 bool needs_lock)
2726{
2727 struct io_buffer *head;
2728
2729 if (req->flags & REQ_F_BUFFER_SELECTED)
2730 return kbuf;
2731
2732 io_ring_submit_lock(req->ctx, needs_lock);
2733
2734 lockdep_assert_held(&req->ctx->uring_lock);
2735
2736 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2737 if (head) {
2738 if (!list_empty(&head->list)) {
2739 kbuf = list_last_entry(&head->list, struct io_buffer,
2740 list);
2741 list_del(&kbuf->list);
2742 } else {
2743 kbuf = head;
2744 idr_remove(&req->ctx->io_buffer_idr, bgid);
2745 }
2746 if (*len > kbuf->len)
2747 *len = kbuf->len;
2748 } else {
2749 kbuf = ERR_PTR(-ENOBUFS);
2750 }
2751
2752 io_ring_submit_unlock(req->ctx, needs_lock);
2753
2754 return kbuf;
2755}
2756
Jens Axboe4d954c22020-02-27 07:31:19 -07002757static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2758 bool needs_lock)
2759{
2760 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002761 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07002762
2763 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002764 bgid = req->buf_index;
Jens Axboe4d954c22020-02-27 07:31:19 -07002765 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2766 if (IS_ERR(kbuf))
2767 return kbuf;
2768 req->rw.addr = (u64) (unsigned long) kbuf;
2769 req->flags |= REQ_F_BUFFER_SELECTED;
2770 return u64_to_user_ptr(kbuf->addr);
2771}
2772
2773#ifdef CONFIG_COMPAT
2774static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2775 bool needs_lock)
2776{
2777 struct compat_iovec __user *uiov;
2778 compat_ssize_t clen;
2779 void __user *buf;
2780 ssize_t len;
2781
2782 uiov = u64_to_user_ptr(req->rw.addr);
2783 if (!access_ok(uiov, sizeof(*uiov)))
2784 return -EFAULT;
2785 if (__get_user(clen, &uiov->iov_len))
2786 return -EFAULT;
2787 if (clen < 0)
2788 return -EINVAL;
2789
2790 len = clen;
2791 buf = io_rw_buffer_select(req, &len, needs_lock);
2792 if (IS_ERR(buf))
2793 return PTR_ERR(buf);
2794 iov[0].iov_base = buf;
2795 iov[0].iov_len = (compat_size_t) len;
2796 return 0;
2797}
2798#endif
2799
2800static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2801 bool needs_lock)
2802{
2803 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2804 void __user *buf;
2805 ssize_t len;
2806
2807 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2808 return -EFAULT;
2809
2810 len = iov[0].iov_len;
2811 if (len < 0)
2812 return -EINVAL;
2813 buf = io_rw_buffer_select(req, &len, needs_lock);
2814 if (IS_ERR(buf))
2815 return PTR_ERR(buf);
2816 iov[0].iov_base = buf;
2817 iov[0].iov_len = len;
2818 return 0;
2819}
2820
2821static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2822 bool needs_lock)
2823{
Jens Axboedddb3e22020-06-04 11:27:01 -06002824 if (req->flags & REQ_F_BUFFER_SELECTED) {
2825 struct io_buffer *kbuf;
2826
2827 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2828 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
2829 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002830 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06002831 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002832 if (!req->rw.len)
2833 return 0;
2834 else if (req->rw.len > 1)
2835 return -EINVAL;
2836
2837#ifdef CONFIG_COMPAT
2838 if (req->ctx->compat)
2839 return io_compat_import(req, iov, needs_lock);
2840#endif
2841
2842 return __io_iov_buffer_select(req, iov, needs_lock);
2843}
2844
Jens Axboe8452fd02020-08-18 13:58:33 -07002845static ssize_t __io_import_iovec(int rw, struct io_kiocb *req,
2846 struct iovec **iovec, struct iov_iter *iter,
2847 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002848{
Jens Axboe9adbd452019-12-20 08:45:55 -07002849 void __user *buf = u64_to_user_ptr(req->rw.addr);
2850 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002851 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002852 u8 opcode;
2853
Jens Axboed625c6e2019-12-17 19:53:05 -07002854 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002855 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002856 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002857 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002858 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002859
Jens Axboebcda7ba2020-02-23 16:42:51 -07002860 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002861 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002862 return -EINVAL;
2863
Jens Axboe3a6820f2019-12-22 15:19:35 -07002864 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002865 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002866 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03002867 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07002868 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002869 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002870 }
2871
Jens Axboe3a6820f2019-12-22 15:19:35 -07002872 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2873 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002874 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002875 }
2876
Jens Axboe4d954c22020-02-27 07:31:19 -07002877 if (req->flags & REQ_F_BUFFER_SELECT) {
2878 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002879 if (!ret) {
2880 ret = (*iovec)->iov_len;
2881 iov_iter_init(iter, rw, *iovec, 1, ret);
2882 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002883 *iovec = NULL;
2884 return ret;
2885 }
2886
Jens Axboe2b188cc2019-01-07 10:46:33 -07002887#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002888 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002889 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2890 iovec, iter);
2891#endif
2892
2893 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2894}
2895
Jens Axboe8452fd02020-08-18 13:58:33 -07002896static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
2897 struct iovec **iovec, struct iov_iter *iter,
2898 bool needs_lock)
2899{
2900 if (!req->io)
2901 return __io_import_iovec(rw, req, iovec, iter, needs_lock);
2902 *iovec = NULL;
2903 return iov_iter_count(&req->io->rw.iter);
2904}
2905
Jens Axboe0fef9482020-08-26 10:36:20 -06002906static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
2907{
2908 return kiocb->ki_filp->f_mode & FMODE_STREAM ? NULL : &kiocb->ki_pos;
2909}
2910
Jens Axboe32960612019-09-23 11:05:34 -06002911/*
2912 * For files that don't have ->read_iter() and ->write_iter(), handle them
2913 * by looping over ->read() or ->write() manually.
2914 */
2915static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2916 struct iov_iter *iter)
2917{
2918 ssize_t ret = 0;
2919
2920 /*
2921 * Don't support polled IO through this interface, and we can't
2922 * support non-blocking either. For the latter, this just causes
2923 * the kiocb to be handled from an async context.
2924 */
2925 if (kiocb->ki_flags & IOCB_HIPRI)
2926 return -EOPNOTSUPP;
2927 if (kiocb->ki_flags & IOCB_NOWAIT)
2928 return -EAGAIN;
2929
2930 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002931 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002932 ssize_t nr;
2933
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002934 if (!iov_iter_is_bvec(iter)) {
2935 iovec = iov_iter_iovec(iter);
2936 } else {
2937 /* fixed buffers import bvec */
2938 iovec.iov_base = kmap(iter->bvec->bv_page)
2939 + iter->iov_offset;
2940 iovec.iov_len = min(iter->count,
2941 iter->bvec->bv_len - iter->iov_offset);
2942 }
2943
Jens Axboe32960612019-09-23 11:05:34 -06002944 if (rw == READ) {
2945 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06002946 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06002947 } else {
2948 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06002949 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06002950 }
2951
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002952 if (iov_iter_is_bvec(iter))
2953 kunmap(iter->bvec->bv_page);
2954
Jens Axboe32960612019-09-23 11:05:34 -06002955 if (nr < 0) {
2956 if (!ret)
2957 ret = nr;
2958 break;
2959 }
2960 ret += nr;
2961 if (nr != iovec.iov_len)
2962 break;
2963 iov_iter_advance(iter, nr);
2964 }
2965
2966 return ret;
2967}
2968
Jens Axboeff6165b2020-08-13 09:47:43 -06002969static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
2970 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07002971{
Pavel Begunkovb64e3442020-07-13 22:59:18 +03002972 struct io_async_rw *rw = &req->io->rw;
2973
Jens Axboeff6165b2020-08-13 09:47:43 -06002974 memcpy(&rw->iter, iter, sizeof(*iter));
2975 rw->free_iovec = NULL;
Jens Axboe227c0c92020-08-13 11:51:40 -06002976 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06002977 /* can only be fixed buffers, no need to do anything */
2978 if (iter->type == ITER_BVEC)
2979 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03002980 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06002981 unsigned iov_off = 0;
2982
2983 rw->iter.iov = rw->fast_iov;
2984 if (iter->iov != fast_iov) {
2985 iov_off = iter->iov - fast_iov;
2986 rw->iter.iov += iov_off;
2987 }
2988 if (rw->fast_iov != fast_iov)
2989 memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002990 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002991 } else {
Jens Axboeff6165b2020-08-13 09:47:43 -06002992 rw->free_iovec = iovec;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002993 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002994 }
2995}
2996
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002997static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2998{
2999 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
3000 return req->io == NULL;
3001}
3002
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003003static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07003004{
Jens Axboed3656342019-12-18 09:50:26 -07003005 if (!io_op_defs[req->opcode].async_ctx)
3006 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003007
3008 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003009}
3010
Jens Axboeff6165b2020-08-13 09:47:43 -06003011static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3012 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06003013 struct iov_iter *iter, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003014{
Jens Axboe227c0c92020-08-13 11:51:40 -06003015 if (!force && !io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07003016 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07003017 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003018 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07003019 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003020
Jens Axboeff6165b2020-08-13 09:47:43 -06003021 io_req_map_rw(req, iovec, fast_iov, iter);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003022 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003023 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003024}
3025
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003026static inline int io_rw_prep_async(struct io_kiocb *req, int rw,
3027 bool force_nonblock)
3028{
Jens Axboeff6165b2020-08-13 09:47:43 -06003029 struct io_async_rw *iorw = &req->io->rw;
Jens Axboec183edf2020-09-04 22:36:52 -06003030 struct iovec *iov;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003031 ssize_t ret;
3032
Jens Axboec183edf2020-09-04 22:36:52 -06003033 iorw->iter.iov = iov = iorw->fast_iov;
3034 ret = __io_import_iovec(rw, req, &iov, &iorw->iter, !force_nonblock);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003035 if (unlikely(ret < 0))
3036 return ret;
3037
Jens Axboec183edf2020-09-04 22:36:52 -06003038 iorw->iter.iov = iov;
Jens Axboeff6165b2020-08-13 09:47:43 -06003039 io_req_map_rw(req, iorw->iter.iov, iorw->fast_iov, &iorw->iter);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003040 return 0;
3041}
3042
Jens Axboe3529d8c2019-12-19 18:24:38 -07003043static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3044 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07003045{
3046 ssize_t ret;
3047
Jens Axboe3529d8c2019-12-19 18:24:38 -07003048 ret = io_prep_rw(req, sqe, force_nonblock);
3049 if (ret)
3050 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003051
Jens Axboe3529d8c2019-12-19 18:24:38 -07003052 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3053 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003054
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003055 /* either don't need iovec imported or already have it */
3056 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003057 return 0;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003058 return io_rw_prep_async(req, READ, force_nonblock);
Jens Axboef67676d2019-12-02 11:03:47 -07003059}
3060
Jens Axboec1dd91d2020-08-03 16:43:59 -06003061/*
3062 * This is our waitqueue callback handler, registered through lock_page_async()
3063 * when we initially tried to do the IO with the iocb armed our waitqueue.
3064 * This gets called when the page is unlocked, and we generally expect that to
3065 * happen when the page IO is completed and the page is now uptodate. This will
3066 * queue a task_work based retry of the operation, attempting to copy the data
3067 * again. If the latter fails because the page was NOT uptodate, then we will
3068 * do a thread based blocking retry of the operation. That's the unexpected
3069 * slow path.
3070 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003071static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3072 int sync, void *arg)
3073{
3074 struct wait_page_queue *wpq;
3075 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003076 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003077 int ret;
3078
3079 wpq = container_of(wait, struct wait_page_queue, wait);
3080
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003081 if (!wake_page_match(wpq, key))
3082 return 0;
3083
Hao Xuc8d317a2020-09-29 20:00:45 +08003084 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003085 list_del_init(&wait->entry);
3086
Pavel Begunkove7375122020-07-12 20:42:04 +03003087 init_task_work(&req->task_work, io_req_task_submit);
Jens Axboe6d816e02020-08-11 08:04:14 -06003088 percpu_ref_get(&req->ctx->refs);
3089
Jens Axboebcf5a062020-05-22 09:24:42 -06003090 /* submit ref gets dropped, acquire a new one */
3091 refcount_inc(&req->refs);
Jens Axboefd7d6de2020-08-23 11:00:37 -06003092 ret = io_req_task_work_add(req, &req->task_work, true);
Jens Axboebcf5a062020-05-22 09:24:42 -06003093 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06003094 struct task_struct *tsk;
3095
Jens Axboebcf5a062020-05-22 09:24:42 -06003096 /* queue just for cancelation */
Pavel Begunkove7375122020-07-12 20:42:04 +03003097 init_task_work(&req->task_work, io_req_task_cancel);
Jens Axboebcf5a062020-05-22 09:24:42 -06003098 tsk = io_wq_get_task(req->ctx->io_wq);
Pavel Begunkove7375122020-07-12 20:42:04 +03003099 task_work_add(tsk, &req->task_work, 0);
Jens Axboec2c4c832020-07-01 15:37:11 -06003100 wake_up_process(tsk);
Jens Axboebcf5a062020-05-22 09:24:42 -06003101 }
Jens Axboebcf5a062020-05-22 09:24:42 -06003102 return 1;
3103}
3104
Jens Axboec1dd91d2020-08-03 16:43:59 -06003105/*
3106 * This controls whether a given IO request should be armed for async page
3107 * based retry. If we return false here, the request is handed to the async
3108 * worker threads for retry. If we're doing buffered reads on a regular file,
3109 * we prepare a private wait_page_queue entry and retry the operation. This
3110 * will either succeed because the page is now uptodate and unlocked, or it
3111 * will register a callback when the page is unlocked at IO completion. Through
3112 * that callback, io_uring uses task_work to setup a retry of the operation.
3113 * That retry will attempt the buffered read again. The retry will generally
3114 * succeed, or in rare cases where it fails, we then fall back to using the
3115 * async worker threads for a blocking retry.
3116 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003117static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003118{
Jens Axboe3b2a4432020-08-16 10:58:43 -07003119 struct wait_page_queue *wait = &req->io->rw.wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003120 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003121
3122 /* never retry for NOWAIT, we just complete with -EAGAIN */
3123 if (req->flags & REQ_F_NOWAIT)
3124 return false;
3125
Jens Axboe227c0c92020-08-13 11:51:40 -06003126 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003127 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003128 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003129
Jens Axboebcf5a062020-05-22 09:24:42 -06003130 /*
3131 * just use poll if we can, and don't attempt if the fs doesn't
3132 * support callback based unlocks
3133 */
3134 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3135 return false;
3136
Jens Axboe3b2a4432020-08-16 10:58:43 -07003137 wait->wait.func = io_async_buf_func;
3138 wait->wait.private = req;
3139 wait->wait.flags = 0;
3140 INIT_LIST_HEAD(&wait->wait.entry);
3141 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003142 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003143 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003144 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003145}
3146
3147static int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
3148{
3149 if (req->file->f_op->read_iter)
3150 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003151 else if (req->file->f_op->read)
3152 return loop_rw_iter(READ, req->file, &req->rw.kiocb, iter);
3153 else
3154 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003155}
3156
Jens Axboea1d7c392020-06-22 11:09:46 -06003157static int io_read(struct io_kiocb *req, bool force_nonblock,
3158 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003159{
3160 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003161 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003162 struct iov_iter __iter, *iter = &__iter;
Jens Axboe227c0c92020-08-13 11:51:40 -06003163 ssize_t io_size, ret, ret2;
Jens Axboe31b51512019-01-18 22:56:34 -07003164 size_t iov_count;
Jens Axboef5cac8b2020-09-14 09:30:38 -06003165 bool no_async;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003166
Jens Axboeff6165b2020-08-13 09:47:43 -06003167 if (req->io)
3168 iter = &req->io->rw.iter;
3169
3170 ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07003171 if (ret < 0)
3172 return ret;
Jens Axboeeefdf302020-08-27 16:40:19 -06003173 iov_count = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003174 io_size = ret;
3175 req->result = io_size;
Jens Axboe227c0c92020-08-13 11:51:40 -06003176 ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003177
Jens Axboefd6c2e42019-12-18 12:19:41 -07003178 /* Ensure we clear previously set non-block flag */
3179 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003180 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003181
Pavel Begunkov24c74672020-06-21 13:09:51 +03003182 /* If the file doesn't support async, just async punt */
Jens Axboef5cac8b2020-09-14 09:30:38 -06003183 no_async = force_nonblock && !io_file_supports_async(req->file, READ);
3184 if (no_async)
Jens Axboef67676d2019-12-02 11:03:47 -07003185 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003186
Jens Axboe0fef9482020-08-26 10:36:20 -06003187 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), iov_count);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003188 if (unlikely(ret))
3189 goto out_free;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003190
Jens Axboe227c0c92020-08-13 11:51:40 -06003191 ret = io_iter_do_read(req, iter);
Jens Axboe32960612019-09-23 11:05:34 -06003192
Jens Axboe227c0c92020-08-13 11:51:40 -06003193 if (!ret) {
3194 goto done;
3195 } else if (ret == -EIOCBQUEUED) {
3196 ret = 0;
3197 goto out_free;
3198 } else if (ret == -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003199 /* IOPOLL retry should happen for io-wq threads */
3200 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003201 goto done;
Jens Axboe355afae2020-09-02 09:30:31 -06003202 /* no retry on NONBLOCK marked file */
3203 if (req->file->f_flags & O_NONBLOCK)
3204 goto done;
Jens Axboe84216312020-08-24 11:45:26 -06003205 /* some cases will consume bytes even on error returns */
3206 iov_iter_revert(iter, iov_count - iov_iter_count(iter));
Jens Axboef38c7e32020-09-25 15:23:43 -06003207 ret = 0;
3208 goto copy_iov;
Jens Axboe227c0c92020-08-13 11:51:40 -06003209 } else if (ret < 0) {
Jens Axboe00d23d52020-08-25 12:59:22 -06003210 /* make sure -ERESTARTSYS -> -EINTR is done */
3211 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003212 }
3213
3214 /* read it all, or we did blocking attempt. no retry. */
Jens Axboef91daf52020-08-15 15:58:42 -07003215 if (!iov_iter_count(iter) || !force_nonblock ||
3216 (req->file->f_flags & O_NONBLOCK))
Jens Axboe227c0c92020-08-13 11:51:40 -06003217 goto done;
3218
3219 io_size -= ret;
3220copy_iov:
3221 ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
3222 if (ret2) {
3223 ret = ret2;
3224 goto out_free;
3225 }
Jens Axboef5cac8b2020-09-14 09:30:38 -06003226 if (no_async)
3227 return -EAGAIN;
Jens Axboe227c0c92020-08-13 11:51:40 -06003228 /* it's copied and will be cleaned with ->io */
3229 iovec = NULL;
3230 /* now use our persistent iterator, if we aren't already */
3231 iter = &req->io->rw.iter;
3232retry:
3233 req->io->rw.bytes_done += ret;
3234 /* if we can retry, do so with the callbacks armed */
3235 if (!io_rw_should_retry(req)) {
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003236 kiocb->ki_flags &= ~IOCB_WAITQ;
3237 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003238 }
Jens Axboe227c0c92020-08-13 11:51:40 -06003239
3240 /*
3241 * Now retry read with the IOCB_WAITQ parts set in the iocb. If we
3242 * get -EIOCBQUEUED, then we'll get a notification when the desired
3243 * page gets unlocked. We can also get a partial read here, and if we
3244 * do, then just retry at the new offset.
3245 */
3246 ret = io_iter_do_read(req, iter);
3247 if (ret == -EIOCBQUEUED) {
3248 ret = 0;
3249 goto out_free;
3250 } else if (ret > 0 && ret < io_size) {
3251 /* we got some bytes, but not all. retry. */
3252 goto retry;
3253 }
3254done:
3255 kiocb_done(kiocb, ret, cs);
3256 ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003257out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003258 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003259 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003260 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003261 return ret;
3262}
3263
Jens Axboe3529d8c2019-12-19 18:24:38 -07003264static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3265 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07003266{
3267 ssize_t ret;
3268
Jens Axboe3529d8c2019-12-19 18:24:38 -07003269 ret = io_prep_rw(req, sqe, force_nonblock);
3270 if (ret)
3271 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07003272
Jens Axboe3529d8c2019-12-19 18:24:38 -07003273 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3274 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07003275
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003276 /* either don't need iovec imported or already have it */
3277 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003278 return 0;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003279 return io_rw_prep_async(req, WRITE, force_nonblock);
Jens Axboef67676d2019-12-02 11:03:47 -07003280}
3281
Jens Axboea1d7c392020-06-22 11:09:46 -06003282static int io_write(struct io_kiocb *req, bool force_nonblock,
3283 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003284{
3285 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003286 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003287 struct iov_iter __iter, *iter = &__iter;
Jens Axboe31b51512019-01-18 22:56:34 -07003288 size_t iov_count;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003289 ssize_t ret, ret2, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003290
Jens Axboeff6165b2020-08-13 09:47:43 -06003291 if (req->io)
3292 iter = &req->io->rw.iter;
3293
3294 ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07003295 if (ret < 0)
3296 return ret;
Jens Axboeeefdf302020-08-27 16:40:19 -06003297 iov_count = iov_iter_count(iter);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003298 io_size = ret;
3299 req->result = io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003300
Jens Axboefd6c2e42019-12-18 12:19:41 -07003301 /* Ensure we clear previously set non-block flag */
3302 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07003303 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003304
Pavel Begunkov24c74672020-06-21 13:09:51 +03003305 /* If the file doesn't support async, just async punt */
Jens Axboeaf197f52020-04-28 13:15:06 -06003306 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003307 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003308
Jens Axboe10d59342019-12-09 20:16:22 -07003309 /* file path doesn't support NOWAIT for non-direct_IO */
3310 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3311 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003312 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003313
Jens Axboe0fef9482020-08-26 10:36:20 -06003314 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), iov_count);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003315 if (unlikely(ret))
3316 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003317
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003318 /*
3319 * Open-code file_start_write here to grab freeze protection,
3320 * which will be released by another thread in
3321 * io_complete_rw(). Fool lockdep by telling it the lock got
3322 * released so that it doesn't complain about the held lock when
3323 * we return to userspace.
3324 */
3325 if (req->flags & REQ_F_ISREG) {
3326 __sb_start_write(file_inode(req->file)->i_sb,
3327 SB_FREEZE_WRITE, true);
3328 __sb_writers_release(file_inode(req->file)->i_sb,
3329 SB_FREEZE_WRITE);
3330 }
3331 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003332
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003333 if (req->file->f_op->write_iter)
Jens Axboeff6165b2020-08-13 09:47:43 -06003334 ret2 = call_write_iter(req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003335 else if (req->file->f_op->write)
Jens Axboeff6165b2020-08-13 09:47:43 -06003336 ret2 = loop_rw_iter(WRITE, req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003337 else
3338 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003339
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003340 /*
3341 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3342 * retry them without IOCB_NOWAIT.
3343 */
3344 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3345 ret2 = -EAGAIN;
Jens Axboe355afae2020-09-02 09:30:31 -06003346 /* no retry on NONBLOCK marked file */
3347 if (ret2 == -EAGAIN && (req->file->f_flags & O_NONBLOCK))
3348 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003349 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003350 /* IOPOLL retry should happen for io-wq threads */
3351 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3352 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003353done:
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003354 kiocb_done(kiocb, ret2, cs);
3355 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003356copy_iov:
Jens Axboe84216312020-08-24 11:45:26 -06003357 /* some cases will consume bytes even on error returns */
3358 iov_iter_revert(iter, iov_count - iov_iter_count(iter));
Jens Axboe227c0c92020-08-13 11:51:40 -06003359 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
Jens Axboeff6165b2020-08-13 09:47:43 -06003360 if (!ret)
3361 return -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003362 }
Jens Axboe31b51512019-01-18 22:56:34 -07003363out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003364 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003365 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003366 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003367 return ret;
3368}
3369
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003370static int __io_splice_prep(struct io_kiocb *req,
3371 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003372{
3373 struct io_splice* sp = &req->splice;
3374 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
3375 int ret;
3376
3377 if (req->flags & REQ_F_NEED_CLEANUP)
3378 return 0;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003379 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3380 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003381
3382 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003383 sp->len = READ_ONCE(sqe->len);
3384 sp->flags = READ_ONCE(sqe->splice_flags);
3385
3386 if (unlikely(sp->flags & ~valid_flags))
3387 return -EINVAL;
3388
3389 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
3390 (sp->flags & SPLICE_F_FD_IN_FIXED));
3391 if (ret)
3392 return ret;
3393 req->flags |= REQ_F_NEED_CLEANUP;
3394
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003395 if (!S_ISREG(file_inode(sp->file_in)->i_mode)) {
3396 /*
3397 * Splice operation will be punted aync, and here need to
3398 * modify io_wq_work.flags, so initialize io_wq_work firstly.
3399 */
3400 io_req_init_async(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003401 req->work.flags |= IO_WQ_WORK_UNBOUND;
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003402 }
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003403
3404 return 0;
3405}
3406
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003407static int io_tee_prep(struct io_kiocb *req,
3408 const struct io_uring_sqe *sqe)
3409{
3410 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3411 return -EINVAL;
3412 return __io_splice_prep(req, sqe);
3413}
3414
3415static int io_tee(struct io_kiocb *req, bool force_nonblock)
3416{
3417 struct io_splice *sp = &req->splice;
3418 struct file *in = sp->file_in;
3419 struct file *out = sp->file_out;
3420 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3421 long ret = 0;
3422
3423 if (force_nonblock)
3424 return -EAGAIN;
3425 if (sp->len)
3426 ret = do_tee(in, out, sp->len, flags);
3427
3428 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3429 req->flags &= ~REQ_F_NEED_CLEANUP;
3430
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003431 if (ret != sp->len)
3432 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003433 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003434 return 0;
3435}
3436
3437static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3438{
3439 struct io_splice* sp = &req->splice;
3440
3441 sp->off_in = READ_ONCE(sqe->splice_off_in);
3442 sp->off_out = READ_ONCE(sqe->off);
3443 return __io_splice_prep(req, sqe);
3444}
3445
Pavel Begunkov014db002020-03-03 21:33:12 +03003446static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003447{
3448 struct io_splice *sp = &req->splice;
3449 struct file *in = sp->file_in;
3450 struct file *out = sp->file_out;
3451 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3452 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003453 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003454
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03003455 if (force_nonblock)
3456 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003457
3458 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
3459 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003460
Jens Axboe948a7742020-05-17 14:21:38 -06003461 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03003462 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003463
3464 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3465 req->flags &= ~REQ_F_NEED_CLEANUP;
3466
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003467 if (ret != sp->len)
3468 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003469 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003470 return 0;
3471}
3472
Jens Axboe2b188cc2019-01-07 10:46:33 -07003473/*
3474 * IORING_OP_NOP just posts a completion event, nothing else.
3475 */
Jens Axboe229a7b62020-06-22 10:13:11 -06003476static int io_nop(struct io_kiocb *req, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003477{
3478 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003479
Jens Axboedef596e2019-01-09 08:59:42 -07003480 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3481 return -EINVAL;
3482
Jens Axboe229a7b62020-06-22 10:13:11 -06003483 __io_req_complete(req, 0, 0, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003484 return 0;
3485}
3486
Jens Axboe3529d8c2019-12-19 18:24:38 -07003487static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003488{
Jens Axboe6b063142019-01-10 22:13:58 -07003489 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003490
Jens Axboe09bb8392019-03-13 12:39:28 -06003491 if (!req->file)
3492 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003493
Jens Axboe6b063142019-01-10 22:13:58 -07003494 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07003495 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07003496 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003497 return -EINVAL;
3498
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003499 req->sync.flags = READ_ONCE(sqe->fsync_flags);
3500 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
3501 return -EINVAL;
3502
3503 req->sync.off = READ_ONCE(sqe->off);
3504 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003505 return 0;
3506}
3507
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003508static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Jens Axboe78912932020-01-14 22:09:06 -07003509{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003510 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003511 int ret;
3512
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003513 /* fsync always requires a blocking context */
3514 if (force_nonblock)
3515 return -EAGAIN;
3516
Jens Axboe9adbd452019-12-20 08:45:55 -07003517 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003518 end > 0 ? end : LLONG_MAX,
3519 req->sync.flags & IORING_FSYNC_DATASYNC);
3520 if (ret < 0)
3521 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003522 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07003523 return 0;
3524}
3525
Jens Axboed63d1b52019-12-10 10:38:56 -07003526static int io_fallocate_prep(struct io_kiocb *req,
3527 const struct io_uring_sqe *sqe)
3528{
3529 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
3530 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003531 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3532 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07003533
3534 req->sync.off = READ_ONCE(sqe->off);
3535 req->sync.len = READ_ONCE(sqe->addr);
3536 req->sync.mode = READ_ONCE(sqe->len);
3537 return 0;
3538}
3539
Pavel Begunkov014db002020-03-03 21:33:12 +03003540static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07003541{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003542 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07003543
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003544 /* fallocate always requiring blocking context */
3545 if (force_nonblock)
3546 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003547 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
3548 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03003549 if (ret < 0)
3550 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003551 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07003552 return 0;
3553}
3554
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003555static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003556{
Jens Axboef8748882020-01-08 17:47:02 -07003557 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003558 int ret;
3559
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003560 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07003561 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003562 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07003563 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003564
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003565 /* open.how should be already initialised */
3566 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06003567 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003568
Pavel Begunkov25e72d12020-06-03 18:03:23 +03003569 req->open.dfd = READ_ONCE(sqe->fd);
3570 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07003571 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003572 if (IS_ERR(req->open.filename)) {
3573 ret = PTR_ERR(req->open.filename);
3574 req->open.filename = NULL;
3575 return ret;
3576 }
Jens Axboe4022e7a2020-03-19 19:23:18 -06003577 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003578 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003579 return 0;
3580}
3581
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003582static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3583{
3584 u64 flags, mode;
3585
Jens Axboe4eb8dde2020-09-18 19:36:24 -06003586 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3587 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003588 if (req->flags & REQ_F_NEED_CLEANUP)
3589 return 0;
3590 mode = READ_ONCE(sqe->len);
3591 flags = READ_ONCE(sqe->open_flags);
3592 req->open.how = build_open_how(flags, mode);
3593 return __io_openat_prep(req, sqe);
3594}
3595
Jens Axboecebdb982020-01-08 17:59:24 -07003596static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3597{
3598 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07003599 size_t len;
3600 int ret;
3601
Jens Axboe4eb8dde2020-09-18 19:36:24 -06003602 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3603 return -EINVAL;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003604 if (req->flags & REQ_F_NEED_CLEANUP)
3605 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07003606 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3607 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07003608 if (len < OPEN_HOW_SIZE_VER0)
3609 return -EINVAL;
3610
3611 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
3612 len);
3613 if (ret)
3614 return ret;
3615
Pavel Begunkovec65fea2020-06-03 18:03:24 +03003616 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07003617}
3618
Pavel Begunkov014db002020-03-03 21:33:12 +03003619static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003620{
3621 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003622 struct file *file;
3623 int ret;
3624
Jens Axboef86cd202020-01-29 13:46:44 -07003625 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003626 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003627
Jens Axboecebdb982020-01-08 17:59:24 -07003628 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003629 if (ret)
3630 goto err;
3631
Jens Axboe4022e7a2020-03-19 19:23:18 -06003632 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003633 if (ret < 0)
3634 goto err;
3635
3636 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3637 if (IS_ERR(file)) {
3638 put_unused_fd(ret);
3639 ret = PTR_ERR(file);
3640 } else {
3641 fsnotify_open(file);
3642 fd_install(ret, file);
3643 }
3644err:
3645 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003646 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003647 if (ret < 0)
3648 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003649 io_req_complete(req, ret);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003650 return 0;
3651}
3652
Pavel Begunkov014db002020-03-03 21:33:12 +03003653static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003654{
Pavel Begunkov014db002020-03-03 21:33:12 +03003655 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003656}
3657
Jens Axboe067524e2020-03-02 16:32:28 -07003658static int io_remove_buffers_prep(struct io_kiocb *req,
3659 const struct io_uring_sqe *sqe)
3660{
3661 struct io_provide_buf *p = &req->pbuf;
3662 u64 tmp;
3663
3664 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3665 return -EINVAL;
3666
3667 tmp = READ_ONCE(sqe->fd);
3668 if (!tmp || tmp > USHRT_MAX)
3669 return -EINVAL;
3670
3671 memset(p, 0, sizeof(*p));
3672 p->nbufs = tmp;
3673 p->bgid = READ_ONCE(sqe->buf_group);
3674 return 0;
3675}
3676
3677static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3678 int bgid, unsigned nbufs)
3679{
3680 unsigned i = 0;
3681
3682 /* shouldn't happen */
3683 if (!nbufs)
3684 return 0;
3685
3686 /* the head kbuf is the list itself */
3687 while (!list_empty(&buf->list)) {
3688 struct io_buffer *nxt;
3689
3690 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3691 list_del(&nxt->list);
3692 kfree(nxt);
3693 if (++i == nbufs)
3694 return i;
3695 }
3696 i++;
3697 kfree(buf);
3698 idr_remove(&ctx->io_buffer_idr, bgid);
3699
3700 return i;
3701}
3702
Jens Axboe229a7b62020-06-22 10:13:11 -06003703static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock,
3704 struct io_comp_state *cs)
Jens Axboe067524e2020-03-02 16:32:28 -07003705{
3706 struct io_provide_buf *p = &req->pbuf;
3707 struct io_ring_ctx *ctx = req->ctx;
3708 struct io_buffer *head;
3709 int ret = 0;
3710
3711 io_ring_submit_lock(ctx, !force_nonblock);
3712
3713 lockdep_assert_held(&ctx->uring_lock);
3714
3715 ret = -ENOENT;
3716 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3717 if (head)
3718 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3719
3720 io_ring_submit_lock(ctx, !force_nonblock);
3721 if (ret < 0)
3722 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06003723 __io_req_complete(req, ret, 0, cs);
Jens Axboe067524e2020-03-02 16:32:28 -07003724 return 0;
3725}
3726
Jens Axboeddf0322d2020-02-23 16:41:33 -07003727static int io_provide_buffers_prep(struct io_kiocb *req,
3728 const struct io_uring_sqe *sqe)
3729{
3730 struct io_provide_buf *p = &req->pbuf;
3731 u64 tmp;
3732
3733 if (sqe->ioprio || sqe->rw_flags)
3734 return -EINVAL;
3735
3736 tmp = READ_ONCE(sqe->fd);
3737 if (!tmp || tmp > USHRT_MAX)
3738 return -E2BIG;
3739 p->nbufs = tmp;
3740 p->addr = READ_ONCE(sqe->addr);
3741 p->len = READ_ONCE(sqe->len);
3742
Bijan Mottahedehefe68c12020-06-04 18:01:52 -07003743 if (!access_ok(u64_to_user_ptr(p->addr), (p->len * p->nbufs)))
Jens Axboeddf0322d2020-02-23 16:41:33 -07003744 return -EFAULT;
3745
3746 p->bgid = READ_ONCE(sqe->buf_group);
3747 tmp = READ_ONCE(sqe->off);
3748 if (tmp > USHRT_MAX)
3749 return -E2BIG;
3750 p->bid = tmp;
3751 return 0;
3752}
3753
3754static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3755{
3756 struct io_buffer *buf;
3757 u64 addr = pbuf->addr;
3758 int i, bid = pbuf->bid;
3759
3760 for (i = 0; i < pbuf->nbufs; i++) {
3761 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3762 if (!buf)
3763 break;
3764
3765 buf->addr = addr;
3766 buf->len = pbuf->len;
3767 buf->bid = bid;
3768 addr += pbuf->len;
3769 bid++;
3770 if (!*head) {
3771 INIT_LIST_HEAD(&buf->list);
3772 *head = buf;
3773 } else {
3774 list_add_tail(&buf->list, &(*head)->list);
3775 }
3776 }
3777
3778 return i ? i : -ENOMEM;
3779}
3780
Jens Axboe229a7b62020-06-22 10:13:11 -06003781static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock,
3782 struct io_comp_state *cs)
Jens Axboeddf0322d2020-02-23 16:41:33 -07003783{
3784 struct io_provide_buf *p = &req->pbuf;
3785 struct io_ring_ctx *ctx = req->ctx;
3786 struct io_buffer *head, *list;
3787 int ret = 0;
3788
3789 io_ring_submit_lock(ctx, !force_nonblock);
3790
3791 lockdep_assert_held(&ctx->uring_lock);
3792
3793 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3794
3795 ret = io_add_buffers(p, &head);
3796 if (ret < 0)
3797 goto out;
3798
3799 if (!list) {
3800 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3801 GFP_KERNEL);
3802 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003803 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003804 goto out;
3805 }
3806 }
3807out:
3808 io_ring_submit_unlock(ctx, !force_nonblock);
3809 if (ret < 0)
3810 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06003811 __io_req_complete(req, ret, 0, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003812 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003813}
3814
Jens Axboe3e4827b2020-01-08 15:18:09 -07003815static int io_epoll_ctl_prep(struct io_kiocb *req,
3816 const struct io_uring_sqe *sqe)
3817{
3818#if defined(CONFIG_EPOLL)
3819 if (sqe->ioprio || sqe->buf_index)
3820 return -EINVAL;
Jens Axboe6ca56f82020-09-18 16:51:19 -06003821 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003822 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07003823
3824 req->epoll.epfd = READ_ONCE(sqe->fd);
3825 req->epoll.op = READ_ONCE(sqe->len);
3826 req->epoll.fd = READ_ONCE(sqe->off);
3827
3828 if (ep_op_has_event(req->epoll.op)) {
3829 struct epoll_event __user *ev;
3830
3831 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3832 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3833 return -EFAULT;
3834 }
3835
3836 return 0;
3837#else
3838 return -EOPNOTSUPP;
3839#endif
3840}
3841
Jens Axboe229a7b62020-06-22 10:13:11 -06003842static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock,
3843 struct io_comp_state *cs)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003844{
3845#if defined(CONFIG_EPOLL)
3846 struct io_epoll *ie = &req->epoll;
3847 int ret;
3848
3849 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3850 if (force_nonblock && ret == -EAGAIN)
3851 return -EAGAIN;
3852
3853 if (ret < 0)
3854 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06003855 __io_req_complete(req, ret, 0, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003856 return 0;
3857#else
3858 return -EOPNOTSUPP;
3859#endif
3860}
3861
Jens Axboec1ca7572019-12-25 22:18:28 -07003862static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3863{
3864#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3865 if (sqe->ioprio || sqe->buf_index || sqe->off)
3866 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003867 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3868 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07003869
3870 req->madvise.addr = READ_ONCE(sqe->addr);
3871 req->madvise.len = READ_ONCE(sqe->len);
3872 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3873 return 0;
3874#else
3875 return -EOPNOTSUPP;
3876#endif
3877}
3878
Pavel Begunkov014db002020-03-03 21:33:12 +03003879static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003880{
3881#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3882 struct io_madvise *ma = &req->madvise;
3883 int ret;
3884
3885 if (force_nonblock)
3886 return -EAGAIN;
3887
3888 ret = do_madvise(ma->addr, ma->len, ma->advice);
3889 if (ret < 0)
3890 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003891 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07003892 return 0;
3893#else
3894 return -EOPNOTSUPP;
3895#endif
3896}
3897
Jens Axboe4840e412019-12-25 22:03:45 -07003898static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3899{
3900 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3901 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003902 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3903 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07003904
3905 req->fadvise.offset = READ_ONCE(sqe->off);
3906 req->fadvise.len = READ_ONCE(sqe->len);
3907 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3908 return 0;
3909}
3910
Pavel Begunkov014db002020-03-03 21:33:12 +03003911static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003912{
3913 struct io_fadvise *fa = &req->fadvise;
3914 int ret;
3915
Jens Axboe3e694262020-02-01 09:22:49 -07003916 if (force_nonblock) {
3917 switch (fa->advice) {
3918 case POSIX_FADV_NORMAL:
3919 case POSIX_FADV_RANDOM:
3920 case POSIX_FADV_SEQUENTIAL:
3921 break;
3922 default:
3923 return -EAGAIN;
3924 }
3925 }
Jens Axboe4840e412019-12-25 22:03:45 -07003926
3927 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3928 if (ret < 0)
3929 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003930 io_req_complete(req, ret);
Jens Axboe4840e412019-12-25 22:03:45 -07003931 return 0;
3932}
3933
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003934static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3935{
Jens Axboe6ca56f82020-09-18 16:51:19 -06003936 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003937 return -EINVAL;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003938 if (sqe->ioprio || sqe->buf_index)
3939 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003940 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003941 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003942
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07003943 req->statx.dfd = READ_ONCE(sqe->fd);
3944 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07003945 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07003946 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3947 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003948
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003949 return 0;
3950}
3951
Pavel Begunkov014db002020-03-03 21:33:12 +03003952static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003953{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07003954 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003955 int ret;
3956
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003957 if (force_nonblock) {
3958 /* only need file table for an actual valid fd */
3959 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
3960 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003961 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003962 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003963
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07003964 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
3965 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003966
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003967 if (ret < 0)
3968 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003969 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003970 return 0;
3971}
3972
Jens Axboeb5dba592019-12-11 14:02:38 -07003973static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3974{
3975 /*
3976 * If we queue this for async, it must not be cancellable. That would
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003977 * leave the 'file' in an undeterminate state, and here need to modify
3978 * io_wq_work.flags, so initialize io_wq_work firstly.
Jens Axboeb5dba592019-12-11 14:02:38 -07003979 */
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08003980 io_req_init_async(req);
Jens Axboeb5dba592019-12-11 14:02:38 -07003981 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3982
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003983 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3984 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07003985 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3986 sqe->rw_flags || sqe->buf_index)
3987 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003988 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003989 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003990
3991 req->close.fd = READ_ONCE(sqe->fd);
Jens Axboe0f212202020-09-13 13:09:39 -06003992 if ((req->file && req->file->f_op == &io_uring_fops))
Jens Axboefd2206e2020-06-02 16:40:47 -06003993 return -EBADF;
3994
Pavel Begunkov3af73b22020-06-08 21:08:17 +03003995 req->close.put_file = NULL;
Jens Axboeb5dba592019-12-11 14:02:38 -07003996 return 0;
3997}
3998
Jens Axboe229a7b62020-06-22 10:13:11 -06003999static int io_close(struct io_kiocb *req, bool force_nonblock,
4000 struct io_comp_state *cs)
Jens Axboeb5dba592019-12-11 14:02:38 -07004001{
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004002 struct io_close *close = &req->close;
Jens Axboeb5dba592019-12-11 14:02:38 -07004003 int ret;
4004
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004005 /* might be already done during nonblock submission */
4006 if (!close->put_file) {
4007 ret = __close_fd_get_file(close->fd, &close->put_file);
4008 if (ret < 0)
4009 return (ret == -ENOENT) ? -EBADF : ret;
4010 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004011
4012 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004013 if (close->put_file->f_op->flush && force_nonblock) {
Pavel Begunkov24c74672020-06-21 13:09:51 +03004014 /* was never set, but play safe */
4015 req->flags &= ~REQ_F_NOWAIT;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004016 /* avoid grabbing files - we don't need the files */
Pavel Begunkov24c74672020-06-21 13:09:51 +03004017 req->flags |= REQ_F_NO_FILE_TABLE;
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004018 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004019 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004020
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004021 /* No ->flush() or already async, safely close from here */
4022 ret = filp_close(close->put_file, req->work.files);
4023 if (ret < 0)
4024 req_set_fail_links(req);
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004025 fput(close->put_file);
4026 close->put_file = NULL;
Jens Axboe229a7b62020-06-22 10:13:11 -06004027 __io_req_complete(req, ret, 0, cs);
Jens Axboe1a417f42020-01-31 17:16:48 -07004028 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004029}
4030
Jens Axboe3529d8c2019-12-19 18:24:38 -07004031static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004032{
4033 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004034
4035 if (!req->file)
4036 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004037
4038 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4039 return -EINVAL;
4040 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
4041 return -EINVAL;
4042
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004043 req->sync.off = READ_ONCE(sqe->off);
4044 req->sync.len = READ_ONCE(sqe->len);
4045 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004046 return 0;
4047}
4048
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004049static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004050{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004051 int ret;
4052
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004053 /* sync_file_range always requires a blocking context */
4054 if (force_nonblock)
4055 return -EAGAIN;
4056
Jens Axboe9adbd452019-12-20 08:45:55 -07004057 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004058 req->sync.flags);
4059 if (ret < 0)
4060 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004061 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004062 return 0;
4063}
4064
YueHaibing469956e2020-03-04 15:53:52 +08004065#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004066static int io_setup_async_msg(struct io_kiocb *req,
4067 struct io_async_msghdr *kmsg)
4068{
4069 if (req->io)
4070 return -EAGAIN;
4071 if (io_alloc_async_ctx(req)) {
4072 if (kmsg->iov != kmsg->fast_iov)
4073 kfree(kmsg->iov);
4074 return -ENOMEM;
4075 }
4076 req->flags |= REQ_F_NEED_CLEANUP;
4077 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
4078 return -EAGAIN;
4079}
4080
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004081static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4082 struct io_async_msghdr *iomsg)
4083{
4084 iomsg->iov = iomsg->fast_iov;
4085 iomsg->msg.msg_name = &iomsg->addr;
4086 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
4087 req->sr_msg.msg_flags, &iomsg->iov);
4088}
4089
Jens Axboe3529d8c2019-12-19 18:24:38 -07004090static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004091{
Jens Axboee47293f2019-12-20 08:58:21 -07004092 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004093 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004094 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004095
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004096 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4097 return -EINVAL;
4098
Jens Axboee47293f2019-12-20 08:58:21 -07004099 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004100 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004101 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004102
Jens Axboed8768362020-02-27 14:17:49 -07004103#ifdef CONFIG_COMPAT
4104 if (req->ctx->compat)
4105 sr->msg_flags |= MSG_CMSG_COMPAT;
4106#endif
4107
Jens Axboefddafac2020-01-04 20:19:44 -07004108 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07004109 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03004110 /* iovec is already imported */
4111 if (req->flags & REQ_F_NEED_CLEANUP)
4112 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004113
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004114 ret = io_sendmsg_copy_hdr(req, &io->msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004115 if (!ret)
4116 req->flags |= REQ_F_NEED_CLEANUP;
4117 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004118}
4119
Jens Axboe229a7b62020-06-22 10:13:11 -06004120static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4121 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004122{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004123 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004124 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004125 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004126 int ret;
4127
Jens Axboe03b12302019-12-02 18:50:25 -07004128 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004129 if (unlikely(!sock))
4130 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004131
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004132 if (req->io) {
4133 kmsg = &req->io->msg;
4134 kmsg->msg.msg_name = &req->io->msg.addr;
4135 /* if iov is set, it's allocated already */
4136 if (!kmsg->iov)
4137 kmsg->iov = kmsg->fast_iov;
4138 kmsg->msg.msg_iter.iov = kmsg->iov;
4139 } else {
4140 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004141 if (ret)
4142 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004143 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004144 }
4145
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004146 flags = req->sr_msg.msg_flags;
4147 if (flags & MSG_DONTWAIT)
4148 req->flags |= REQ_F_NOWAIT;
4149 else if (force_nonblock)
4150 flags |= MSG_DONTWAIT;
4151
4152 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
4153 if (force_nonblock && ret == -EAGAIN)
4154 return io_setup_async_msg(req, kmsg);
4155 if (ret == -ERESTARTSYS)
4156 ret = -EINTR;
4157
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004158 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe03b12302019-12-02 18:50:25 -07004159 kfree(kmsg->iov);
4160 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07004161 if (ret < 0)
4162 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004163 __io_req_complete(req, ret, 0, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004164 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004165}
4166
Jens Axboe229a7b62020-06-22 10:13:11 -06004167static int io_send(struct io_kiocb *req, bool force_nonblock,
4168 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004169{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004170 struct io_sr_msg *sr = &req->sr_msg;
4171 struct msghdr msg;
4172 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004173 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004174 unsigned flags;
Jens Axboe03b12302019-12-02 18:50:25 -07004175 int ret;
4176
4177 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004178 if (unlikely(!sock))
4179 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004180
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004181 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4182 if (unlikely(ret))
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004183 return ret;;
Jens Axboe03b12302019-12-02 18:50:25 -07004184
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004185 msg.msg_name = NULL;
4186 msg.msg_control = NULL;
4187 msg.msg_controllen = 0;
4188 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004189
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004190 flags = req->sr_msg.msg_flags;
4191 if (flags & MSG_DONTWAIT)
4192 req->flags |= REQ_F_NOWAIT;
4193 else if (force_nonblock)
4194 flags |= MSG_DONTWAIT;
Jens Axboe03b12302019-12-02 18:50:25 -07004195
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004196 msg.msg_flags = flags;
4197 ret = sock_sendmsg(sock, &msg);
4198 if (force_nonblock && ret == -EAGAIN)
4199 return -EAGAIN;
4200 if (ret == -ERESTARTSYS)
4201 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004202
Jens Axboe03b12302019-12-02 18:50:25 -07004203 if (ret < 0)
4204 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004205 __io_req_complete(req, ret, 0, cs);
Jens Axboe03b12302019-12-02 18:50:25 -07004206 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004207}
4208
Pavel Begunkov1400e692020-07-12 20:41:05 +03004209static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4210 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004211{
4212 struct io_sr_msg *sr = &req->sr_msg;
4213 struct iovec __user *uiov;
4214 size_t iov_len;
4215 int ret;
4216
Pavel Begunkov1400e692020-07-12 20:41:05 +03004217 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4218 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004219 if (ret)
4220 return ret;
4221
4222 if (req->flags & REQ_F_BUFFER_SELECT) {
4223 if (iov_len > 1)
4224 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004225 if (copy_from_user(iomsg->iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004226 return -EFAULT;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004227 sr->len = iomsg->iov[0].iov_len;
4228 iov_iter_init(&iomsg->msg.msg_iter, READ, iomsg->iov, 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004229 sr->len);
Pavel Begunkov1400e692020-07-12 20:41:05 +03004230 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004231 } else {
4232 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004233 &iomsg->iov, &iomsg->msg.msg_iter);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004234 if (ret > 0)
4235 ret = 0;
4236 }
4237
4238 return ret;
4239}
4240
4241#ifdef CONFIG_COMPAT
4242static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004243 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004244{
4245 struct compat_msghdr __user *msg_compat;
4246 struct io_sr_msg *sr = &req->sr_msg;
4247 struct compat_iovec __user *uiov;
4248 compat_uptr_t ptr;
4249 compat_size_t len;
4250 int ret;
4251
Pavel Begunkov270a5942020-07-12 20:41:04 +03004252 msg_compat = (struct compat_msghdr __user *) sr->umsg;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004253 ret = __get_compat_msghdr(&iomsg->msg, msg_compat, &iomsg->uaddr,
Jens Axboe52de1fe2020-02-27 10:15:42 -07004254 &ptr, &len);
4255 if (ret)
4256 return ret;
4257
4258 uiov = compat_ptr(ptr);
4259 if (req->flags & REQ_F_BUFFER_SELECT) {
4260 compat_ssize_t clen;
4261
4262 if (len > 1)
4263 return -EINVAL;
4264 if (!access_ok(uiov, sizeof(*uiov)))
4265 return -EFAULT;
4266 if (__get_user(clen, &uiov->iov_len))
4267 return -EFAULT;
4268 if (clen < 0)
4269 return -EINVAL;
Pavel Begunkov1400e692020-07-12 20:41:05 +03004270 sr->len = iomsg->iov[0].iov_len;
4271 iomsg->iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004272 } else {
4273 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004274 &iomsg->iov,
4275 &iomsg->msg.msg_iter);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004276 if (ret < 0)
4277 return ret;
4278 }
4279
4280 return 0;
4281}
Jens Axboe03b12302019-12-02 18:50:25 -07004282#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004283
Pavel Begunkov1400e692020-07-12 20:41:05 +03004284static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4285 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004286{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004287 iomsg->msg.msg_name = &iomsg->addr;
4288 iomsg->iov = iomsg->fast_iov;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004289
4290#ifdef CONFIG_COMPAT
4291 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004292 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004293#endif
4294
Pavel Begunkov1400e692020-07-12 20:41:05 +03004295 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004296}
4297
Jens Axboebcda7ba2020-02-23 16:42:51 -07004298static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004299 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004300{
4301 struct io_sr_msg *sr = &req->sr_msg;
4302 struct io_buffer *kbuf;
4303
Jens Axboebcda7ba2020-02-23 16:42:51 -07004304 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4305 if (IS_ERR(kbuf))
4306 return kbuf;
4307
4308 sr->kbuf = kbuf;
4309 req->flags |= REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004310 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07004311}
4312
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004313static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4314{
4315 return io_put_kbuf(req, req->sr_msg.kbuf);
4316}
4317
Jens Axboe3529d8c2019-12-19 18:24:38 -07004318static int io_recvmsg_prep(struct io_kiocb *req,
4319 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07004320{
Jens Axboee47293f2019-12-20 08:58:21 -07004321 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004322 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004323 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004324
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004325 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4326 return -EINVAL;
4327
Jens Axboe3529d8c2019-12-19 18:24:38 -07004328 sr->msg_flags = READ_ONCE(sqe->msg_flags);
Pavel Begunkov270a5942020-07-12 20:41:04 +03004329 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004330 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004331 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07004332
Jens Axboed8768362020-02-27 14:17:49 -07004333#ifdef CONFIG_COMPAT
4334 if (req->ctx->compat)
4335 sr->msg_flags |= MSG_CMSG_COMPAT;
4336#endif
4337
Jens Axboefddafac2020-01-04 20:19:44 -07004338 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07004339 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03004340 /* iovec is already imported */
4341 if (req->flags & REQ_F_NEED_CLEANUP)
4342 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004343
Pavel Begunkov1400e692020-07-12 20:41:05 +03004344 ret = io_recvmsg_copy_hdr(req, &io->msg);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004345 if (!ret)
4346 req->flags |= REQ_F_NEED_CLEANUP;
4347 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004348}
4349
Jens Axboe229a7b62020-06-22 10:13:11 -06004350static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4351 struct io_comp_state *cs)
Jens Axboe03b12302019-12-02 18:50:25 -07004352{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004353 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004354 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004355 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004356 unsigned flags;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004357 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004358
Jens Axboe0fa03c62019-04-19 13:34:07 -06004359 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004360 if (unlikely(!sock))
4361 return ret;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004362
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004363 if (req->io) {
4364 kmsg = &req->io->msg;
4365 kmsg->msg.msg_name = &req->io->msg.addr;
4366 /* if iov is set, it's allocated already */
4367 if (!kmsg->iov)
4368 kmsg->iov = kmsg->fast_iov;
4369 kmsg->msg.msg_iter.iov = kmsg->iov;
4370 } else {
4371 ret = io_recvmsg_copy_hdr(req, &iomsg);
4372 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004373 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004374 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004375 }
4376
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004377 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004378 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004379 if (IS_ERR(kbuf))
4380 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004381 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
4382 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
4383 1, req->sr_msg.len);
4384 }
4385
4386 flags = req->sr_msg.msg_flags;
4387 if (flags & MSG_DONTWAIT)
4388 req->flags |= REQ_F_NOWAIT;
4389 else if (force_nonblock)
4390 flags |= MSG_DONTWAIT;
4391
4392 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4393 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004394 if (force_nonblock && ret == -EAGAIN)
4395 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004396 if (ret == -ERESTARTSYS)
4397 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004398
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004399 if (req->flags & REQ_F_BUFFER_SELECTED)
4400 cflags = io_put_recv_kbuf(req);
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004401 if (kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07004402 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004403 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004404 if (ret < 0)
4405 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004406 __io_req_complete(req, ret, cflags, cs);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004407 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004408}
4409
Jens Axboe229a7b62020-06-22 10:13:11 -06004410static int io_recv(struct io_kiocb *req, bool force_nonblock,
4411 struct io_comp_state *cs)
Jens Axboefddafac2020-01-04 20:19:44 -07004412{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004413 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004414 struct io_sr_msg *sr = &req->sr_msg;
4415 struct msghdr msg;
4416 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07004417 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004418 struct iovec iov;
4419 unsigned flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004420 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004421
Jens Axboefddafac2020-01-04 20:19:44 -07004422 sock = sock_from_file(req->file, &ret);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004423 if (unlikely(!sock))
4424 return ret;
Jens Axboefddafac2020-01-04 20:19:44 -07004425
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004426 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004427 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004428 if (IS_ERR(kbuf))
4429 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004430 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07004431 }
4432
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004433 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004434 if (unlikely(ret))
4435 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07004436
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004437 msg.msg_name = NULL;
4438 msg.msg_control = NULL;
4439 msg.msg_controllen = 0;
4440 msg.msg_namelen = 0;
4441 msg.msg_iocb = NULL;
4442 msg.msg_flags = 0;
4443
4444 flags = req->sr_msg.msg_flags;
4445 if (flags & MSG_DONTWAIT)
4446 req->flags |= REQ_F_NOWAIT;
4447 else if (force_nonblock)
4448 flags |= MSG_DONTWAIT;
4449
4450 ret = sock_recvmsg(sock, &msg, flags);
4451 if (force_nonblock && ret == -EAGAIN)
4452 return -EAGAIN;
4453 if (ret == -ERESTARTSYS)
4454 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03004455out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004456 if (req->flags & REQ_F_BUFFER_SELECTED)
4457 cflags = io_put_recv_kbuf(req);
Jens Axboefddafac2020-01-04 20:19:44 -07004458 if (ret < 0)
4459 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004460 __io_req_complete(req, ret, cflags, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07004461 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004462}
4463
Jens Axboe3529d8c2019-12-19 18:24:38 -07004464static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004465{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004466 struct io_accept *accept = &req->accept;
4467
Jens Axboe17f2fe32019-10-17 14:42:58 -06004468 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4469 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05004470 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004471 return -EINVAL;
4472
Jens Axboed55e5f52019-12-11 16:12:15 -07004473 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4474 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004475 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06004476 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004477 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004478}
Jens Axboe17f2fe32019-10-17 14:42:58 -06004479
Jens Axboe229a7b62020-06-22 10:13:11 -06004480static int io_accept(struct io_kiocb *req, bool force_nonblock,
4481 struct io_comp_state *cs)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004482{
4483 struct io_accept *accept = &req->accept;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004484 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004485 int ret;
4486
Jiufei Xuee697dee2020-06-10 13:41:59 +08004487 if (req->file->f_flags & O_NONBLOCK)
4488 req->flags |= REQ_F_NOWAIT;
4489
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004490 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06004491 accept->addr_len, accept->flags,
4492 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004493 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06004494 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004495 if (ret < 0) {
4496 if (ret == -ERESTARTSYS)
4497 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004498 req_set_fail_links(req);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004499 }
Jens Axboe229a7b62020-06-22 10:13:11 -06004500 __io_req_complete(req, ret, 0, cs);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004501 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004502}
4503
Jens Axboe3529d8c2019-12-19 18:24:38 -07004504static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004505{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004506 struct io_connect *conn = &req->connect;
4507 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07004508
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004509 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4510 return -EINVAL;
4511 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4512 return -EINVAL;
4513
Jens Axboe3529d8c2019-12-19 18:24:38 -07004514 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4515 conn->addr_len = READ_ONCE(sqe->addr2);
4516
4517 if (!io)
4518 return 0;
4519
4520 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004521 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004522}
4523
Jens Axboe229a7b62020-06-22 10:13:11 -06004524static int io_connect(struct io_kiocb *req, bool force_nonblock,
4525 struct io_comp_state *cs)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004526{
Jens Axboef499a022019-12-02 16:28:46 -07004527 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004528 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004529 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004530
Jens Axboef499a022019-12-02 16:28:46 -07004531 if (req->io) {
4532 io = req->io;
4533 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004534 ret = move_addr_to_kernel(req->connect.addr,
4535 req->connect.addr_len,
4536 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004537 if (ret)
4538 goto out;
4539 io = &__io;
4540 }
4541
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004542 file_flags = force_nonblock ? O_NONBLOCK : 0;
4543
4544 ret = __sys_connect_file(req->file, &io->connect.address,
4545 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004546 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004547 if (req->io)
4548 return -EAGAIN;
4549 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004550 ret = -ENOMEM;
4551 goto out;
4552 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004553 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004554 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004555 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004556 if (ret == -ERESTARTSYS)
4557 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004558out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004559 if (ret < 0)
4560 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06004561 __io_req_complete(req, ret, 0, cs);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004562 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004563}
YueHaibing469956e2020-03-04 15:53:52 +08004564#else /* !CONFIG_NET */
4565static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4566{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004567 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004568}
4569
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004570static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4571 struct io_comp_state *cs)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004572{
YueHaibing469956e2020-03-04 15:53:52 +08004573 return -EOPNOTSUPP;
4574}
4575
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004576static int io_send(struct io_kiocb *req, bool force_nonblock,
4577 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004578{
4579 return -EOPNOTSUPP;
4580}
4581
4582static int io_recvmsg_prep(struct io_kiocb *req,
4583 const struct io_uring_sqe *sqe)
4584{
4585 return -EOPNOTSUPP;
4586}
4587
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004588static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4589 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004590{
4591 return -EOPNOTSUPP;
4592}
4593
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004594static int io_recv(struct io_kiocb *req, bool force_nonblock,
4595 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004596{
4597 return -EOPNOTSUPP;
4598}
4599
4600static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4601{
4602 return -EOPNOTSUPP;
4603}
4604
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004605static int io_accept(struct io_kiocb *req, bool force_nonblock,
4606 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004607{
4608 return -EOPNOTSUPP;
4609}
4610
4611static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4612{
4613 return -EOPNOTSUPP;
4614}
4615
Randy Dunlap1e16c2f2020-06-26 16:32:50 -07004616static int io_connect(struct io_kiocb *req, bool force_nonblock,
4617 struct io_comp_state *cs)
YueHaibing469956e2020-03-04 15:53:52 +08004618{
4619 return -EOPNOTSUPP;
4620}
4621#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004622
Jens Axboed7718a92020-02-14 22:23:12 -07004623struct io_poll_table {
4624 struct poll_table_struct pt;
4625 struct io_kiocb *req;
4626 int error;
4627};
4628
Jens Axboed7718a92020-02-14 22:23:12 -07004629static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4630 __poll_t mask, task_work_func_t func)
4631{
Jens Axboefd7d6de2020-08-23 11:00:37 -06004632 bool twa_signal_ok;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004633 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004634
4635 /* for instances that support it check for an event match first: */
4636 if (mask && !(mask & poll->events))
4637 return 0;
4638
4639 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4640
4641 list_del_init(&poll->wait.entry);
4642
Jens Axboed7718a92020-02-14 22:23:12 -07004643 req->result = mask;
4644 init_task_work(&req->task_work, func);
Jens Axboe6d816e02020-08-11 08:04:14 -06004645 percpu_ref_get(&req->ctx->refs);
4646
Jens Axboed7718a92020-02-14 22:23:12 -07004647 /*
Jens Axboefd7d6de2020-08-23 11:00:37 -06004648 * If we using the signalfd wait_queue_head for this wakeup, then
4649 * it's not safe to use TWA_SIGNAL as we could be recursing on the
4650 * tsk->sighand->siglock on doing the wakeup. Should not be needed
4651 * either, as the normal wakeup will suffice.
4652 */
4653 twa_signal_ok = (poll->head != &req->task->sighand->signalfd_wqh);
4654
4655 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06004656 * If this fails, then the task is exiting. When a task exits, the
4657 * work gets canceled, so just cancel this request as well instead
4658 * of executing it. We can't safely execute it anyway, as we may not
4659 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07004660 */
Jens Axboefd7d6de2020-08-23 11:00:37 -06004661 ret = io_req_task_work_add(req, &req->task_work, twa_signal_ok);
Jens Axboeaa96bf82020-04-03 11:26:26 -06004662 if (unlikely(ret)) {
Jens Axboec2c4c832020-07-01 15:37:11 -06004663 struct task_struct *tsk;
4664
Jens Axboee3aabf92020-05-18 11:04:17 -06004665 WRITE_ONCE(poll->canceled, true);
Jens Axboeaa96bf82020-04-03 11:26:26 -06004666 tsk = io_wq_get_task(req->ctx->io_wq);
Jens Axboece593a62020-06-30 12:39:05 -06004667 task_work_add(tsk, &req->task_work, 0);
4668 wake_up_process(tsk);
Jens Axboeaa96bf82020-04-03 11:26:26 -06004669 }
Jens Axboed7718a92020-02-14 22:23:12 -07004670 return 1;
4671}
4672
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004673static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4674 __acquires(&req->ctx->completion_lock)
4675{
4676 struct io_ring_ctx *ctx = req->ctx;
4677
4678 if (!req->result && !READ_ONCE(poll->canceled)) {
4679 struct poll_table_struct pt = { ._key = poll->events };
4680
4681 req->result = vfs_poll(req->file, &pt) & poll->events;
4682 }
4683
4684 spin_lock_irq(&ctx->completion_lock);
4685 if (!req->result && !READ_ONCE(poll->canceled)) {
4686 add_wait_queue(poll->head, &poll->wait);
4687 return true;
4688 }
4689
4690 return false;
4691}
4692
Jens Axboed4e7cd32020-08-15 11:44:50 -07004693static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06004694{
Jens Axboed4e7cd32020-08-15 11:44:50 -07004695 /* pure poll stashes this in ->io, poll driven retry elsewhere */
4696 if (req->opcode == IORING_OP_POLL_ADD)
4697 return (struct io_poll_iocb *) req->io;
4698 return req->apoll->double_poll;
4699}
4700
4701static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
4702{
4703 if (req->opcode == IORING_OP_POLL_ADD)
4704 return &req->poll;
4705 return &req->apoll->poll;
4706}
4707
4708static void io_poll_remove_double(struct io_kiocb *req)
4709{
4710 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06004711
4712 lockdep_assert_held(&req->ctx->completion_lock);
4713
4714 if (poll && poll->head) {
4715 struct wait_queue_head *head = poll->head;
4716
4717 spin_lock(&head->lock);
4718 list_del_init(&poll->wait.entry);
4719 if (poll->wait.private)
4720 refcount_dec(&req->refs);
4721 poll->head = NULL;
4722 spin_unlock(&head->lock);
4723 }
4724}
4725
4726static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
4727{
4728 struct io_ring_ctx *ctx = req->ctx;
4729
Jens Axboed4e7cd32020-08-15 11:44:50 -07004730 io_poll_remove_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06004731 req->poll.done = true;
4732 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
4733 io_commit_cqring(ctx);
4734}
4735
4736static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
4737{
4738 struct io_ring_ctx *ctx = req->ctx;
4739
4740 if (io_poll_rewait(req, &req->poll)) {
4741 spin_unlock_irq(&ctx->completion_lock);
4742 return;
4743 }
4744
4745 hash_del(&req->hash_node);
4746 io_poll_complete(req, req->result, 0);
4747 req->flags |= REQ_F_COMP_LOCKED;
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03004748 *nxt = io_put_req_find_next(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06004749 spin_unlock_irq(&ctx->completion_lock);
4750
4751 io_cqring_ev_posted(ctx);
4752}
4753
4754static void io_poll_task_func(struct callback_head *cb)
4755{
4756 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
Jens Axboe6d816e02020-08-11 08:04:14 -06004757 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe18bceab2020-05-15 11:56:54 -06004758 struct io_kiocb *nxt = NULL;
4759
4760 io_poll_task_handler(req, &nxt);
Pavel Begunkovea1164e2020-06-30 15:20:41 +03004761 if (nxt)
4762 __io_req_task_submit(nxt);
Jens Axboe6d816e02020-08-11 08:04:14 -06004763 percpu_ref_put(&ctx->refs);
Jens Axboe18bceab2020-05-15 11:56:54 -06004764}
4765
4766static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
4767 int sync, void *key)
4768{
4769 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07004770 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06004771 __poll_t mask = key_to_poll(key);
4772
4773 /* for instances that support it check for an event match first: */
4774 if (mask && !(mask & poll->events))
4775 return 0;
4776
Jens Axboe8706e042020-09-28 08:38:54 -06004777 list_del_init(&wait->entry);
4778
Jens Axboe807abcb2020-07-17 17:09:27 -06004779 if (poll && poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06004780 bool done;
4781
Jens Axboe807abcb2020-07-17 17:09:27 -06004782 spin_lock(&poll->head->lock);
4783 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06004784 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06004785 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07004786 /* make sure double remove sees this as being gone */
4787 wait->private = NULL;
Jens Axboe807abcb2020-07-17 17:09:27 -06004788 spin_unlock(&poll->head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06004789 if (!done)
4790 __io_async_wake(req, poll, mask, io_poll_task_func);
4791 }
4792 refcount_dec(&req->refs);
4793 return 1;
4794}
4795
4796static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
4797 wait_queue_func_t wake_func)
4798{
4799 poll->head = NULL;
4800 poll->done = false;
4801 poll->canceled = false;
4802 poll->events = events;
4803 INIT_LIST_HEAD(&poll->wait.entry);
4804 init_waitqueue_func_entry(&poll->wait, wake_func);
4805}
4806
4807static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06004808 struct wait_queue_head *head,
4809 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06004810{
4811 struct io_kiocb *req = pt->req;
4812
4813 /*
4814 * If poll->head is already set, it's because the file being polled
4815 * uses multiple waitqueues for poll handling (eg one for read, one
4816 * for write). Setup a separate io_poll_iocb if this happens.
4817 */
4818 if (unlikely(poll->head)) {
4819 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06004820 if (*poll_ptr) {
Jens Axboe18bceab2020-05-15 11:56:54 -06004821 pt->error = -EINVAL;
4822 return;
4823 }
4824 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
4825 if (!poll) {
4826 pt->error = -ENOMEM;
4827 return;
4828 }
4829 io_init_poll_iocb(poll, req->poll.events, io_poll_double_wake);
4830 refcount_inc(&req->refs);
4831 poll->wait.private = req;
Jens Axboe807abcb2020-07-17 17:09:27 -06004832 *poll_ptr = poll;
Jens Axboe18bceab2020-05-15 11:56:54 -06004833 }
4834
4835 pt->error = 0;
4836 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08004837
4838 if (poll->events & EPOLLEXCLUSIVE)
4839 add_wait_queue_exclusive(head, &poll->wait);
4840 else
4841 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06004842}
4843
4844static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4845 struct poll_table_struct *p)
4846{
4847 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06004848 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06004849
Jens Axboe807abcb2020-07-17 17:09:27 -06004850 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06004851}
4852
Jens Axboed7718a92020-02-14 22:23:12 -07004853static void io_async_task_func(struct callback_head *cb)
4854{
4855 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4856 struct async_poll *apoll = req->apoll;
4857 struct io_ring_ctx *ctx = req->ctx;
4858
4859 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4860
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004861 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07004862 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe6d816e02020-08-11 08:04:14 -06004863 percpu_ref_put(&ctx->refs);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004864 return;
Jens Axboed7718a92020-02-14 22:23:12 -07004865 }
4866
Jens Axboe31067252020-05-17 17:43:31 -06004867 /* If req is still hashed, it cannot have been canceled. Don't check. */
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03004868 if (hash_hashed(&req->hash_node))
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004869 hash_del(&req->hash_node);
Jens Axboe2bae0472020-04-13 11:16:34 -06004870
Jens Axboed4e7cd32020-08-15 11:44:50 -07004871 io_poll_remove_double(req);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004872 spin_unlock_irq(&ctx->completion_lock);
4873
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03004874 if (!READ_ONCE(apoll->poll.canceled))
4875 __io_req_task_submit(req);
4876 else
4877 __io_req_task_cancel(req, -ECANCELED);
Dan Carpenteraa340842020-07-08 21:47:11 +03004878
Jens Axboe6d816e02020-08-11 08:04:14 -06004879 percpu_ref_put(&ctx->refs);
Jens Axboe807abcb2020-07-17 17:09:27 -06004880 kfree(apoll->double_poll);
Jens Axboe31067252020-05-17 17:43:31 -06004881 kfree(apoll);
Jens Axboed7718a92020-02-14 22:23:12 -07004882}
4883
4884static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4885 void *key)
4886{
4887 struct io_kiocb *req = wait->private;
4888 struct io_poll_iocb *poll = &req->apoll->poll;
4889
4890 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4891 key_to_poll(key));
4892
4893 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4894}
4895
4896static void io_poll_req_insert(struct io_kiocb *req)
4897{
4898 struct io_ring_ctx *ctx = req->ctx;
4899 struct hlist_head *list;
4900
4901 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4902 hlist_add_head(&req->hash_node, list);
4903}
4904
4905static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4906 struct io_poll_iocb *poll,
4907 struct io_poll_table *ipt, __poll_t mask,
4908 wait_queue_func_t wake_func)
4909 __acquires(&ctx->completion_lock)
4910{
4911 struct io_ring_ctx *ctx = req->ctx;
4912 bool cancel = false;
4913
Jens Axboe18bceab2020-05-15 11:56:54 -06004914 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03004915 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06004916 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07004917
4918 ipt->pt._key = mask;
4919 ipt->req = req;
4920 ipt->error = -EINVAL;
4921
Jens Axboed7718a92020-02-14 22:23:12 -07004922 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4923
4924 spin_lock_irq(&ctx->completion_lock);
4925 if (likely(poll->head)) {
4926 spin_lock(&poll->head->lock);
4927 if (unlikely(list_empty(&poll->wait.entry))) {
4928 if (ipt->error)
4929 cancel = true;
4930 ipt->error = 0;
4931 mask = 0;
4932 }
4933 if (mask || ipt->error)
4934 list_del_init(&poll->wait.entry);
4935 else if (cancel)
4936 WRITE_ONCE(poll->canceled, true);
4937 else if (!poll->done) /* actually waiting for an event */
4938 io_poll_req_insert(req);
4939 spin_unlock(&poll->head->lock);
4940 }
4941
4942 return mask;
4943}
4944
4945static bool io_arm_poll_handler(struct io_kiocb *req)
4946{
4947 const struct io_op_def *def = &io_op_defs[req->opcode];
4948 struct io_ring_ctx *ctx = req->ctx;
4949 struct async_poll *apoll;
4950 struct io_poll_table ipt;
4951 __poll_t mask, ret;
Jens Axboe9dab14b2020-08-25 12:27:50 -06004952 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07004953
4954 if (!req->file || !file_can_poll(req->file))
4955 return false;
Pavel Begunkov24c74672020-06-21 13:09:51 +03004956 if (req->flags & REQ_F_POLLED)
Jens Axboed7718a92020-02-14 22:23:12 -07004957 return false;
Jens Axboe9dab14b2020-08-25 12:27:50 -06004958 if (def->pollin)
4959 rw = READ;
4960 else if (def->pollout)
4961 rw = WRITE;
4962 else
4963 return false;
4964 /* if we can't nonblock try, then no point in arming a poll handler */
4965 if (!io_file_supports_async(req->file, rw))
Jens Axboed7718a92020-02-14 22:23:12 -07004966 return false;
4967
4968 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4969 if (unlikely(!apoll))
4970 return false;
Jens Axboe807abcb2020-07-17 17:09:27 -06004971 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004972
4973 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07004974 req->apoll = apoll;
4975 INIT_HLIST_NODE(&req->hash_node);
4976
Nathan Chancellor8755d972020-03-02 16:01:19 -07004977 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004978 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004979 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004980 if (def->pollout)
4981 mask |= POLLOUT | POLLWRNORM;
4982 mask |= POLLERR | POLLPRI;
4983
4984 ipt.pt._qproc = io_async_queue_proc;
4985
4986 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4987 io_async_wake);
Jens Axboea36da652020-08-11 09:50:19 -06004988 if (ret || ipt.error) {
Jens Axboed4e7cd32020-08-15 11:44:50 -07004989 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07004990 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe807abcb2020-07-17 17:09:27 -06004991 kfree(apoll->double_poll);
Jens Axboed7718a92020-02-14 22:23:12 -07004992 kfree(apoll);
4993 return false;
4994 }
4995 spin_unlock_irq(&ctx->completion_lock);
4996 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4997 apoll->poll.events);
4998 return true;
4999}
5000
5001static bool __io_poll_remove_one(struct io_kiocb *req,
5002 struct io_poll_iocb *poll)
5003{
Jens Axboeb41e9852020-02-17 09:52:41 -07005004 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005005
5006 spin_lock(&poll->head->lock);
5007 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005008 if (!list_empty(&poll->wait.entry)) {
5009 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005010 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005011 }
5012 spin_unlock(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005013 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005014 return do_complete;
5015}
5016
5017static bool io_poll_remove_one(struct io_kiocb *req)
5018{
5019 bool do_complete;
5020
Jens Axboed4e7cd32020-08-15 11:44:50 -07005021 io_poll_remove_double(req);
5022
Jens Axboed7718a92020-02-14 22:23:12 -07005023 if (req->opcode == IORING_OP_POLL_ADD) {
5024 do_complete = __io_poll_remove_one(req, &req->poll);
5025 } else {
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005026 struct async_poll *apoll = req->apoll;
5027
Jens Axboed7718a92020-02-14 22:23:12 -07005028 /* non-poll requests have submit ref still */
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005029 do_complete = __io_poll_remove_one(req, &apoll->poll);
5030 if (do_complete) {
Jens Axboed7718a92020-02-14 22:23:12 -07005031 io_put_req(req);
Jens Axboe807abcb2020-07-17 17:09:27 -06005032 kfree(apoll->double_poll);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005033 kfree(apoll);
5034 }
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08005035 }
5036
Jens Axboeb41e9852020-02-17 09:52:41 -07005037 if (do_complete) {
5038 io_cqring_fill_event(req, -ECANCELED);
5039 io_commit_cqring(req->ctx);
5040 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboef254ac02020-08-12 17:33:30 -06005041 req_set_fail_links(req);
Jens Axboeb41e9852020-02-17 09:52:41 -07005042 io_put_req(req);
5043 }
5044
5045 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005046}
5047
Jens Axboe76e1b642020-09-26 15:05:03 -06005048/*
5049 * Returns true if we found and killed one or more poll requests
5050 */
5051static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005052{
Jens Axboe78076bb2019-12-04 19:56:40 -07005053 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005054 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005055 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005056
5057 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005058 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5059 struct hlist_head *list;
5060
5061 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005062 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
5063 if (io_task_match(req, tsk))
5064 posted += io_poll_remove_one(req);
5065 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005066 }
5067 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005068
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005069 if (posted)
5070 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005071
5072 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005073}
5074
Jens Axboe47f46762019-11-09 17:43:02 -07005075static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
5076{
Jens Axboe78076bb2019-12-04 19:56:40 -07005077 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005078 struct io_kiocb *req;
5079
Jens Axboe78076bb2019-12-04 19:56:40 -07005080 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5081 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005082 if (sqe_addr != req->user_data)
5083 continue;
5084 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07005085 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07005086 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07005087 }
5088
5089 return -ENOENT;
5090}
5091
Jens Axboe3529d8c2019-12-19 18:24:38 -07005092static int io_poll_remove_prep(struct io_kiocb *req,
5093 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005094{
Jens Axboe221c5eb2019-01-17 09:41:58 -07005095 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5096 return -EINVAL;
5097 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
5098 sqe->poll_events)
5099 return -EINVAL;
5100
Jens Axboe0969e782019-12-17 18:40:57 -07005101 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07005102 return 0;
5103}
5104
5105/*
5106 * Find a running poll command that matches one specified in sqe->addr,
5107 * and remove it if found.
5108 */
5109static int io_poll_remove(struct io_kiocb *req)
5110{
5111 struct io_ring_ctx *ctx = req->ctx;
5112 u64 addr;
5113 int ret;
5114
Jens Axboe0969e782019-12-17 18:40:57 -07005115 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005116 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07005117 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005118 spin_unlock_irq(&ctx->completion_lock);
5119
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005120 if (ret < 0)
5121 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06005122 io_req_complete(req, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005123 return 0;
5124}
5125
Jens Axboe221c5eb2019-01-17 09:41:58 -07005126static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5127 void *key)
5128{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005129 struct io_kiocb *req = wait->private;
5130 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005131
Jens Axboed7718a92020-02-14 22:23:12 -07005132 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005133}
5134
Jens Axboe221c5eb2019-01-17 09:41:58 -07005135static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5136 struct poll_table_struct *p)
5137{
5138 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5139
Jens Axboe807abcb2020-07-17 17:09:27 -06005140 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->io);
Jens Axboeeac406c2019-11-14 12:09:58 -07005141}
5142
Jens Axboe3529d8c2019-12-19 18:24:38 -07005143static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005144{
5145 struct io_poll_iocb *poll = &req->poll;
Jiufei Xue5769a352020-06-17 17:53:55 +08005146 u32 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005147
5148 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5149 return -EINVAL;
5150 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
5151 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06005152 if (!poll->file)
5153 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005154
Jiufei Xue5769a352020-06-17 17:53:55 +08005155 events = READ_ONCE(sqe->poll32_events);
5156#ifdef __BIG_ENDIAN
5157 events = swahw32(events);
5158#endif
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005159 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP |
5160 (events & EPOLLEXCLUSIVE);
Jens Axboe0969e782019-12-17 18:40:57 -07005161 return 0;
5162}
5163
Pavel Begunkov014db002020-03-03 21:33:12 +03005164static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07005165{
5166 struct io_poll_iocb *poll = &req->poll;
5167 struct io_ring_ctx *ctx = req->ctx;
5168 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005169 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07005170
Jens Axboe78076bb2019-12-04 19:56:40 -07005171 INIT_HLIST_NODE(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005172 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005173
Jens Axboed7718a92020-02-14 22:23:12 -07005174 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5175 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005176
Jens Axboe8c838782019-03-12 15:48:16 -06005177 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005178 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005179 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06005180 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005181 spin_unlock_irq(&ctx->completion_lock);
5182
Jens Axboe8c838782019-03-12 15:48:16 -06005183 if (mask) {
5184 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03005185 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005186 }
Jens Axboe8c838782019-03-12 15:48:16 -06005187 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005188}
5189
Jens Axboe5262f562019-09-17 12:26:57 -06005190static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5191{
Jens Axboead8a48a2019-11-15 08:49:11 -07005192 struct io_timeout_data *data = container_of(timer,
5193 struct io_timeout_data, timer);
5194 struct io_kiocb *req = data->req;
5195 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005196 unsigned long flags;
5197
Jens Axboe5262f562019-09-17 12:26:57 -06005198 spin_lock_irqsave(&ctx->completion_lock, flags);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005199 atomic_set(&req->ctx->cq_timeouts,
5200 atomic_read(&req->ctx->cq_timeouts) + 1);
5201
zhangyi (F)ef036812019-10-23 15:10:08 +08005202 /*
Jens Axboe11365042019-10-16 09:08:32 -06005203 * We could be racing with timeout deletion. If the list is empty,
5204 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08005205 */
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005206 if (!list_empty(&req->timeout.list))
5207 list_del_init(&req->timeout.list);
Jens Axboe842f9612019-10-29 12:34:10 -06005208
Jens Axboe78e19bb2019-11-06 15:21:34 -07005209 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06005210 io_commit_cqring(ctx);
5211 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5212
5213 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005214 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005215 io_put_req(req);
5216 return HRTIMER_NORESTART;
5217}
5218
Jens Axboef254ac02020-08-12 17:33:30 -06005219static int __io_timeout_cancel(struct io_kiocb *req)
Jens Axboe47f46762019-11-09 17:43:02 -07005220{
Jens Axboef254ac02020-08-12 17:33:30 -06005221 int ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005222
Jens Axboef254ac02020-08-12 17:33:30 -06005223 list_del_init(&req->timeout.list);
Jens Axboe47f46762019-11-09 17:43:02 -07005224
Jens Axboe2d283902019-12-04 11:08:05 -07005225 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07005226 if (ret == -1)
5227 return -EALREADY;
5228
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005229 req_set_fail_links(req);
Jens Axboe9b7adba2020-08-10 10:54:02 -06005230 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe47f46762019-11-09 17:43:02 -07005231 io_cqring_fill_event(req, -ECANCELED);
5232 io_put_req(req);
5233 return 0;
5234}
5235
Jens Axboef254ac02020-08-12 17:33:30 -06005236static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
5237{
5238 struct io_kiocb *req;
5239 int ret = -ENOENT;
5240
5241 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
5242 if (user_data == req->user_data) {
5243 ret = 0;
5244 break;
5245 }
5246 }
5247
5248 if (ret == -ENOENT)
5249 return ret;
5250
5251 return __io_timeout_cancel(req);
5252}
5253
Jens Axboe3529d8c2019-12-19 18:24:38 -07005254static int io_timeout_remove_prep(struct io_kiocb *req,
5255 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07005256{
Jens Axboeb29472e2019-12-17 18:50:29 -07005257 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5258 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005259 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5260 return -EINVAL;
5261 if (sqe->ioprio || sqe->buf_index || sqe->len)
Jens Axboeb29472e2019-12-17 18:50:29 -07005262 return -EINVAL;
5263
5264 req->timeout.addr = READ_ONCE(sqe->addr);
5265 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
5266 if (req->timeout.flags)
5267 return -EINVAL;
5268
Jens Axboeb29472e2019-12-17 18:50:29 -07005269 return 0;
5270}
5271
Jens Axboe11365042019-10-16 09:08:32 -06005272/*
5273 * Remove or update an existing timeout command
5274 */
Jens Axboefc4df992019-12-10 14:38:45 -07005275static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06005276{
5277 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07005278 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06005279
Jens Axboe11365042019-10-16 09:08:32 -06005280 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07005281 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06005282
Jens Axboe47f46762019-11-09 17:43:02 -07005283 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06005284 io_commit_cqring(ctx);
5285 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005286 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005287 if (ret < 0)
5288 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08005289 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06005290 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06005291}
5292
Jens Axboe3529d8c2019-12-19 18:24:38 -07005293static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07005294 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06005295{
Jens Axboead8a48a2019-11-15 08:49:11 -07005296 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06005297 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005298 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06005299
Jens Axboead8a48a2019-11-15 08:49:11 -07005300 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06005301 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07005302 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06005303 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03005304 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07005305 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06005306 flags = READ_ONCE(sqe->timeout_flags);
5307 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06005308 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06005309
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005310 req->timeout.off = off;
Jens Axboe26a61672019-12-20 09:02:01 -07005311
Jens Axboe3529d8c2019-12-19 18:24:38 -07005312 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07005313 return -ENOMEM;
5314
5315 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07005316 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07005317
5318 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06005319 return -EFAULT;
5320
Jens Axboe11365042019-10-16 09:08:32 -06005321 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07005322 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06005323 else
Jens Axboead8a48a2019-11-15 08:49:11 -07005324 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06005325
Jens Axboead8a48a2019-11-15 08:49:11 -07005326 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
5327 return 0;
5328}
5329
Jens Axboefc4df992019-12-10 14:38:45 -07005330static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07005331{
Jens Axboead8a48a2019-11-15 08:49:11 -07005332 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005333 struct io_timeout_data *data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07005334 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005335 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07005336
Pavel Begunkov733f5c92020-05-26 20:34:03 +03005337 spin_lock_irq(&ctx->completion_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07005338
Jens Axboe5262f562019-09-17 12:26:57 -06005339 /*
5340 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07005341 * timeout event to be satisfied. If it isn't set, then this is
5342 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06005343 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005344 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07005345 entry = ctx->timeout_list.prev;
5346 goto add;
5347 }
Jens Axboe5262f562019-09-17 12:26:57 -06005348
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005349 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
5350 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06005351
5352 /*
5353 * Insertion sort, ensuring the first entry in the list is always
5354 * the one we need first.
5355 */
Jens Axboe5262f562019-09-17 12:26:57 -06005356 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005357 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
5358 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06005359
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03005360 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07005361 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03005362 /* nxt.seq is behind @tail, otherwise would've been completed */
5363 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06005364 break;
5365 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07005366add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03005367 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07005368 data->timer.function = io_timeout_fn;
5369 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06005370 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06005371 return 0;
5372}
5373
Jens Axboe62755e32019-10-28 21:49:21 -06005374static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06005375{
Jens Axboe62755e32019-10-28 21:49:21 -06005376 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06005377
Jens Axboe62755e32019-10-28 21:49:21 -06005378 return req->user_data == (unsigned long) data;
5379}
5380
Jens Axboee977d6d2019-11-05 12:39:45 -07005381static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06005382{
Jens Axboe62755e32019-10-28 21:49:21 -06005383 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06005384 int ret = 0;
5385
Pavel Begunkov4f26bda2020-06-15 10:24:03 +03005386 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr, false);
Jens Axboe62755e32019-10-28 21:49:21 -06005387 switch (cancel_ret) {
5388 case IO_WQ_CANCEL_OK:
5389 ret = 0;
5390 break;
5391 case IO_WQ_CANCEL_RUNNING:
5392 ret = -EALREADY;
5393 break;
5394 case IO_WQ_CANCEL_NOTFOUND:
5395 ret = -ENOENT;
5396 break;
5397 }
5398
Jens Axboee977d6d2019-11-05 12:39:45 -07005399 return ret;
5400}
5401
Jens Axboe47f46762019-11-09 17:43:02 -07005402static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
5403 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03005404 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07005405{
5406 unsigned long flags;
5407 int ret;
5408
5409 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
5410 if (ret != -ENOENT) {
5411 spin_lock_irqsave(&ctx->completion_lock, flags);
5412 goto done;
5413 }
5414
5415 spin_lock_irqsave(&ctx->completion_lock, flags);
5416 ret = io_timeout_cancel(ctx, sqe_addr);
5417 if (ret != -ENOENT)
5418 goto done;
5419 ret = io_poll_cancel(ctx, sqe_addr);
5420done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07005421 if (!ret)
5422 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07005423 io_cqring_fill_event(req, ret);
5424 io_commit_cqring(ctx);
5425 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5426 io_cqring_ev_posted(ctx);
5427
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005428 if (ret < 0)
5429 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03005430 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07005431}
5432
Jens Axboe3529d8c2019-12-19 18:24:38 -07005433static int io_async_cancel_prep(struct io_kiocb *req,
5434 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07005435{
Jens Axboefbf23842019-12-17 18:45:56 -07005436 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07005437 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005438 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5439 return -EINVAL;
5440 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags)
Jens Axboee977d6d2019-11-05 12:39:45 -07005441 return -EINVAL;
5442
Jens Axboefbf23842019-12-17 18:45:56 -07005443 req->cancel.addr = READ_ONCE(sqe->addr);
5444 return 0;
5445}
5446
Pavel Begunkov014db002020-03-03 21:33:12 +03005447static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07005448{
5449 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07005450
Pavel Begunkov014db002020-03-03 21:33:12 +03005451 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06005452 return 0;
5453}
5454
Jens Axboe05f3fb32019-12-09 11:22:50 -07005455static int io_files_update_prep(struct io_kiocb *req,
5456 const struct io_uring_sqe *sqe)
5457{
Jens Axboe6ca56f82020-09-18 16:51:19 -06005458 if (unlikely(req->ctx->flags & IORING_SETUP_SQPOLL))
5459 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06005460 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5461 return -EINVAL;
5462 if (sqe->ioprio || sqe->rw_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005463 return -EINVAL;
5464
5465 req->files_update.offset = READ_ONCE(sqe->off);
5466 req->files_update.nr_args = READ_ONCE(sqe->len);
5467 if (!req->files_update.nr_args)
5468 return -EINVAL;
5469 req->files_update.arg = READ_ONCE(sqe->addr);
5470 return 0;
5471}
5472
Jens Axboe229a7b62020-06-22 10:13:11 -06005473static int io_files_update(struct io_kiocb *req, bool force_nonblock,
5474 struct io_comp_state *cs)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005475{
5476 struct io_ring_ctx *ctx = req->ctx;
5477 struct io_uring_files_update up;
5478 int ret;
5479
Jens Axboef86cd202020-01-29 13:46:44 -07005480 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005481 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005482
5483 up.offset = req->files_update.offset;
5484 up.fds = req->files_update.arg;
5485
5486 mutex_lock(&ctx->uring_lock);
5487 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
5488 mutex_unlock(&ctx->uring_lock);
5489
5490 if (ret < 0)
5491 req_set_fail_links(req);
Jens Axboe229a7b62020-06-22 10:13:11 -06005492 __io_req_complete(req, ret, 0, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005493 return 0;
5494}
5495
Jens Axboe3529d8c2019-12-19 18:24:38 -07005496static int io_req_defer_prep(struct io_kiocb *req,
5497 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07005498{
Jens Axboee7815732019-12-17 19:45:06 -07005499 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07005500
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005501 if (!sqe)
5502 return 0;
5503
Pavel Begunkov327d6d92020-07-15 12:46:51 +03005504 if (io_alloc_async_ctx(req))
5505 return -EAGAIN;
Pavel Begunkovf56040b2020-07-23 20:25:21 +03005506 ret = io_prep_work_files(req);
5507 if (unlikely(ret))
5508 return ret;
Jens Axboecccf0ee2020-01-27 16:34:48 -07005509
Jens Axboe202700e12020-09-12 13:18:10 -06005510 io_prep_async_work(req);
5511
Jens Axboed625c6e2019-12-17 19:53:05 -07005512 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07005513 case IORING_OP_NOP:
5514 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005515 case IORING_OP_READV:
5516 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005517 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005518 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07005519 break;
5520 case IORING_OP_WRITEV:
5521 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005522 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005523 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07005524 break;
Jens Axboe0969e782019-12-17 18:40:57 -07005525 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005526 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005527 break;
5528 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005529 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005530 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005531 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005532 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005533 break;
5534 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005535 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005536 break;
Jens Axboe03b12302019-12-02 18:50:25 -07005537 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005538 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005539 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005540 break;
5541 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005542 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005543 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005544 break;
Jens Axboef499a022019-12-02 16:28:46 -07005545 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005546 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07005547 break;
Jens Axboe2d283902019-12-04 11:08:05 -07005548 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005549 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005550 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07005551 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005552 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07005553 break;
Jens Axboefbf23842019-12-17 18:45:56 -07005554 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005555 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07005556 break;
Jens Axboe2d283902019-12-04 11:08:05 -07005557 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005558 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005559 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005560 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005561 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005562 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005563 case IORING_OP_FALLOCATE:
5564 ret = io_fallocate_prep(req, sqe);
5565 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005566 case IORING_OP_OPENAT:
5567 ret = io_openat_prep(req, sqe);
5568 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005569 case IORING_OP_CLOSE:
5570 ret = io_close_prep(req, sqe);
5571 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005572 case IORING_OP_FILES_UPDATE:
5573 ret = io_files_update_prep(req, sqe);
5574 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005575 case IORING_OP_STATX:
5576 ret = io_statx_prep(req, sqe);
5577 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005578 case IORING_OP_FADVISE:
5579 ret = io_fadvise_prep(req, sqe);
5580 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005581 case IORING_OP_MADVISE:
5582 ret = io_madvise_prep(req, sqe);
5583 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005584 case IORING_OP_OPENAT2:
5585 ret = io_openat2_prep(req, sqe);
5586 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005587 case IORING_OP_EPOLL_CTL:
5588 ret = io_epoll_ctl_prep(req, sqe);
5589 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005590 case IORING_OP_SPLICE:
5591 ret = io_splice_prep(req, sqe);
5592 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005593 case IORING_OP_PROVIDE_BUFFERS:
5594 ret = io_provide_buffers_prep(req, sqe);
5595 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005596 case IORING_OP_REMOVE_BUFFERS:
5597 ret = io_remove_buffers_prep(req, sqe);
5598 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03005599 case IORING_OP_TEE:
5600 ret = io_tee_prep(req, sqe);
5601 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005602 default:
Jens Axboee7815732019-12-17 19:45:06 -07005603 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5604 req->opcode);
5605 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005606 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005607 }
5608
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005609 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07005610}
5611
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005612static u32 io_get_sequence(struct io_kiocb *req)
5613{
5614 struct io_kiocb *pos;
5615 struct io_ring_ctx *ctx = req->ctx;
5616 u32 total_submitted, nr_reqs = 1;
5617
5618 if (req->flags & REQ_F_LINK_HEAD)
5619 list_for_each_entry(pos, &req->link_list, link_list)
5620 nr_reqs++;
5621
5622 total_submitted = ctx->cached_sq_head - ctx->cached_sq_dropped;
5623 return total_submitted - nr_reqs;
5624}
5625
Jens Axboe3529d8c2019-12-19 18:24:38 -07005626static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06005627{
Jackie Liua197f662019-11-08 08:09:12 -07005628 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005629 struct io_defer_entry *de;
Jens Axboef67676d2019-12-02 11:03:47 -07005630 int ret;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005631 u32 seq;
Jens Axboede0617e2019-04-06 21:51:27 -06005632
Bob Liu9d858b22019-11-13 18:06:25 +08005633 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005634 if (likely(list_empty_careful(&ctx->defer_list) &&
5635 !(req->flags & REQ_F_IO_DRAIN)))
5636 return 0;
5637
5638 seq = io_get_sequence(req);
5639 /* Still a chance to pass the sequence check */
5640 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06005641 return 0;
5642
Pavel Begunkov650b5482020-05-17 14:02:11 +03005643 if (!req->io) {
Pavel Begunkov650b5482020-05-17 14:02:11 +03005644 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03005645 if (ret)
Pavel Begunkov650b5482020-05-17 14:02:11 +03005646 return ret;
5647 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03005648 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005649 de = kmalloc(sizeof(*de), GFP_KERNEL);
5650 if (!de)
5651 return -ENOMEM;
Jens Axboe2d283902019-12-04 11:08:05 -07005652
Jens Axboede0617e2019-04-06 21:51:27 -06005653 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005654 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005655 spin_unlock_irq(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005656 kfree(de);
Pavel Begunkovae348172020-07-23 20:25:20 +03005657 io_queue_async_work(req);
5658 return -EIOCBQUEUED;
Jens Axboede0617e2019-04-06 21:51:27 -06005659 }
5660
Jens Axboe915967f2019-11-21 09:01:20 -07005661 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005662 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03005663 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03005664 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboede0617e2019-04-06 21:51:27 -06005665 spin_unlock_irq(&ctx->completion_lock);
5666 return -EIOCBQUEUED;
5667}
5668
Jens Axboef573d382020-09-22 10:19:24 -06005669static void io_req_drop_files(struct io_kiocb *req)
5670{
5671 struct io_ring_ctx *ctx = req->ctx;
5672 unsigned long flags;
5673
5674 spin_lock_irqsave(&ctx->inflight_lock, flags);
5675 list_del(&req->inflight_entry);
5676 if (waitqueue_active(&ctx->inflight_wait))
5677 wake_up(&ctx->inflight_wait);
5678 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
5679 req->flags &= ~REQ_F_INFLIGHT;
Jens Axboe0f212202020-09-13 13:09:39 -06005680 put_files_struct(req->work.files);
Jens Axboe9b828492020-09-18 20:13:06 -06005681 put_nsproxy(req->work.nsproxy);
Jens Axboef573d382020-09-22 10:19:24 -06005682 req->work.files = NULL;
5683}
5684
Pavel Begunkov3ca405e2020-07-13 23:37:08 +03005685static void __io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005686{
5687 struct io_async_ctx *io = req->io;
5688
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005689 if (req->flags & REQ_F_BUFFER_SELECTED) {
5690 switch (req->opcode) {
5691 case IORING_OP_READV:
5692 case IORING_OP_READ_FIXED:
5693 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005694 kfree((void *)(unsigned long)req->rw.addr);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005695 break;
5696 case IORING_OP_RECVMSG:
5697 case IORING_OP_RECV:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005698 kfree(req->sr_msg.kbuf);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005699 break;
5700 }
5701 req->flags &= ~REQ_F_BUFFER_SELECTED;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005702 }
5703
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005704 if (req->flags & REQ_F_NEED_CLEANUP) {
5705 switch (req->opcode) {
5706 case IORING_OP_READV:
5707 case IORING_OP_READ_FIXED:
5708 case IORING_OP_READ:
5709 case IORING_OP_WRITEV:
5710 case IORING_OP_WRITE_FIXED:
5711 case IORING_OP_WRITE:
Jens Axboeff6165b2020-08-13 09:47:43 -06005712 if (io->rw.free_iovec)
5713 kfree(io->rw.free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005714 break;
5715 case IORING_OP_RECVMSG:
5716 case IORING_OP_SENDMSG:
5717 if (io->msg.iov != io->msg.fast_iov)
5718 kfree(io->msg.iov);
5719 break;
5720 case IORING_OP_SPLICE:
5721 case IORING_OP_TEE:
5722 io_put_file(req, req->splice.file_in,
5723 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5724 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06005725 case IORING_OP_OPENAT:
5726 case IORING_OP_OPENAT2:
5727 if (req->open.filename)
5728 putname(req->open.filename);
5729 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005730 }
5731 req->flags &= ~REQ_F_NEED_CLEANUP;
5732 }
Pavel Begunkovbb175342020-08-20 11:33:35 +03005733
Jens Axboef573d382020-09-22 10:19:24 -06005734 if (req->flags & REQ_F_INFLIGHT)
5735 io_req_drop_files(req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005736}
5737
Jens Axboe3529d8c2019-12-19 18:24:38 -07005738static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboef13fad72020-06-22 09:34:30 -06005739 bool force_nonblock, struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005740{
Jackie Liua197f662019-11-08 08:09:12 -07005741 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005742 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005743
Jens Axboed625c6e2019-12-17 19:53:05 -07005744 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005745 case IORING_OP_NOP:
Jens Axboe229a7b62020-06-22 10:13:11 -06005746 ret = io_nop(req, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005747 break;
5748 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005749 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005750 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005751 if (sqe) {
5752 ret = io_read_prep(req, sqe, force_nonblock);
5753 if (ret < 0)
5754 break;
5755 }
Jens Axboea1d7c392020-06-22 11:09:46 -06005756 ret = io_read(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005757 break;
5758 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005759 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005760 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005761 if (sqe) {
5762 ret = io_write_prep(req, sqe, force_nonblock);
5763 if (ret < 0)
5764 break;
5765 }
Jens Axboea1d7c392020-06-22 11:09:46 -06005766 ret = io_write(req, force_nonblock, cs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005767 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005768 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005769 if (sqe) {
5770 ret = io_prep_fsync(req, sqe);
5771 if (ret < 0)
5772 break;
5773 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005774 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005775 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005776 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005777 if (sqe) {
5778 ret = io_poll_add_prep(req, sqe);
5779 if (ret)
5780 break;
5781 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005782 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005783 break;
5784 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005785 if (sqe) {
5786 ret = io_poll_remove_prep(req, sqe);
5787 if (ret < 0)
5788 break;
5789 }
Jens Axboefc4df992019-12-10 14:38:45 -07005790 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005791 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005792 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005793 if (sqe) {
5794 ret = io_prep_sfr(req, sqe);
5795 if (ret < 0)
5796 break;
5797 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005798 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005799 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005800 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005801 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005802 if (sqe) {
5803 ret = io_sendmsg_prep(req, sqe);
5804 if (ret < 0)
5805 break;
5806 }
Jens Axboefddafac2020-01-04 20:19:44 -07005807 if (req->opcode == IORING_OP_SENDMSG)
Jens Axboe229a7b62020-06-22 10:13:11 -06005808 ret = io_sendmsg(req, force_nonblock, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07005809 else
Jens Axboe229a7b62020-06-22 10:13:11 -06005810 ret = io_send(req, force_nonblock, cs);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005811 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005812 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005813 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005814 if (sqe) {
5815 ret = io_recvmsg_prep(req, sqe);
5816 if (ret)
5817 break;
5818 }
Jens Axboefddafac2020-01-04 20:19:44 -07005819 if (req->opcode == IORING_OP_RECVMSG)
Jens Axboe229a7b62020-06-22 10:13:11 -06005820 ret = io_recvmsg(req, force_nonblock, cs);
Jens Axboefddafac2020-01-04 20:19:44 -07005821 else
Jens Axboe229a7b62020-06-22 10:13:11 -06005822 ret = io_recv(req, force_nonblock, cs);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005823 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005824 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005825 if (sqe) {
5826 ret = io_timeout_prep(req, sqe, false);
5827 if (ret)
5828 break;
5829 }
Jens Axboefc4df992019-12-10 14:38:45 -07005830 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005831 break;
Jens Axboe11365042019-10-16 09:08:32 -06005832 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005833 if (sqe) {
5834 ret = io_timeout_remove_prep(req, sqe);
5835 if (ret)
5836 break;
5837 }
Jens Axboefc4df992019-12-10 14:38:45 -07005838 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005839 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005840 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005841 if (sqe) {
5842 ret = io_accept_prep(req, sqe);
5843 if (ret)
5844 break;
5845 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005846 ret = io_accept(req, force_nonblock, cs);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005847 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005848 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005849 if (sqe) {
5850 ret = io_connect_prep(req, sqe);
5851 if (ret)
5852 break;
5853 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005854 ret = io_connect(req, force_nonblock, cs);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005855 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005856 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005857 if (sqe) {
5858 ret = io_async_cancel_prep(req, sqe);
5859 if (ret)
5860 break;
5861 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005862 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005863 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005864 case IORING_OP_FALLOCATE:
5865 if (sqe) {
5866 ret = io_fallocate_prep(req, sqe);
5867 if (ret)
5868 break;
5869 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005870 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005871 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005872 case IORING_OP_OPENAT:
5873 if (sqe) {
5874 ret = io_openat_prep(req, sqe);
5875 if (ret)
5876 break;
5877 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005878 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005879 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005880 case IORING_OP_CLOSE:
5881 if (sqe) {
5882 ret = io_close_prep(req, sqe);
5883 if (ret)
5884 break;
5885 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005886 ret = io_close(req, force_nonblock, cs);
Jens Axboeb5dba592019-12-11 14:02:38 -07005887 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005888 case IORING_OP_FILES_UPDATE:
5889 if (sqe) {
5890 ret = io_files_update_prep(req, sqe);
5891 if (ret)
5892 break;
5893 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005894 ret = io_files_update(req, force_nonblock, cs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005895 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005896 case IORING_OP_STATX:
5897 if (sqe) {
5898 ret = io_statx_prep(req, sqe);
5899 if (ret)
5900 break;
5901 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005902 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005903 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005904 case IORING_OP_FADVISE:
5905 if (sqe) {
5906 ret = io_fadvise_prep(req, sqe);
5907 if (ret)
5908 break;
5909 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005910 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005911 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005912 case IORING_OP_MADVISE:
5913 if (sqe) {
5914 ret = io_madvise_prep(req, sqe);
5915 if (ret)
5916 break;
5917 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005918 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005919 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005920 case IORING_OP_OPENAT2:
5921 if (sqe) {
5922 ret = io_openat2_prep(req, sqe);
5923 if (ret)
5924 break;
5925 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005926 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005927 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005928 case IORING_OP_EPOLL_CTL:
5929 if (sqe) {
5930 ret = io_epoll_ctl_prep(req, sqe);
5931 if (ret)
5932 break;
5933 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005934 ret = io_epoll_ctl(req, force_nonblock, cs);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005935 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005936 case IORING_OP_SPLICE:
5937 if (sqe) {
5938 ret = io_splice_prep(req, sqe);
5939 if (ret < 0)
5940 break;
5941 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005942 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005943 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005944 case IORING_OP_PROVIDE_BUFFERS:
5945 if (sqe) {
5946 ret = io_provide_buffers_prep(req, sqe);
5947 if (ret)
5948 break;
5949 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005950 ret = io_provide_buffers(req, force_nonblock, cs);
Jens Axboeddf0322d2020-02-23 16:41:33 -07005951 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005952 case IORING_OP_REMOVE_BUFFERS:
5953 if (sqe) {
5954 ret = io_remove_buffers_prep(req, sqe);
5955 if (ret)
5956 break;
5957 }
Jens Axboe229a7b62020-06-22 10:13:11 -06005958 ret = io_remove_buffers(req, force_nonblock, cs);
Jens Axboe31b51512019-01-18 22:56:34 -07005959 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03005960 case IORING_OP_TEE:
5961 if (sqe) {
5962 ret = io_tee_prep(req, sqe);
5963 if (ret < 0)
5964 break;
5965 }
5966 ret = io_tee(req, force_nonblock);
5967 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005968 default:
5969 ret = -EINVAL;
5970 break;
5971 }
5972
5973 if (ret)
5974 return ret;
5975
Jens Axboeb5325762020-05-19 21:20:27 -06005976 /* If the op doesn't have a file, we're not polling for it */
5977 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005978 const bool in_async = io_wq_current_is_worker();
5979
Jens Axboe11ba8202020-01-15 21:51:17 -07005980 /* workqueue context doesn't hold uring_lock, grab it now */
5981 if (in_async)
5982 mutex_lock(&ctx->uring_lock);
5983
Jens Axboe2b188cc2019-01-07 10:46:33 -07005984 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005985
5986 if (in_async)
5987 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07005988 }
5989
5990 return 0;
5991}
5992
Pavel Begunkovf4db7182020-06-25 18:20:54 +03005993static struct io_wq_work *io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03005994{
Jens Axboe2b188cc2019-01-07 10:46:33 -07005995 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03005996 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06005997 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005998
Pavel Begunkov6df1db62020-07-03 22:15:06 +03005999 timeout = io_prep_linked_timeout(req);
6000 if (timeout)
6001 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006002
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006003 /* if NO_CANCEL is set, we must still run the work */
6004 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
6005 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06006006 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07006007 }
Jens Axboe31b51512019-01-18 22:56:34 -07006008
Jens Axboe561fb042019-10-24 07:25:42 -06006009 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006010 do {
Jens Axboef13fad72020-06-22 09:34:30 -06006011 ret = io_issue_sqe(req, NULL, false, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06006012 /*
6013 * We can get EAGAIN for polled IO even though we're
6014 * forcing a sync submission from here, since we can't
6015 * wait for request slots on the block side.
6016 */
6017 if (ret != -EAGAIN)
6018 break;
6019 cond_resched();
6020 } while (1);
6021 }
Jens Axboe31b51512019-01-18 22:56:34 -07006022
Jens Axboe561fb042019-10-24 07:25:42 -06006023 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006024 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006025 io_req_complete(req, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006026 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006027
Pavel Begunkovf4db7182020-06-25 18:20:54 +03006028 return io_steal_work(req);
Jens Axboe31b51512019-01-18 22:56:34 -07006029}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006030
Jens Axboe65e19f52019-10-26 07:20:21 -06006031static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6032 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06006033{
Jens Axboe65e19f52019-10-26 07:20:21 -06006034 struct fixed_file_table *table;
6035
Jens Axboe05f3fb32019-12-09 11:22:50 -07006036 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08006037 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06006038}
6039
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006040static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
6041 int fd, struct file **out_file, bool fixed)
6042{
6043 struct io_ring_ctx *ctx = req->ctx;
6044 struct file *file;
6045
6046 if (fixed) {
6047 if (unlikely(!ctx->file_data ||
6048 (unsigned) fd >= ctx->nr_user_files))
6049 return -EBADF;
6050 fd = array_index_nospec(fd, ctx->nr_user_files);
6051 file = io_file_from_index(ctx, fd);
Jens Axboefd2206e2020-06-02 16:40:47 -06006052 if (file) {
6053 req->fixed_file_refs = ctx->file_data->cur_refs;
6054 percpu_ref_get(req->fixed_file_refs);
6055 }
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006056 } else {
6057 trace_io_uring_file_get(ctx, fd);
6058 file = __io_file_get(state, fd);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006059 }
6060
Jens Axboefd2206e2020-06-02 16:40:47 -06006061 if (file || io_op_defs[req->opcode].needs_file_no_error) {
6062 *out_file = file;
6063 return 0;
6064 }
6065 return -EBADF;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006066}
6067
Jens Axboe3529d8c2019-12-19 18:24:38 -07006068static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06006069 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06006070{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006071 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06006072
Jens Axboe63ff8222020-05-07 14:56:15 -06006073 fixed = (req->flags & REQ_F_FIXED_FILE) != 0;
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006074 if (unlikely(!fixed && io_async_submit(req->ctx)))
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006075 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06006076
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006077 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06006078}
6079
Jackie Liua197f662019-11-08 08:09:12 -07006080static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006081{
Jackie Liua197f662019-11-08 08:09:12 -07006082 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06006083
Pavel Begunkovf56040b2020-07-23 20:25:21 +03006084 io_req_init_async(req);
6085
Jens Axboe5b0bbee2020-04-27 10:41:22 -06006086 if (req->work.files || (req->flags & REQ_F_NO_FILE_TABLE))
Jens Axboef86cd202020-01-29 13:46:44 -07006087 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07006088
Jens Axboe0f212202020-09-13 13:09:39 -06006089 req->work.files = get_files_struct(current);
Jens Axboe9b828492020-09-18 20:13:06 -06006090 get_nsproxy(current->nsproxy);
6091 req->work.nsproxy = current->nsproxy;
Jens Axboe0f212202020-09-13 13:09:39 -06006092 req->flags |= REQ_F_INFLIGHT;
6093
Jens Axboefcb323c2019-10-24 12:39:47 -06006094 spin_lock_irq(&ctx->inflight_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06006095 list_add(&req->inflight_entry, &ctx->inflight_list);
Jens Axboefcb323c2019-10-24 12:39:47 -06006096 spin_unlock_irq(&ctx->inflight_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06006097 return 0;
Jens Axboefcb323c2019-10-24 12:39:47 -06006098}
6099
Pavel Begunkovf56040b2020-07-23 20:25:21 +03006100static inline int io_prep_work_files(struct io_kiocb *req)
6101{
6102 if (!io_op_defs[req->opcode].file_table)
6103 return 0;
6104 return io_grab_files(req);
6105}
6106
Jens Axboe2665abf2019-11-05 12:40:47 -07006107static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6108{
Jens Axboead8a48a2019-11-15 08:49:11 -07006109 struct io_timeout_data *data = container_of(timer,
6110 struct io_timeout_data, timer);
6111 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006112 struct io_ring_ctx *ctx = req->ctx;
6113 struct io_kiocb *prev = NULL;
6114 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006115
6116 spin_lock_irqsave(&ctx->completion_lock, flags);
6117
6118 /*
6119 * We don't expect the list to be empty, that will only happen if we
6120 * race with the completion of the linked work.
6121 */
Pavel Begunkov44932332019-12-05 16:16:35 +03006122 if (!list_empty(&req->link_list)) {
6123 prev = list_entry(req->link_list.prev, struct io_kiocb,
6124 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07006125 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03006126 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07006127 prev->flags &= ~REQ_F_LINK_TIMEOUT;
6128 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07006129 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006130 }
6131
6132 spin_unlock_irqrestore(&ctx->completion_lock, flags);
6133
6134 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006135 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03006136 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07006137 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07006138 } else {
Jens Axboee1e16092020-06-22 09:17:17 -06006139 io_req_complete(req, -ETIME);
Jens Axboe2665abf2019-11-05 12:40:47 -07006140 }
Jens Axboe2665abf2019-11-05 12:40:47 -07006141 return HRTIMER_NORESTART;
6142}
6143
Jens Axboe7271ef32020-08-10 09:55:22 -06006144static void __io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006145{
Jens Axboe76a46e02019-11-10 23:34:16 -07006146 /*
6147 * If the list is now empty, then our linked request finished before
6148 * we got a chance to setup the timer
6149 */
Pavel Begunkov44932332019-12-05 16:16:35 +03006150 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07006151 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006152
Jens Axboead8a48a2019-11-15 08:49:11 -07006153 data->timer.function = io_link_timeout_fn;
6154 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6155 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07006156 }
Jens Axboe7271ef32020-08-10 09:55:22 -06006157}
6158
6159static void io_queue_linked_timeout(struct io_kiocb *req)
6160{
6161 struct io_ring_ctx *ctx = req->ctx;
6162
6163 spin_lock_irq(&ctx->completion_lock);
6164 __io_queue_linked_timeout(req);
Jens Axboe76a46e02019-11-10 23:34:16 -07006165 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006166
Jens Axboe2665abf2019-11-05 12:40:47 -07006167 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006168 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006169}
6170
Jens Axboead8a48a2019-11-15 08:49:11 -07006171static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006172{
6173 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006174
Pavel Begunkovdea3b492020-04-12 02:05:04 +03006175 if (!(req->flags & REQ_F_LINK_HEAD))
Jens Axboe2665abf2019-11-05 12:40:47 -07006176 return NULL;
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006177 if (req->flags & REQ_F_LINK_TIMEOUT)
Jens Axboed7718a92020-02-14 22:23:12 -07006178 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006179
Pavel Begunkov44932332019-12-05 16:16:35 +03006180 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
6181 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07006182 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07006183 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006184
Jens Axboe76a46e02019-11-10 23:34:16 -07006185 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07006186 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07006187}
6188
Jens Axboef13fad72020-06-22 09:34:30 -06006189static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6190 struct io_comp_state *cs)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006191{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006192 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03006193 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07006194 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006195 int ret;
6196
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006197again:
6198 linked_timeout = io_prep_linked_timeout(req);
6199
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08006200 if ((req->flags & REQ_F_WORK_INITIALIZED) && req->work.creds &&
6201 req->work.creds != current_cred()) {
Jens Axboe193155c2020-02-22 23:22:19 -07006202 if (old_creds)
6203 revert_creds(old_creds);
6204 if (old_creds == req->work.creds)
6205 old_creds = NULL; /* restored original creds */
6206 else
6207 old_creds = override_creds(req->work.creds);
6208 }
6209
Jens Axboef13fad72020-06-22 09:34:30 -06006210 ret = io_issue_sqe(req, sqe, true, cs);
Jens Axboe491381ce2019-10-17 09:20:46 -06006211
6212 /*
6213 * We async punt it if the file wasn't marked NOWAIT, or if the file
6214 * doesn't support non-blocking read/write attempts
6215 */
Pavel Begunkov24c74672020-06-21 13:09:51 +03006216 if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkovf063c542020-07-25 14:41:59 +03006217 if (!io_arm_poll_handler(req)) {
Pavel Begunkov86a761f2020-01-22 23:09:36 +03006218punt:
Pavel Begunkovf063c542020-07-25 14:41:59 +03006219 ret = io_prep_work_files(req);
6220 if (unlikely(ret))
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03006221 goto err;
Pavel Begunkovf063c542020-07-25 14:41:59 +03006222 /*
6223 * Queued up for async execution, worker will release
6224 * submit reference when the iocb is actually submitted.
6225 */
6226 io_queue_async_work(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006227 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03006228
Pavel Begunkovf063c542020-07-25 14:41:59 +03006229 if (linked_timeout)
6230 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03006231 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006232 }
Jens Axboee65ef562019-03-12 10:16:44 -06006233
Pavel Begunkov652532a2020-07-03 22:15:07 +03006234 if (unlikely(ret)) {
Jens Axboefcb323c2019-10-24 12:39:47 -06006235err:
Pavel Begunkov652532a2020-07-03 22:15:07 +03006236 /* un-prep timeout, so it'll be killed as any other linked */
6237 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006238 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06006239 io_put_req(req);
Pavel Begunkov652532a2020-07-03 22:15:07 +03006240 io_req_complete(req, ret);
6241 goto exit;
Jens Axboe9e645e112019-05-10 16:07:28 -06006242 }
Pavel Begunkov652532a2020-07-03 22:15:07 +03006243
Jens Axboe6c271ce2019-01-10 11:22:30 -07006244 /* drop submission reference */
Pavel Begunkov9b5f7bd2020-06-29 13:13:00 +03006245 nxt = io_put_req_find_next(req);
Pavel Begunkov652532a2020-07-03 22:15:07 +03006246 if (linked_timeout)
6247 io_queue_linked_timeout(linked_timeout);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006248
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006249 if (nxt) {
6250 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03006251
6252 if (req->flags & REQ_F_FORCE_ASYNC)
6253 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07006254 goto again;
6255 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03006256exit:
Jens Axboe193155c2020-02-22 23:22:19 -07006257 if (old_creds)
6258 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006259}
6260
Jens Axboef13fad72020-06-22 09:34:30 -06006261static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6262 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006263{
6264 int ret;
6265
Jens Axboe3529d8c2019-12-19 18:24:38 -07006266 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006267 if (ret) {
6268 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03006269fail_req:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006270 req_set_fail_links(req);
Jens Axboee1e16092020-06-22 09:17:17 -06006271 io_put_req(req);
6272 io_req_complete(req, ret);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006273 }
Pavel Begunkov25508782019-12-30 21:24:47 +03006274 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006275 if (!req->io) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006276 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006277 if (unlikely(ret))
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03006278 goto fail_req;
6279 }
6280
Jens Axboece35a472019-12-17 08:04:44 -07006281 /*
6282 * Never try inline submit of IOSQE_ASYNC is set, go straight
6283 * to async execution.
6284 */
Pavel Begunkov3e863ea2020-07-23 20:17:20 +03006285 io_req_init_async(req);
Jens Axboece35a472019-12-17 08:04:44 -07006286 req->work.flags |= IO_WQ_WORK_CONCURRENT;
6287 io_queue_async_work(req);
6288 } else {
Jens Axboef13fad72020-06-22 09:34:30 -06006289 __io_queue_sqe(req, sqe, cs);
Jens Axboece35a472019-12-17 08:04:44 -07006290 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006291}
6292
Jens Axboef13fad72020-06-22 09:34:30 -06006293static inline void io_queue_link_head(struct io_kiocb *req,
6294 struct io_comp_state *cs)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006295{
Jens Axboe94ae5e72019-11-14 19:39:52 -07006296 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Jens Axboee1e16092020-06-22 09:17:17 -06006297 io_put_req(req);
6298 io_req_complete(req, -ECANCELED);
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03006299 } else
Jens Axboef13fad72020-06-22 09:34:30 -06006300 io_queue_sqe(req, NULL, cs);
Jackie Liu4fe2c962019-09-09 20:50:40 +08006301}
6302
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006303static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboef13fad72020-06-22 09:34:30 -06006304 struct io_kiocb **link, struct io_comp_state *cs)
Jens Axboe9e645e112019-05-10 16:07:28 -06006305{
Jackie Liua197f662019-11-08 08:09:12 -07006306 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006307 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06006308
Jens Axboe9e645e112019-05-10 16:07:28 -06006309 /*
6310 * If we already have a head request, queue this one for async
6311 * submittal once the head completes. If we don't have a head but
6312 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
6313 * submitted sync once the chain is complete. If none of those
6314 * conditions are true (normal request), then just queue it.
6315 */
6316 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03006317 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06006318
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03006319 /*
6320 * Taking sequential execution of a link, draining both sides
6321 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
6322 * requests in the link. So, it drains the head and the
6323 * next after the link request. The last one is done via
6324 * drain_next flag to persist the effect across calls.
6325 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006326 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03006327 head->flags |= REQ_F_IO_DRAIN;
6328 ctx->drain_next = 1;
6329 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07006330 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006331 if (unlikely(ret)) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006332 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03006333 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006334 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07006335 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03006336 trace_io_uring_link(ctx, req, head);
6337 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06006338
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006339 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006340 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Jens Axboef13fad72020-06-22 09:34:30 -06006341 io_queue_link_head(head, cs);
Pavel Begunkov32fe5252019-12-17 22:26:58 +03006342 *link = NULL;
6343 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006344 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03006345 if (unlikely(ctx->drain_next)) {
6346 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006347 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03006348 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006349 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkovdea3b492020-04-12 02:05:04 +03006350 req->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov711be032020-01-17 03:57:59 +03006351 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03006352
Pavel Begunkov711be032020-01-17 03:57:59 +03006353 ret = io_req_defer_prep(req, sqe);
Pavel Begunkov327d6d92020-07-15 12:46:51 +03006354 if (unlikely(ret))
Pavel Begunkov711be032020-01-17 03:57:59 +03006355 req->flags |= REQ_F_FAIL_LINK;
6356 *link = req;
6357 } else {
Jens Axboef13fad72020-06-22 09:34:30 -06006358 io_queue_sqe(req, sqe, cs);
Pavel Begunkov711be032020-01-17 03:57:59 +03006359 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006360 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03006361
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006362 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06006363}
6364
Jens Axboe9a56a232019-01-09 09:06:50 -07006365/*
6366 * Batched submission is done, ensure local IO is flushed out.
6367 */
6368static void io_submit_state_end(struct io_submit_state *state)
6369{
Jens Axboef13fad72020-06-22 09:34:30 -06006370 if (!list_empty(&state->comp.list))
6371 io_submit_flush_completions(&state->comp);
Jens Axboe9a56a232019-01-09 09:06:50 -07006372 blk_finish_plug(&state->plug);
Pavel Begunkov9f13c352020-05-17 14:13:41 +03006373 io_state_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07006374 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03006375 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07006376}
6377
6378/*
6379 * Start submission side cache.
6380 */
6381static void io_submit_state_start(struct io_submit_state *state,
Jens Axboe013538b2020-06-22 09:29:15 -06006382 struct io_ring_ctx *ctx, unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07006383{
6384 blk_start_plug(&state->plug);
Jens Axboe013538b2020-06-22 09:29:15 -06006385 state->comp.nr = 0;
6386 INIT_LIST_HEAD(&state->comp.list);
6387 state->comp.ctx = ctx;
Jens Axboe2579f912019-01-09 09:10:43 -07006388 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07006389 state->file = NULL;
6390 state->ios_left = max_ios;
6391}
6392
Jens Axboe2b188cc2019-01-07 10:46:33 -07006393static void io_commit_sqring(struct io_ring_ctx *ctx)
6394{
Hristo Venev75b28af2019-08-26 17:23:46 +00006395 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006396
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03006397 /*
6398 * Ensure any loads from the SQEs are done at this point,
6399 * since once we write the new head, the application could
6400 * write new data to them.
6401 */
6402 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006403}
6404
6405/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07006406 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07006407 * that is mapped by userspace. This means that care needs to be taken to
6408 * ensure that reads are stable, as we cannot rely on userspace always
6409 * being a good citizen. If members of the sqe are validated and then later
6410 * used, it's important that those reads are done through READ_ONCE() to
6411 * prevent a re-load down the line.
6412 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03006413static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006414{
Hristo Venev75b28af2019-08-26 17:23:46 +00006415 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006416 unsigned head;
6417
6418 /*
6419 * The cached sq head (or cq tail) serves two purposes:
6420 *
6421 * 1) allows us to batch the cost of updating the user visible
6422 * head updates.
6423 * 2) allows the kernel side to track the head on its own, even
6424 * though the application is the one updating it.
6425 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006426 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006427 if (likely(head < ctx->sq_entries))
6428 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07006429
6430 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06006431 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006432 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006433 return NULL;
6434}
6435
6436static inline void io_consume_sqe(struct io_ring_ctx *ctx)
6437{
6438 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006439}
6440
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006441#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
6442 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
6443 IOSQE_BUFFER_SELECT)
6444
6445static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
6446 const struct io_uring_sqe *sqe,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006447 struct io_submit_state *state)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006448{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006449 unsigned int sqe_flags;
Jens Axboe63ff8222020-05-07 14:56:15 -06006450 int id;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006451
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006452 req->opcode = READ_ONCE(sqe->opcode);
6453 req->user_data = READ_ONCE(sqe->user_data);
6454 req->io = NULL;
6455 req->file = NULL;
6456 req->ctx = ctx;
6457 req->flags = 0;
6458 /* one is dropped after submission, the other at completion */
6459 refcount_set(&req->refs, 2);
Pavel Begunkov4dd28242020-06-15 10:33:13 +03006460 req->task = current;
Jens Axboee3bc8e92020-09-24 08:45:57 -06006461 get_task_struct(req->task);
Jens Axboe0f212202020-09-13 13:09:39 -06006462 atomic_long_inc(&req->task->io_uring->req_issue);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006463 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006464
6465 if (unlikely(req->opcode >= IORING_OP_LAST))
6466 return -EINVAL;
6467
Jens Axboe9d8426a2020-06-16 18:42:49 -06006468 if (unlikely(io_sq_thread_acquire_mm(ctx, req)))
6469 return -EFAULT;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006470
6471 sqe_flags = READ_ONCE(sqe->flags);
6472 /* enforce forwards compatibility on users */
6473 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
6474 return -EINVAL;
6475
6476 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
6477 !io_op_defs[req->opcode].buffer_select)
6478 return -EOPNOTSUPP;
6479
6480 id = READ_ONCE(sqe->personality);
6481 if (id) {
Xiaoguang Wang7cdaf582020-06-10 19:41:19 +08006482 io_req_init_async(req);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006483 req->work.creds = idr_find(&ctx->personality_idr, id);
6484 if (unlikely(!req->work.creds))
6485 return -EINVAL;
6486 get_cred(req->work.creds);
6487 }
6488
6489 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkovc11368a52020-05-17 14:13:42 +03006490 req->flags |= sqe_flags;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006491
Jens Axboe63ff8222020-05-07 14:56:15 -06006492 if (!io_op_defs[req->opcode].needs_file)
6493 return 0;
6494
6495 return io_req_set_file(state, req, READ_ONCE(sqe->fd));
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006496}
6497
Jens Axboe0f212202020-09-13 13:09:39 -06006498static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Jens Axboe6c271ce2019-01-10 11:22:30 -07006499{
Jens Axboeac8691c2020-06-01 08:30:41 -06006500 struct io_submit_state state;
Jens Axboe9e645e112019-05-10 16:07:28 -06006501 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06006502 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006503
Jens Axboec4a2ed72019-11-21 21:01:26 -07006504 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07006505 if (test_bit(0, &ctx->sq_check_overflow)) {
6506 if (!list_empty(&ctx->cq_overflow_list) &&
Jens Axboee6c8aa92020-09-28 13:10:13 -06006507 !io_cqring_overflow_flush(ctx, false, NULL, NULL))
Jens Axboead3eb2c2019-12-18 17:12:20 -07006508 return -EBUSY;
6509 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006510
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03006511 /* make sure SQ entry isn't read before tail */
6512 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03006513
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03006514 if (!percpu_ref_tryget_many(&ctx->refs, nr))
6515 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006516
Jens Axboe013538b2020-06-22 09:29:15 -06006517 io_submit_state_start(&state, ctx, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006518
6519 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07006520 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03006521 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006522 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006523
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03006524 sqe = io_get_sqe(ctx);
6525 if (unlikely(!sqe)) {
6526 io_consume_sqe(ctx);
6527 break;
6528 }
Jens Axboeac8691c2020-06-01 08:30:41 -06006529 req = io_alloc_req(ctx, &state);
Pavel Begunkov196be952019-11-07 01:41:06 +03006530 if (unlikely(!req)) {
6531 if (!submitted)
6532 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006533 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06006534 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006535
Jens Axboeac8691c2020-06-01 08:30:41 -06006536 err = io_init_req(ctx, req, sqe, &state);
Pavel Begunkov709b3022020-04-08 08:58:43 +03006537 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07006538 /* will complete beyond this point, count as submitted */
6539 submitted++;
6540
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006541 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03006542fail_req:
Jens Axboee1e16092020-06-22 09:17:17 -06006543 io_put_req(req);
6544 io_req_complete(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07006545 break;
6546 }
6547
Jens Axboe354420f2020-01-08 18:55:15 -07006548 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006549 true, io_async_submit(ctx));
Jens Axboef13fad72020-06-22 09:34:30 -06006550 err = io_submit_sqe(req, sqe, &link, &state.comp);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03006551 if (err)
6552 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006553 }
6554
Pavel Begunkov9466f432020-01-25 22:34:01 +03006555 if (unlikely(submitted != nr)) {
6556 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
6557
6558 percpu_ref_put_many(&ctx->refs, nr - ref_used);
6559 }
Jens Axboe9e645e112019-05-10 16:07:28 -06006560 if (link)
Jens Axboef13fad72020-06-22 09:34:30 -06006561 io_queue_link_head(link, &state.comp);
Jens Axboeac8691c2020-06-01 08:30:41 -06006562 io_submit_state_end(&state);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006563
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006564 /* Commit SQ ring head once we've consumed and submitted all SQEs */
6565 io_commit_sqring(ctx);
6566
Jens Axboe6c271ce2019-01-10 11:22:30 -07006567 return submitted;
6568}
6569
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006570static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
6571{
6572 /* Tell userspace we may need a wakeup call */
6573 spin_lock_irq(&ctx->completion_lock);
6574 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
6575 spin_unlock_irq(&ctx->completion_lock);
6576}
6577
6578static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
6579{
6580 spin_lock_irq(&ctx->completion_lock);
6581 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6582 spin_unlock_irq(&ctx->completion_lock);
6583}
6584
Jens Axboe6c271ce2019-01-10 11:22:30 -07006585static int io_sq_thread(void *data)
6586{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006587 struct io_ring_ctx *ctx = data;
Jens Axboe181e4482019-11-25 08:52:30 -07006588 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006589 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006590 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006591 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006592
Jens Axboe0f158b42020-05-14 17:18:39 -06006593 complete(&ctx->sq_thread_comp);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08006594
Jens Axboe181e4482019-11-25 08:52:30 -07006595 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006596
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006597 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006598 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006599 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006600
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006601 if (!list_empty(&ctx->iopoll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006602 unsigned nr_events = 0;
6603
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006604 mutex_lock(&ctx->uring_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006605 if (!list_empty(&ctx->iopoll_list) && !need_resched())
Pavel Begunkov9dedd562020-07-07 16:36:20 +03006606 io_do_iopoll(ctx, &nr_events, 0);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006607 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07006608 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006609 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006610 }
6611
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006612 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006613
6614 /*
6615 * If submit got -EBUSY, flag us as needing the application
6616 * to enter the kernel to reap and flush events.
6617 */
Xuan Zhuob772f072020-06-23 19:34:06 +08006618 if (!to_submit || ret == -EBUSY || need_resched()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006619 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006620 * Drop cur_mm before scheduling, we can't hold it for
6621 * long periods (or over schedule()). Do this before
6622 * adding ourselves to the waitqueue, as the unuse/drop
6623 * may sleep.
6624 */
Jens Axboe4349f302020-07-09 15:07:01 -06006625 io_sq_thread_drop_mm();
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006626
6627 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07006628 * We're polling. If we're within the defined idle
6629 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07006630 * to sleep. The exception is if we got EBUSY doing
6631 * more IO, we should wait for the application to
6632 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07006633 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006634 if (!list_empty(&ctx->iopoll_list) || need_resched() ||
Jens Axboedf069d82020-02-04 16:48:34 -07006635 (!time_after(jiffies, timeout) && ret != -EBUSY &&
6636 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboe4c6e2772020-07-01 11:29:10 -06006637 io_run_task_work();
Jens Axboe9831a902019-09-19 09:48:55 -06006638 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006639 continue;
6640 }
6641
Jens Axboe6c271ce2019-01-10 11:22:30 -07006642 prepare_to_wait(&ctx->sqo_wait, &wait,
6643 TASK_INTERRUPTIBLE);
6644
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006645 /*
6646 * While doing polled IO, before going to sleep, we need
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006647 * to check if there are new reqs added to iopoll_list,
6648 * it is because reqs may have been punted to io worker
6649 * and will be added to iopoll_list later, hence check
6650 * the iopoll_list again.
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006651 */
6652 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
Pavel Begunkov540e32a2020-07-13 23:37:09 +03006653 !list_empty_careful(&ctx->iopoll_list)) {
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006654 finish_wait(&ctx->sqo_wait, &wait);
6655 continue;
6656 }
6657
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006658 io_ring_set_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006659
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006660 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006661 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006662 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006663 finish_wait(&ctx->sqo_wait, &wait);
6664 break;
6665 }
Jens Axboe4c6e2772020-07-01 11:29:10 -06006666 if (io_run_task_work()) {
Hillf Danton10bea962020-04-01 17:19:33 +08006667 finish_wait(&ctx->sqo_wait, &wait);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006668 io_ring_clear_wakeup_flag(ctx);
Jens Axboeb41e9852020-02-17 09:52:41 -07006669 continue;
6670 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006671 if (signal_pending(current))
6672 flush_signals(current);
6673 schedule();
6674 finish_wait(&ctx->sqo_wait, &wait);
6675
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006676 io_ring_clear_wakeup_flag(ctx);
Xiaoguang Wangd4ae2712020-05-20 21:24:35 +08006677 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006678 continue;
6679 }
6680 finish_wait(&ctx->sqo_wait, &wait);
6681
Xiaoguang Wang23b36282020-07-23 20:57:24 +08006682 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006683 }
6684
Jens Axboe8a4955f2019-12-09 14:52:35 -07006685 mutex_lock(&ctx->uring_lock);
Xiaoguang Wang6b668c92020-05-20 15:35:03 +08006686 if (likely(!percpu_ref_is_dying(&ctx->refs)))
Jens Axboe0f212202020-09-13 13:09:39 -06006687 ret = io_submit_sqes(ctx, to_submit);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006688 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006689 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006690 }
6691
Jens Axboe4c6e2772020-07-01 11:29:10 -06006692 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07006693
Jens Axboe4349f302020-07-09 15:07:01 -06006694 io_sq_thread_drop_mm();
Jens Axboe181e4482019-11-25 08:52:30 -07006695 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006696
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006697 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006698
Jens Axboe6c271ce2019-01-10 11:22:30 -07006699 return 0;
6700}
6701
Jens Axboebda52162019-09-24 13:47:15 -06006702struct io_wait_queue {
6703 struct wait_queue_entry wq;
6704 struct io_ring_ctx *ctx;
6705 unsigned to_wait;
6706 unsigned nr_timeouts;
6707};
6708
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006709static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006710{
6711 struct io_ring_ctx *ctx = iowq->ctx;
6712
6713 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006714 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006715 * started waiting. For timeouts, we always want to return to userspace,
6716 * regardless of event count.
6717 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006718 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006719 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6720}
6721
6722static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6723 int wake_flags, void *key)
6724{
6725 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6726 wq);
6727
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006728 /* use noflush == true, as we can't safely rely on locking context */
6729 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006730 return -1;
6731
6732 return autoremove_wake_function(curr, mode, wake_flags, key);
6733}
6734
Jens Axboe2b188cc2019-01-07 10:46:33 -07006735/*
6736 * Wait until events become available, if we don't already have some. The
6737 * application must reap them itself, as they reside on the shared cq ring.
6738 */
6739static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6740 const sigset_t __user *sig, size_t sigsz)
6741{
Jens Axboebda52162019-09-24 13:47:15 -06006742 struct io_wait_queue iowq = {
6743 .wq = {
6744 .private = current,
6745 .func = io_wake_function,
6746 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6747 },
6748 .ctx = ctx,
6749 .to_wait = min_events,
6750 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006751 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006752 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006753
Jens Axboeb41e9852020-02-17 09:52:41 -07006754 do {
6755 if (io_cqring_events(ctx, false) >= min_events)
6756 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06006757 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07006758 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07006759 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006760
6761 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006762#ifdef CONFIG_COMPAT
6763 if (in_compat_syscall())
6764 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006765 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006766 else
6767#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006768 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006769
Jens Axboe2b188cc2019-01-07 10:46:33 -07006770 if (ret)
6771 return ret;
6772 }
6773
Jens Axboebda52162019-09-24 13:47:15 -06006774 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006775 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006776 do {
6777 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6778 TASK_INTERRUPTIBLE);
Jens Axboece593a62020-06-30 12:39:05 -06006779 /* make sure we run task_work before checking for signals */
Jens Axboe4c6e2772020-07-01 11:29:10 -06006780 if (io_run_task_work())
6781 continue;
Jens Axboece593a62020-06-30 12:39:05 -06006782 if (signal_pending(current)) {
Jens Axboeb7db41c2020-07-04 08:55:50 -06006783 if (current->jobctl & JOBCTL_TASK_WORK) {
6784 spin_lock_irq(&current->sighand->siglock);
6785 current->jobctl &= ~JOBCTL_TASK_WORK;
6786 recalc_sigpending();
6787 spin_unlock_irq(&current->sighand->siglock);
6788 continue;
6789 }
6790 ret = -EINTR;
Jens Axboece593a62020-06-30 12:39:05 -06006791 break;
6792 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006793 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006794 break;
6795 schedule();
Jens Axboebda52162019-09-24 13:47:15 -06006796 } while (1);
6797 finish_wait(&ctx->wait, &iowq.wq);
6798
Jens Axboeb7db41c2020-07-04 08:55:50 -06006799 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006800
Hristo Venev75b28af2019-08-26 17:23:46 +00006801 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006802}
6803
Jens Axboe6b063142019-01-10 22:13:58 -07006804static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6805{
6806#if defined(CONFIG_UNIX)
6807 if (ctx->ring_sock) {
6808 struct sock *sock = ctx->ring_sock->sk;
6809 struct sk_buff *skb;
6810
6811 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6812 kfree_skb(skb);
6813 }
6814#else
6815 int i;
6816
Jens Axboe65e19f52019-10-26 07:20:21 -06006817 for (i = 0; i < ctx->nr_user_files; i++) {
6818 struct file *file;
6819
6820 file = io_file_from_index(ctx, i);
6821 if (file)
6822 fput(file);
6823 }
Jens Axboe6b063142019-01-10 22:13:58 -07006824#endif
6825}
6826
Jens Axboe05f3fb32019-12-09 11:22:50 -07006827static void io_file_ref_kill(struct percpu_ref *ref)
6828{
6829 struct fixed_file_data *data;
6830
6831 data = container_of(ref, struct fixed_file_data, refs);
6832 complete(&data->done);
6833}
6834
Jens Axboe6b063142019-01-10 22:13:58 -07006835static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6836{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006837 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006838 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006839 unsigned nr_tables, i;
6840
Jens Axboe05f3fb32019-12-09 11:22:50 -07006841 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006842 return -ENXIO;
6843
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006844 spin_lock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006845 if (!list_empty(&data->ref_list))
6846 ref_node = list_first_entry(&data->ref_list,
6847 struct fixed_file_ref_node, node);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006848 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006849 if (ref_node)
6850 percpu_ref_kill(&ref_node->refs);
6851
6852 percpu_ref_kill(&data->refs);
6853
6854 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06006855 flush_delayed_work(&ctx->file_put_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07006856 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006857
Jens Axboe6b063142019-01-10 22:13:58 -07006858 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006859 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6860 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006861 kfree(data->table[i].files);
6862 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006863 percpu_ref_exit(&data->refs);
6864 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006865 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006866 ctx->nr_user_files = 0;
6867 return 0;
6868}
6869
Jens Axboe6c271ce2019-01-10 11:22:30 -07006870static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6871{
6872 if (ctx->sqo_thread) {
Jens Axboe0f158b42020-05-14 17:18:39 -06006873 wait_for_completion(&ctx->sq_thread_comp);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006874 /*
6875 * The park is a bit of a work-around, without it we get
6876 * warning spews on shutdown with SQPOLL set and affinity
6877 * set to a single CPU.
6878 */
Jens Axboe06058632019-04-13 09:26:03 -06006879 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006880 kthread_stop(ctx->sqo_thread);
6881 ctx->sqo_thread = NULL;
6882 }
6883}
6884
Jens Axboe6b063142019-01-10 22:13:58 -07006885static void io_finish_async(struct io_ring_ctx *ctx)
6886{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006887 io_sq_thread_stop(ctx);
6888
Jens Axboe561fb042019-10-24 07:25:42 -06006889 if (ctx->io_wq) {
6890 io_wq_destroy(ctx->io_wq);
6891 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006892 }
6893}
6894
6895#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006896/*
6897 * Ensure the UNIX gc is aware of our file set, so we are certain that
6898 * the io_uring can be safely unregistered on process exit, even if we have
6899 * loops in the file referencing.
6900 */
6901static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6902{
6903 struct sock *sk = ctx->ring_sock->sk;
6904 struct scm_fp_list *fpl;
6905 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006906 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006907
Jens Axboe6b063142019-01-10 22:13:58 -07006908 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6909 if (!fpl)
6910 return -ENOMEM;
6911
6912 skb = alloc_skb(0, GFP_KERNEL);
6913 if (!skb) {
6914 kfree(fpl);
6915 return -ENOMEM;
6916 }
6917
6918 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006919
Jens Axboe08a45172019-10-03 08:11:03 -06006920 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006921 fpl->user = get_uid(ctx->user);
6922 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006923 struct file *file = io_file_from_index(ctx, i + offset);
6924
6925 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006926 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006927 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006928 unix_inflight(fpl->user, fpl->fp[nr_files]);
6929 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006930 }
6931
Jens Axboe08a45172019-10-03 08:11:03 -06006932 if (nr_files) {
6933 fpl->max = SCM_MAX_FD;
6934 fpl->count = nr_files;
6935 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006936 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006937 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6938 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006939
Jens Axboe08a45172019-10-03 08:11:03 -06006940 for (i = 0; i < nr_files; i++)
6941 fput(fpl->fp[i]);
6942 } else {
6943 kfree_skb(skb);
6944 kfree(fpl);
6945 }
Jens Axboe6b063142019-01-10 22:13:58 -07006946
6947 return 0;
6948}
6949
6950/*
6951 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6952 * causes regular reference counting to break down. We rely on the UNIX
6953 * garbage collection to take care of this problem for us.
6954 */
6955static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6956{
6957 unsigned left, total;
6958 int ret = 0;
6959
6960 total = 0;
6961 left = ctx->nr_user_files;
6962 while (left) {
6963 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006964
6965 ret = __io_sqe_files_scm(ctx, this_files, total);
6966 if (ret)
6967 break;
6968 left -= this_files;
6969 total += this_files;
6970 }
6971
6972 if (!ret)
6973 return 0;
6974
6975 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006976 struct file *file = io_file_from_index(ctx, total);
6977
6978 if (file)
6979 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006980 total++;
6981 }
6982
6983 return ret;
6984}
6985#else
6986static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6987{
6988 return 0;
6989}
6990#endif
6991
Jens Axboe65e19f52019-10-26 07:20:21 -06006992static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6993 unsigned nr_files)
6994{
6995 int i;
6996
6997 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006998 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006999 unsigned this_files;
7000
7001 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
7002 table->files = kcalloc(this_files, sizeof(struct file *),
7003 GFP_KERNEL);
7004 if (!table->files)
7005 break;
7006 nr_files -= this_files;
7007 }
7008
7009 if (i == nr_tables)
7010 return 0;
7011
7012 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007013 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06007014 kfree(table->files);
7015 }
7016 return 1;
7017}
7018
Jens Axboe05f3fb32019-12-09 11:22:50 -07007019static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06007020{
7021#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06007022 struct sock *sock = ctx->ring_sock->sk;
7023 struct sk_buff_head list, *head = &sock->sk_receive_queue;
7024 struct sk_buff *skb;
7025 int i;
7026
7027 __skb_queue_head_init(&list);
7028
7029 /*
7030 * Find the skb that holds this file in its SCM_RIGHTS. When found,
7031 * remove this entry and rearrange the file array.
7032 */
7033 skb = skb_dequeue(head);
7034 while (skb) {
7035 struct scm_fp_list *fp;
7036
7037 fp = UNIXCB(skb).fp;
7038 for (i = 0; i < fp->count; i++) {
7039 int left;
7040
7041 if (fp->fp[i] != file)
7042 continue;
7043
7044 unix_notinflight(fp->user, fp->fp[i]);
7045 left = fp->count - 1 - i;
7046 if (left) {
7047 memmove(&fp->fp[i], &fp->fp[i + 1],
7048 left * sizeof(struct file *));
7049 }
7050 fp->count--;
7051 if (!fp->count) {
7052 kfree_skb(skb);
7053 skb = NULL;
7054 } else {
7055 __skb_queue_tail(&list, skb);
7056 }
7057 fput(file);
7058 file = NULL;
7059 break;
7060 }
7061
7062 if (!file)
7063 break;
7064
7065 __skb_queue_tail(&list, skb);
7066
7067 skb = skb_dequeue(head);
7068 }
7069
7070 if (skb_peek(&list)) {
7071 spin_lock_irq(&head->lock);
7072 while ((skb = __skb_dequeue(&list)) != NULL)
7073 __skb_queue_tail(head, skb);
7074 spin_unlock_irq(&head->lock);
7075 }
7076#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07007077 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007078#endif
7079}
7080
Jens Axboe05f3fb32019-12-09 11:22:50 -07007081struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08007082 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007083 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007084};
7085
Jens Axboe4a38aed22020-05-14 17:21:15 -06007086static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007087{
Jens Axboe4a38aed22020-05-14 17:21:15 -06007088 struct fixed_file_data *file_data = ref_node->file_data;
7089 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007090 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007091
7092 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007093 list_del(&pfile->list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007094 io_ring_file_put(ctx, pfile->file);
7095 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007096 }
7097
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007098 spin_lock(&file_data->lock);
7099 list_del(&ref_node->node);
7100 spin_unlock(&file_data->lock);
Jens Axboe2faf8522020-02-04 19:54:55 -07007101
Xiaoguang Wang05589552020-03-31 14:05:18 +08007102 percpu_ref_exit(&ref_node->refs);
7103 kfree(ref_node);
7104 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007105}
7106
Jens Axboe4a38aed22020-05-14 17:21:15 -06007107static void io_file_put_work(struct work_struct *work)
7108{
7109 struct io_ring_ctx *ctx;
7110 struct llist_node *node;
7111
7112 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
7113 node = llist_del_all(&ctx->file_put_llist);
7114
7115 while (node) {
7116 struct fixed_file_ref_node *ref_node;
7117 struct llist_node *next = node->next;
7118
7119 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
7120 __io_file_put_work(ref_node);
7121 node = next;
7122 }
7123}
7124
Jens Axboe05f3fb32019-12-09 11:22:50 -07007125static void io_file_data_ref_zero(struct percpu_ref *ref)
7126{
Xiaoguang Wang05589552020-03-31 14:05:18 +08007127 struct fixed_file_ref_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06007128 struct io_ring_ctx *ctx;
7129 bool first_add;
7130 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007131
Xiaoguang Wang05589552020-03-31 14:05:18 +08007132 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe4a38aed22020-05-14 17:21:15 -06007133 ctx = ref_node->file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007134
Jens Axboe4a38aed22020-05-14 17:21:15 -06007135 if (percpu_ref_is_dying(&ctx->file_data->refs))
7136 delay = 0;
7137
7138 first_add = llist_add(&ref_node->llist, &ctx->file_put_llist);
7139 if (!delay)
7140 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
7141 else if (first_add)
7142 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007143}
7144
7145static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
7146 struct io_ring_ctx *ctx)
7147{
7148 struct fixed_file_ref_node *ref_node;
7149
7150 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7151 if (!ref_node)
7152 return ERR_PTR(-ENOMEM);
7153
7154 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
7155 0, GFP_KERNEL)) {
7156 kfree(ref_node);
7157 return ERR_PTR(-ENOMEM);
7158 }
7159 INIT_LIST_HEAD(&ref_node->node);
7160 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007161 ref_node->file_data = ctx->file_data;
7162 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007163}
7164
7165static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
7166{
7167 percpu_ref_exit(&ref_node->refs);
7168 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007169}
7170
7171static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
7172 unsigned nr_args)
7173{
7174 __s32 __user *fds = (__s32 __user *) arg;
7175 unsigned nr_tables;
7176 struct file *file;
7177 int fd, ret = 0;
7178 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007179 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007180
7181 if (ctx->file_data)
7182 return -EBUSY;
7183 if (!nr_args)
7184 return -EINVAL;
7185 if (nr_args > IORING_MAX_FIXED_FILES)
7186 return -EMFILE;
7187
7188 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
7189 if (!ctx->file_data)
7190 return -ENOMEM;
7191 ctx->file_data->ctx = ctx;
7192 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007193 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08007194 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007195
7196 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
7197 ctx->file_data->table = kcalloc(nr_tables,
7198 sizeof(struct fixed_file_table),
7199 GFP_KERNEL);
7200 if (!ctx->file_data->table) {
7201 kfree(ctx->file_data);
7202 ctx->file_data = NULL;
7203 return -ENOMEM;
7204 }
7205
Xiaoguang Wang05589552020-03-31 14:05:18 +08007206 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07007207 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
7208 kfree(ctx->file_data->table);
7209 kfree(ctx->file_data);
7210 ctx->file_data = NULL;
7211 return -ENOMEM;
7212 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007213
7214 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
7215 percpu_ref_exit(&ctx->file_data->refs);
7216 kfree(ctx->file_data->table);
7217 kfree(ctx->file_data);
7218 ctx->file_data = NULL;
7219 return -ENOMEM;
7220 }
7221
7222 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
7223 struct fixed_file_table *table;
7224 unsigned index;
7225
7226 ret = -EFAULT;
7227 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
7228 break;
7229 /* allow sparse sets */
7230 if (fd == -1) {
7231 ret = 0;
7232 continue;
7233 }
7234
7235 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7236 index = i & IORING_FILE_TABLE_MASK;
7237 file = fget(fd);
7238
7239 ret = -EBADF;
7240 if (!file)
7241 break;
7242
7243 /*
7244 * Don't allow io_uring instances to be registered. If UNIX
7245 * isn't enabled, then this causes a reference cycle and this
7246 * instance can never get freed. If UNIX is enabled we'll
7247 * handle it just fine, but there's still no point in allowing
7248 * a ring fd as it doesn't support regular read/write anyway.
7249 */
7250 if (file->f_op == &io_uring_fops) {
7251 fput(file);
7252 break;
7253 }
7254 ret = 0;
7255 table->files[index] = file;
7256 }
7257
7258 if (ret) {
7259 for (i = 0; i < ctx->nr_user_files; i++) {
7260 file = io_file_from_index(ctx, i);
7261 if (file)
7262 fput(file);
7263 }
7264 for (i = 0; i < nr_tables; i++)
7265 kfree(ctx->file_data->table[i].files);
7266
Yang Yingliang667e57d2020-07-10 14:14:20 +00007267 percpu_ref_exit(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007268 kfree(ctx->file_data->table);
7269 kfree(ctx->file_data);
7270 ctx->file_data = NULL;
7271 ctx->nr_user_files = 0;
7272 return ret;
7273 }
7274
7275 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007276 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007277 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007278 return ret;
7279 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007280
Xiaoguang Wang05589552020-03-31 14:05:18 +08007281 ref_node = alloc_fixed_file_ref_node(ctx);
7282 if (IS_ERR(ref_node)) {
7283 io_sqe_files_unregister(ctx);
7284 return PTR_ERR(ref_node);
7285 }
7286
7287 ctx->file_data->cur_refs = &ref_node->refs;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007288 spin_lock(&ctx->file_data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007289 list_add(&ref_node->node, &ctx->file_data->ref_list);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007290 spin_unlock(&ctx->file_data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007291 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007292 return ret;
7293}
7294
Jens Axboec3a31e62019-10-03 13:59:56 -06007295static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
7296 int index)
7297{
7298#if defined(CONFIG_UNIX)
7299 struct sock *sock = ctx->ring_sock->sk;
7300 struct sk_buff_head *head = &sock->sk_receive_queue;
7301 struct sk_buff *skb;
7302
7303 /*
7304 * See if we can merge this file into an existing skb SCM_RIGHTS
7305 * file set. If there's no room, fall back to allocating a new skb
7306 * and filling it in.
7307 */
7308 spin_lock_irq(&head->lock);
7309 skb = skb_peek(head);
7310 if (skb) {
7311 struct scm_fp_list *fpl = UNIXCB(skb).fp;
7312
7313 if (fpl->count < SCM_MAX_FD) {
7314 __skb_unlink(skb, head);
7315 spin_unlock_irq(&head->lock);
7316 fpl->fp[fpl->count] = get_file(file);
7317 unix_inflight(fpl->user, fpl->fp[fpl->count]);
7318 fpl->count++;
7319 spin_lock_irq(&head->lock);
7320 __skb_queue_head(head, skb);
7321 } else {
7322 skb = NULL;
7323 }
7324 }
7325 spin_unlock_irq(&head->lock);
7326
7327 if (skb) {
7328 fput(file);
7329 return 0;
7330 }
7331
7332 return __io_sqe_files_scm(ctx, 1, index);
7333#else
7334 return 0;
7335#endif
7336}
7337
Hillf Dantona5318d32020-03-23 17:47:15 +08007338static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08007339 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07007340{
Hillf Dantona5318d32020-03-23 17:47:15 +08007341 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007342 struct percpu_ref *refs = data->cur_refs;
7343 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007344
Jens Axboe05f3fb32019-12-09 11:22:50 -07007345 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08007346 if (!pfile)
7347 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007348
Xiaoguang Wang05589552020-03-31 14:05:18 +08007349 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007350 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007351 list_add(&pfile->list, &ref_node->file_list);
7352
Hillf Dantona5318d32020-03-23 17:47:15 +08007353 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007354}
7355
7356static int __io_sqe_files_update(struct io_ring_ctx *ctx,
7357 struct io_uring_files_update *up,
7358 unsigned nr_args)
7359{
7360 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007361 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007362 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007363 __s32 __user *fds;
7364 int fd, i, err;
7365 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007366 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06007367
Jens Axboe05f3fb32019-12-09 11:22:50 -07007368 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06007369 return -EOVERFLOW;
7370 if (done > ctx->nr_user_files)
7371 return -EINVAL;
7372
Xiaoguang Wang05589552020-03-31 14:05:18 +08007373 ref_node = alloc_fixed_file_ref_node(ctx);
7374 if (IS_ERR(ref_node))
7375 return PTR_ERR(ref_node);
7376
Jens Axboec3a31e62019-10-03 13:59:56 -06007377 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007378 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06007379 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007380 struct fixed_file_table *table;
7381 unsigned index;
7382
Jens Axboec3a31e62019-10-03 13:59:56 -06007383 err = 0;
7384 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
7385 err = -EFAULT;
7386 break;
7387 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007388 i = array_index_nospec(up->offset, ctx->nr_user_files);
7389 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06007390 index = i & IORING_FILE_TABLE_MASK;
7391 if (table->files[index]) {
Jiufei Xue98dfd502020-09-01 13:35:02 +08007392 file = table->files[index];
Hillf Dantona5318d32020-03-23 17:47:15 +08007393 err = io_queue_file_removal(data, file);
7394 if (err)
7395 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06007396 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007397 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06007398 }
7399 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06007400 file = fget(fd);
7401 if (!file) {
7402 err = -EBADF;
7403 break;
7404 }
7405 /*
7406 * Don't allow io_uring instances to be registered. If
7407 * UNIX isn't enabled, then this causes a reference
7408 * cycle and this instance can never get freed. If UNIX
7409 * is enabled we'll handle it just fine, but there's
7410 * still no point in allowing a ring fd as it doesn't
7411 * support regular read/write anyway.
7412 */
7413 if (file->f_op == &io_uring_fops) {
7414 fput(file);
7415 err = -EBADF;
7416 break;
7417 }
Jens Axboe65e19f52019-10-26 07:20:21 -06007418 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06007419 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007420 if (err) {
Jiufei Xue95d1c8e2020-09-02 17:59:39 +08007421 table->files[index] = NULL;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007422 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06007423 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00007424 }
Jens Axboec3a31e62019-10-03 13:59:56 -06007425 }
7426 nr_args--;
7427 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007428 up->offset++;
7429 }
7430
Xiaoguang Wang05589552020-03-31 14:05:18 +08007431 if (needs_switch) {
7432 percpu_ref_kill(data->cur_refs);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007433 spin_lock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007434 list_add(&ref_node->node, &data->ref_list);
7435 data->cur_refs = &ref_node->refs;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06007436 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08007437 percpu_ref_get(&ctx->file_data->refs);
7438 } else
7439 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06007440
7441 return done ? done : err;
7442}
Xiaoguang Wang05589552020-03-31 14:05:18 +08007443
Jens Axboe05f3fb32019-12-09 11:22:50 -07007444static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
7445 unsigned nr_args)
7446{
7447 struct io_uring_files_update up;
7448
7449 if (!ctx->file_data)
7450 return -ENXIO;
7451 if (!nr_args)
7452 return -EINVAL;
7453 if (copy_from_user(&up, arg, sizeof(up)))
7454 return -EFAULT;
7455 if (up.resv)
7456 return -EINVAL;
7457
7458 return __io_sqe_files_update(ctx, &up, nr_args);
7459}
Jens Axboec3a31e62019-10-03 13:59:56 -06007460
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007461static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07007462{
7463 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
7464
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007465 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07007466 io_put_req(req);
7467}
7468
Pavel Begunkov24369c22020-01-28 03:15:48 +03007469static int io_init_wq_offload(struct io_ring_ctx *ctx,
7470 struct io_uring_params *p)
7471{
7472 struct io_wq_data data;
7473 struct fd f;
7474 struct io_ring_ctx *ctx_attach;
7475 unsigned int concurrency;
7476 int ret = 0;
7477
7478 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03007479 data.free_work = io_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03007480 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03007481
7482 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
7483 /* Do QD, or 4 * CPUS, whatever is smallest */
7484 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
7485
7486 ctx->io_wq = io_wq_create(concurrency, &data);
7487 if (IS_ERR(ctx->io_wq)) {
7488 ret = PTR_ERR(ctx->io_wq);
7489 ctx->io_wq = NULL;
7490 }
7491 return ret;
7492 }
7493
7494 f = fdget(p->wq_fd);
7495 if (!f.file)
7496 return -EBADF;
7497
7498 if (f.file->f_op != &io_uring_fops) {
7499 ret = -EINVAL;
7500 goto out_fput;
7501 }
7502
7503 ctx_attach = f.file->private_data;
7504 /* @io_wq is protected by holding the fd */
7505 if (!io_wq_get(ctx_attach->io_wq, &data)) {
7506 ret = -EINVAL;
7507 goto out_fput;
7508 }
7509
7510 ctx->io_wq = ctx_attach->io_wq;
7511out_fput:
7512 fdput(f);
7513 return ret;
7514}
7515
Jens Axboe0f212202020-09-13 13:09:39 -06007516static int io_uring_alloc_task_context(struct task_struct *task)
7517{
7518 struct io_uring_task *tctx;
7519
7520 tctx = kmalloc(sizeof(*tctx), GFP_KERNEL);
7521 if (unlikely(!tctx))
7522 return -ENOMEM;
7523
7524 xa_init(&tctx->xa);
7525 init_waitqueue_head(&tctx->wait);
7526 tctx->last = NULL;
7527 tctx->in_idle = 0;
7528 atomic_long_set(&tctx->req_issue, 0);
7529 atomic_long_set(&tctx->req_complete, 0);
7530 task->io_uring = tctx;
7531 return 0;
7532}
7533
7534void __io_uring_free(struct task_struct *tsk)
7535{
7536 struct io_uring_task *tctx = tsk->io_uring;
7537
7538 WARN_ON_ONCE(!xa_empty(&tctx->xa));
7539 xa_destroy(&tctx->xa);
7540 kfree(tctx);
7541 tsk->io_uring = NULL;
7542}
7543
Jens Axboe6c271ce2019-01-10 11:22:30 -07007544static int io_sq_offload_start(struct io_ring_ctx *ctx,
7545 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007546{
7547 int ret;
7548
Jens Axboe6c271ce2019-01-10 11:22:30 -07007549 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06007550 ret = -EPERM;
7551 if (!capable(CAP_SYS_ADMIN))
7552 goto err;
7553
Jens Axboe917257d2019-04-13 09:28:55 -06007554 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
7555 if (!ctx->sq_thread_idle)
7556 ctx->sq_thread_idle = HZ;
7557
Jens Axboe6c271ce2019-01-10 11:22:30 -07007558 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06007559 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007560
Jens Axboe917257d2019-04-13 09:28:55 -06007561 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06007562 if (cpu >= nr_cpu_ids)
7563 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08007564 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06007565 goto err;
7566
Jens Axboe6c271ce2019-01-10 11:22:30 -07007567 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
7568 ctx, cpu,
7569 "io_uring-sq");
7570 } else {
7571 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
7572 "io_uring-sq");
7573 }
7574 if (IS_ERR(ctx->sqo_thread)) {
7575 ret = PTR_ERR(ctx->sqo_thread);
7576 ctx->sqo_thread = NULL;
7577 goto err;
7578 }
Jens Axboe0f212202020-09-13 13:09:39 -06007579 ret = io_uring_alloc_task_context(ctx->sqo_thread);
7580 if (ret)
7581 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007582 wake_up_process(ctx->sqo_thread);
7583 } else if (p->flags & IORING_SETUP_SQ_AFF) {
7584 /* Can't have SQ_AFF without SQPOLL */
7585 ret = -EINVAL;
7586 goto err;
7587 }
7588
Pavel Begunkov24369c22020-01-28 03:15:48 +03007589 ret = io_init_wq_offload(ctx, p);
7590 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007591 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007592
7593 return 0;
7594err:
Jens Axboe54a91f32019-09-10 09:15:04 -06007595 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007596 return ret;
7597}
7598
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007599static inline void __io_unaccount_mem(struct user_struct *user,
7600 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007601{
7602 atomic_long_sub(nr_pages, &user->locked_vm);
7603}
7604
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007605static inline int __io_account_mem(struct user_struct *user,
7606 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007607{
7608 unsigned long page_limit, cur_pages, new_pages;
7609
7610 /* Don't allow more pages than we can safely lock */
7611 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
7612
7613 do {
7614 cur_pages = atomic_long_read(&user->locked_vm);
7615 new_pages = cur_pages + nr_pages;
7616 if (new_pages > page_limit)
7617 return -ENOMEM;
7618 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
7619 new_pages) != cur_pages);
7620
7621 return 0;
7622}
7623
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007624static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
7625 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007626{
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07007627 if (ctx->limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007628 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07007629
Jens Axboe2aede0e2020-09-14 10:45:53 -06007630 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007631 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06007632 ctx->mm_account->locked_vm -= nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007633 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06007634 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007635 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007636}
7637
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007638static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
7639 enum io_mem_account acct)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007640{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07007641 int ret;
7642
7643 if (ctx->limit_mem) {
7644 ret = __io_account_mem(ctx->user, nr_pages);
7645 if (ret)
7646 return ret;
7647 }
7648
Jens Axboe2aede0e2020-09-14 10:45:53 -06007649 if (ctx->mm_account) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007650 if (acct == ACCT_LOCKED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06007651 ctx->mm_account->locked_vm += nr_pages;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007652 else if (acct == ACCT_PINNED)
Jens Axboe2aede0e2020-09-14 10:45:53 -06007653 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007654 }
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007655
7656 return 0;
7657}
7658
Jens Axboe2b188cc2019-01-07 10:46:33 -07007659static void io_mem_free(void *ptr)
7660{
Mark Rutland52e04ef2019-04-30 17:30:21 +01007661 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007662
Mark Rutland52e04ef2019-04-30 17:30:21 +01007663 if (!ptr)
7664 return;
7665
7666 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007667 if (put_page_testzero(page))
7668 free_compound_page(page);
7669}
7670
7671static void *io_mem_alloc(size_t size)
7672{
7673 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
7674 __GFP_NORETRY;
7675
7676 return (void *) __get_free_pages(gfp_flags, get_order(size));
7677}
7678
Hristo Venev75b28af2019-08-26 17:23:46 +00007679static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
7680 size_t *sq_offset)
7681{
7682 struct io_rings *rings;
7683 size_t off, sq_array_size;
7684
7685 off = struct_size(rings, cqes, cq_entries);
7686 if (off == SIZE_MAX)
7687 return SIZE_MAX;
7688
7689#ifdef CONFIG_SMP
7690 off = ALIGN(off, SMP_CACHE_BYTES);
7691 if (off == 0)
7692 return SIZE_MAX;
7693#endif
7694
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02007695 if (sq_offset)
7696 *sq_offset = off;
7697
Hristo Venev75b28af2019-08-26 17:23:46 +00007698 sq_array_size = array_size(sizeof(u32), sq_entries);
7699 if (sq_array_size == SIZE_MAX)
7700 return SIZE_MAX;
7701
7702 if (check_add_overflow(off, sq_array_size, &off))
7703 return SIZE_MAX;
7704
Hristo Venev75b28af2019-08-26 17:23:46 +00007705 return off;
7706}
7707
Jens Axboe2b188cc2019-01-07 10:46:33 -07007708static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
7709{
Hristo Venev75b28af2019-08-26 17:23:46 +00007710 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007711
Hristo Venev75b28af2019-08-26 17:23:46 +00007712 pages = (size_t)1 << get_order(
7713 rings_size(sq_entries, cq_entries, NULL));
7714 pages += (size_t)1 << get_order(
7715 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07007716
Hristo Venev75b28af2019-08-26 17:23:46 +00007717 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007718}
7719
Jens Axboeedafcce2019-01-09 09:16:05 -07007720static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
7721{
7722 int i, j;
7723
7724 if (!ctx->user_bufs)
7725 return -ENXIO;
7726
7727 for (i = 0; i < ctx->nr_user_bufs; i++) {
7728 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7729
7730 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007731 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07007732
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007733 io_unaccount_mem(ctx, imu->nr_bvecs, ACCT_PINNED);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007734 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007735 imu->nr_bvecs = 0;
7736 }
7737
7738 kfree(ctx->user_bufs);
7739 ctx->user_bufs = NULL;
7740 ctx->nr_user_bufs = 0;
7741 return 0;
7742}
7743
7744static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7745 void __user *arg, unsigned index)
7746{
7747 struct iovec __user *src;
7748
7749#ifdef CONFIG_COMPAT
7750 if (ctx->compat) {
7751 struct compat_iovec __user *ciovs;
7752 struct compat_iovec ciov;
7753
7754 ciovs = (struct compat_iovec __user *) arg;
7755 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7756 return -EFAULT;
7757
Jens Axboed55e5f52019-12-11 16:12:15 -07007758 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007759 dst->iov_len = ciov.iov_len;
7760 return 0;
7761 }
7762#endif
7763 src = (struct iovec __user *) arg;
7764 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7765 return -EFAULT;
7766 return 0;
7767}
7768
7769static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7770 unsigned nr_args)
7771{
7772 struct vm_area_struct **vmas = NULL;
7773 struct page **pages = NULL;
7774 int i, j, got_pages = 0;
7775 int ret = -EINVAL;
7776
7777 if (ctx->user_bufs)
7778 return -EBUSY;
7779 if (!nr_args || nr_args > UIO_MAXIOV)
7780 return -EINVAL;
7781
7782 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7783 GFP_KERNEL);
7784 if (!ctx->user_bufs)
7785 return -ENOMEM;
7786
7787 for (i = 0; i < nr_args; i++) {
7788 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7789 unsigned long off, start, end, ubuf;
7790 int pret, nr_pages;
7791 struct iovec iov;
7792 size_t size;
7793
7794 ret = io_copy_iov(ctx, &iov, arg, i);
7795 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007796 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007797
7798 /*
7799 * Don't impose further limits on the size and buffer
7800 * constraints here, we'll -EINVAL later when IO is
7801 * submitted if they are wrong.
7802 */
7803 ret = -EFAULT;
7804 if (!iov.iov_base || !iov.iov_len)
7805 goto err;
7806
7807 /* arbitrary limit, but we need something */
7808 if (iov.iov_len > SZ_1G)
7809 goto err;
7810
7811 ubuf = (unsigned long) iov.iov_base;
7812 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7813 start = ubuf >> PAGE_SHIFT;
7814 nr_pages = end - start;
7815
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007816 ret = io_account_mem(ctx, nr_pages, ACCT_PINNED);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07007817 if (ret)
7818 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007819
7820 ret = 0;
7821 if (!pages || nr_pages > got_pages) {
Denis Efremova8c73c12020-06-05 12:32:03 +03007822 kvfree(vmas);
7823 kvfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007824 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007825 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007826 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007827 sizeof(struct vm_area_struct *),
7828 GFP_KERNEL);
7829 if (!pages || !vmas) {
7830 ret = -ENOMEM;
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007831 io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
Jens Axboeedafcce2019-01-09 09:16:05 -07007832 goto err;
7833 }
7834 got_pages = nr_pages;
7835 }
7836
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007837 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007838 GFP_KERNEL);
7839 ret = -ENOMEM;
7840 if (!imu->bvec) {
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007841 io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
Jens Axboeedafcce2019-01-09 09:16:05 -07007842 goto err;
7843 }
7844
7845 ret = 0;
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07007846 mmap_read_lock(current->mm);
John Hubbard2113b052020-01-30 22:13:13 -08007847 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007848 FOLL_WRITE | FOLL_LONGTERM,
7849 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007850 if (pret == nr_pages) {
7851 /* don't support file backed memory */
7852 for (j = 0; j < nr_pages; j++) {
7853 struct vm_area_struct *vma = vmas[j];
7854
7855 if (vma->vm_file &&
7856 !is_file_hugepages(vma->vm_file)) {
7857 ret = -EOPNOTSUPP;
7858 break;
7859 }
7860 }
7861 } else {
7862 ret = pret < 0 ? pret : -EFAULT;
7863 }
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07007864 mmap_read_unlock(current->mm);
Jens Axboeedafcce2019-01-09 09:16:05 -07007865 if (ret) {
7866 /*
7867 * if we did partial map, or found file backed vmas,
7868 * release any pages we did get
7869 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007870 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007871 unpin_user_pages(pages, pret);
Bijan Mottahedeh2e0464d2020-06-16 16:36:10 -07007872 io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007873 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007874 goto err;
7875 }
7876
7877 off = ubuf & ~PAGE_MASK;
7878 size = iov.iov_len;
7879 for (j = 0; j < nr_pages; j++) {
7880 size_t vec_len;
7881
7882 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7883 imu->bvec[j].bv_page = pages[j];
7884 imu->bvec[j].bv_len = vec_len;
7885 imu->bvec[j].bv_offset = off;
7886 off = 0;
7887 size -= vec_len;
7888 }
7889 /* store original address for later verification */
7890 imu->ubuf = ubuf;
7891 imu->len = iov.iov_len;
7892 imu->nr_bvecs = nr_pages;
7893
7894 ctx->nr_user_bufs++;
7895 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007896 kvfree(pages);
7897 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007898 return 0;
7899err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007900 kvfree(pages);
7901 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007902 io_sqe_buffer_unregister(ctx);
7903 return ret;
7904}
7905
Jens Axboe9b402842019-04-11 11:45:41 -06007906static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7907{
7908 __s32 __user *fds = arg;
7909 int fd;
7910
7911 if (ctx->cq_ev_fd)
7912 return -EBUSY;
7913
7914 if (copy_from_user(&fd, fds, sizeof(*fds)))
7915 return -EFAULT;
7916
7917 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7918 if (IS_ERR(ctx->cq_ev_fd)) {
7919 int ret = PTR_ERR(ctx->cq_ev_fd);
7920 ctx->cq_ev_fd = NULL;
7921 return ret;
7922 }
7923
7924 return 0;
7925}
7926
7927static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7928{
7929 if (ctx->cq_ev_fd) {
7930 eventfd_ctx_put(ctx->cq_ev_fd);
7931 ctx->cq_ev_fd = NULL;
7932 return 0;
7933 }
7934
7935 return -ENXIO;
7936}
7937
Jens Axboe5a2e7452020-02-23 16:23:11 -07007938static int __io_destroy_buffers(int id, void *p, void *data)
7939{
7940 struct io_ring_ctx *ctx = data;
7941 struct io_buffer *buf = p;
7942
Jens Axboe067524e2020-03-02 16:32:28 -07007943 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007944 return 0;
7945}
7946
7947static void io_destroy_buffers(struct io_ring_ctx *ctx)
7948{
7949 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7950 idr_destroy(&ctx->io_buffer_idr);
7951}
7952
Jens Axboe2b188cc2019-01-07 10:46:33 -07007953static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7954{
Jens Axboe6b063142019-01-10 22:13:58 -07007955 io_finish_async(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007956 io_sqe_buffer_unregister(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06007957
7958 if (ctx->sqo_task) {
7959 put_task_struct(ctx->sqo_task);
7960 ctx->sqo_task = NULL;
7961 mmdrop(ctx->mm_account);
7962 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07007963 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007964
Jens Axboe6b063142019-01-10 22:13:58 -07007965 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007966 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007967 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007968 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007969
Jens Axboe2b188cc2019-01-07 10:46:33 -07007970#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007971 if (ctx->ring_sock) {
7972 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007973 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007974 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007975#endif
7976
Hristo Venev75b28af2019-08-26 17:23:46 +00007977 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007978 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007979
7980 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007981 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007982 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07007983 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007984 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007985 kfree(ctx);
7986}
7987
7988static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7989{
7990 struct io_ring_ctx *ctx = file->private_data;
7991 __poll_t mask = 0;
7992
7993 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007994 /*
7995 * synchronizes with barrier from wq_has_sleeper call in
7996 * io_commit_cqring
7997 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007998 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007999 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
8000 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008001 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01008002 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008003 mask |= EPOLLIN | EPOLLRDNORM;
8004
8005 return mask;
8006}
8007
8008static int io_uring_fasync(int fd, struct file *file, int on)
8009{
8010 struct io_ring_ctx *ctx = file->private_data;
8011
8012 return fasync_helper(fd, file, on, &ctx->cq_fasync);
8013}
8014
Jens Axboe071698e2020-01-28 10:04:42 -07008015static int io_remove_personalities(int id, void *p, void *data)
8016{
8017 struct io_ring_ctx *ctx = data;
8018 const struct cred *cred;
8019
8020 cred = idr_remove(&ctx->personality_idr, id);
8021 if (cred)
8022 put_cred(cred);
8023 return 0;
8024}
8025
Jens Axboe85faa7b2020-04-09 18:14:00 -06008026static void io_ring_exit_work(struct work_struct *work)
8027{
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008028 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
8029 exit_work);
Jens Axboe85faa7b2020-04-09 18:14:00 -06008030
Jens Axboe56952e92020-06-17 15:00:04 -06008031 /*
8032 * If we're doing polled IO and end up having requests being
8033 * submitted async (out-of-line), then completions can come in while
8034 * we're waiting for refs to drop. We need to reap these manually,
8035 * as nobody else will be looking for them.
8036 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008037 do {
Jens Axboe56952e92020-06-17 15:00:04 -06008038 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008039 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008040 io_iopoll_try_reap_events(ctx);
8041 } while (!wait_for_completion_timeout(&ctx->ref_comp, HZ/20));
Jens Axboe85faa7b2020-04-09 18:14:00 -06008042 io_ring_ctx_free(ctx);
8043}
8044
Jens Axboe2b188cc2019-01-07 10:46:33 -07008045static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
8046{
8047 mutex_lock(&ctx->uring_lock);
8048 percpu_ref_kill(&ctx->refs);
8049 mutex_unlock(&ctx->uring_lock);
8050
Jens Axboef3606e32020-09-22 08:18:24 -06008051 io_kill_timeouts(ctx, NULL);
8052 io_poll_remove_all(ctx, NULL);
Jens Axboe561fb042019-10-24 07:25:42 -06008053
8054 if (ctx->io_wq)
8055 io_wq_cancel_all(ctx->io_wq);
8056
Jens Axboe15dff282019-11-13 09:09:23 -07008057 /* if we failed setting up the ctx, we might not have any rings */
8058 if (ctx->rings)
Jens Axboee6c8aa92020-09-28 13:10:13 -06008059 io_cqring_overflow_flush(ctx, true, NULL, NULL);
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03008060 io_iopoll_try_reap_events(ctx);
Jens Axboe071698e2020-01-28 10:04:42 -07008061 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06008062
8063 /*
8064 * Do this upfront, so we won't have a grace period where the ring
8065 * is closed but resources aren't reaped yet. This can cause
8066 * spurious failure in setting up a new ring.
8067 */
Jens Axboe760618f2020-07-24 12:53:31 -06008068 io_unaccount_mem(ctx, ring_pages(ctx->sq_entries, ctx->cq_entries),
8069 ACCT_LOCKED);
Jens Axboe309fc032020-07-10 09:13:34 -06008070
Jens Axboe85faa7b2020-04-09 18:14:00 -06008071 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06008072 /*
8073 * Use system_unbound_wq to avoid spawning tons of event kworkers
8074 * if we're exiting a ton of rings at the same time. It just adds
8075 * noise and overhead, there's no discernable change in runtime
8076 * over using system_wq.
8077 */
8078 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008079}
8080
8081static int io_uring_release(struct inode *inode, struct file *file)
8082{
8083 struct io_ring_ctx *ctx = file->private_data;
8084
8085 file->private_data = NULL;
8086 io_ring_ctx_wait_and_kill(ctx);
8087 return 0;
8088}
8089
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008090static bool io_wq_files_match(struct io_wq_work *work, void *data)
8091{
8092 struct files_struct *files = data;
8093
Jens Axboe0f212202020-09-13 13:09:39 -06008094 return !files || work->files == files;
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008095}
8096
Jens Axboef254ac02020-08-12 17:33:30 -06008097/*
8098 * Returns true if 'preq' is the link parent of 'req'
8099 */
8100static bool io_match_link(struct io_kiocb *preq, struct io_kiocb *req)
8101{
8102 struct io_kiocb *link;
8103
8104 if (!(preq->flags & REQ_F_LINK_HEAD))
8105 return false;
8106
8107 list_for_each_entry(link, &preq->link_list, link_list) {
8108 if (link == req)
8109 return true;
8110 }
8111
8112 return false;
8113}
8114
Pavel Begunkovc127a2a2020-09-06 00:45:15 +03008115static bool io_match_link_files(struct io_kiocb *req,
8116 struct files_struct *files)
8117{
8118 struct io_kiocb *link;
8119
8120 if (io_match_files(req, files))
8121 return true;
8122 if (req->flags & REQ_F_LINK_HEAD) {
8123 list_for_each_entry(link, &req->link_list, link_list) {
8124 if (io_match_files(link, files))
8125 return true;
8126 }
8127 }
8128 return false;
8129}
8130
Jens Axboef254ac02020-08-12 17:33:30 -06008131/*
8132 * We're looking to cancel 'req' because it's holding on to our files, but
8133 * 'req' could be a link to another request. See if it is, and cancel that
8134 * parent request if so.
8135 */
8136static bool io_poll_remove_link(struct io_ring_ctx *ctx, struct io_kiocb *req)
8137{
8138 struct hlist_node *tmp;
8139 struct io_kiocb *preq;
8140 bool found = false;
8141 int i;
8142
8143 spin_lock_irq(&ctx->completion_lock);
8144 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
8145 struct hlist_head *list;
8146
8147 list = &ctx->cancel_hash[i];
8148 hlist_for_each_entry_safe(preq, tmp, list, hash_node) {
8149 found = io_match_link(preq, req);
8150 if (found) {
8151 io_poll_remove_one(preq);
8152 break;
8153 }
8154 }
8155 }
8156 spin_unlock_irq(&ctx->completion_lock);
8157 return found;
8158}
8159
8160static bool io_timeout_remove_link(struct io_ring_ctx *ctx,
8161 struct io_kiocb *req)
8162{
8163 struct io_kiocb *preq;
8164 bool found = false;
8165
8166 spin_lock_irq(&ctx->completion_lock);
8167 list_for_each_entry(preq, &ctx->timeout_list, timeout.list) {
8168 found = io_match_link(preq, req);
8169 if (found) {
8170 __io_timeout_cancel(preq);
8171 break;
8172 }
8173 }
8174 spin_unlock_irq(&ctx->completion_lock);
8175 return found;
8176}
8177
Jens Axboeb711d4e2020-08-16 08:23:05 -07008178static bool io_cancel_link_cb(struct io_wq_work *work, void *data)
8179{
8180 return io_match_link(container_of(work, struct io_kiocb, work), data);
8181}
8182
8183static void io_attempt_cancel(struct io_ring_ctx *ctx, struct io_kiocb *req)
8184{
8185 enum io_wq_cancel cret;
8186
8187 /* cancel this particular work, if it's running */
8188 cret = io_wq_cancel_work(ctx->io_wq, &req->work);
8189 if (cret != IO_WQ_CANCEL_NOTFOUND)
8190 return;
8191
8192 /* find links that hold this pending, cancel those */
8193 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_link_cb, req, true);
8194 if (cret != IO_WQ_CANCEL_NOTFOUND)
8195 return;
8196
8197 /* if we have a poll link holding this pending, cancel that */
8198 if (io_poll_remove_link(ctx, req))
8199 return;
8200
8201 /* final option, timeout link is holding this req pending */
8202 io_timeout_remove_link(ctx, req);
8203}
8204
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008205static void io_cancel_defer_files(struct io_ring_ctx *ctx,
8206 struct files_struct *files)
8207{
8208 struct io_defer_entry *de = NULL;
8209 LIST_HEAD(list);
8210
8211 spin_lock_irq(&ctx->completion_lock);
8212 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkovc127a2a2020-09-06 00:45:15 +03008213 if (io_match_link_files(de->req, files)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008214 list_cut_position(&list, &ctx->defer_list, &de->list);
8215 break;
8216 }
8217 }
8218 spin_unlock_irq(&ctx->completion_lock);
8219
8220 while (!list_empty(&list)) {
8221 de = list_first_entry(&list, struct io_defer_entry, list);
8222 list_del_init(&de->list);
8223 req_set_fail_links(de->req);
8224 io_put_req(de->req);
8225 io_req_complete(de->req, -ECANCELED);
8226 kfree(de);
8227 }
8228}
8229
Jens Axboe76e1b642020-09-26 15:05:03 -06008230/*
8231 * Returns true if we found and killed one or more files pinning requests
8232 */
8233static bool io_uring_cancel_files(struct io_ring_ctx *ctx,
Jens Axboefcb323c2019-10-24 12:39:47 -06008234 struct files_struct *files)
8235{
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008236 if (list_empty_careful(&ctx->inflight_list))
Jens Axboe76e1b642020-09-26 15:05:03 -06008237 return false;
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008238
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03008239 io_cancel_defer_files(ctx, files);
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03008240 /* cancel all at once, should be faster than doing it one by one*/
8241 io_wq_cancel_cb(ctx->io_wq, io_wq_files_match, files, true);
8242
Jens Axboefcb323c2019-10-24 12:39:47 -06008243 while (!list_empty_careful(&ctx->inflight_list)) {
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008244 struct io_kiocb *cancel_req = NULL, *req;
8245 DEFINE_WAIT(wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008246
8247 spin_lock_irq(&ctx->inflight_lock);
8248 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe0f212202020-09-13 13:09:39 -06008249 if (files && req->work.files != files)
Jens Axboe768134d2019-11-10 20:30:53 -07008250 continue;
8251 /* req is being completed, ignore */
8252 if (!refcount_inc_not_zero(&req->refs))
8253 continue;
8254 cancel_req = req;
8255 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06008256 }
Jens Axboe768134d2019-11-10 20:30:53 -07008257 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06008258 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07008259 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06008260 spin_unlock_irq(&ctx->inflight_lock);
8261
Jens Axboe768134d2019-11-10 20:30:53 -07008262 /* We need to keep going until we don't find a matching req */
8263 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06008264 break;
Pavel Begunkovbb175342020-08-20 11:33:35 +03008265 /* cancel this request, or head link requests */
8266 io_attempt_cancel(ctx, cancel_req);
8267 io_put_req(cancel_req);
Jens Axboe6200b0a2020-09-13 14:38:30 -06008268 /* cancellations _may_ trigger task work */
8269 io_run_task_work();
Jens Axboefcb323c2019-10-24 12:39:47 -06008270 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08008271 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06008272 }
Jens Axboe76e1b642020-09-26 15:05:03 -06008273
8274 return true;
Jens Axboefcb323c2019-10-24 12:39:47 -06008275}
8276
Pavel Begunkov801dd572020-06-15 10:33:14 +03008277static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008278{
Pavel Begunkov801dd572020-06-15 10:33:14 +03008279 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
8280 struct task_struct *task = data;
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008281
Jens Axboef3606e32020-09-22 08:18:24 -06008282 return io_task_match(req, task);
Pavel Begunkov44e728b2020-06-15 10:24:04 +03008283}
8284
Jens Axboe0f212202020-09-13 13:09:39 -06008285static bool __io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8286 struct task_struct *task,
8287 struct files_struct *files)
8288{
8289 bool ret;
8290
8291 ret = io_uring_cancel_files(ctx, files);
8292 if (!files) {
8293 enum io_wq_cancel cret;
8294
8295 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, task, true);
8296 if (cret != IO_WQ_CANCEL_NOTFOUND)
8297 ret = true;
8298
8299 /* SQPOLL thread does its own polling */
8300 if (!(ctx->flags & IORING_SETUP_SQPOLL)) {
8301 while (!list_empty_careful(&ctx->iopoll_list)) {
8302 io_iopoll_try_reap_events(ctx);
8303 ret = true;
8304 }
8305 }
8306
8307 ret |= io_poll_remove_all(ctx, task);
8308 ret |= io_kill_timeouts(ctx, task);
8309 }
8310
8311 return ret;
8312}
8313
8314/*
8315 * We need to iteratively cancel requests, in case a request has dependent
8316 * hard links. These persist even for failure of cancelations, hence keep
8317 * looping until none are found.
8318 */
8319static void io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8320 struct files_struct *files)
8321{
8322 struct task_struct *task = current;
8323
8324 if (ctx->flags & IORING_SETUP_SQPOLL)
8325 task = ctx->sqo_thread;
8326
8327 io_cqring_overflow_flush(ctx, true, task, files);
8328
8329 while (__io_uring_cancel_task_requests(ctx, task, files)) {
8330 io_run_task_work();
8331 cond_resched();
8332 }
8333}
8334
8335/*
8336 * Note that this task has used io_uring. We use it for cancelation purposes.
8337 */
8338static int io_uring_add_task_file(struct file *file)
8339{
8340 if (unlikely(!current->io_uring)) {
8341 int ret;
8342
8343 ret = io_uring_alloc_task_context(current);
8344 if (unlikely(ret))
8345 return ret;
8346 }
8347 if (current->io_uring->last != file) {
8348 XA_STATE(xas, &current->io_uring->xa, (unsigned long) file);
8349 void *old;
8350
8351 rcu_read_lock();
8352 old = xas_load(&xas);
8353 if (old != file) {
8354 get_file(file);
8355 xas_lock(&xas);
8356 xas_store(&xas, file);
8357 xas_unlock(&xas);
8358 }
8359 rcu_read_unlock();
8360 current->io_uring->last = file;
8361 }
8362
8363 return 0;
8364}
8365
8366/*
8367 * Remove this io_uring_file -> task mapping.
8368 */
8369static void io_uring_del_task_file(struct file *file)
8370{
8371 struct io_uring_task *tctx = current->io_uring;
8372 XA_STATE(xas, &tctx->xa, (unsigned long) file);
8373
8374 if (tctx->last == file)
8375 tctx->last = NULL;
8376
8377 xas_lock(&xas);
8378 file = xas_store(&xas, NULL);
8379 xas_unlock(&xas);
8380
8381 if (file)
8382 fput(file);
8383}
8384
8385static void __io_uring_attempt_task_drop(struct file *file)
8386{
8387 XA_STATE(xas, &current->io_uring->xa, (unsigned long) file);
8388 struct file *old;
8389
8390 rcu_read_lock();
8391 old = xas_load(&xas);
8392 rcu_read_unlock();
8393
8394 if (old == file)
8395 io_uring_del_task_file(file);
8396}
8397
8398/*
8399 * Drop task note for this file if we're the only ones that hold it after
8400 * pending fput()
8401 */
8402static void io_uring_attempt_task_drop(struct file *file, bool exiting)
8403{
8404 if (!current->io_uring)
8405 return;
8406 /*
8407 * fput() is pending, will be 2 if the only other ref is our potential
8408 * task file note. If the task is exiting, drop regardless of count.
8409 */
8410 if (!exiting && atomic_long_read(&file->f_count) != 2)
8411 return;
8412
8413 __io_uring_attempt_task_drop(file);
8414}
8415
8416void __io_uring_files_cancel(struct files_struct *files)
8417{
8418 struct io_uring_task *tctx = current->io_uring;
8419 XA_STATE(xas, &tctx->xa, 0);
8420
8421 /* make sure overflow events are dropped */
8422 tctx->in_idle = true;
8423
8424 do {
8425 struct io_ring_ctx *ctx;
8426 struct file *file;
8427
8428 xas_lock(&xas);
8429 file = xas_next_entry(&xas, ULONG_MAX);
8430 xas_unlock(&xas);
8431
8432 if (!file)
8433 break;
8434
8435 ctx = file->private_data;
8436
8437 io_uring_cancel_task_requests(ctx, files);
8438 if (files)
8439 io_uring_del_task_file(file);
8440 } while (1);
8441}
8442
8443static inline bool io_uring_task_idle(struct io_uring_task *tctx)
8444{
8445 return atomic_long_read(&tctx->req_issue) ==
8446 atomic_long_read(&tctx->req_complete);
8447}
8448
8449/*
8450 * Find any io_uring fd that this task has registered or done IO on, and cancel
8451 * requests.
8452 */
8453void __io_uring_task_cancel(void)
8454{
8455 struct io_uring_task *tctx = current->io_uring;
8456 DEFINE_WAIT(wait);
8457 long completions;
8458
8459 /* make sure overflow events are dropped */
8460 tctx->in_idle = true;
8461
8462 while (!io_uring_task_idle(tctx)) {
8463 /* read completions before cancelations */
8464 completions = atomic_long_read(&tctx->req_complete);
8465 __io_uring_files_cancel(NULL);
8466
8467 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
8468
8469 /*
8470 * If we've seen completions, retry. This avoids a race where
8471 * a completion comes in before we did prepare_to_wait().
8472 */
8473 if (completions != atomic_long_read(&tctx->req_complete))
8474 continue;
8475 if (io_uring_task_idle(tctx))
8476 break;
8477 schedule();
8478 }
8479
8480 finish_wait(&tctx->wait, &wait);
8481 tctx->in_idle = false;
8482}
8483
Jens Axboefcb323c2019-10-24 12:39:47 -06008484static int io_uring_flush(struct file *file, void *data)
8485{
8486 struct io_ring_ctx *ctx = file->private_data;
8487
Jens Axboe6ab23142020-02-08 20:23:59 -07008488 /*
8489 * If the task is going away, cancel work it may have pending
8490 */
Pavel Begunkov801dd572020-06-15 10:33:14 +03008491 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
Jens Axboe0f212202020-09-13 13:09:39 -06008492 data = NULL;
Jens Axboe6ab23142020-02-08 20:23:59 -07008493
Jens Axboe0f212202020-09-13 13:09:39 -06008494 io_uring_cancel_task_requests(ctx, data);
8495 io_uring_attempt_task_drop(file, !data);
Jens Axboefcb323c2019-10-24 12:39:47 -06008496 return 0;
8497}
8498
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008499static void *io_uring_validate_mmap_request(struct file *file,
8500 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008501{
Jens Axboe2b188cc2019-01-07 10:46:33 -07008502 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008503 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008504 struct page *page;
8505 void *ptr;
8506
8507 switch (offset) {
8508 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00008509 case IORING_OFF_CQ_RING:
8510 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008511 break;
8512 case IORING_OFF_SQES:
8513 ptr = ctx->sq_sqes;
8514 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008515 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008516 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008517 }
8518
8519 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07008520 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008521 return ERR_PTR(-EINVAL);
8522
8523 return ptr;
8524}
8525
8526#ifdef CONFIG_MMU
8527
8528static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8529{
8530 size_t sz = vma->vm_end - vma->vm_start;
8531 unsigned long pfn;
8532 void *ptr;
8533
8534 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
8535 if (IS_ERR(ptr))
8536 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008537
8538 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
8539 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
8540}
8541
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008542#else /* !CONFIG_MMU */
8543
8544static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8545{
8546 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
8547}
8548
8549static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
8550{
8551 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
8552}
8553
8554static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
8555 unsigned long addr, unsigned long len,
8556 unsigned long pgoff, unsigned long flags)
8557{
8558 void *ptr;
8559
8560 ptr = io_uring_validate_mmap_request(file, pgoff, len);
8561 if (IS_ERR(ptr))
8562 return PTR_ERR(ptr);
8563
8564 return (unsigned long) ptr;
8565}
8566
8567#endif /* !CONFIG_MMU */
8568
Jens Axboe2b188cc2019-01-07 10:46:33 -07008569SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
8570 u32, min_complete, u32, flags, const sigset_t __user *, sig,
8571 size_t, sigsz)
8572{
8573 struct io_ring_ctx *ctx;
8574 long ret = -EBADF;
8575 int submitted = 0;
8576 struct fd f;
8577
Jens Axboe4c6e2772020-07-01 11:29:10 -06008578 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07008579
Jens Axboe6c271ce2019-01-10 11:22:30 -07008580 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07008581 return -EINVAL;
8582
8583 f = fdget(fd);
8584 if (!f.file)
8585 return -EBADF;
8586
8587 ret = -EOPNOTSUPP;
8588 if (f.file->f_op != &io_uring_fops)
8589 goto out_fput;
8590
8591 ret = -ENXIO;
8592 ctx = f.file->private_data;
8593 if (!percpu_ref_tryget(&ctx->refs))
8594 goto out_fput;
8595
Jens Axboe6c271ce2019-01-10 11:22:30 -07008596 /*
8597 * For SQ polling, the thread will do all submissions and completions.
8598 * Just return the requested submit count, and wake the thread if
8599 * we were asked to.
8600 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06008601 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008602 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07008603 if (!list_empty_careful(&ctx->cq_overflow_list))
Jens Axboee6c8aa92020-09-28 13:10:13 -06008604 io_cqring_overflow_flush(ctx, false, NULL, NULL);
Jens Axboe6c271ce2019-01-10 11:22:30 -07008605 if (flags & IORING_ENTER_SQ_WAKEUP)
8606 wake_up(&ctx->sqo_wait);
8607 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06008608 } else if (to_submit) {
Jens Axboe0f212202020-09-13 13:09:39 -06008609 ret = io_uring_add_task_file(f.file);
8610 if (unlikely(ret))
8611 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008612 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06008613 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008614 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03008615
8616 if (submitted != to_submit)
8617 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008618 }
8619 if (flags & IORING_ENTER_GETEVENTS) {
8620 min_complete = min(min_complete, ctx->cq_entries);
8621
Xiaoguang Wang32b22442020-03-11 09:26:09 +08008622 /*
8623 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
8624 * space applications don't need to do io completion events
8625 * polling again, they can rely on io_sq_thread to do polling
8626 * work, which can reduce cpu usage and uring_lock contention.
8627 */
8628 if (ctx->flags & IORING_SETUP_IOPOLL &&
8629 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03008630 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07008631 } else {
8632 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
8633 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008634 }
8635
Pavel Begunkov7c504e652019-12-18 19:53:45 +03008636out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03008637 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008638out_fput:
8639 fdput(f);
8640 return submitted ? submitted : ret;
8641}
8642
Tobias Klauserbebdb652020-02-26 18:38:32 +01008643#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07008644static int io_uring_show_cred(int id, void *p, void *data)
8645{
8646 const struct cred *cred = p;
8647 struct seq_file *m = data;
8648 struct user_namespace *uns = seq_user_ns(m);
8649 struct group_info *gi;
8650 kernel_cap_t cap;
8651 unsigned __capi;
8652 int g;
8653
8654 seq_printf(m, "%5d\n", id);
8655 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
8656 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
8657 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
8658 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
8659 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
8660 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
8661 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
8662 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
8663 seq_puts(m, "\n\tGroups:\t");
8664 gi = cred->group_info;
8665 for (g = 0; g < gi->ngroups; g++) {
8666 seq_put_decimal_ull(m, g ? " " : "",
8667 from_kgid_munged(uns, gi->gid[g]));
8668 }
8669 seq_puts(m, "\n\tCapEff:\t");
8670 cap = cred->cap_effective;
8671 CAP_FOR_EACH_U32(__capi)
8672 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
8673 seq_putc(m, '\n');
8674 return 0;
8675}
8676
8677static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
8678{
Jens Axboefad8e0d2020-09-28 08:57:48 -06008679 bool has_lock;
Jens Axboe87ce9552020-01-30 08:25:34 -07008680 int i;
8681
Jens Axboefad8e0d2020-09-28 08:57:48 -06008682 /*
8683 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
8684 * since fdinfo case grabs it in the opposite direction of normal use
8685 * cases. If we fail to get the lock, we just don't iterate any
8686 * structures that could be going away outside the io_uring mutex.
8687 */
8688 has_lock = mutex_trylock(&ctx->uring_lock);
8689
Jens Axboe87ce9552020-01-30 08:25:34 -07008690 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -06008691 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07008692 struct fixed_file_table *table;
8693 struct file *f;
8694
8695 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
8696 f = table->files[i & IORING_FILE_TABLE_MASK];
8697 if (f)
8698 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
8699 else
8700 seq_printf(m, "%5u: <none>\n", i);
8701 }
8702 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -06008703 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Jens Axboe87ce9552020-01-30 08:25:34 -07008704 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
8705
8706 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
8707 (unsigned int) buf->len);
8708 }
Jens Axboefad8e0d2020-09-28 08:57:48 -06008709 if (has_lock && !idr_is_empty(&ctx->personality_idr)) {
Jens Axboe87ce9552020-01-30 08:25:34 -07008710 seq_printf(m, "Personalities:\n");
8711 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
8712 }
Jens Axboed7718a92020-02-14 22:23:12 -07008713 seq_printf(m, "PollList:\n");
8714 spin_lock_irq(&ctx->completion_lock);
8715 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
8716 struct hlist_head *list = &ctx->cancel_hash[i];
8717 struct io_kiocb *req;
8718
8719 hlist_for_each_entry(req, list, hash_node)
8720 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
8721 req->task->task_works != NULL);
8722 }
8723 spin_unlock_irq(&ctx->completion_lock);
Jens Axboefad8e0d2020-09-28 08:57:48 -06008724 if (has_lock)
8725 mutex_unlock(&ctx->uring_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07008726}
8727
8728static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
8729{
8730 struct io_ring_ctx *ctx = f->private_data;
8731
8732 if (percpu_ref_tryget(&ctx->refs)) {
8733 __io_uring_show_fdinfo(ctx, m);
8734 percpu_ref_put(&ctx->refs);
8735 }
8736}
Tobias Klauserbebdb652020-02-26 18:38:32 +01008737#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07008738
Jens Axboe2b188cc2019-01-07 10:46:33 -07008739static const struct file_operations io_uring_fops = {
8740 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06008741 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07008742 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01008743#ifndef CONFIG_MMU
8744 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
8745 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
8746#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07008747 .poll = io_uring_poll,
8748 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01008749#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07008750 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01008751#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07008752};
8753
8754static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
8755 struct io_uring_params *p)
8756{
Hristo Venev75b28af2019-08-26 17:23:46 +00008757 struct io_rings *rings;
8758 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008759
Jens Axboebd740482020-08-05 12:58:23 -06008760 /* make sure these are sane, as we already accounted them */
8761 ctx->sq_entries = p->sq_entries;
8762 ctx->cq_entries = p->cq_entries;
8763
Hristo Venev75b28af2019-08-26 17:23:46 +00008764 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
8765 if (size == SIZE_MAX)
8766 return -EOVERFLOW;
8767
8768 rings = io_mem_alloc(size);
8769 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008770 return -ENOMEM;
8771
Hristo Venev75b28af2019-08-26 17:23:46 +00008772 ctx->rings = rings;
8773 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
8774 rings->sq_ring_mask = p->sq_entries - 1;
8775 rings->cq_ring_mask = p->cq_entries - 1;
8776 rings->sq_ring_entries = p->sq_entries;
8777 rings->cq_ring_entries = p->cq_entries;
8778 ctx->sq_mask = rings->sq_ring_mask;
8779 ctx->cq_mask = rings->cq_ring_mask;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008780
8781 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07008782 if (size == SIZE_MAX) {
8783 io_mem_free(ctx->rings);
8784 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008785 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07008786 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008787
8788 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07008789 if (!ctx->sq_sqes) {
8790 io_mem_free(ctx->rings);
8791 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008792 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07008793 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008794
Jens Axboe2b188cc2019-01-07 10:46:33 -07008795 return 0;
8796}
8797
8798/*
8799 * Allocate an anonymous fd, this is what constitutes the application
8800 * visible backing of an io_uring instance. The application mmaps this
8801 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
8802 * we have to tie this fd to a socket for file garbage collection purposes.
8803 */
8804static int io_uring_get_fd(struct io_ring_ctx *ctx)
8805{
8806 struct file *file;
8807 int ret;
8808
8809#if defined(CONFIG_UNIX)
8810 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
8811 &ctx->ring_sock);
8812 if (ret)
8813 return ret;
8814#endif
8815
8816 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
8817 if (ret < 0)
8818 goto err;
8819
8820 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
8821 O_RDWR | O_CLOEXEC);
8822 if (IS_ERR(file)) {
Jens Axboe0f212202020-09-13 13:09:39 -06008823err_fd:
Jens Axboe2b188cc2019-01-07 10:46:33 -07008824 put_unused_fd(ret);
8825 ret = PTR_ERR(file);
8826 goto err;
8827 }
8828
8829#if defined(CONFIG_UNIX)
8830 ctx->ring_sock->file = file;
8831#endif
Jens Axboe0f212202020-09-13 13:09:39 -06008832 if (unlikely(io_uring_add_task_file(file))) {
8833 file = ERR_PTR(-ENOMEM);
8834 goto err_fd;
8835 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008836 fd_install(ret, file);
8837 return ret;
8838err:
8839#if defined(CONFIG_UNIX)
8840 sock_release(ctx->ring_sock);
8841 ctx->ring_sock = NULL;
8842#endif
8843 return ret;
8844}
8845
Xiaoguang Wang7f136572020-05-05 16:28:53 +08008846static int io_uring_create(unsigned entries, struct io_uring_params *p,
8847 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008848{
8849 struct user_struct *user = NULL;
8850 struct io_ring_ctx *ctx;
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008851 bool limit_mem;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008852 int ret;
8853
Jens Axboe8110c1a2019-12-28 15:39:54 -07008854 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008855 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07008856 if (entries > IORING_MAX_ENTRIES) {
8857 if (!(p->flags & IORING_SETUP_CLAMP))
8858 return -EINVAL;
8859 entries = IORING_MAX_ENTRIES;
8860 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008861
8862 /*
8863 * Use twice as many entries for the CQ ring. It's possible for the
8864 * application to drive a higher depth than the size of the SQ ring,
8865 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06008866 * some flexibility in overcommitting a bit. If the application has
8867 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
8868 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07008869 */
8870 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06008871 if (p->flags & IORING_SETUP_CQSIZE) {
8872 /*
8873 * If IORING_SETUP_CQSIZE is set, we do the same roundup
8874 * to a power-of-two, if it isn't already. We do NOT impose
8875 * any cq vs sq ring sizing.
8876 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07008877 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06008878 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07008879 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
8880 if (!(p->flags & IORING_SETUP_CLAMP))
8881 return -EINVAL;
8882 p->cq_entries = IORING_MAX_CQ_ENTRIES;
8883 }
Jens Axboe33a107f2019-10-04 12:10:03 -06008884 p->cq_entries = roundup_pow_of_two(p->cq_entries);
8885 } else {
8886 p->cq_entries = 2 * p->sq_entries;
8887 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07008888
8889 user = get_uid(current_user());
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008890 limit_mem = !capable(CAP_IPC_LOCK);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008891
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008892 if (limit_mem) {
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008893 ret = __io_account_mem(user,
Jens Axboe2b188cc2019-01-07 10:46:33 -07008894 ring_pages(p->sq_entries, p->cq_entries));
8895 if (ret) {
8896 free_uid(user);
8897 return ret;
8898 }
8899 }
8900
8901 ctx = io_ring_ctx_alloc(p);
8902 if (!ctx) {
Bijan Mottahedehaad5d8d2020-06-16 16:36:08 -07008903 if (limit_mem)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008904 __io_unaccount_mem(user, ring_pages(p->sq_entries,
Jens Axboe2b188cc2019-01-07 10:46:33 -07008905 p->cq_entries));
8906 free_uid(user);
8907 return -ENOMEM;
8908 }
8909 ctx->compat = in_compat_syscall();
Jens Axboe2b188cc2019-01-07 10:46:33 -07008910 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07008911 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07008912
Jens Axboe2aede0e2020-09-14 10:45:53 -06008913 ctx->sqo_task = get_task_struct(current);
8914
8915 /*
8916 * This is just grabbed for accounting purposes. When a process exits,
8917 * the mm is exited and dropped before the files, hence we need to hang
8918 * on to this mm purely for the purposes of being able to unaccount
8919 * memory (locked/pinned vm). It's not used for anything else.
8920 */
Jens Axboe6b7898e2020-08-25 07:58:00 -06008921 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -06008922 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -06008923
Jens Axboef74441e2020-08-05 13:00:44 -06008924 /*
8925 * Account memory _before_ installing the file descriptor. Once
8926 * the descriptor is installed, it can get closed at any time. Also
8927 * do this before hitting the general error path, as ring freeing
8928 * will un-account as well.
8929 */
8930 io_account_mem(ctx, ring_pages(p->sq_entries, p->cq_entries),
8931 ACCT_LOCKED);
8932 ctx->limit_mem = limit_mem;
8933
Jens Axboe2b188cc2019-01-07 10:46:33 -07008934 ret = io_allocate_scq_urings(ctx, p);
8935 if (ret)
8936 goto err;
8937
Jens Axboe6c271ce2019-01-10 11:22:30 -07008938 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008939 if (ret)
8940 goto err;
8941
Jens Axboe2b188cc2019-01-07 10:46:33 -07008942 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00008943 p->sq_off.head = offsetof(struct io_rings, sq.head);
8944 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
8945 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
8946 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
8947 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
8948 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
8949 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008950
8951 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00008952 p->cq_off.head = offsetof(struct io_rings, cq.head);
8953 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
8954 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
8955 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
8956 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
8957 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +02008958 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -06008959
Xiaoguang Wang7f136572020-05-05 16:28:53 +08008960 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
8961 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +08008962 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
8963 IORING_FEAT_POLL_32BITS;
Xiaoguang Wang7f136572020-05-05 16:28:53 +08008964
8965 if (copy_to_user(params, p, sizeof(*p))) {
8966 ret = -EFAULT;
8967 goto err;
8968 }
Jens Axboed1719f72020-07-30 13:43:53 -06008969
8970 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -06008971 * Install ring fd as the very last thing, so we don't risk someone
8972 * having closed it before we finish setup
8973 */
8974 ret = io_uring_get_fd(ctx);
8975 if (ret < 0)
8976 goto err;
8977
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008978 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008979 return ret;
8980err:
8981 io_ring_ctx_wait_and_kill(ctx);
8982 return ret;
8983}
8984
8985/*
8986 * Sets up an aio uring context, and returns the fd. Applications asks for a
8987 * ring size, we return the actual sq/cq ring sizes (among other things) in the
8988 * params structure passed in.
8989 */
8990static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
8991{
8992 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008993 int i;
8994
8995 if (copy_from_user(&p, params, sizeof(p)))
8996 return -EFAULT;
8997 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
8998 if (p.resv[i])
8999 return -EINVAL;
9000 }
9001
Jens Axboe6c271ce2019-01-10 11:22:30 -07009002 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07009003 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03009004 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009005 return -EINVAL;
9006
Xiaoguang Wang7f136572020-05-05 16:28:53 +08009007 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009008}
9009
9010SYSCALL_DEFINE2(io_uring_setup, u32, entries,
9011 struct io_uring_params __user *, params)
9012{
9013 return io_uring_setup(entries, params);
9014}
9015
Jens Axboe66f4af92020-01-16 15:36:52 -07009016static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
9017{
9018 struct io_uring_probe *p;
9019 size_t size;
9020 int i, ret;
9021
9022 size = struct_size(p, ops, nr_args);
9023 if (size == SIZE_MAX)
9024 return -EOVERFLOW;
9025 p = kzalloc(size, GFP_KERNEL);
9026 if (!p)
9027 return -ENOMEM;
9028
9029 ret = -EFAULT;
9030 if (copy_from_user(p, arg, size))
9031 goto out;
9032 ret = -EINVAL;
9033 if (memchr_inv(p, 0, size))
9034 goto out;
9035
9036 p->last_op = IORING_OP_LAST - 1;
9037 if (nr_args > IORING_OP_LAST)
9038 nr_args = IORING_OP_LAST;
9039
9040 for (i = 0; i < nr_args; i++) {
9041 p->ops[i].op = i;
9042 if (!io_op_defs[i].not_supported)
9043 p->ops[i].flags = IO_URING_OP_SUPPORTED;
9044 }
9045 p->ops_len = i;
9046
9047 ret = 0;
9048 if (copy_to_user(arg, p, size))
9049 ret = -EFAULT;
9050out:
9051 kfree(p);
9052 return ret;
9053}
9054
Jens Axboe071698e2020-01-28 10:04:42 -07009055static int io_register_personality(struct io_ring_ctx *ctx)
9056{
9057 const struct cred *creds = get_current_cred();
9058 int id;
9059
9060 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
9061 USHRT_MAX, GFP_KERNEL);
9062 if (id < 0)
9063 put_cred(creds);
9064 return id;
9065}
9066
9067static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
9068{
9069 const struct cred *old_creds;
9070
9071 old_creds = idr_remove(&ctx->personality_idr, id);
9072 if (old_creds) {
9073 put_cred(old_creds);
9074 return 0;
9075 }
9076
9077 return -EINVAL;
9078}
9079
9080static bool io_register_op_must_quiesce(int op)
9081{
9082 switch (op) {
9083 case IORING_UNREGISTER_FILES:
9084 case IORING_REGISTER_FILES_UPDATE:
9085 case IORING_REGISTER_PROBE:
9086 case IORING_REGISTER_PERSONALITY:
9087 case IORING_UNREGISTER_PERSONALITY:
9088 return false;
9089 default:
9090 return true;
9091 }
9092}
9093
Jens Axboeedafcce2019-01-09 09:16:05 -07009094static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
9095 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06009096 __releases(ctx->uring_lock)
9097 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07009098{
9099 int ret;
9100
Jens Axboe35fa71a2019-04-22 10:23:23 -06009101 /*
9102 * We're inside the ring mutex, if the ref is already dying, then
9103 * someone else killed the ctx or is already going through
9104 * io_uring_register().
9105 */
9106 if (percpu_ref_is_dying(&ctx->refs))
9107 return -ENXIO;
9108
Jens Axboe071698e2020-01-28 10:04:42 -07009109 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009110 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06009111
Jens Axboe05f3fb32019-12-09 11:22:50 -07009112 /*
9113 * Drop uring mutex before waiting for references to exit. If
9114 * another thread is currently inside io_uring_enter() it might
9115 * need to grab the uring_lock to make progress. If we hold it
9116 * here across the drain wait, then we can deadlock. It's safe
9117 * to drop the mutex here, since no new references will come in
9118 * after we've killed the percpu ref.
9119 */
9120 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f158b42020-05-14 17:18:39 -06009121 ret = wait_for_completion_interruptible(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07009122 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07009123 if (ret) {
9124 percpu_ref_resurrect(&ctx->refs);
9125 ret = -EINTR;
9126 goto out;
9127 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07009128 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009129
9130 switch (opcode) {
9131 case IORING_REGISTER_BUFFERS:
9132 ret = io_sqe_buffer_register(ctx, arg, nr_args);
9133 break;
9134 case IORING_UNREGISTER_BUFFERS:
9135 ret = -EINVAL;
9136 if (arg || nr_args)
9137 break;
9138 ret = io_sqe_buffer_unregister(ctx);
9139 break;
Jens Axboe6b063142019-01-10 22:13:58 -07009140 case IORING_REGISTER_FILES:
9141 ret = io_sqe_files_register(ctx, arg, nr_args);
9142 break;
9143 case IORING_UNREGISTER_FILES:
9144 ret = -EINVAL;
9145 if (arg || nr_args)
9146 break;
9147 ret = io_sqe_files_unregister(ctx);
9148 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06009149 case IORING_REGISTER_FILES_UPDATE:
9150 ret = io_sqe_files_update(ctx, arg, nr_args);
9151 break;
Jens Axboe9b402842019-04-11 11:45:41 -06009152 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07009153 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06009154 ret = -EINVAL;
9155 if (nr_args != 1)
9156 break;
9157 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07009158 if (ret)
9159 break;
9160 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
9161 ctx->eventfd_async = 1;
9162 else
9163 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06009164 break;
9165 case IORING_UNREGISTER_EVENTFD:
9166 ret = -EINVAL;
9167 if (arg || nr_args)
9168 break;
9169 ret = io_eventfd_unregister(ctx);
9170 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07009171 case IORING_REGISTER_PROBE:
9172 ret = -EINVAL;
9173 if (!arg || nr_args > 256)
9174 break;
9175 ret = io_probe(ctx, arg, nr_args);
9176 break;
Jens Axboe071698e2020-01-28 10:04:42 -07009177 case IORING_REGISTER_PERSONALITY:
9178 ret = -EINVAL;
9179 if (arg || nr_args)
9180 break;
9181 ret = io_register_personality(ctx);
9182 break;
9183 case IORING_UNREGISTER_PERSONALITY:
9184 ret = -EINVAL;
9185 if (arg)
9186 break;
9187 ret = io_unregister_personality(ctx, nr_args);
9188 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009189 default:
9190 ret = -EINVAL;
9191 break;
9192 }
9193
Jens Axboe071698e2020-01-28 10:04:42 -07009194 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07009195 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07009196 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07009197out:
Jens Axboe0f158b42020-05-14 17:18:39 -06009198 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07009199 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009200 return ret;
9201}
9202
9203SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
9204 void __user *, arg, unsigned int, nr_args)
9205{
9206 struct io_ring_ctx *ctx;
9207 long ret = -EBADF;
9208 struct fd f;
9209
9210 f = fdget(fd);
9211 if (!f.file)
9212 return -EBADF;
9213
9214 ret = -EOPNOTSUPP;
9215 if (f.file->f_op != &io_uring_fops)
9216 goto out_fput;
9217
9218 ctx = f.file->private_data;
9219
9220 mutex_lock(&ctx->uring_lock);
9221 ret = __io_uring_register(ctx, opcode, arg, nr_args);
9222 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02009223 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
9224 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07009225out_fput:
9226 fdput(f);
9227 return ret;
9228}
9229
Jens Axboe2b188cc2019-01-07 10:46:33 -07009230static int __init io_uring_init(void)
9231{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009232#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
9233 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
9234 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
9235} while (0)
9236
9237#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
9238 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
9239 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
9240 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
9241 BUILD_BUG_SQE_ELEM(1, __u8, flags);
9242 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
9243 BUILD_BUG_SQE_ELEM(4, __s32, fd);
9244 BUILD_BUG_SQE_ELEM(8, __u64, off);
9245 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
9246 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009247 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009248 BUILD_BUG_SQE_ELEM(24, __u32, len);
9249 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
9250 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
9251 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
9252 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +08009253 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
9254 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009255 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
9256 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
9257 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
9258 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
9259 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
9260 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
9261 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
9262 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009263 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009264 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
9265 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
9266 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03009267 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01009268
Jens Axboed3656342019-12-18 09:50:26 -07009269 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07009270 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009271 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
9272 return 0;
9273};
9274__initcall(io_uring_init);