blob: 82f867983bb3279a323a2245220e109e9df01928 [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
Pavel Begunkovd068b502021-05-16 22:58:11 +010014 * through a control-dependency in io_get_cqe (smp_store_release to
Stefan Bühler1e84b972019-04-24 23:54:16 +020015 * 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 Axboe2b188cc2019-01-07 10:46:33 -070060#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070061#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/net.h>
63#include <net/sock.h>
64#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070065#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070066#include <linux/anon_inodes.h>
67#include <linux/sched/mm.h>
68#include <linux/uaccess.h>
69#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070070#include <linux/sizes.h>
71#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070072#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070073#include <linux/namei.h>
74#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070075#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070076#include <linux/eventpoll.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030077#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070078#include <linux/task_work.h>
Jens Axboebcf5a062020-05-22 09:24:42 -060079#include <linux/pagemap.h>
Jens Axboe0f212202020-09-13 13:09:39 -060080#include <linux/io_uring.h>
Nadav Amitef98eb02021-08-07 17:13:41 -070081#include <linux/tracehook.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070082
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020083#define CREATE_TRACE_POINTS
84#include <trace/events/io_uring.h>
85
Jens Axboe2b188cc2019-01-07 10:46:33 -070086#include <uapi/linux/io_uring.h>
87
88#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060089#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070090
Daniel Xu5277dea2019-09-14 14:23:45 -070091#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060092#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Olivier Langlois4ce8ad92021-06-23 11:50:18 -070093#define IORING_SQPOLL_CAP_ENTRIES_VALUE 8
Jens Axboe65e19f52019-10-26 07:20:21 -060094
wangyangbo187f08c2021-08-19 13:56:57 +080095/* only define max */
Pavel Begunkov042b0d82021-08-09 13:04:01 +010096#define IORING_MAX_FIXED_FILES (1U << 15)
Stefano Garzarella21b55db2020-08-27 16:58:30 +020097#define IORING_MAX_RESTRICTIONS (IORING_RESTRICTION_LAST + \
98 IORING_REGISTER_LAST + IORING_OP_LAST)
Jens Axboe2b188cc2019-01-07 10:46:33 -070099
wangyangbo187f08c2021-08-19 13:56:57 +0800100#define IO_RSRC_TAG_TABLE_SHIFT (PAGE_SHIFT - 3)
Pavel Begunkov2d091d62021-06-14 02:36:21 +0100101#define IO_RSRC_TAG_TABLE_MAX (1U << IO_RSRC_TAG_TABLE_SHIFT)
102#define IO_RSRC_TAG_TABLE_MASK (IO_RSRC_TAG_TABLE_MAX - 1)
103
Pavel Begunkov489809e2021-05-14 12:06:44 +0100104#define IORING_MAX_REG_BUFFERS (1U << 14)
105
Pavel Begunkovb16fed662021-02-18 18:29:40 +0000106#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
107 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
108 IOSQE_BUFFER_SELECT)
Pavel Begunkovc8543572021-06-17 18:14:04 +0100109#define IO_REQ_CLEAN_FLAGS (REQ_F_BUFFER_SELECTED | REQ_F_NEED_CLEANUP | \
110 REQ_F_POLLED | REQ_F_INFLIGHT | REQ_F_CREDS)
Pavel Begunkovb16fed662021-02-18 18:29:40 +0000111
Pavel Begunkov09899b12021-06-14 02:36:22 +0100112#define IO_TCTX_REFS_CACHE_NR (1U << 10)
113
Jens Axboe2b188cc2019-01-07 10:46:33 -0700114struct io_uring {
115 u32 head ____cacheline_aligned_in_smp;
116 u32 tail ____cacheline_aligned_in_smp;
117};
118
Stefan Bühler1e84b972019-04-24 23:54:16 +0200119/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000120 * This data is shared with the application through the mmap at offsets
121 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 *
123 * The offsets to the member fields are published through struct
124 * io_sqring_offsets when calling io_uring_setup.
125 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000126struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200127 /*
128 * Head and tail offsets into the ring; the offsets need to be
129 * masked to get valid indices.
130 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000131 * The kernel controls head of the sq ring and the tail of the cq ring,
132 * and the application controls tail of the sq ring and the head of the
133 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200134 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000135 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200136 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000137 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200138 * ring_entries - 1)
139 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000140 u32 sq_ring_mask, cq_ring_mask;
141 /* Ring sizes (constant, power of 2) */
142 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200143 /*
144 * Number of invalid entries dropped by the kernel due to
145 * invalid index stored in array
146 *
147 * Written by the kernel, shouldn't be modified by the
148 * application (i.e. get number of "new events" by comparing to
149 * cached value).
150 *
151 * After a new SQ head value was read by the application this
152 * counter includes all submissions that were dropped reaching
153 * the new SQ head (and possibly more).
154 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000155 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200156 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200157 * Runtime SQ flags
Stefan Bühler1e84b972019-04-24 23:54:16 +0200158 *
159 * Written by the kernel, shouldn't be modified by the
160 * application.
161 *
162 * The application needs a full memory barrier before checking
163 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
164 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000165 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200166 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200167 * Runtime CQ flags
168 *
169 * Written by the application, shouldn't be modified by the
170 * kernel.
171 */
Pavel Begunkovfe7e3252021-06-24 15:09:57 +0100172 u32 cq_flags;
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200173 /*
Stefan Bühler1e84b972019-04-24 23:54:16 +0200174 * Number of completion events lost because the queue was full;
175 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800176 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200177 * the completion queue.
178 *
179 * Written by the kernel, shouldn't be modified by the
180 * application (i.e. get number of "new events" by comparing to
181 * cached value).
182 *
183 * As completion events come in out of order this counter is not
184 * ordered with any other data.
185 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000186 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200187 /*
188 * Ring buffer of completion events.
189 *
190 * The kernel writes completion events fresh every time they are
191 * produced, so the application is allowed to modify pending
192 * entries.
193 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000194 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700195};
196
Pavel Begunkov45d189c2021-02-10 00:03:07 +0000197enum io_uring_cmd_flags {
198 IO_URING_F_NONBLOCK = 1,
Pavel Begunkov889fca72021-02-10 00:03:09 +0000199 IO_URING_F_COMPLETE_DEFER = 2,
Pavel Begunkov45d189c2021-02-10 00:03:07 +0000200};
201
Jens Axboeedafcce2019-01-09 09:16:05 -0700202struct io_mapped_ubuf {
203 u64 ubuf;
Pavel Begunkov4751f532021-04-01 15:43:55 +0100204 u64 ubuf_end;
Jens Axboeedafcce2019-01-09 09:16:05 -0700205 unsigned int nr_bvecs;
Jens Axboede293932020-09-17 16:19:16 -0600206 unsigned long acct_pages;
Pavel Begunkov41edf1a2021-04-25 14:32:23 +0100207 struct bio_vec bvec[];
Jens Axboeedafcce2019-01-09 09:16:05 -0700208};
209
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000210struct io_ring_ctx;
211
Pavel Begunkov6c2450a2021-02-23 12:40:22 +0000212struct io_overflow_cqe {
213 struct io_uring_cqe cqe;
214 struct list_head list;
215};
216
Pavel Begunkova04b0ac2021-04-01 15:44:04 +0100217struct io_fixed_file {
218 /* file * with additional FFS_* flags */
219 unsigned long file_ptr;
220};
221
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000222struct io_rsrc_put {
223 struct list_head list;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +0100224 u64 tag;
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000225 union {
226 void *rsrc;
227 struct file *file;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +0100228 struct io_mapped_ubuf *buf;
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000229 };
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000230};
231
Pavel Begunkovaeca2412021-04-11 01:46:37 +0100232struct io_file_table {
Pavel Begunkov042b0d82021-08-09 13:04:01 +0100233 struct io_fixed_file *files;
Jens Axboe31b51512019-01-18 22:56:34 -0700234};
235
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100236struct io_rsrc_node {
Xiaoguang Wang05589552020-03-31 14:05:18 +0800237 struct percpu_ref refs;
238 struct list_head node;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000239 struct list_head rsrc_list;
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100240 struct io_rsrc_data *rsrc_data;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600241 struct llist_node llist;
Pavel Begunkove2978222020-11-18 14:56:26 +0000242 bool done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800243};
244
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +0100245typedef void (rsrc_put_fn)(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc);
246
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100247struct io_rsrc_data {
Jens Axboe05f3fb32019-12-09 11:22:50 -0700248 struct io_ring_ctx *ctx;
249
Pavel Begunkov2d091d62021-06-14 02:36:21 +0100250 u64 **tags;
251 unsigned int nr;
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +0100252 rsrc_put_fn *do_put;
Pavel Begunkov3e942492021-04-11 01:46:34 +0100253 atomic_t refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700254 struct completion done;
Hao Xu8bad28d2021-02-19 17:19:36 +0800255 bool quiesce;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700256};
257
Jens Axboe5a2e7452020-02-23 16:23:11 -0700258struct io_buffer {
259 struct list_head list;
260 __u64 addr;
Thadeu Lima de Souza Cascardod1f82802021-05-05 09:47:06 -0300261 __u32 len;
Jens Axboe5a2e7452020-02-23 16:23:11 -0700262 __u16 bid;
263};
264
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200265struct io_restriction {
266 DECLARE_BITMAP(register_op, IORING_REGISTER_LAST);
267 DECLARE_BITMAP(sqe_op, IORING_OP_LAST);
268 u8 sqe_flags_allowed;
269 u8 sqe_flags_required;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +0200270 bool registered;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200271};
272
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700273enum {
274 IO_SQ_THREAD_SHOULD_STOP = 0,
275 IO_SQ_THREAD_SHOULD_PARK,
276};
277
Jens Axboe534ca6d2020-09-02 13:52:19 -0600278struct io_sq_data {
279 refcount_t refs;
Pavel Begunkov9e138a42021-03-14 20:57:12 +0000280 atomic_t park_pending;
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +0000281 struct mutex lock;
Jens Axboe69fb2132020-09-14 11:16:23 -0600282
283 /* ctx's that are using this sqd */
284 struct list_head ctx_list;
Jens Axboe69fb2132020-09-14 11:16:23 -0600285
Jens Axboe534ca6d2020-09-02 13:52:19 -0600286 struct task_struct *thread;
287 struct wait_queue_head wait;
Xiaoguang Wang08369242020-11-03 14:15:59 +0800288
289 unsigned sq_thread_idle;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700290 int sq_cpu;
291 pid_t task_pid;
Jens Axboe5c2469e2021-03-11 10:17:56 -0700292 pid_t task_tgid;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700293
294 unsigned long state;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700295 struct completion exited;
Jens Axboe534ca6d2020-09-02 13:52:19 -0600296};
297
Pavel Begunkov6dd0be12021-02-10 00:03:13 +0000298#define IO_COMPL_BATCH 32
Pavel Begunkov6ff119a2021-02-10 00:03:18 +0000299#define IO_REQ_CACHE_SIZE 32
Pavel Begunkovbf019da2021-02-10 00:03:17 +0000300#define IO_REQ_ALLOC_BATCH 8
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000301
Pavel Begunkova1ab7b32021-02-18 18:29:42 +0000302struct io_submit_link {
303 struct io_kiocb *head;
304 struct io_kiocb *last;
305};
306
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000307struct io_submit_state {
308 struct blk_plug plug;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +0000309 struct io_submit_link link;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000310
311 /*
312 * io_kiocb alloc cache
313 */
Pavel Begunkovbf019da2021-02-10 00:03:17 +0000314 void *reqs[IO_REQ_CACHE_SIZE];
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000315 unsigned int free_reqs;
316
317 bool plug_started;
318
319 /*
320 * Batch completion logic
321 */
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +0100322 struct io_kiocb *compl_reqs[IO_COMPL_BATCH];
323 unsigned int compl_nr;
324 /* inline/task_work completion list, under ->uring_lock */
325 struct list_head free_list;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000326
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000327 unsigned int ios_left;
328};
329
Jens Axboe2b188cc2019-01-07 10:46:33 -0700330struct io_ring_ctx {
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100331 /* const or read-mostly hot data */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700332 struct {
333 struct percpu_ref refs;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700334
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100335 struct io_rings *rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700336 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800337 unsigned int compat: 1;
Randy Dunlape1d85332020-02-05 20:57:10 -0800338 unsigned int drain_next: 1;
339 unsigned int eventfd_async: 1;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200340 unsigned int restricted: 1;
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +0100341 unsigned int off_timeout_used: 1;
Pavel Begunkov10c66902021-06-15 16:47:56 +0100342 unsigned int drain_active: 1;
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100343 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700344
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100345 /* submission data */
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100346 struct {
Pavel Begunkov0499e582021-06-14 23:37:29 +0100347 struct mutex uring_lock;
348
Hristo Venev75b28af2019-08-26 17:23:46 +0000349 /*
350 * Ring buffer of indices into array of io_uring_sqe, which is
351 * mmapped by the application using the IORING_OFF_SQES offset.
352 *
353 * This indirection could e.g. be used to assign fixed
354 * io_uring_sqe entries to operations and only submit them to
355 * the queue when needed.
356 *
357 * The kernel modifies neither the indices array nor the entries
358 * array.
359 */
360 u32 *sq_array;
Pavel Begunkovc7af47c2021-06-14 23:37:20 +0100361 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700362 unsigned cached_sq_head;
363 unsigned sq_entries;
Jens Axboede0617e2019-04-06 21:51:27 -0600364 struct list_head defer_list;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100365
366 /*
367 * Fixed resources fast path, should be accessed only under
368 * uring_lock, and updated through io_uring_register(2)
369 */
370 struct io_rsrc_node *rsrc_node;
371 struct io_file_table file_table;
372 unsigned nr_user_files;
373 unsigned nr_user_bufs;
374 struct io_mapped_ubuf **user_bufs;
375
376 struct io_submit_state submit_state;
Jens Axboe5262f562019-09-17 12:26:57 -0600377 struct list_head timeout_list;
Pavel Begunkovef9dd632021-08-28 19:54:38 -0600378 struct list_head ltimeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700379 struct list_head cq_overflow_list;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100380 struct xarray io_buffers;
381 struct xarray personalities;
382 u32 pers_next;
383 unsigned sq_thread_idle;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700384 } ____cacheline_aligned_in_smp;
385
Pavel Begunkovd0acdee2021-05-16 22:58:12 +0100386 /* IRQ completion list, under ->completion_lock */
387 struct list_head locked_free_list;
388 unsigned int locked_free_nr;
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700389
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +0100390 const struct cred *sq_creds; /* cred used for __io_sq_thread() */
Jens Axboe534ca6d2020-09-02 13:52:19 -0600391 struct io_sq_data *sq_data; /* if using sq thread polling */
392
Jens Axboe90554202020-09-03 12:12:41 -0600393 struct wait_queue_head sqo_sq_wait;
Jens Axboe69fb2132020-09-14 11:16:23 -0600394 struct list_head sqd_list;
Hristo Venev75b28af2019-08-26 17:23:46 +0000395
Pavel Begunkov5ed7a372021-06-14 23:37:27 +0100396 unsigned long check_cq_overflow;
397
Jens Axboe206aefd2019-11-07 18:27:42 -0700398 struct {
399 unsigned cached_cq_tail;
400 unsigned cq_entries;
Jens Axboe206aefd2019-11-07 18:27:42 -0700401 struct eventfd_ctx *cq_ev_fd;
Pavel Begunkov0499e582021-06-14 23:37:29 +0100402 struct wait_queue_head poll_wait;
403 struct wait_queue_head cq_wait;
404 unsigned cq_extra;
405 atomic_t cq_timeouts;
406 struct fasync_struct *cq_fasync;
407 unsigned cq_last_tm_flush;
Jens Axboe206aefd2019-11-07 18:27:42 -0700408 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700409
410 struct {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700411 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700412
Jens Axboe89850fc2021-08-10 15:11:51 -0600413 spinlock_t timeout_lock;
414
Jens Axboedef596e2019-01-09 08:59:42 -0700415 /*
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300416 * ->iopoll_list is protected by the ctx->uring_lock for
Jens Axboedef596e2019-01-09 08:59:42 -0700417 * io_uring instances that don't use IORING_SETUP_SQPOLL.
418 * For SQPOLL, only the single threaded io_sq_thread() will
419 * manipulate the list, hence no extra locking is needed there.
420 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300421 struct list_head iopoll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700422 struct hlist_head *cancel_hash;
423 unsigned cancel_hash_bits;
Hao Xu915b3dd2021-06-28 05:37:30 +0800424 bool poll_multi_queue;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700425 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600426
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200427 struct io_restriction restrictions;
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700428
Pavel Begunkovb13a8912021-05-16 22:58:07 +0100429 /* slow path rsrc auxilary data, used by update/register */
430 struct {
431 struct io_rsrc_node *rsrc_backup_node;
432 struct io_mapped_ubuf *dummy_ubuf;
433 struct io_rsrc_data *file_data;
434 struct io_rsrc_data *buf_data;
435
436 struct delayed_work rsrc_put_work;
437 struct llist_head rsrc_put_llist;
438 struct list_head rsrc_ref_list;
439 spinlock_t rsrc_ref_lock;
440 };
441
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700442 /* Keep this last, we don't need it for the fast path */
Pavel Begunkovb986af72021-05-16 22:58:06 +0100443 struct {
444 #if defined(CONFIG_UNIX)
445 struct socket *ring_sock;
446 #endif
447 /* hashed buffered write serialization */
448 struct io_wq_hash *hash_map;
449
450 /* Only used for accounting purposes */
451 struct user_struct *user;
452 struct mm_struct *mm_account;
453
454 /* ctx exit and cancelation */
Pavel Begunkov9011bf92021-06-30 21:54:03 +0100455 struct llist_head fallback_llist;
456 struct delayed_work fallback_work;
Pavel Begunkovb986af72021-05-16 22:58:06 +0100457 struct work_struct exit_work;
458 struct list_head tctx_list;
459 struct completion ref_comp;
460 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700461};
462
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100463struct io_uring_task {
464 /* submission side */
Pavel Begunkov09899b12021-06-14 02:36:22 +0100465 int cached_refs;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100466 struct xarray xa;
467 struct wait_queue_head wait;
Stefan Metzmacheree53fb22021-03-15 12:56:57 +0100468 const struct io_ring_ctx *last;
469 struct io_wq *io_wq;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100470 struct percpu_counter inflight;
Pavel Begunkovb303fe22021-04-11 01:46:26 +0100471 atomic_t inflight_tracked;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100472 atomic_t in_idle;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100473
474 spinlock_t task_lock;
475 struct io_wq_work_list task_list;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100476 struct callback_head task_work;
Pavel Begunkov6294f362021-08-10 17:53:55 +0100477 bool task_running;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100478};
479
Jens Axboe09bb8392019-03-13 12:39:28 -0600480/*
481 * First field must be the file pointer in all the
482 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
483 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700484struct io_poll_iocb {
485 struct file *file;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000486 struct wait_queue_head *head;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700487 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600488 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700489 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700490 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700491};
492
Pavel Begunkov9d805892021-04-13 02:58:40 +0100493struct io_poll_update {
Pavel Begunkov018043b2020-10-27 23:17:18 +0000494 struct file *file;
Pavel Begunkov9d805892021-04-13 02:58:40 +0100495 u64 old_user_data;
496 u64 new_user_data;
497 __poll_t events;
Jens Axboeb69de282021-03-17 08:37:41 -0600498 bool update_events;
499 bool update_user_data;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000500};
501
Jens Axboeb5dba592019-12-11 14:02:38 -0700502struct io_close {
503 struct file *file;
Jens Axboeb5dba592019-12-11 14:02:38 -0700504 int fd;
Pavel Begunkov7df778b2021-09-24 20:04:29 +0100505 u32 file_slot;
Jens Axboeb5dba592019-12-11 14:02:38 -0700506};
507
Jens Axboead8a48a2019-11-15 08:49:11 -0700508struct io_timeout_data {
509 struct io_kiocb *req;
510 struct hrtimer timer;
511 struct timespec64 ts;
512 enum hrtimer_mode mode;
Jens Axboe50c1df22021-08-27 17:11:06 -0600513 u32 flags;
Jens Axboead8a48a2019-11-15 08:49:11 -0700514};
515
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700516struct io_accept {
517 struct file *file;
518 struct sockaddr __user *addr;
519 int __user *addr_len;
520 int flags;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +0100521 u32 file_slot;
Jens Axboe09952e32020-03-19 20:16:56 -0600522 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700523};
524
525struct io_sync {
526 struct file *file;
527 loff_t len;
528 loff_t off;
529 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700530 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700531};
532
Jens Axboefbf23842019-12-17 18:45:56 -0700533struct io_cancel {
534 struct file *file;
535 u64 addr;
536};
537
Jens Axboeb29472e2019-12-17 18:50:29 -0700538struct io_timeout {
539 struct file *file;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +0300540 u32 off;
541 u32 target_seq;
Pavel Begunkov135fcde2020-07-13 23:37:12 +0300542 struct list_head list;
Pavel Begunkov90cd7e42020-10-27 23:25:36 +0000543 /* head of the link, used by linked timeouts only */
544 struct io_kiocb *head;
Jens Axboe89b263f2021-08-10 15:14:18 -0600545 /* for linked completions */
546 struct io_kiocb *prev;
Jens Axboeb29472e2019-12-17 18:50:29 -0700547};
548
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100549struct io_timeout_rem {
550 struct file *file;
551 u64 addr;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000552
553 /* timeout update */
554 struct timespec64 ts;
555 u32 flags;
Pavel Begunkovf1042b62021-08-28 19:54:39 -0600556 bool ltimeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100557};
558
Jens Axboe9adbd452019-12-20 08:45:55 -0700559struct io_rw {
560 /* NOTE: kiocb has the file as the first member, so don't do it here */
561 struct kiocb kiocb;
562 u64 addr;
563 u64 len;
564};
565
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700566struct io_connect {
567 struct file *file;
568 struct sockaddr __user *addr;
569 int addr_len;
570};
571
Jens Axboee47293f2019-12-20 08:58:21 -0700572struct io_sr_msg {
573 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700574 union {
Pavel Begunkov4af34172021-04-11 01:46:30 +0100575 struct compat_msghdr __user *umsg_compat;
576 struct user_msghdr __user *umsg;
577 void __user *buf;
Jens Axboefddafac2020-01-04 20:19:44 -0700578 };
Jens Axboee47293f2019-12-20 08:58:21 -0700579 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700580 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700581 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700582 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700583};
584
Jens Axboe15b71ab2019-12-11 11:20:36 -0700585struct io_open {
586 struct file *file;
587 int dfd;
Pavel Begunkovb9445592021-08-25 12:25:45 +0100588 u32 file_slot;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700589 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700590 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600591 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700592};
593
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000594struct io_rsrc_update {
Jens Axboe05f3fb32019-12-09 11:22:50 -0700595 struct file *file;
596 u64 arg;
597 u32 nr_args;
598 u32 offset;
599};
600
Jens Axboe4840e412019-12-25 22:03:45 -0700601struct io_fadvise {
602 struct file *file;
603 u64 offset;
604 u32 len;
605 u32 advice;
606};
607
Jens Axboec1ca7572019-12-25 22:18:28 -0700608struct io_madvise {
609 struct file *file;
610 u64 addr;
611 u32 len;
612 u32 advice;
613};
614
Jens Axboe3e4827b2020-01-08 15:18:09 -0700615struct io_epoll {
616 struct file *file;
617 int epfd;
618 int op;
619 int fd;
620 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700621};
622
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300623struct io_splice {
624 struct file *file_out;
625 struct file *file_in;
626 loff_t off_out;
627 loff_t off_in;
628 u64 len;
629 unsigned int flags;
630};
631
Jens Axboeddf0322d2020-02-23 16:41:33 -0700632struct io_provide_buf {
633 struct file *file;
634 __u64 addr;
Pavel Begunkov38134ad2021-04-15 13:07:39 +0100635 __u32 len;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700636 __u32 bgid;
637 __u16 nbufs;
638 __u16 bid;
639};
640
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700641struct io_statx {
642 struct file *file;
643 int dfd;
644 unsigned int mask;
645 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700646 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700647 struct statx __user *buffer;
648};
649
Jens Axboe36f4fa62020-09-05 11:14:22 -0600650struct io_shutdown {
651 struct file *file;
652 int how;
653};
654
Jens Axboe80a261f2020-09-28 14:23:58 -0600655struct io_rename {
656 struct file *file;
657 int old_dfd;
658 int new_dfd;
659 struct filename *oldpath;
660 struct filename *newpath;
661 int flags;
662};
663
Jens Axboe14a11432020-09-28 14:27:37 -0600664struct io_unlink {
665 struct file *file;
666 int dfd;
667 int flags;
668 struct filename *filename;
669};
670
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +0700671struct io_mkdir {
672 struct file *file;
673 int dfd;
674 umode_t mode;
675 struct filename *filename;
676};
677
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +0700678struct io_symlink {
679 struct file *file;
680 int new_dfd;
681 struct filename *oldpath;
682 struct filename *newpath;
683};
684
Dmitry Kadashevcf30da92021-07-08 13:34:47 +0700685struct io_hardlink {
686 struct file *file;
687 int old_dfd;
688 int new_dfd;
689 struct filename *oldpath;
690 struct filename *newpath;
691 int flags;
692};
693
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300694struct io_completion {
695 struct file *file;
Pavel Begunkov8c3f9cd2021-02-28 22:35:15 +0000696 u32 cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300697};
698
Jens Axboef499a022019-12-02 16:28:46 -0700699struct io_async_connect {
700 struct sockaddr_storage address;
701};
702
Jens Axboe03b12302019-12-02 18:50:25 -0700703struct io_async_msghdr {
704 struct iovec fast_iov[UIO_FASTIOV];
Pavel Begunkov257e84a2021-02-05 00:58:00 +0000705 /* points to an allocated iov, if NULL we use fast_iov instead */
706 struct iovec *free_iov;
Jens Axboe03b12302019-12-02 18:50:25 -0700707 struct sockaddr __user *uaddr;
708 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700709 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700710};
711
Jens Axboef67676d2019-12-02 11:03:47 -0700712struct io_async_rw {
713 struct iovec fast_iov[UIO_FASTIOV];
Jens Axboeff6165b2020-08-13 09:47:43 -0600714 const struct iovec *free_iovec;
715 struct iov_iter iter;
Jens Axboecd658692021-09-10 11:19:14 -0600716 struct iov_iter_state iter_state;
Jens Axboe227c0c92020-08-13 11:51:40 -0600717 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600718 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700719};
720
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300721enum {
722 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
723 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
724 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
725 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
726 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700727 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300728
Pavel Begunkovdddca222021-04-27 16:13:52 +0100729 /* first byte is taken by user flags, shift it to not overlap */
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +0100730 REQ_F_FAIL_BIT = 8,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300731 REQ_F_INFLIGHT_BIT,
732 REQ_F_CUR_POS_BIT,
733 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300734 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300735 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700736 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700737 REQ_F_BUFFER_SELECTED_BIT,
Pavel Begunkove342c802021-01-19 13:32:47 +0000738 REQ_F_COMPLETE_INLINE_BIT,
Jens Axboe230d50d2021-04-01 20:41:15 -0600739 REQ_F_REISSUE_BIT,
Pavel Begunkovb8e64b52021-06-17 18:14:02 +0100740 REQ_F_CREDS_BIT,
Pavel Begunkov20e60a32021-08-11 19:28:30 +0100741 REQ_F_REFCOUNT_BIT,
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +0100742 REQ_F_ARM_LTIMEOUT_BIT,
Jens Axboe7b29f922021-03-12 08:30:14 -0700743 /* keep async read/write and isreg together and in order */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100744 REQ_F_NOWAIT_READ_BIT,
745 REQ_F_NOWAIT_WRITE_BIT,
Jens Axboe7b29f922021-03-12 08:30:14 -0700746 REQ_F_ISREG_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700747
748 /* not a real bit, just to check we're not overflowing the space */
749 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300750};
751
752enum {
753 /* ctx owns file */
754 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
755 /* drain existing IO first */
756 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
757 /* linked sqes */
758 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
759 /* doesn't sever on completion < 0 */
760 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
761 /* IOSQE_ASYNC */
762 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700763 /* IOSQE_BUFFER_SELECT */
764 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300765
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300766 /* fail rest of links */
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +0100767 REQ_F_FAIL = BIT(REQ_F_FAIL_BIT),
Pavel Begunkovb05a1bc2021-03-04 13:59:24 +0000768 /* on inflight list, should be cancelled and waited on exit reliably */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300769 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
770 /* read/write uses file position */
771 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
772 /* must not punt to workers */
773 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100774 /* has or had linked timeout */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300775 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300776 /* needs cleanup */
777 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700778 /* already went through poll handler */
779 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700780 /* buffer already selected */
781 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Pavel Begunkove342c802021-01-19 13:32:47 +0000782 /* completion is deferred through io_comp_state */
783 REQ_F_COMPLETE_INLINE = BIT(REQ_F_COMPLETE_INLINE_BIT),
Jens Axboe230d50d2021-04-01 20:41:15 -0600784 /* caller should reissue async */
785 REQ_F_REISSUE = BIT(REQ_F_REISSUE_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700786 /* supports async reads */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100787 REQ_F_NOWAIT_READ = BIT(REQ_F_NOWAIT_READ_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700788 /* supports async writes */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100789 REQ_F_NOWAIT_WRITE = BIT(REQ_F_NOWAIT_WRITE_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700790 /* regular file */
791 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkovb8e64b52021-06-17 18:14:02 +0100792 /* has creds assigned */
793 REQ_F_CREDS = BIT(REQ_F_CREDS_BIT),
Pavel Begunkov20e60a32021-08-11 19:28:30 +0100794 /* skip refcounting if not set */
795 REQ_F_REFCOUNT = BIT(REQ_F_REFCOUNT_BIT),
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +0100796 /* there is a linked timeout that has to be armed */
797 REQ_F_ARM_LTIMEOUT = BIT(REQ_F_ARM_LTIMEOUT_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700798};
799
800struct async_poll {
801 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600802 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300803};
804
Pavel Begunkovf237c302021-08-18 12:42:46 +0100805typedef void (*io_req_tw_func_t)(struct io_kiocb *req, bool *locked);
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100806
Jens Axboe7cbf1722021-02-10 00:03:20 +0000807struct io_task_work {
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100808 union {
809 struct io_wq_work_node node;
810 struct llist_node fallback_node;
811 };
812 io_req_tw_func_t func;
Jens Axboe7cbf1722021-02-10 00:03:20 +0000813};
814
Pavel Begunkov992da012021-06-10 16:37:37 +0100815enum {
816 IORING_RSRC_FILE = 0,
817 IORING_RSRC_BUFFER = 1,
818};
819
Jens Axboe09bb8392019-03-13 12:39:28 -0600820/*
821 * NOTE! Each of the iocb union members has the file pointer
822 * as the first entry in their struct definition. So you can
823 * access the file pointer through any of the sub-structs,
824 * or directly as just 'ki_filp' in this struct.
825 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700826struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700827 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600828 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700829 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700830 struct io_poll_iocb poll;
Pavel Begunkov9d805892021-04-13 02:58:40 +0100831 struct io_poll_update poll_update;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700832 struct io_accept accept;
833 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700834 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700835 struct io_timeout timeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100836 struct io_timeout_rem timeout_rem;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700837 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700838 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700839 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700840 struct io_close close;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000841 struct io_rsrc_update rsrc_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700842 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700843 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700844 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300845 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700846 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700847 struct io_statx statx;
Jens Axboe36f4fa62020-09-05 11:14:22 -0600848 struct io_shutdown shutdown;
Jens Axboe80a261f2020-09-28 14:23:58 -0600849 struct io_rename rename;
Jens Axboe14a11432020-09-28 14:27:37 -0600850 struct io_unlink unlink;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +0700851 struct io_mkdir mkdir;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +0700852 struct io_symlink symlink;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +0700853 struct io_hardlink hardlink;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300854 /* use only after cleaning per-op data, see io_clean_op() */
855 struct io_completion compl;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700856 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700857
Jens Axboee8c2bc12020-08-15 18:44:09 -0700858 /* opcode allocated if it needs to store data for async defer */
859 void *async_data;
Jens Axboed625c6e2019-12-17 19:53:05 -0700860 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800861 /* polled IO has completed */
862 u8 iopoll_completed;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700863
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700864 u16 buf_index;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300865 u32 result;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700866
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300867 struct io_ring_ctx *ctx;
868 unsigned int flags;
Jens Axboeabc54d62021-02-24 13:32:30 -0700869 atomic_t refs;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300870 struct task_struct *task;
871 u64 user_data;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700872
Pavel Begunkovf2f87372020-10-27 23:25:37 +0000873 struct io_kiocb *link;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000874 struct percpu_ref *fixed_rsrc_refs;
Jens Axboed7718a92020-02-14 22:23:12 -0700875
Pavel Begunkovb303fe22021-04-11 01:46:26 +0100876 /* used with ctx->iopoll_list with reads/writes */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300877 struct list_head inflight_entry;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100878 struct io_task_work io_task_work;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300879 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
880 struct hlist_node hash_node;
881 struct async_poll *apoll;
882 struct io_wq_work work;
Pavel Begunkovfe7e3252021-06-24 15:09:57 +0100883 const struct cred *creds;
Pavel Begunkovc10d1f92021-06-17 18:14:01 +0100884
Pavel Begunkoveae071c2021-04-25 14:32:24 +0100885 /* store used ubuf, so we can prevent reloading */
886 struct io_mapped_ubuf *imu;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700887};
888
Pavel Begunkov13bf43f2021-03-06 11:02:12 +0000889struct io_tctx_node {
890 struct list_head ctx_node;
891 struct task_struct *task;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +0000892 struct io_ring_ctx *ctx;
893};
894
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300895struct io_defer_entry {
896 struct list_head list;
897 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300898 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300899};
900
Jens Axboed3656342019-12-18 09:50:26 -0700901struct io_op_def {
Jens Axboed3656342019-12-18 09:50:26 -0700902 /* needs req->file assigned */
903 unsigned needs_file : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700904 /* hash wq insertion if file is a regular file */
905 unsigned hash_reg_file : 1;
906 /* unbound wq insertion if file is a non-regular file */
907 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700908 /* opcode is not supported by this kernel */
909 unsigned not_supported : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700910 /* set if opcode supports polled "wait" */
911 unsigned pollin : 1;
912 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700913 /* op supports buffer selection */
914 unsigned buffer_select : 1;
Pavel Begunkov26f05052021-02-28 22:35:18 +0000915 /* do prep async if is going to be punted */
916 unsigned needs_async_setup : 1;
Jens Axboe27926b62020-10-28 09:33:23 -0600917 /* should block plug */
918 unsigned plug : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700919 /* size of async data needed, if any */
920 unsigned short async_size;
Jens Axboed3656342019-12-18 09:50:26 -0700921};
922
Jens Axboe09186822020-10-13 15:01:40 -0600923static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300924 [IORING_OP_NOP] = {},
925 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700926 .needs_file = 1,
927 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700928 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700929 .buffer_select = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000930 .needs_async_setup = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600931 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700932 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700933 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300934 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700935 .needs_file = 1,
936 .hash_reg_file = 1,
937 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700938 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000939 .needs_async_setup = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600940 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700941 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700942 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300943 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700944 .needs_file = 1,
945 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300946 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700947 .needs_file = 1,
948 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700949 .pollin = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600950 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700951 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700952 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300953 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700954 .needs_file = 1,
955 .hash_reg_file = 1,
956 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700957 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600958 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700959 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700960 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300961 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700962 .needs_file = 1,
963 .unbound_nonreg_file = 1,
964 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300965 [IORING_OP_POLL_REMOVE] = {},
966 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700967 .needs_file = 1,
968 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300969 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700970 .needs_file = 1,
971 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700972 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000973 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700974 .async_size = sizeof(struct io_async_msghdr),
Jens Axboed3656342019-12-18 09:50:26 -0700975 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300976 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700977 .needs_file = 1,
978 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700979 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700980 .buffer_select = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000981 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700982 .async_size = sizeof(struct io_async_msghdr),
Jens Axboed3656342019-12-18 09:50:26 -0700983 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300984 [IORING_OP_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700985 .async_size = sizeof(struct io_timeout_data),
Jens Axboed3656342019-12-18 09:50:26 -0700986 },
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000987 [IORING_OP_TIMEOUT_REMOVE] = {
988 /* used by timeout updates' prep() */
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000989 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300990 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700991 .needs_file = 1,
992 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700993 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700994 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300995 [IORING_OP_ASYNC_CANCEL] = {},
996 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700997 .async_size = sizeof(struct io_timeout_data),
Jens Axboed3656342019-12-18 09:50:26 -0700998 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300999 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -07001000 .needs_file = 1,
1001 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001002 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +00001003 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001004 .async_size = sizeof(struct io_async_connect),
Jens Axboed3656342019-12-18 09:50:26 -07001005 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001006 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -07001007 .needs_file = 1,
1008 },
Jens Axboe44526be2021-02-15 13:32:18 -07001009 [IORING_OP_OPENAT] = {},
1010 [IORING_OP_CLOSE] = {},
1011 [IORING_OP_FILES_UPDATE] = {},
1012 [IORING_OP_STATX] = {},
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001013 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -07001014 .needs_file = 1,
1015 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001016 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -07001017 .buffer_select = 1,
Jens Axboe27926b62020-10-28 09:33:23 -06001018 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001019 .async_size = sizeof(struct io_async_rw),
Jens Axboe3a6820f2019-12-22 15:19:35 -07001020 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001021 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -07001022 .needs_file = 1,
Jens Axboe7b3188e2021-08-30 19:37:41 -06001023 .hash_reg_file = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -07001024 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001025 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -06001026 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001027 .async_size = sizeof(struct io_async_rw),
Jens Axboe3a6820f2019-12-22 15:19:35 -07001028 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001029 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -07001030 .needs_file = 1,
1031 },
Jens Axboe44526be2021-02-15 13:32:18 -07001032 [IORING_OP_MADVISE] = {},
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001033 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -07001034 .needs_file = 1,
1035 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001036 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -07001037 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001038 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -07001039 .needs_file = 1,
1040 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001041 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -07001042 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -07001043 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001044 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -07001045 },
Jens Axboe3e4827b2020-01-08 15:18:09 -07001046 [IORING_OP_EPOLL_CTL] = {
1047 .unbound_nonreg_file = 1,
Jens Axboe3e4827b2020-01-08 15:18:09 -07001048 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +03001049 [IORING_OP_SPLICE] = {
1050 .needs_file = 1,
1051 .hash_reg_file = 1,
1052 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -07001053 },
1054 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -07001055 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03001056 [IORING_OP_TEE] = {
1057 .needs_file = 1,
1058 .hash_reg_file = 1,
1059 .unbound_nonreg_file = 1,
1060 },
Jens Axboe36f4fa62020-09-05 11:14:22 -06001061 [IORING_OP_SHUTDOWN] = {
1062 .needs_file = 1,
1063 },
Jens Axboe44526be2021-02-15 13:32:18 -07001064 [IORING_OP_RENAMEAT] = {},
1065 [IORING_OP_UNLINKAT] = {},
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07001066 [IORING_OP_MKDIRAT] = {},
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07001067 [IORING_OP_SYMLINKAT] = {},
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07001068 [IORING_OP_LINKAT] = {},
Jens Axboed3656342019-12-18 09:50:26 -07001069};
1070
Pavel Begunkov0756a862021-08-15 10:40:25 +01001071/* requests with any of those set should undergo io_disarm_next() */
1072#define IO_DISARM_MASK (REQ_F_ARM_LTIMEOUT | REQ_F_LINK_TIMEOUT | REQ_F_FAIL)
1073
Pavel Begunkov7a612352021-03-09 00:37:59 +00001074static bool io_disarm_next(struct io_kiocb *req);
Pavel Begunkoveef51da2021-06-14 02:36:15 +01001075static void io_uring_del_tctx_node(unsigned long index);
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00001076static void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
1077 struct task_struct *task,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001078 bool cancel_all);
Pavel Begunkov78cc6872021-06-14 02:36:23 +01001079static void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00001080
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001081static bool io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
1082 long res, unsigned int cflags);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001083static void io_put_req(struct io_kiocb *req);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01001084static void io_put_req_deferred(struct io_kiocb *req);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001085static void io_dismantle_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001086static void io_queue_linked_timeout(struct io_kiocb *req);
Pavel Begunkovfdecb662021-04-25 14:32:20 +01001087static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01001088 struct io_uring_rsrc_update2 *up,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01001089 unsigned nr_args);
Pavel Begunkov68fb8972021-03-19 17:22:41 +00001090static void io_clean_op(struct io_kiocb *req);
Pavel Begunkovac177052021-08-09 13:04:02 +01001091static struct file *io_file_get(struct io_ring_ctx *ctx,
Pavel Begunkov8371adf2020-10-10 18:34:08 +01001092 struct io_kiocb *req, int fd, bool fixed);
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00001093static void __io_queue_sqe(struct io_kiocb *req);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001094static void io_rsrc_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -06001095
Pavel Begunkov907d1df2021-01-26 23:35:10 +00001096static void io_req_task_queue(struct io_kiocb *req);
Pavel Begunkov2a2758f2021-06-17 18:14:00 +01001097static void io_submit_flush_completions(struct io_ring_ctx *ctx);
Pavel Begunkov179ae0d2021-02-28 22:35:20 +00001098static int io_req_prep_async(struct io_kiocb *req);
Jens Axboe9a56a232019-01-09 09:06:50 -07001099
Pavel Begunkovb9445592021-08-25 12:25:45 +01001100static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
1101 unsigned int issue_flags, u32 slot_index);
Pavel Begunkov7df778b2021-09-24 20:04:29 +01001102static int io_close_fixed(struct io_kiocb *req, unsigned int issue_flags);
1103
Pavel Begunkovf1042b62021-08-28 19:54:39 -06001104static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer);
Pavel Begunkovb9445592021-08-25 12:25:45 +01001105
Jens Axboe2b188cc2019-01-07 10:46:33 -07001106static struct kmem_cache *req_cachep;
1107
Jens Axboe09186822020-10-13 15:01:40 -06001108static const struct file_operations io_uring_fops;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001109
1110struct sock *io_uring_get_socket(struct file *file)
1111{
1112#if defined(CONFIG_UNIX)
1113 if (file->f_op == &io_uring_fops) {
1114 struct io_ring_ctx *ctx = file->private_data;
1115
1116 return ctx->ring_sock->sk;
1117 }
1118#endif
1119 return NULL;
1120}
1121EXPORT_SYMBOL(io_uring_get_socket);
1122
Pavel Begunkovf237c302021-08-18 12:42:46 +01001123static inline void io_tw_lock(struct io_ring_ctx *ctx, bool *locked)
1124{
1125 if (!*locked) {
1126 mutex_lock(&ctx->uring_lock);
1127 *locked = true;
1128 }
1129}
1130
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001131#define io_for_each_link(pos, head) \
1132 for (pos = (head); pos; pos = pos->link)
1133
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001134/*
1135 * Shamelessly stolen from the mm implementation of page reference checking,
1136 * see commit f958d7b528b1 for details.
1137 */
1138#define req_ref_zero_or_close_to_overflow(req) \
1139 ((unsigned int) atomic_read(&(req->refs)) + 127u <= 127u)
1140
1141static inline bool req_ref_inc_not_zero(struct io_kiocb *req)
1142{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001143 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001144 return atomic_inc_not_zero(&req->refs);
1145}
1146
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001147static inline bool req_ref_put_and_test(struct io_kiocb *req)
1148{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001149 if (likely(!(req->flags & REQ_F_REFCOUNT)))
1150 return true;
1151
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001152 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
1153 return atomic_dec_and_test(&req->refs);
1154}
1155
1156static inline void req_ref_put(struct io_kiocb *req)
1157{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001158 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001159 WARN_ON_ONCE(req_ref_put_and_test(req));
1160}
1161
1162static inline void req_ref_get(struct io_kiocb *req)
1163{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001164 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001165 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
1166 atomic_inc(&req->refs);
1167}
1168
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001169static inline void __io_req_set_refcount(struct io_kiocb *req, int nr)
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001170{
1171 if (!(req->flags & REQ_F_REFCOUNT)) {
1172 req->flags |= REQ_F_REFCOUNT;
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001173 atomic_set(&req->refs, nr);
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001174 }
1175}
1176
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001177static inline void io_req_set_refcount(struct io_kiocb *req)
1178{
1179 __io_req_set_refcount(req, 1);
1180}
1181
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01001182static inline void io_req_set_rsrc_node(struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001183{
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001184 struct io_ring_ctx *ctx = req->ctx;
1185
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001186 if (!req->fixed_rsrc_refs) {
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01001187 req->fixed_rsrc_refs = &ctx->rsrc_node->refs;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001188 percpu_ref_get(req->fixed_rsrc_refs);
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001189 }
1190}
1191
Pavel Begunkovf70865d2021-04-11 01:46:40 +01001192static void io_refs_resurrect(struct percpu_ref *ref, struct completion *compl)
1193{
1194 bool got = percpu_ref_tryget(ref);
1195
1196 /* already at zero, wait for ->release() */
1197 if (!got)
1198 wait_for_completion(compl);
1199 percpu_ref_resurrect(ref);
1200 if (got)
1201 percpu_ref_put(ref);
1202}
1203
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001204static bool io_match_task(struct io_kiocb *head, struct task_struct *task,
1205 bool cancel_all)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001206{
1207 struct io_kiocb *req;
1208
Pavel Begunkov68207682021-03-22 01:58:25 +00001209 if (task && head->task != task)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001210 return false;
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001211 if (cancel_all)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001212 return true;
1213
1214 io_for_each_link(req, head) {
Pavel Begunkovb05a1bc2021-03-04 13:59:24 +00001215 if (req->flags & REQ_F_INFLIGHT)
Jens Axboe02a13672021-01-23 15:49:31 -07001216 return true;
Pavel Begunkov08d23632020-11-06 13:00:22 +00001217 }
1218 return false;
1219}
1220
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001221static inline void req_set_fail(struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001222{
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001223 req->flags |= REQ_F_FAIL;
Jens Axboec40f6372020-06-25 15:39:59 -06001224}
Jens Axboe4a38aed22020-05-14 17:21:15 -06001225
Hao Xua8295b92021-08-27 17:46:09 +08001226static inline void req_fail_link_node(struct io_kiocb *req, int res)
1227{
1228 req_set_fail(req);
1229 req->result = res;
1230}
1231
Jens Axboe2b188cc2019-01-07 10:46:33 -07001232static void io_ring_ctx_ref_free(struct percpu_ref *ref)
1233{
1234 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1235
Jens Axboe0f158b42020-05-14 17:18:39 -06001236 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001237}
1238
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001239static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1240{
1241 return !req->timeout.off;
1242}
1243
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001244static void io_fallback_req_func(struct work_struct *work)
1245{
1246 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
1247 fallback_work.work);
1248 struct llist_node *node = llist_del_all(&ctx->fallback_llist);
1249 struct io_kiocb *req, *tmp;
Pavel Begunkovf237c302021-08-18 12:42:46 +01001250 bool locked = false;
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001251
1252 percpu_ref_get(&ctx->refs);
1253 llist_for_each_entry_safe(req, tmp, node, io_task_work.fallback_node)
Pavel Begunkovf237c302021-08-18 12:42:46 +01001254 req->io_task_work.func(req, &locked);
Pavel Begunkov5636c002021-08-18 12:42:45 +01001255
Pavel Begunkovf237c302021-08-18 12:42:46 +01001256 if (locked) {
1257 if (ctx->submit_state.compl_nr)
1258 io_submit_flush_completions(ctx);
1259 mutex_unlock(&ctx->uring_lock);
1260 }
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001261 percpu_ref_put(&ctx->refs);
Pavel Begunkovf237c302021-08-18 12:42:46 +01001262
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001263}
1264
Jens Axboe2b188cc2019-01-07 10:46:33 -07001265static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
1266{
1267 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001268 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001269
1270 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1271 if (!ctx)
1272 return NULL;
1273
Jens Axboe78076bb2019-12-04 19:56:40 -07001274 /*
1275 * Use 5 bits less than the max cq entries, that should give us around
1276 * 32 entries per hash list if totally full and uniformly spread.
1277 */
1278 hash_bits = ilog2(p->cq_entries);
1279 hash_bits -= 5;
1280 if (hash_bits <= 0)
1281 hash_bits = 1;
1282 ctx->cancel_hash_bits = hash_bits;
1283 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1284 GFP_KERNEL);
1285 if (!ctx->cancel_hash)
1286 goto err;
1287 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1288
Pavel Begunkov62248432021-04-28 13:11:29 +01001289 ctx->dummy_ubuf = kzalloc(sizeof(*ctx->dummy_ubuf), GFP_KERNEL);
1290 if (!ctx->dummy_ubuf)
1291 goto err;
1292 /* set invalid range, so io_import_fixed() fails meeting it */
1293 ctx->dummy_ubuf->ubuf = -1UL;
1294
Roman Gushchin21482892019-05-07 10:01:48 -07001295 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001296 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1297 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001298
1299 ctx->flags = p->flags;
Jens Axboe90554202020-09-03 12:12:41 -06001300 init_waitqueue_head(&ctx->sqo_sq_wait);
Jens Axboe69fb2132020-09-14 11:16:23 -06001301 INIT_LIST_HEAD(&ctx->sqd_list);
Pavel Begunkov311997b2021-06-14 23:37:28 +01001302 init_waitqueue_head(&ctx->poll_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001303 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001304 init_completion(&ctx->ref_comp);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07001305 xa_init_flags(&ctx->io_buffers, XA_FLAGS_ALLOC1);
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00001306 xa_init_flags(&ctx->personalities, XA_FLAGS_ALLOC1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001307 mutex_init(&ctx->uring_lock);
Pavel Begunkov311997b2021-06-14 23:37:28 +01001308 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001309 spin_lock_init(&ctx->completion_lock);
Jens Axboe89850fc2021-08-10 15:11:51 -06001310 spin_lock_init(&ctx->timeout_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03001311 INIT_LIST_HEAD(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001312 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001313 INIT_LIST_HEAD(&ctx->timeout_list);
Pavel Begunkovef9dd632021-08-28 19:54:38 -06001314 INIT_LIST_HEAD(&ctx->ltimeout_list);
Bijan Mottahedehd67d2262021-01-15 17:37:46 +00001315 spin_lock_init(&ctx->rsrc_ref_lock);
1316 INIT_LIST_HEAD(&ctx->rsrc_ref_list);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001317 INIT_DELAYED_WORK(&ctx->rsrc_put_work, io_rsrc_put_work);
1318 init_llist_head(&ctx->rsrc_put_llist);
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00001319 INIT_LIST_HEAD(&ctx->tctx_list);
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001320 INIT_LIST_HEAD(&ctx->submit_state.free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001321 INIT_LIST_HEAD(&ctx->locked_free_list);
Pavel Begunkov9011bf92021-06-30 21:54:03 +01001322 INIT_DELAYED_WORK(&ctx->fallback_work, io_fallback_req_func);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001323 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001324err:
Pavel Begunkov62248432021-04-28 13:11:29 +01001325 kfree(ctx->dummy_ubuf);
Jens Axboe78076bb2019-12-04 19:56:40 -07001326 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001327 kfree(ctx);
1328 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001329}
1330
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001331static void io_account_cq_overflow(struct io_ring_ctx *ctx)
1332{
1333 struct io_rings *r = ctx->rings;
1334
1335 WRITE_ONCE(r->cq_overflow, READ_ONCE(r->cq_overflow) + 1);
1336 ctx->cq_extra--;
1337}
1338
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001339static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001340{
Jens Axboe2bc99302020-07-09 09:43:27 -06001341 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1342 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001343
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001344 return seq + READ_ONCE(ctx->cq_extra) != ctx->cached_cq_tail;
Jens Axboe2bc99302020-07-09 09:43:27 -06001345 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001346
Bob Liu9d858b22019-11-13 18:06:25 +08001347 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001348}
1349
Pavel Begunkovc97d8a02021-08-09 13:04:04 +01001350#define FFS_ASYNC_READ 0x1UL
1351#define FFS_ASYNC_WRITE 0x2UL
1352#ifdef CONFIG_64BIT
1353#define FFS_ISREG 0x4UL
1354#else
1355#define FFS_ISREG 0x0UL
1356#endif
1357#define FFS_MASK ~(FFS_ASYNC_READ|FFS_ASYNC_WRITE|FFS_ISREG)
1358
1359static inline bool io_req_ffs_set(struct io_kiocb *req)
1360{
1361 return IS_ENABLED(CONFIG_64BIT) && (req->flags & REQ_F_FIXED_FILE);
1362}
1363
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001364static void io_req_track_inflight(struct io_kiocb *req)
1365{
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001366 if (!(req->flags & REQ_F_INFLIGHT)) {
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001367 req->flags |= REQ_F_INFLIGHT;
Pavel Begunkovb303fe22021-04-11 01:46:26 +01001368 atomic_inc(&current->io_uring->inflight_tracked);
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001369 }
1370}
1371
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01001372static inline void io_unprep_linked_timeout(struct io_kiocb *req)
1373{
1374 req->flags &= ~REQ_F_LINK_TIMEOUT;
1375}
1376
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001377static struct io_kiocb *__io_prep_linked_timeout(struct io_kiocb *req)
1378{
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01001379 if (WARN_ON_ONCE(!req->link))
1380 return NULL;
1381
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001382 req->flags &= ~REQ_F_ARM_LTIMEOUT;
1383 req->flags |= REQ_F_LINK_TIMEOUT;
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001384
1385 /* linked timeouts should have two refs once prep'ed */
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001386 io_req_set_refcount(req);
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001387 __io_req_set_refcount(req->link, 2);
1388 return req->link;
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001389}
1390
1391static inline struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
1392{
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001393 if (likely(!(req->flags & REQ_F_ARM_LTIMEOUT)))
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001394 return NULL;
1395 return __io_prep_linked_timeout(req);
1396}
1397
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001398static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001399{
Jens Axboed3656342019-12-18 09:50:26 -07001400 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov23329512020-10-10 18:34:06 +01001401 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe54a91f32019-09-10 09:15:04 -06001402
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01001403 if (!(req->flags & REQ_F_CREDS)) {
1404 req->flags |= REQ_F_CREDS;
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01001405 req->creds = get_current_cred();
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01001406 }
Jens Axboe003e8dc2021-03-06 09:22:27 -07001407
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001408 req->work.list.next = NULL;
1409 req->work.flags = 0;
Pavel Begunkovfeaadc42020-10-22 16:47:16 +01001410 if (req->flags & REQ_F_FORCE_ASYNC)
1411 req->work.flags |= IO_WQ_WORK_CONCURRENT;
1412
Jens Axboed3656342019-12-18 09:50:26 -07001413 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov23329512020-10-10 18:34:06 +01001414 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001415 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboe4b982bd2021-04-01 08:38:34 -06001416 } else if (!req->file || !S_ISBLK(file_inode(req->file)->i_mode)) {
Jens Axboed3656342019-12-18 09:50:26 -07001417 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001418 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001419 }
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001420
1421 switch (req->opcode) {
1422 case IORING_OP_SPLICE:
1423 case IORING_OP_TEE:
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001424 if (!S_ISREG(file_inode(req->splice.file_in)->i_mode))
1425 req->work.flags |= IO_WQ_WORK_UNBOUND;
1426 break;
1427 }
Jens Axboe561fb042019-10-24 07:25:42 -06001428}
1429
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001430static void io_prep_async_link(struct io_kiocb *req)
1431{
1432 struct io_kiocb *cur;
1433
Pavel Begunkov44eff402021-07-26 14:14:31 +01001434 if (req->flags & REQ_F_LINK_TIMEOUT) {
1435 struct io_ring_ctx *ctx = req->ctx;
1436
Jens Axboe79ebeae2021-08-10 15:18:27 -06001437 spin_lock(&ctx->completion_lock);
Pavel Begunkov44eff402021-07-26 14:14:31 +01001438 io_for_each_link(cur, req)
1439 io_prep_async_work(cur);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001440 spin_unlock(&ctx->completion_lock);
Pavel Begunkov44eff402021-07-26 14:14:31 +01001441 } else {
1442 io_for_each_link(cur, req)
1443 io_prep_async_work(cur);
1444 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001445}
1446
Pavel Begunkovf237c302021-08-18 12:42:46 +01001447static void io_queue_async_work(struct io_kiocb *req, bool *locked)
Jens Axboe561fb042019-10-24 07:25:42 -06001448{
Jackie Liua197f662019-11-08 08:09:12 -07001449 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001450 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe5aa75ed2021-02-16 12:56:50 -07001451 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe561fb042019-10-24 07:25:42 -06001452
Pavel Begunkovf237c302021-08-18 12:42:46 +01001453 /* must not take the lock, NULL it as a precaution */
1454 locked = NULL;
1455
Jens Axboe3bfe6102021-02-16 14:15:30 -07001456 BUG_ON(!tctx);
1457 BUG_ON(!tctx->io_wq);
Jens Axboe561fb042019-10-24 07:25:42 -06001458
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001459 /* init ->work of the whole link before punting */
1460 io_prep_async_link(req);
Jens Axboe991468d2021-07-23 11:53:54 -06001461
1462 /*
1463 * Not expected to happen, but if we do have a bug where this _can_
1464 * happen, catch it here and ensure the request is marked as
1465 * canceled. That will make io-wq go through the usual work cancel
1466 * procedure rather than attempt to run this request (or create a new
1467 * worker for it).
1468 */
1469 if (WARN_ON_ONCE(!same_thread_group(req->task, current)))
1470 req->work.flags |= IO_WQ_WORK_CANCEL;
1471
Pavel Begunkovd07f1e8a2021-03-22 01:45:58 +00001472 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1473 &req->work, req->flags);
Pavel Begunkovebf93662021-03-01 18:20:47 +00001474 io_wq_enqueue(tctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001475 if (link)
1476 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001477}
1478
Pavel Begunkov1ee41602021-03-25 18:32:42 +00001479static void io_kill_timeout(struct io_kiocb *req, int status)
Pavel Begunkov8c855882021-04-13 02:58:41 +01001480 __must_hold(&req->ctx->completion_lock)
Jens Axboe89850fc2021-08-10 15:11:51 -06001481 __must_hold(&req->ctx->timeout_lock)
Jens Axboe5262f562019-09-17 12:26:57 -06001482{
Jens Axboee8c2bc12020-08-15 18:44:09 -07001483 struct io_timeout_data *io = req->async_data;
Jens Axboe5262f562019-09-17 12:26:57 -06001484
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01001485 if (hrtimer_try_to_cancel(&io->timer) != -1) {
Pavel Begunkov2ae2eb92021-09-09 13:56:27 +01001486 if (status)
1487 req_set_fail(req);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001488 atomic_set(&req->ctx->cq_timeouts,
1489 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001490 list_del_init(&req->timeout.list);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001491 io_cqring_fill_event(req->ctx, req->user_data, status, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01001492 io_put_req_deferred(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001493 }
1494}
1495
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001496static void io_queue_deferred(struct io_ring_ctx *ctx)
Pavel Begunkov04518942020-05-26 20:34:05 +03001497{
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001498 while (!list_empty(&ctx->defer_list)) {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001499 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1500 struct io_defer_entry, list);
Pavel Begunkov04518942020-05-26 20:34:05 +03001501
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001502 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001503 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001504 list_del_init(&de->list);
Pavel Begunkov907d1df2021-01-26 23:35:10 +00001505 io_req_task_queue(de->req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001506 kfree(de);
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001507 }
Pavel Begunkov04518942020-05-26 20:34:05 +03001508}
1509
Pavel Begunkov360428f2020-05-30 14:54:17 +03001510static void io_flush_timeouts(struct io_ring_ctx *ctx)
Jens Axboe89850fc2021-08-10 15:11:51 -06001511 __must_hold(&ctx->completion_lock)
Pavel Begunkov360428f2020-05-30 14:54:17 +03001512{
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001513 u32 seq = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001514
Jens Axboe79ebeae2021-08-10 15:18:27 -06001515 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01001516 while (!list_empty(&ctx->timeout_list)) {
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001517 u32 events_needed, events_got;
Pavel Begunkov360428f2020-05-30 14:54:17 +03001518 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001519 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001520
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001521 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001522 break;
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001523
1524 /*
1525 * Since seq can easily wrap around over time, subtract
1526 * the last seq at which timeouts were flushed before comparing.
1527 * Assuming not more than 2^31-1 events have happened since,
1528 * these subtractions won't have wrapped, so we can check if
1529 * target is in [last_seq, current_seq] by comparing the two.
1530 */
1531 events_needed = req->timeout.target_seq - ctx->cq_last_tm_flush;
1532 events_got = seq - ctx->cq_last_tm_flush;
1533 if (events_got < events_needed)
Pavel Begunkov360428f2020-05-30 14:54:17 +03001534 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001535
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001536 list_del_init(&req->timeout.list);
Pavel Begunkov1ee41602021-03-25 18:32:42 +00001537 io_kill_timeout(req, 0);
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01001538 }
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001539 ctx->cq_last_tm_flush = seq;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001540 spin_unlock_irq(&ctx->timeout_lock);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001541}
1542
Pavel Begunkov2335f6f2021-06-15 16:47:58 +01001543static void __io_commit_cqring_flush(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -06001544{
Pavel Begunkov2335f6f2021-06-15 16:47:58 +01001545 if (ctx->off_timeout_used)
1546 io_flush_timeouts(ctx);
1547 if (ctx->drain_active)
1548 io_queue_deferred(ctx);
1549}
1550
1551static inline void io_commit_cqring(struct io_ring_ctx *ctx)
1552{
1553 if (unlikely(ctx->off_timeout_used || ctx->drain_active))
1554 __io_commit_cqring_flush(ctx);
Pavel Begunkovec30e042021-01-19 13:32:38 +00001555 /* order cqe stores with ring update */
1556 smp_store_release(&ctx->rings->cq.tail, ctx->cached_cq_tail);
Jens Axboede0617e2019-04-06 21:51:27 -06001557}
1558
Jens Axboe90554202020-09-03 12:12:41 -06001559static inline bool io_sqring_full(struct io_ring_ctx *ctx)
1560{
1561 struct io_rings *r = ctx->rings;
1562
Pavel Begunkova566c552021-05-16 22:58:08 +01001563 return READ_ONCE(r->sq.tail) - ctx->cached_sq_head == ctx->sq_entries;
Jens Axboe90554202020-09-03 12:12:41 -06001564}
1565
Pavel Begunkov888aae22021-01-19 13:32:39 +00001566static inline unsigned int __io_cqring_events(struct io_ring_ctx *ctx)
1567{
1568 return ctx->cached_cq_tail - READ_ONCE(ctx->rings->cq.head);
1569}
1570
Pavel Begunkovd068b502021-05-16 22:58:11 +01001571static inline struct io_uring_cqe *io_get_cqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001572{
Hristo Venev75b28af2019-08-26 17:23:46 +00001573 struct io_rings *rings = ctx->rings;
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01001574 unsigned tail, mask = ctx->cq_entries - 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001575
Stefan Bühler115e12e2019-04-24 23:54:18 +02001576 /*
1577 * writes to the cq entry need to come after reading head; the
1578 * control dependency is enough as we're using WRITE_ONCE to
1579 * fill the cq entry
1580 */
Pavel Begunkova566c552021-05-16 22:58:08 +01001581 if (__io_cqring_events(ctx) == ctx->cq_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001582 return NULL;
1583
Pavel Begunkov888aae22021-01-19 13:32:39 +00001584 tail = ctx->cached_cq_tail++;
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01001585 return &rings->cqes[tail & mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001586}
1587
Jens Axboef2842ab2020-01-08 11:04:00 -07001588static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1589{
Pavel Begunkov44c769d2021-04-11 01:46:31 +01001590 if (likely(!ctx->cq_ev_fd))
Jens Axboef0b493e2020-02-01 21:30:11 -07001591 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001592 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1593 return false;
Pavel Begunkov44c769d2021-04-11 01:46:31 +01001594 return !ctx->eventfd_async || io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001595}
1596
Jens Axboe2c5d7632021-08-21 07:21:19 -06001597/*
1598 * This should only get called when at least one event has been posted.
1599 * Some applications rely on the eventfd notification count only changing
1600 * IFF a new CQE has been added to the CQ ring. There's no depedency on
1601 * 1:1 relationship between how many times this function is called (and
1602 * hence the eventfd count) and number of CQEs posted to the CQ ring.
1603 */
Jens Axboeb41e9852020-02-17 09:52:41 -07001604static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001605{
Jens Axboe5fd46172021-08-06 14:04:31 -06001606 /*
1607 * wake_up_all() may seem excessive, but io_wake_function() and
1608 * io_should_wake() handle the termination of the loop and only
1609 * wake as many waiters as we need to.
1610 */
1611 if (wq_has_sleeper(&ctx->cq_wait))
1612 wake_up_all(&ctx->cq_wait);
Jens Axboe534ca6d2020-09-02 13:52:19 -06001613 if (ctx->sq_data && waitqueue_active(&ctx->sq_data->wait))
1614 wake_up(&ctx->sq_data->wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001615 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001616 eventfd_signal(ctx->cq_ev_fd, 1);
Pavel Begunkov311997b2021-06-14 23:37:28 +01001617 if (waitqueue_active(&ctx->poll_wait)) {
1618 wake_up_interruptible(&ctx->poll_wait);
Pavel Begunkov4aa84f22021-01-07 03:15:42 +00001619 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
1620 }
Jens Axboe8c838782019-03-12 15:48:16 -06001621}
1622
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001623static void io_cqring_ev_posted_iopoll(struct io_ring_ctx *ctx)
1624{
Pavel Begunkovc57a91fb2021-09-08 20:49:17 +01001625 /* see waitqueue_active() comment */
1626 smp_mb();
1627
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001628 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkovc57a91fb2021-09-08 20:49:17 +01001629 if (waitqueue_active(&ctx->cq_wait))
Jens Axboe5fd46172021-08-06 14:04:31 -06001630 wake_up_all(&ctx->cq_wait);
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001631 }
1632 if (io_should_trigger_evfd(ctx))
1633 eventfd_signal(ctx->cq_ev_fd, 1);
Pavel Begunkov311997b2021-06-14 23:37:28 +01001634 if (waitqueue_active(&ctx->poll_wait)) {
1635 wake_up_interruptible(&ctx->poll_wait);
Pavel Begunkov4aa84f22021-01-07 03:15:42 +00001636 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
1637 }
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001638}
1639
Jens Axboec4a2ed72019-11-21 21:01:26 -07001640/* Returns true if there are no backlogged entries after the flush */
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001641static bool __io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001642{
Jens Axboeb18032b2021-01-24 16:58:56 -07001643 bool all_flushed, posted;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001644
Pavel Begunkova566c552021-05-16 22:58:08 +01001645 if (!force && __io_cqring_events(ctx) == ctx->cq_entries)
Pavel Begunkove23de152020-12-17 00:24:37 +00001646 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001647
Jens Axboeb18032b2021-01-24 16:58:56 -07001648 posted = false;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001649 spin_lock(&ctx->completion_lock);
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001650 while (!list_empty(&ctx->cq_overflow_list)) {
Pavel Begunkovd068b502021-05-16 22:58:11 +01001651 struct io_uring_cqe *cqe = io_get_cqe(ctx);
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001652 struct io_overflow_cqe *ocqe;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001653
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001654 if (!cqe && !force)
1655 break;
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001656 ocqe = list_first_entry(&ctx->cq_overflow_list,
1657 struct io_overflow_cqe, list);
1658 if (cqe)
1659 memcpy(cqe, &ocqe->cqe, sizeof(*cqe));
1660 else
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001661 io_account_cq_overflow(ctx);
1662
Jens Axboeb18032b2021-01-24 16:58:56 -07001663 posted = true;
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001664 list_del(&ocqe->list);
1665 kfree(ocqe);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001666 }
1667
Pavel Begunkov09e88402020-12-17 00:24:38 +00001668 all_flushed = list_empty(&ctx->cq_overflow_list);
1669 if (all_flushed) {
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001670 clear_bit(0, &ctx->check_cq_overflow);
Nadav Amit20c0b382021-08-07 17:13:42 -07001671 WRITE_ONCE(ctx->rings->sq_flags,
1672 ctx->rings->sq_flags & ~IORING_SQ_CQ_OVERFLOW);
Pavel Begunkov09e88402020-12-17 00:24:38 +00001673 }
Pavel Begunkov46930142020-07-30 18:43:49 +03001674
Jens Axboeb18032b2021-01-24 16:58:56 -07001675 if (posted)
1676 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001677 spin_unlock(&ctx->completion_lock);
Jens Axboeb18032b2021-01-24 16:58:56 -07001678 if (posted)
1679 io_cqring_ev_posted(ctx);
Pavel Begunkov09e88402020-12-17 00:24:38 +00001680 return all_flushed;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001681}
1682
Pavel Begunkov90f67362021-08-09 20:18:12 +01001683static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx)
Pavel Begunkov6c503152021-01-04 20:36:36 +00001684{
Jens Axboeca0a2652021-03-04 17:15:48 -07001685 bool ret = true;
1686
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001687 if (test_bit(0, &ctx->check_cq_overflow)) {
Pavel Begunkov6c503152021-01-04 20:36:36 +00001688 /* iopoll syncs against uring_lock, not completion_lock */
1689 if (ctx->flags & IORING_SETUP_IOPOLL)
1690 mutex_lock(&ctx->uring_lock);
Pavel Begunkov90f67362021-08-09 20:18:12 +01001691 ret = __io_cqring_overflow_flush(ctx, false);
Pavel Begunkov6c503152021-01-04 20:36:36 +00001692 if (ctx->flags & IORING_SETUP_IOPOLL)
1693 mutex_unlock(&ctx->uring_lock);
1694 }
Jens Axboeca0a2652021-03-04 17:15:48 -07001695
1696 return ret;
Pavel Begunkov6c503152021-01-04 20:36:36 +00001697}
1698
Pavel Begunkov6a290a12021-08-09 13:04:13 +01001699/* must to be called somewhat shortly after putting a request */
1700static inline void io_put_task(struct task_struct *task, int nr)
1701{
1702 struct io_uring_task *tctx = task->io_uring;
1703
Pavel Begunkove98e49b2021-08-18 17:01:43 +01001704 if (likely(task == current)) {
1705 tctx->cached_refs += nr;
1706 } else {
1707 percpu_counter_sub(&tctx->inflight, nr);
1708 if (unlikely(atomic_read(&tctx->in_idle)))
1709 wake_up(&tctx->wait);
1710 put_task_struct_many(task, nr);
1711 }
Pavel Begunkov6a290a12021-08-09 13:04:13 +01001712}
1713
Pavel Begunkov9a108672021-08-27 11:55:01 +01001714static void io_task_refs_refill(struct io_uring_task *tctx)
1715{
1716 unsigned int refill = -tctx->cached_refs + IO_TCTX_REFS_CACHE_NR;
1717
1718 percpu_counter_add(&tctx->inflight, refill);
1719 refcount_add(refill, &current->usage);
1720 tctx->cached_refs += refill;
1721}
1722
1723static inline void io_get_task_refs(int nr)
1724{
1725 struct io_uring_task *tctx = current->io_uring;
1726
1727 tctx->cached_refs -= nr;
1728 if (unlikely(tctx->cached_refs < 0))
1729 io_task_refs_refill(tctx);
1730}
1731
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001732static bool io_cqring_event_overflow(struct io_ring_ctx *ctx, u64 user_data,
1733 long res, unsigned int cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001734{
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001735 struct io_overflow_cqe *ocqe;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001736
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001737 ocqe = kmalloc(sizeof(*ocqe), GFP_ATOMIC | __GFP_ACCOUNT);
1738 if (!ocqe) {
1739 /*
1740 * If we're in ring overflow flush mode, or in task cancel mode,
1741 * or cannot allocate an overflow entry, then we need to drop it
1742 * on the floor.
1743 */
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001744 io_account_cq_overflow(ctx);
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001745 return false;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001746 }
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001747 if (list_empty(&ctx->cq_overflow_list)) {
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001748 set_bit(0, &ctx->check_cq_overflow);
Nadav Amit20c0b382021-08-07 17:13:42 -07001749 WRITE_ONCE(ctx->rings->sq_flags,
1750 ctx->rings->sq_flags | IORING_SQ_CQ_OVERFLOW);
1751
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001752 }
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001753 ocqe->cqe.user_data = user_data;
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001754 ocqe->cqe.res = res;
1755 ocqe->cqe.flags = cflags;
1756 list_add_tail(&ocqe->list, &ctx->cq_overflow_list);
1757 return true;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001758}
1759
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001760static inline bool __io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
1761 long res, unsigned int cflags)
Pavel Begunkov8d133262021-04-11 01:46:33 +01001762{
Jens Axboe2b188cc2019-01-07 10:46:33 -07001763 struct io_uring_cqe *cqe;
1764
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001765 trace_io_uring_complete(ctx, user_data, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001766
1767 /*
1768 * If we can't get a cq entry, userspace overflowed the
1769 * submission (by quite a lot). Increment the overflow count in
1770 * the ring.
1771 */
Pavel Begunkovd068b502021-05-16 22:58:11 +01001772 cqe = io_get_cqe(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001773 if (likely(cqe)) {
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001774 WRITE_ONCE(cqe->user_data, user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001775 WRITE_ONCE(cqe->res, res);
1776 WRITE_ONCE(cqe->flags, cflags);
Pavel Begunkov8d133262021-04-11 01:46:33 +01001777 return true;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001778 }
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001779 return io_cqring_event_overflow(ctx, user_data, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001780}
1781
Pavel Begunkov8d133262021-04-11 01:46:33 +01001782/* not as hot to bloat with inlining */
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001783static noinline bool io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
1784 long res, unsigned int cflags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001785{
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001786 return __io_cqring_fill_event(ctx, user_data, res, cflags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001787}
1788
Pavel Begunkov7a612352021-03-09 00:37:59 +00001789static void io_req_complete_post(struct io_kiocb *req, long res,
1790 unsigned int cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001791{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001792 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001793
Jens Axboe79ebeae2021-08-10 15:18:27 -06001794 spin_lock(&ctx->completion_lock);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001795 __io_cqring_fill_event(ctx, req->user_data, res, cflags);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001796 /*
1797 * If we're the last reference to this request, add to our locked
1798 * free_list cache.
1799 */
Jens Axboede9b4cc2021-02-24 13:28:27 -07001800 if (req_ref_put_and_test(req)) {
Pavel Begunkov7a612352021-03-09 00:37:59 +00001801 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkov0756a862021-08-15 10:40:25 +01001802 if (req->flags & IO_DISARM_MASK)
Pavel Begunkov7a612352021-03-09 00:37:59 +00001803 io_disarm_next(req);
1804 if (req->link) {
1805 io_req_task_queue(req->link);
1806 req->link = NULL;
1807 }
1808 }
Jens Axboec7dae4b2021-02-09 19:53:37 -07001809 io_dismantle_req(req);
1810 io_put_task(req->task, 1);
Pavel Begunkovbb943b82021-08-09 20:18:10 +01001811 list_add(&req->inflight_entry, &ctx->locked_free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001812 ctx->locked_free_nr++;
Pavel Begunkov180f8292021-03-14 20:57:09 +00001813 } else {
1814 if (!percpu_ref_tryget(&ctx->refs))
1815 req = NULL;
1816 }
Pavel Begunkov7a612352021-03-09 00:37:59 +00001817 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001818 spin_unlock(&ctx->completion_lock);
Pavel Begunkov7a612352021-03-09 00:37:59 +00001819
Pavel Begunkov180f8292021-03-14 20:57:09 +00001820 if (req) {
1821 io_cqring_ev_posted(ctx);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001822 percpu_ref_put(&ctx->refs);
Pavel Begunkov180f8292021-03-14 20:57:09 +00001823 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001824}
1825
Jens Axboe4e3d9ff2021-04-15 17:44:34 -06001826static inline bool io_req_needs_clean(struct io_kiocb *req)
1827{
Pavel Begunkovc8543572021-06-17 18:14:04 +01001828 return req->flags & IO_REQ_CLEAN_FLAGS;
Jens Axboe4e3d9ff2021-04-15 17:44:34 -06001829}
1830
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001831static void io_req_complete_state(struct io_kiocb *req, long res,
Pavel Begunkov889fca72021-02-10 00:03:09 +00001832 unsigned int cflags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001833{
Jens Axboe4e3d9ff2021-04-15 17:44:34 -06001834 if (io_req_needs_clean(req))
Pavel Begunkov68fb8972021-03-19 17:22:41 +00001835 io_clean_op(req);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001836 req->result = res;
1837 req->compl.cflags = cflags;
Pavel Begunkove342c802021-01-19 13:32:47 +00001838 req->flags |= REQ_F_COMPLETE_INLINE;
Jens Axboee1e16092020-06-22 09:17:17 -06001839}
Jens Axboe2b188cc2019-01-07 10:46:33 -07001840
Pavel Begunkov889fca72021-02-10 00:03:09 +00001841static inline void __io_req_complete(struct io_kiocb *req, unsigned issue_flags,
1842 long res, unsigned cflags)
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001843{
Pavel Begunkov889fca72021-02-10 00:03:09 +00001844 if (issue_flags & IO_URING_F_COMPLETE_DEFER)
1845 io_req_complete_state(req, res, cflags);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001846 else
Jens Axboec7dae4b2021-02-09 19:53:37 -07001847 io_req_complete_post(req, res, cflags);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001848}
Jens Axboebcda7ba2020-02-23 16:42:51 -07001849
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001850static inline void io_req_complete(struct io_kiocb *req, long res)
Jens Axboee1e16092020-06-22 09:17:17 -06001851{
Pavel Begunkov889fca72021-02-10 00:03:09 +00001852 __io_req_complete(req, 0, res, 0);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001853}
1854
Pavel Begunkovf41db2732021-02-28 22:35:12 +00001855static void io_req_complete_failed(struct io_kiocb *req, long res)
1856{
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001857 req_set_fail(req);
Pavel Begunkovf41db2732021-02-28 22:35:12 +00001858 io_req_complete_post(req, res, 0);
1859}
1860
Pavel Begunkovc6d3d9c2021-08-31 14:13:10 +01001861static void io_req_complete_fail_submit(struct io_kiocb *req)
1862{
1863 /*
1864 * We don't submit, fail them all, for that replace hardlinks with
1865 * normal links. Extra REQ_F_LINK is tolerated.
1866 */
1867 req->flags &= ~REQ_F_HARDLINK;
1868 req->flags |= REQ_F_LINK;
1869 io_req_complete_failed(req, req->result);
1870}
1871
Pavel Begunkov864ea922021-08-09 13:04:08 +01001872/*
1873 * Don't initialise the fields below on every allocation, but do that in
1874 * advance and keep them valid across allocations.
1875 */
1876static void io_preinit_req(struct io_kiocb *req, struct io_ring_ctx *ctx)
1877{
1878 req->ctx = ctx;
1879 req->link = NULL;
1880 req->async_data = NULL;
1881 /* not necessary, but safer to zero */
1882 req->result = 0;
1883}
1884
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001885static void io_flush_cached_locked_reqs(struct io_ring_ctx *ctx,
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001886 struct io_submit_state *state)
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001887{
Jens Axboe79ebeae2021-08-10 15:18:27 -06001888 spin_lock(&ctx->completion_lock);
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001889 list_splice_init(&ctx->locked_free_list, &state->free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001890 ctx->locked_free_nr = 0;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001891 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001892}
1893
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001894/* Returns true IFF there are requests in the cache */
Jens Axboec7dae4b2021-02-09 19:53:37 -07001895static bool io_flush_cached_reqs(struct io_ring_ctx *ctx)
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001896{
Jens Axboec7dae4b2021-02-09 19:53:37 -07001897 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001898 int nr;
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001899
Jens Axboec7dae4b2021-02-09 19:53:37 -07001900 /*
1901 * If we have more than a batch's worth of requests in our IRQ side
1902 * locked cache, grab the lock and move them over to our submission
1903 * side cache.
1904 */
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001905 if (READ_ONCE(ctx->locked_free_nr) > IO_COMPL_BATCH)
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001906 io_flush_cached_locked_reqs(ctx, state);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001907
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001908 nr = state->free_reqs;
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001909 while (!list_empty(&state->free_list)) {
1910 struct io_kiocb *req = list_first_entry(&state->free_list,
Pavel Begunkovbb943b82021-08-09 20:18:10 +01001911 struct io_kiocb, inflight_entry);
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001912
Pavel Begunkovbb943b82021-08-09 20:18:10 +01001913 list_del(&req->inflight_entry);
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001914 state->reqs[nr++] = req;
1915 if (nr == ARRAY_SIZE(state->reqs))
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001916 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001917 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001918
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001919 state->free_reqs = nr;
1920 return nr != 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001921}
1922
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01001923/*
1924 * A request might get retired back into the request caches even before opcode
1925 * handlers and io_issue_sqe() are done with it, e.g. inline completion path.
1926 * Because of that, io_alloc_req() should be called only under ->uring_lock
1927 * and with extra caution to not get a request that is still worked on.
1928 */
Pavel Begunkov258b29a2021-02-10 00:03:10 +00001929static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx)
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01001930 __must_hold(&ctx->uring_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001931{
Pavel Begunkov258b29a2021-02-10 00:03:10 +00001932 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001933 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
1934 int ret, i;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001935
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01001936 BUILD_BUG_ON(ARRAY_SIZE(state->reqs) < IO_REQ_ALLOC_BATCH);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001937
Pavel Begunkov864ea922021-08-09 13:04:08 +01001938 if (likely(state->free_reqs || io_flush_cached_reqs(ctx)))
1939 goto got_req;
Jens Axboe2579f912019-01-09 09:10:43 -07001940
Pavel Begunkov864ea922021-08-09 13:04:08 +01001941 ret = kmem_cache_alloc_bulk(req_cachep, gfp, IO_REQ_ALLOC_BATCH,
1942 state->reqs);
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001943
Pavel Begunkov864ea922021-08-09 13:04:08 +01001944 /*
1945 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1946 * retry single alloc to be on the safe side.
1947 */
1948 if (unlikely(ret <= 0)) {
1949 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1950 if (!state->reqs[0])
1951 return NULL;
1952 ret = 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001953 }
Pavel Begunkov864ea922021-08-09 13:04:08 +01001954
1955 for (i = 0; i < ret; i++)
1956 io_preinit_req(state->reqs[i], ctx);
1957 state->free_reqs = ret;
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001958got_req:
Pavel Begunkov291b2822020-09-30 22:57:01 +03001959 state->free_reqs--;
1960 return state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001961}
1962
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001963static inline void io_put_file(struct file *file)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001964{
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001965 if (file)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001966 fput(file);
1967}
1968
Pavel Begunkov4edf20f2020-10-13 09:43:59 +01001969static void io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001970{
Pavel Begunkov094bae42021-03-19 17:22:42 +00001971 unsigned int flags = req->flags;
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001972
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01001973 if (io_req_needs_clean(req))
1974 io_clean_op(req);
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001975 if (!(flags & REQ_F_FIXED_FILE))
1976 io_put_file(req->file);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001977 if (req->fixed_rsrc_refs)
1978 percpu_ref_put(req->fixed_rsrc_refs);
Pavel Begunkov99ebe4e2021-06-26 21:40:49 +01001979 if (req->async_data) {
Pavel Begunkov094bae42021-03-19 17:22:42 +00001980 kfree(req->async_data);
Pavel Begunkov99ebe4e2021-06-26 21:40:49 +01001981 req->async_data = NULL;
1982 }
Pavel Begunkove6543a82020-06-28 12:52:30 +03001983}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001984
Pavel Begunkov216578e2020-10-13 09:44:00 +01001985static void __io_free_req(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03001986{
Jens Axboe51a4cc12020-08-10 10:55:56 -06001987 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001988
Pavel Begunkov216578e2020-10-13 09:44:00 +01001989 io_dismantle_req(req);
Pavel Begunkov7c660732021-01-25 11:42:21 +00001990 io_put_task(req->task, 1);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001991
Jens Axboe79ebeae2021-08-10 15:18:27 -06001992 spin_lock(&ctx->completion_lock);
Pavel Begunkovbb943b82021-08-09 20:18:10 +01001993 list_add(&req->inflight_entry, &ctx->locked_free_list);
Pavel Begunkovc34b0252021-08-09 20:18:08 +01001994 ctx->locked_free_nr++;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001995 spin_unlock(&ctx->completion_lock);
Pavel Begunkovc34b0252021-08-09 20:18:08 +01001996
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001997 percpu_ref_put(&ctx->refs);
Jens Axboee65ef562019-03-12 10:16:44 -06001998}
1999
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002000static inline void io_remove_next_linked(struct io_kiocb *req)
2001{
2002 struct io_kiocb *nxt = req->link;
2003
2004 req->link = nxt->link;
2005 nxt->link = NULL;
2006}
2007
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002008static bool io_kill_linked_timeout(struct io_kiocb *req)
2009 __must_hold(&req->ctx->completion_lock)
Jens Axboe89b263f2021-08-10 15:14:18 -06002010 __must_hold(&req->ctx->timeout_lock)
Jens Axboe9e645e112019-05-10 16:07:28 -06002011{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002012 struct io_kiocb *link = req->link;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002013
Pavel Begunkovb97e7362021-08-15 10:40:23 +01002014 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002015 struct io_timeout_data *io = link->async_data;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002016
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002017 io_remove_next_linked(req);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00002018 link->timeout.head = NULL;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01002019 if (hrtimer_try_to_cancel(&io->timer) != -1) {
Pavel Begunkovef9dd632021-08-28 19:54:38 -06002020 list_del(&link->timeout.list);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01002021 io_cqring_fill_event(link->ctx, link->user_data,
2022 -ECANCELED, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002023 io_put_req_deferred(link);
Pavel Begunkovd4729fb2021-03-22 01:58:24 +00002024 return true;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002025 }
2026 }
Pavel Begunkovd4729fb2021-03-22 01:58:24 +00002027 return false;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002028}
2029
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002030static void io_fail_links(struct io_kiocb *req)
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002031 __must_hold(&req->ctx->completion_lock)
Jens Axboe9e645e112019-05-10 16:07:28 -06002032{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002033 struct io_kiocb *nxt, *link = req->link;
Jens Axboe9e645e112019-05-10 16:07:28 -06002034
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002035 req->link = NULL;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002036 while (link) {
Hao Xua8295b92021-08-27 17:46:09 +08002037 long res = -ECANCELED;
2038
2039 if (link->flags & REQ_F_FAIL)
2040 res = link->result;
2041
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002042 nxt = link->link;
2043 link->link = NULL;
2044
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002045 trace_io_uring_fail_link(req, link);
Hao Xua8295b92021-08-27 17:46:09 +08002046 io_cqring_fill_event(link->ctx, link->user_data, res, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002047 io_put_req_deferred(link);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002048 link = nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06002049 }
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002050}
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002051
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002052static bool io_disarm_next(struct io_kiocb *req)
2053 __must_hold(&req->ctx->completion_lock)
2054{
2055 bool posted = false;
2056
Pavel Begunkov0756a862021-08-15 10:40:25 +01002057 if (req->flags & REQ_F_ARM_LTIMEOUT) {
2058 struct io_kiocb *link = req->link;
2059
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01002060 req->flags &= ~REQ_F_ARM_LTIMEOUT;
Pavel Begunkov0756a862021-08-15 10:40:25 +01002061 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
2062 io_remove_next_linked(req);
2063 io_cqring_fill_event(link->ctx, link->user_data,
2064 -ECANCELED, 0);
2065 io_put_req_deferred(link);
2066 posted = true;
2067 }
2068 } else if (req->flags & REQ_F_LINK_TIMEOUT) {
Jens Axboe89b263f2021-08-10 15:14:18 -06002069 struct io_ring_ctx *ctx = req->ctx;
2070
2071 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002072 posted = io_kill_linked_timeout(req);
Jens Axboe89b263f2021-08-10 15:14:18 -06002073 spin_unlock_irq(&ctx->timeout_lock);
2074 }
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002075 if (unlikely((req->flags & REQ_F_FAIL) &&
Pavel Begunkove4335ed2021-04-11 01:46:39 +01002076 !(req->flags & REQ_F_HARDLINK))) {
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002077 posted |= (req->link != NULL);
2078 io_fail_links(req);
2079 }
2080 return posted;
Jens Axboe9e645e112019-05-10 16:07:28 -06002081}
2082
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002083static struct io_kiocb *__io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002084{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002085 struct io_kiocb *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07002086
Jens Axboe9e645e112019-05-10 16:07:28 -06002087 /*
2088 * If LINK is set, we have dependent requests in this chain. If we
2089 * didn't fail this request, queue the first one up, moving any other
2090 * dependencies to the next request. In case of failure, fail the rest
2091 * of the chain.
2092 */
Pavel Begunkov0756a862021-08-15 10:40:25 +01002093 if (req->flags & IO_DISARM_MASK) {
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002094 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002095 bool posted;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002096
Jens Axboe79ebeae2021-08-10 15:18:27 -06002097 spin_lock(&ctx->completion_lock);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002098 posted = io_disarm_next(req);
2099 if (posted)
2100 io_commit_cqring(req->ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06002101 spin_unlock(&ctx->completion_lock);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002102 if (posted)
2103 io_cqring_ev_posted(ctx);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002104 }
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002105 nxt = req->link;
2106 req->link = NULL;
2107 return nxt;
Jens Axboe4d7dd462019-11-20 13:03:52 -07002108}
Jens Axboe2665abf2019-11-05 12:40:47 -07002109
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002110static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002111{
Pavel Begunkovcdbff982021-02-12 18:41:16 +00002112 if (likely(!(req->flags & (REQ_F_LINK|REQ_F_HARDLINK))))
Pavel Begunkov3fa5e0f2020-06-30 15:20:43 +03002113 return NULL;
2114 return __io_req_find_next(req);
2115}
2116
Pavel Begunkovf237c302021-08-18 12:42:46 +01002117static void ctx_flush_and_put(struct io_ring_ctx *ctx, bool *locked)
Pavel Begunkov2c323952021-02-28 22:04:53 +00002118{
2119 if (!ctx)
2120 return;
Pavel Begunkovf237c302021-08-18 12:42:46 +01002121 if (*locked) {
Hao Xu99c8bc52021-08-21 06:19:54 +08002122 if (ctx->submit_state.compl_nr)
2123 io_submit_flush_completions(ctx);
Pavel Begunkov2c323952021-02-28 22:04:53 +00002124 mutex_unlock(&ctx->uring_lock);
Pavel Begunkovf237c302021-08-18 12:42:46 +01002125 *locked = false;
Pavel Begunkov2c323952021-02-28 22:04:53 +00002126 }
2127 percpu_ref_put(&ctx->refs);
2128}
2129
Jens Axboe7cbf1722021-02-10 00:03:20 +00002130static void tctx_task_work(struct callback_head *cb)
2131{
Pavel Begunkovf237c302021-08-18 12:42:46 +01002132 bool locked = false;
Pavel Begunkovebd0df22021-06-17 18:14:07 +01002133 struct io_ring_ctx *ctx = NULL;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002134 struct io_uring_task *tctx = container_of(cb, struct io_uring_task,
2135 task_work);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002136
Pavel Begunkov16f72072021-06-17 18:14:09 +01002137 while (1) {
Pavel Begunkov3f184072021-06-17 18:14:06 +01002138 struct io_wq_work_node *node;
2139
Pavel Begunkov8d4ad412021-09-02 00:38:23 +01002140 if (!tctx->task_list.first && locked && ctx->submit_state.compl_nr)
2141 io_submit_flush_completions(ctx);
2142
Pavel Begunkov3f184072021-06-17 18:14:06 +01002143 spin_lock_irq(&tctx->task_lock);
Pavel Begunkovc6538be2021-06-17 18:14:08 +01002144 node = tctx->task_list.first;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002145 INIT_WQ_LIST(&tctx->task_list);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002146 if (!node)
2147 tctx->task_running = false;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002148 spin_unlock_irq(&tctx->task_lock);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002149 if (!node)
2150 break;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002151
Pavel Begunkov6294f362021-08-10 17:53:55 +01002152 do {
Pavel Begunkov3f184072021-06-17 18:14:06 +01002153 struct io_wq_work_node *next = node->next;
2154 struct io_kiocb *req = container_of(node, struct io_kiocb,
2155 io_task_work.node);
2156
2157 if (req->ctx != ctx) {
Pavel Begunkovf237c302021-08-18 12:42:46 +01002158 ctx_flush_and_put(ctx, &locked);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002159 ctx = req->ctx;
Pavel Begunkov126180b2021-08-18 12:42:47 +01002160 /* if not contended, grab and improve batching */
2161 locked = mutex_trylock(&ctx->uring_lock);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002162 percpu_ref_get(&ctx->refs);
2163 }
Pavel Begunkovf237c302021-08-18 12:42:46 +01002164 req->io_task_work.func(req, &locked);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002165 node = next;
Pavel Begunkov6294f362021-08-10 17:53:55 +01002166 } while (node);
2167
Jens Axboe7cbf1722021-02-10 00:03:20 +00002168 cond_resched();
Pavel Begunkov3f184072021-06-17 18:14:06 +01002169 }
Pavel Begunkovebd0df22021-06-17 18:14:07 +01002170
Pavel Begunkovf237c302021-08-18 12:42:46 +01002171 ctx_flush_and_put(ctx, &locked);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002172}
2173
Pavel Begunkove09ee512021-07-01 13:26:05 +01002174static void io_req_task_work_add(struct io_kiocb *req)
Jens Axboe7cbf1722021-02-10 00:03:20 +00002175{
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002176 struct task_struct *tsk = req->task;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002177 struct io_uring_task *tctx = tsk->io_uring;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002178 enum task_work_notify_mode notify;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002179 struct io_wq_work_node *node;
Jens Axboe0b81e802021-02-16 10:33:53 -07002180 unsigned long flags;
Pavel Begunkov6294f362021-08-10 17:53:55 +01002181 bool running;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002182
2183 WARN_ON_ONCE(!tctx);
2184
Jens Axboe0b81e802021-02-16 10:33:53 -07002185 spin_lock_irqsave(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002186 wq_list_add_tail(&req->io_task_work.node, &tctx->task_list);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002187 running = tctx->task_running;
2188 if (!running)
2189 tctx->task_running = true;
Jens Axboe0b81e802021-02-16 10:33:53 -07002190 spin_unlock_irqrestore(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002191
2192 /* task_work already pending, we're done */
Pavel Begunkov6294f362021-08-10 17:53:55 +01002193 if (running)
Pavel Begunkove09ee512021-07-01 13:26:05 +01002194 return;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002195
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002196 /*
2197 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
2198 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
2199 * processing task_work. There's no reliable way to tell if TWA_RESUME
2200 * will do the job.
2201 */
2202 notify = (req->ctx->flags & IORING_SETUP_SQPOLL) ? TWA_NONE : TWA_SIGNAL;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002203 if (!task_work_add(tsk, &tctx->task_work, notify)) {
2204 wake_up_process(tsk);
Pavel Begunkove09ee512021-07-01 13:26:05 +01002205 return;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002206 }
Pavel Begunkov2215bed2021-08-09 13:04:06 +01002207
Pavel Begunkove09ee512021-07-01 13:26:05 +01002208 spin_lock_irqsave(&tctx->task_lock, flags);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002209 tctx->task_running = false;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002210 node = tctx->task_list.first;
2211 INIT_WQ_LIST(&tctx->task_list);
2212 spin_unlock_irqrestore(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002213
Pavel Begunkove09ee512021-07-01 13:26:05 +01002214 while (node) {
2215 req = container_of(node, struct io_kiocb, io_task_work.node);
2216 node = node->next;
2217 if (llist_add(&req->io_task_work.fallback_node,
2218 &req->ctx->fallback_llist))
2219 schedule_delayed_work(&req->ctx->fallback_work, 1);
2220 }
Pavel Begunkoveab30c42021-01-19 13:32:42 +00002221}
2222
Pavel Begunkovf237c302021-08-18 12:42:46 +01002223static void io_req_task_cancel(struct io_kiocb *req, bool *locked)
Jens Axboec40f6372020-06-25 15:39:59 -06002224{
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002225 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002226
Pavel Begunkovb18a1a42021-08-25 20:51:39 +01002227 /* not needed for normal modes, but SQPOLL depends on it */
Pavel Begunkovf237c302021-08-18 12:42:46 +01002228 io_tw_lock(ctx, locked);
Pavel Begunkov25935532021-03-19 17:22:40 +00002229 io_req_complete_failed(req, req->result);
Jens Axboec40f6372020-06-25 15:39:59 -06002230}
2231
Pavel Begunkovf237c302021-08-18 12:42:46 +01002232static void io_req_task_submit(struct io_kiocb *req, bool *locked)
Jens Axboec40f6372020-06-25 15:39:59 -06002233{
2234 struct io_ring_ctx *ctx = req->ctx;
2235
Pavel Begunkovf237c302021-08-18 12:42:46 +01002236 io_tw_lock(ctx, locked);
Jens Axboe316319e2021-08-19 09:41:42 -06002237 /* req->task == current here, checking PF_EXITING is safe */
Pavel Begunkovaf066f32021-08-09 13:04:19 +01002238 if (likely(!(req->task->flags & PF_EXITING)))
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00002239 __io_queue_sqe(req);
Pavel Begunkov81b6d052021-01-04 20:36:35 +00002240 else
Pavel Begunkov25935532021-03-19 17:22:40 +00002241 io_req_complete_failed(req, -EFAULT);
Jens Axboe9e645e112019-05-10 16:07:28 -06002242}
2243
Pavel Begunkova3df76982021-02-18 22:32:52 +00002244static void io_req_task_queue_fail(struct io_kiocb *req, int ret)
2245{
Pavel Begunkova3df76982021-02-18 22:32:52 +00002246 req->result = ret;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01002247 req->io_task_work.func = io_req_task_cancel;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002248 io_req_task_work_add(req);
Pavel Begunkova3df76982021-02-18 22:32:52 +00002249}
2250
Pavel Begunkov2c4b8eb2021-02-28 22:35:10 +00002251static void io_req_task_queue(struct io_kiocb *req)
2252{
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01002253 req->io_task_work.func = io_req_task_submit;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002254 io_req_task_work_add(req);
Pavel Begunkov2c4b8eb2021-02-28 22:35:10 +00002255}
2256
Jens Axboe773af692021-07-27 10:25:55 -06002257static void io_req_task_queue_reissue(struct io_kiocb *req)
2258{
2259 req->io_task_work.func = io_queue_async_work;
2260 io_req_task_work_add(req);
2261}
2262
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002263static inline void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08002264{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002265 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03002266
Pavel Begunkov906a8c32020-06-27 14:04:55 +03002267 if (nxt)
2268 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08002269}
2270
Jens Axboe9e645e112019-05-10 16:07:28 -06002271static void io_free_req(struct io_kiocb *req)
2272{
Pavel Begunkovc3524382020-06-28 12:52:32 +03002273 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06002274 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002275}
2276
Pavel Begunkovf237c302021-08-18 12:42:46 +01002277static void io_free_req_work(struct io_kiocb *req, bool *locked)
2278{
2279 io_free_req(req);
2280}
2281
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002282struct req_batch {
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002283 struct task_struct *task;
2284 int task_refs;
Jens Axboe1b4c3512021-02-10 00:03:19 +00002285 int ctx_refs;
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002286};
2287
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002288static inline void io_init_req_batch(struct req_batch *rb)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002289{
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002290 rb->task_refs = 0;
Pavel Begunkov9ae72462021-02-10 00:03:16 +00002291 rb->ctx_refs = 0;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002292 rb->task = NULL;
2293}
Pavel Begunkov8766dd52020-03-14 00:31:04 +03002294
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002295static void io_req_free_batch_finish(struct io_ring_ctx *ctx,
2296 struct req_batch *rb)
2297{
Pavel Begunkov9ae72462021-02-10 00:03:16 +00002298 if (rb->ctx_refs)
2299 percpu_ref_put_many(&ctx->refs, rb->ctx_refs);
Pavel Begunkove98e49b2021-08-18 17:01:43 +01002300 if (rb->task)
Pavel Begunkove9dbe222021-08-09 13:04:20 +01002301 io_put_task(rb->task, rb->task_refs);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002302}
2303
Pavel Begunkov6ff119a2021-02-10 00:03:18 +00002304static void io_req_free_batch(struct req_batch *rb, struct io_kiocb *req,
2305 struct io_submit_state *state)
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002306{
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002307 io_queue_next(req);
Pavel Begunkov96670652021-03-19 17:22:32 +00002308 io_dismantle_req(req);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002309
Jens Axboee3bc8e92020-09-24 08:45:57 -06002310 if (req->task != rb->task) {
Pavel Begunkov7c660732021-01-25 11:42:21 +00002311 if (rb->task)
2312 io_put_task(rb->task, rb->task_refs);
Jens Axboee3bc8e92020-09-24 08:45:57 -06002313 rb->task = req->task;
2314 rb->task_refs = 0;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002315 }
Jens Axboee3bc8e92020-09-24 08:45:57 -06002316 rb->task_refs++;
Pavel Begunkov9ae72462021-02-10 00:03:16 +00002317 rb->ctx_refs++;
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002318
Pavel Begunkovbd759042021-02-12 03:23:50 +00002319 if (state->free_reqs != ARRAY_SIZE(state->reqs))
Pavel Begunkov6ff119a2021-02-10 00:03:18 +00002320 state->reqs[state->free_reqs++] = req;
Pavel Begunkovbd759042021-02-12 03:23:50 +00002321 else
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01002322 list_add(&req->inflight_entry, &state->free_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002323}
2324
Pavel Begunkov2a2758f2021-06-17 18:14:00 +01002325static void io_submit_flush_completions(struct io_ring_ctx *ctx)
Jens Axboea141dd82021-08-12 12:48:34 -06002326 __must_hold(&ctx->uring_lock)
Pavel Begunkov905c1722021-02-10 00:03:14 +00002327{
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01002328 struct io_submit_state *state = &ctx->submit_state;
2329 int i, nr = state->compl_nr;
Pavel Begunkov905c1722021-02-10 00:03:14 +00002330 struct req_batch rb;
2331
Jens Axboe79ebeae2021-08-10 15:18:27 -06002332 spin_lock(&ctx->completion_lock);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002333 for (i = 0; i < nr; i++) {
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01002334 struct io_kiocb *req = state->compl_reqs[i];
Pavel Begunkov5182ed22021-06-26 21:40:48 +01002335
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01002336 __io_cqring_fill_event(ctx, req->user_data, req->result,
2337 req->compl.cflags);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002338 }
2339 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06002340 spin_unlock(&ctx->completion_lock);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002341 io_cqring_ev_posted(ctx);
Pavel Begunkov5182ed22021-06-26 21:40:48 +01002342
2343 io_init_req_batch(&rb);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002344 for (i = 0; i < nr; i++) {
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01002345 struct io_kiocb *req = state->compl_reqs[i];
Pavel Begunkov905c1722021-02-10 00:03:14 +00002346
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002347 if (req_ref_put_and_test(req))
Pavel Begunkov6ff119a2021-02-10 00:03:18 +00002348 io_req_free_batch(&rb, req, &ctx->submit_state);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002349 }
2350
2351 io_req_free_batch_finish(ctx, &rb);
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01002352 state->compl_nr = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06002353}
2354
Jens Axboeba816ad2019-09-28 11:36:45 -06002355/*
2356 * Drop reference to request, return next in chain (if there is one) if this
2357 * was the last reference to this request.
2358 */
Pavel Begunkov0d850352021-03-19 17:22:37 +00002359static inline struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06002360{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002361 struct io_kiocb *nxt = NULL;
2362
Jens Axboede9b4cc2021-02-24 13:28:27 -07002363 if (req_ref_put_and_test(req)) {
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002364 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07002365 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07002366 }
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002367 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002368}
2369
Pavel Begunkov0d850352021-03-19 17:22:37 +00002370static inline void io_put_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002371{
Jens Axboede9b4cc2021-02-24 13:28:27 -07002372 if (req_ref_put_and_test(req))
Jens Axboedef596e2019-01-09 08:59:42 -07002373 io_free_req(req);
2374}
2375
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002376static inline void io_put_req_deferred(struct io_kiocb *req)
Pavel Begunkov216578e2020-10-13 09:44:00 +01002377{
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002378 if (req_ref_put_and_test(req)) {
Pavel Begunkovf237c302021-08-18 12:42:46 +01002379 req->io_task_work.func = io_free_req_work;
Pavel Begunkov543af3a2021-08-09 13:04:15 +01002380 io_req_task_work_add(req);
2381 }
Pavel Begunkov216578e2020-10-13 09:44:00 +01002382}
2383
Pavel Begunkov6c503152021-01-04 20:36:36 +00002384static unsigned io_cqring_events(struct io_ring_ctx *ctx)
Jens Axboea3a0e432019-08-20 11:03:11 -06002385{
2386 /* See comment at the top of this file */
2387 smp_rmb();
Pavel Begunkove23de152020-12-17 00:24:37 +00002388 return __io_cqring_events(ctx);
Jens Axboea3a0e432019-08-20 11:03:11 -06002389}
2390
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002391static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2392{
2393 struct io_rings *rings = ctx->rings;
2394
2395 /* make sure SQ entry isn't read before tail */
2396 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2397}
2398
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002399static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002400{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002401 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002402
Jens Axboebcda7ba2020-02-23 16:42:51 -07002403 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2404 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002405 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002406 kfree(kbuf);
2407 return cflags;
2408}
2409
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002410static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2411{
2412 struct io_buffer *kbuf;
2413
Pavel Begunkovae421d92021-08-17 20:28:08 +01002414 if (likely(!(req->flags & REQ_F_BUFFER_SELECTED)))
2415 return 0;
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002416 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2417 return io_put_kbuf(req, kbuf);
2418}
2419
Jens Axboe4c6e2772020-07-01 11:29:10 -06002420static inline bool io_run_task_work(void)
2421{
Nadav Amitef98eb02021-08-07 17:13:41 -07002422 if (test_thread_flag(TIF_NOTIFY_SIGNAL) || current->task_works) {
Jens Axboe4c6e2772020-07-01 11:29:10 -06002423 __set_current_state(TASK_RUNNING);
Nadav Amitef98eb02021-08-07 17:13:41 -07002424 tracehook_notify_signal();
Jens Axboe4c6e2772020-07-01 11:29:10 -06002425 return true;
2426 }
2427
2428 return false;
2429}
2430
Jens Axboedef596e2019-01-09 08:59:42 -07002431/*
2432 * Find and free completed poll iocbs
2433 */
2434static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
Pavel Begunkova8576af2021-08-15 10:40:21 +01002435 struct list_head *done)
Jens Axboedef596e2019-01-09 08:59:42 -07002436{
Jens Axboe8237e042019-12-28 10:48:22 -07002437 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07002438 struct io_kiocb *req;
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002439
2440 /* order with ->result store in io_complete_rw_iopoll() */
2441 smp_rmb();
Jens Axboedef596e2019-01-09 08:59:42 -07002442
Pavel Begunkov5af1d132020-07-18 11:32:52 +03002443 io_init_req_batch(&rb);
Jens Axboedef596e2019-01-09 08:59:42 -07002444 while (!list_empty(done)) {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002445 req = list_first_entry(done, struct io_kiocb, inflight_entry);
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002446 list_del(&req->inflight_entry);
Jens Axboedef596e2019-01-09 08:59:42 -07002447
Pavel Begunkovae421d92021-08-17 20:28:08 +01002448 __io_cqring_fill_event(ctx, req->user_data, req->result,
2449 io_put_rw_kbuf(req));
Jens Axboedef596e2019-01-09 08:59:42 -07002450 (*nr_events)++;
2451
Jens Axboede9b4cc2021-02-24 13:28:27 -07002452 if (req_ref_put_and_test(req))
Pavel Begunkov6ff119a2021-02-10 00:03:18 +00002453 io_req_free_batch(&rb, req, &ctx->submit_state);
Jens Axboedef596e2019-01-09 08:59:42 -07002454 }
Jens Axboedef596e2019-01-09 08:59:42 -07002455
Jens Axboe09bb8392019-03-13 12:39:28 -06002456 io_commit_cqring(ctx);
Pavel Begunkov80c18e42021-01-07 03:15:41 +00002457 io_cqring_ev_posted_iopoll(ctx);
Pavel Begunkov2d6500d2020-06-28 12:52:33 +03002458 io_req_free_batch_finish(ctx, &rb);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002459}
2460
Jens Axboedef596e2019-01-09 08:59:42 -07002461static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
Pavel Begunkova8576af2021-08-15 10:40:21 +01002462 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002463{
2464 struct io_kiocb *req, *tmp;
2465 LIST_HEAD(done);
2466 bool spin;
Jens Axboedef596e2019-01-09 08:59:42 -07002467
2468 /*
2469 * Only spin for completions if we don't have multiple devices hanging
2470 * off our complete list, and we're under the requested amount.
2471 */
Hao Xu915b3dd2021-06-28 05:37:30 +08002472 spin = !ctx->poll_multi_queue && *nr_events < min;
Jens Axboedef596e2019-01-09 08:59:42 -07002473
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002474 list_for_each_entry_safe(req, tmp, &ctx->iopoll_list, inflight_entry) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002475 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkova2416e12021-08-09 13:04:09 +01002476 int ret;
Jens Axboedef596e2019-01-09 08:59:42 -07002477
2478 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002479 * Move completed and retryable entries to our local lists.
2480 * If we find a request that requires polling, break out
2481 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002482 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002483 if (READ_ONCE(req->iopoll_completed)) {
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002484 list_move_tail(&req->inflight_entry, &done);
Jens Axboedef596e2019-01-09 08:59:42 -07002485 continue;
2486 }
2487 if (!list_empty(&done))
2488 break;
2489
2490 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
Pavel Begunkova2416e12021-08-09 13:04:09 +01002491 if (unlikely(ret < 0))
2492 return ret;
2493 else if (ret)
2494 spin = false;
Jens Axboedef596e2019-01-09 08:59:42 -07002495
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002496 /* iopoll may have completed current req */
2497 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002498 list_move_tail(&req->inflight_entry, &done);
Jens Axboedef596e2019-01-09 08:59:42 -07002499 }
2500
2501 if (!list_empty(&done))
Pavel Begunkova8576af2021-08-15 10:40:21 +01002502 io_iopoll_complete(ctx, nr_events, &done);
Jens Axboedef596e2019-01-09 08:59:42 -07002503
Pavel Begunkova2416e12021-08-09 13:04:09 +01002504 return 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002505}
2506
2507/*
Jens Axboedef596e2019-01-09 08:59:42 -07002508 * We can't just wait for polled events to come to us, we have to actively
2509 * find and complete them.
2510 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002511static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002512{
2513 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2514 return;
2515
2516 mutex_lock(&ctx->uring_lock);
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002517 while (!list_empty(&ctx->iopoll_list)) {
Jens Axboedef596e2019-01-09 08:59:42 -07002518 unsigned int nr_events = 0;
2519
Pavel Begunkova8576af2021-08-15 10:40:21 +01002520 io_do_iopoll(ctx, &nr_events, 0);
Jens Axboe08f54392019-08-21 22:19:11 -06002521
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002522 /* let it sleep and repeat later if can't complete a request */
2523 if (nr_events == 0)
2524 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002525 /*
2526 * Ensure we allow local-to-the-cpu processing to take place,
2527 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002528 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002529 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002530 if (need_resched()) {
2531 mutex_unlock(&ctx->uring_lock);
2532 cond_resched();
2533 mutex_lock(&ctx->uring_lock);
2534 }
Jens Axboedef596e2019-01-09 08:59:42 -07002535 }
2536 mutex_unlock(&ctx->uring_lock);
2537}
2538
Pavel Begunkov7668b922020-07-07 16:36:21 +03002539static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002540{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002541 unsigned int nr_events = 0;
Pavel Begunkove9979b32021-04-13 02:58:45 +01002542 int ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002543
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002544 /*
2545 * We disallow the app entering submit/complete with polling, but we
2546 * still need to lock the ring to prevent racing with polled issue
2547 * that got punted to a workqueue.
2548 */
2549 mutex_lock(&ctx->uring_lock);
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002550 /*
2551 * Don't enter poll loop if we already have events pending.
2552 * If we do, we can potentially be spinning for commands that
2553 * already triggered a CQE (eg in error).
2554 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01002555 if (test_bit(0, &ctx->check_cq_overflow))
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002556 __io_cqring_overflow_flush(ctx, false);
2557 if (io_cqring_events(ctx))
2558 goto out;
Jens Axboedef596e2019-01-09 08:59:42 -07002559 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002560 /*
2561 * If a submit got punted to a workqueue, we can have the
2562 * application entering polling for a command before it gets
2563 * issued. That app will hold the uring_lock for the duration
2564 * of the poll right here, so we need to take a breather every
2565 * now and then to ensure that the issue has a chance to add
2566 * the poll to the issued list. Otherwise we can spin here
2567 * forever, while the workqueue is stuck trying to acquire the
2568 * very same mutex.
2569 */
Pavel Begunkove9979b32021-04-13 02:58:45 +01002570 if (list_empty(&ctx->iopoll_list)) {
Pavel Begunkov8f487ef2021-07-08 13:37:06 +01002571 u32 tail = ctx->cached_cq_tail;
2572
Jens Axboe500f9fb2019-08-19 12:15:59 -06002573 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002574 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002575 mutex_lock(&ctx->uring_lock);
Pavel Begunkove9979b32021-04-13 02:58:45 +01002576
Pavel Begunkov8f487ef2021-07-08 13:37:06 +01002577 /* some requests don't go through iopoll_list */
2578 if (tail != ctx->cached_cq_tail ||
2579 list_empty(&ctx->iopoll_list))
Pavel Begunkove9979b32021-04-13 02:58:45 +01002580 break;
Jens Axboe500f9fb2019-08-19 12:15:59 -06002581 }
Pavel Begunkova8576af2021-08-15 10:40:21 +01002582 ret = io_do_iopoll(ctx, &nr_events, min);
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002583 } while (!ret && nr_events < min && !need_resched());
2584out:
Jens Axboe500f9fb2019-08-19 12:15:59 -06002585 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002586 return ret;
2587}
2588
Jens Axboe491381ce2019-10-17 09:20:46 -06002589static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002590{
Jens Axboe491381ce2019-10-17 09:20:46 -06002591 /*
2592 * Tell lockdep we inherited freeze protection from submission
2593 * thread.
2594 */
2595 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov1c986792021-03-22 01:58:31 +00002596 struct super_block *sb = file_inode(req->file)->i_sb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002597
Pavel Begunkov1c986792021-03-22 01:58:31 +00002598 __sb_writers_acquired(sb, SB_FREEZE_WRITE);
2599 sb_end_write(sb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002600 }
2601}
2602
Jens Axboeb63534c2020-06-04 11:28:00 -06002603#ifdef CONFIG_BLOCK
Pavel Begunkovdc2a6e92021-01-19 13:32:35 +00002604static bool io_resubmit_prep(struct io_kiocb *req)
Jens Axboeb63534c2020-06-04 11:28:00 -06002605{
Pavel Begunkovab454432021-03-22 01:58:33 +00002606 struct io_async_rw *rw = req->async_data;
Jens Axboeb63534c2020-06-04 11:28:00 -06002607
Pavel Begunkovab454432021-03-22 01:58:33 +00002608 if (!rw)
2609 return !io_req_prep_async(req);
Jens Axboecd658692021-09-10 11:19:14 -06002610 iov_iter_restore(&rw->iter, &rw->iter_state);
Pavel Begunkovab454432021-03-22 01:58:33 +00002611 return true;
Jens Axboeb63534c2020-06-04 11:28:00 -06002612}
Jens Axboeb63534c2020-06-04 11:28:00 -06002613
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002614static bool io_rw_should_reissue(struct io_kiocb *req)
Jens Axboeb63534c2020-06-04 11:28:00 -06002615{
Jens Axboe355afae2020-09-02 09:30:31 -06002616 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002617 struct io_ring_ctx *ctx = req->ctx;
Jens Axboeb63534c2020-06-04 11:28:00 -06002618
Jens Axboe355afae2020-09-02 09:30:31 -06002619 if (!S_ISBLK(mode) && !S_ISREG(mode))
2620 return false;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002621 if ((req->flags & REQ_F_NOWAIT) || (io_wq_current_is_worker() &&
2622 !(ctx->flags & IORING_SETUP_IOPOLL)))
Jens Axboeb63534c2020-06-04 11:28:00 -06002623 return false;
Jens Axboe7c977a52021-02-23 19:17:35 -07002624 /*
2625 * If ref is dying, we might be running poll reap from the exit work.
2626 * Don't attempt to reissue from that path, just let it fail with
2627 * -EAGAIN.
2628 */
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002629 if (percpu_ref_is_dying(&ctx->refs))
2630 return false;
Jens Axboeef046882021-07-27 10:50:31 -06002631 /*
2632 * Play it safe and assume not safe to re-import and reissue if we're
2633 * not in the original thread group (or in task context).
2634 */
2635 if (!same_thread_group(req->task, current) || !in_task())
2636 return false;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002637 return true;
2638}
Jens Axboee82ad482021-04-02 19:45:34 -06002639#else
Jens Axboea1ff1e32021-04-12 06:40:02 -06002640static bool io_resubmit_prep(struct io_kiocb *req)
2641{
2642 return false;
2643}
Jens Axboee82ad482021-04-02 19:45:34 -06002644static bool io_rw_should_reissue(struct io_kiocb *req)
2645{
2646 return false;
2647}
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002648#endif
2649
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002650static bool __io_complete_rw_common(struct io_kiocb *req, long res)
Jens Axboea1d7c392020-06-22 11:09:46 -06002651{
Pavel Begunkovb65c1282021-03-22 01:45:59 +00002652 if (req->rw.kiocb.ki_flags & IOCB_WRITE)
2653 kiocb_end_write(req);
Pavel Begunkov9532b992021-03-22 01:58:34 +00002654 if (res != req->result) {
2655 if ((res == -EAGAIN || res == -EOPNOTSUPP) &&
2656 io_rw_should_reissue(req)) {
2657 req->flags |= REQ_F_REISSUE;
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002658 return true;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002659 }
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002660 req_set_fail(req);
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002661 req->result = res;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002662 }
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002663 return false;
2664}
2665
Pavel Begunkovf237c302021-08-18 12:42:46 +01002666static void io_req_task_complete(struct io_kiocb *req, bool *locked)
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002667{
Pavel Begunkov126180b2021-08-18 12:42:47 +01002668 unsigned int cflags = io_put_rw_kbuf(req);
2669 long res = req->result;
2670
2671 if (*locked) {
2672 struct io_ring_ctx *ctx = req->ctx;
2673 struct io_submit_state *state = &ctx->submit_state;
2674
2675 io_req_complete_state(req, res, cflags);
2676 state->compl_reqs[state->compl_nr++] = req;
2677 if (state->compl_nr == ARRAY_SIZE(state->compl_reqs))
2678 io_submit_flush_completions(ctx);
2679 } else {
2680 io_req_complete_post(req, res, cflags);
2681 }
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002682}
2683
2684static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2685 unsigned int issue_flags)
2686{
2687 if (__io_complete_rw_common(req, res))
2688 return;
Pavel Begunkov63637852021-09-02 00:38:22 +01002689 __io_req_complete(req, issue_flags, req->result, io_put_rw_kbuf(req));
Jens Axboeba816ad2019-09-28 11:36:45 -06002690}
2691
2692static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2693{
Jens Axboe9adbd452019-12-20 08:45:55 -07002694 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002695
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002696 if (__io_complete_rw_common(req, res))
2697 return;
2698 req->result = res;
2699 req->io_task_work.func = io_req_task_complete;
2700 io_req_task_work_add(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002701}
2702
Jens Axboedef596e2019-01-09 08:59:42 -07002703static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2704{
Jens Axboe9adbd452019-12-20 08:45:55 -07002705 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002706
Jens Axboe491381ce2019-10-17 09:20:46 -06002707 if (kiocb->ki_flags & IOCB_WRITE)
2708 kiocb_end_write(req);
Pavel Begunkov9532b992021-03-22 01:58:34 +00002709 if (unlikely(res != req->result)) {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002710 if (res == -EAGAIN && io_rw_should_reissue(req)) {
2711 req->flags |= REQ_F_REISSUE;
2712 return;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002713 }
Pavel Begunkov8c130822021-03-22 01:58:32 +00002714 }
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002715
2716 WRITE_ONCE(req->result, res);
Jens Axboeb9b0e0d2021-02-23 08:18:36 -07002717 /* order with io_iopoll_complete() checking ->result */
Pavel Begunkovcd664b02020-06-25 12:37:10 +03002718 smp_wmb();
2719 WRITE_ONCE(req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002720}
2721
2722/*
2723 * After the iocb has been issued, it's safe to be found on the poll list.
2724 * Adding the kiocb to the list AFTER submission ensures that we don't
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002725 * find it from a io_do_iopoll() thread before the issuer is done
Jens Axboedef596e2019-01-09 08:59:42 -07002726 * accessing the kiocb cookie.
2727 */
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002728static void io_iopoll_req_issued(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07002729{
2730 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002731 const bool in_async = io_wq_current_is_worker();
2732
2733 /* workqueue context doesn't hold uring_lock, grab it now */
2734 if (unlikely(in_async))
2735 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002736
2737 /*
2738 * Track whether we have multiple files in our lists. This will impact
2739 * how we do polling eventually, not spinning if we're on potentially
2740 * different devices.
2741 */
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002742 if (list_empty(&ctx->iopoll_list)) {
Hao Xu915b3dd2021-06-28 05:37:30 +08002743 ctx->poll_multi_queue = false;
2744 } else if (!ctx->poll_multi_queue) {
Jens Axboedef596e2019-01-09 08:59:42 -07002745 struct io_kiocb *list_req;
Hao Xu915b3dd2021-06-28 05:37:30 +08002746 unsigned int queue_num0, queue_num1;
Jens Axboedef596e2019-01-09 08:59:42 -07002747
Pavel Begunkov540e32a2020-07-13 23:37:09 +03002748 list_req = list_first_entry(&ctx->iopoll_list, struct io_kiocb,
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002749 inflight_entry);
Hao Xu915b3dd2021-06-28 05:37:30 +08002750
2751 if (list_req->file != req->file) {
2752 ctx->poll_multi_queue = true;
2753 } else {
2754 queue_num0 = blk_qc_t_to_queue_num(list_req->rw.kiocb.ki_cookie);
2755 queue_num1 = blk_qc_t_to_queue_num(req->rw.kiocb.ki_cookie);
2756 if (queue_num0 != queue_num1)
2757 ctx->poll_multi_queue = true;
2758 }
Jens Axboedef596e2019-01-09 08:59:42 -07002759 }
2760
2761 /*
2762 * For fast devices, IO may have already completed. If it has, add
2763 * it to the front so we find it first.
2764 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002765 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002766 list_add(&req->inflight_entry, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002767 else
Pavel Begunkovd21ffe72020-07-13 23:37:10 +03002768 list_add_tail(&req->inflight_entry, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002769
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002770 if (unlikely(in_async)) {
2771 /*
2772 * If IORING_SETUP_SQPOLL is enabled, sqes are either handle
2773 * in sq thread task context or in io worker task context. If
2774 * current task context is sq thread, we don't need to check
2775 * whether should wake up sq thread.
2776 */
2777 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2778 wq_has_sleeper(&ctx->sq_data->wait))
2779 wake_up(&ctx->sq_data->wait);
2780
2781 mutex_unlock(&ctx->uring_lock);
2782 }
Jens Axboedef596e2019-01-09 08:59:42 -07002783}
2784
Jens Axboe4503b762020-06-01 10:00:27 -06002785static bool io_bdev_nowait(struct block_device *bdev)
2786{
Jeffle Xu9ba0d0c2020-10-19 16:59:42 +08002787 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
Jens Axboe4503b762020-06-01 10:00:27 -06002788}
2789
Jens Axboe2b188cc2019-01-07 10:46:33 -07002790/*
2791 * If we tracked the file through the SCM inflight mechanism, we could support
2792 * any file. For now, just ensure that anything potentially problematic is done
2793 * inline.
2794 */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002795static bool __io_file_supports_nowait(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002796{
2797 umode_t mode = file_inode(file)->i_mode;
2798
Jens Axboe4503b762020-06-01 10:00:27 -06002799 if (S_ISBLK(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002800 if (IS_ENABLED(CONFIG_BLOCK) &&
2801 io_bdev_nowait(I_BDEV(file->f_mapping->host)))
Jens Axboe4503b762020-06-01 10:00:27 -06002802 return true;
2803 return false;
2804 }
Pavel Begunkov976517f2021-06-09 12:07:25 +01002805 if (S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002806 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002807 if (S_ISREG(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002808 if (IS_ENABLED(CONFIG_BLOCK) &&
2809 io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
Jens Axboe4503b762020-06-01 10:00:27 -06002810 file->f_op != &io_uring_fops)
2811 return true;
2812 return false;
2813 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002814
Jens Axboec5b85622020-06-09 19:23:05 -06002815 /* any ->read/write should understand O_NONBLOCK */
2816 if (file->f_flags & O_NONBLOCK)
2817 return true;
2818
Jens Axboeaf197f52020-04-28 13:15:06 -06002819 if (!(file->f_mode & FMODE_NOWAIT))
2820 return false;
2821
2822 if (rw == READ)
2823 return file->f_op->read_iter != NULL;
2824
2825 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002826}
2827
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002828static bool io_file_supports_nowait(struct io_kiocb *req, int rw)
Jens Axboe7b29f922021-03-12 08:30:14 -07002829{
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002830 if (rw == READ && (req->flags & REQ_F_NOWAIT_READ))
Jens Axboe7b29f922021-03-12 08:30:14 -07002831 return true;
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002832 else if (rw == WRITE && (req->flags & REQ_F_NOWAIT_WRITE))
Jens Axboe7b29f922021-03-12 08:30:14 -07002833 return true;
2834
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002835 return __io_file_supports_nowait(req->file, rw);
Jens Axboe7b29f922021-03-12 08:30:14 -07002836}
2837
Jens Axboe5d329e12021-09-14 11:08:37 -06002838static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2839 int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002840{
Jens Axboedef596e2019-01-09 08:59:42 -07002841 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002842 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002843 struct file *file = req->file;
Jens Axboe09bb8392019-03-13 12:39:28 -06002844 unsigned ioprio;
2845 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002846
Pavel Begunkovc97d8a02021-08-09 13:04:04 +01002847 if (!io_req_ffs_set(req) && S_ISREG(file_inode(file)->i_mode))
Jens Axboe491381ce2019-10-17 09:20:46 -06002848 req->flags |= REQ_F_ISREG;
2849
Jens Axboe2b188cc2019-01-07 10:46:33 -07002850 kiocb->ki_pos = READ_ONCE(sqe->off);
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002851 if (kiocb->ki_pos == -1 && !(file->f_mode & FMODE_STREAM)) {
Jens Axboeba042912019-12-25 16:33:42 -07002852 req->flags |= REQ_F_CUR_POS;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002853 kiocb->ki_pos = file->f_pos;
Jens Axboeba042912019-12-25 16:33:42 -07002854 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002855 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002856 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2857 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2858 if (unlikely(ret))
2859 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002860
Jens Axboe5d329e12021-09-14 11:08:37 -06002861 /*
2862 * If the file is marked O_NONBLOCK, still allow retry for it if it
2863 * supports async. Otherwise it's impossible to use O_NONBLOCK files
2864 * reliably. If not, or it IOCB_NOWAIT is set, don't retry.
2865 */
2866 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2867 ((file->f_flags & O_NONBLOCK) && !io_file_supports_nowait(req, rw)))
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002868 req->flags |= REQ_F_NOWAIT;
2869
Jens Axboe2b188cc2019-01-07 10:46:33 -07002870 ioprio = READ_ONCE(sqe->ioprio);
2871 if (ioprio) {
2872 ret = ioprio_check_cap(ioprio);
2873 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002874 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002875
2876 kiocb->ki_ioprio = ioprio;
2877 } else
2878 kiocb->ki_ioprio = get_current_ioprio();
2879
Jens Axboedef596e2019-01-09 08:59:42 -07002880 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002881 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2882 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002883 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002884
Jens Axboe394918e2021-03-08 11:40:23 -07002885 kiocb->ki_flags |= IOCB_HIPRI | IOCB_ALLOC_CACHE;
Jens Axboedef596e2019-01-09 08:59:42 -07002886 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002887 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002888 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002889 if (kiocb->ki_flags & IOCB_HIPRI)
2890 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002891 kiocb->ki_complete = io_complete_rw;
2892 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002893
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002894 if (req->opcode == IORING_OP_READ_FIXED ||
2895 req->opcode == IORING_OP_WRITE_FIXED) {
2896 req->imu = NULL;
2897 io_req_set_rsrc_node(req);
2898 }
2899
Jens Axboe3529d8c2019-12-19 18:24:38 -07002900 req->rw.addr = READ_ONCE(sqe->addr);
2901 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002902 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002903 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002904}
2905
2906static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2907{
2908 switch (ret) {
2909 case -EIOCBQUEUED:
2910 break;
2911 case -ERESTARTSYS:
2912 case -ERESTARTNOINTR:
2913 case -ERESTARTNOHAND:
2914 case -ERESTART_RESTARTBLOCK:
2915 /*
2916 * We can't just restart the syscall, since previously
2917 * submitted sqes may already be in progress. Just fail this
2918 * IO with EINTR.
2919 */
2920 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002921 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002922 default:
2923 kiocb->ki_complete(kiocb, ret, 0);
2924 }
2925}
2926
Jens Axboea1d7c392020-06-22 11:09:46 -06002927static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
Pavel Begunkov889fca72021-02-10 00:03:09 +00002928 unsigned int issue_flags)
Jens Axboeba816ad2019-09-28 11:36:45 -06002929{
Jens Axboeba042912019-12-25 16:33:42 -07002930 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboee8c2bc12020-08-15 18:44:09 -07002931 struct io_async_rw *io = req->async_data;
Jens Axboeba042912019-12-25 16:33:42 -07002932
Jens Axboe227c0c92020-08-13 11:51:40 -06002933 /* add previously done IO, if any */
Jens Axboee8c2bc12020-08-15 18:44:09 -07002934 if (io && io->bytes_done > 0) {
Jens Axboe227c0c92020-08-13 11:51:40 -06002935 if (ret < 0)
Jens Axboee8c2bc12020-08-15 18:44:09 -07002936 ret = io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002937 else
Jens Axboee8c2bc12020-08-15 18:44:09 -07002938 ret += io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002939 }
2940
Jens Axboeba042912019-12-25 16:33:42 -07002941 if (req->flags & REQ_F_CUR_POS)
2942 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002943 if (ret >= 0 && (kiocb->ki_complete == io_complete_rw))
Pavel Begunkov889fca72021-02-10 00:03:09 +00002944 __io_complete_rw(req, ret, 0, issue_flags);
Jens Axboeba816ad2019-09-28 11:36:45 -06002945 else
2946 io_rw_done(kiocb, ret);
Pavel Begunkov97284632021-04-08 19:28:03 +01002947
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002948 if (req->flags & REQ_F_REISSUE) {
Pavel Begunkov97284632021-04-08 19:28:03 +01002949 req->flags &= ~REQ_F_REISSUE;
Jens Axboea7be7c22021-04-15 11:31:14 -06002950 if (io_resubmit_prep(req)) {
Jens Axboe773af692021-07-27 10:25:55 -06002951 io_req_task_queue_reissue(req);
Pavel Begunkov8c130822021-03-22 01:58:32 +00002952 } else {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002953 unsigned int cflags = io_put_rw_kbuf(req);
2954 struct io_ring_ctx *ctx = req->ctx;
2955
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002956 req_set_fail(req);
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002957 if (issue_flags & IO_URING_F_NONBLOCK) {
2958 mutex_lock(&ctx->uring_lock);
2959 __io_req_complete(req, issue_flags, ret, cflags);
2960 mutex_unlock(&ctx->uring_lock);
2961 } else {
2962 __io_req_complete(req, issue_flags, ret, cflags);
2963 }
Pavel Begunkov97284632021-04-08 19:28:03 +01002964 }
2965 }
Jens Axboeba816ad2019-09-28 11:36:45 -06002966}
2967
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002968static int __io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter,
2969 struct io_mapped_ubuf *imu)
Jens Axboeedafcce2019-01-09 09:16:05 -07002970{
Jens Axboe9adbd452019-12-20 08:45:55 -07002971 size_t len = req->rw.len;
Pavel Begunkov75769e32021-04-01 15:43:54 +01002972 u64 buf_end, buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002973 size_t offset;
Jens Axboeedafcce2019-01-09 09:16:05 -07002974
Pavel Begunkov75769e32021-04-01 15:43:54 +01002975 if (unlikely(check_add_overflow(buf_addr, (u64)len, &buf_end)))
Jens Axboeedafcce2019-01-09 09:16:05 -07002976 return -EFAULT;
2977 /* not inside the mapped region */
Pavel Begunkov4751f532021-04-01 15:43:55 +01002978 if (unlikely(buf_addr < imu->ubuf || buf_end > imu->ubuf_end))
Jens Axboeedafcce2019-01-09 09:16:05 -07002979 return -EFAULT;
2980
2981 /*
2982 * May not be a start of buffer, set size appropriately
2983 * and advance us to the beginning.
2984 */
2985 offset = buf_addr - imu->ubuf;
2986 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002987
2988 if (offset) {
2989 /*
2990 * Don't use iov_iter_advance() here, as it's really slow for
2991 * using the latter parts of a big fixed buffer - it iterates
2992 * over each segment manually. We can cheat a bit here, because
2993 * we know that:
2994 *
2995 * 1) it's a BVEC iter, we set it up
2996 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2997 * first and last bvec
2998 *
2999 * So just find our index, and adjust the iterator afterwards.
3000 * If the offset is within the first bvec (or the whole first
3001 * bvec, just use iov_iter_advance(). This makes it easier
3002 * since we can just skip the first segment, which may not
3003 * be PAGE_SIZE aligned.
3004 */
3005 const struct bio_vec *bvec = imu->bvec;
3006
3007 if (offset <= bvec->bv_len) {
3008 iov_iter_advance(iter, offset);
3009 } else {
3010 unsigned long seg_skip;
3011
3012 /* skip first vec */
3013 offset -= bvec->bv_len;
3014 seg_skip = 1 + (offset >> PAGE_SHIFT);
3015
3016 iter->bvec = bvec + seg_skip;
3017 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02003018 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06003019 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06003020 }
3021 }
3022
Pavel Begunkov847595d2021-02-04 13:52:06 +00003023 return 0;
Jens Axboeedafcce2019-01-09 09:16:05 -07003024}
3025
Pavel Begunkoveae071c2021-04-25 14:32:24 +01003026static int io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter)
3027{
3028 struct io_ring_ctx *ctx = req->ctx;
3029 struct io_mapped_ubuf *imu = req->imu;
3030 u16 index, buf_index = req->buf_index;
3031
3032 if (likely(!imu)) {
3033 if (unlikely(buf_index >= ctx->nr_user_bufs))
3034 return -EFAULT;
3035 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
3036 imu = READ_ONCE(ctx->user_bufs[index]);
3037 req->imu = imu;
3038 }
3039 return __io_import_fixed(req, rw, iter, imu);
3040}
3041
Jens Axboebcda7ba2020-02-23 16:42:51 -07003042static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
3043{
3044 if (needs_lock)
3045 mutex_unlock(&ctx->uring_lock);
3046}
3047
3048static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
3049{
3050 /*
3051 * "Normal" inline submissions always hold the uring_lock, since we
3052 * grab it from the system call. Same is true for the SQPOLL offload.
3053 * The only exception is when we've detached the request and issue it
3054 * from an async worker thread, grab the lock for that case.
3055 */
3056 if (needs_lock)
3057 mutex_lock(&ctx->uring_lock);
3058}
3059
3060static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
3061 int bgid, struct io_buffer *kbuf,
3062 bool needs_lock)
3063{
3064 struct io_buffer *head;
3065
3066 if (req->flags & REQ_F_BUFFER_SELECTED)
3067 return kbuf;
3068
3069 io_ring_submit_lock(req->ctx, needs_lock);
3070
3071 lockdep_assert_held(&req->ctx->uring_lock);
3072
Jens Axboe9e15c3a2021-03-13 12:29:43 -07003073 head = xa_load(&req->ctx->io_buffers, bgid);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003074 if (head) {
3075 if (!list_empty(&head->list)) {
3076 kbuf = list_last_entry(&head->list, struct io_buffer,
3077 list);
3078 list_del(&kbuf->list);
3079 } else {
3080 kbuf = head;
Jens Axboe9e15c3a2021-03-13 12:29:43 -07003081 xa_erase(&req->ctx->io_buffers, bgid);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003082 }
3083 if (*len > kbuf->len)
3084 *len = kbuf->len;
3085 } else {
3086 kbuf = ERR_PTR(-ENOBUFS);
3087 }
3088
3089 io_ring_submit_unlock(req->ctx, needs_lock);
3090
3091 return kbuf;
3092}
3093
Jens Axboe4d954c22020-02-27 07:31:19 -07003094static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
3095 bool needs_lock)
3096{
3097 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003098 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07003099
3100 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003101 bgid = req->buf_index;
Jens Axboe4d954c22020-02-27 07:31:19 -07003102 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
3103 if (IS_ERR(kbuf))
3104 return kbuf;
3105 req->rw.addr = (u64) (unsigned long) kbuf;
3106 req->flags |= REQ_F_BUFFER_SELECTED;
3107 return u64_to_user_ptr(kbuf->addr);
3108}
3109
3110#ifdef CONFIG_COMPAT
3111static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
3112 bool needs_lock)
3113{
3114 struct compat_iovec __user *uiov;
3115 compat_ssize_t clen;
3116 void __user *buf;
3117 ssize_t len;
3118
3119 uiov = u64_to_user_ptr(req->rw.addr);
3120 if (!access_ok(uiov, sizeof(*uiov)))
3121 return -EFAULT;
3122 if (__get_user(clen, &uiov->iov_len))
3123 return -EFAULT;
3124 if (clen < 0)
3125 return -EINVAL;
3126
3127 len = clen;
3128 buf = io_rw_buffer_select(req, &len, needs_lock);
3129 if (IS_ERR(buf))
3130 return PTR_ERR(buf);
3131 iov[0].iov_base = buf;
3132 iov[0].iov_len = (compat_size_t) len;
3133 return 0;
3134}
3135#endif
3136
3137static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3138 bool needs_lock)
3139{
3140 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
3141 void __user *buf;
3142 ssize_t len;
3143
3144 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3145 return -EFAULT;
3146
3147 len = iov[0].iov_len;
3148 if (len < 0)
3149 return -EINVAL;
3150 buf = io_rw_buffer_select(req, &len, needs_lock);
3151 if (IS_ERR(buf))
3152 return PTR_ERR(buf);
3153 iov[0].iov_base = buf;
3154 iov[0].iov_len = len;
3155 return 0;
3156}
3157
3158static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3159 bool needs_lock)
3160{
Jens Axboedddb3e22020-06-04 11:27:01 -06003161 if (req->flags & REQ_F_BUFFER_SELECTED) {
3162 struct io_buffer *kbuf;
3163
3164 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
3165 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3166 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003167 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06003168 }
Pavel Begunkovdd201662020-12-19 03:15:43 +00003169 if (req->rw.len != 1)
Jens Axboe4d954c22020-02-27 07:31:19 -07003170 return -EINVAL;
3171
3172#ifdef CONFIG_COMPAT
3173 if (req->ctx->compat)
3174 return io_compat_import(req, iov, needs_lock);
3175#endif
3176
3177 return __io_iov_buffer_select(req, iov, needs_lock);
3178}
3179
Pavel Begunkov847595d2021-02-04 13:52:06 +00003180static int io_import_iovec(int rw, struct io_kiocb *req, struct iovec **iovec,
3181 struct iov_iter *iter, bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003182{
Jens Axboe9adbd452019-12-20 08:45:55 -07003183 void __user *buf = u64_to_user_ptr(req->rw.addr);
3184 size_t sqe_len = req->rw.len;
Pavel Begunkov847595d2021-02-04 13:52:06 +00003185 u8 opcode = req->opcode;
Jens Axboe4d954c22020-02-27 07:31:19 -07003186 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07003187
Pavel Begunkov7d009162019-11-25 23:14:40 +03003188 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07003189 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07003190 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07003191 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003192
Jens Axboebcda7ba2020-02-23 16:42:51 -07003193 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003194 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07003195 return -EINVAL;
3196
Jens Axboe3a6820f2019-12-22 15:19:35 -07003197 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07003198 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07003199 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03003200 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07003201 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003202 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003203 }
3204
Jens Axboe3a6820f2019-12-22 15:19:35 -07003205 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
3206 *iovec = NULL;
David Laight10fc72e2020-11-07 13:16:25 +00003207 return ret;
Jens Axboe3a6820f2019-12-22 15:19:35 -07003208 }
3209
Jens Axboe4d954c22020-02-27 07:31:19 -07003210 if (req->flags & REQ_F_BUFFER_SELECT) {
3211 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Pavel Begunkov847595d2021-02-04 13:52:06 +00003212 if (!ret)
3213 iov_iter_init(iter, rw, *iovec, 1, (*iovec)->iov_len);
Jens Axboe4d954c22020-02-27 07:31:19 -07003214 *iovec = NULL;
3215 return ret;
3216 }
3217
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02003218 return __import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter,
3219 req->ctx->compat);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003220}
3221
Jens Axboe0fef9482020-08-26 10:36:20 -06003222static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3223{
Pavel Begunkov5b09e372020-09-30 22:57:15 +03003224 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
Jens Axboe0fef9482020-08-26 10:36:20 -06003225}
3226
Jens Axboe32960612019-09-23 11:05:34 -06003227/*
3228 * For files that don't have ->read_iter() and ->write_iter(), handle them
3229 * by looping over ->read() or ->write() manually.
3230 */
Jens Axboe4017eb92020-10-22 14:14:12 -06003231static ssize_t loop_rw_iter(int rw, struct io_kiocb *req, struct iov_iter *iter)
Jens Axboe32960612019-09-23 11:05:34 -06003232{
Jens Axboe4017eb92020-10-22 14:14:12 -06003233 struct kiocb *kiocb = &req->rw.kiocb;
3234 struct file *file = req->file;
Jens Axboe32960612019-09-23 11:05:34 -06003235 ssize_t ret = 0;
3236
3237 /*
3238 * Don't support polled IO through this interface, and we can't
3239 * support non-blocking either. For the latter, this just causes
3240 * the kiocb to be handled from an async context.
3241 */
3242 if (kiocb->ki_flags & IOCB_HIPRI)
3243 return -EOPNOTSUPP;
3244 if (kiocb->ki_flags & IOCB_NOWAIT)
3245 return -EAGAIN;
3246
3247 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003248 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06003249 ssize_t nr;
3250
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003251 if (!iov_iter_is_bvec(iter)) {
3252 iovec = iov_iter_iovec(iter);
3253 } else {
Jens Axboe4017eb92020-10-22 14:14:12 -06003254 iovec.iov_base = u64_to_user_ptr(req->rw.addr);
3255 iovec.iov_len = req->rw.len;
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003256 }
3257
Jens Axboe32960612019-09-23 11:05:34 -06003258 if (rw == READ) {
3259 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003260 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003261 } else {
3262 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003263 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003264 }
3265
3266 if (nr < 0) {
3267 if (!ret)
3268 ret = nr;
3269 break;
3270 }
Jens Axboe16c8d2d2021-09-12 06:45:07 -06003271 if (!iov_iter_is_bvec(iter)) {
3272 iov_iter_advance(iter, nr);
3273 } else {
3274 req->rw.len -= nr;
3275 req->rw.addr += nr;
3276 }
Jens Axboe32960612019-09-23 11:05:34 -06003277 ret += nr;
3278 if (nr != iovec.iov_len)
3279 break;
Jens Axboe32960612019-09-23 11:05:34 -06003280 }
3281
3282 return ret;
3283}
3284
Jens Axboeff6165b2020-08-13 09:47:43 -06003285static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3286 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07003287{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003288 struct io_async_rw *rw = req->async_data;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003289
Jens Axboeff6165b2020-08-13 09:47:43 -06003290 memcpy(&rw->iter, iter, sizeof(*iter));
Pavel Begunkovafb87652020-09-06 00:45:46 +03003291 rw->free_iovec = iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -06003292 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06003293 /* can only be fixed buffers, no need to do anything */
Pavel Begunkov9c3a2052020-11-23 23:20:27 +00003294 if (iov_iter_is_bvec(iter))
Jens Axboeff6165b2020-08-13 09:47:43 -06003295 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003296 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06003297 unsigned iov_off = 0;
3298
3299 rw->iter.iov = rw->fast_iov;
3300 if (iter->iov != fast_iov) {
3301 iov_off = iter->iov - fast_iov;
3302 rw->iter.iov += iov_off;
3303 }
3304 if (rw->fast_iov != fast_iov)
3305 memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08003306 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003307 } else {
3308 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07003309 }
3310}
3311
Pavel Begunkov6cb78682021-02-28 22:35:17 +00003312static inline int io_alloc_async_data(struct io_kiocb *req)
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003313{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003314 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3315 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
3316 return req->async_data == NULL;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003317}
3318
Jens Axboeff6165b2020-08-13 09:47:43 -06003319static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3320 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06003321 struct iov_iter *iter, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003322{
Pavel Begunkov26f05052021-02-28 22:35:18 +00003323 if (!force && !io_op_defs[req->opcode].needs_async_setup)
Jens Axboe74566df2020-01-13 19:23:24 -07003324 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003325 if (!req->async_data) {
Jens Axboecd658692021-09-10 11:19:14 -06003326 struct io_async_rw *iorw;
3327
Pavel Begunkov6cb78682021-02-28 22:35:17 +00003328 if (io_alloc_async_data(req)) {
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003329 kfree(iovec);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003330 return -ENOMEM;
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003331 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003332
Jens Axboeff6165b2020-08-13 09:47:43 -06003333 io_req_map_rw(req, iovec, fast_iov, iter);
Jens Axboecd658692021-09-10 11:19:14 -06003334 iorw = req->async_data;
3335 /* we've copied and mapped the iter, ensure state is saved */
3336 iov_iter_save_state(&iorw->iter, &iorw->iter_state);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003337 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003338 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003339}
3340
Pavel Begunkov73debe62020-09-30 22:57:54 +03003341static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003342{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003343 struct io_async_rw *iorw = req->async_data;
Pavel Begunkovf4bff102020-09-06 00:45:45 +03003344 struct iovec *iov = iorw->fast_iov;
Pavel Begunkov847595d2021-02-04 13:52:06 +00003345 int ret;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003346
Pavel Begunkov2846c482020-11-07 13:16:27 +00003347 ret = io_import_iovec(rw, req, &iov, &iorw->iter, false);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003348 if (unlikely(ret < 0))
3349 return ret;
3350
Pavel Begunkovab0b1962020-09-06 00:45:47 +03003351 iorw->bytes_done = 0;
3352 iorw->free_iovec = iov;
3353 if (iov)
3354 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecd658692021-09-10 11:19:14 -06003355 iov_iter_save_state(&iorw->iter, &iorw->iter_state);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003356 return 0;
3357}
3358
Pavel Begunkov73debe62020-09-30 22:57:54 +03003359static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003360{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003361 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3362 return -EBADF;
Jens Axboe5d329e12021-09-14 11:08:37 -06003363 return io_prep_rw(req, sqe, READ);
Jens Axboef67676d2019-12-02 11:03:47 -07003364}
3365
Jens Axboec1dd91d2020-08-03 16:43:59 -06003366/*
3367 * This is our waitqueue callback handler, registered through lock_page_async()
3368 * when we initially tried to do the IO with the iocb armed our waitqueue.
3369 * This gets called when the page is unlocked, and we generally expect that to
3370 * happen when the page IO is completed and the page is now uptodate. This will
3371 * queue a task_work based retry of the operation, attempting to copy the data
3372 * again. If the latter fails because the page was NOT uptodate, then we will
3373 * do a thread based blocking retry of the operation. That's the unexpected
3374 * slow path.
3375 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003376static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3377 int sync, void *arg)
3378{
3379 struct wait_page_queue *wpq;
3380 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003381 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003382
3383 wpq = container_of(wait, struct wait_page_queue, wait);
3384
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003385 if (!wake_page_match(wpq, key))
3386 return 0;
3387
Hao Xuc8d317a2020-09-29 20:00:45 +08003388 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003389 list_del_init(&wait->entry);
Pavel Begunkov921b9052021-02-12 03:23:53 +00003390 io_req_task_queue(req);
Jens Axboebcf5a062020-05-22 09:24:42 -06003391 return 1;
3392}
3393
Jens Axboec1dd91d2020-08-03 16:43:59 -06003394/*
3395 * This controls whether a given IO request should be armed for async page
3396 * based retry. If we return false here, the request is handed to the async
3397 * worker threads for retry. If we're doing buffered reads on a regular file,
3398 * we prepare a private wait_page_queue entry and retry the operation. This
3399 * will either succeed because the page is now uptodate and unlocked, or it
3400 * will register a callback when the page is unlocked at IO completion. Through
3401 * that callback, io_uring uses task_work to setup a retry of the operation.
3402 * That retry will attempt the buffered read again. The retry will generally
3403 * succeed, or in rare cases where it fails, we then fall back to using the
3404 * async worker threads for a blocking retry.
3405 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003406static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003407{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003408 struct io_async_rw *rw = req->async_data;
3409 struct wait_page_queue *wait = &rw->wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003410 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003411
3412 /* never retry for NOWAIT, we just complete with -EAGAIN */
3413 if (req->flags & REQ_F_NOWAIT)
3414 return false;
3415
Jens Axboe227c0c92020-08-13 11:51:40 -06003416 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003417 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003418 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003419
Jens Axboebcf5a062020-05-22 09:24:42 -06003420 /*
3421 * just use poll if we can, and don't attempt if the fs doesn't
3422 * support callback based unlocks
3423 */
3424 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3425 return false;
3426
Jens Axboe3b2a4432020-08-16 10:58:43 -07003427 wait->wait.func = io_async_buf_func;
3428 wait->wait.private = req;
3429 wait->wait.flags = 0;
3430 INIT_LIST_HEAD(&wait->wait.entry);
3431 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003432 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003433 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003434 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003435}
3436
Pavel Begunkovaeab9502021-06-14 02:36:24 +01003437static inline int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
Jens Axboebcf5a062020-05-22 09:24:42 -06003438{
3439 if (req->file->f_op->read_iter)
3440 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003441 else if (req->file->f_op->read)
Jens Axboe4017eb92020-10-22 14:14:12 -06003442 return loop_rw_iter(READ, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003443 else
3444 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003445}
3446
Ming Lei7db30432021-08-21 23:07:51 +08003447static bool need_read_all(struct io_kiocb *req)
3448{
3449 return req->flags & REQ_F_ISREG ||
3450 S_ISBLK(file_inode(req->file)->i_mode);
3451}
3452
Pavel Begunkov889fca72021-02-10 00:03:09 +00003453static int io_read(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003454{
3455 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003456 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003457 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003458 struct io_async_rw *rw = req->async_data;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003459 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboecd658692021-09-10 11:19:14 -06003460 struct iov_iter_state __state, *state;
3461 ssize_t ret, ret2;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003462
Pavel Begunkov2846c482020-11-07 13:16:27 +00003463 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003464 iter = &rw->iter;
Jens Axboecd658692021-09-10 11:19:14 -06003465 state = &rw->iter_state;
3466 /*
3467 * We come here from an earlier attempt, restore our state to
3468 * match in case it doesn't. It's cheap enough that we don't
3469 * need to make this conditional.
3470 */
3471 iov_iter_restore(iter, state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003472 iovec = NULL;
3473 } else {
3474 ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
3475 if (ret < 0)
3476 return ret;
Jens Axboecd658692021-09-10 11:19:14 -06003477 state = &__state;
3478 iov_iter_save_state(iter, state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003479 }
Jens Axboecd658692021-09-10 11:19:14 -06003480 req->result = iov_iter_count(iter);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003481
Jens Axboefd6c2e42019-12-18 12:19:41 -07003482 /* Ensure we clear previously set non-block flag */
3483 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003484 kiocb->ki_flags &= ~IOCB_NOWAIT;
Pavel Begunkova88fc402020-09-30 22:57:53 +03003485 else
3486 kiocb->ki_flags |= IOCB_NOWAIT;
3487
Pavel Begunkov24c74672020-06-21 13:09:51 +03003488 /* If the file doesn't support async, just async punt */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01003489 if (force_nonblock && !io_file_supports_nowait(req, READ)) {
Pavel Begunkov6713e7a2021-02-04 13:51:59 +00003490 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003491 return ret ?: -EAGAIN;
Pavel Begunkov6713e7a2021-02-04 13:51:59 +00003492 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003493
Jens Axboecd658692021-09-10 11:19:14 -06003494 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), req->result);
Pavel Begunkov5ea5dd42021-02-04 13:52:03 +00003495 if (unlikely(ret)) {
3496 kfree(iovec);
3497 return ret;
3498 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003499
Jens Axboe227c0c92020-08-13 11:51:40 -06003500 ret = io_iter_do_read(req, iter);
Jens Axboe32960612019-09-23 11:05:34 -06003501
Jens Axboe230d50d2021-04-01 20:41:15 -06003502 if (ret == -EAGAIN || (req->flags & REQ_F_REISSUE)) {
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003503 req->flags &= ~REQ_F_REISSUE;
Jens Axboeeefdf302020-08-27 16:40:19 -06003504 /* IOPOLL retry should happen for io-wq threads */
3505 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003506 goto done;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00003507 /* no retry on NONBLOCK nor RWF_NOWAIT */
3508 if (req->flags & REQ_F_NOWAIT)
Jens Axboe355afae2020-09-02 09:30:31 -06003509 goto done;
Jens Axboef38c7e32020-09-25 15:23:43 -06003510 ret = 0;
Jens Axboe230d50d2021-04-01 20:41:15 -06003511 } else if (ret == -EIOCBQUEUED) {
3512 goto out_free;
Jens Axboecd658692021-09-10 11:19:14 -06003513 } else if (ret <= 0 || ret == req->result || !force_nonblock ||
Ming Lei7db30432021-08-21 23:07:51 +08003514 (req->flags & REQ_F_NOWAIT) || !need_read_all(req)) {
Pavel Begunkov7335e3b2021-02-04 13:52:02 +00003515 /* read all, failed, already did sync or don't want to retry */
Jens Axboe00d23d52020-08-25 12:59:22 -06003516 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003517 }
3518
Jens Axboecd658692021-09-10 11:19:14 -06003519 /*
3520 * Don't depend on the iter state matching what was consumed, or being
3521 * untouched in case of error. Restore it and we'll advance it
3522 * manually if we need to.
3523 */
3524 iov_iter_restore(iter, state);
3525
Jens Axboe227c0c92020-08-13 11:51:40 -06003526 ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003527 if (ret2)
3528 return ret2;
3529
Pavel Begunkovfe1cdd52021-02-17 21:02:36 +00003530 iovec = NULL;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003531 rw = req->async_data;
Jens Axboecd658692021-09-10 11:19:14 -06003532 /*
3533 * Now use our persistent iterator and state, if we aren't already.
3534 * We've restored and mapped the iter to match.
3535 */
3536 if (iter != &rw->iter) {
3537 iter = &rw->iter;
3538 state = &rw->iter_state;
3539 }
Jens Axboe227c0c92020-08-13 11:51:40 -06003540
Pavel Begunkovb23df912021-02-04 13:52:04 +00003541 do {
Jens Axboecd658692021-09-10 11:19:14 -06003542 /*
3543 * We end up here because of a partial read, either from
3544 * above or inside this loop. Advance the iter by the bytes
3545 * that were consumed.
3546 */
3547 iov_iter_advance(iter, ret);
3548 if (!iov_iter_count(iter))
3549 break;
Pavel Begunkovb23df912021-02-04 13:52:04 +00003550 rw->bytes_done += ret;
Jens Axboecd658692021-09-10 11:19:14 -06003551 iov_iter_save_state(iter, state);
3552
Pavel Begunkovb23df912021-02-04 13:52:04 +00003553 /* if we can retry, do so with the callbacks armed */
3554 if (!io_rw_should_retry(req)) {
3555 kiocb->ki_flags &= ~IOCB_WAITQ;
3556 return -EAGAIN;
3557 }
3558
3559 /*
3560 * Now retry read with the IOCB_WAITQ parts set in the iocb. If
3561 * we get -EIOCBQUEUED, then we'll get a notification when the
3562 * desired page gets unlocked. We can also get a partial read
3563 * here, and if we do, then just retry at the new offset.
3564 */
3565 ret = io_iter_do_read(req, iter);
3566 if (ret == -EIOCBQUEUED)
3567 return 0;
Jens Axboe227c0c92020-08-13 11:51:40 -06003568 /* we got some bytes, but not all. retry. */
Jens Axboeb5b0ecb2021-03-04 21:02:58 -07003569 kiocb->ki_flags &= ~IOCB_WAITQ;
Jens Axboecd658692021-09-10 11:19:14 -06003570 iov_iter_restore(iter, state);
3571 } while (ret > 0);
Jens Axboe227c0c92020-08-13 11:51:40 -06003572done:
Pavel Begunkov889fca72021-02-10 00:03:09 +00003573 kiocb_done(kiocb, ret, issue_flags);
Pavel Begunkovfe1cdd52021-02-17 21:02:36 +00003574out_free:
3575 /* it's faster to check here then delegate to kfree */
3576 if (iovec)
3577 kfree(iovec);
Pavel Begunkov5ea5dd42021-02-04 13:52:03 +00003578 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003579}
3580
Pavel Begunkov73debe62020-09-30 22:57:54 +03003581static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003582{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003583 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3584 return -EBADF;
Jens Axboe5d329e12021-09-14 11:08:37 -06003585 return io_prep_rw(req, sqe, WRITE);
Jens Axboef67676d2019-12-02 11:03:47 -07003586}
3587
Pavel Begunkov889fca72021-02-10 00:03:09 +00003588static int io_write(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003589{
3590 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003591 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003592 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003593 struct io_async_rw *rw = req->async_data;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003594 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboecd658692021-09-10 11:19:14 -06003595 struct iov_iter_state __state, *state;
3596 ssize_t ret, ret2;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003597
Pavel Begunkov2846c482020-11-07 13:16:27 +00003598 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003599 iter = &rw->iter;
Jens Axboecd658692021-09-10 11:19:14 -06003600 state = &rw->iter_state;
3601 iov_iter_restore(iter, state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003602 iovec = NULL;
3603 } else {
3604 ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
3605 if (ret < 0)
3606 return ret;
Jens Axboecd658692021-09-10 11:19:14 -06003607 state = &__state;
3608 iov_iter_save_state(iter, state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003609 }
Jens Axboecd658692021-09-10 11:19:14 -06003610 req->result = iov_iter_count(iter);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003611
Jens Axboefd6c2e42019-12-18 12:19:41 -07003612 /* Ensure we clear previously set non-block flag */
3613 if (!force_nonblock)
Pavel Begunkova88fc402020-09-30 22:57:53 +03003614 kiocb->ki_flags &= ~IOCB_NOWAIT;
3615 else
3616 kiocb->ki_flags |= IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003617
Pavel Begunkov24c74672020-06-21 13:09:51 +03003618 /* If the file doesn't support async, just async punt */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01003619 if (force_nonblock && !io_file_supports_nowait(req, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003620 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003621
Jens Axboe10d59342019-12-09 20:16:22 -07003622 /* file path doesn't support NOWAIT for non-direct_IO */
3623 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3624 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003625 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003626
Jens Axboecd658692021-09-10 11:19:14 -06003627 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), req->result);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003628 if (unlikely(ret))
3629 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003630
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003631 /*
3632 * Open-code file_start_write here to grab freeze protection,
3633 * which will be released by another thread in
3634 * io_complete_rw(). Fool lockdep by telling it the lock got
3635 * released so that it doesn't complain about the held lock when
3636 * we return to userspace.
3637 */
3638 if (req->flags & REQ_F_ISREG) {
Darrick J. Wong8a3c84b2020-11-10 16:50:21 -08003639 sb_start_write(file_inode(req->file)->i_sb);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003640 __sb_writers_release(file_inode(req->file)->i_sb,
3641 SB_FREEZE_WRITE);
3642 }
3643 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003644
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003645 if (req->file->f_op->write_iter)
Jens Axboeff6165b2020-08-13 09:47:43 -06003646 ret2 = call_write_iter(req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003647 else if (req->file->f_op->write)
Jens Axboe4017eb92020-10-22 14:14:12 -06003648 ret2 = loop_rw_iter(WRITE, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003649 else
3650 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003651
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003652 if (req->flags & REQ_F_REISSUE) {
3653 req->flags &= ~REQ_F_REISSUE;
Jens Axboe230d50d2021-04-01 20:41:15 -06003654 ret2 = -EAGAIN;
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003655 }
Jens Axboe230d50d2021-04-01 20:41:15 -06003656
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003657 /*
3658 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3659 * retry them without IOCB_NOWAIT.
3660 */
3661 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3662 ret2 = -EAGAIN;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00003663 /* no retry on NONBLOCK nor RWF_NOWAIT */
3664 if (ret2 == -EAGAIN && (req->flags & REQ_F_NOWAIT))
Jens Axboe355afae2020-09-02 09:30:31 -06003665 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003666 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003667 /* IOPOLL retry should happen for io-wq threads */
3668 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3669 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003670done:
Pavel Begunkov889fca72021-02-10 00:03:09 +00003671 kiocb_done(kiocb, ret2, issue_flags);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003672 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003673copy_iov:
Jens Axboecd658692021-09-10 11:19:14 -06003674 iov_iter_restore(iter, state);
Jens Axboe227c0c92020-08-13 11:51:40 -06003675 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003676 return ret ?: -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003677 }
Jens Axboe31b51512019-01-18 22:56:34 -07003678out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003679 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003680 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003681 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003682 return ret;
3683}
3684
Jens Axboe80a261f2020-09-28 14:23:58 -06003685static int io_renameat_prep(struct io_kiocb *req,
3686 const struct io_uring_sqe *sqe)
3687{
3688 struct io_rename *ren = &req->rename;
3689 const char __user *oldf, *newf;
3690
Jens Axboeed7eb252021-06-23 09:04:13 -06003691 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3692 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003693 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboeed7eb252021-06-23 09:04:13 -06003694 return -EINVAL;
Jens Axboe80a261f2020-09-28 14:23:58 -06003695 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3696 return -EBADF;
3697
3698 ren->old_dfd = READ_ONCE(sqe->fd);
3699 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3700 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3701 ren->new_dfd = READ_ONCE(sqe->len);
3702 ren->flags = READ_ONCE(sqe->rename_flags);
3703
3704 ren->oldpath = getname(oldf);
3705 if (IS_ERR(ren->oldpath))
3706 return PTR_ERR(ren->oldpath);
3707
3708 ren->newpath = getname(newf);
3709 if (IS_ERR(ren->newpath)) {
3710 putname(ren->oldpath);
3711 return PTR_ERR(ren->newpath);
3712 }
3713
3714 req->flags |= REQ_F_NEED_CLEANUP;
3715 return 0;
3716}
3717
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003718static int io_renameat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe80a261f2020-09-28 14:23:58 -06003719{
3720 struct io_rename *ren = &req->rename;
3721 int ret;
3722
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003723 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe80a261f2020-09-28 14:23:58 -06003724 return -EAGAIN;
3725
3726 ret = do_renameat2(ren->old_dfd, ren->oldpath, ren->new_dfd,
3727 ren->newpath, ren->flags);
3728
3729 req->flags &= ~REQ_F_NEED_CLEANUP;
3730 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003731 req_set_fail(req);
Jens Axboe80a261f2020-09-28 14:23:58 -06003732 io_req_complete(req, ret);
3733 return 0;
3734}
3735
Jens Axboe14a11432020-09-28 14:27:37 -06003736static int io_unlinkat_prep(struct io_kiocb *req,
3737 const struct io_uring_sqe *sqe)
3738{
3739 struct io_unlink *un = &req->unlink;
3740 const char __user *fname;
3741
Jens Axboe22634bc2021-06-23 09:07:45 -06003742 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3743 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003744 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3745 sqe->splice_fd_in)
Jens Axboe22634bc2021-06-23 09:07:45 -06003746 return -EINVAL;
Jens Axboe14a11432020-09-28 14:27:37 -06003747 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3748 return -EBADF;
3749
3750 un->dfd = READ_ONCE(sqe->fd);
3751
3752 un->flags = READ_ONCE(sqe->unlink_flags);
3753 if (un->flags & ~AT_REMOVEDIR)
3754 return -EINVAL;
3755
3756 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3757 un->filename = getname(fname);
3758 if (IS_ERR(un->filename))
3759 return PTR_ERR(un->filename);
3760
3761 req->flags |= REQ_F_NEED_CLEANUP;
3762 return 0;
3763}
3764
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003765static int io_unlinkat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe14a11432020-09-28 14:27:37 -06003766{
3767 struct io_unlink *un = &req->unlink;
3768 int ret;
3769
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003770 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe14a11432020-09-28 14:27:37 -06003771 return -EAGAIN;
3772
3773 if (un->flags & AT_REMOVEDIR)
3774 ret = do_rmdir(un->dfd, un->filename);
3775 else
3776 ret = do_unlinkat(un->dfd, un->filename);
3777
3778 req->flags &= ~REQ_F_NEED_CLEANUP;
3779 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003780 req_set_fail(req);
Jens Axboe14a11432020-09-28 14:27:37 -06003781 io_req_complete(req, ret);
3782 return 0;
3783}
3784
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07003785static int io_mkdirat_prep(struct io_kiocb *req,
3786 const struct io_uring_sqe *sqe)
3787{
3788 struct io_mkdir *mkd = &req->mkdir;
3789 const char __user *fname;
3790
3791 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3792 return -EINVAL;
3793 if (sqe->ioprio || sqe->off || sqe->rw_flags || sqe->buf_index ||
3794 sqe->splice_fd_in)
3795 return -EINVAL;
3796 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3797 return -EBADF;
3798
3799 mkd->dfd = READ_ONCE(sqe->fd);
3800 mkd->mode = READ_ONCE(sqe->len);
3801
3802 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3803 mkd->filename = getname(fname);
3804 if (IS_ERR(mkd->filename))
3805 return PTR_ERR(mkd->filename);
3806
3807 req->flags |= REQ_F_NEED_CLEANUP;
3808 return 0;
3809}
3810
3811static int io_mkdirat(struct io_kiocb *req, int issue_flags)
3812{
3813 struct io_mkdir *mkd = &req->mkdir;
3814 int ret;
3815
3816 if (issue_flags & IO_URING_F_NONBLOCK)
3817 return -EAGAIN;
3818
3819 ret = do_mkdirat(mkd->dfd, mkd->filename, mkd->mode);
3820
3821 req->flags &= ~REQ_F_NEED_CLEANUP;
3822 if (ret < 0)
3823 req_set_fail(req);
3824 io_req_complete(req, ret);
3825 return 0;
3826}
3827
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07003828static int io_symlinkat_prep(struct io_kiocb *req,
3829 const struct io_uring_sqe *sqe)
3830{
3831 struct io_symlink *sl = &req->symlink;
3832 const char __user *oldpath, *newpath;
3833
3834 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3835 return -EINVAL;
3836 if (sqe->ioprio || sqe->len || sqe->rw_flags || sqe->buf_index ||
3837 sqe->splice_fd_in)
3838 return -EINVAL;
3839 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3840 return -EBADF;
3841
3842 sl->new_dfd = READ_ONCE(sqe->fd);
3843 oldpath = u64_to_user_ptr(READ_ONCE(sqe->addr));
3844 newpath = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3845
3846 sl->oldpath = getname(oldpath);
3847 if (IS_ERR(sl->oldpath))
3848 return PTR_ERR(sl->oldpath);
3849
3850 sl->newpath = getname(newpath);
3851 if (IS_ERR(sl->newpath)) {
3852 putname(sl->oldpath);
3853 return PTR_ERR(sl->newpath);
3854 }
3855
3856 req->flags |= REQ_F_NEED_CLEANUP;
3857 return 0;
3858}
3859
3860static int io_symlinkat(struct io_kiocb *req, int issue_flags)
3861{
3862 struct io_symlink *sl = &req->symlink;
3863 int ret;
3864
3865 if (issue_flags & IO_URING_F_NONBLOCK)
3866 return -EAGAIN;
3867
3868 ret = do_symlinkat(sl->oldpath, sl->new_dfd, sl->newpath);
3869
3870 req->flags &= ~REQ_F_NEED_CLEANUP;
3871 if (ret < 0)
3872 req_set_fail(req);
3873 io_req_complete(req, ret);
3874 return 0;
3875}
3876
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07003877static int io_linkat_prep(struct io_kiocb *req,
3878 const struct io_uring_sqe *sqe)
3879{
3880 struct io_hardlink *lnk = &req->hardlink;
3881 const char __user *oldf, *newf;
3882
3883 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3884 return -EINVAL;
3885 if (sqe->ioprio || sqe->rw_flags || sqe->buf_index || sqe->splice_fd_in)
3886 return -EINVAL;
3887 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3888 return -EBADF;
3889
3890 lnk->old_dfd = READ_ONCE(sqe->fd);
3891 lnk->new_dfd = READ_ONCE(sqe->len);
3892 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3893 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3894 lnk->flags = READ_ONCE(sqe->hardlink_flags);
3895
3896 lnk->oldpath = getname(oldf);
3897 if (IS_ERR(lnk->oldpath))
3898 return PTR_ERR(lnk->oldpath);
3899
3900 lnk->newpath = getname(newf);
3901 if (IS_ERR(lnk->newpath)) {
3902 putname(lnk->oldpath);
3903 return PTR_ERR(lnk->newpath);
3904 }
3905
3906 req->flags |= REQ_F_NEED_CLEANUP;
3907 return 0;
3908}
3909
3910static int io_linkat(struct io_kiocb *req, int issue_flags)
3911{
3912 struct io_hardlink *lnk = &req->hardlink;
3913 int ret;
3914
3915 if (issue_flags & IO_URING_F_NONBLOCK)
3916 return -EAGAIN;
3917
3918 ret = do_linkat(lnk->old_dfd, lnk->oldpath, lnk->new_dfd,
3919 lnk->newpath, lnk->flags);
3920
3921 req->flags &= ~REQ_F_NEED_CLEANUP;
3922 if (ret < 0)
3923 req_set_fail(req);
3924 io_req_complete(req, ret);
3925 return 0;
3926}
3927
Jens Axboe36f4fa62020-09-05 11:14:22 -06003928static int io_shutdown_prep(struct io_kiocb *req,
3929 const struct io_uring_sqe *sqe)
3930{
3931#if defined(CONFIG_NET)
3932 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3933 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003934 if (unlikely(sqe->ioprio || sqe->off || sqe->addr || sqe->rw_flags ||
3935 sqe->buf_index || sqe->splice_fd_in))
Jens Axboe36f4fa62020-09-05 11:14:22 -06003936 return -EINVAL;
3937
3938 req->shutdown.how = READ_ONCE(sqe->len);
3939 return 0;
3940#else
3941 return -EOPNOTSUPP;
3942#endif
3943}
3944
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003945static int io_shutdown(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe36f4fa62020-09-05 11:14:22 -06003946{
3947#if defined(CONFIG_NET)
3948 struct socket *sock;
3949 int ret;
3950
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003951 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe36f4fa62020-09-05 11:14:22 -06003952 return -EAGAIN;
3953
Linus Torvalds48aba792020-12-16 12:44:05 -08003954 sock = sock_from_file(req->file);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003955 if (unlikely(!sock))
Linus Torvalds48aba792020-12-16 12:44:05 -08003956 return -ENOTSOCK;
Jens Axboe36f4fa62020-09-05 11:14:22 -06003957
3958 ret = __sys_shutdown_sock(sock, req->shutdown.how);
Jens Axboea1464682020-12-14 20:57:27 -07003959 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003960 req_set_fail(req);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003961 io_req_complete(req, ret);
3962 return 0;
3963#else
3964 return -EOPNOTSUPP;
3965#endif
3966}
3967
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003968static int __io_splice_prep(struct io_kiocb *req,
3969 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003970{
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01003971 struct io_splice *sp = &req->splice;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003972 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003973
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003974 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3975 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003976
3977 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003978 sp->len = READ_ONCE(sqe->len);
3979 sp->flags = READ_ONCE(sqe->splice_flags);
3980
3981 if (unlikely(sp->flags & ~valid_flags))
3982 return -EINVAL;
3983
Pavel Begunkov62906e82021-08-10 14:52:47 +01003984 sp->file_in = io_file_get(req->ctx, req, READ_ONCE(sqe->splice_fd_in),
Pavel Begunkov8371adf2020-10-10 18:34:08 +01003985 (sp->flags & SPLICE_F_FD_IN_FIXED));
3986 if (!sp->file_in)
3987 return -EBADF;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003988 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003989 return 0;
3990}
3991
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003992static int io_tee_prep(struct io_kiocb *req,
3993 const struct io_uring_sqe *sqe)
3994{
3995 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3996 return -EINVAL;
3997 return __io_splice_prep(req, sqe);
3998}
3999
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004000static int io_tee(struct io_kiocb *req, unsigned int issue_flags)
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004001{
4002 struct io_splice *sp = &req->splice;
4003 struct file *in = sp->file_in;
4004 struct file *out = sp->file_out;
4005 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
4006 long ret = 0;
4007
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004008 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004009 return -EAGAIN;
4010 if (sp->len)
4011 ret = do_tee(in, out, sp->len, flags);
4012
Pavel Begunkove1d767f2021-03-19 17:22:43 +00004013 if (!(sp->flags & SPLICE_F_FD_IN_FIXED))
4014 io_put_file(in);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004015 req->flags &= ~REQ_F_NEED_CLEANUP;
4016
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004017 if (ret != sp->len)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004018 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004019 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004020 return 0;
4021}
4022
4023static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4024{
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01004025 struct io_splice *sp = &req->splice;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004026
4027 sp->off_in = READ_ONCE(sqe->splice_off_in);
4028 sp->off_out = READ_ONCE(sqe->off);
4029 return __io_splice_prep(req, sqe);
4030}
4031
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004032static int io_splice(struct io_kiocb *req, unsigned int issue_flags)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004033{
4034 struct io_splice *sp = &req->splice;
4035 struct file *in = sp->file_in;
4036 struct file *out = sp->file_out;
4037 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
4038 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03004039 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004040
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004041 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03004042 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004043
4044 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
4045 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03004046
Jens Axboe948a7742020-05-17 14:21:38 -06004047 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03004048 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004049
Pavel Begunkove1d767f2021-03-19 17:22:43 +00004050 if (!(sp->flags & SPLICE_F_FD_IN_FIXED))
4051 io_put_file(in);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004052 req->flags &= ~REQ_F_NEED_CLEANUP;
4053
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004054 if (ret != sp->len)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004055 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004056 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004057 return 0;
4058}
4059
Jens Axboe2b188cc2019-01-07 10:46:33 -07004060/*
4061 * IORING_OP_NOP just posts a completion event, nothing else.
4062 */
Pavel Begunkov889fca72021-02-10 00:03:09 +00004063static int io_nop(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004064{
4065 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004066
Jens Axboedef596e2019-01-09 08:59:42 -07004067 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4068 return -EINVAL;
4069
Pavel Begunkov889fca72021-02-10 00:03:09 +00004070 __io_req_complete(req, issue_flags, 0, 0);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004071 return 0;
4072}
4073
Pavel Begunkov1155c762021-02-18 18:29:38 +00004074static int io_fsync_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004075{
Jens Axboe6b063142019-01-10 22:13:58 -07004076 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004077
Jens Axboe09bb8392019-03-13 12:39:28 -06004078 if (!req->file)
4079 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004080
Jens Axboe6b063142019-01-10 22:13:58 -07004081 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07004082 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004083 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||
4084 sqe->splice_fd_in))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004085 return -EINVAL;
4086
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004087 req->sync.flags = READ_ONCE(sqe->fsync_flags);
4088 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
4089 return -EINVAL;
4090
4091 req->sync.off = READ_ONCE(sqe->off);
4092 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004093 return 0;
4094}
4095
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004096static int io_fsync(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe78912932020-01-14 22:09:06 -07004097{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004098 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004099 int ret;
4100
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004101 /* fsync always requires a blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004102 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004103 return -EAGAIN;
4104
Jens Axboe9adbd452019-12-20 08:45:55 -07004105 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004106 end > 0 ? end : LLONG_MAX,
4107 req->sync.flags & IORING_FSYNC_DATASYNC);
4108 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004109 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004110 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004111 return 0;
4112}
4113
Jens Axboed63d1b52019-12-10 10:38:56 -07004114static int io_fallocate_prep(struct io_kiocb *req,
4115 const struct io_uring_sqe *sqe)
4116{
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004117 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags ||
4118 sqe->splice_fd_in)
Jens Axboed63d1b52019-12-10 10:38:56 -07004119 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004120 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4121 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07004122
4123 req->sync.off = READ_ONCE(sqe->off);
4124 req->sync.len = READ_ONCE(sqe->addr);
4125 req->sync.mode = READ_ONCE(sqe->len);
4126 return 0;
4127}
4128
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004129static int io_fallocate(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboed63d1b52019-12-10 10:38:56 -07004130{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004131 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07004132
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004133 /* fallocate always requiring blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004134 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004135 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004136 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
4137 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004138 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004139 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004140 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07004141 return 0;
4142}
4143
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004144static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004145{
Jens Axboef8748882020-01-08 17:47:02 -07004146 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004147 int ret;
4148
Pavel Begunkovd3fddf62021-08-09 13:04:16 +01004149 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4150 return -EINVAL;
Pavel Begunkovb9445592021-08-25 12:25:45 +01004151 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07004152 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004153 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07004154 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004155
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004156 /* open.how should be already initialised */
4157 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06004158 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004159
Pavel Begunkov25e72d12020-06-03 18:03:23 +03004160 req->open.dfd = READ_ONCE(sqe->fd);
4161 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07004162 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004163 if (IS_ERR(req->open.filename)) {
4164 ret = PTR_ERR(req->open.filename);
4165 req->open.filename = NULL;
4166 return ret;
4167 }
Pavel Begunkovb9445592021-08-25 12:25:45 +01004168
4169 req->open.file_slot = READ_ONCE(sqe->file_index);
4170 if (req->open.file_slot && (req->open.how.flags & O_CLOEXEC))
4171 return -EINVAL;
4172
Jens Axboe4022e7a2020-03-19 19:23:18 -06004173 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004174 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004175 return 0;
4176}
4177
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004178static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4179{
Pavel Begunkovd3fddf62021-08-09 13:04:16 +01004180 u64 mode = READ_ONCE(sqe->len);
4181 u64 flags = READ_ONCE(sqe->open_flags);
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004182
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004183 req->open.how = build_open_how(flags, mode);
4184 return __io_openat_prep(req, sqe);
4185}
4186
Jens Axboecebdb982020-01-08 17:59:24 -07004187static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4188{
4189 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07004190 size_t len;
4191 int ret;
4192
Jens Axboecebdb982020-01-08 17:59:24 -07004193 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4194 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07004195 if (len < OPEN_HOW_SIZE_VER0)
4196 return -EINVAL;
4197
4198 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
4199 len);
4200 if (ret)
4201 return ret;
4202
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004203 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07004204}
4205
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004206static int io_openat2(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004207{
4208 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004209 struct file *file;
Pavel Begunkovb9445592021-08-25 12:25:45 +01004210 bool resolve_nonblock, nonblock_set;
4211 bool fixed = !!req->open.file_slot;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004212 int ret;
4213
Jens Axboecebdb982020-01-08 17:59:24 -07004214 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004215 if (ret)
4216 goto err;
Jens Axboe3a81fd02020-12-10 12:25:36 -07004217 nonblock_set = op.open_flag & O_NONBLOCK;
4218 resolve_nonblock = req->open.how.resolve & RESOLVE_CACHED;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004219 if (issue_flags & IO_URING_F_NONBLOCK) {
Jens Axboe3a81fd02020-12-10 12:25:36 -07004220 /*
4221 * Don't bother trying for O_TRUNC, O_CREAT, or O_TMPFILE open,
4222 * it'll always -EAGAIN
4223 */
4224 if (req->open.how.flags & (O_TRUNC | O_CREAT | O_TMPFILE))
4225 return -EAGAIN;
4226 op.lookup_flags |= LOOKUP_CACHED;
4227 op.open_flag |= O_NONBLOCK;
4228 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004229
Pavel Begunkovb9445592021-08-25 12:25:45 +01004230 if (!fixed) {
4231 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
4232 if (ret < 0)
4233 goto err;
4234 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004235
4236 file = do_filp_open(req->open.dfd, req->open.filename, &op);
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004237 if (IS_ERR(file)) {
Jens Axboe3a81fd02020-12-10 12:25:36 -07004238 /*
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004239 * We could hang on to this 'fd' on retrying, but seems like
4240 * marginal gain for something that is now known to be a slower
4241 * path. So just put it, and we'll get a new one when we retry.
Jens Axboe3a81fd02020-12-10 12:25:36 -07004242 */
Pavel Begunkovb9445592021-08-25 12:25:45 +01004243 if (!fixed)
4244 put_unused_fd(ret);
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004245
4246 ret = PTR_ERR(file);
4247 /* only retry if RESOLVE_CACHED wasn't already set by application */
4248 if (ret == -EAGAIN &&
4249 (!resolve_nonblock && (issue_flags & IO_URING_F_NONBLOCK)))
4250 return -EAGAIN;
4251 goto err;
Jens Axboe3a81fd02020-12-10 12:25:36 -07004252 }
4253
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004254 if ((issue_flags & IO_URING_F_NONBLOCK) && !nonblock_set)
4255 file->f_flags &= ~O_NONBLOCK;
4256 fsnotify_open(file);
Pavel Begunkovb9445592021-08-25 12:25:45 +01004257
4258 if (!fixed)
4259 fd_install(ret, file);
4260 else
4261 ret = io_install_fixed_file(req, file, issue_flags,
4262 req->open.file_slot - 1);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004263err:
4264 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004265 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004266 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004267 req_set_fail(req);
Pavel Begunkov0bdf3392021-04-11 01:46:29 +01004268 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004269 return 0;
4270}
4271
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004272static int io_openat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboecebdb982020-01-08 17:59:24 -07004273{
Pavel Begunkove45cff52021-02-28 22:35:14 +00004274 return io_openat2(req, issue_flags);
Jens Axboecebdb982020-01-08 17:59:24 -07004275}
4276
Jens Axboe067524e2020-03-02 16:32:28 -07004277static int io_remove_buffers_prep(struct io_kiocb *req,
4278 const struct io_uring_sqe *sqe)
4279{
4280 struct io_provide_buf *p = &req->pbuf;
4281 u64 tmp;
4282
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004283 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off ||
4284 sqe->splice_fd_in)
Jens Axboe067524e2020-03-02 16:32:28 -07004285 return -EINVAL;
4286
4287 tmp = READ_ONCE(sqe->fd);
4288 if (!tmp || tmp > USHRT_MAX)
4289 return -EINVAL;
4290
4291 memset(p, 0, sizeof(*p));
4292 p->nbufs = tmp;
4293 p->bgid = READ_ONCE(sqe->buf_group);
4294 return 0;
4295}
4296
4297static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
4298 int bgid, unsigned nbufs)
4299{
4300 unsigned i = 0;
4301
4302 /* shouldn't happen */
4303 if (!nbufs)
4304 return 0;
4305
4306 /* the head kbuf is the list itself */
4307 while (!list_empty(&buf->list)) {
4308 struct io_buffer *nxt;
4309
4310 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4311 list_del(&nxt->list);
4312 kfree(nxt);
4313 if (++i == nbufs)
4314 return i;
4315 }
4316 i++;
4317 kfree(buf);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004318 xa_erase(&ctx->io_buffers, bgid);
Jens Axboe067524e2020-03-02 16:32:28 -07004319
4320 return i;
4321}
4322
Pavel Begunkov889fca72021-02-10 00:03:09 +00004323static int io_remove_buffers(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe067524e2020-03-02 16:32:28 -07004324{
4325 struct io_provide_buf *p = &req->pbuf;
4326 struct io_ring_ctx *ctx = req->ctx;
4327 struct io_buffer *head;
4328 int ret = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004329 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe067524e2020-03-02 16:32:28 -07004330
4331 io_ring_submit_lock(ctx, !force_nonblock);
4332
4333 lockdep_assert_held(&ctx->uring_lock);
4334
4335 ret = -ENOENT;
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004336 head = xa_load(&ctx->io_buffers, p->bgid);
Jens Axboe067524e2020-03-02 16:32:28 -07004337 if (head)
4338 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
Jens Axboe067524e2020-03-02 16:32:28 -07004339 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004340 req_set_fail(req);
Pavel Begunkov31bff9a2020-12-06 22:22:43 +00004341
Pavel Begunkov9fb8cb42021-02-28 22:35:13 +00004342 /* complete before unlock, IOPOLL may need the lock */
4343 __io_req_complete(req, issue_flags, ret, 0);
4344 io_ring_submit_unlock(ctx, !force_nonblock);
Jens Axboe067524e2020-03-02 16:32:28 -07004345 return 0;
4346}
4347
Jens Axboeddf0322d2020-02-23 16:41:33 -07004348static int io_provide_buffers_prep(struct io_kiocb *req,
4349 const struct io_uring_sqe *sqe)
4350{
Pavel Begunkov38134ad2021-04-15 13:07:39 +01004351 unsigned long size, tmp_check;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004352 struct io_provide_buf *p = &req->pbuf;
4353 u64 tmp;
4354
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004355 if (sqe->ioprio || sqe->rw_flags || sqe->splice_fd_in)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004356 return -EINVAL;
4357
4358 tmp = READ_ONCE(sqe->fd);
4359 if (!tmp || tmp > USHRT_MAX)
4360 return -E2BIG;
4361 p->nbufs = tmp;
4362 p->addr = READ_ONCE(sqe->addr);
4363 p->len = READ_ONCE(sqe->len);
4364
Pavel Begunkov38134ad2021-04-15 13:07:39 +01004365 if (check_mul_overflow((unsigned long)p->len, (unsigned long)p->nbufs,
4366 &size))
4367 return -EOVERFLOW;
4368 if (check_add_overflow((unsigned long)p->addr, size, &tmp_check))
4369 return -EOVERFLOW;
4370
Pavel Begunkovd81269f2021-03-19 10:21:19 +00004371 size = (unsigned long)p->len * p->nbufs;
4372 if (!access_ok(u64_to_user_ptr(p->addr), size))
Jens Axboeddf0322d2020-02-23 16:41:33 -07004373 return -EFAULT;
4374
4375 p->bgid = READ_ONCE(sqe->buf_group);
4376 tmp = READ_ONCE(sqe->off);
4377 if (tmp > USHRT_MAX)
4378 return -E2BIG;
4379 p->bid = tmp;
4380 return 0;
4381}
4382
4383static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
4384{
4385 struct io_buffer *buf;
4386 u64 addr = pbuf->addr;
4387 int i, bid = pbuf->bid;
4388
4389 for (i = 0; i < pbuf->nbufs; i++) {
Jens Axboe9990da92021-09-24 07:39:08 -06004390 buf = kmalloc(sizeof(*buf), GFP_KERNEL_ACCOUNT);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004391 if (!buf)
4392 break;
4393
4394 buf->addr = addr;
Thadeu Lima de Souza Cascardod1f82802021-05-05 09:47:06 -03004395 buf->len = min_t(__u32, pbuf->len, MAX_RW_COUNT);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004396 buf->bid = bid;
4397 addr += pbuf->len;
4398 bid++;
4399 if (!*head) {
4400 INIT_LIST_HEAD(&buf->list);
4401 *head = buf;
4402 } else {
4403 list_add_tail(&buf->list, &(*head)->list);
4404 }
4405 }
4406
4407 return i ? i : -ENOMEM;
4408}
4409
Pavel Begunkov889fca72021-02-10 00:03:09 +00004410static int io_provide_buffers(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004411{
4412 struct io_provide_buf *p = &req->pbuf;
4413 struct io_ring_ctx *ctx = req->ctx;
4414 struct io_buffer *head, *list;
4415 int ret = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004416 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004417
4418 io_ring_submit_lock(ctx, !force_nonblock);
4419
4420 lockdep_assert_held(&ctx->uring_lock);
4421
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004422 list = head = xa_load(&ctx->io_buffers, p->bgid);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004423
4424 ret = io_add_buffers(p, &head);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004425 if (ret >= 0 && !list) {
4426 ret = xa_insert(&ctx->io_buffers, p->bgid, head, GFP_KERNEL);
4427 if (ret < 0)
Jens Axboe067524e2020-03-02 16:32:28 -07004428 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004429 }
Jens Axboeddf0322d2020-02-23 16:41:33 -07004430 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004431 req_set_fail(req);
Pavel Begunkov9fb8cb42021-02-28 22:35:13 +00004432 /* complete before unlock, IOPOLL may need the lock */
4433 __io_req_complete(req, issue_flags, ret, 0);
4434 io_ring_submit_unlock(ctx, !force_nonblock);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004435 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004436}
4437
Jens Axboe3e4827b2020-01-08 15:18:09 -07004438static int io_epoll_ctl_prep(struct io_kiocb *req,
4439 const struct io_uring_sqe *sqe)
4440{
4441#if defined(CONFIG_EPOLL)
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004442 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004443 return -EINVAL;
Pavel Begunkov2d74d042021-05-14 12:05:46 +01004444 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004445 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004446
4447 req->epoll.epfd = READ_ONCE(sqe->fd);
4448 req->epoll.op = READ_ONCE(sqe->len);
4449 req->epoll.fd = READ_ONCE(sqe->off);
4450
4451 if (ep_op_has_event(req->epoll.op)) {
4452 struct epoll_event __user *ev;
4453
4454 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
4455 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
4456 return -EFAULT;
4457 }
4458
4459 return 0;
4460#else
4461 return -EOPNOTSUPP;
4462#endif
4463}
4464
Pavel Begunkov889fca72021-02-10 00:03:09 +00004465static int io_epoll_ctl(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004466{
4467#if defined(CONFIG_EPOLL)
4468 struct io_epoll *ie = &req->epoll;
4469 int ret;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004470 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004471
4472 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
4473 if (force_nonblock && ret == -EAGAIN)
4474 return -EAGAIN;
4475
4476 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004477 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004478 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe3e4827b2020-01-08 15:18:09 -07004479 return 0;
4480#else
4481 return -EOPNOTSUPP;
4482#endif
4483}
4484
Jens Axboec1ca7572019-12-25 22:18:28 -07004485static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4486{
4487#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004488 if (sqe->ioprio || sqe->buf_index || sqe->off || sqe->splice_fd_in)
Jens Axboec1ca7572019-12-25 22:18:28 -07004489 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004490 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4491 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07004492
4493 req->madvise.addr = READ_ONCE(sqe->addr);
4494 req->madvise.len = READ_ONCE(sqe->len);
4495 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
4496 return 0;
4497#else
4498 return -EOPNOTSUPP;
4499#endif
4500}
4501
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004502static int io_madvise(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboec1ca7572019-12-25 22:18:28 -07004503{
4504#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4505 struct io_madvise *ma = &req->madvise;
4506 int ret;
4507
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004508 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboec1ca7572019-12-25 22:18:28 -07004509 return -EAGAIN;
4510
Minchan Kim0726b012020-10-17 16:14:50 -07004511 ret = do_madvise(current->mm, ma->addr, ma->len, ma->advice);
Jens Axboec1ca7572019-12-25 22:18:28 -07004512 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004513 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004514 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07004515 return 0;
4516#else
4517 return -EOPNOTSUPP;
4518#endif
4519}
4520
Jens Axboe4840e412019-12-25 22:03:45 -07004521static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4522{
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004523 if (sqe->ioprio || sqe->buf_index || sqe->addr || sqe->splice_fd_in)
Jens Axboe4840e412019-12-25 22:03:45 -07004524 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004525 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4526 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07004527
4528 req->fadvise.offset = READ_ONCE(sqe->off);
4529 req->fadvise.len = READ_ONCE(sqe->len);
4530 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
4531 return 0;
4532}
4533
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004534static int io_fadvise(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe4840e412019-12-25 22:03:45 -07004535{
4536 struct io_fadvise *fa = &req->fadvise;
4537 int ret;
4538
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004539 if (issue_flags & IO_URING_F_NONBLOCK) {
Jens Axboe3e694262020-02-01 09:22:49 -07004540 switch (fa->advice) {
4541 case POSIX_FADV_NORMAL:
4542 case POSIX_FADV_RANDOM:
4543 case POSIX_FADV_SEQUENTIAL:
4544 break;
4545 default:
4546 return -EAGAIN;
4547 }
4548 }
Jens Axboe4840e412019-12-25 22:03:45 -07004549
4550 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
4551 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004552 req_set_fail(req);
Pavel Begunkov0bdf3392021-04-11 01:46:29 +01004553 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe4840e412019-12-25 22:03:45 -07004554 return 0;
4555}
4556
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004557static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4558{
Pavel Begunkov2d74d042021-05-14 12:05:46 +01004559 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004560 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004561 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004562 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004563 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004564 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004565
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004566 req->statx.dfd = READ_ONCE(sqe->fd);
4567 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004568 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004569 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4570 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004571
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004572 return 0;
4573}
4574
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004575static int io_statx(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004576{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004577 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004578 int ret;
4579
Pavel Begunkov59d70012021-03-22 01:58:30 +00004580 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004581 return -EAGAIN;
4582
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004583 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
4584 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004585
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004586 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004587 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004588 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004589 return 0;
4590}
4591
Jens Axboeb5dba592019-12-11 14:02:38 -07004592static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4593{
Jens Axboe14587a462020-09-05 11:36:08 -06004594 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004595 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004596 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004597 sqe->rw_flags || sqe->buf_index)
Jens Axboeb5dba592019-12-11 14:02:38 -07004598 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004599 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004600 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004601
4602 req->close.fd = READ_ONCE(sqe->fd);
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004603 req->close.file_slot = READ_ONCE(sqe->file_index);
4604 if (req->close.file_slot && req->close.fd)
4605 return -EINVAL;
4606
Jens Axboeb5dba592019-12-11 14:02:38 -07004607 return 0;
4608}
4609
Pavel Begunkov889fca72021-02-10 00:03:09 +00004610static int io_close(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeb5dba592019-12-11 14:02:38 -07004611{
Jens Axboe9eac1902021-01-19 15:50:37 -07004612 struct files_struct *files = current->files;
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004613 struct io_close *close = &req->close;
Jens Axboe9eac1902021-01-19 15:50:37 -07004614 struct fdtable *fdt;
Pavel Begunkova1fde922021-04-11 01:46:28 +01004615 struct file *file = NULL;
4616 int ret = -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004617
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004618 if (req->close.file_slot) {
4619 ret = io_close_fixed(req, issue_flags);
4620 goto err;
4621 }
4622
Jens Axboe9eac1902021-01-19 15:50:37 -07004623 spin_lock(&files->file_lock);
4624 fdt = files_fdtable(files);
4625 if (close->fd >= fdt->max_fds) {
4626 spin_unlock(&files->file_lock);
4627 goto err;
4628 }
4629 file = fdt->fd[close->fd];
Pavel Begunkova1fde922021-04-11 01:46:28 +01004630 if (!file || file->f_op == &io_uring_fops) {
Jens Axboe9eac1902021-01-19 15:50:37 -07004631 spin_unlock(&files->file_lock);
4632 file = NULL;
4633 goto err;
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004634 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004635
4636 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004637 if (file->f_op->flush && (issue_flags & IO_URING_F_NONBLOCK)) {
Jens Axboe9eac1902021-01-19 15:50:37 -07004638 spin_unlock(&files->file_lock);
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004639 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004640 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004641
Jens Axboe9eac1902021-01-19 15:50:37 -07004642 ret = __close_fd_get_file(close->fd, &file);
4643 spin_unlock(&files->file_lock);
4644 if (ret < 0) {
4645 if (ret == -ENOENT)
4646 ret = -EBADF;
4647 goto err;
4648 }
4649
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004650 /* No ->flush() or already async, safely close from here */
Jens Axboe9eac1902021-01-19 15:50:37 -07004651 ret = filp_close(file, current->files);
4652err:
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004653 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004654 req_set_fail(req);
Jens Axboe9eac1902021-01-19 15:50:37 -07004655 if (file)
4656 fput(file);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004657 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe1a417f42020-01-31 17:16:48 -07004658 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004659}
4660
Pavel Begunkov1155c762021-02-18 18:29:38 +00004661static int io_sfr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004662{
4663 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004664
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004665 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4666 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004667 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||
4668 sqe->splice_fd_in))
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004669 return -EINVAL;
4670
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004671 req->sync.off = READ_ONCE(sqe->off);
4672 req->sync.len = READ_ONCE(sqe->len);
4673 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004674 return 0;
4675}
4676
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004677static int io_sync_file_range(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004678{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004679 int ret;
4680
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004681 /* sync_file_range always requires a blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004682 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004683 return -EAGAIN;
4684
Jens Axboe9adbd452019-12-20 08:45:55 -07004685 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004686 req->sync.flags);
4687 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004688 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004689 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004690 return 0;
4691}
4692
YueHaibing469956e2020-03-04 15:53:52 +08004693#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004694static int io_setup_async_msg(struct io_kiocb *req,
4695 struct io_async_msghdr *kmsg)
4696{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004697 struct io_async_msghdr *async_msg = req->async_data;
4698
4699 if (async_msg)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004700 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004701 if (io_alloc_async_data(req)) {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004702 kfree(kmsg->free_iov);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004703 return -ENOMEM;
4704 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004705 async_msg = req->async_data;
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004706 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004707 memcpy(async_msg, kmsg, sizeof(*kmsg));
Pavel Begunkov2a780802021-02-05 00:57:58 +00004708 async_msg->msg.msg_name = &async_msg->addr;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004709 /* if were using fast_iov, set it to the new one */
4710 if (!async_msg->free_iov)
4711 async_msg->msg.msg_iter.iov = async_msg->fast_iov;
4712
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004713 return -EAGAIN;
4714}
4715
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004716static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4717 struct io_async_msghdr *iomsg)
4718{
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004719 iomsg->msg.msg_name = &iomsg->addr;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004720 iomsg->free_iov = iomsg->fast_iov;
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004721 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004722 req->sr_msg.msg_flags, &iomsg->free_iov);
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004723}
4724
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004725static int io_sendmsg_prep_async(struct io_kiocb *req)
4726{
4727 int ret;
4728
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004729 ret = io_sendmsg_copy_hdr(req, req->async_data);
4730 if (!ret)
4731 req->flags |= REQ_F_NEED_CLEANUP;
4732 return ret;
4733}
4734
Jens Axboe3529d8c2019-12-19 18:24:38 -07004735static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004736{
Jens Axboee47293f2019-12-20 08:58:21 -07004737 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe03b12302019-12-02 18:50:25 -07004738
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004739 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4740 return -EINVAL;
4741
Pavel Begunkov270a5942020-07-12 20:41:04 +03004742 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004743 sr->len = READ_ONCE(sqe->len);
Pavel Begunkov04411802021-04-01 15:44:00 +01004744 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4745 if (sr->msg_flags & MSG_DONTWAIT)
4746 req->flags |= REQ_F_NOWAIT;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004747
Jens Axboed8768362020-02-27 14:17:49 -07004748#ifdef CONFIG_COMPAT
4749 if (req->ctx->compat)
4750 sr->msg_flags |= MSG_CMSG_COMPAT;
4751#endif
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004752 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004753}
4754
Pavel Begunkov889fca72021-02-10 00:03:09 +00004755static int io_sendmsg(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004756{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004757 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004758 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004759 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004760 int min_ret = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004761 int ret;
4762
Florent Revestdba4a922020-12-04 12:36:04 +01004763 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004764 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004765 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004766
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004767 kmsg = req->async_data;
4768 if (!kmsg) {
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004769 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004770 if (ret)
4771 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004772 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004773 }
4774
Pavel Begunkov04411802021-04-01 15:44:00 +01004775 flags = req->sr_msg.msg_flags;
4776 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004777 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004778 if (flags & MSG_WAITALL)
4779 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4780
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004781 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004782 if ((issue_flags & IO_URING_F_NONBLOCK) && ret == -EAGAIN)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004783 return io_setup_async_msg(req, kmsg);
4784 if (ret == -ERESTARTSYS)
4785 ret = -EINTR;
4786
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004787 /* fast path, check for non-NULL to avoid function call */
4788 if (kmsg->free_iov)
4789 kfree(kmsg->free_iov);
Jens Axboe03b12302019-12-02 18:50:25 -07004790 req->flags &= ~REQ_F_NEED_CLEANUP;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004791 if (ret < min_ret)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004792 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004793 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboefddafac2020-01-04 20:19:44 -07004794 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004795}
4796
Pavel Begunkov889fca72021-02-10 00:03:09 +00004797static int io_send(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004798{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004799 struct io_sr_msg *sr = &req->sr_msg;
4800 struct msghdr msg;
4801 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004802 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004803 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004804 int min_ret = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004805 int ret;
4806
Florent Revestdba4a922020-12-04 12:36:04 +01004807 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004808 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004809 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004810
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004811 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4812 if (unlikely(ret))
Zheng Bin14db8412020-09-09 20:12:37 +08004813 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004814
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004815 msg.msg_name = NULL;
4816 msg.msg_control = NULL;
4817 msg.msg_controllen = 0;
4818 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004819
Pavel Begunkov04411802021-04-01 15:44:00 +01004820 flags = req->sr_msg.msg_flags;
4821 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004822 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004823 if (flags & MSG_WAITALL)
4824 min_ret = iov_iter_count(&msg.msg_iter);
4825
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004826 msg.msg_flags = flags;
4827 ret = sock_sendmsg(sock, &msg);
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004828 if ((issue_flags & IO_URING_F_NONBLOCK) && ret == -EAGAIN)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004829 return -EAGAIN;
4830 if (ret == -ERESTARTSYS)
4831 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004832
Stefan Metzmacher00312752021-03-20 20:33:36 +01004833 if (ret < min_ret)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004834 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004835 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe03b12302019-12-02 18:50:25 -07004836 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004837}
4838
Pavel Begunkov1400e692020-07-12 20:41:05 +03004839static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4840 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004841{
4842 struct io_sr_msg *sr = &req->sr_msg;
4843 struct iovec __user *uiov;
4844 size_t iov_len;
4845 int ret;
4846
Pavel Begunkov1400e692020-07-12 20:41:05 +03004847 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4848 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004849 if (ret)
4850 return ret;
4851
4852 if (req->flags & REQ_F_BUFFER_SELECT) {
4853 if (iov_len > 1)
4854 return -EINVAL;
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004855 if (copy_from_user(iomsg->fast_iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004856 return -EFAULT;
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004857 sr->len = iomsg->fast_iov[0].iov_len;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004858 iomsg->free_iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004859 } else {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004860 iomsg->free_iov = iomsg->fast_iov;
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004861 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004862 &iomsg->free_iov, &iomsg->msg.msg_iter,
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004863 false);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004864 if (ret > 0)
4865 ret = 0;
4866 }
4867
4868 return ret;
4869}
4870
4871#ifdef CONFIG_COMPAT
4872static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004873 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004874{
Jens Axboe52de1fe2020-02-27 10:15:42 -07004875 struct io_sr_msg *sr = &req->sr_msg;
4876 struct compat_iovec __user *uiov;
4877 compat_uptr_t ptr;
4878 compat_size_t len;
4879 int ret;
4880
Pavel Begunkov4af34172021-04-11 01:46:30 +01004881 ret = __get_compat_msghdr(&iomsg->msg, sr->umsg_compat, &iomsg->uaddr,
4882 &ptr, &len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004883 if (ret)
4884 return ret;
4885
4886 uiov = compat_ptr(ptr);
4887 if (req->flags & REQ_F_BUFFER_SELECT) {
4888 compat_ssize_t clen;
4889
4890 if (len > 1)
4891 return -EINVAL;
4892 if (!access_ok(uiov, sizeof(*uiov)))
4893 return -EFAULT;
4894 if (__get_user(clen, &uiov->iov_len))
4895 return -EFAULT;
4896 if (clen < 0)
4897 return -EINVAL;
Pavel Begunkov2d280bc2020-11-29 18:33:32 +00004898 sr->len = clen;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004899 iomsg->free_iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004900 } else {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004901 iomsg->free_iov = iomsg->fast_iov;
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004902 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004903 UIO_FASTIOV, &iomsg->free_iov,
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004904 &iomsg->msg.msg_iter, true);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004905 if (ret < 0)
4906 return ret;
4907 }
4908
4909 return 0;
4910}
Jens Axboe03b12302019-12-02 18:50:25 -07004911#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004912
Pavel Begunkov1400e692020-07-12 20:41:05 +03004913static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4914 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004915{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004916 iomsg->msg.msg_name = &iomsg->addr;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004917
4918#ifdef CONFIG_COMPAT
4919 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004920 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004921#endif
4922
Pavel Begunkov1400e692020-07-12 20:41:05 +03004923 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004924}
4925
Jens Axboebcda7ba2020-02-23 16:42:51 -07004926static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004927 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004928{
4929 struct io_sr_msg *sr = &req->sr_msg;
4930 struct io_buffer *kbuf;
4931
Jens Axboebcda7ba2020-02-23 16:42:51 -07004932 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4933 if (IS_ERR(kbuf))
4934 return kbuf;
4935
4936 sr->kbuf = kbuf;
4937 req->flags |= REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004938 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07004939}
4940
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004941static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4942{
4943 return io_put_kbuf(req, req->sr_msg.kbuf);
4944}
4945
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004946static int io_recvmsg_prep_async(struct io_kiocb *req)
Jens Axboe03b12302019-12-02 18:50:25 -07004947{
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004948 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004949
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004950 ret = io_recvmsg_copy_hdr(req, req->async_data);
4951 if (!ret)
4952 req->flags |= REQ_F_NEED_CLEANUP;
4953 return ret;
4954}
4955
4956static int io_recvmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4957{
4958 struct io_sr_msg *sr = &req->sr_msg;
4959
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004960 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4961 return -EINVAL;
4962
Pavel Begunkov270a5942020-07-12 20:41:04 +03004963 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004964 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004965 sr->bgid = READ_ONCE(sqe->buf_group);
Pavel Begunkov04411802021-04-01 15:44:00 +01004966 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4967 if (sr->msg_flags & MSG_DONTWAIT)
4968 req->flags |= REQ_F_NOWAIT;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004969
Jens Axboed8768362020-02-27 14:17:49 -07004970#ifdef CONFIG_COMPAT
4971 if (req->ctx->compat)
4972 sr->msg_flags |= MSG_CMSG_COMPAT;
4973#endif
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004974 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004975}
4976
Pavel Begunkov889fca72021-02-10 00:03:09 +00004977static int io_recvmsg(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004978{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004979 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004980 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004981 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004982 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004983 int min_ret = 0;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004984 int ret, cflags = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004985 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004986
Florent Revestdba4a922020-12-04 12:36:04 +01004987 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004988 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004989 return -ENOTSOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004990
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004991 kmsg = req->async_data;
4992 if (!kmsg) {
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004993 ret = io_recvmsg_copy_hdr(req, &iomsg);
4994 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004995 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004996 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004997 }
4998
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004999 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03005000 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03005001 if (IS_ERR(kbuf))
5002 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005003 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00005004 kmsg->fast_iov[0].iov_len = req->sr_msg.len;
5005 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->fast_iov,
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005006 1, req->sr_msg.len);
5007 }
5008
Pavel Begunkov04411802021-04-01 15:44:00 +01005009 flags = req->sr_msg.msg_flags;
5010 if (force_nonblock)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005011 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005012 if (flags & MSG_WAITALL)
5013 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
5014
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005015 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
5016 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005017 if (force_nonblock && ret == -EAGAIN)
5018 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005019 if (ret == -ERESTARTSYS)
5020 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03005021
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03005022 if (req->flags & REQ_F_BUFFER_SELECTED)
5023 cflags = io_put_recv_kbuf(req);
Pavel Begunkov257e84a2021-02-05 00:58:00 +00005024 /* fast path, check for non-NULL to avoid function call */
5025 if (kmsg->free_iov)
5026 kfree(kmsg->free_iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005027 req->flags &= ~REQ_F_NEED_CLEANUP;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005028 if (ret < min_ret || ((flags & MSG_WAITALL) && (kmsg->msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))))
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005029 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005030 __io_req_complete(req, issue_flags, ret, cflags);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005031 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005032}
5033
Pavel Begunkov889fca72021-02-10 00:03:09 +00005034static int io_recv(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboefddafac2020-01-04 20:19:44 -07005035{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03005036 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005037 struct io_sr_msg *sr = &req->sr_msg;
5038 struct msghdr msg;
5039 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07005040 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005041 struct iovec iov;
5042 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005043 int min_ret = 0;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005044 int ret, cflags = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005045 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07005046
Florent Revestdba4a922020-12-04 12:36:04 +01005047 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005048 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01005049 return -ENOTSOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07005050
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03005051 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03005052 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07005053 if (IS_ERR(kbuf))
5054 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005055 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07005056 }
5057
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005058 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03005059 if (unlikely(ret))
5060 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07005061
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005062 msg.msg_name = NULL;
5063 msg.msg_control = NULL;
5064 msg.msg_controllen = 0;
5065 msg.msg_namelen = 0;
5066 msg.msg_iocb = NULL;
5067 msg.msg_flags = 0;
5068
Pavel Begunkov04411802021-04-01 15:44:00 +01005069 flags = req->sr_msg.msg_flags;
5070 if (force_nonblock)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005071 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005072 if (flags & MSG_WAITALL)
5073 min_ret = iov_iter_count(&msg.msg_iter);
5074
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005075 ret = sock_recvmsg(sock, &msg, flags);
5076 if (force_nonblock && ret == -EAGAIN)
5077 return -EAGAIN;
5078 if (ret == -ERESTARTSYS)
5079 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03005080out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03005081 if (req->flags & REQ_F_BUFFER_SELECTED)
5082 cflags = io_put_recv_kbuf(req);
Stefan Metzmacher00312752021-03-20 20:33:36 +01005083 if (ret < min_ret || ((flags & MSG_WAITALL) && (msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))))
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005084 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005085 __io_req_complete(req, issue_flags, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07005086 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07005087}
5088
Jens Axboe3529d8c2019-12-19 18:24:38 -07005089static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06005090{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005091 struct io_accept *accept = &req->accept;
5092
Jens Axboe14587a462020-09-05 11:36:08 -06005093 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe17f2fe32019-10-17 14:42:58 -06005094 return -EINVAL;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005095 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06005096 return -EINVAL;
5097
Jens Axboed55e5f52019-12-11 16:12:15 -07005098 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
5099 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005100 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06005101 accept->nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005102
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005103 accept->file_slot = READ_ONCE(sqe->file_index);
5104 if (accept->file_slot && ((req->open.how.flags & O_CLOEXEC) ||
5105 (accept->flags & SOCK_CLOEXEC)))
5106 return -EINVAL;
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005107 if (accept->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
5108 return -EINVAL;
5109 if (SOCK_NONBLOCK != O_NONBLOCK && (accept->flags & SOCK_NONBLOCK))
5110 accept->flags = (accept->flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005111 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005112}
Jens Axboe17f2fe32019-10-17 14:42:58 -06005113
Pavel Begunkov889fca72021-02-10 00:03:09 +00005114static int io_accept(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005115{
5116 struct io_accept *accept = &req->accept;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005117 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005118 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005119 bool fixed = !!accept->file_slot;
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005120 struct file *file;
5121 int ret, fd;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005122
Jiufei Xuee697dee2020-06-10 13:41:59 +08005123 if (req->file->f_flags & O_NONBLOCK)
5124 req->flags |= REQ_F_NOWAIT;
5125
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005126 if (!fixed) {
5127 fd = __get_unused_fd_flags(accept->flags, accept->nofile);
5128 if (unlikely(fd < 0))
5129 return fd;
5130 }
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005131 file = do_accept(req->file, file_flags, accept->addr, accept->addr_len,
5132 accept->flags);
5133 if (IS_ERR(file)) {
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005134 if (!fixed)
5135 put_unused_fd(fd);
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005136 ret = PTR_ERR(file);
5137 if (ret == -EAGAIN && force_nonblock)
5138 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005139 if (ret == -ERESTARTSYS)
5140 ret = -EINTR;
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005141 req_set_fail(req);
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005142 } else if (!fixed) {
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005143 fd_install(fd, file);
5144 ret = fd;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005145 } else {
5146 ret = io_install_fixed_file(req, file, issue_flags,
5147 accept->file_slot - 1);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005148 }
Pavel Begunkov889fca72021-02-10 00:03:09 +00005149 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005150 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005151}
5152
Pavel Begunkov93642ef2021-02-18 18:29:44 +00005153static int io_connect_prep_async(struct io_kiocb *req)
5154{
5155 struct io_async_connect *io = req->async_data;
5156 struct io_connect *conn = &req->connect;
5157
5158 return move_addr_to_kernel(conn->addr, conn->addr_len, &io->address);
5159}
5160
Jens Axboe3529d8c2019-12-19 18:24:38 -07005161static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07005162{
Jens Axboe3529d8c2019-12-19 18:24:38 -07005163 struct io_connect *conn = &req->connect;
Jens Axboef499a022019-12-02 16:28:46 -07005164
Jens Axboe14587a462020-09-05 11:36:08 -06005165 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005166 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01005167 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags ||
5168 sqe->splice_fd_in)
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005169 return -EINVAL;
5170
Jens Axboe3529d8c2019-12-19 18:24:38 -07005171 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
5172 conn->addr_len = READ_ONCE(sqe->addr2);
Pavel Begunkov93642ef2021-02-18 18:29:44 +00005173 return 0;
Jens Axboef499a022019-12-02 16:28:46 -07005174}
5175
Pavel Begunkov889fca72021-02-10 00:03:09 +00005176static int io_connect(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboef8e85cf2019-11-23 14:24:24 -07005177{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005178 struct io_async_connect __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005179 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005180 int ret;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005181 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005182
Jens Axboee8c2bc12020-08-15 18:44:09 -07005183 if (req->async_data) {
5184 io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07005185 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005186 ret = move_addr_to_kernel(req->connect.addr,
5187 req->connect.addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07005188 &__io.address);
Jens Axboef499a022019-12-02 16:28:46 -07005189 if (ret)
5190 goto out;
5191 io = &__io;
5192 }
5193
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005194 file_flags = force_nonblock ? O_NONBLOCK : 0;
5195
Jens Axboee8c2bc12020-08-15 18:44:09 -07005196 ret = __sys_connect_file(req->file, &io->address,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005197 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07005198 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07005199 if (req->async_data)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005200 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005201 if (io_alloc_async_data(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07005202 ret = -ENOMEM;
5203 goto out;
5204 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07005205 memcpy(req->async_data, &__io, sizeof(__io));
Jens Axboef8e85cf2019-11-23 14:24:24 -07005206 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07005207 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07005208 if (ret == -ERESTARTSYS)
5209 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07005210out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005211 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005212 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005213 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005214 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005215}
YueHaibing469956e2020-03-04 15:53:52 +08005216#else /* !CONFIG_NET */
Jens Axboe99a10082021-02-19 09:35:19 -07005217#define IO_NETOP_FN(op) \
5218static int io_##op(struct io_kiocb *req, unsigned int issue_flags) \
5219{ \
5220 return -EOPNOTSUPP; \
Jens Axboef8e85cf2019-11-23 14:24:24 -07005221}
5222
Jens Axboe99a10082021-02-19 09:35:19 -07005223#define IO_NETOP_PREP(op) \
5224IO_NETOP_FN(op) \
5225static int io_##op##_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) \
5226{ \
5227 return -EOPNOTSUPP; \
5228} \
5229
5230#define IO_NETOP_PREP_ASYNC(op) \
5231IO_NETOP_PREP(op) \
5232static int io_##op##_prep_async(struct io_kiocb *req) \
5233{ \
5234 return -EOPNOTSUPP; \
YueHaibing469956e2020-03-04 15:53:52 +08005235}
5236
Jens Axboe99a10082021-02-19 09:35:19 -07005237IO_NETOP_PREP_ASYNC(sendmsg);
5238IO_NETOP_PREP_ASYNC(recvmsg);
5239IO_NETOP_PREP_ASYNC(connect);
5240IO_NETOP_PREP(accept);
5241IO_NETOP_FN(send);
5242IO_NETOP_FN(recv);
YueHaibing469956e2020-03-04 15:53:52 +08005243#endif /* CONFIG_NET */
Jens Axboe17f2fe32019-10-17 14:42:58 -06005244
Jens Axboed7718a92020-02-14 22:23:12 -07005245struct io_poll_table {
5246 struct poll_table_struct pt;
5247 struct io_kiocb *req;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005248 int nr_entries;
Jens Axboed7718a92020-02-14 22:23:12 -07005249 int error;
5250};
5251
Jens Axboed7718a92020-02-14 22:23:12 -07005252static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01005253 __poll_t mask, io_req_tw_func_t func)
Jens Axboed7718a92020-02-14 22:23:12 -07005254{
Jens Axboed7718a92020-02-14 22:23:12 -07005255 /* for instances that support it check for an event match first: */
5256 if (mask && !(mask & poll->events))
5257 return 0;
5258
5259 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
5260
5261 list_del_init(&poll->wait.entry);
5262
Jens Axboed7718a92020-02-14 22:23:12 -07005263 req->result = mask;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01005264 req->io_task_work.func = func;
Jens Axboe6d816e02020-08-11 08:04:14 -06005265
Jens Axboed7718a92020-02-14 22:23:12 -07005266 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06005267 * If this fails, then the task is exiting. When a task exits, the
5268 * work gets canceled, so just cancel this request as well instead
5269 * of executing it. We can't safely execute it anyway, as we may not
5270 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07005271 */
Pavel Begunkove09ee512021-07-01 13:26:05 +01005272 io_req_task_work_add(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005273 return 1;
5274}
5275
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005276static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
5277 __acquires(&req->ctx->completion_lock)
5278{
5279 struct io_ring_ctx *ctx = req->ctx;
5280
Jens Axboe316319e2021-08-19 09:41:42 -06005281 /* req->task == current here, checking PF_EXITING is safe */
Pavel Begunkove09ee512021-07-01 13:26:05 +01005282 if (unlikely(req->task->flags & PF_EXITING))
5283 WRITE_ONCE(poll->canceled, true);
5284
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005285 if (!req->result && !READ_ONCE(poll->canceled)) {
5286 struct poll_table_struct pt = { ._key = poll->events };
5287
5288 req->result = vfs_poll(req->file, &pt) & poll->events;
5289 }
5290
Jens Axboe79ebeae2021-08-10 15:18:27 -06005291 spin_lock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005292 if (!req->result && !READ_ONCE(poll->canceled)) {
5293 add_wait_queue(poll->head, &poll->wait);
5294 return true;
5295 }
5296
5297 return false;
5298}
5299
Jens Axboed4e7cd32020-08-15 11:44:50 -07005300static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06005301{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005302 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
Jens Axboed4e7cd32020-08-15 11:44:50 -07005303 if (req->opcode == IORING_OP_POLL_ADD)
Jens Axboee8c2bc12020-08-15 18:44:09 -07005304 return req->async_data;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005305 return req->apoll->double_poll;
5306}
5307
5308static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
5309{
5310 if (req->opcode == IORING_OP_POLL_ADD)
5311 return &req->poll;
5312 return &req->apoll->poll;
5313}
5314
5315static void io_poll_remove_double(struct io_kiocb *req)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005316 __must_hold(&req->ctx->completion_lock)
Jens Axboed4e7cd32020-08-15 11:44:50 -07005317{
5318 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005319
5320 lockdep_assert_held(&req->ctx->completion_lock);
5321
5322 if (poll && poll->head) {
5323 struct wait_queue_head *head = poll->head;
5324
Jens Axboe79ebeae2021-08-10 15:18:27 -06005325 spin_lock_irq(&head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06005326 list_del_init(&poll->wait.entry);
5327 if (poll->wait.private)
Jens Axboede9b4cc2021-02-24 13:28:27 -07005328 req_ref_put(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005329 poll->head = NULL;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005330 spin_unlock_irq(&head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06005331 }
5332}
5333
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005334static bool __io_poll_complete(struct io_kiocb *req, __poll_t mask)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005335 __must_hold(&req->ctx->completion_lock)
Jens Axboe18bceab2020-05-15 11:56:54 -06005336{
5337 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005338 unsigned flags = IORING_CQE_F_MORE;
Pavel Begunkove27414b2021-04-09 09:13:20 +01005339 int error;
Jens Axboe18bceab2020-05-15 11:56:54 -06005340
Pavel Begunkove27414b2021-04-09 09:13:20 +01005341 if (READ_ONCE(req->poll.canceled)) {
Jens Axboe45ab03b2021-02-23 08:19:33 -07005342 error = -ECANCELED;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005343 req->poll.events |= EPOLLONESHOT;
Pavel Begunkove27414b2021-04-09 09:13:20 +01005344 } else {
Jens Axboe50826202021-02-23 09:02:26 -07005345 error = mangle_poll(mask);
Pavel Begunkove27414b2021-04-09 09:13:20 +01005346 }
Jens Axboeb69de282021-03-17 08:37:41 -06005347 if (req->poll.events & EPOLLONESHOT)
5348 flags = 0;
Hao Xua62682f2021-09-22 18:12:37 +08005349 if (!io_cqring_fill_event(ctx, req->user_data, error, flags)) {
5350 req->poll.events |= EPOLLONESHOT;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005351 flags = 0;
Hao Xua62682f2021-09-22 18:12:37 +08005352 }
Hao Xu7b289c32021-04-13 15:20:39 +08005353 if (flags & IORING_CQE_F_MORE)
5354 ctx->cq_extra++;
5355
Jens Axboe88e41cf2021-02-22 22:08:01 -07005356 return !(flags & IORING_CQE_F_MORE);
Jens Axboe18bceab2020-05-15 11:56:54 -06005357}
5358
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005359static inline bool io_poll_complete(struct io_kiocb *req, __poll_t mask)
5360 __must_hold(&req->ctx->completion_lock)
5361{
5362 bool done;
5363
5364 done = __io_poll_complete(req, mask);
5365 io_commit_cqring(req->ctx);
5366 return done;
5367}
5368
Pavel Begunkovf237c302021-08-18 12:42:46 +01005369static void io_poll_task_func(struct io_kiocb *req, bool *locked)
Jens Axboe18bceab2020-05-15 11:56:54 -06005370{
Jens Axboe6d816e02020-08-11 08:04:14 -06005371 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005372 struct io_kiocb *nxt;
Jens Axboe18bceab2020-05-15 11:56:54 -06005373
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005374 if (io_poll_rewait(req, &req->poll)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005375 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005376 } else {
Pavel Begunkovf40b9642021-04-09 09:13:19 +01005377 bool done;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005378
Hao Xu5b7aa382021-09-22 18:12:38 +08005379 if (req->poll.done) {
5380 spin_unlock(&ctx->completion_lock);
5381 return;
5382 }
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005383 done = __io_poll_complete(req, req->result);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005384 if (done) {
Hao Xua890d012021-07-28 11:03:22 +08005385 io_poll_remove_double(req);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005386 hash_del(&req->hash_node);
Hao Xubd99c712021-09-22 18:12:36 +08005387 req->poll.done = true;
Pavel Begunkovf40b9642021-04-09 09:13:19 +01005388 } else {
Jens Axboe88e41cf2021-02-22 22:08:01 -07005389 req->result = 0;
5390 add_wait_queue(req->poll.head, &req->poll.wait);
5391 }
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005392 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005393 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005394 io_cqring_ev_posted(ctx);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005395
Jens Axboe88e41cf2021-02-22 22:08:01 -07005396 if (done) {
5397 nxt = io_put_req_find_next(req);
5398 if (nxt)
Pavel Begunkovf237c302021-08-18 12:42:46 +01005399 io_req_task_submit(nxt, locked);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005400 }
Pavel Begunkovea1164e2020-06-30 15:20:41 +03005401 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005402}
5403
5404static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
5405 int sync, void *key)
5406{
5407 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005408 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005409 __poll_t mask = key_to_poll(key);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005410 unsigned long flags;
Jens Axboe18bceab2020-05-15 11:56:54 -06005411
5412 /* for instances that support it check for an event match first: */
5413 if (mask && !(mask & poll->events))
5414 return 0;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005415 if (!(poll->events & EPOLLONESHOT))
5416 return poll->wait.func(&poll->wait, mode, sync, key);
Jens Axboe18bceab2020-05-15 11:56:54 -06005417
Jens Axboe8706e042020-09-28 08:38:54 -06005418 list_del_init(&wait->entry);
5419
Jens Axboe9ce85ef2021-07-09 08:20:28 -06005420 if (poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005421 bool done;
5422
Jens Axboe79ebeae2021-08-10 15:18:27 -06005423 spin_lock_irqsave(&poll->head->lock, flags);
Jens Axboe807abcb2020-07-17 17:09:27 -06005424 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06005425 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06005426 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005427 /* make sure double remove sees this as being gone */
5428 wait->private = NULL;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005429 spin_unlock_irqrestore(&poll->head->lock, flags);
Jens Axboec8b5e262020-10-25 13:53:26 -06005430 if (!done) {
5431 /* use wait func handler, so it matches the rq type */
5432 poll->wait.func(&poll->wait, mode, sync, key);
5433 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005434 }
Jens Axboede9b4cc2021-02-24 13:28:27 -07005435 req_ref_put(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005436 return 1;
5437}
5438
5439static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
5440 wait_queue_func_t wake_func)
5441{
5442 poll->head = NULL;
5443 poll->done = false;
5444 poll->canceled = false;
Jens Axboe464dca62021-03-19 14:06:24 -06005445#define IO_POLL_UNMASK (EPOLLERR|EPOLLHUP|EPOLLNVAL|EPOLLRDHUP)
5446 /* mask in events that we always want/need */
5447 poll->events = events | IO_POLL_UNMASK;
Jens Axboe18bceab2020-05-15 11:56:54 -06005448 INIT_LIST_HEAD(&poll->wait.entry);
5449 init_waitqueue_func_entry(&poll->wait, wake_func);
5450}
5451
5452static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06005453 struct wait_queue_head *head,
5454 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06005455{
5456 struct io_kiocb *req = pt->req;
5457
5458 /*
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005459 * The file being polled uses multiple waitqueues for poll handling
5460 * (e.g. one for read, one for write). Setup a separate io_poll_iocb
5461 * if this happens.
Jens Axboe18bceab2020-05-15 11:56:54 -06005462 */
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005463 if (unlikely(pt->nr_entries)) {
Pavel Begunkov58852d42020-10-16 20:55:56 +01005464 struct io_poll_iocb *poll_one = poll;
5465
Pavel Begunkov23a65db2021-08-17 20:28:11 +01005466 /* double add on the same waitqueue head, ignore */
5467 if (poll_one->head == head)
5468 return;
Jens Axboe18bceab2020-05-15 11:56:54 -06005469 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06005470 if (*poll_ptr) {
Pavel Begunkov23a65db2021-08-17 20:28:11 +01005471 if ((*poll_ptr)->head == head)
5472 return;
Jens Axboe18bceab2020-05-15 11:56:54 -06005473 pt->error = -EINVAL;
5474 return;
5475 }
Jens Axboeea6a693d2021-04-15 09:47:13 -06005476 /*
5477 * Can't handle multishot for double wait for now, turn it
5478 * into one-shot mode.
5479 */
Pavel Begunkov7a274722021-05-17 12:43:34 +01005480 if (!(poll_one->events & EPOLLONESHOT))
5481 poll_one->events |= EPOLLONESHOT;
Jens Axboe18bceab2020-05-15 11:56:54 -06005482 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5483 if (!poll) {
5484 pt->error = -ENOMEM;
5485 return;
5486 }
Pavel Begunkov58852d42020-10-16 20:55:56 +01005487 io_init_poll_iocb(poll, poll_one->events, io_poll_double_wake);
Jens Axboede9b4cc2021-02-24 13:28:27 -07005488 req_ref_get(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005489 poll->wait.private = req;
Jens Axboe807abcb2020-07-17 17:09:27 -06005490 *poll_ptr = poll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005491 }
5492
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005493 pt->nr_entries++;
Jens Axboe18bceab2020-05-15 11:56:54 -06005494 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005495
5496 if (poll->events & EPOLLEXCLUSIVE)
5497 add_wait_queue_exclusive(head, &poll->wait);
5498 else
5499 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06005500}
5501
5502static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5503 struct poll_table_struct *p)
5504{
5505 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06005506 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005507
Jens Axboe807abcb2020-07-17 17:09:27 -06005508 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06005509}
5510
Pavel Begunkovf237c302021-08-18 12:42:46 +01005511static void io_async_task_func(struct io_kiocb *req, bool *locked)
Jens Axboed7718a92020-02-14 22:23:12 -07005512{
Jens Axboed7718a92020-02-14 22:23:12 -07005513 struct async_poll *apoll = req->apoll;
5514 struct io_ring_ctx *ctx = req->ctx;
5515
Olivier Langlois236daeae2021-05-31 02:36:37 -04005516 trace_io_uring_task_run(req->ctx, req, req->opcode, req->user_data);
Jens Axboed7718a92020-02-14 22:23:12 -07005517
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005518 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005519 spin_unlock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005520 return;
Jens Axboed7718a92020-02-14 22:23:12 -07005521 }
5522
Pavel Begunkov0ea13b42021-04-09 09:13:21 +01005523 hash_del(&req->hash_node);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005524 io_poll_remove_double(req);
Hao Xubd99c712021-09-22 18:12:36 +08005525 apoll->poll.done = true;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005526 spin_unlock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005527
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005528 if (!READ_ONCE(apoll->poll.canceled))
Pavel Begunkovf237c302021-08-18 12:42:46 +01005529 io_req_task_submit(req, locked);
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005530 else
Pavel Begunkov25935532021-03-19 17:22:40 +00005531 io_req_complete_failed(req, -ECANCELED);
Jens Axboed7718a92020-02-14 22:23:12 -07005532}
5533
5534static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5535 void *key)
5536{
5537 struct io_kiocb *req = wait->private;
5538 struct io_poll_iocb *poll = &req->apoll->poll;
5539
5540 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
5541 key_to_poll(key));
5542
5543 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
5544}
5545
5546static void io_poll_req_insert(struct io_kiocb *req)
5547{
5548 struct io_ring_ctx *ctx = req->ctx;
5549 struct hlist_head *list;
5550
5551 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
5552 hlist_add_head(&req->hash_node, list);
5553}
5554
5555static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
5556 struct io_poll_iocb *poll,
5557 struct io_poll_table *ipt, __poll_t mask,
5558 wait_queue_func_t wake_func)
5559 __acquires(&ctx->completion_lock)
5560{
5561 struct io_ring_ctx *ctx = req->ctx;
5562 bool cancel = false;
5563
Pavel Begunkov4d52f332020-10-18 10:17:43 +01005564 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe18bceab2020-05-15 11:56:54 -06005565 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03005566 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06005567 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07005568
5569 ipt->pt._key = mask;
5570 ipt->req = req;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005571 ipt->error = 0;
5572 ipt->nr_entries = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07005573
Jens Axboed7718a92020-02-14 22:23:12 -07005574 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005575 if (unlikely(!ipt->nr_entries) && !ipt->error)
5576 ipt->error = -EINVAL;
Jens Axboed7718a92020-02-14 22:23:12 -07005577
Jens Axboe79ebeae2021-08-10 15:18:27 -06005578 spin_lock(&ctx->completion_lock);
Hao Xua890d012021-07-28 11:03:22 +08005579 if (ipt->error || (mask && (poll->events & EPOLLONESHOT)))
Pavel Begunkov46fee9a2021-07-20 10:50:44 +01005580 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005581 if (likely(poll->head)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005582 spin_lock_irq(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07005583 if (unlikely(list_empty(&poll->wait.entry))) {
5584 if (ipt->error)
5585 cancel = true;
5586 ipt->error = 0;
5587 mask = 0;
5588 }
Jens Axboe88e41cf2021-02-22 22:08:01 -07005589 if ((mask && (poll->events & EPOLLONESHOT)) || ipt->error)
Jens Axboed7718a92020-02-14 22:23:12 -07005590 list_del_init(&poll->wait.entry);
5591 else if (cancel)
5592 WRITE_ONCE(poll->canceled, true);
5593 else if (!poll->done) /* actually waiting for an event */
5594 io_poll_req_insert(req);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005595 spin_unlock_irq(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07005596 }
5597
5598 return mask;
5599}
5600
Olivier Langlois59b735a2021-06-22 05:17:39 -07005601enum {
5602 IO_APOLL_OK,
5603 IO_APOLL_ABORTED,
5604 IO_APOLL_READY
5605};
5606
5607static int io_arm_poll_handler(struct io_kiocb *req)
Jens Axboed7718a92020-02-14 22:23:12 -07005608{
5609 const struct io_op_def *def = &io_op_defs[req->opcode];
5610 struct io_ring_ctx *ctx = req->ctx;
5611 struct async_poll *apoll;
5612 struct io_poll_table ipt;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005613 __poll_t ret, mask = EPOLLONESHOT | POLLERR | POLLPRI;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005614 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07005615
5616 if (!req->file || !file_can_poll(req->file))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005617 return IO_APOLL_ABORTED;
Pavel Begunkov24c74672020-06-21 13:09:51 +03005618 if (req->flags & REQ_F_POLLED)
Olivier Langlois59b735a2021-06-22 05:17:39 -07005619 return IO_APOLL_ABORTED;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005620 if (!def->pollin && !def->pollout)
Olivier Langlois59b735a2021-06-22 05:17:39 -07005621 return IO_APOLL_ABORTED;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005622
5623 if (def->pollin) {
5624 rw = READ;
5625 mask |= POLLIN | POLLRDNORM;
5626
5627 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
5628 if ((req->opcode == IORING_OP_RECVMSG) &&
5629 (req->sr_msg.msg_flags & MSG_ERRQUEUE))
5630 mask &= ~POLLIN;
5631 } else {
5632 rw = WRITE;
5633 mask |= POLLOUT | POLLWRNORM;
5634 }
5635
Jens Axboe9dab14b2020-08-25 12:27:50 -06005636 /* if we can't nonblock try, then no point in arming a poll handler */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01005637 if (!io_file_supports_nowait(req, rw))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005638 return IO_APOLL_ABORTED;
Jens Axboed7718a92020-02-14 22:23:12 -07005639
5640 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5641 if (unlikely(!apoll))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005642 return IO_APOLL_ABORTED;
Jens Axboe807abcb2020-07-17 17:09:27 -06005643 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005644 req->apoll = apoll;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005645 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07005646 ipt.pt._qproc = io_async_queue_proc;
Pavel Begunkov48dcd382021-08-15 10:40:18 +01005647 io_req_set_refcount(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005648
5649 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
5650 io_async_wake);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005651 spin_unlock(&ctx->completion_lock);
Hao Xu41a51692021-08-12 15:47:02 +08005652 if (ret || ipt.error)
5653 return ret ? IO_APOLL_READY : IO_APOLL_ABORTED;
5654
Olivier Langlois236daeae2021-05-31 02:36:37 -04005655 trace_io_uring_poll_arm(ctx, req, req->opcode, req->user_data,
5656 mask, apoll->poll.events);
Olivier Langlois59b735a2021-06-22 05:17:39 -07005657 return IO_APOLL_OK;
Jens Axboed7718a92020-02-14 22:23:12 -07005658}
5659
5660static bool __io_poll_remove_one(struct io_kiocb *req,
Jens Axboeb2e720a2021-03-31 09:03:03 -06005661 struct io_poll_iocb *poll, bool do_cancel)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005662 __must_hold(&req->ctx->completion_lock)
Jens Axboed7718a92020-02-14 22:23:12 -07005663{
Jens Axboeb41e9852020-02-17 09:52:41 -07005664 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005665
Jens Axboe50826202021-02-23 09:02:26 -07005666 if (!poll->head)
5667 return false;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005668 spin_lock_irq(&poll->head->lock);
Jens Axboeb2e720a2021-03-31 09:03:03 -06005669 if (do_cancel)
5670 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005671 if (!list_empty(&poll->wait.entry)) {
5672 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005673 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005674 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005675 spin_unlock_irq(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005676 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005677 return do_complete;
5678}
5679
Pavel Begunkov5d709042021-08-09 20:18:13 +01005680static bool io_poll_remove_one(struct io_kiocb *req)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005681 __must_hold(&req->ctx->completion_lock)
Jens Axboed7718a92020-02-14 22:23:12 -07005682{
5683 bool do_complete;
5684
Jens Axboed4e7cd32020-08-15 11:44:50 -07005685 io_poll_remove_double(req);
Pavel Begunkove31001a2021-04-13 02:58:43 +01005686 do_complete = __io_poll_remove_one(req, io_poll_get_single(req), true);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005687
Jens Axboeb41e9852020-02-17 09:52:41 -07005688 if (do_complete) {
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01005689 io_cqring_fill_event(req->ctx, req->user_data, -ECANCELED, 0);
Jens Axboeb41e9852020-02-17 09:52:41 -07005690 io_commit_cqring(req->ctx);
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005691 req_set_fail(req);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01005692 io_put_req_deferred(req);
Pavel Begunkov5d709042021-08-09 20:18:13 +01005693 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005694 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005695}
5696
Jens Axboe76e1b642020-09-26 15:05:03 -06005697/*
5698 * Returns true if we found and killed one or more poll requests
5699 */
Pavel Begunkov6b819282020-11-06 13:00:25 +00005700static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01005701 bool cancel_all)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005702{
Jens Axboe78076bb2019-12-04 19:56:40 -07005703 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005704 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005705 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005706
Jens Axboe79ebeae2021-08-10 15:18:27 -06005707 spin_lock(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005708 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5709 struct hlist_head *list;
5710
5711 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005712 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01005713 if (io_match_task(req, tsk, cancel_all))
Jens Axboef3606e32020-09-22 08:18:24 -06005714 posted += io_poll_remove_one(req);
5715 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005716 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005717 spin_unlock(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005718
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005719 if (posted)
5720 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005721
5722 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005723}
5724
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005725static struct io_kiocb *io_poll_find(struct io_ring_ctx *ctx, __u64 sqe_addr,
5726 bool poll_only)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005727 __must_hold(&ctx->completion_lock)
Jens Axboe47f46762019-11-09 17:43:02 -07005728{
Jens Axboe78076bb2019-12-04 19:56:40 -07005729 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005730 struct io_kiocb *req;
5731
Jens Axboe78076bb2019-12-04 19:56:40 -07005732 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5733 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005734 if (sqe_addr != req->user_data)
5735 continue;
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005736 if (poll_only && req->opcode != IORING_OP_POLL_ADD)
5737 continue;
Jens Axboeb2cb8052021-03-17 08:17:19 -06005738 return req;
Jens Axboe47f46762019-11-09 17:43:02 -07005739 }
Jens Axboeb2cb8052021-03-17 08:17:19 -06005740 return NULL;
Jens Axboe47f46762019-11-09 17:43:02 -07005741}
5742
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005743static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr,
5744 bool poll_only)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005745 __must_hold(&ctx->completion_lock)
Jens Axboeb2cb8052021-03-17 08:17:19 -06005746{
5747 struct io_kiocb *req;
5748
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005749 req = io_poll_find(ctx, sqe_addr, poll_only);
Jens Axboeb2cb8052021-03-17 08:17:19 -06005750 if (!req)
5751 return -ENOENT;
5752 if (io_poll_remove_one(req))
5753 return 0;
5754
5755 return -EALREADY;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005756}
5757
Pavel Begunkov9096af32021-04-14 13:38:36 +01005758static __poll_t io_poll_parse_events(const struct io_uring_sqe *sqe,
5759 unsigned int flags)
5760{
5761 u32 events;
5762
5763 events = READ_ONCE(sqe->poll32_events);
5764#ifdef __BIG_ENDIAN
5765 events = swahw32(events);
5766#endif
5767 if (!(flags & IORING_POLL_ADD_MULTI))
5768 events |= EPOLLONESHOT;
5769 return demangle_poll(events) | (events & (EPOLLEXCLUSIVE|EPOLLONESHOT));
5770}
5771
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005772static int io_poll_update_prep(struct io_kiocb *req,
Jens Axboe3529d8c2019-12-19 18:24:38 -07005773 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005774{
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005775 struct io_poll_update *upd = &req->poll_update;
5776 u32 flags;
5777
Jens Axboe221c5eb2019-01-17 09:41:58 -07005778 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5779 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01005780 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005781 return -EINVAL;
5782 flags = READ_ONCE(sqe->len);
5783 if (flags & ~(IORING_POLL_UPDATE_EVENTS | IORING_POLL_UPDATE_USER_DATA |
5784 IORING_POLL_ADD_MULTI))
5785 return -EINVAL;
5786 /* meaningless without update */
5787 if (flags == IORING_POLL_ADD_MULTI)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005788 return -EINVAL;
5789
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005790 upd->old_user_data = READ_ONCE(sqe->addr);
5791 upd->update_events = flags & IORING_POLL_UPDATE_EVENTS;
5792 upd->update_user_data = flags & IORING_POLL_UPDATE_USER_DATA;
Jens Axboe0969e782019-12-17 18:40:57 -07005793
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005794 upd->new_user_data = READ_ONCE(sqe->off);
5795 if (!upd->update_user_data && upd->new_user_data)
5796 return -EINVAL;
5797 if (upd->update_events)
5798 upd->events = io_poll_parse_events(sqe, flags);
5799 else if (sqe->poll32_events)
5800 return -EINVAL;
Jens Axboe0969e782019-12-17 18:40:57 -07005801
Jens Axboe221c5eb2019-01-17 09:41:58 -07005802 return 0;
5803}
5804
Jens Axboe221c5eb2019-01-17 09:41:58 -07005805static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5806 void *key)
5807{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005808 struct io_kiocb *req = wait->private;
5809 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005810
Jens Axboed7718a92020-02-14 22:23:12 -07005811 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005812}
5813
Jens Axboe221c5eb2019-01-17 09:41:58 -07005814static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5815 struct poll_table_struct *p)
5816{
5817 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5818
Jens Axboee8c2bc12020-08-15 18:44:09 -07005819 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->async_data);
Jens Axboeeac406c2019-11-14 12:09:58 -07005820}
5821
Jens Axboe3529d8c2019-12-19 18:24:38 -07005822static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005823{
5824 struct io_poll_iocb *poll = &req->poll;
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005825 u32 flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005826
5827 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5828 return -EINVAL;
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005829 if (sqe->ioprio || sqe->buf_index || sqe->off || sqe->addr)
Jens Axboe88e41cf2021-02-22 22:08:01 -07005830 return -EINVAL;
5831 flags = READ_ONCE(sqe->len);
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005832 if (flags & ~IORING_POLL_ADD_MULTI)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005833 return -EINVAL;
5834
Pavel Begunkov48dcd382021-08-15 10:40:18 +01005835 io_req_set_refcount(req);
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005836 poll->events = io_poll_parse_events(sqe, flags);
Jens Axboe0969e782019-12-17 18:40:57 -07005837 return 0;
5838}
5839
Pavel Begunkov61e98202021-02-10 00:03:08 +00005840static int io_poll_add(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe0969e782019-12-17 18:40:57 -07005841{
5842 struct io_poll_iocb *poll = &req->poll;
5843 struct io_ring_ctx *ctx = req->ctx;
5844 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005845 __poll_t mask;
Hao Xu5b7aa382021-09-22 18:12:38 +08005846 bool done;
Jens Axboe0969e782019-12-17 18:40:57 -07005847
Jens Axboed7718a92020-02-14 22:23:12 -07005848 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005849
Jens Axboed7718a92020-02-14 22:23:12 -07005850 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5851 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005852
Jens Axboe8c838782019-03-12 15:48:16 -06005853 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005854 ipt.error = 0;
Hao Xu5b7aa382021-09-22 18:12:38 +08005855 done = io_poll_complete(req, mask);
Jens Axboe8c838782019-03-12 15:48:16 -06005856 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005857 spin_unlock(&ctx->completion_lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005858
Jens Axboe8c838782019-03-12 15:48:16 -06005859 if (mask) {
5860 io_cqring_ev_posted(ctx);
Hao Xu5b7aa382021-09-22 18:12:38 +08005861 if (done)
Jens Axboe88e41cf2021-02-22 22:08:01 -07005862 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005863 }
Jens Axboe8c838782019-03-12 15:48:16 -06005864 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005865}
5866
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005867static int io_poll_update(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeb69de282021-03-17 08:37:41 -06005868{
5869 struct io_ring_ctx *ctx = req->ctx;
5870 struct io_kiocb *preq;
Jens Axboecb3b200e2021-04-06 09:49:31 -06005871 bool completing;
Jens Axboeb69de282021-03-17 08:37:41 -06005872 int ret;
5873
Jens Axboe79ebeae2021-08-10 15:18:27 -06005874 spin_lock(&ctx->completion_lock);
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005875 preq = io_poll_find(ctx, req->poll_update.old_user_data, true);
Jens Axboeb69de282021-03-17 08:37:41 -06005876 if (!preq) {
5877 ret = -ENOENT;
5878 goto err;
Jens Axboeb69de282021-03-17 08:37:41 -06005879 }
Jens Axboecb3b200e2021-04-06 09:49:31 -06005880
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005881 if (!req->poll_update.update_events && !req->poll_update.update_user_data) {
5882 completing = true;
5883 ret = io_poll_remove_one(preq) ? 0 : -EALREADY;
5884 goto err;
5885 }
5886
Jens Axboecb3b200e2021-04-06 09:49:31 -06005887 /*
5888 * Don't allow racy completion with singleshot, as we cannot safely
5889 * update those. For multishot, if we're racing with completion, just
5890 * let completion re-add it.
5891 */
5892 completing = !__io_poll_remove_one(preq, &preq->poll, false);
5893 if (completing && (preq->poll.events & EPOLLONESHOT)) {
5894 ret = -EALREADY;
5895 goto err;
Jens Axboeb69de282021-03-17 08:37:41 -06005896 }
5897 /* we now have a detached poll request. reissue. */
5898 ret = 0;
5899err:
Jens Axboeb69de282021-03-17 08:37:41 -06005900 if (ret < 0) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005901 spin_unlock(&ctx->completion_lock);
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005902 req_set_fail(req);
Jens Axboeb69de282021-03-17 08:37:41 -06005903 io_req_complete(req, ret);
5904 return 0;
5905 }
5906 /* only mask one event flags, keep behavior flags */
Pavel Begunkov9d805892021-04-13 02:58:40 +01005907 if (req->poll_update.update_events) {
Jens Axboeb69de282021-03-17 08:37:41 -06005908 preq->poll.events &= ~0xffff;
Pavel Begunkov9d805892021-04-13 02:58:40 +01005909 preq->poll.events |= req->poll_update.events & 0xffff;
Jens Axboeb69de282021-03-17 08:37:41 -06005910 preq->poll.events |= IO_POLL_UNMASK;
5911 }
Pavel Begunkov9d805892021-04-13 02:58:40 +01005912 if (req->poll_update.update_user_data)
5913 preq->user_data = req->poll_update.new_user_data;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005914 spin_unlock(&ctx->completion_lock);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005915
Jens Axboeb69de282021-03-17 08:37:41 -06005916 /* complete update request, we're done with it */
5917 io_req_complete(req, ret);
5918
Jens Axboecb3b200e2021-04-06 09:49:31 -06005919 if (!completing) {
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005920 ret = io_poll_add(preq, issue_flags);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005921 if (ret < 0) {
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005922 req_set_fail(preq);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005923 io_req_complete(preq, ret);
5924 }
Jens Axboeb69de282021-03-17 08:37:41 -06005925 }
5926 return 0;
5927}
5928
Pavel Begunkovf237c302021-08-18 12:42:46 +01005929static void io_req_task_timeout(struct io_kiocb *req, bool *locked)
Jens Axboe89850fc2021-08-10 15:11:51 -06005930{
Jens Axboe89850fc2021-08-10 15:11:51 -06005931 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01005932 io_req_complete_post(req, -ETIME, 0);
Jens Axboe89850fc2021-08-10 15:11:51 -06005933}
5934
Jens Axboe5262f562019-09-17 12:26:57 -06005935static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5936{
Jens Axboead8a48a2019-11-15 08:49:11 -07005937 struct io_timeout_data *data = container_of(timer,
5938 struct io_timeout_data, timer);
5939 struct io_kiocb *req = data->req;
5940 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005941 unsigned long flags;
5942
Jens Axboe89850fc2021-08-10 15:11:51 -06005943 spin_lock_irqsave(&ctx->timeout_lock, flags);
Pavel Begunkova71976f2020-10-10 18:34:11 +01005944 list_del_init(&req->timeout.list);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005945 atomic_set(&req->ctx->cq_timeouts,
5946 atomic_read(&req->ctx->cq_timeouts) + 1);
Jens Axboe89850fc2021-08-10 15:11:51 -06005947 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005948
Jens Axboe89850fc2021-08-10 15:11:51 -06005949 req->io_task_work.func = io_req_task_timeout;
5950 io_req_task_work_add(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005951 return HRTIMER_NORESTART;
5952}
5953
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005954static struct io_kiocb *io_timeout_extract(struct io_ring_ctx *ctx,
5955 __u64 user_data)
Jens Axboe89850fc2021-08-10 15:11:51 -06005956 __must_hold(&ctx->timeout_lock)
Jens Axboe47f46762019-11-09 17:43:02 -07005957{
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005958 struct io_timeout_data *io;
Jens Axboef254ac02020-08-12 17:33:30 -06005959 struct io_kiocb *req;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005960 bool found = false;
Jens Axboef254ac02020-08-12 17:33:30 -06005961
5962 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005963 found = user_data == req->user_data;
5964 if (found)
Jens Axboef254ac02020-08-12 17:33:30 -06005965 break;
Jens Axboef254ac02020-08-12 17:33:30 -06005966 }
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005967 if (!found)
5968 return ERR_PTR(-ENOENT);
Jens Axboef254ac02020-08-12 17:33:30 -06005969
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005970 io = req->async_data;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005971 if (hrtimer_try_to_cancel(&io->timer) == -1)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005972 return ERR_PTR(-EALREADY);
5973 list_del_init(&req->timeout.list);
5974 return req;
5975}
5976
5977static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01005978 __must_hold(&ctx->completion_lock)
Jens Axboe89850fc2021-08-10 15:11:51 -06005979 __must_hold(&ctx->timeout_lock)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005980{
5981 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
5982
5983 if (IS_ERR(req))
5984 return PTR_ERR(req);
5985
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005986 req_set_fail(req);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01005987 io_cqring_fill_event(ctx, req->user_data, -ECANCELED, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01005988 io_put_req_deferred(req);
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005989 return 0;
Jens Axboef254ac02020-08-12 17:33:30 -06005990}
5991
Jens Axboe50c1df22021-08-27 17:11:06 -06005992static clockid_t io_timeout_get_clock(struct io_timeout_data *data)
5993{
5994 switch (data->flags & IORING_TIMEOUT_CLOCK_MASK) {
5995 case IORING_TIMEOUT_BOOTTIME:
5996 return CLOCK_BOOTTIME;
5997 case IORING_TIMEOUT_REALTIME:
5998 return CLOCK_REALTIME;
5999 default:
6000 /* can't happen, vetted at prep time */
6001 WARN_ON_ONCE(1);
6002 fallthrough;
6003 case 0:
6004 return CLOCK_MONOTONIC;
6005 }
6006}
6007
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006008static int io_linked_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
6009 struct timespec64 *ts, enum hrtimer_mode mode)
6010 __must_hold(&ctx->timeout_lock)
6011{
6012 struct io_timeout_data *io;
6013 struct io_kiocb *req;
6014 bool found = false;
6015
6016 list_for_each_entry(req, &ctx->ltimeout_list, timeout.list) {
6017 found = user_data == req->user_data;
6018 if (found)
6019 break;
6020 }
6021 if (!found)
6022 return -ENOENT;
6023
6024 io = req->async_data;
6025 if (hrtimer_try_to_cancel(&io->timer) == -1)
6026 return -EALREADY;
6027 hrtimer_init(&io->timer, io_timeout_get_clock(io), mode);
6028 io->timer.function = io_link_timeout_fn;
6029 hrtimer_start(&io->timer, timespec64_to_ktime(*ts), mode);
6030 return 0;
6031}
6032
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006033static int io_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
6034 struct timespec64 *ts, enum hrtimer_mode mode)
Jens Axboe89850fc2021-08-10 15:11:51 -06006035 __must_hold(&ctx->timeout_lock)
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006036{
6037 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
6038 struct io_timeout_data *data;
6039
6040 if (IS_ERR(req))
6041 return PTR_ERR(req);
6042
6043 req->timeout.off = 0; /* noseq */
6044 data = req->async_data;
6045 list_add_tail(&req->timeout.list, &ctx->timeout_list);
Jens Axboe50c1df22021-08-27 17:11:06 -06006046 hrtimer_init(&data->timer, io_timeout_get_clock(data), mode);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006047 data->timer.function = io_timeout_fn;
6048 hrtimer_start(&data->timer, timespec64_to_ktime(*ts), mode);
6049 return 0;
Jens Axboe47f46762019-11-09 17:43:02 -07006050}
6051
Jens Axboe3529d8c2019-12-19 18:24:38 -07006052static int io_timeout_remove_prep(struct io_kiocb *req,
6053 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07006054{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006055 struct io_timeout_rem *tr = &req->timeout_rem;
6056
Jens Axboeb29472e2019-12-17 18:50:29 -07006057 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
6058 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06006059 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6060 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006061 if (sqe->ioprio || sqe->buf_index || sqe->len || sqe->splice_fd_in)
Jens Axboeb29472e2019-12-17 18:50:29 -07006062 return -EINVAL;
6063
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006064 tr->ltimeout = false;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006065 tr->addr = READ_ONCE(sqe->addr);
6066 tr->flags = READ_ONCE(sqe->timeout_flags);
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006067 if (tr->flags & IORING_TIMEOUT_UPDATE_MASK) {
6068 if (hweight32(tr->flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
6069 return -EINVAL;
6070 if (tr->flags & IORING_LINK_TIMEOUT_UPDATE)
6071 tr->ltimeout = true;
6072 if (tr->flags & ~(IORING_TIMEOUT_UPDATE_MASK|IORING_TIMEOUT_ABS))
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006073 return -EINVAL;
6074 if (get_timespec64(&tr->ts, u64_to_user_ptr(sqe->addr2)))
6075 return -EFAULT;
6076 } else if (tr->flags) {
6077 /* timeout removal doesn't support flags */
6078 return -EINVAL;
6079 }
6080
Jens Axboeb29472e2019-12-17 18:50:29 -07006081 return 0;
6082}
6083
Pavel Begunkov8662dae2021-01-19 13:32:44 +00006084static inline enum hrtimer_mode io_translate_timeout_mode(unsigned int flags)
6085{
6086 return (flags & IORING_TIMEOUT_ABS) ? HRTIMER_MODE_ABS
6087 : HRTIMER_MODE_REL;
6088}
6089
Jens Axboe11365042019-10-16 09:08:32 -06006090/*
6091 * Remove or update an existing timeout command
6092 */
Pavel Begunkov61e98202021-02-10 00:03:08 +00006093static int io_timeout_remove(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe11365042019-10-16 09:08:32 -06006094{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006095 struct io_timeout_rem *tr = &req->timeout_rem;
Jens Axboe11365042019-10-16 09:08:32 -06006096 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07006097 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06006098
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006099 if (!(req->timeout_rem.flags & IORING_TIMEOUT_UPDATE)) {
6100 spin_lock(&ctx->completion_lock);
6101 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006102 ret = io_timeout_cancel(ctx, tr->addr);
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006103 spin_unlock_irq(&ctx->timeout_lock);
6104 spin_unlock(&ctx->completion_lock);
6105 } else {
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006106 enum hrtimer_mode mode = io_translate_timeout_mode(tr->flags);
6107
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006108 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006109 if (tr->ltimeout)
6110 ret = io_linked_timeout_update(ctx, tr->addr, &tr->ts, mode);
6111 else
6112 ret = io_timeout_update(ctx, tr->addr, &tr->ts, mode);
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006113 spin_unlock_irq(&ctx->timeout_lock);
6114 }
Jens Axboe11365042019-10-16 09:08:32 -06006115
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006116 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006117 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006118 io_req_complete_post(req, ret, 0);
Jens Axboe11365042019-10-16 09:08:32 -06006119 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06006120}
6121
Jens Axboe3529d8c2019-12-19 18:24:38 -07006122static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07006123 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06006124{
Jens Axboead8a48a2019-11-15 08:49:11 -07006125 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06006126 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03006127 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06006128
Jens Axboead8a48a2019-11-15 08:49:11 -07006129 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06006130 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006131 if (sqe->ioprio || sqe->buf_index || sqe->len != 1 ||
6132 sqe->splice_fd_in)
Jens Axboea41525a2019-10-15 16:48:15 -06006133 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03006134 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07006135 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06006136 flags = READ_ONCE(sqe->timeout_flags);
Jens Axboe50c1df22021-08-27 17:11:06 -06006137 if (flags & ~(IORING_TIMEOUT_ABS | IORING_TIMEOUT_CLOCK_MASK))
6138 return -EINVAL;
6139 /* more than one clock specified is invalid, obviously */
6140 if (hweight32(flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
Jens Axboe5262f562019-09-17 12:26:57 -06006141 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06006142
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006143 INIT_LIST_HEAD(&req->timeout.list);
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006144 req->timeout.off = off;
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01006145 if (unlikely(off && !req->ctx->off_timeout_used))
6146 req->ctx->off_timeout_used = true;
Jens Axboe26a61672019-12-20 09:02:01 -07006147
Jens Axboee8c2bc12020-08-15 18:44:09 -07006148 if (!req->async_data && io_alloc_async_data(req))
Jens Axboe26a61672019-12-20 09:02:01 -07006149 return -ENOMEM;
6150
Jens Axboee8c2bc12020-08-15 18:44:09 -07006151 data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07006152 data->req = req;
Jens Axboe50c1df22021-08-27 17:11:06 -06006153 data->flags = flags;
Jens Axboead8a48a2019-11-15 08:49:11 -07006154
6155 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06006156 return -EFAULT;
6157
Pavel Begunkov8662dae2021-01-19 13:32:44 +00006158 data->mode = io_translate_timeout_mode(flags);
Jens Axboe50c1df22021-08-27 17:11:06 -06006159 hrtimer_init(&data->timer, io_timeout_get_clock(data), data->mode);
Pavel Begunkovb97e7362021-08-15 10:40:23 +01006160
6161 if (is_timeout_link) {
6162 struct io_submit_link *link = &req->ctx->submit_state.link;
6163
6164 if (!link->head)
6165 return -EINVAL;
6166 if (link->last->opcode == IORING_OP_LINK_TIMEOUT)
6167 return -EINVAL;
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01006168 req->timeout.head = link->last;
6169 link->last->flags |= REQ_F_ARM_LTIMEOUT;
Pavel Begunkovb97e7362021-08-15 10:40:23 +01006170 }
Jens Axboead8a48a2019-11-15 08:49:11 -07006171 return 0;
6172}
6173
Pavel Begunkov61e98202021-02-10 00:03:08 +00006174static int io_timeout(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboead8a48a2019-11-15 08:49:11 -07006175{
Jens Axboead8a48a2019-11-15 08:49:11 -07006176 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006177 struct io_timeout_data *data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07006178 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006179 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07006180
Jens Axboe89850fc2021-08-10 15:11:51 -06006181 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07006182
Jens Axboe5262f562019-09-17 12:26:57 -06006183 /*
6184 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07006185 * timeout event to be satisfied. If it isn't set, then this is
6186 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06006187 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03006188 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07006189 entry = ctx->timeout_list.prev;
6190 goto add;
6191 }
Jens Axboe5262f562019-09-17 12:26:57 -06006192
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006193 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
6194 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06006195
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05006196 /* Update the last seq here in case io_flush_timeouts() hasn't.
6197 * This is safe because ->completion_lock is held, and submissions
6198 * and completions are never mixed in the same ->completion_lock section.
6199 */
6200 ctx->cq_last_tm_flush = tail;
6201
Jens Axboe5262f562019-09-17 12:26:57 -06006202 /*
6203 * Insertion sort, ensuring the first entry in the list is always
6204 * the one we need first.
6205 */
Jens Axboe5262f562019-09-17 12:26:57 -06006206 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03006207 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
6208 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06006209
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03006210 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07006211 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006212 /* nxt.seq is behind @tail, otherwise would've been completed */
6213 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06006214 break;
6215 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07006216add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03006217 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07006218 data->timer.function = io_timeout_fn;
6219 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe89850fc2021-08-10 15:11:51 -06006220 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06006221 return 0;
6222}
6223
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006224struct io_cancel_data {
6225 struct io_ring_ctx *ctx;
6226 u64 user_data;
6227};
6228
Jens Axboe62755e32019-10-28 21:49:21 -06006229static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06006230{
Jens Axboe62755e32019-10-28 21:49:21 -06006231 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006232 struct io_cancel_data *cd = data;
Jens Axboede0617e2019-04-06 21:51:27 -06006233
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006234 return req->ctx == cd->ctx && req->user_data == cd->user_data;
Jens Axboe62755e32019-10-28 21:49:21 -06006235}
6236
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006237static int io_async_cancel_one(struct io_uring_task *tctx, u64 user_data,
6238 struct io_ring_ctx *ctx)
Jens Axboe62755e32019-10-28 21:49:21 -06006239{
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006240 struct io_cancel_data data = { .ctx = ctx, .user_data = user_data, };
Jens Axboe62755e32019-10-28 21:49:21 -06006241 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06006242 int ret = 0;
6243
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006244 if (!tctx || !tctx->io_wq)
Jens Axboe5aa75ed2021-02-16 12:56:50 -07006245 return -ENOENT;
6246
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006247 cancel_ret = io_wq_cancel_cb(tctx->io_wq, io_cancel_cb, &data, false);
Jens Axboe62755e32019-10-28 21:49:21 -06006248 switch (cancel_ret) {
6249 case IO_WQ_CANCEL_OK:
6250 ret = 0;
6251 break;
6252 case IO_WQ_CANCEL_RUNNING:
6253 ret = -EALREADY;
6254 break;
6255 case IO_WQ_CANCEL_NOTFOUND:
6256 ret = -ENOENT;
6257 break;
6258 }
6259
Jens Axboee977d6d2019-11-05 12:39:45 -07006260 return ret;
6261}
6262
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006263static int io_try_cancel_userdata(struct io_kiocb *req, u64 sqe_addr)
Jens Axboe47f46762019-11-09 17:43:02 -07006264{
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006265 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07006266 int ret;
6267
Pavel Begunkovdadebc32021-08-23 13:30:44 +01006268 WARN_ON_ONCE(!io_wq_current_is_worker() && req->task != current);
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006269
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006270 ret = io_async_cancel_one(req->task->io_uring, sqe_addr, ctx);
Pavel Begunkovdf9727a2021-04-01 15:43:59 +01006271 if (ret != -ENOENT)
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006272 return ret;
Pavel Begunkov505657b2021-08-17 20:28:09 +01006273
6274 spin_lock(&ctx->completion_lock);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006275 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07006276 ret = io_timeout_cancel(ctx, sqe_addr);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006277 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07006278 if (ret != -ENOENT)
Pavel Begunkov505657b2021-08-17 20:28:09 +01006279 goto out;
6280 ret = io_poll_cancel(ctx, sqe_addr, false);
6281out:
6282 spin_unlock(&ctx->completion_lock);
6283 return ret;
Jens Axboe47f46762019-11-09 17:43:02 -07006284}
6285
Jens Axboe3529d8c2019-12-19 18:24:38 -07006286static int io_async_cancel_prep(struct io_kiocb *req,
6287 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07006288{
Jens Axboefbf23842019-12-17 18:45:56 -07006289 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07006290 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06006291 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6292 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006293 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags ||
6294 sqe->splice_fd_in)
Jens Axboee977d6d2019-11-05 12:39:45 -07006295 return -EINVAL;
6296
Jens Axboefbf23842019-12-17 18:45:56 -07006297 req->cancel.addr = READ_ONCE(sqe->addr);
6298 return 0;
6299}
6300
Pavel Begunkov61e98202021-02-10 00:03:08 +00006301static int io_async_cancel(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboefbf23842019-12-17 18:45:56 -07006302{
6303 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov58f99372021-03-12 16:25:55 +00006304 u64 sqe_addr = req->cancel.addr;
6305 struct io_tctx_node *node;
6306 int ret;
Jens Axboefbf23842019-12-17 18:45:56 -07006307
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006308 ret = io_try_cancel_userdata(req, sqe_addr);
Pavel Begunkov58f99372021-03-12 16:25:55 +00006309 if (ret != -ENOENT)
6310 goto done;
Pavel Begunkov58f99372021-03-12 16:25:55 +00006311
6312 /* slow path, try all io-wq's */
6313 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
6314 ret = -ENOENT;
6315 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
6316 struct io_uring_task *tctx = node->task->io_uring;
6317
Pavel Begunkov58f99372021-03-12 16:25:55 +00006318 ret = io_async_cancel_one(tctx, req->cancel.addr, ctx);
6319 if (ret != -ENOENT)
6320 break;
6321 }
6322 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Pavel Begunkov58f99372021-03-12 16:25:55 +00006323done:
Pavel Begunkov58f99372021-03-12 16:25:55 +00006324 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006325 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006326 io_req_complete_post(req, ret, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06006327 return 0;
6328}
6329
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006330static int io_rsrc_update_prep(struct io_kiocb *req,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006331 const struct io_uring_sqe *sqe)
6332{
Daniele Albano61710e42020-07-18 14:15:16 -06006333 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6334 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006335 if (sqe->ioprio || sqe->rw_flags || sqe->splice_fd_in)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006336 return -EINVAL;
6337
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006338 req->rsrc_update.offset = READ_ONCE(sqe->off);
6339 req->rsrc_update.nr_args = READ_ONCE(sqe->len);
6340 if (!req->rsrc_update.nr_args)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006341 return -EINVAL;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006342 req->rsrc_update.arg = READ_ONCE(sqe->addr);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006343 return 0;
6344}
6345
Pavel Begunkov889fca72021-02-10 00:03:09 +00006346static int io_files_update(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006347{
6348 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01006349 struct io_uring_rsrc_update2 up;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006350 int ret;
6351
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006352 up.offset = req->rsrc_update.offset;
6353 up.data = req->rsrc_update.arg;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01006354 up.nr = 0;
6355 up.tags = 0;
Colin Ian King615cee42021-04-26 10:47:35 +01006356 up.resv = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006357
Jens Axboecdb31c22021-09-24 08:43:54 -06006358 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Pavel Begunkovfdecb662021-04-25 14:32:20 +01006359 ret = __io_register_rsrc_update(ctx, IORING_RSRC_FILE,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01006360 &up, req->rsrc_update.nr_args);
Jens Axboecdb31c22021-09-24 08:43:54 -06006361 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Jens Axboe05f3fb32019-12-09 11:22:50 -07006362
6363 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006364 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00006365 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006366 return 0;
6367}
6368
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006369static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07006370{
Jens Axboed625c6e2019-12-17 19:53:05 -07006371 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07006372 case IORING_OP_NOP:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006373 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07006374 case IORING_OP_READV:
6375 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006376 case IORING_OP_READ:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006377 return io_read_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006378 case IORING_OP_WRITEV:
6379 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006380 case IORING_OP_WRITE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006381 return io_write_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07006382 case IORING_OP_POLL_ADD:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006383 return io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07006384 case IORING_OP_POLL_REMOVE:
Pavel Begunkovc5de0032021-04-14 13:38:37 +01006385 return io_poll_update_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006386 case IORING_OP_FSYNC:
Pavel Begunkov1155c762021-02-18 18:29:38 +00006387 return io_fsync_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006388 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov1155c762021-02-18 18:29:38 +00006389 return io_sfr_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07006390 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07006391 case IORING_OP_SEND:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006392 return io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07006393 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07006394 case IORING_OP_RECV:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006395 return io_recvmsg_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07006396 case IORING_OP_CONNECT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006397 return io_connect_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07006398 case IORING_OP_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006399 return io_timeout_prep(req, sqe, false);
Jens Axboeb29472e2019-12-17 18:50:29 -07006400 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006401 return io_timeout_remove_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07006402 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006403 return io_async_cancel_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07006404 case IORING_OP_LINK_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006405 return io_timeout_prep(req, sqe, true);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006406 case IORING_OP_ACCEPT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006407 return io_accept_prep(req, sqe);
Jens Axboed63d1b52019-12-10 10:38:56 -07006408 case IORING_OP_FALLOCATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006409 return io_fallocate_prep(req, sqe);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006410 case IORING_OP_OPENAT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006411 return io_openat_prep(req, sqe);
Jens Axboeb5dba592019-12-11 14:02:38 -07006412 case IORING_OP_CLOSE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006413 return io_close_prep(req, sqe);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006414 case IORING_OP_FILES_UPDATE:
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006415 return io_rsrc_update_prep(req, sqe);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006416 case IORING_OP_STATX:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006417 return io_statx_prep(req, sqe);
Jens Axboe4840e412019-12-25 22:03:45 -07006418 case IORING_OP_FADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006419 return io_fadvise_prep(req, sqe);
Jens Axboec1ca7572019-12-25 22:18:28 -07006420 case IORING_OP_MADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006421 return io_madvise_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07006422 case IORING_OP_OPENAT2:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006423 return io_openat2_prep(req, sqe);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006424 case IORING_OP_EPOLL_CTL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006425 return io_epoll_ctl_prep(req, sqe);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006426 case IORING_OP_SPLICE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006427 return io_splice_prep(req, sqe);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006428 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006429 return io_provide_buffers_prep(req, sqe);
Jens Axboe067524e2020-03-02 16:32:28 -07006430 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006431 return io_remove_buffers_prep(req, sqe);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006432 case IORING_OP_TEE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006433 return io_tee_prep(req, sqe);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006434 case IORING_OP_SHUTDOWN:
6435 return io_shutdown_prep(req, sqe);
Jens Axboe80a261f2020-09-28 14:23:58 -06006436 case IORING_OP_RENAMEAT:
6437 return io_renameat_prep(req, sqe);
Jens Axboe14a11432020-09-28 14:27:37 -06006438 case IORING_OP_UNLINKAT:
6439 return io_unlinkat_prep(req, sqe);
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006440 case IORING_OP_MKDIRAT:
6441 return io_mkdirat_prep(req, sqe);
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006442 case IORING_OP_SYMLINKAT:
6443 return io_symlinkat_prep(req, sqe);
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006444 case IORING_OP_LINKAT:
6445 return io_linkat_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006446 }
6447
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006448 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
6449 req->opcode);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01006450 return -EINVAL;
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006451}
6452
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006453static int io_req_prep_async(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07006454{
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006455 if (!io_op_defs[req->opcode].needs_async_setup)
6456 return 0;
6457 if (WARN_ON_ONCE(req->async_data))
6458 return -EFAULT;
6459 if (io_alloc_async_data(req))
6460 return -EAGAIN;
6461
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006462 switch (req->opcode) {
6463 case IORING_OP_READV:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006464 return io_rw_prep_async(req, READ);
6465 case IORING_OP_WRITEV:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006466 return io_rw_prep_async(req, WRITE);
6467 case IORING_OP_SENDMSG:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006468 return io_sendmsg_prep_async(req);
6469 case IORING_OP_RECVMSG:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006470 return io_recvmsg_prep_async(req);
6471 case IORING_OP_CONNECT:
6472 return io_connect_prep_async(req);
6473 }
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006474 printk_once(KERN_WARNING "io_uring: prep_async() bad opcode %d\n",
6475 req->opcode);
6476 return -EFAULT;
Jens Axboedef596e2019-01-09 08:59:42 -07006477}
6478
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006479static u32 io_get_sequence(struct io_kiocb *req)
6480{
Pavel Begunkova3dbdf52021-06-17 18:14:05 +01006481 u32 seq = req->ctx->cached_sq_head;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006482
Pavel Begunkova3dbdf52021-06-17 18:14:05 +01006483 /* need original cached_sq_head, but it was increased for each req */
6484 io_for_each_link(req, req)
6485 seq--;
6486 return seq;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006487}
6488
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006489static bool io_drain_req(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07006490{
Pavel Begunkov3c199662021-06-15 16:47:57 +01006491 struct io_kiocb *pos;
Jens Axboedef596e2019-01-09 08:59:42 -07006492 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006493 struct io_defer_entry *de;
Jens Axboedef596e2019-01-09 08:59:42 -07006494 int ret;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006495 u32 seq;
Jens Axboedef596e2019-01-09 08:59:42 -07006496
Pavel Begunkovb8ce1b92021-08-31 14:13:11 +01006497 if (req->flags & REQ_F_FAIL) {
6498 io_req_complete_fail_submit(req);
6499 return true;
6500 }
6501
Pavel Begunkov3c199662021-06-15 16:47:57 +01006502 /*
6503 * If we need to drain a request in the middle of a link, drain the
6504 * head request and the next request/link after the current link.
6505 * Considering sequential execution of links, IOSQE_IO_DRAIN will be
6506 * maintained for every request of our link.
6507 */
6508 if (ctx->drain_next) {
6509 req->flags |= REQ_F_IO_DRAIN;
6510 ctx->drain_next = false;
6511 }
6512 /* not interested in head, start from the first linked */
6513 io_for_each_link(pos, req->link) {
6514 if (pos->flags & REQ_F_IO_DRAIN) {
6515 ctx->drain_next = true;
6516 req->flags |= REQ_F_IO_DRAIN;
6517 break;
6518 }
6519 }
6520
Jens Axboedef596e2019-01-09 08:59:42 -07006521 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006522 if (likely(list_empty_careful(&ctx->defer_list) &&
Pavel Begunkov10c66902021-06-15 16:47:56 +01006523 !(req->flags & REQ_F_IO_DRAIN))) {
6524 ctx->drain_active = false;
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006525 return false;
Pavel Begunkov10c66902021-06-15 16:47:56 +01006526 }
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006527
6528 seq = io_get_sequence(req);
6529 /* Still a chance to pass the sequence check */
6530 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006531 return false;
Jens Axboedef596e2019-01-09 08:59:42 -07006532
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006533 ret = io_req_prep_async(req);
Pavel Begunkovbe7053b2021-02-18 18:29:45 +00006534 if (ret)
Pavel Begunkov1b487732021-07-11 22:41:13 +01006535 goto fail;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03006536 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006537 de = kmalloc(sizeof(*de), GFP_KERNEL);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006538 if (!de) {
Pavel Begunkov1b487732021-07-11 22:41:13 +01006539 ret = -ENOMEM;
6540fail:
6541 io_req_complete_failed(req, ret);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006542 return true;
6543 }
Jens Axboe31b51512019-01-18 22:56:34 -07006544
Jens Axboe79ebeae2021-08-10 15:18:27 -06006545 spin_lock(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006546 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06006547 spin_unlock(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006548 kfree(de);
Pavel Begunkovf237c302021-08-18 12:42:46 +01006549 io_queue_async_work(req, NULL);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006550 return true;
Jens Axboe31b51512019-01-18 22:56:34 -07006551 }
6552
6553 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006554 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006555 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006556 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006557 spin_unlock(&ctx->completion_lock);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006558 return true;
Jens Axboe31b51512019-01-18 22:56:34 -07006559}
6560
Pavel Begunkov68fb8972021-03-19 17:22:41 +00006561static void io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006562{
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006563 if (req->flags & REQ_F_BUFFER_SELECTED) {
6564 switch (req->opcode) {
6565 case IORING_OP_READV:
6566 case IORING_OP_READ_FIXED:
6567 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07006568 kfree((void *)(unsigned long)req->rw.addr);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006569 break;
6570 case IORING_OP_RECVMSG:
6571 case IORING_OP_RECV:
Jens Axboe52de1fe2020-02-27 10:15:42 -07006572 kfree(req->sr_msg.kbuf);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006573 break;
6574 }
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006575 }
6576
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006577 if (req->flags & REQ_F_NEED_CLEANUP) {
6578 switch (req->opcode) {
6579 case IORING_OP_READV:
6580 case IORING_OP_READ_FIXED:
6581 case IORING_OP_READ:
6582 case IORING_OP_WRITEV:
6583 case IORING_OP_WRITE_FIXED:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006584 case IORING_OP_WRITE: {
6585 struct io_async_rw *io = req->async_data;
Pavel Begunkov1dacb4d2021-06-17 18:14:03 +01006586
6587 kfree(io->free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006588 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006589 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006590 case IORING_OP_RECVMSG:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006591 case IORING_OP_SENDMSG: {
6592 struct io_async_msghdr *io = req->async_data;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00006593
6594 kfree(io->free_iov);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006595 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006596 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006597 case IORING_OP_SPLICE:
6598 case IORING_OP_TEE:
Pavel Begunkove1d767f2021-03-19 17:22:43 +00006599 if (!(req->splice.flags & SPLICE_F_FD_IN_FIXED))
6600 io_put_file(req->splice.file_in);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006601 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06006602 case IORING_OP_OPENAT:
6603 case IORING_OP_OPENAT2:
6604 if (req->open.filename)
6605 putname(req->open.filename);
6606 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006607 case IORING_OP_RENAMEAT:
6608 putname(req->rename.oldpath);
6609 putname(req->rename.newpath);
6610 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006611 case IORING_OP_UNLINKAT:
6612 putname(req->unlink.filename);
6613 break;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006614 case IORING_OP_MKDIRAT:
6615 putname(req->mkdir.filename);
6616 break;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006617 case IORING_OP_SYMLINKAT:
6618 putname(req->symlink.oldpath);
6619 putname(req->symlink.newpath);
6620 break;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006621 case IORING_OP_LINKAT:
6622 putname(req->hardlink.oldpath);
6623 putname(req->hardlink.newpath);
6624 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006625 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006626 }
Jens Axboe75652a302021-04-15 09:52:40 -06006627 if ((req->flags & REQ_F_POLLED) && req->apoll) {
6628 kfree(req->apoll->double_poll);
6629 kfree(req->apoll);
6630 req->apoll = NULL;
6631 }
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01006632 if (req->flags & REQ_F_INFLIGHT) {
6633 struct io_uring_task *tctx = req->task->io_uring;
6634
6635 atomic_dec(&tctx->inflight_tracked);
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01006636 }
Pavel Begunkovc8543572021-06-17 18:14:04 +01006637 if (req->flags & REQ_F_CREDS)
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01006638 put_cred(req->creds);
Pavel Begunkovc8543572021-06-17 18:14:04 +01006639
6640 req->flags &= ~IO_REQ_CLEAN_FLAGS;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006641}
6642
Pavel Begunkov889fca72021-02-10 00:03:09 +00006643static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeedafcce2019-01-09 09:16:05 -07006644{
Jens Axboeedafcce2019-01-09 09:16:05 -07006645 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5730b272021-02-27 15:57:30 -07006646 const struct cred *creds = NULL;
Jens Axboed625c6e2019-12-17 19:53:05 -07006647 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07006648
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01006649 if ((req->flags & REQ_F_CREDS) && req->creds != current_cred())
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01006650 creds = override_creds(req->creds);
Jens Axboe5730b272021-02-27 15:57:30 -07006651
Jens Axboed625c6e2019-12-17 19:53:05 -07006652 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07006653 case IORING_OP_NOP:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006654 ret = io_nop(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006655 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006656 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07006657 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006658 case IORING_OP_READ:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006659 ret = io_read(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006660 break;
6661 case IORING_OP_WRITEV:
Jens Axboe2b188cc2019-01-07 10:46:33 -07006662 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006663 case IORING_OP_WRITE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006664 ret = io_write(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006665 break;
6666 case IORING_OP_FSYNC:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006667 ret = io_fsync(req, issue_flags);
Jackie Liuba5290c2019-10-09 09:19:59 +08006668 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006669 case IORING_OP_POLL_ADD:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006670 ret = io_poll_add(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006671 break;
6672 case IORING_OP_POLL_REMOVE:
Pavel Begunkovc5de0032021-04-14 13:38:37 +01006673 ret = io_poll_update(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006674 break;
Jens Axboeb76da702019-11-20 13:05:32 -07006675 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006676 ret = io_sync_file_range(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006677 break;
6678 case IORING_OP_SENDMSG:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006679 ret = io_sendmsg(req, issue_flags);
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006680 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006681 case IORING_OP_SEND:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006682 ret = io_send(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006683 break;
6684 case IORING_OP_RECVMSG:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006685 ret = io_recvmsg(req, issue_flags);
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006686 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006687 case IORING_OP_RECV:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006688 ret = io_recv(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006689 break;
Jens Axboe561fb042019-10-24 07:25:42 -06006690 case IORING_OP_TIMEOUT:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006691 ret = io_timeout(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006692 break;
6693 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006694 ret = io_timeout_remove(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006695 break;
6696 case IORING_OP_ACCEPT:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006697 ret = io_accept(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006698 break;
6699 case IORING_OP_CONNECT:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006700 ret = io_connect(req, issue_flags);
Jens Axboe31b51512019-01-18 22:56:34 -07006701 break;
6702 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006703 ret = io_async_cancel(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006704 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07006705 case IORING_OP_FALLOCATE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006706 ret = io_fallocate(req, issue_flags);
Jens Axboed63d1b52019-12-10 10:38:56 -07006707 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07006708 case IORING_OP_OPENAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006709 ret = io_openat(req, issue_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006710 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07006711 case IORING_OP_CLOSE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006712 ret = io_close(req, issue_flags);
Jens Axboeb5dba592019-12-11 14:02:38 -07006713 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006714 case IORING_OP_FILES_UPDATE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006715 ret = io_files_update(req, issue_flags);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006716 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006717 case IORING_OP_STATX:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006718 ret = io_statx(req, issue_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006719 break;
Jens Axboe4840e412019-12-25 22:03:45 -07006720 case IORING_OP_FADVISE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006721 ret = io_fadvise(req, issue_flags);
Jens Axboe4840e412019-12-25 22:03:45 -07006722 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07006723 case IORING_OP_MADVISE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006724 ret = io_madvise(req, issue_flags);
Jens Axboec1ca7572019-12-25 22:18:28 -07006725 break;
Jens Axboecebdb982020-01-08 17:59:24 -07006726 case IORING_OP_OPENAT2:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006727 ret = io_openat2(req, issue_flags);
Jens Axboecebdb982020-01-08 17:59:24 -07006728 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07006729 case IORING_OP_EPOLL_CTL:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006730 ret = io_epoll_ctl(req, issue_flags);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006731 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006732 case IORING_OP_SPLICE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006733 ret = io_splice(req, issue_flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006734 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07006735 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006736 ret = io_provide_buffers(req, issue_flags);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006737 break;
Jens Axboe067524e2020-03-02 16:32:28 -07006738 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006739 ret = io_remove_buffers(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006740 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006741 case IORING_OP_TEE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006742 ret = io_tee(req, issue_flags);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006743 break;
Jens Axboe36f4fa62020-09-05 11:14:22 -06006744 case IORING_OP_SHUTDOWN:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006745 ret = io_shutdown(req, issue_flags);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006746 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006747 case IORING_OP_RENAMEAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006748 ret = io_renameat(req, issue_flags);
Jens Axboe80a261f2020-09-28 14:23:58 -06006749 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006750 case IORING_OP_UNLINKAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006751 ret = io_unlinkat(req, issue_flags);
Jens Axboe14a11432020-09-28 14:27:37 -06006752 break;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006753 case IORING_OP_MKDIRAT:
6754 ret = io_mkdirat(req, issue_flags);
6755 break;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006756 case IORING_OP_SYMLINKAT:
6757 ret = io_symlinkat(req, issue_flags);
6758 break;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006759 case IORING_OP_LINKAT:
6760 ret = io_linkat(req, issue_flags);
6761 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006762 default:
6763 ret = -EINVAL;
6764 break;
6765 }
Jens Axboe31b51512019-01-18 22:56:34 -07006766
Jens Axboe5730b272021-02-27 15:57:30 -07006767 if (creds)
6768 revert_creds(creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006769 if (ret)
6770 return ret;
Jens Axboeb5325762020-05-19 21:20:27 -06006771 /* If the op doesn't have a file, we're not polling for it */
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01006772 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file)
6773 io_iopoll_req_issued(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006774
6775 return 0;
6776}
6777
Pavel Begunkovebc11b62021-08-09 13:04:05 +01006778static struct io_wq_work *io_wq_free_work(struct io_wq_work *work)
6779{
6780 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6781
6782 req = io_put_req_find_next(req);
6783 return req ? &req->work : NULL;
6784}
6785
Pavel Begunkov5280f7e2021-02-04 13:52:08 +00006786static void io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006787{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006788 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006789 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06006790 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006791
Pavel Begunkov48dcd382021-08-15 10:40:18 +01006792 /* one will be dropped by ->io_free_work() after returning to io-wq */
6793 if (!(req->flags & REQ_F_REFCOUNT))
6794 __io_req_set_refcount(req, 2);
6795 else
6796 req_ref_get(req);
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01006797
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006798 timeout = io_prep_linked_timeout(req);
6799 if (timeout)
6800 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006801
Pavel Begunkovdadebc32021-08-23 13:30:44 +01006802 /* either cancelled or io-wq is dying, so don't touch tctx->iowq */
Jens Axboe4014d942021-01-19 15:53:54 -07006803 if (work->flags & IO_WQ_WORK_CANCEL)
Jens Axboe561fb042019-10-24 07:25:42 -06006804 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07006805
Jens Axboe561fb042019-10-24 07:25:42 -06006806 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006807 do {
Pavel Begunkov889fca72021-02-10 00:03:09 +00006808 ret = io_issue_sqe(req, 0);
Jens Axboe561fb042019-10-24 07:25:42 -06006809 /*
6810 * We can get EAGAIN for polled IO even though we're
6811 * forcing a sync submission from here, since we can't
6812 * wait for request slots on the block side.
6813 */
6814 if (ret != -EAGAIN)
6815 break;
6816 cond_resched();
6817 } while (1);
6818 }
Jens Axboe31b51512019-01-18 22:56:34 -07006819
Pavel Begunkova3df76982021-02-18 22:32:52 +00006820 /* avoid locking problems by failing it from a clean context */
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01006821 if (ret)
Pavel Begunkova3df76982021-02-18 22:32:52 +00006822 io_req_task_queue_fail(req, ret);
Jens Axboe31b51512019-01-18 22:56:34 -07006823}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006824
Pavel Begunkovaeca2412021-04-11 01:46:37 +01006825static inline struct io_fixed_file *io_fixed_file_slot(struct io_file_table *table,
Pavel Begunkov042b0d82021-08-09 13:04:01 +01006826 unsigned i)
Jens Axboe09bb8392019-03-13 12:39:28 -06006827{
Pavel Begunkov042b0d82021-08-09 13:04:01 +01006828 return &table->files[i];
Pavel Begunkovdafecf12021-02-28 22:35:11 +00006829}
6830
Jens Axboe09bb8392019-03-13 12:39:28 -06006831static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6832 int index)
6833{
Pavel Begunkovaeca2412021-04-11 01:46:37 +01006834 struct io_fixed_file *slot = io_fixed_file_slot(&ctx->file_table, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06006835
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006836 return (struct file *) (slot->file_ptr & FFS_MASK);
Jens Axboe65e19f52019-10-26 07:20:21 -06006837}
6838
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006839static void io_fixed_file_set(struct io_fixed_file *file_slot, struct file *file)
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006840{
6841 unsigned long file_ptr = (unsigned long) file;
6842
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006843 if (__io_file_supports_nowait(file, READ))
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006844 file_ptr |= FFS_ASYNC_READ;
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006845 if (__io_file_supports_nowait(file, WRITE))
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006846 file_ptr |= FFS_ASYNC_WRITE;
6847 if (S_ISREG(file_inode(file)->i_mode))
6848 file_ptr |= FFS_ISREG;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006849 file_slot->file_ptr = file_ptr;
Jens Axboe09bb8392019-03-13 12:39:28 -06006850}
6851
Pavel Begunkovac177052021-08-09 13:04:02 +01006852static inline struct file *io_file_get_fixed(struct io_ring_ctx *ctx,
6853 struct io_kiocb *req, int fd)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006854{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006855 struct file *file;
Pavel Begunkovac177052021-08-09 13:04:02 +01006856 unsigned long file_ptr;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006857
Pavel Begunkovac177052021-08-09 13:04:02 +01006858 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
6859 return NULL;
6860 fd = array_index_nospec(fd, ctx->nr_user_files);
6861 file_ptr = io_fixed_file_slot(&ctx->file_table, fd)->file_ptr;
6862 file = (struct file *) (file_ptr & FFS_MASK);
6863 file_ptr &= ~FFS_MASK;
6864 /* mask in overlapping REQ_F and FFS bits */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006865 req->flags |= (file_ptr << REQ_F_NOWAIT_READ_BIT);
Pavel Begunkovac177052021-08-09 13:04:02 +01006866 io_req_set_rsrc_node(req);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006867 return file;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006868}
6869
Pavel Begunkovac177052021-08-09 13:04:02 +01006870static struct file *io_file_get_normal(struct io_ring_ctx *ctx,
Pavel Begunkovac177052021-08-09 13:04:02 +01006871 struct io_kiocb *req, int fd)
6872{
Pavel Begunkov62906e82021-08-10 14:52:47 +01006873 struct file *file = fget(fd);
Pavel Begunkovac177052021-08-09 13:04:02 +01006874
6875 trace_io_uring_file_get(ctx, fd);
6876
6877 /* we don't allow fixed io_uring files */
6878 if (file && unlikely(file->f_op == &io_uring_fops))
6879 io_req_track_inflight(req);
6880 return file;
6881}
6882
6883static inline struct file *io_file_get(struct io_ring_ctx *ctx,
Pavel Begunkovac177052021-08-09 13:04:02 +01006884 struct io_kiocb *req, int fd, bool fixed)
6885{
6886 if (fixed)
6887 return io_file_get_fixed(ctx, req, fd);
6888 else
Pavel Begunkov62906e82021-08-10 14:52:47 +01006889 return io_file_get_normal(ctx, req, fd);
Pavel Begunkovac177052021-08-09 13:04:02 +01006890}
6891
Pavel Begunkovf237c302021-08-18 12:42:46 +01006892static void io_req_task_link_timeout(struct io_kiocb *req, bool *locked)
Jens Axboe89b263f2021-08-10 15:14:18 -06006893{
6894 struct io_kiocb *prev = req->timeout.prev;
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006895 int ret;
Jens Axboe89b263f2021-08-10 15:14:18 -06006896
6897 if (prev) {
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006898 ret = io_try_cancel_userdata(req, prev->user_data);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006899 io_req_complete_post(req, ret ?: -ETIME, 0);
Jens Axboe89b263f2021-08-10 15:14:18 -06006900 io_put_req(prev);
Jens Axboe89b263f2021-08-10 15:14:18 -06006901 } else {
6902 io_req_complete_post(req, -ETIME, 0);
6903 }
6904}
6905
Jens Axboe2665abf2019-11-05 12:40:47 -07006906static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6907{
Jens Axboead8a48a2019-11-15 08:49:11 -07006908 struct io_timeout_data *data = container_of(timer,
6909 struct io_timeout_data, timer);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006910 struct io_kiocb *prev, *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006911 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07006912 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006913
Jens Axboe89b263f2021-08-10 15:14:18 -06006914 spin_lock_irqsave(&ctx->timeout_lock, flags);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006915 prev = req->timeout.head;
6916 req->timeout.head = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006917
6918 /*
6919 * We don't expect the list to be empty, that will only happen if we
6920 * race with the completion of the linked work.
6921 */
Pavel Begunkov447c19f2021-05-14 12:02:50 +01006922 if (prev) {
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006923 io_remove_next_linked(prev);
Pavel Begunkov447c19f2021-05-14 12:02:50 +01006924 if (!req_ref_inc_not_zero(prev))
6925 prev = NULL;
6926 }
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006927 list_del(&req->timeout.list);
Jens Axboe89b263f2021-08-10 15:14:18 -06006928 req->timeout.prev = prev;
6929 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
Jens Axboe2665abf2019-11-05 12:40:47 -07006930
Jens Axboe89b263f2021-08-10 15:14:18 -06006931 req->io_task_work.func = io_req_task_link_timeout;
6932 io_req_task_work_add(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006933 return HRTIMER_NORESTART;
6934}
6935
Pavel Begunkovde968c12021-03-19 17:22:33 +00006936static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006937{
Pavel Begunkovde968c12021-03-19 17:22:33 +00006938 struct io_ring_ctx *ctx = req->ctx;
6939
Jens Axboe89b263f2021-08-10 15:14:18 -06006940 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe76a46e02019-11-10 23:34:16 -07006941 /*
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006942 * If the back reference is NULL, then our linked request finished
6943 * before we got a chance to setup the timer
Jens Axboe76a46e02019-11-10 23:34:16 -07006944 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006945 if (req->timeout.head) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006946 struct io_timeout_data *data = req->async_data;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006947
Jens Axboead8a48a2019-11-15 08:49:11 -07006948 data->timer.function = io_link_timeout_fn;
6949 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6950 data->mode);
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006951 list_add_tail(&req->timeout.list, &ctx->ltimeout_list);
Jens Axboe2665abf2019-11-05 12:40:47 -07006952 }
Jens Axboe89b263f2021-08-10 15:14:18 -06006953 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006954 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006955 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006956}
6957
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00006958static void __io_queue_sqe(struct io_kiocb *req)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01006959 __must_hold(&req->ctx->uring_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006960{
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006961 struct io_kiocb *linked_timeout;
Jens Axboee0c5c572019-03-12 10:18:47 -06006962 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006963
Olivier Langlois59b735a2021-06-22 05:17:39 -07006964issue_sqe:
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00006965 ret = io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
Jens Axboe491381ce2019-10-17 09:20:46 -06006966
6967 /*
6968 * We async punt it if the file wasn't marked NOWAIT, or if the file
6969 * doesn't support non-blocking read/write attempts
6970 */
Pavel Begunkov18400382021-03-19 17:22:34 +00006971 if (likely(!ret)) {
Pavel Begunkove342c802021-01-19 13:32:47 +00006972 if (req->flags & REQ_F_COMPLETE_INLINE) {
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00006973 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01006974 struct io_submit_state *state = &ctx->submit_state;
Jens Axboee65ef562019-03-12 10:16:44 -06006975
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01006976 state->compl_reqs[state->compl_nr++] = req;
6977 if (state->compl_nr == ARRAY_SIZE(state->compl_reqs))
Pavel Begunkov2a2758f2021-06-17 18:14:00 +01006978 io_submit_flush_completions(ctx);
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006979 return;
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006980 }
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006981
6982 linked_timeout = io_prep_linked_timeout(req);
6983 if (linked_timeout)
6984 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov18400382021-03-19 17:22:34 +00006985 } else if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006986 linked_timeout = io_prep_linked_timeout(req);
6987
Olivier Langlois59b735a2021-06-22 05:17:39 -07006988 switch (io_arm_poll_handler(req)) {
6989 case IO_APOLL_READY:
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006990 if (linked_timeout)
6991 io_unprep_linked_timeout(req);
Olivier Langlois59b735a2021-06-22 05:17:39 -07006992 goto issue_sqe;
6993 case IO_APOLL_ABORTED:
Pavel Begunkov18400382021-03-19 17:22:34 +00006994 /*
6995 * Queued up for async execution, worker will release
6996 * submit reference when the iocb is actually submitted.
6997 */
Pavel Begunkovf237c302021-08-18 12:42:46 +01006998 io_queue_async_work(req, NULL);
Olivier Langlois59b735a2021-06-22 05:17:39 -07006999 break;
Pavel Begunkov18400382021-03-19 17:22:34 +00007000 }
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01007001
7002 if (linked_timeout)
7003 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov0d63c142020-10-22 16:47:18 +01007004 } else {
Pavel Begunkovf41db2732021-02-28 22:35:12 +00007005 io_req_complete_failed(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06007006 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007007}
7008
Pavel Begunkov441b8a72021-06-14 23:37:31 +01007009static inline void io_queue_sqe(struct io_kiocb *req)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007010 __must_hold(&req->ctx->uring_lock)
Jackie Liu4fe2c962019-09-09 20:50:40 +08007011{
Pavel Begunkov10c66902021-06-15 16:47:56 +01007012 if (unlikely(req->ctx->drain_active) && io_drain_req(req))
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01007013 return;
Jackie Liu4fe2c962019-09-09 20:50:40 +08007014
Hao Xua8295b92021-08-27 17:46:09 +08007015 if (likely(!(req->flags & (REQ_F_FORCE_ASYNC | REQ_F_FAIL)))) {
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00007016 __io_queue_sqe(req);
Hao Xua8295b92021-08-27 17:46:09 +08007017 } else if (req->flags & REQ_F_FAIL) {
Pavel Begunkovc6d3d9c2021-08-31 14:13:10 +01007018 io_req_complete_fail_submit(req);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01007019 } else {
7020 int ret = io_req_prep_async(req);
7021
7022 if (unlikely(ret))
7023 io_req_complete_failed(req, ret);
7024 else
Pavel Begunkovf237c302021-08-18 12:42:46 +01007025 io_queue_async_work(req, NULL);
Jens Axboece35a472019-12-17 08:04:44 -07007026 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08007027}
7028
Stefano Garzarella21b55db2020-08-27 16:58:30 +02007029/*
7030 * Check SQE restrictions (opcode and flags).
7031 *
7032 * Returns 'true' if SQE is allowed, 'false' otherwise.
7033 */
7034static inline bool io_check_restriction(struct io_ring_ctx *ctx,
7035 struct io_kiocb *req,
7036 unsigned int sqe_flags)
7037{
Pavel Begunkov4cfb25b2021-06-26 21:40:47 +01007038 if (likely(!ctx->restricted))
Stefano Garzarella21b55db2020-08-27 16:58:30 +02007039 return true;
7040
7041 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
7042 return false;
7043
7044 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
7045 ctx->restrictions.sqe_flags_required)
7046 return false;
7047
7048 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
7049 ctx->restrictions.sqe_flags_required))
7050 return false;
7051
7052 return true;
7053}
7054
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007055static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
Pavel Begunkov258b29a2021-02-10 00:03:10 +00007056 const struct io_uring_sqe *sqe)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007057 __must_hold(&ctx->uring_lock)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007058{
Pavel Begunkov258b29a2021-02-10 00:03:10 +00007059 struct io_submit_state *state;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007060 unsigned int sqe_flags;
Jens Axboe003e8dc2021-03-06 09:22:27 -07007061 int personality, ret = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007062
Pavel Begunkov864ea922021-08-09 13:04:08 +01007063 /* req is partially pre-initialised, see io_preinit_req() */
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007064 req->opcode = READ_ONCE(sqe->opcode);
Pavel Begunkov5be9ad12021-02-12 18:41:17 +00007065 /* same numerical values with corresponding REQ_F_*, safe to copy */
7066 req->flags = sqe_flags = READ_ONCE(sqe->flags);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007067 req->user_data = READ_ONCE(sqe->user_data);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007068 req->file = NULL;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00007069 req->fixed_rsrc_refs = NULL;
Pavel Begunkov4dd28242020-06-15 10:33:13 +03007070 req->task = current;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007071
Pavel Begunkov5be9ad12021-02-12 18:41:17 +00007072 /* enforce forwards compatibility on users */
Pavel Begunkovdddca222021-04-27 16:13:52 +01007073 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
Pavel Begunkov5be9ad12021-02-12 18:41:17 +00007074 return -EINVAL;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007075 if (unlikely(req->opcode >= IORING_OP_LAST))
7076 return -EINVAL;
Pavel Begunkov4cfb25b2021-06-26 21:40:47 +01007077 if (!io_check_restriction(ctx, req, sqe_flags))
Stefano Garzarella21b55db2020-08-27 16:58:30 +02007078 return -EACCES;
7079
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007080 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
7081 !io_op_defs[req->opcode].buffer_select)
7082 return -EOPNOTSUPP;
Pavel Begunkov3c199662021-06-15 16:47:57 +01007083 if (unlikely(sqe_flags & IOSQE_IO_DRAIN))
7084 ctx->drain_active = true;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007085
Jens Axboe003e8dc2021-03-06 09:22:27 -07007086 personality = READ_ONCE(sqe->personality);
7087 if (personality) {
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01007088 req->creds = xa_load(&ctx->personalities, personality);
7089 if (!req->creds)
Jens Axboe003e8dc2021-03-06 09:22:27 -07007090 return -EINVAL;
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01007091 get_cred(req->creds);
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01007092 req->flags |= REQ_F_CREDS;
Jens Axboe003e8dc2021-03-06 09:22:27 -07007093 }
Pavel Begunkov258b29a2021-02-10 00:03:10 +00007094 state = &ctx->submit_state;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007095
Jens Axboe27926b62020-10-28 09:33:23 -06007096 /*
7097 * Plug now if we have more than 1 IO left after this, and the target
7098 * is potentially a read/write to block based storage.
7099 */
7100 if (!state->plug_started && state->ios_left > 1 &&
7101 io_op_defs[req->opcode].plug) {
7102 blk_start_plug(&state->plug);
7103 state->plug_started = true;
7104 }
Jens Axboe63ff8222020-05-07 14:56:15 -06007105
Pavel Begunkovbd5bbda2020-11-20 15:50:51 +00007106 if (io_op_defs[req->opcode].needs_file) {
Pavel Begunkov62906e82021-08-10 14:52:47 +01007107 req->file = io_file_get(ctx, req, READ_ONCE(sqe->fd),
Pavel Begunkovac177052021-08-09 13:04:02 +01007108 (sqe_flags & IOSQE_FIXED_FILE));
Pavel Begunkovba13e232021-02-01 18:59:52 +00007109 if (unlikely(!req->file))
Pavel Begunkovbd5bbda2020-11-20 15:50:51 +00007110 ret = -EBADF;
7111 }
7112
Pavel Begunkov71b547c2020-10-10 18:34:09 +01007113 state->ios_left--;
7114 return ret;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007115}
7116
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007117static int io_submit_sqe(struct io_ring_ctx *ctx, struct io_kiocb *req,
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007118 const struct io_uring_sqe *sqe)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007119 __must_hold(&ctx->uring_lock)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007120{
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007121 struct io_submit_link *link = &ctx->submit_state.link;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007122 int ret;
7123
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007124 ret = io_init_req(ctx, req, sqe);
7125 if (unlikely(ret)) {
7126fail_req:
Hao Xua8295b92021-08-27 17:46:09 +08007127 /* fail even hard links since we don't submit */
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007128 if (link->head) {
Hao Xua8295b92021-08-27 17:46:09 +08007129 /*
7130 * we can judge a link req is failed or cancelled by if
7131 * REQ_F_FAIL is set, but the head is an exception since
7132 * it may be set REQ_F_FAIL because of other req's failure
7133 * so let's leverage req->result to distinguish if a head
7134 * is set REQ_F_FAIL because of its failure or other req's
7135 * failure so that we can set the correct ret code for it.
7136 * init result here to avoid affecting the normal path.
7137 */
7138 if (!(link->head->flags & REQ_F_FAIL))
7139 req_fail_link_node(link->head, -ECANCELED);
7140 } else if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
7141 /*
7142 * the current req is a normal req, we should return
7143 * error and thus break the submittion loop.
7144 */
7145 io_req_complete_failed(req, ret);
7146 return ret;
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007147 }
Hao Xua8295b92021-08-27 17:46:09 +08007148 req_fail_link_node(req, ret);
7149 } else {
7150 ret = io_req_prep(req, sqe);
7151 if (unlikely(ret))
7152 goto fail_req;
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007153 }
Pavel Begunkov441b8a72021-06-14 23:37:31 +01007154
Pavel Begunkovbe7053b2021-02-18 18:29:45 +00007155 /* don't need @sqe from now on */
Olivier Langlois236daeae2021-05-31 02:36:37 -04007156 trace_io_uring_submit_sqe(ctx, req, req->opcode, req->user_data,
7157 req->flags, true,
7158 ctx->flags & IORING_SETUP_SQPOLL);
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007159
Jens Axboe6c271ce2019-01-10 11:22:30 -07007160 /*
7161 * If we already have a head request, queue this one for async
7162 * submittal once the head completes. If we don't have a head but
7163 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
7164 * submitted sync once the chain is complete. If none of those
7165 * conditions are true (normal request), then just queue it.
7166 */
7167 if (link->head) {
7168 struct io_kiocb *head = link->head;
7169
Hao Xua8295b92021-08-27 17:46:09 +08007170 if (!(req->flags & REQ_F_FAIL)) {
7171 ret = io_req_prep_async(req);
7172 if (unlikely(ret)) {
7173 req_fail_link_node(req, ret);
7174 if (!(head->flags & REQ_F_FAIL))
7175 req_fail_link_node(head, -ECANCELED);
7176 }
7177 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007178 trace_io_uring_link(ctx, req, head);
7179 link->last->link = req;
7180 link->last = req;
7181
7182 /* last request of a link, enqueue the link */
7183 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
7184 link->head = NULL;
Pavel Begunkov5e159202021-06-14 23:37:26 +01007185 io_queue_sqe(head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007186 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08007187 } else {
Jens Axboe2b188cc2019-01-07 10:46:33 -07007188 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Jackie Liu4fe2c962019-09-09 20:50:40 +08007189 link->head = req;
7190 link->last = req;
7191 } else {
Pavel Begunkovbe7053b2021-02-18 18:29:45 +00007192 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08007193 }
7194 }
7195
7196 return 0;
7197}
7198
7199/*
7200 * Batched submission is done, ensure local IO is flushed out.
7201 */
7202static void io_submit_state_end(struct io_submit_state *state,
7203 struct io_ring_ctx *ctx)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03007204{
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007205 if (state->link.head)
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007206 io_queue_sqe(state->link.head);
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01007207 if (state->compl_nr)
Pavel Begunkov2a2758f2021-06-17 18:14:00 +01007208 io_submit_flush_completions(ctx);
Jackie Liua197f662019-11-08 08:09:12 -07007209 if (state->plug_started)
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007210 blk_finish_plug(&state->plug);
Jens Axboe9e645e112019-05-10 16:07:28 -06007211}
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007212
Jens Axboe9e645e112019-05-10 16:07:28 -06007213/*
7214 * Start submission side cache.
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007215 */
Jens Axboe9e645e112019-05-10 16:07:28 -06007216static void io_submit_state_start(struct io_submit_state *state,
Pavel Begunkov196be952019-11-07 01:41:06 +03007217 unsigned int max_ios)
Jens Axboe9e645e112019-05-10 16:07:28 -06007218{
7219 state->plug_started = false;
Jens Axboebcda7ba2020-02-23 16:42:51 -07007220 state->ios_left = max_ios;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007221 /* set only head, no need to init link_last in advance */
7222 state->link.head = NULL;
Jens Axboe75c6a032020-01-28 10:15:23 -07007223}
7224
Jens Axboe193155c2020-02-22 23:22:19 -07007225static void io_commit_sqring(struct io_ring_ctx *ctx)
7226{
Jens Axboe75c6a032020-01-28 10:15:23 -07007227 struct io_rings *rings = ctx->rings;
7228
7229 /*
Jens Axboe193155c2020-02-22 23:22:19 -07007230 * Ensure any loads from the SQEs are done at this point,
Jens Axboe75c6a032020-01-28 10:15:23 -07007231 * since once we write the new head, the application could
7232 * write new data to them.
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03007233 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03007234 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboebcda7ba2020-02-23 16:42:51 -07007235}
7236
Jens Axboe9e645e112019-05-10 16:07:28 -06007237/*
Fam Zhengdd9ae8a2021-06-04 17:42:56 +01007238 * Fetch an sqe, if one is available. Note this returns a pointer to memory
Jens Axboe9e645e112019-05-10 16:07:28 -06007239 * that is mapped by userspace. This means that care needs to be taken to
7240 * ensure that reads are stable, as we cannot rely on userspace always
Jens Axboe78e19bb2019-11-06 15:21:34 -07007241 * being a good citizen. If members of the sqe are validated and then later
7242 * used, it's important that those reads are done through READ_ONCE() to
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03007243 * prevent a re-load down the line.
Jens Axboe9e645e112019-05-10 16:07:28 -06007244 */
7245static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe9e645e112019-05-10 16:07:28 -06007246{
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01007247 unsigned head, mask = ctx->sq_entries - 1;
Pavel Begunkov17d3aeb2021-06-14 23:37:23 +01007248 unsigned sq_idx = ctx->cached_sq_head++ & mask;
Jens Axboe9e645e112019-05-10 16:07:28 -06007249
7250 /*
7251 * The cached sq head (or cq tail) serves two purposes:
7252 *
7253 * 1) allows us to batch the cost of updating the user visible
Pavel Begunkov9d763772019-12-17 02:22:07 +03007254 * head updates.
Jens Axboe9e645e112019-05-10 16:07:28 -06007255 * 2) allows the kernel side to track the head on its own, even
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03007256 * though the application is the one updating it.
7257 */
Pavel Begunkov17d3aeb2021-06-14 23:37:23 +01007258 head = READ_ONCE(ctx->sq_array[sq_idx]);
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03007259 if (likely(head < ctx->sq_entries))
7260 return &ctx->sq_sqes[head];
7261
7262 /* drop invalid entries */
Pavel Begunkov15641e42021-06-14 23:37:24 +01007263 ctx->cq_extra--;
7264 WRITE_ONCE(ctx->rings->sq_dropped,
7265 READ_ONCE(ctx->rings->sq_dropped) + 1);
Pavel Begunkov711be032020-01-17 03:57:59 +03007266 return NULL;
7267}
Jens Axboeb7bb4f72019-12-15 22:13:43 -07007268
Jens Axboe0f212202020-09-13 13:09:39 -06007269static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007270 __must_hold(&ctx->uring_lock)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007271{
Pavel Begunkov46c4e162021-02-18 18:29:37 +00007272 int submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007273
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03007274 /* make sure SQ entry isn't read before tail */
7275 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03007276 if (!percpu_ref_tryget_many(&ctx->refs, nr))
7277 return -EAGAIN;
Pavel Begunkov9a108672021-08-27 11:55:01 +01007278 io_get_task_refs(nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007279
Pavel Begunkovba88ff12021-02-10 00:03:11 +00007280 io_submit_state_start(&ctx->submit_state, nr);
Pavel Begunkov46c4e162021-02-18 18:29:37 +00007281 while (submitted < nr) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07007282 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03007283 struct io_kiocb *req;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03007284
Pavel Begunkov258b29a2021-02-10 00:03:10 +00007285 req = io_alloc_req(ctx);
Pavel Begunkov196be952019-11-07 01:41:06 +03007286 if (unlikely(!req)) {
7287 if (!submitted)
7288 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03007289 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06007290 }
Pavel Begunkov4fccfcb2021-02-12 11:55:17 +00007291 sqe = io_get_sqe(ctx);
7292 if (unlikely(!sqe)) {
Hao Xu0c6e1d72021-08-26 01:58:56 +08007293 list_add(&req->inflight_entry, &ctx->submit_state.free_list);
Pavel Begunkov4fccfcb2021-02-12 11:55:17 +00007294 break;
7295 }
Jens Axboed3656342019-12-18 09:50:26 -07007296 /* will complete beyond this point, count as submitted */
7297 submitted++;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007298 if (io_submit_sqe(ctx, req, sqe))
Jens Axboed3656342019-12-18 09:50:26 -07007299 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007300 }
7301
Pavel Begunkov9466f432020-01-25 22:34:01 +03007302 if (unlikely(submitted != nr)) {
7303 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
Jens Axboed8a6df12020-10-15 16:24:45 -06007304 int unused = nr - ref_used;
Pavel Begunkov9466f432020-01-25 22:34:01 +03007305
Pavel Begunkov09899b12021-06-14 02:36:22 +01007306 current->io_uring->cached_refs += unused;
Jens Axboed8a6df12020-10-15 16:24:45 -06007307 percpu_ref_put_many(&ctx->refs, unused);
Pavel Begunkov9466f432020-01-25 22:34:01 +03007308 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007309
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007310 io_submit_state_end(&ctx->submit_state, ctx);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007311 /* Commit SQ ring head once we've consumed and submitted all SQEs */
7312 io_commit_sqring(ctx);
7313
Jens Axboe6c271ce2019-01-10 11:22:30 -07007314 return submitted;
7315}
7316
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007317static inline bool io_sqd_events_pending(struct io_sq_data *sqd)
7318{
7319 return READ_ONCE(sqd->state);
7320}
7321
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007322static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
7323{
7324 /* Tell userspace we may need a wakeup call */
Jens Axboe79ebeae2021-08-10 15:18:27 -06007325 spin_lock(&ctx->completion_lock);
Nadav Amit20c0b382021-08-07 17:13:42 -07007326 WRITE_ONCE(ctx->rings->sq_flags,
7327 ctx->rings->sq_flags | IORING_SQ_NEED_WAKEUP);
Jens Axboe79ebeae2021-08-10 15:18:27 -06007328 spin_unlock(&ctx->completion_lock);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007329}
7330
7331static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
7332{
Jens Axboe79ebeae2021-08-10 15:18:27 -06007333 spin_lock(&ctx->completion_lock);
Nadav Amit20c0b382021-08-07 17:13:42 -07007334 WRITE_ONCE(ctx->rings->sq_flags,
7335 ctx->rings->sq_flags & ~IORING_SQ_NEED_WAKEUP);
Jens Axboe79ebeae2021-08-10 15:18:27 -06007336 spin_unlock(&ctx->completion_lock);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007337}
7338
Xiaoguang Wang08369242020-11-03 14:15:59 +08007339static int __io_sq_thread(struct io_ring_ctx *ctx, bool cap_entries)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007340{
Jens Axboec8d1ba52020-09-14 11:07:26 -06007341 unsigned int to_submit;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08007342 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007343
Jens Axboec8d1ba52020-09-14 11:07:26 -06007344 to_submit = io_sqring_entries(ctx);
Jens Axboee95eee22020-09-08 09:11:32 -06007345 /* if we're handling multiple rings, cap submit size for fairness */
Olivier Langlois4ce8ad92021-06-23 11:50:18 -07007346 if (cap_entries && to_submit > IORING_SQPOLL_CAP_ENTRIES_VALUE)
7347 to_submit = IORING_SQPOLL_CAP_ENTRIES_VALUE;
Jens Axboee95eee22020-09-08 09:11:32 -06007348
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007349 if (!list_empty(&ctx->iopoll_list) || to_submit) {
7350 unsigned nr_events = 0;
Pavel Begunkov948e1942021-06-24 15:09:55 +01007351 const struct cred *creds = NULL;
7352
7353 if (ctx->sq_creds != current_cred())
7354 creds = override_creds(ctx->sq_creds);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007355
Xiaoguang Wang08369242020-11-03 14:15:59 +08007356 mutex_lock(&ctx->uring_lock);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007357 if (!list_empty(&ctx->iopoll_list))
Pavel Begunkova8576af2021-08-15 10:40:21 +01007358 io_do_iopoll(ctx, &nr_events, 0);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007359
Pavel Begunkov3b763ba2021-04-18 14:52:08 +01007360 /*
7361 * Don't submit if refs are dying, good for io_uring_register(),
7362 * but also it is relied upon by io_ring_exit_work()
7363 */
Pavel Begunkov0298ef92021-03-08 13:20:57 +00007364 if (to_submit && likely(!percpu_ref_is_dying(&ctx->refs)) &&
7365 !(ctx->flags & IORING_SETUP_R_DISABLED))
Xiaoguang Wang08369242020-11-03 14:15:59 +08007366 ret = io_submit_sqes(ctx, to_submit);
7367 mutex_unlock(&ctx->uring_lock);
Jens Axboe90554202020-09-03 12:12:41 -06007368
Pavel Begunkovacfb3812021-05-16 22:58:03 +01007369 if (to_submit && wq_has_sleeper(&ctx->sqo_sq_wait))
7370 wake_up(&ctx->sqo_sq_wait);
Pavel Begunkov948e1942021-06-24 15:09:55 +01007371 if (creds)
7372 revert_creds(creds);
Pavel Begunkovacfb3812021-05-16 22:58:03 +01007373 }
Jens Axboe90554202020-09-03 12:12:41 -06007374
Xiaoguang Wang08369242020-11-03 14:15:59 +08007375 return ret;
7376}
7377
7378static void io_sqd_update_thread_idle(struct io_sq_data *sqd)
7379{
7380 struct io_ring_ctx *ctx;
7381 unsigned sq_thread_idle = 0;
7382
Pavel Begunkovc9dca272021-03-10 13:13:55 +00007383 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7384 sq_thread_idle = max(sq_thread_idle, ctx->sq_thread_idle);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007385 sqd->sq_thread_idle = sq_thread_idle;
Jens Axboec8d1ba52020-09-14 11:07:26 -06007386}
7387
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007388static bool io_sqd_handle_event(struct io_sq_data *sqd)
7389{
7390 bool did_sig = false;
7391 struct ksignal ksig;
7392
7393 if (test_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state) ||
7394 signal_pending(current)) {
7395 mutex_unlock(&sqd->lock);
7396 if (signal_pending(current))
7397 did_sig = get_signal(&ksig);
7398 cond_resched();
7399 mutex_lock(&sqd->lock);
7400 }
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007401 return did_sig || test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
7402}
7403
Jens Axboe6c271ce2019-01-10 11:22:30 -07007404static int io_sq_thread(void *data)
7405{
Jens Axboe69fb2132020-09-14 11:16:23 -06007406 struct io_sq_data *sqd = data;
7407 struct io_ring_ctx *ctx;
Xiaoguang Wanga0d92052020-11-12 14:55:59 +08007408 unsigned long timeout = 0;
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007409 char buf[TASK_COMM_LEN];
Xiaoguang Wang08369242020-11-03 14:15:59 +08007410 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007411
Pavel Begunkov696ee882021-04-01 09:55:04 +01007412 snprintf(buf, sizeof(buf), "iou-sqp-%d", sqd->task_pid);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007413 set_task_comm(current, buf);
Jens Axboe28cea78a2020-09-14 10:51:17 -06007414
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007415 if (sqd->sq_cpu != -1)
7416 set_cpus_allowed_ptr(current, cpumask_of(sqd->sq_cpu));
7417 else
7418 set_cpus_allowed_ptr(current, cpu_online_mask);
7419 current->flags |= PF_NO_SETAFFINITY;
7420
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007421 mutex_lock(&sqd->lock);
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007422 while (1) {
Pavel Begunkov1a924a82021-06-24 15:09:56 +01007423 bool cap_entries, sqt_spin = false;
Jens Axboec1edbf52019-11-10 16:56:04 -07007424
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007425 if (io_sqd_events_pending(sqd) || signal_pending(current)) {
7426 if (io_sqd_handle_event(sqd))
Pavel Begunkovc7d95612021-04-13 11:43:00 +01007427 break;
Xiaoguang Wang08369242020-11-03 14:15:59 +08007428 timeout = jiffies + sqd->sq_thread_idle;
7429 }
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007430
Jens Axboee95eee22020-09-08 09:11:32 -06007431 cap_entries = !list_is_singular(&sqd->ctx_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06007432 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
Pavel Begunkov948e1942021-06-24 15:09:55 +01007433 int ret = __io_sq_thread(ctx, cap_entries);
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +01007434
Xiaoguang Wang08369242020-11-03 14:15:59 +08007435 if (!sqt_spin && (ret > 0 || !list_empty(&ctx->iopoll_list)))
7436 sqt_spin = true;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007437 }
Pavel Begunkovdd432ea52021-06-26 21:40:45 +01007438 if (io_run_task_work())
7439 sqt_spin = true;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007440
Xiaoguang Wang08369242020-11-03 14:15:59 +08007441 if (sqt_spin || !time_after(jiffies, timeout)) {
Jens Axboec8d1ba52020-09-14 11:07:26 -06007442 cond_resched();
Xiaoguang Wang08369242020-11-03 14:15:59 +08007443 if (sqt_spin)
7444 timeout = jiffies + sqd->sq_thread_idle;
7445 continue;
7446 }
7447
Xiaoguang Wang08369242020-11-03 14:15:59 +08007448 prepare_to_wait(&sqd->wait, &wait, TASK_INTERRUPTIBLE);
Pavel Begunkovdd432ea52021-06-26 21:40:45 +01007449 if (!io_sqd_events_pending(sqd) && !current->task_works) {
Pavel Begunkov1a924a82021-06-24 15:09:56 +01007450 bool needs_sched = true;
7451
Hao Xu724cb4f2021-04-21 23:19:11 +08007452 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
Pavel Begunkovaaa9f0f2021-05-16 22:58:01 +01007453 io_ring_set_wakeup_flag(ctx);
7454
Hao Xu724cb4f2021-04-21 23:19:11 +08007455 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
7456 !list_empty_careful(&ctx->iopoll_list)) {
7457 needs_sched = false;
7458 break;
7459 }
7460 if (io_sqring_entries(ctx)) {
7461 needs_sched = false;
7462 break;
7463 }
7464 }
7465
7466 if (needs_sched) {
7467 mutex_unlock(&sqd->lock);
7468 schedule();
7469 mutex_lock(&sqd->lock);
7470 }
Jens Axboe69fb2132020-09-14 11:16:23 -06007471 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7472 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007473 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08007474
7475 finish_wait(&sqd->wait, &wait);
7476 timeout = jiffies + sqd->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007477 }
7478
Pavel Begunkov78cc6872021-06-14 02:36:23 +01007479 io_uring_cancel_generic(true, sqd);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007480 sqd->thread = NULL;
Jens Axboe05962f92021-03-06 13:58:48 -07007481 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
Jens Axboe5f3f26f2021-02-25 10:17:46 -07007482 io_ring_set_wakeup_flag(ctx);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007483 io_run_task_work();
Pavel Begunkov734551d2021-04-18 14:52:09 +01007484 mutex_unlock(&sqd->lock);
7485
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007486 complete(&sqd->exited);
7487 do_exit(0);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007488}
7489
Jens Axboebda52162019-09-24 13:47:15 -06007490struct io_wait_queue {
7491 struct wait_queue_entry wq;
7492 struct io_ring_ctx *ctx;
Jens Axboe5fd46172021-08-06 14:04:31 -06007493 unsigned cq_tail;
Jens Axboebda52162019-09-24 13:47:15 -06007494 unsigned nr_timeouts;
7495};
7496
Pavel Begunkov6c503152021-01-04 20:36:36 +00007497static inline bool io_should_wake(struct io_wait_queue *iowq)
Jens Axboebda52162019-09-24 13:47:15 -06007498{
7499 struct io_ring_ctx *ctx = iowq->ctx;
Jens Axboe5fd46172021-08-06 14:04:31 -06007500 int dist = ctx->cached_cq_tail - (int) iowq->cq_tail;
Jens Axboebda52162019-09-24 13:47:15 -06007501
7502 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08007503 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06007504 * started waiting. For timeouts, we always want to return to userspace,
7505 * regardless of event count.
7506 */
Jens Axboe5fd46172021-08-06 14:04:31 -06007507 return dist >= 0 || atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
Jens Axboebda52162019-09-24 13:47:15 -06007508}
7509
7510static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7511 int wake_flags, void *key)
7512{
7513 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7514 wq);
7515
Pavel Begunkov6c503152021-01-04 20:36:36 +00007516 /*
7517 * Cannot safely flush overflowed CQEs from here, ensure we wake up
7518 * the task, and the next invocation will do it.
7519 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01007520 if (io_should_wake(iowq) || test_bit(0, &iowq->ctx->check_cq_overflow))
Pavel Begunkov6c503152021-01-04 20:36:36 +00007521 return autoremove_wake_function(curr, mode, wake_flags, key);
7522 return -1;
Jens Axboebda52162019-09-24 13:47:15 -06007523}
7524
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007525static int io_run_task_work_sig(void)
7526{
7527 if (io_run_task_work())
7528 return 1;
7529 if (!signal_pending(current))
7530 return 0;
Jens Axboe0b8cfa92021-03-21 14:16:08 -06007531 if (test_thread_flag(TIF_NOTIFY_SIGNAL))
Jens Axboe792ee0f62020-10-22 20:17:18 -06007532 return -ERESTARTSYS;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007533 return -EINTR;
7534}
7535
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007536/* when returns >0, the caller should retry */
7537static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
7538 struct io_wait_queue *iowq,
7539 signed long *timeout)
7540{
7541 int ret;
7542
7543 /* make sure we run task_work before checking for signals */
7544 ret = io_run_task_work_sig();
7545 if (ret || io_should_wake(iowq))
7546 return ret;
7547 /* let the caller flush overflows, retry */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01007548 if (test_bit(0, &ctx->check_cq_overflow))
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007549 return 1;
7550
7551 *timeout = schedule_timeout(*timeout);
7552 return !*timeout ? -ETIME : 1;
7553}
7554
Jens Axboe2b188cc2019-01-07 10:46:33 -07007555/*
7556 * Wait until events become available, if we don't already have some. The
7557 * application must reap them itself, as they reside on the shared cq ring.
7558 */
7559static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
Hao Xuc73ebb62020-11-03 10:54:37 +08007560 const sigset_t __user *sig, size_t sigsz,
7561 struct __kernel_timespec __user *uts)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007562{
Pavel Begunkov902910992021-08-09 09:07:32 -06007563 struct io_wait_queue iowq;
Hristo Venev75b28af2019-08-26 17:23:46 +00007564 struct io_rings *rings = ctx->rings;
Pavel Begunkovc1d5a222021-02-04 13:51:57 +00007565 signed long timeout = MAX_SCHEDULE_TIMEOUT;
7566 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007567
Jens Axboeb41e9852020-02-17 09:52:41 -07007568 do {
Pavel Begunkov90f67362021-08-09 20:18:12 +01007569 io_cqring_overflow_flush(ctx);
Pavel Begunkov6c503152021-01-04 20:36:36 +00007570 if (io_cqring_events(ctx) >= min_events)
Jens Axboeb41e9852020-02-17 09:52:41 -07007571 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06007572 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07007573 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07007574 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007575
Xiaoguang Wang44df58d2021-09-14 22:38:52 +08007576 if (uts) {
7577 struct timespec64 ts;
7578
7579 if (get_timespec64(&ts, uts))
7580 return -EFAULT;
7581 timeout = timespec64_to_jiffies(&ts);
7582 }
7583
Jens Axboe2b188cc2019-01-07 10:46:33 -07007584 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007585#ifdef CONFIG_COMPAT
7586 if (in_compat_syscall())
7587 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07007588 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007589 else
7590#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07007591 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007592
Jens Axboe2b188cc2019-01-07 10:46:33 -07007593 if (ret)
7594 return ret;
7595 }
7596
Pavel Begunkov902910992021-08-09 09:07:32 -06007597 init_waitqueue_func_entry(&iowq.wq, io_wake_function);
7598 iowq.wq.private = current;
7599 INIT_LIST_HEAD(&iowq.wq.entry);
7600 iowq.ctx = ctx;
Jens Axboebda52162019-09-24 13:47:15 -06007601 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Jens Axboe5fd46172021-08-06 14:04:31 -06007602 iowq.cq_tail = READ_ONCE(ctx->rings->cq.head) + min_events;
Pavel Begunkov902910992021-08-09 09:07:32 -06007603
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007604 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06007605 do {
Jens Axboeca0a2652021-03-04 17:15:48 -07007606 /* if we can't even flush overflow, don't wait for more */
Pavel Begunkov90f67362021-08-09 20:18:12 +01007607 if (!io_cqring_overflow_flush(ctx)) {
Jens Axboeca0a2652021-03-04 17:15:48 -07007608 ret = -EBUSY;
7609 break;
7610 }
Pavel Begunkov311997b2021-06-14 23:37:28 +01007611 prepare_to_wait_exclusive(&ctx->cq_wait, &iowq.wq,
Jens Axboebda52162019-09-24 13:47:15 -06007612 TASK_INTERRUPTIBLE);
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007613 ret = io_cqring_wait_schedule(ctx, &iowq, &timeout);
Pavel Begunkov311997b2021-06-14 23:37:28 +01007614 finish_wait(&ctx->cq_wait, &iowq.wq);
Jens Axboeca0a2652021-03-04 17:15:48 -07007615 cond_resched();
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007616 } while (ret > 0);
Jens Axboebda52162019-09-24 13:47:15 -06007617
Jens Axboeb7db41c2020-07-04 08:55:50 -06007618 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007619
Hristo Venev75b28af2019-08-26 17:23:46 +00007620 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007621}
7622
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007623static void io_free_page_table(void **table, size_t size)
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007624{
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007625 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007626
7627 for (i = 0; i < nr_tables; i++)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007628 kfree(table[i]);
7629 kfree(table);
7630}
7631
7632static void **io_alloc_page_table(size_t size)
7633{
7634 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
7635 size_t init_size = size;
7636 void **table;
7637
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007638 table = kcalloc(nr_tables, sizeof(*table), GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007639 if (!table)
7640 return NULL;
7641
7642 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov27f6b312021-06-15 13:20:13 +01007643 unsigned int this_size = min_t(size_t, size, PAGE_SIZE);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007644
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007645 table[i] = kzalloc(this_size, GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007646 if (!table[i]) {
7647 io_free_page_table(table, init_size);
7648 return NULL;
7649 }
7650 size -= this_size;
7651 }
7652 return table;
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007653}
7654
Pavel Begunkov28a9fe22021-04-01 15:43:47 +01007655static void io_rsrc_node_destroy(struct io_rsrc_node *ref_node)
7656{
7657 percpu_ref_exit(&ref_node->refs);
7658 kfree(ref_node);
7659}
7660
Pavel Begunkovb9bd2be2021-08-09 09:09:47 -06007661static void io_rsrc_node_ref_zero(struct percpu_ref *ref)
7662{
7663 struct io_rsrc_node *node = container_of(ref, struct io_rsrc_node, refs);
7664 struct io_ring_ctx *ctx = node->rsrc_data->ctx;
7665 unsigned long flags;
7666 bool first_add = false;
7667
7668 spin_lock_irqsave(&ctx->rsrc_ref_lock, flags);
7669 node->done = true;
7670
7671 while (!list_empty(&ctx->rsrc_ref_list)) {
7672 node = list_first_entry(&ctx->rsrc_ref_list,
7673 struct io_rsrc_node, node);
7674 /* recycle ref nodes in order */
7675 if (!node->done)
7676 break;
7677 list_del(&node->node);
7678 first_add |= llist_add(&node->llist, &ctx->rsrc_put_llist);
7679 }
7680 spin_unlock_irqrestore(&ctx->rsrc_ref_lock, flags);
7681
7682 if (first_add)
7683 mod_delayed_work(system_wq, &ctx->rsrc_put_work, HZ);
7684}
7685
7686static struct io_rsrc_node *io_rsrc_node_alloc(struct io_ring_ctx *ctx)
7687{
7688 struct io_rsrc_node *ref_node;
7689
7690 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7691 if (!ref_node)
7692 return NULL;
7693
7694 if (percpu_ref_init(&ref_node->refs, io_rsrc_node_ref_zero,
7695 0, GFP_KERNEL)) {
7696 kfree(ref_node);
7697 return NULL;
7698 }
7699 INIT_LIST_HEAD(&ref_node->node);
7700 INIT_LIST_HEAD(&ref_node->rsrc_list);
7701 ref_node->done = false;
7702 return ref_node;
7703}
7704
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007705static void io_rsrc_node_switch(struct io_ring_ctx *ctx,
7706 struct io_rsrc_data *data_to_kill)
Pavel Begunkov1642b442020-12-30 21:34:14 +00007707{
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007708 WARN_ON_ONCE(!ctx->rsrc_backup_node);
7709 WARN_ON_ONCE(data_to_kill && !ctx->rsrc_node);
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007710
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007711 if (data_to_kill) {
7712 struct io_rsrc_node *rsrc_node = ctx->rsrc_node;
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007713
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007714 rsrc_node->rsrc_data = data_to_kill;
Jens Axboe4956b9e2021-08-09 07:49:41 -06007715 spin_lock_irq(&ctx->rsrc_ref_lock);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007716 list_add_tail(&rsrc_node->node, &ctx->rsrc_ref_list);
Jens Axboe4956b9e2021-08-09 07:49:41 -06007717 spin_unlock_irq(&ctx->rsrc_ref_lock);
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007718
Pavel Begunkov3e942492021-04-11 01:46:34 +01007719 atomic_inc(&data_to_kill->refs);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007720 percpu_ref_kill(&rsrc_node->refs);
7721 ctx->rsrc_node = NULL;
7722 }
7723
7724 if (!ctx->rsrc_node) {
7725 ctx->rsrc_node = ctx->rsrc_backup_node;
7726 ctx->rsrc_backup_node = NULL;
7727 }
Pavel Begunkov1642b442020-12-30 21:34:14 +00007728}
7729
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007730static int io_rsrc_node_switch_start(struct io_ring_ctx *ctx)
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007731{
7732 if (ctx->rsrc_backup_node)
7733 return 0;
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01007734 ctx->rsrc_backup_node = io_rsrc_node_alloc(ctx);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007735 return ctx->rsrc_backup_node ? 0 : -ENOMEM;
7736}
7737
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +01007738static int io_rsrc_ref_quiesce(struct io_rsrc_data *data, struct io_ring_ctx *ctx)
Hao Xu8bad28d2021-02-19 17:19:36 +08007739{
7740 int ret;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007741
Pavel Begunkov215c3902021-04-01 15:43:48 +01007742 /* As we may drop ->uring_lock, other task may have started quiesce */
Hao Xu8bad28d2021-02-19 17:19:36 +08007743 if (data->quiesce)
7744 return -ENXIO;
7745
7746 data->quiesce = true;
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007747 do {
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007748 ret = io_rsrc_node_switch_start(ctx);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007749 if (ret)
Pavel Begunkovf2303b12021-02-20 18:03:49 +00007750 break;
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007751 io_rsrc_node_switch(ctx, data);
7752
Pavel Begunkov3e942492021-04-11 01:46:34 +01007753 /* kill initial ref, already quiesced if zero */
7754 if (atomic_dec_and_test(&data->refs))
7755 break;
Jens Axboec018db42021-08-09 08:15:50 -06007756 mutex_unlock(&ctx->uring_lock);
Hao Xu8bad28d2021-02-19 17:19:36 +08007757 flush_delayed_work(&ctx->rsrc_put_work);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007758 ret = wait_for_completion_interruptible(&data->done);
Jens Axboec018db42021-08-09 08:15:50 -06007759 if (!ret) {
7760 mutex_lock(&ctx->uring_lock);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007761 break;
Jens Axboec018db42021-08-09 08:15:50 -06007762 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007763
Pavel Begunkov3e942492021-04-11 01:46:34 +01007764 atomic_inc(&data->refs);
7765 /* wait for all works potentially completing data->done */
7766 flush_delayed_work(&ctx->rsrc_put_work);
Jens Axboecb5e1b82021-02-25 07:37:35 -07007767 reinit_completion(&data->done);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007768
Hao Xu8bad28d2021-02-19 17:19:36 +08007769 ret = io_run_task_work_sig();
7770 mutex_lock(&ctx->uring_lock);
Pavel Begunkovf2303b12021-02-20 18:03:49 +00007771 } while (ret >= 0);
Hao Xu8bad28d2021-02-19 17:19:36 +08007772 data->quiesce = false;
7773
Hao Xu8bad28d2021-02-19 17:19:36 +08007774 return ret;
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007775}
7776
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007777static u64 *io_get_tag_slot(struct io_rsrc_data *data, unsigned int idx)
7778{
7779 unsigned int off = idx & IO_RSRC_TAG_TABLE_MASK;
7780 unsigned int table_idx = idx >> IO_RSRC_TAG_TABLE_SHIFT;
7781
7782 return &data->tags[table_idx][off];
7783}
7784
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007785static void io_rsrc_data_free(struct io_rsrc_data *data)
7786{
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007787 size_t size = data->nr * sizeof(data->tags[0][0]);
7788
7789 if (data->tags)
7790 io_free_page_table((void **)data->tags, size);
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007791 kfree(data);
7792}
7793
Pavel Begunkovd878c812021-06-14 02:36:18 +01007794static int io_rsrc_data_alloc(struct io_ring_ctx *ctx, rsrc_put_fn *do_put,
7795 u64 __user *utags, unsigned nr,
7796 struct io_rsrc_data **pdata)
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007797{
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01007798 struct io_rsrc_data *data;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007799 int ret = -ENOMEM;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007800 unsigned i;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007801
7802 data = kzalloc(sizeof(*data), GFP_KERNEL);
7803 if (!data)
Pavel Begunkovd878c812021-06-14 02:36:18 +01007804 return -ENOMEM;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007805 data->tags = (u64 **)io_alloc_page_table(nr * sizeof(data->tags[0][0]));
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01007806 if (!data->tags) {
7807 kfree(data);
Pavel Begunkovd878c812021-06-14 02:36:18 +01007808 return -ENOMEM;
7809 }
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007810
7811 data->nr = nr;
7812 data->ctx = ctx;
7813 data->do_put = do_put;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007814 if (utags) {
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007815 ret = -EFAULT;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007816 for (i = 0; i < nr; i++) {
Colin Ian Kingfdd1dc32021-06-15 14:00:11 +01007817 u64 *tag_slot = io_get_tag_slot(data, i);
7818
7819 if (copy_from_user(tag_slot, &utags[i],
7820 sizeof(*tag_slot)))
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007821 goto fail;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007822 }
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01007823 }
7824
Pavel Begunkov3e942492021-04-11 01:46:34 +01007825 atomic_set(&data->refs, 1);
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007826 init_completion(&data->done);
Pavel Begunkovd878c812021-06-14 02:36:18 +01007827 *pdata = data;
7828 return 0;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007829fail:
7830 io_rsrc_data_free(data);
7831 return ret;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007832}
7833
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007834static bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files)
7835{
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007836 table->files = kvcalloc(nr_files, sizeof(table->files[0]),
7837 GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007838 return !!table->files;
7839}
7840
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007841static void io_free_file_tables(struct io_file_table *table)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007842{
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007843 kvfree(table->files);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007844 table->files = NULL;
7845}
7846
Jens Axboe2b188cc2019-01-07 10:46:33 -07007847static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
7848{
7849#if defined(CONFIG_UNIX)
7850 if (ctx->ring_sock) {
7851 struct sock *sock = ctx->ring_sock->sk;
7852 struct sk_buff *skb;
7853
7854 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7855 kfree_skb(skb);
7856 }
7857#else
7858 int i;
7859
7860 for (i = 0; i < ctx->nr_user_files; i++) {
7861 struct file *file;
7862
7863 file = io_file_from_index(ctx, i);
7864 if (file)
7865 fput(file);
7866 }
7867#endif
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007868 io_free_file_tables(&ctx->file_table);
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007869 io_rsrc_data_free(ctx->file_data);
Pavel Begunkovfff4db72021-04-25 14:32:15 +01007870 ctx->file_data = NULL;
7871 ctx->nr_user_files = 0;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007872}
7873
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007874static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7875{
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007876 int ret;
7877
Pavel Begunkov08480402021-04-13 02:58:38 +01007878 if (!ctx->file_data)
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007879 return -ENXIO;
Pavel Begunkov08480402021-04-13 02:58:38 +01007880 ret = io_rsrc_ref_quiesce(ctx->file_data, ctx);
7881 if (!ret)
7882 __io_sqe_files_unregister(ctx);
7883 return ret;
Jens Axboe6b063142019-01-10 22:13:58 -07007884}
7885
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007886static void io_sq_thread_unpark(struct io_sq_data *sqd)
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007887 __releases(&sqd->lock)
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007888{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007889 WARN_ON_ONCE(sqd->thread == current);
7890
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007891 /*
7892 * Do the dance but not conditional clear_bit() because it'd race with
7893 * other threads incrementing park_pending and setting the bit.
7894 */
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007895 clear_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007896 if (atomic_dec_return(&sqd->park_pending))
7897 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007898 mutex_unlock(&sqd->lock);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007899}
7900
Jens Axboe86e0d672021-03-05 08:44:39 -07007901static void io_sq_thread_park(struct io_sq_data *sqd)
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007902 __acquires(&sqd->lock)
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007903{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007904 WARN_ON_ONCE(sqd->thread == current);
7905
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007906 atomic_inc(&sqd->park_pending);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007907 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007908 mutex_lock(&sqd->lock);
Jens Axboe05962f92021-03-06 13:58:48 -07007909 if (sqd->thread)
Jens Axboe86e0d672021-03-05 08:44:39 -07007910 wake_up_process(sqd->thread);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007911}
7912
7913static void io_sq_thread_stop(struct io_sq_data *sqd)
7914{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007915 WARN_ON_ONCE(sqd->thread == current);
Pavel Begunkov88885f62021-04-11 01:46:38 +01007916 WARN_ON_ONCE(test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state));
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007917
Jens Axboe05962f92021-03-06 13:58:48 -07007918 set_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
Pavel Begunkov88885f62021-04-11 01:46:38 +01007919 mutex_lock(&sqd->lock);
Jens Axboee8f98f242021-03-09 16:32:13 -07007920 if (sqd->thread)
7921 wake_up_process(sqd->thread);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007922 mutex_unlock(&sqd->lock);
Jens Axboe05962f92021-03-06 13:58:48 -07007923 wait_for_completion(&sqd->exited);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007924}
7925
Jens Axboe534ca6d2020-09-02 13:52:19 -06007926static void io_put_sq_data(struct io_sq_data *sqd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007927{
Jens Axboe534ca6d2020-09-02 13:52:19 -06007928 if (refcount_dec_and_test(&sqd->refs)) {
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007929 WARN_ON_ONCE(atomic_read(&sqd->park_pending));
7930
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007931 io_sq_thread_stop(sqd);
7932 kfree(sqd);
7933 }
7934}
7935
7936static void io_sq_thread_finish(struct io_ring_ctx *ctx)
7937{
7938 struct io_sq_data *sqd = ctx->sq_data;
7939
7940 if (sqd) {
Jens Axboe05962f92021-03-06 13:58:48 -07007941 io_sq_thread_park(sqd);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007942 list_del_init(&ctx->sqd_list);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007943 io_sqd_update_thread_idle(sqd);
Jens Axboe05962f92021-03-06 13:58:48 -07007944 io_sq_thread_unpark(sqd);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007945
7946 io_put_sq_data(sqd);
7947 ctx->sq_data = NULL;
Jens Axboe534ca6d2020-09-02 13:52:19 -06007948 }
7949}
7950
Jens Axboeaa061652020-09-02 14:50:27 -06007951static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7952{
7953 struct io_ring_ctx *ctx_attach;
7954 struct io_sq_data *sqd;
7955 struct fd f;
7956
7957 f = fdget(p->wq_fd);
7958 if (!f.file)
7959 return ERR_PTR(-ENXIO);
7960 if (f.file->f_op != &io_uring_fops) {
7961 fdput(f);
7962 return ERR_PTR(-EINVAL);
7963 }
7964
7965 ctx_attach = f.file->private_data;
7966 sqd = ctx_attach->sq_data;
7967 if (!sqd) {
7968 fdput(f);
7969 return ERR_PTR(-EINVAL);
7970 }
Jens Axboe5c2469e2021-03-11 10:17:56 -07007971 if (sqd->task_tgid != current->tgid) {
7972 fdput(f);
7973 return ERR_PTR(-EPERM);
7974 }
Jens Axboeaa061652020-09-02 14:50:27 -06007975
7976 refcount_inc(&sqd->refs);
7977 fdput(f);
7978 return sqd;
7979}
7980
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007981static struct io_sq_data *io_get_sq_data(struct io_uring_params *p,
7982 bool *attached)
Jens Axboe534ca6d2020-09-02 13:52:19 -06007983{
7984 struct io_sq_data *sqd;
7985
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007986 *attached = false;
Jens Axboe5c2469e2021-03-11 10:17:56 -07007987 if (p->flags & IORING_SETUP_ATTACH_WQ) {
7988 sqd = io_attach_sq_data(p);
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007989 if (!IS_ERR(sqd)) {
7990 *attached = true;
Jens Axboe5c2469e2021-03-11 10:17:56 -07007991 return sqd;
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007992 }
Jens Axboe5c2469e2021-03-11 10:17:56 -07007993 /* fall through for EPERM case, setup new sqd/task */
7994 if (PTR_ERR(sqd) != -EPERM)
7995 return sqd;
7996 }
Jens Axboeaa061652020-09-02 14:50:27 -06007997
Jens Axboe534ca6d2020-09-02 13:52:19 -06007998 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7999 if (!sqd)
8000 return ERR_PTR(-ENOMEM);
8001
Pavel Begunkov9e138a42021-03-14 20:57:12 +00008002 atomic_set(&sqd->park_pending, 0);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008003 refcount_set(&sqd->refs, 1);
Jens Axboe69fb2132020-09-14 11:16:23 -06008004 INIT_LIST_HEAD(&sqd->ctx_list);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00008005 mutex_init(&sqd->lock);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008006 init_waitqueue_head(&sqd->wait);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008007 init_completion(&sqd->exited);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008008 return sqd;
8009}
8010
Jens Axboe6b063142019-01-10 22:13:58 -07008011#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07008012/*
8013 * Ensure the UNIX gc is aware of our file set, so we are certain that
8014 * the io_uring can be safely unregistered on process exit, even if we have
8015 * loops in the file referencing.
8016 */
8017static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
8018{
8019 struct sock *sk = ctx->ring_sock->sk;
8020 struct scm_fp_list *fpl;
8021 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06008022 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07008023
Jens Axboe6b063142019-01-10 22:13:58 -07008024 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
8025 if (!fpl)
8026 return -ENOMEM;
8027
8028 skb = alloc_skb(0, GFP_KERNEL);
8029 if (!skb) {
8030 kfree(fpl);
8031 return -ENOMEM;
8032 }
8033
8034 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07008035
Jens Axboe08a45172019-10-03 08:11:03 -06008036 nr_files = 0;
Jens Axboe62e398b2021-02-21 16:19:37 -07008037 fpl->user = get_uid(current_user());
Jens Axboe6b063142019-01-10 22:13:58 -07008038 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06008039 struct file *file = io_file_from_index(ctx, i + offset);
8040
8041 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06008042 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06008043 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06008044 unix_inflight(fpl->user, fpl->fp[nr_files]);
8045 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07008046 }
8047
Jens Axboe08a45172019-10-03 08:11:03 -06008048 if (nr_files) {
8049 fpl->max = SCM_MAX_FD;
8050 fpl->count = nr_files;
8051 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008052 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06008053 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
8054 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07008055
Jens Axboe08a45172019-10-03 08:11:03 -06008056 for (i = 0; i < nr_files; i++)
8057 fput(fpl->fp[i]);
8058 } else {
8059 kfree_skb(skb);
8060 kfree(fpl);
8061 }
Jens Axboe6b063142019-01-10 22:13:58 -07008062
8063 return 0;
8064}
8065
8066/*
8067 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
8068 * causes regular reference counting to break down. We rely on the UNIX
8069 * garbage collection to take care of this problem for us.
8070 */
8071static int io_sqe_files_scm(struct io_ring_ctx *ctx)
8072{
8073 unsigned left, total;
8074 int ret = 0;
8075
8076 total = 0;
8077 left = ctx->nr_user_files;
8078 while (left) {
8079 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07008080
8081 ret = __io_sqe_files_scm(ctx, this_files, total);
8082 if (ret)
8083 break;
8084 left -= this_files;
8085 total += this_files;
8086 }
8087
8088 if (!ret)
8089 return 0;
8090
8091 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06008092 struct file *file = io_file_from_index(ctx, total);
8093
8094 if (file)
8095 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07008096 total++;
8097 }
8098
8099 return ret;
8100}
8101#else
8102static int io_sqe_files_scm(struct io_ring_ctx *ctx)
8103{
8104 return 0;
8105}
8106#endif
8107
Pavel Begunkov47e90392021-04-01 15:43:56 +01008108static void io_rsrc_file_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
Jens Axboec3a31e62019-10-03 13:59:56 -06008109{
Bijan Mottahedeh50238532021-01-15 17:37:45 +00008110 struct file *file = prsrc->file;
Jens Axboec3a31e62019-10-03 13:59:56 -06008111#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06008112 struct sock *sock = ctx->ring_sock->sk;
8113 struct sk_buff_head list, *head = &sock->sk_receive_queue;
8114 struct sk_buff *skb;
8115 int i;
8116
8117 __skb_queue_head_init(&list);
8118
8119 /*
8120 * Find the skb that holds this file in its SCM_RIGHTS. When found,
8121 * remove this entry and rearrange the file array.
8122 */
8123 skb = skb_dequeue(head);
8124 while (skb) {
8125 struct scm_fp_list *fp;
8126
8127 fp = UNIXCB(skb).fp;
8128 for (i = 0; i < fp->count; i++) {
8129 int left;
8130
8131 if (fp->fp[i] != file)
8132 continue;
8133
8134 unix_notinflight(fp->user, fp->fp[i]);
8135 left = fp->count - 1 - i;
8136 if (left) {
8137 memmove(&fp->fp[i], &fp->fp[i + 1],
8138 left * sizeof(struct file *));
8139 }
8140 fp->count--;
8141 if (!fp->count) {
8142 kfree_skb(skb);
8143 skb = NULL;
8144 } else {
8145 __skb_queue_tail(&list, skb);
8146 }
8147 fput(file);
8148 file = NULL;
8149 break;
8150 }
8151
8152 if (!file)
8153 break;
8154
8155 __skb_queue_tail(&list, skb);
8156
8157 skb = skb_dequeue(head);
8158 }
8159
8160 if (skb_peek(&list)) {
8161 spin_lock_irq(&head->lock);
8162 while ((skb = __skb_dequeue(&list)) != NULL)
8163 __skb_queue_tail(head, skb);
8164 spin_unlock_irq(&head->lock);
8165 }
8166#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07008167 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008168#endif
8169}
8170
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008171static void __io_rsrc_put_work(struct io_rsrc_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07008172{
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008173 struct io_rsrc_data *rsrc_data = ref_node->rsrc_data;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008174 struct io_ring_ctx *ctx = rsrc_data->ctx;
8175 struct io_rsrc_put *prsrc, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008176
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008177 list_for_each_entry_safe(prsrc, tmp, &ref_node->rsrc_list, list) {
8178 list_del(&prsrc->list);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008179
8180 if (prsrc->tag) {
8181 bool lock_ring = ctx->flags & IORING_SETUP_IOPOLL;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008182
8183 io_ring_submit_lock(ctx, lock_ring);
Jens Axboe79ebeae2021-08-10 15:18:27 -06008184 spin_lock(&ctx->completion_lock);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008185 io_cqring_fill_event(ctx, prsrc->tag, 0, 0);
Pavel Begunkov2840f712021-04-27 16:13:51 +01008186 ctx->cq_extra++;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008187 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06008188 spin_unlock(&ctx->completion_lock);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008189 io_cqring_ev_posted(ctx);
8190 io_ring_submit_unlock(ctx, lock_ring);
8191 }
8192
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +01008193 rsrc_data->do_put(ctx, prsrc);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008194 kfree(prsrc);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008195 }
8196
Pavel Begunkov28a9fe22021-04-01 15:43:47 +01008197 io_rsrc_node_destroy(ref_node);
Pavel Begunkov3e942492021-04-11 01:46:34 +01008198 if (atomic_dec_and_test(&rsrc_data->refs))
8199 complete(&rsrc_data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008200}
8201
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008202static void io_rsrc_put_work(struct work_struct *work)
Jens Axboe4a38aed22020-05-14 17:21:15 -06008203{
8204 struct io_ring_ctx *ctx;
8205 struct llist_node *node;
8206
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008207 ctx = container_of(work, struct io_ring_ctx, rsrc_put_work.work);
8208 node = llist_del_all(&ctx->rsrc_put_llist);
Jens Axboe4a38aed22020-05-14 17:21:15 -06008209
8210 while (node) {
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008211 struct io_rsrc_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06008212 struct llist_node *next = node->next;
8213
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008214 ref_node = llist_entry(node, struct io_rsrc_node, llist);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008215 __io_rsrc_put_work(ref_node);
Jens Axboe4a38aed22020-05-14 17:21:15 -06008216 node = next;
8217 }
8218}
8219
Jens Axboe05f3fb32019-12-09 11:22:50 -07008220static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov792e3582021-04-25 14:32:21 +01008221 unsigned nr_args, u64 __user *tags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07008222{
8223 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008224 struct file *file;
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008225 int fd, ret;
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01008226 unsigned i;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008227
8228 if (ctx->file_data)
8229 return -EBUSY;
8230 if (!nr_args)
8231 return -EINVAL;
8232 if (nr_args > IORING_MAX_FIXED_FILES)
8233 return -EMFILE;
Pavel Begunkov3a1b8a42021-08-20 10:36:35 +01008234 if (nr_args > rlimit(RLIMIT_NOFILE))
8235 return -EMFILE;
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008236 ret = io_rsrc_node_switch_start(ctx);
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008237 if (ret)
8238 return ret;
Pavel Begunkovd878c812021-06-14 02:36:18 +01008239 ret = io_rsrc_data_alloc(ctx, io_rsrc_file_put, tags, nr_args,
8240 &ctx->file_data);
8241 if (ret)
8242 return ret;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008243
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008244 ret = -ENOMEM;
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008245 if (!io_alloc_file_tables(&ctx->file_table, nr_args))
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008246 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008247
Jens Axboe05f3fb32019-12-09 11:22:50 -07008248 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Pavel Begunkovd878c812021-06-14 02:36:18 +01008249 if (copy_from_user(&fd, &fds[i], sizeof(fd))) {
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008250 ret = -EFAULT;
8251 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008252 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008253 /* allow sparse sets */
Pavel Begunkov792e3582021-04-25 14:32:21 +01008254 if (fd == -1) {
8255 ret = -EINVAL;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01008256 if (unlikely(*io_get_tag_slot(ctx->file_data, i)))
Pavel Begunkov792e3582021-04-25 14:32:21 +01008257 goto out_fput;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008258 continue;
Pavel Begunkov792e3582021-04-25 14:32:21 +01008259 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008260
Jens Axboe05f3fb32019-12-09 11:22:50 -07008261 file = fget(fd);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008262 ret = -EBADF;
Pavel Begunkov792e3582021-04-25 14:32:21 +01008263 if (unlikely(!file))
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008264 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008265
8266 /*
8267 * Don't allow io_uring instances to be registered. If UNIX
8268 * isn't enabled, then this causes a reference cycle and this
8269 * instance can never get freed. If UNIX is enabled we'll
8270 * handle it just fine, but there's still no point in allowing
8271 * a ring fd as it doesn't support regular read/write anyway.
8272 */
8273 if (file->f_op == &io_uring_fops) {
8274 fput(file);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008275 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008276 }
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008277 io_fixed_file_set(io_fixed_file_slot(&ctx->file_table, i), file);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008278 }
8279
Jens Axboe05f3fb32019-12-09 11:22:50 -07008280 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08008281 if (ret) {
Pavel Begunkov08480402021-04-13 02:58:38 +01008282 __io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08008283 return ret;
8284 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008285
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008286 io_rsrc_node_switch(ctx, NULL);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008287 return ret;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008288out_fput:
8289 for (i = 0; i < ctx->nr_user_files; i++) {
8290 file = io_file_from_index(ctx, i);
8291 if (file)
8292 fput(file);
8293 }
Pavel Begunkov042b0d82021-08-09 13:04:01 +01008294 io_free_file_tables(&ctx->file_table);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008295 ctx->nr_user_files = 0;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008296out_free:
Pavel Begunkov44b31f22021-04-25 14:32:16 +01008297 io_rsrc_data_free(ctx->file_data);
Jens Axboe55cbc252020-10-14 07:35:57 -06008298 ctx->file_data = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008299 return ret;
8300}
8301
Jens Axboec3a31e62019-10-03 13:59:56 -06008302static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
8303 int index)
8304{
8305#if defined(CONFIG_UNIX)
8306 struct sock *sock = ctx->ring_sock->sk;
8307 struct sk_buff_head *head = &sock->sk_receive_queue;
8308 struct sk_buff *skb;
8309
8310 /*
8311 * See if we can merge this file into an existing skb SCM_RIGHTS
8312 * file set. If there's no room, fall back to allocating a new skb
8313 * and filling it in.
8314 */
8315 spin_lock_irq(&head->lock);
8316 skb = skb_peek(head);
8317 if (skb) {
8318 struct scm_fp_list *fpl = UNIXCB(skb).fp;
8319
8320 if (fpl->count < SCM_MAX_FD) {
8321 __skb_unlink(skb, head);
8322 spin_unlock_irq(&head->lock);
8323 fpl->fp[fpl->count] = get_file(file);
8324 unix_inflight(fpl->user, fpl->fp[fpl->count]);
8325 fpl->count++;
8326 spin_lock_irq(&head->lock);
8327 __skb_queue_head(head, skb);
8328 } else {
8329 skb = NULL;
8330 }
8331 }
8332 spin_unlock_irq(&head->lock);
8333
8334 if (skb) {
8335 fput(file);
8336 return 0;
8337 }
8338
8339 return __io_sqe_files_scm(ctx, 1, index);
8340#else
8341 return 0;
8342#endif
8343}
8344
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008345static int io_queue_rsrc_removal(struct io_rsrc_data *data, unsigned idx,
8346 struct io_rsrc_node *node, void *rsrc)
8347{
8348 struct io_rsrc_put *prsrc;
8349
8350 prsrc = kzalloc(sizeof(*prsrc), GFP_KERNEL);
8351 if (!prsrc)
8352 return -ENOMEM;
8353
8354 prsrc->tag = *io_get_tag_slot(data, idx);
8355 prsrc->rsrc = rsrc;
8356 list_add(&prsrc->list, &node->rsrc_list);
8357 return 0;
8358}
8359
Pavel Begunkovb9445592021-08-25 12:25:45 +01008360static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
8361 unsigned int issue_flags, u32 slot_index)
8362{
8363 struct io_ring_ctx *ctx = req->ctx;
8364 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008365 bool needs_switch = false;
Pavel Begunkovb9445592021-08-25 12:25:45 +01008366 struct io_fixed_file *file_slot;
8367 int ret = -EBADF;
8368
8369 io_ring_submit_lock(ctx, !force_nonblock);
8370 if (file->f_op == &io_uring_fops)
8371 goto err;
8372 ret = -ENXIO;
8373 if (!ctx->file_data)
8374 goto err;
8375 ret = -EINVAL;
8376 if (slot_index >= ctx->nr_user_files)
8377 goto err;
8378
8379 slot_index = array_index_nospec(slot_index, ctx->nr_user_files);
8380 file_slot = io_fixed_file_slot(&ctx->file_table, slot_index);
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008381
8382 if (file_slot->file_ptr) {
8383 struct file *old_file;
8384
8385 ret = io_rsrc_node_switch_start(ctx);
8386 if (ret)
8387 goto err;
8388
8389 old_file = (struct file *)(file_slot->file_ptr & FFS_MASK);
8390 ret = io_queue_rsrc_removal(ctx->file_data, slot_index,
8391 ctx->rsrc_node, old_file);
8392 if (ret)
8393 goto err;
8394 file_slot->file_ptr = 0;
8395 needs_switch = true;
8396 }
Pavel Begunkovb9445592021-08-25 12:25:45 +01008397
8398 *io_get_tag_slot(ctx->file_data, slot_index) = 0;
8399 io_fixed_file_set(file_slot, file);
8400 ret = io_sqe_file_register(ctx, file, slot_index);
8401 if (ret) {
8402 file_slot->file_ptr = 0;
8403 goto err;
8404 }
8405
8406 ret = 0;
8407err:
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008408 if (needs_switch)
8409 io_rsrc_node_switch(ctx, ctx->file_data);
Pavel Begunkovb9445592021-08-25 12:25:45 +01008410 io_ring_submit_unlock(ctx, !force_nonblock);
8411 if (ret)
8412 fput(file);
8413 return ret;
8414}
8415
Pavel Begunkov7df778b2021-09-24 20:04:29 +01008416static int io_close_fixed(struct io_kiocb *req, unsigned int issue_flags)
8417{
8418 unsigned int offset = req->close.file_slot - 1;
8419 struct io_ring_ctx *ctx = req->ctx;
8420 struct io_fixed_file *file_slot;
8421 struct file *file;
8422 int ret, i;
8423
8424 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
8425 ret = -ENXIO;
8426 if (unlikely(!ctx->file_data))
8427 goto out;
8428 ret = -EINVAL;
8429 if (offset >= ctx->nr_user_files)
8430 goto out;
8431 ret = io_rsrc_node_switch_start(ctx);
8432 if (ret)
8433 goto out;
8434
8435 i = array_index_nospec(offset, ctx->nr_user_files);
8436 file_slot = io_fixed_file_slot(&ctx->file_table, i);
8437 ret = -EBADF;
8438 if (!file_slot->file_ptr)
8439 goto out;
8440
8441 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
8442 ret = io_queue_rsrc_removal(ctx->file_data, offset, ctx->rsrc_node, file);
8443 if (ret)
8444 goto out;
8445
8446 file_slot->file_ptr = 0;
8447 io_rsrc_node_switch(ctx, ctx->file_data);
8448 ret = 0;
8449out:
8450 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
8451 return ret;
8452}
8453
Jens Axboe05f3fb32019-12-09 11:22:50 -07008454static int __io_sqe_files_update(struct io_ring_ctx *ctx,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008455 struct io_uring_rsrc_update2 *up,
Jens Axboe05f3fb32019-12-09 11:22:50 -07008456 unsigned nr_args)
8457{
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008458 u64 __user *tags = u64_to_user_ptr(up->tags);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008459 __s32 __user *fds = u64_to_user_ptr(up->data);
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008460 struct io_rsrc_data *data = ctx->file_data;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008461 struct io_fixed_file *file_slot;
8462 struct file *file;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008463 int fd, i, err = 0;
8464 unsigned int done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008465 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06008466
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008467 if (!ctx->file_data)
8468 return -ENXIO;
8469 if (up->offset + nr_args > ctx->nr_user_files)
Jens Axboec3a31e62019-10-03 13:59:56 -06008470 return -EINVAL;
8471
Pavel Begunkov67973b92021-01-26 13:51:09 +00008472 for (done = 0; done < nr_args; done++) {
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008473 u64 tag = 0;
8474
8475 if ((tags && copy_from_user(&tag, &tags[done], sizeof(tag))) ||
8476 copy_from_user(&fd, &fds[done], sizeof(fd))) {
Jens Axboec3a31e62019-10-03 13:59:56 -06008477 err = -EFAULT;
8478 break;
8479 }
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008480 if ((fd == IORING_REGISTER_FILES_SKIP || fd == -1) && tag) {
8481 err = -EINVAL;
8482 break;
8483 }
noah4e0377a2021-01-26 15:23:28 -05008484 if (fd == IORING_REGISTER_FILES_SKIP)
8485 continue;
8486
Pavel Begunkov67973b92021-01-26 13:51:09 +00008487 i = array_index_nospec(up->offset + done, ctx->nr_user_files);
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008488 file_slot = io_fixed_file_slot(&ctx->file_table, i);
Pavel Begunkovea64ec022021-02-04 13:52:07 +00008489
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008490 if (file_slot->file_ptr) {
8491 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008492 err = io_queue_rsrc_removal(data, up->offset + done,
8493 ctx->rsrc_node, file);
Hillf Dantona5318d32020-03-23 17:47:15 +08008494 if (err)
8495 break;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008496 file_slot->file_ptr = 0;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008497 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06008498 }
8499 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06008500 file = fget(fd);
8501 if (!file) {
8502 err = -EBADF;
8503 break;
8504 }
8505 /*
8506 * Don't allow io_uring instances to be registered. If
8507 * UNIX isn't enabled, then this causes a reference
8508 * cycle and this instance can never get freed. If UNIX
8509 * is enabled we'll handle it just fine, but there's
8510 * still no point in allowing a ring fd as it doesn't
8511 * support regular read/write anyway.
8512 */
8513 if (file->f_op == &io_uring_fops) {
8514 fput(file);
8515 err = -EBADF;
8516 break;
8517 }
Pavel Begunkov2d091d62021-06-14 02:36:21 +01008518 *io_get_tag_slot(data, up->offset + done) = tag;
Pavel Begunkov9a321c92021-04-01 15:44:01 +01008519 io_fixed_file_set(file_slot, file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008520 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008521 if (err) {
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008522 file_slot->file_ptr = 0;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008523 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008524 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008525 }
Jens Axboec3a31e62019-10-03 13:59:56 -06008526 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008527 }
8528
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008529 if (needs_switch)
8530 io_rsrc_node_switch(ctx, data);
Jens Axboec3a31e62019-10-03 13:59:56 -06008531 return done ? done : err;
8532}
Xiaoguang Wang05589552020-03-31 14:05:18 +08008533
Jens Axboe685fe7f2021-03-08 09:37:51 -07008534static struct io_wq *io_init_wq_offload(struct io_ring_ctx *ctx,
8535 struct task_struct *task)
Pavel Begunkov24369c22020-01-28 03:15:48 +03008536{
Jens Axboee9418942021-02-19 12:33:30 -07008537 struct io_wq_hash *hash;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008538 struct io_wq_data data;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008539 unsigned int concurrency;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008540
Yang Yingliang362a9e62021-07-20 16:38:05 +08008541 mutex_lock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008542 hash = ctx->hash_map;
8543 if (!hash) {
8544 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
Yang Yingliang362a9e62021-07-20 16:38:05 +08008545 if (!hash) {
8546 mutex_unlock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008547 return ERR_PTR(-ENOMEM);
Yang Yingliang362a9e62021-07-20 16:38:05 +08008548 }
Jens Axboee9418942021-02-19 12:33:30 -07008549 refcount_set(&hash->refs, 1);
8550 init_waitqueue_head(&hash->wait);
8551 ctx->hash_map = hash;
8552 }
Yang Yingliang362a9e62021-07-20 16:38:05 +08008553 mutex_unlock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008554
8555 data.hash = hash;
Jens Axboe685fe7f2021-03-08 09:37:51 -07008556 data.task = task;
Pavel Begunkovebc11b62021-08-09 13:04:05 +01008557 data.free_work = io_wq_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03008558 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008559
Jens Axboed25e3a32021-02-16 11:41:41 -07008560 /* Do QD, or 4 * CPUS, whatever is smallest */
8561 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Pavel Begunkov24369c22020-01-28 03:15:48 +03008562
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008563 return io_wq_create(concurrency, &data);
Pavel Begunkov24369c22020-01-28 03:15:48 +03008564}
8565
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008566static int io_uring_alloc_task_context(struct task_struct *task,
8567 struct io_ring_ctx *ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06008568{
8569 struct io_uring_task *tctx;
Jens Axboed8a6df12020-10-15 16:24:45 -06008570 int ret;
Jens Axboe0f212202020-09-13 13:09:39 -06008571
Pavel Begunkov09899b12021-06-14 02:36:22 +01008572 tctx = kzalloc(sizeof(*tctx), GFP_KERNEL);
Jens Axboe0f212202020-09-13 13:09:39 -06008573 if (unlikely(!tctx))
8574 return -ENOMEM;
8575
Jens Axboed8a6df12020-10-15 16:24:45 -06008576 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
8577 if (unlikely(ret)) {
8578 kfree(tctx);
8579 return ret;
8580 }
8581
Jens Axboe685fe7f2021-03-08 09:37:51 -07008582 tctx->io_wq = io_init_wq_offload(ctx, task);
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008583 if (IS_ERR(tctx->io_wq)) {
8584 ret = PTR_ERR(tctx->io_wq);
8585 percpu_counter_destroy(&tctx->inflight);
8586 kfree(tctx);
8587 return ret;
8588 }
8589
Jens Axboe0f212202020-09-13 13:09:39 -06008590 xa_init(&tctx->xa);
8591 init_waitqueue_head(&tctx->wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06008592 atomic_set(&tctx->in_idle, 0);
Pavel Begunkovb303fe22021-04-11 01:46:26 +01008593 atomic_set(&tctx->inflight_tracked, 0);
Jens Axboe0f212202020-09-13 13:09:39 -06008594 task->io_uring = tctx;
Jens Axboe7cbf1722021-02-10 00:03:20 +00008595 spin_lock_init(&tctx->task_lock);
8596 INIT_WQ_LIST(&tctx->task_list);
Jens Axboe7cbf1722021-02-10 00:03:20 +00008597 init_task_work(&tctx->task_work, tctx_task_work);
Jens Axboe0f212202020-09-13 13:09:39 -06008598 return 0;
8599}
8600
8601void __io_uring_free(struct task_struct *tsk)
8602{
8603 struct io_uring_task *tctx = tsk->io_uring;
8604
8605 WARN_ON_ONCE(!xa_empty(&tctx->xa));
Pavel Begunkovef8eaa42021-02-27 11:16:45 +00008606 WARN_ON_ONCE(tctx->io_wq);
Pavel Begunkov09899b12021-06-14 02:36:22 +01008607 WARN_ON_ONCE(tctx->cached_refs);
Pavel Begunkovef8eaa42021-02-27 11:16:45 +00008608
Jens Axboed8a6df12020-10-15 16:24:45 -06008609 percpu_counter_destroy(&tctx->inflight);
Jens Axboe0f212202020-09-13 13:09:39 -06008610 kfree(tctx);
8611 tsk->io_uring = NULL;
8612}
8613
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008614static int io_sq_offload_create(struct io_ring_ctx *ctx,
8615 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008616{
8617 int ret;
8618
Jens Axboed25e3a32021-02-16 11:41:41 -07008619 /* Retain compatibility with failing for an invalid attach attempt */
8620 if ((ctx->flags & (IORING_SETUP_ATTACH_WQ | IORING_SETUP_SQPOLL)) ==
8621 IORING_SETUP_ATTACH_WQ) {
8622 struct fd f;
8623
8624 f = fdget(p->wq_fd);
8625 if (!f.file)
8626 return -ENXIO;
Jens Axboe0cc936f2021-07-22 17:08:07 -06008627 if (f.file->f_op != &io_uring_fops) {
8628 fdput(f);
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008629 return -EINVAL;
Jens Axboe0cc936f2021-07-22 17:08:07 -06008630 }
8631 fdput(f);
Jens Axboed25e3a32021-02-16 11:41:41 -07008632 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07008633 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe46fe18b2021-03-04 12:39:36 -07008634 struct task_struct *tsk;
Jens Axboe534ca6d2020-09-02 13:52:19 -06008635 struct io_sq_data *sqd;
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008636 bool attached;
Jens Axboe534ca6d2020-09-02 13:52:19 -06008637
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008638 sqd = io_get_sq_data(p, &attached);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008639 if (IS_ERR(sqd)) {
8640 ret = PTR_ERR(sqd);
8641 goto err;
8642 }
Jens Axboe69fb2132020-09-14 11:16:23 -06008643
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +01008644 ctx->sq_creds = get_current_cred();
Jens Axboe534ca6d2020-09-02 13:52:19 -06008645 ctx->sq_data = sqd;
Jens Axboe917257d2019-04-13 09:28:55 -06008646 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8647 if (!ctx->sq_thread_idle)
8648 ctx->sq_thread_idle = HZ;
8649
Pavel Begunkov78d7f6b2021-03-10 13:13:53 +00008650 io_sq_thread_park(sqd);
Pavel Begunkovde75a3d2021-03-18 11:54:35 +00008651 list_add(&ctx->sqd_list, &sqd->ctx_list);
8652 io_sqd_update_thread_idle(sqd);
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008653 /* don't attach to a dying SQPOLL thread, would be racy */
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008654 ret = (attached && !sqd->thread) ? -ENXIO : 0;
Pavel Begunkov78d7f6b2021-03-10 13:13:53 +00008655 io_sq_thread_unpark(sqd);
8656
Pavel Begunkovde75a3d2021-03-18 11:54:35 +00008657 if (ret < 0)
8658 goto err;
8659 if (attached)
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008660 return 0;
Jens Axboeaa061652020-09-02 14:50:27 -06008661
Jens Axboe6c271ce2019-01-10 11:22:30 -07008662 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06008663 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008664
Jens Axboe917257d2019-04-13 09:28:55 -06008665 ret = -EINVAL;
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008666 if (cpu >= nr_cpu_ids || !cpu_online(cpu))
Jens Axboee8f98f242021-03-09 16:32:13 -07008667 goto err_sqpoll;
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008668 sqd->sq_cpu = cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008669 } else {
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008670 sqd->sq_cpu = -1;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008671 }
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008672
8673 sqd->task_pid = current->pid;
Jens Axboe5c2469e2021-03-11 10:17:56 -07008674 sqd->task_tgid = current->tgid;
Jens Axboe46fe18b2021-03-04 12:39:36 -07008675 tsk = create_io_thread(io_sq_thread, sqd, NUMA_NO_NODE);
8676 if (IS_ERR(tsk)) {
8677 ret = PTR_ERR(tsk);
Jens Axboee8f98f242021-03-09 16:32:13 -07008678 goto err_sqpoll;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008679 }
Pavel Begunkov97a73a02021-03-08 17:30:54 +00008680
Jens Axboe46fe18b2021-03-04 12:39:36 -07008681 sqd->thread = tsk;
Pavel Begunkov97a73a02021-03-08 17:30:54 +00008682 ret = io_uring_alloc_task_context(tsk, ctx);
Jens Axboe46fe18b2021-03-04 12:39:36 -07008683 wake_up_new_task(tsk);
Jens Axboe0f212202020-09-13 13:09:39 -06008684 if (ret)
8685 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008686 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8687 /* Can't have SQ_AFF without SQPOLL */
8688 ret = -EINVAL;
8689 goto err;
8690 }
8691
Jens Axboe2b188cc2019-01-07 10:46:33 -07008692 return 0;
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008693err_sqpoll:
8694 complete(&ctx->sq_data->exited);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008695err:
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008696 io_sq_thread_finish(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008697 return ret;
8698}
8699
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008700static inline void __io_unaccount_mem(struct user_struct *user,
8701 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008702{
8703 atomic_long_sub(nr_pages, &user->locked_vm);
8704}
8705
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008706static inline int __io_account_mem(struct user_struct *user,
8707 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008708{
8709 unsigned long page_limit, cur_pages, new_pages;
8710
8711 /* Don't allow more pages than we can safely lock */
8712 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8713
8714 do {
8715 cur_pages = atomic_long_read(&user->locked_vm);
8716 new_pages = cur_pages + nr_pages;
8717 if (new_pages > page_limit)
8718 return -ENOMEM;
8719 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8720 new_pages) != cur_pages);
8721
8722 return 0;
8723}
8724
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008725static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008726{
Jens Axboe62e398b2021-02-21 16:19:37 -07008727 if (ctx->user)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008728 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008729
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008730 if (ctx->mm_account)
8731 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008732}
8733
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008734static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008735{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008736 int ret;
8737
Jens Axboe62e398b2021-02-21 16:19:37 -07008738 if (ctx->user) {
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008739 ret = __io_account_mem(ctx->user, nr_pages);
8740 if (ret)
8741 return ret;
8742 }
8743
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008744 if (ctx->mm_account)
8745 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008746
8747 return 0;
8748}
8749
Jens Axboe2b188cc2019-01-07 10:46:33 -07008750static void io_mem_free(void *ptr)
8751{
Mark Rutland52e04ef2019-04-30 17:30:21 +01008752 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008753
Mark Rutland52e04ef2019-04-30 17:30:21 +01008754 if (!ptr)
8755 return;
8756
8757 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008758 if (put_page_testzero(page))
8759 free_compound_page(page);
8760}
8761
8762static void *io_mem_alloc(size_t size)
8763{
8764 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008765 __GFP_NORETRY | __GFP_ACCOUNT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008766
8767 return (void *) __get_free_pages(gfp_flags, get_order(size));
8768}
8769
Hristo Venev75b28af2019-08-26 17:23:46 +00008770static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
8771 size_t *sq_offset)
8772{
8773 struct io_rings *rings;
8774 size_t off, sq_array_size;
8775
8776 off = struct_size(rings, cqes, cq_entries);
8777 if (off == SIZE_MAX)
8778 return SIZE_MAX;
8779
8780#ifdef CONFIG_SMP
8781 off = ALIGN(off, SMP_CACHE_BYTES);
8782 if (off == 0)
8783 return SIZE_MAX;
8784#endif
8785
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02008786 if (sq_offset)
8787 *sq_offset = off;
8788
Hristo Venev75b28af2019-08-26 17:23:46 +00008789 sq_array_size = array_size(sizeof(u32), sq_entries);
8790 if (sq_array_size == SIZE_MAX)
8791 return SIZE_MAX;
8792
8793 if (check_add_overflow(off, sq_array_size, &off))
8794 return SIZE_MAX;
8795
Hristo Venev75b28af2019-08-26 17:23:46 +00008796 return off;
8797}
8798
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008799static void io_buffer_unmap(struct io_ring_ctx *ctx, struct io_mapped_ubuf **slot)
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008800{
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008801 struct io_mapped_ubuf *imu = *slot;
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008802 unsigned int i;
8803
Pavel Begunkov62248432021-04-28 13:11:29 +01008804 if (imu != ctx->dummy_ubuf) {
8805 for (i = 0; i < imu->nr_bvecs; i++)
8806 unpin_user_page(imu->bvec[i].bv_page);
8807 if (imu->acct_pages)
8808 io_unaccount_mem(ctx, imu->acct_pages);
8809 kvfree(imu);
8810 }
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008811 *slot = NULL;
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008812}
8813
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008814static void io_rsrc_buf_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
8815{
Pavel Begunkov634d00d2021-04-25 14:32:26 +01008816 io_buffer_unmap(ctx, &prsrc->buf);
8817 prsrc->buf = NULL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008818}
8819
8820static void __io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
Jens Axboeedafcce2019-01-09 09:16:05 -07008821{
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008822 unsigned int i;
Jens Axboeedafcce2019-01-09 09:16:05 -07008823
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008824 for (i = 0; i < ctx->nr_user_bufs; i++)
8825 io_buffer_unmap(ctx, &ctx->user_bufs[i]);
Jens Axboeedafcce2019-01-09 09:16:05 -07008826 kfree(ctx->user_bufs);
Zqiangbb6659c2021-04-30 16:25:15 +08008827 io_rsrc_data_free(ctx->buf_data);
Jens Axboeedafcce2019-01-09 09:16:05 -07008828 ctx->user_bufs = NULL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008829 ctx->buf_data = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008830 ctx->nr_user_bufs = 0;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008831}
8832
Jens Axboeedafcce2019-01-09 09:16:05 -07008833static int io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
8834{
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008835 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07008836
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008837 if (!ctx->buf_data)
Jens Axboeedafcce2019-01-09 09:16:05 -07008838 return -ENXIO;
8839
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008840 ret = io_rsrc_ref_quiesce(ctx->buf_data, ctx);
8841 if (!ret)
8842 __io_sqe_buffers_unregister(ctx);
8843 return ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07008844}
8845
8846static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8847 void __user *arg, unsigned index)
8848{
8849 struct iovec __user *src;
8850
8851#ifdef CONFIG_COMPAT
8852 if (ctx->compat) {
8853 struct compat_iovec __user *ciovs;
8854 struct compat_iovec ciov;
8855
8856 ciovs = (struct compat_iovec __user *) arg;
8857 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8858 return -EFAULT;
8859
Jens Axboed55e5f52019-12-11 16:12:15 -07008860 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07008861 dst->iov_len = ciov.iov_len;
8862 return 0;
8863 }
8864#endif
8865 src = (struct iovec __user *) arg;
8866 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8867 return -EFAULT;
8868 return 0;
8869}
8870
Jens Axboede293932020-09-17 16:19:16 -06008871/*
8872 * Not super efficient, but this is just a registration time. And we do cache
8873 * the last compound head, so generally we'll only do a full search if we don't
8874 * match that one.
8875 *
8876 * We check if the given compound head page has already been accounted, to
8877 * avoid double accounting it. This allows us to account the full size of the
8878 * page, not just the constituent pages of a huge page.
8879 */
8880static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8881 int nr_pages, struct page *hpage)
8882{
8883 int i, j;
8884
8885 /* check current page array */
8886 for (i = 0; i < nr_pages; i++) {
8887 if (!PageCompound(pages[i]))
8888 continue;
8889 if (compound_head(pages[i]) == hpage)
8890 return true;
8891 }
8892
8893 /* check previously registered pages */
8894 for (i = 0; i < ctx->nr_user_bufs; i++) {
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008895 struct io_mapped_ubuf *imu = ctx->user_bufs[i];
Jens Axboede293932020-09-17 16:19:16 -06008896
8897 for (j = 0; j < imu->nr_bvecs; j++) {
8898 if (!PageCompound(imu->bvec[j].bv_page))
8899 continue;
8900 if (compound_head(imu->bvec[j].bv_page) == hpage)
8901 return true;
8902 }
8903 }
8904
8905 return false;
8906}
8907
8908static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8909 int nr_pages, struct io_mapped_ubuf *imu,
8910 struct page **last_hpage)
8911{
8912 int i, ret;
8913
Pavel Begunkov216e5832021-05-29 12:01:02 +01008914 imu->acct_pages = 0;
Jens Axboede293932020-09-17 16:19:16 -06008915 for (i = 0; i < nr_pages; i++) {
8916 if (!PageCompound(pages[i])) {
8917 imu->acct_pages++;
8918 } else {
8919 struct page *hpage;
8920
8921 hpage = compound_head(pages[i]);
8922 if (hpage == *last_hpage)
8923 continue;
8924 *last_hpage = hpage;
8925 if (headpage_already_acct(ctx, pages, i, hpage))
8926 continue;
8927 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8928 }
8929 }
8930
8931 if (!imu->acct_pages)
8932 return 0;
8933
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008934 ret = io_account_mem(ctx, imu->acct_pages);
Jens Axboede293932020-09-17 16:19:16 -06008935 if (ret)
8936 imu->acct_pages = 0;
8937 return ret;
8938}
8939
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008940static int io_sqe_buffer_register(struct io_ring_ctx *ctx, struct iovec *iov,
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008941 struct io_mapped_ubuf **pimu,
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008942 struct page **last_hpage)
Jens Axboeedafcce2019-01-09 09:16:05 -07008943{
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008944 struct io_mapped_ubuf *imu = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008945 struct vm_area_struct **vmas = NULL;
8946 struct page **pages = NULL;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008947 unsigned long off, start, end, ubuf;
8948 size_t size;
8949 int ret, pret, nr_pages, i;
Jens Axboeedafcce2019-01-09 09:16:05 -07008950
Pavel Begunkov62248432021-04-28 13:11:29 +01008951 if (!iov->iov_base) {
8952 *pimu = ctx->dummy_ubuf;
8953 return 0;
8954 }
8955
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008956 ubuf = (unsigned long) iov->iov_base;
8957 end = (ubuf + iov->iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
8958 start = ubuf >> PAGE_SHIFT;
8959 nr_pages = end - start;
8960
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008961 *pimu = NULL;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008962 ret = -ENOMEM;
8963
8964 pages = kvmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
8965 if (!pages)
8966 goto done;
8967
8968 vmas = kvmalloc_array(nr_pages, sizeof(struct vm_area_struct *),
8969 GFP_KERNEL);
8970 if (!vmas)
8971 goto done;
8972
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008973 imu = kvmalloc(struct_size(imu, bvec, nr_pages), GFP_KERNEL);
Pavel Begunkova2b41982021-04-26 00:16:31 +01008974 if (!imu)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008975 goto done;
8976
8977 ret = 0;
8978 mmap_read_lock(current->mm);
8979 pret = pin_user_pages(ubuf, nr_pages, FOLL_WRITE | FOLL_LONGTERM,
8980 pages, vmas);
8981 if (pret == nr_pages) {
8982 /* don't support file backed memory */
8983 for (i = 0; i < nr_pages; i++) {
8984 struct vm_area_struct *vma = vmas[i];
8985
Pavel Begunkov40dad762021-06-09 15:26:54 +01008986 if (vma_is_shmem(vma))
8987 continue;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008988 if (vma->vm_file &&
8989 !is_file_hugepages(vma->vm_file)) {
8990 ret = -EOPNOTSUPP;
8991 break;
8992 }
8993 }
8994 } else {
8995 ret = pret < 0 ? pret : -EFAULT;
8996 }
8997 mmap_read_unlock(current->mm);
8998 if (ret) {
8999 /*
9000 * if we did partial map, or found file backed vmas,
9001 * release any pages we did get
9002 */
9003 if (pret > 0)
9004 unpin_user_pages(pages, pret);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009005 goto done;
9006 }
9007
9008 ret = io_buffer_account_pin(ctx, pages, pret, imu, last_hpage);
9009 if (ret) {
9010 unpin_user_pages(pages, pret);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009011 goto done;
9012 }
9013
9014 off = ubuf & ~PAGE_MASK;
9015 size = iov->iov_len;
9016 for (i = 0; i < nr_pages; i++) {
9017 size_t vec_len;
9018
9019 vec_len = min_t(size_t, size, PAGE_SIZE - off);
9020 imu->bvec[i].bv_page = pages[i];
9021 imu->bvec[i].bv_len = vec_len;
9022 imu->bvec[i].bv_offset = off;
9023 off = 0;
9024 size -= vec_len;
9025 }
9026 /* store original address for later verification */
9027 imu->ubuf = ubuf;
Pavel Begunkov4751f532021-04-01 15:43:55 +01009028 imu->ubuf_end = ubuf + iov->iov_len;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009029 imu->nr_bvecs = nr_pages;
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009030 *pimu = imu;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009031 ret = 0;
9032done:
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009033 if (ret)
9034 kvfree(imu);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009035 kvfree(pages);
9036 kvfree(vmas);
9037 return ret;
9038}
9039
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009040static int io_buffers_map_alloc(struct io_ring_ctx *ctx, unsigned int nr_args)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009041{
Pavel Begunkov87094462021-04-11 01:46:36 +01009042 ctx->user_bufs = kcalloc(nr_args, sizeof(*ctx->user_bufs), GFP_KERNEL);
9043 return ctx->user_bufs ? 0 : -ENOMEM;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009044}
9045
9046static int io_buffer_validate(struct iovec *iov)
9047{
Pavel Begunkov50e96982021-03-24 22:59:01 +00009048 unsigned long tmp, acct_len = iov->iov_len + (PAGE_SIZE - 1);
9049
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009050 /*
9051 * Don't impose further limits on the size and buffer
9052 * constraints here, we'll -EINVAL later when IO is
9053 * submitted if they are wrong.
9054 */
Pavel Begunkov62248432021-04-28 13:11:29 +01009055 if (!iov->iov_base)
9056 return iov->iov_len ? -EFAULT : 0;
9057 if (!iov->iov_len)
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009058 return -EFAULT;
9059
9060 /* arbitrary limit, but we need something */
9061 if (iov->iov_len > SZ_1G)
9062 return -EFAULT;
9063
Pavel Begunkov50e96982021-03-24 22:59:01 +00009064 if (check_add_overflow((unsigned long)iov->iov_base, acct_len, &tmp))
9065 return -EOVERFLOW;
9066
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009067 return 0;
9068}
9069
9070static int io_sqe_buffers_register(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009071 unsigned int nr_args, u64 __user *tags)
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009072{
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009073 struct page *last_hpage = NULL;
9074 struct io_rsrc_data *data;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009075 int i, ret;
9076 struct iovec iov;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009077
Pavel Begunkov87094462021-04-11 01:46:36 +01009078 if (ctx->user_bufs)
9079 return -EBUSY;
Pavel Begunkov489809e2021-05-14 12:06:44 +01009080 if (!nr_args || nr_args > IORING_MAX_REG_BUFFERS)
Pavel Begunkov87094462021-04-11 01:46:36 +01009081 return -EINVAL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009082 ret = io_rsrc_node_switch_start(ctx);
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009083 if (ret)
9084 return ret;
Pavel Begunkovd878c812021-06-14 02:36:18 +01009085 ret = io_rsrc_data_alloc(ctx, io_rsrc_buf_put, tags, nr_args, &data);
9086 if (ret)
9087 return ret;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009088 ret = io_buffers_map_alloc(ctx, nr_args);
9089 if (ret) {
Zqiangbb6659c2021-04-30 16:25:15 +08009090 io_rsrc_data_free(data);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009091 return ret;
9092 }
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009093
Pavel Begunkov87094462021-04-11 01:46:36 +01009094 for (i = 0; i < nr_args; i++, ctx->nr_user_bufs++) {
Jens Axboeedafcce2019-01-09 09:16:05 -07009095 ret = io_copy_iov(ctx, &iov, arg, i);
9096 if (ret)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009097 break;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009098 ret = io_buffer_validate(&iov);
9099 if (ret)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009100 break;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01009101 if (!iov.iov_base && *io_get_tag_slot(data, i)) {
Colin Ian Kingcf3770e2021-04-29 11:46:02 +01009102 ret = -EINVAL;
9103 break;
9104 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009105
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009106 ret = io_sqe_buffer_register(ctx, &iov, &ctx->user_bufs[i],
9107 &last_hpage);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009108 if (ret)
9109 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009110 }
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009111
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009112 WARN_ON_ONCE(ctx->buf_data);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009113
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009114 ctx->buf_data = data;
9115 if (ret)
9116 __io_sqe_buffers_unregister(ctx);
9117 else
9118 io_rsrc_node_switch(ctx, NULL);
Jens Axboeedafcce2019-01-09 09:16:05 -07009119 return ret;
9120}
9121
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009122static int __io_sqe_buffers_update(struct io_ring_ctx *ctx,
9123 struct io_uring_rsrc_update2 *up,
9124 unsigned int nr_args)
9125{
9126 u64 __user *tags = u64_to_user_ptr(up->tags);
9127 struct iovec iov, __user *iovs = u64_to_user_ptr(up->data);
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009128 struct page *last_hpage = NULL;
9129 bool needs_switch = false;
9130 __u32 done;
9131 int i, err;
9132
9133 if (!ctx->buf_data)
9134 return -ENXIO;
9135 if (up->offset + nr_args > ctx->nr_user_bufs)
9136 return -EINVAL;
9137
9138 for (done = 0; done < nr_args; done++) {
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009139 struct io_mapped_ubuf *imu;
9140 int offset = up->offset + done;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009141 u64 tag = 0;
9142
9143 err = io_copy_iov(ctx, &iov, iovs, done);
9144 if (err)
9145 break;
9146 if (tags && copy_from_user(&tag, &tags[done], sizeof(tag))) {
9147 err = -EFAULT;
9148 break;
9149 }
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009150 err = io_buffer_validate(&iov);
9151 if (err)
9152 break;
Colin Ian Kingcf3770e2021-04-29 11:46:02 +01009153 if (!iov.iov_base && tag) {
9154 err = -EINVAL;
9155 break;
9156 }
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009157 err = io_sqe_buffer_register(ctx, &iov, &imu, &last_hpage);
9158 if (err)
9159 break;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009160
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009161 i = array_index_nospec(offset, ctx->nr_user_bufs);
Pavel Begunkov62248432021-04-28 13:11:29 +01009162 if (ctx->user_bufs[i] != ctx->dummy_ubuf) {
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009163 err = io_queue_rsrc_removal(ctx->buf_data, offset,
9164 ctx->rsrc_node, ctx->user_bufs[i]);
9165 if (unlikely(err)) {
9166 io_buffer_unmap(ctx, &imu);
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009167 break;
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009168 }
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009169 ctx->user_bufs[i] = NULL;
9170 needs_switch = true;
9171 }
9172
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009173 ctx->user_bufs[i] = imu;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01009174 *io_get_tag_slot(ctx->buf_data, offset) = tag;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009175 }
9176
9177 if (needs_switch)
9178 io_rsrc_node_switch(ctx, ctx->buf_data);
9179 return done ? done : err;
9180}
9181
Jens Axboe9b402842019-04-11 11:45:41 -06009182static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
9183{
9184 __s32 __user *fds = arg;
9185 int fd;
9186
9187 if (ctx->cq_ev_fd)
9188 return -EBUSY;
9189
9190 if (copy_from_user(&fd, fds, sizeof(*fds)))
9191 return -EFAULT;
9192
9193 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
9194 if (IS_ERR(ctx->cq_ev_fd)) {
9195 int ret = PTR_ERR(ctx->cq_ev_fd);
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01009196
Jens Axboe9b402842019-04-11 11:45:41 -06009197 ctx->cq_ev_fd = NULL;
9198 return ret;
9199 }
9200
9201 return 0;
9202}
9203
9204static int io_eventfd_unregister(struct io_ring_ctx *ctx)
9205{
9206 if (ctx->cq_ev_fd) {
9207 eventfd_ctx_put(ctx->cq_ev_fd);
9208 ctx->cq_ev_fd = NULL;
9209 return 0;
9210 }
9211
9212 return -ENXIO;
9213}
9214
Jens Axboe5a2e7452020-02-23 16:23:11 -07009215static void io_destroy_buffers(struct io_ring_ctx *ctx)
9216{
Jens Axboe9e15c3a2021-03-13 12:29:43 -07009217 struct io_buffer *buf;
9218 unsigned long index;
9219
Jens Axboe8bab4c02021-09-24 07:12:27 -06009220 xa_for_each(&ctx->io_buffers, index, buf) {
Jens Axboe9e15c3a2021-03-13 12:29:43 -07009221 __io_remove_buffers(ctx, buf, index, -1U);
Jens Axboe8bab4c02021-09-24 07:12:27 -06009222 cond_resched();
9223 }
Jens Axboe5a2e7452020-02-23 16:23:11 -07009224}
9225
Pavel Begunkov72558342021-08-09 20:18:09 +01009226static void io_req_cache_free(struct list_head *list)
Jens Axboe1b4c3512021-02-10 00:03:19 +00009227{
Jens Axboe68e68ee2021-02-13 09:00:02 -07009228 struct io_kiocb *req, *nxt;
Jens Axboe1b4c3512021-02-10 00:03:19 +00009229
Pavel Begunkovbb943b82021-08-09 20:18:10 +01009230 list_for_each_entry_safe(req, nxt, list, inflight_entry) {
9231 list_del(&req->inflight_entry);
Jens Axboe1b4c3512021-02-10 00:03:19 +00009232 kmem_cache_free(req_cachep, req);
9233 }
9234}
9235
Jens Axboe4010fec2021-02-27 15:04:18 -07009236static void io_req_caches_free(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009237{
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009238 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkovbf019da2021-02-10 00:03:17 +00009239
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009240 mutex_lock(&ctx->uring_lock);
9241
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009242 if (state->free_reqs) {
9243 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
9244 state->free_reqs = 0;
Pavel Begunkov8e5c66c2021-02-22 11:45:55 +00009245 }
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009246
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009247 io_flush_cached_locked_reqs(ctx, state);
9248 io_req_cache_free(&state->free_list);
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009249 mutex_unlock(&ctx->uring_lock);
9250}
9251
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009252static void io_wait_rsrc_data(struct io_rsrc_data *data)
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009253{
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009254 if (data && !atomic_dec_and_test(&data->refs))
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009255 wait_for_completion(&data->done);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009256}
9257
Jens Axboe2b188cc2019-01-07 10:46:33 -07009258static void io_ring_ctx_free(struct io_ring_ctx *ctx)
9259{
Jens Axboe37d1e2e2021-02-17 21:03:43 -07009260 io_sq_thread_finish(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06009261
Jens Axboe37d1e2e2021-02-17 21:03:43 -07009262 if (ctx->mm_account) {
Jens Axboe2aede0e2020-09-14 10:45:53 -06009263 mmdrop(ctx->mm_account);
9264 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07009265 }
Jens Axboedef596e2019-01-09 08:59:42 -07009266
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009267 /* __io_rsrc_put_work() may need uring_lock to progress, wait w/o it */
9268 io_wait_rsrc_data(ctx->buf_data);
9269 io_wait_rsrc_data(ctx->file_data);
9270
Hao Xu8bad28d2021-02-19 17:19:36 +08009271 mutex_lock(&ctx->uring_lock);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009272 if (ctx->buf_data)
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009273 __io_sqe_buffers_unregister(ctx);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009274 if (ctx->file_data)
Pavel Begunkov08480402021-04-13 02:58:38 +01009275 __io_sqe_files_unregister(ctx);
Pavel Begunkovc4ea0602021-04-01 15:43:58 +01009276 if (ctx->rings)
9277 __io_cqring_overflow_flush(ctx, true);
Hao Xu8bad28d2021-02-19 17:19:36 +08009278 mutex_unlock(&ctx->uring_lock);
Jens Axboe9b402842019-04-11 11:45:41 -06009279 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07009280 io_destroy_buffers(ctx);
Pavel Begunkov07db2982021-04-20 12:03:32 +01009281 if (ctx->sq_creds)
9282 put_cred(ctx->sq_creds);
Jens Axboedef596e2019-01-09 08:59:42 -07009283
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009284 /* there are no registered resources left, nobody uses it */
9285 if (ctx->rsrc_node)
9286 io_rsrc_node_destroy(ctx->rsrc_node);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00009287 if (ctx->rsrc_backup_node)
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01009288 io_rsrc_node_destroy(ctx->rsrc_backup_node);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009289 flush_delayed_work(&ctx->rsrc_put_work);
9290
9291 WARN_ON_ONCE(!list_empty(&ctx->rsrc_ref_list));
9292 WARN_ON_ONCE(!llist_empty(&ctx->rsrc_put_llist));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009293
9294#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07009295 if (ctx->ring_sock) {
9296 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07009297 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07009298 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009299#endif
Pavel Begunkovef9dd632021-08-28 19:54:38 -06009300 WARN_ON_ONCE(!list_empty(&ctx->ltimeout_list));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009301
Hristo Venev75b28af2019-08-26 17:23:46 +00009302 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009303 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009304
9305 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009306 free_uid(ctx->user);
Jens Axboe4010fec2021-02-27 15:04:18 -07009307 io_req_caches_free(ctx);
Jens Axboee9418942021-02-19 12:33:30 -07009308 if (ctx->hash_map)
9309 io_wq_put_hash(ctx->hash_map);
Jens Axboe78076bb2019-12-04 19:56:40 -07009310 kfree(ctx->cancel_hash);
Pavel Begunkov62248432021-04-28 13:11:29 +01009311 kfree(ctx->dummy_ubuf);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009312 kfree(ctx);
9313}
9314
9315static __poll_t io_uring_poll(struct file *file, poll_table *wait)
9316{
9317 struct io_ring_ctx *ctx = file->private_data;
9318 __poll_t mask = 0;
9319
Pavel Begunkov311997b2021-06-14 23:37:28 +01009320 poll_wait(file, &ctx->poll_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02009321 /*
9322 * synchronizes with barrier from wq_has_sleeper call in
9323 * io_commit_cqring
9324 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07009325 smp_rmb();
Jens Axboe90554202020-09-03 12:12:41 -06009326 if (!io_sqring_full(ctx))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009327 mask |= EPOLLOUT | EPOLLWRNORM;
Hao Xued670c32021-02-05 16:34:21 +08009328
9329 /*
9330 * Don't flush cqring overflow list here, just do a simple check.
9331 * Otherwise there could possible be ABBA deadlock:
9332 * CPU0 CPU1
9333 * ---- ----
9334 * lock(&ctx->uring_lock);
9335 * lock(&ep->mtx);
9336 * lock(&ctx->uring_lock);
9337 * lock(&ep->mtx);
9338 *
9339 * Users may get EPOLLIN meanwhile seeing nothing in cqring, this
9340 * pushs them to do the flush.
9341 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01009342 if (io_cqring_events(ctx) || test_bit(0, &ctx->check_cq_overflow))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009343 mask |= EPOLLIN | EPOLLRDNORM;
9344
9345 return mask;
9346}
9347
9348static int io_uring_fasync(int fd, struct file *file, int on)
9349{
9350 struct io_ring_ctx *ctx = file->private_data;
9351
9352 return fasync_helper(fd, file, on, &ctx->cq_fasync);
9353}
9354
Yejune Deng0bead8c2020-12-24 11:02:20 +08009355static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
Jens Axboe071698e2020-01-28 10:04:42 -07009356{
Jens Axboe4379bf82021-02-15 13:40:22 -07009357 const struct cred *creds;
Jens Axboe071698e2020-01-28 10:04:42 -07009358
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009359 creds = xa_erase(&ctx->personalities, id);
Jens Axboe4379bf82021-02-15 13:40:22 -07009360 if (creds) {
9361 put_cred(creds);
Yejune Deng0bead8c2020-12-24 11:02:20 +08009362 return 0;
Jens Axboe1e6fa522020-10-15 08:46:24 -06009363 }
Yejune Deng0bead8c2020-12-24 11:02:20 +08009364
9365 return -EINVAL;
9366}
9367
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009368struct io_tctx_exit {
9369 struct callback_head task_work;
9370 struct completion completion;
Pavel Begunkovbaf186c2021-03-06 11:02:15 +00009371 struct io_ring_ctx *ctx;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009372};
9373
9374static void io_tctx_exit_cb(struct callback_head *cb)
9375{
9376 struct io_uring_task *tctx = current->io_uring;
9377 struct io_tctx_exit *work;
9378
9379 work = container_of(cb, struct io_tctx_exit, task_work);
9380 /*
9381 * When @in_idle, we're in cancellation and it's racy to remove the
9382 * node. It'll be removed by the end of cancellation, just ignore it.
9383 */
9384 if (!atomic_read(&tctx->in_idle))
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009385 io_uring_del_tctx_node((unsigned long)work->ctx);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009386 complete(&work->completion);
9387}
9388
Pavel Begunkov28090c12021-04-25 23:34:45 +01009389static bool io_cancel_ctx_cb(struct io_wq_work *work, void *data)
9390{
9391 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
9392
9393 return req->ctx == data;
9394}
9395
Jens Axboe85faa7b2020-04-09 18:14:00 -06009396static void io_ring_exit_work(struct work_struct *work)
9397{
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009398 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx, exit_work);
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009399 unsigned long timeout = jiffies + HZ * 60 * 5;
Pavel Begunkov58d3be22021-08-09 13:04:17 +01009400 unsigned long interval = HZ / 20;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009401 struct io_tctx_exit exit;
9402 struct io_tctx_node *node;
9403 int ret;
Jens Axboe85faa7b2020-04-09 18:14:00 -06009404
Jens Axboe56952e92020-06-17 15:00:04 -06009405 /*
9406 * If we're doing polled IO and end up having requests being
9407 * submitted async (out-of-line), then completions can come in while
9408 * we're waiting for refs to drop. We need to reap these manually,
9409 * as nobody else will be looking for them.
9410 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03009411 do {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009412 io_uring_try_cancel_requests(ctx, NULL, true);
Pavel Begunkov28090c12021-04-25 23:34:45 +01009413 if (ctx->sq_data) {
9414 struct io_sq_data *sqd = ctx->sq_data;
9415 struct task_struct *tsk;
9416
9417 io_sq_thread_park(sqd);
9418 tsk = sqd->thread;
9419 if (tsk && tsk->io_uring && tsk->io_uring->io_wq)
9420 io_wq_cancel_cb(tsk->io_uring->io_wq,
9421 io_cancel_ctx_cb, ctx, true);
9422 io_sq_thread_unpark(sqd);
9423 }
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009424
Pavel Begunkov58d3be22021-08-09 13:04:17 +01009425 if (WARN_ON_ONCE(time_after(jiffies, timeout))) {
9426 /* there is little hope left, don't run it too often */
9427 interval = HZ * 60;
9428 }
9429 } while (!wait_for_completion_timeout(&ctx->ref_comp, interval));
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009430
Pavel Begunkov7f006512021-04-14 13:38:34 +01009431 init_completion(&exit.completion);
9432 init_task_work(&exit.task_work, io_tctx_exit_cb);
9433 exit.ctx = ctx;
Pavel Begunkov89b50662021-04-01 15:43:50 +01009434 /*
9435 * Some may use context even when all refs and requests have been put,
9436 * and they are free to do so while still holding uring_lock or
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01009437 * completion_lock, see io_req_task_submit(). Apart from other work,
Pavel Begunkov89b50662021-04-01 15:43:50 +01009438 * this lock/unlock section also waits them to finish.
9439 */
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009440 mutex_lock(&ctx->uring_lock);
9441 while (!list_empty(&ctx->tctx_list)) {
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009442 WARN_ON_ONCE(time_after(jiffies, timeout));
9443
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009444 node = list_first_entry(&ctx->tctx_list, struct io_tctx_node,
9445 ctx_node);
Pavel Begunkov7f006512021-04-14 13:38:34 +01009446 /* don't spin on a single task if cancellation failed */
9447 list_rotate_left(&ctx->tctx_list);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009448 ret = task_work_add(node->task, &exit.task_work, TWA_SIGNAL);
9449 if (WARN_ON_ONCE(ret))
9450 continue;
9451 wake_up_process(node->task);
9452
9453 mutex_unlock(&ctx->uring_lock);
9454 wait_for_completion(&exit.completion);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009455 mutex_lock(&ctx->uring_lock);
9456 }
9457 mutex_unlock(&ctx->uring_lock);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009458 spin_lock(&ctx->completion_lock);
9459 spin_unlock(&ctx->completion_lock);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009460
Jens Axboe85faa7b2020-04-09 18:14:00 -06009461 io_ring_ctx_free(ctx);
9462}
9463
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009464/* Returns true if we found and killed one or more timeouts */
9465static bool io_kill_timeouts(struct io_ring_ctx *ctx, struct task_struct *tsk,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009466 bool cancel_all)
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009467{
9468 struct io_kiocb *req, *tmp;
9469 int canceled = 0;
9470
Jens Axboe79ebeae2021-08-10 15:18:27 -06009471 spin_lock(&ctx->completion_lock);
9472 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009473 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009474 if (io_match_task(req, tsk, cancel_all)) {
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009475 io_kill_timeout(req, -ECANCELED);
9476 canceled++;
9477 }
9478 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06009479 spin_unlock_irq(&ctx->timeout_lock);
Pavel Begunkov51520422021-03-29 11:39:29 +01009480 if (canceled != 0)
9481 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009482 spin_unlock(&ctx->completion_lock);
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009483 if (canceled != 0)
9484 io_cqring_ev_posted(ctx);
9485 return canceled != 0;
9486}
9487
Jens Axboe2b188cc2019-01-07 10:46:33 -07009488static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
9489{
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009490 unsigned long index;
9491 struct creds *creds;
9492
Jens Axboe2b188cc2019-01-07 10:46:33 -07009493 mutex_lock(&ctx->uring_lock);
9494 percpu_ref_kill(&ctx->refs);
Pavel Begunkov634578f2020-12-06 22:22:44 +00009495 if (ctx->rings)
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00009496 __io_cqring_overflow_flush(ctx, true);
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009497 xa_for_each(&ctx->personalities, index, creds)
9498 io_unregister_personality(ctx, index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009499 mutex_unlock(&ctx->uring_lock);
9500
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009501 io_kill_timeouts(ctx, NULL, true);
9502 io_poll_remove_all(ctx, NULL, true);
Jens Axboe561fb042019-10-24 07:25:42 -06009503
Jens Axboe15dff282019-11-13 09:09:23 -07009504 /* if we failed setting up the ctx, we might not have any rings */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03009505 io_iopoll_try_reap_events(ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06009506
Jens Axboe85faa7b2020-04-09 18:14:00 -06009507 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06009508 /*
9509 * Use system_unbound_wq to avoid spawning tons of event kworkers
9510 * if we're exiting a ton of rings at the same time. It just adds
9511 * noise and overhead, there's no discernable change in runtime
9512 * over using system_wq.
9513 */
9514 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009515}
9516
9517static int io_uring_release(struct inode *inode, struct file *file)
9518{
9519 struct io_ring_ctx *ctx = file->private_data;
9520
9521 file->private_data = NULL;
9522 io_ring_ctx_wait_and_kill(ctx);
9523 return 0;
9524}
9525
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009526struct io_task_cancel {
9527 struct task_struct *task;
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009528 bool all;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009529};
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03009530
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009531static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Jens Axboeb711d4e2020-08-16 08:23:05 -07009532{
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009533 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009534 struct io_task_cancel *cancel = data;
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009535 bool ret;
9536
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009537 if (!cancel->all && (req->flags & REQ_F_LINK_TIMEOUT)) {
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009538 struct io_ring_ctx *ctx = req->ctx;
9539
9540 /* protect against races with linked timeouts */
Jens Axboe79ebeae2021-08-10 15:18:27 -06009541 spin_lock(&ctx->completion_lock);
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009542 ret = io_match_task(req, cancel->task, cancel->all);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009543 spin_unlock(&ctx->completion_lock);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009544 } else {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009545 ret = io_match_task(req, cancel->task, cancel->all);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009546 }
9547 return ret;
Jens Axboeb711d4e2020-08-16 08:23:05 -07009548}
9549
Pavel Begunkove1915f72021-03-11 23:29:35 +00009550static bool io_cancel_defer_files(struct io_ring_ctx *ctx,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009551 struct task_struct *task, bool cancel_all)
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009552{
Pavel Begunkove1915f72021-03-11 23:29:35 +00009553 struct io_defer_entry *de;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009554 LIST_HEAD(list);
9555
Jens Axboe79ebeae2021-08-10 15:18:27 -06009556 spin_lock(&ctx->completion_lock);
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009557 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009558 if (io_match_task(de->req, task, cancel_all)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009559 list_cut_position(&list, &ctx->defer_list, &de->list);
9560 break;
9561 }
9562 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06009563 spin_unlock(&ctx->completion_lock);
Pavel Begunkove1915f72021-03-11 23:29:35 +00009564 if (list_empty(&list))
9565 return false;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009566
9567 while (!list_empty(&list)) {
9568 de = list_first_entry(&list, struct io_defer_entry, list);
9569 list_del_init(&de->list);
Pavel Begunkovf41db2732021-02-28 22:35:12 +00009570 io_req_complete_failed(de->req, -ECANCELED);
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009571 kfree(de);
9572 }
Pavel Begunkove1915f72021-03-11 23:29:35 +00009573 return true;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009574}
9575
Pavel Begunkov1b007642021-03-06 11:02:17 +00009576static bool io_uring_try_cancel_iowq(struct io_ring_ctx *ctx)
9577{
9578 struct io_tctx_node *node;
9579 enum io_wq_cancel cret;
9580 bool ret = false;
9581
9582 mutex_lock(&ctx->uring_lock);
9583 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
9584 struct io_uring_task *tctx = node->task->io_uring;
9585
9586 /*
9587 * io_wq will stay alive while we hold uring_lock, because it's
9588 * killed after ctx nodes, which requires to take the lock.
9589 */
9590 if (!tctx || !tctx->io_wq)
9591 continue;
9592 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_ctx_cb, ctx, true);
9593 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9594 }
9595 mutex_unlock(&ctx->uring_lock);
9596
9597 return ret;
9598}
9599
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009600static void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
9601 struct task_struct *task,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009602 bool cancel_all)
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009603{
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009604 struct io_task_cancel cancel = { .task = task, .all = cancel_all, };
Pavel Begunkov1b007642021-03-06 11:02:17 +00009605 struct io_uring_task *tctx = task ? task->io_uring : NULL;
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009606
9607 while (1) {
9608 enum io_wq_cancel cret;
9609 bool ret = false;
9610
Pavel Begunkov1b007642021-03-06 11:02:17 +00009611 if (!task) {
9612 ret |= io_uring_try_cancel_iowq(ctx);
9613 } else if (tctx && tctx->io_wq) {
9614 /*
9615 * Cancels requests of all rings, not only @ctx, but
9616 * it's fine as the task is in exit/exec.
9617 */
Jens Axboe5aa75ed2021-02-16 12:56:50 -07009618 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_task_cb,
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009619 &cancel, true);
9620 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9621 }
9622
9623 /* SQPOLL thread does its own polling */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009624 if ((!(ctx->flags & IORING_SETUP_SQPOLL) && cancel_all) ||
Jens Axboed052d1d2021-03-11 10:49:20 -07009625 (ctx->sq_data && ctx->sq_data->thread == current)) {
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009626 while (!list_empty_careful(&ctx->iopoll_list)) {
9627 io_iopoll_try_reap_events(ctx);
9628 ret = true;
9629 }
9630 }
9631
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009632 ret |= io_cancel_defer_files(ctx, task, cancel_all);
9633 ret |= io_poll_remove_all(ctx, task, cancel_all);
9634 ret |= io_kill_timeouts(ctx, task, cancel_all);
Pavel Begunkove5dc4802021-06-26 21:40:46 +01009635 if (task)
9636 ret |= io_run_task_work();
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009637 if (!ret)
9638 break;
9639 cond_resched();
9640 }
9641}
9642
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009643static int __io_uring_add_tctx_node(struct io_ring_ctx *ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06009644{
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009645 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009646 struct io_tctx_node *node;
Pavel Begunkova528b042020-12-21 18:34:04 +00009647 int ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009648
9649 if (unlikely(!tctx)) {
Jens Axboe5aa75ed2021-02-16 12:56:50 -07009650 ret = io_uring_alloc_task_context(current, ctx);
Jens Axboe0f212202020-09-13 13:09:39 -06009651 if (unlikely(ret))
9652 return ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009653 tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06009654 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009655 if (!xa_load(&tctx->xa, (unsigned long)ctx)) {
9656 node = kmalloc(sizeof(*node), GFP_KERNEL);
9657 if (!node)
9658 return -ENOMEM;
9659 node->ctx = ctx;
9660 node->task = current;
Jens Axboe0f212202020-09-13 13:09:39 -06009661
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009662 ret = xa_err(xa_store(&tctx->xa, (unsigned long)ctx,
9663 node, GFP_KERNEL));
9664 if (ret) {
9665 kfree(node);
9666 return ret;
Jens Axboe0f212202020-09-13 13:09:39 -06009667 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009668
9669 mutex_lock(&ctx->uring_lock);
9670 list_add(&node->ctx_node, &ctx->tctx_list);
9671 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009672 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009673 tctx->last = ctx;
Jens Axboe0f212202020-09-13 13:09:39 -06009674 return 0;
9675}
9676
9677/*
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009678 * Note that this task has used io_uring. We use it for cancelation purposes.
9679 */
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009680static inline int io_uring_add_tctx_node(struct io_ring_ctx *ctx)
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009681{
9682 struct io_uring_task *tctx = current->io_uring;
9683
9684 if (likely(tctx && tctx->last == ctx))
9685 return 0;
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009686 return __io_uring_add_tctx_node(ctx);
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009687}
9688
9689/*
Jens Axboe0f212202020-09-13 13:09:39 -06009690 * Remove this io_uring_file -> task mapping.
9691 */
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009692static void io_uring_del_tctx_node(unsigned long index)
Jens Axboe0f212202020-09-13 13:09:39 -06009693{
9694 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009695 struct io_tctx_node *node;
Pavel Begunkov29412672021-03-06 11:02:11 +00009696
Pavel Begunkoveebd2e32021-03-06 11:02:14 +00009697 if (!tctx)
9698 return;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009699 node = xa_erase(&tctx->xa, index);
9700 if (!node)
Pavel Begunkov29412672021-03-06 11:02:11 +00009701 return;
Jens Axboe0f212202020-09-13 13:09:39 -06009702
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009703 WARN_ON_ONCE(current != node->task);
9704 WARN_ON_ONCE(list_empty(&node->ctx_node));
9705
9706 mutex_lock(&node->ctx->uring_lock);
9707 list_del(&node->ctx_node);
9708 mutex_unlock(&node->ctx->uring_lock);
9709
Pavel Begunkovbaf186c2021-03-06 11:02:15 +00009710 if (tctx->last == node->ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06009711 tctx->last = NULL;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009712 kfree(node);
Jens Axboe0f212202020-09-13 13:09:39 -06009713}
9714
Pavel Begunkov8452d4a2021-02-27 11:16:46 +00009715static void io_uring_clean_tctx(struct io_uring_task *tctx)
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009716{
Pavel Begunkovba5ef6d2021-05-20 13:21:20 +01009717 struct io_wq *wq = tctx->io_wq;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009718 struct io_tctx_node *node;
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009719 unsigned long index;
9720
Jens Axboe8bab4c02021-09-24 07:12:27 -06009721 xa_for_each(&tctx->xa, index, node) {
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009722 io_uring_del_tctx_node(index);
Jens Axboe8bab4c02021-09-24 07:12:27 -06009723 cond_resched();
9724 }
Marco Elverb16ef422021-05-27 11:25:48 +02009725 if (wq) {
9726 /*
9727 * Must be after io_uring_del_task_file() (removes nodes under
9728 * uring_lock) to avoid race with io_uring_try_cancel_iowq().
9729 */
Pavel Begunkovba5ef6d2021-05-20 13:21:20 +01009730 io_wq_put_and_exit(wq);
Pavel Begunkovdadebc32021-08-23 13:30:44 +01009731 tctx->io_wq = NULL;
Marco Elverb16ef422021-05-27 11:25:48 +02009732 }
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009733}
9734
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009735static s64 tctx_inflight(struct io_uring_task *tctx, bool tracked)
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009736{
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009737 if (tracked)
9738 return atomic_read(&tctx->inflight_tracked);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009739 return percpu_counter_sum(&tctx->inflight);
9740}
9741
Pavel Begunkov09899b12021-06-14 02:36:22 +01009742static void io_uring_drop_tctx_refs(struct task_struct *task)
9743{
9744 struct io_uring_task *tctx = task->io_uring;
9745 unsigned int refs = tctx->cached_refs;
9746
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009747 if (refs) {
9748 tctx->cached_refs = 0;
9749 percpu_counter_sub(&tctx->inflight, refs);
9750 put_task_struct_many(task, refs);
9751 }
Pavel Begunkov09899b12021-06-14 02:36:22 +01009752}
9753
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009754/*
9755 * Find any io_uring ctx that this task has registered or done IO on, and cancel
9756 * requests. @sqd should be not-null IIF it's an SQPOLL thread cancellation.
9757 */
9758static void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd)
Pavel Begunkov0e9ddb32021-02-07 22:34:26 +00009759{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009760 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov734551d2021-04-18 14:52:09 +01009761 struct io_ring_ctx *ctx;
Jens Axboefdaf0832020-10-30 09:37:30 -06009762 s64 inflight;
Pavel Begunkov0e9ddb32021-02-07 22:34:26 +00009763 DEFINE_WAIT(wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06009764
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009765 WARN_ON_ONCE(sqd && sqd->thread != current);
9766
Palash Oswal6d042ff2021-04-27 18:21:49 +05309767 if (!current->io_uring)
9768 return;
Pavel Begunkov17a91052021-05-23 15:48:39 +01009769 if (tctx->io_wq)
9770 io_wq_exit_start(tctx->io_wq);
9771
Jens Axboefdaf0832020-10-30 09:37:30 -06009772 atomic_inc(&tctx->in_idle);
Jens Axboed8a6df12020-10-15 16:24:45 -06009773 do {
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009774 io_uring_drop_tctx_refs(current);
Jens Axboe0f212202020-09-13 13:09:39 -06009775 /* read completions before cancelations */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009776 inflight = tctx_inflight(tctx, !cancel_all);
Jens Axboed8a6df12020-10-15 16:24:45 -06009777 if (!inflight)
9778 break;
Jens Axboe0f212202020-09-13 13:09:39 -06009779
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009780 if (!sqd) {
9781 struct io_tctx_node *node;
9782 unsigned long index;
9783
9784 xa_for_each(&tctx->xa, index, node) {
9785 /* sqpoll task will cancel all its requests */
9786 if (node->ctx->sq_data)
9787 continue;
9788 io_uring_try_cancel_requests(node->ctx, current,
9789 cancel_all);
9790 }
9791 } else {
9792 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
9793 io_uring_try_cancel_requests(ctx, current,
9794 cancel_all);
9795 }
9796
9797 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009798 io_uring_drop_tctx_refs(current);
Jens Axboe0f212202020-09-13 13:09:39 -06009799 /*
Pavel Begunkova1bb3cd2021-01-26 15:28:26 +00009800 * If we've seen completions, retry without waiting. This
9801 * avoids a race where a completion comes in before we did
9802 * prepare_to_wait().
Jens Axboe0f212202020-09-13 13:09:39 -06009803 */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009804 if (inflight == tctx_inflight(tctx, !cancel_all))
Pavel Begunkova1bb3cd2021-01-26 15:28:26 +00009805 schedule();
Pavel Begunkovf57555e2020-12-20 13:21:44 +00009806 finish_wait(&tctx->wait, &wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06009807 } while (1);
Jens Axboefdaf0832020-10-30 09:37:30 -06009808 atomic_dec(&tctx->in_idle);
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009809
Pavel Begunkov8452d4a2021-02-27 11:16:46 +00009810 io_uring_clean_tctx(tctx);
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009811 if (cancel_all) {
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009812 /* for exec all current's requests should be gone, kill tctx */
9813 __io_uring_free(current);
9814 }
Pavel Begunkov44e728b2020-06-15 10:24:04 +03009815}
9816
Hao Xuf552a272021-08-12 12:14:35 +08009817void __io_uring_cancel(bool cancel_all)
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009818{
Hao Xuf552a272021-08-12 12:14:35 +08009819 io_uring_cancel_generic(cancel_all, NULL);
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009820}
9821
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009822static void *io_uring_validate_mmap_request(struct file *file,
9823 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009824{
Jens Axboe2b188cc2019-01-07 10:46:33 -07009825 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009826 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009827 struct page *page;
9828 void *ptr;
9829
9830 switch (offset) {
9831 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00009832 case IORING_OFF_CQ_RING:
9833 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009834 break;
9835 case IORING_OFF_SQES:
9836 ptr = ctx->sq_sqes;
9837 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009838 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009839 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009840 }
9841
9842 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07009843 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009844 return ERR_PTR(-EINVAL);
9845
9846 return ptr;
9847}
9848
9849#ifdef CONFIG_MMU
9850
9851static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9852{
9853 size_t sz = vma->vm_end - vma->vm_start;
9854 unsigned long pfn;
9855 void *ptr;
9856
9857 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
9858 if (IS_ERR(ptr))
9859 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009860
9861 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
9862 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
9863}
9864
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009865#else /* !CONFIG_MMU */
9866
9867static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9868{
9869 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
9870}
9871
9872static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
9873{
9874 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
9875}
9876
9877static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
9878 unsigned long addr, unsigned long len,
9879 unsigned long pgoff, unsigned long flags)
9880{
9881 void *ptr;
9882
9883 ptr = io_uring_validate_mmap_request(file, pgoff, len);
9884 if (IS_ERR(ptr))
9885 return PTR_ERR(ptr);
9886
9887 return (unsigned long) ptr;
9888}
9889
9890#endif /* !CONFIG_MMU */
9891
Pavel Begunkovd9d05212021-01-08 20:57:25 +00009892static int io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
Jens Axboe90554202020-09-03 12:12:41 -06009893{
9894 DEFINE_WAIT(wait);
9895
9896 do {
9897 if (!io_sqring_full(ctx))
9898 break;
Jens Axboe90554202020-09-03 12:12:41 -06009899 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9900
9901 if (!io_sqring_full(ctx))
9902 break;
Jens Axboe90554202020-09-03 12:12:41 -06009903 schedule();
9904 } while (!signal_pending(current));
9905
9906 finish_wait(&ctx->sqo_sq_wait, &wait);
Yang Li51993282021-03-09 14:30:41 +08009907 return 0;
Jens Axboe90554202020-09-03 12:12:41 -06009908}
9909
Hao Xuc73ebb62020-11-03 10:54:37 +08009910static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9911 struct __kernel_timespec __user **ts,
9912 const sigset_t __user **sig)
9913{
9914 struct io_uring_getevents_arg arg;
9915
9916 /*
9917 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9918 * is just a pointer to the sigset_t.
9919 */
9920 if (!(flags & IORING_ENTER_EXT_ARG)) {
9921 *sig = (const sigset_t __user *) argp;
9922 *ts = NULL;
9923 return 0;
9924 }
9925
9926 /*
9927 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9928 * timespec and sigset_t pointers if good.
9929 */
9930 if (*argsz != sizeof(arg))
9931 return -EINVAL;
9932 if (copy_from_user(&arg, argp, sizeof(arg)))
9933 return -EFAULT;
9934 *sig = u64_to_user_ptr(arg.sigmask);
9935 *argsz = arg.sigmask_sz;
9936 *ts = u64_to_user_ptr(arg.ts);
9937 return 0;
9938}
9939
Jens Axboe2b188cc2019-01-07 10:46:33 -07009940SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
Hao Xuc73ebb62020-11-03 10:54:37 +08009941 u32, min_complete, u32, flags, const void __user *, argp,
9942 size_t, argsz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009943{
9944 struct io_ring_ctx *ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009945 int submitted = 0;
9946 struct fd f;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009947 long ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009948
Jens Axboe4c6e2772020-07-01 11:29:10 -06009949 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07009950
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009951 if (unlikely(flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
9952 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009953 return -EINVAL;
9954
9955 f = fdget(fd);
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009956 if (unlikely(!f.file))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009957 return -EBADF;
9958
9959 ret = -EOPNOTSUPP;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009960 if (unlikely(f.file->f_op != &io_uring_fops))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009961 goto out_fput;
9962
9963 ret = -ENXIO;
9964 ctx = f.file->private_data;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009965 if (unlikely(!percpu_ref_tryget(&ctx->refs)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009966 goto out_fput;
9967
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009968 ret = -EBADFD;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009969 if (unlikely(ctx->flags & IORING_SETUP_R_DISABLED))
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009970 goto out;
9971
Jens Axboe6c271ce2019-01-10 11:22:30 -07009972 /*
9973 * For SQ polling, the thread will do all submissions and completions.
9974 * Just return the requested submit count, and wake the thread if
9975 * we were asked to.
9976 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009977 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07009978 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkov90f67362021-08-09 20:18:12 +01009979 io_cqring_overflow_flush(ctx);
Pavel Begunkov89448c42020-12-17 00:24:39 +00009980
Jens Axboe21f96522021-08-14 09:04:40 -06009981 if (unlikely(ctx->sq_data->thread == NULL)) {
9982 ret = -EOWNERDEAD;
Stefan Metzmacher04147482021-03-07 11:54:29 +01009983 goto out;
Jens Axboe21f96522021-08-14 09:04:40 -06009984 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009985 if (flags & IORING_ENTER_SQ_WAKEUP)
Jens Axboe534ca6d2020-09-02 13:52:19 -06009986 wake_up(&ctx->sq_data->wait);
Pavel Begunkovd9d05212021-01-08 20:57:25 +00009987 if (flags & IORING_ENTER_SQ_WAIT) {
9988 ret = io_sqpoll_wait_sq(ctx);
9989 if (ret)
9990 goto out;
9991 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009992 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009993 } else if (to_submit) {
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009994 ret = io_uring_add_tctx_node(ctx);
Jens Axboe0f212202020-09-13 13:09:39 -06009995 if (unlikely(ret))
9996 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009997 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009998 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009999 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +030010000
10001 if (submitted != to_submit)
10002 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010003 }
10004 if (flags & IORING_ENTER_GETEVENTS) {
Hao Xuc73ebb62020-11-03 10:54:37 +080010005 const sigset_t __user *sig;
10006 struct __kernel_timespec __user *ts;
10007
10008 ret = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
10009 if (unlikely(ret))
10010 goto out;
10011
Jens Axboe2b188cc2019-01-07 10:46:33 -070010012 min_complete = min(min_complete, ctx->cq_entries);
10013
Xiaoguang Wang32b22442020-03-11 09:26:09 +080010014 /*
10015 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
10016 * space applications don't need to do io completion events
10017 * polling again, they can rely on io_sq_thread to do polling
10018 * work, which can reduce cpu usage and uring_lock contention.
10019 */
10020 if (ctx->flags & IORING_SETUP_IOPOLL &&
10021 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +030010022 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -070010023 } else {
Hao Xuc73ebb62020-11-03 10:54:37 +080010024 ret = io_cqring_wait(ctx, min_complete, sig, argsz, ts);
Jens Axboedef596e2019-01-09 08:59:42 -070010025 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010026 }
10027
Pavel Begunkov7c504e652019-12-18 19:53:45 +030010028out:
Pavel Begunkov6805b322019-10-08 02:18:42 +030010029 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010030out_fput:
10031 fdput(f);
10032 return submitted ? submitted : ret;
10033}
10034
Tobias Klauserbebdb652020-02-26 18:38:32 +010010035#ifdef CONFIG_PROC_FS
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010036static int io_uring_show_cred(struct seq_file *m, unsigned int id,
10037 const struct cred *cred)
Jens Axboe87ce9552020-01-30 08:25:34 -070010038{
Jens Axboe87ce9552020-01-30 08:25:34 -070010039 struct user_namespace *uns = seq_user_ns(m);
10040 struct group_info *gi;
10041 kernel_cap_t cap;
10042 unsigned __capi;
10043 int g;
10044
10045 seq_printf(m, "%5d\n", id);
10046 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
10047 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
10048 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
10049 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
10050 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
10051 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
10052 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
10053 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
10054 seq_puts(m, "\n\tGroups:\t");
10055 gi = cred->group_info;
10056 for (g = 0; g < gi->ngroups; g++) {
10057 seq_put_decimal_ull(m, g ? " " : "",
10058 from_kgid_munged(uns, gi->gid[g]));
10059 }
10060 seq_puts(m, "\n\tCapEff:\t");
10061 cap = cred->cap_effective;
10062 CAP_FOR_EACH_U32(__capi)
10063 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
10064 seq_putc(m, '\n');
10065 return 0;
10066}
10067
10068static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
10069{
Joseph Qidbbe9c62020-09-29 09:01:22 -060010070 struct io_sq_data *sq = NULL;
Jens Axboefad8e0d2020-09-28 08:57:48 -060010071 bool has_lock;
Jens Axboe87ce9552020-01-30 08:25:34 -070010072 int i;
10073
Jens Axboefad8e0d2020-09-28 08:57:48 -060010074 /*
10075 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
10076 * since fdinfo case grabs it in the opposite direction of normal use
10077 * cases. If we fail to get the lock, we just don't iterate any
10078 * structures that could be going away outside the io_uring mutex.
10079 */
10080 has_lock = mutex_trylock(&ctx->uring_lock);
10081
Jens Axboe5f3f26f2021-02-25 10:17:46 -070010082 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL)) {
Joseph Qidbbe9c62020-09-29 09:01:22 -060010083 sq = ctx->sq_data;
Jens Axboe5f3f26f2021-02-25 10:17:46 -070010084 if (!sq->thread)
10085 sq = NULL;
10086 }
Joseph Qidbbe9c62020-09-29 09:01:22 -060010087
10088 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
10089 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
Jens Axboe87ce9552020-01-30 08:25:34 -070010090 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010091 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe7b29f922021-03-12 08:30:14 -070010092 struct file *f = io_file_from_index(ctx, i);
Jens Axboe87ce9552020-01-30 08:25:34 -070010093
Jens Axboe87ce9552020-01-30 08:25:34 -070010094 if (f)
10095 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
10096 else
10097 seq_printf(m, "%5u: <none>\n", i);
10098 }
10099 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010100 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Pavel Begunkov41edf1a2021-04-25 14:32:23 +010010101 struct io_mapped_ubuf *buf = ctx->user_bufs[i];
Pavel Begunkov4751f532021-04-01 15:43:55 +010010102 unsigned int len = buf->ubuf_end - buf->ubuf;
Jens Axboe87ce9552020-01-30 08:25:34 -070010103
Pavel Begunkov4751f532021-04-01 15:43:55 +010010104 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf, len);
Jens Axboe87ce9552020-01-30 08:25:34 -070010105 }
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010106 if (has_lock && !xa_empty(&ctx->personalities)) {
10107 unsigned long index;
10108 const struct cred *cred;
10109
Jens Axboe87ce9552020-01-30 08:25:34 -070010110 seq_printf(m, "Personalities:\n");
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010111 xa_for_each(&ctx->personalities, index, cred)
10112 io_uring_show_cred(m, index, cred);
Jens Axboe87ce9552020-01-30 08:25:34 -070010113 }
Jens Axboed7718a92020-02-14 22:23:12 -070010114 seq_printf(m, "PollList:\n");
Jens Axboe79ebeae2021-08-10 15:18:27 -060010115 spin_lock(&ctx->completion_lock);
Jens Axboed7718a92020-02-14 22:23:12 -070010116 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
10117 struct hlist_head *list = &ctx->cancel_hash[i];
10118 struct io_kiocb *req;
10119
10120 hlist_for_each_entry(req, list, hash_node)
10121 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
10122 req->task->task_works != NULL);
10123 }
Jens Axboe79ebeae2021-08-10 15:18:27 -060010124 spin_unlock(&ctx->completion_lock);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010125 if (has_lock)
10126 mutex_unlock(&ctx->uring_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -070010127}
10128
10129static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
10130{
10131 struct io_ring_ctx *ctx = f->private_data;
10132
10133 if (percpu_ref_tryget(&ctx->refs)) {
10134 __io_uring_show_fdinfo(ctx, m);
10135 percpu_ref_put(&ctx->refs);
10136 }
10137}
Tobias Klauserbebdb652020-02-26 18:38:32 +010010138#endif
Jens Axboe87ce9552020-01-30 08:25:34 -070010139
Jens Axboe2b188cc2019-01-07 10:46:33 -070010140static const struct file_operations io_uring_fops = {
10141 .release = io_uring_release,
10142 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +010010143#ifndef CONFIG_MMU
10144 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
10145 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
10146#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -070010147 .poll = io_uring_poll,
10148 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +010010149#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -070010150 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +010010151#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -070010152};
10153
10154static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
10155 struct io_uring_params *p)
10156{
Hristo Venev75b28af2019-08-26 17:23:46 +000010157 struct io_rings *rings;
10158 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010159
Jens Axboebd740482020-08-05 12:58:23 -060010160 /* make sure these are sane, as we already accounted them */
10161 ctx->sq_entries = p->sq_entries;
10162 ctx->cq_entries = p->cq_entries;
10163
Hristo Venev75b28af2019-08-26 17:23:46 +000010164 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
10165 if (size == SIZE_MAX)
10166 return -EOVERFLOW;
10167
10168 rings = io_mem_alloc(size);
10169 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010170 return -ENOMEM;
10171
Hristo Venev75b28af2019-08-26 17:23:46 +000010172 ctx->rings = rings;
10173 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
10174 rings->sq_ring_mask = p->sq_entries - 1;
10175 rings->cq_ring_mask = p->cq_entries - 1;
10176 rings->sq_ring_entries = p->sq_entries;
10177 rings->cq_ring_entries = p->cq_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010178
10179 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -070010180 if (size == SIZE_MAX) {
10181 io_mem_free(ctx->rings);
10182 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010183 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -070010184 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010185
10186 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -070010187 if (!ctx->sq_sqes) {
10188 io_mem_free(ctx->rings);
10189 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010190 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -070010191 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010192
Jens Axboe2b188cc2019-01-07 10:46:33 -070010193 return 0;
10194}
10195
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010196static int io_uring_install_fd(struct io_ring_ctx *ctx, struct file *file)
10197{
10198 int ret, fd;
10199
10200 fd = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
10201 if (fd < 0)
10202 return fd;
10203
Pavel Begunkoveef51da2021-06-14 02:36:15 +010010204 ret = io_uring_add_tctx_node(ctx);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010205 if (ret) {
10206 put_unused_fd(fd);
10207 return ret;
10208 }
10209 fd_install(fd, file);
10210 return fd;
10211}
10212
Jens Axboe2b188cc2019-01-07 10:46:33 -070010213/*
10214 * Allocate an anonymous fd, this is what constitutes the application
10215 * visible backing of an io_uring instance. The application mmaps this
10216 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
10217 * we have to tie this fd to a socket for file garbage collection purposes.
10218 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010219static struct file *io_uring_get_file(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010220{
10221 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010222#if defined(CONFIG_UNIX)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010223 int ret;
10224
Jens Axboe2b188cc2019-01-07 10:46:33 -070010225 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
10226 &ctx->ring_sock);
10227 if (ret)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010228 return ERR_PTR(ret);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010229#endif
10230
Jens Axboe2b188cc2019-01-07 10:46:33 -070010231 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
10232 O_RDWR | O_CLOEXEC);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010233#if defined(CONFIG_UNIX)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010234 if (IS_ERR(file)) {
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010235 sock_release(ctx->ring_sock);
10236 ctx->ring_sock = NULL;
10237 } else {
10238 ctx->ring_sock->file = file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010239 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010240#endif
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010241 return file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010242}
10243
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010244static int io_uring_create(unsigned entries, struct io_uring_params *p,
10245 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010246{
Jens Axboe2b188cc2019-01-07 10:46:33 -070010247 struct io_ring_ctx *ctx;
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010248 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010249 int ret;
10250
Jens Axboe8110c1a2019-12-28 15:39:54 -070010251 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010252 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -070010253 if (entries > IORING_MAX_ENTRIES) {
10254 if (!(p->flags & IORING_SETUP_CLAMP))
10255 return -EINVAL;
10256 entries = IORING_MAX_ENTRIES;
10257 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010258
10259 /*
10260 * Use twice as many entries for the CQ ring. It's possible for the
10261 * application to drive a higher depth than the size of the SQ ring,
10262 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -060010263 * some flexibility in overcommitting a bit. If the application has
10264 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
10265 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -070010266 */
10267 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -060010268 if (p->flags & IORING_SETUP_CQSIZE) {
10269 /*
10270 * If IORING_SETUP_CQSIZE is set, we do the same roundup
10271 * to a power-of-two, if it isn't already. We do NOT impose
10272 * any cq vs sq ring sizing.
10273 */
Joseph Qieb2667b32020-11-24 15:03:03 +080010274 if (!p->cq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -060010275 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -070010276 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
10277 if (!(p->flags & IORING_SETUP_CLAMP))
10278 return -EINVAL;
10279 p->cq_entries = IORING_MAX_CQ_ENTRIES;
10280 }
Joseph Qieb2667b32020-11-24 15:03:03 +080010281 p->cq_entries = roundup_pow_of_two(p->cq_entries);
10282 if (p->cq_entries < p->sq_entries)
10283 return -EINVAL;
Jens Axboe33a107f2019-10-04 12:10:03 -060010284 } else {
10285 p->cq_entries = 2 * p->sq_entries;
10286 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010287
Jens Axboe2b188cc2019-01-07 10:46:33 -070010288 ctx = io_ring_ctx_alloc(p);
Jens Axboe62e398b2021-02-21 16:19:37 -070010289 if (!ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010290 return -ENOMEM;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010291 ctx->compat = in_compat_syscall();
Jens Axboe62e398b2021-02-21 16:19:37 -070010292 if (!capable(CAP_IPC_LOCK))
10293 ctx->user = get_uid(current_user());
Jens Axboe2aede0e2020-09-14 10:45:53 -060010294
10295 /*
10296 * This is just grabbed for accounting purposes. When a process exits,
10297 * the mm is exited and dropped before the files, hence we need to hang
10298 * on to this mm purely for the purposes of being able to unaccount
10299 * memory (locked/pinned vm). It's not used for anything else.
10300 */
Jens Axboe6b7898e2020-08-25 07:58:00 -060010301 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -060010302 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -060010303
Jens Axboe2b188cc2019-01-07 10:46:33 -070010304 ret = io_allocate_scq_urings(ctx, p);
10305 if (ret)
10306 goto err;
10307
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010308 ret = io_sq_offload_create(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010309 if (ret)
10310 goto err;
Pavel Begunkoveae071c2021-04-25 14:32:24 +010010311 /* always set a rsrc node */
Pavel Begunkov47b228c2021-04-29 11:46:48 +010010312 ret = io_rsrc_node_switch_start(ctx);
10313 if (ret)
10314 goto err;
Pavel Begunkoveae071c2021-04-25 14:32:24 +010010315 io_rsrc_node_switch(ctx, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010316
Jens Axboe2b188cc2019-01-07 10:46:33 -070010317 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +000010318 p->sq_off.head = offsetof(struct io_rings, sq.head);
10319 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
10320 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
10321 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
10322 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
10323 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
10324 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010325
10326 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +000010327 p->cq_off.head = offsetof(struct io_rings, cq.head);
10328 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
10329 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
10330 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
10331 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
10332 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +020010333 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -060010334
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010335 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
10336 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +080010337 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
Hao Xuc73ebb62020-11-03 10:54:37 +080010338 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
Pavel Begunkov96905572021-06-10 16:37:38 +010010339 IORING_FEAT_EXT_ARG | IORING_FEAT_NATIVE_WORKERS |
10340 IORING_FEAT_RSRC_TAGS;
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010341
10342 if (copy_to_user(params, p, sizeof(*p))) {
10343 ret = -EFAULT;
10344 goto err;
10345 }
Jens Axboed1719f72020-07-30 13:43:53 -060010346
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010347 file = io_uring_get_file(ctx);
10348 if (IS_ERR(file)) {
10349 ret = PTR_ERR(file);
10350 goto err;
10351 }
10352
Jens Axboed1719f72020-07-30 13:43:53 -060010353 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -060010354 * Install ring fd as the very last thing, so we don't risk someone
10355 * having closed it before we finish setup
10356 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010357 ret = io_uring_install_fd(ctx, file);
10358 if (ret < 0) {
10359 /* fput will clean it up */
10360 fput(file);
10361 return ret;
10362 }
Jens Axboe044c1ab2019-10-28 09:15:33 -060010363
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010364 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010365 return ret;
10366err:
10367 io_ring_ctx_wait_and_kill(ctx);
10368 return ret;
10369}
10370
10371/*
10372 * Sets up an aio uring context, and returns the fd. Applications asks for a
10373 * ring size, we return the actual sq/cq ring sizes (among other things) in the
10374 * params structure passed in.
10375 */
10376static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
10377{
10378 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010379 int i;
10380
10381 if (copy_from_user(&p, params, sizeof(p)))
10382 return -EFAULT;
10383 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
10384 if (p.resv[i])
10385 return -EINVAL;
10386 }
10387
Jens Axboe6c271ce2019-01-10 11:22:30 -070010388 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -070010389 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010390 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
10391 IORING_SETUP_R_DISABLED))
Jens Axboe2b188cc2019-01-07 10:46:33 -070010392 return -EINVAL;
10393
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010394 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010395}
10396
10397SYSCALL_DEFINE2(io_uring_setup, u32, entries,
10398 struct io_uring_params __user *, params)
10399{
10400 return io_uring_setup(entries, params);
10401}
10402
Jens Axboe66f4af92020-01-16 15:36:52 -070010403static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
10404{
10405 struct io_uring_probe *p;
10406 size_t size;
10407 int i, ret;
10408
10409 size = struct_size(p, ops, nr_args);
10410 if (size == SIZE_MAX)
10411 return -EOVERFLOW;
10412 p = kzalloc(size, GFP_KERNEL);
10413 if (!p)
10414 return -ENOMEM;
10415
10416 ret = -EFAULT;
10417 if (copy_from_user(p, arg, size))
10418 goto out;
10419 ret = -EINVAL;
10420 if (memchr_inv(p, 0, size))
10421 goto out;
10422
10423 p->last_op = IORING_OP_LAST - 1;
10424 if (nr_args > IORING_OP_LAST)
10425 nr_args = IORING_OP_LAST;
10426
10427 for (i = 0; i < nr_args; i++) {
10428 p->ops[i].op = i;
10429 if (!io_op_defs[i].not_supported)
10430 p->ops[i].flags = IO_URING_OP_SUPPORTED;
10431 }
10432 p->ops_len = i;
10433
10434 ret = 0;
10435 if (copy_to_user(arg, p, size))
10436 ret = -EFAULT;
10437out:
10438 kfree(p);
10439 return ret;
10440}
10441
Jens Axboe071698e2020-01-28 10:04:42 -070010442static int io_register_personality(struct io_ring_ctx *ctx)
10443{
Jens Axboe4379bf82021-02-15 13:40:22 -070010444 const struct cred *creds;
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010445 u32 id;
Jens Axboe1e6fa522020-10-15 08:46:24 -060010446 int ret;
Jens Axboe071698e2020-01-28 10:04:42 -070010447
Jens Axboe4379bf82021-02-15 13:40:22 -070010448 creds = get_current_cred();
Jens Axboe1e6fa522020-10-15 08:46:24 -060010449
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010450 ret = xa_alloc_cyclic(&ctx->personalities, &id, (void *)creds,
10451 XA_LIMIT(0, USHRT_MAX), &ctx->pers_next, GFP_KERNEL);
Jens Axboea30f8952021-08-20 14:53:59 -060010452 if (ret < 0) {
10453 put_cred(creds);
10454 return ret;
10455 }
10456 return id;
Jens Axboe071698e2020-01-28 10:04:42 -070010457}
10458
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010459static int io_register_restrictions(struct io_ring_ctx *ctx, void __user *arg,
10460 unsigned int nr_args)
10461{
10462 struct io_uring_restriction *res;
10463 size_t size;
10464 int i, ret;
10465
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010466 /* Restrictions allowed only if rings started disabled */
10467 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10468 return -EBADFD;
10469
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010470 /* We allow only a single restrictions registration */
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010471 if (ctx->restrictions.registered)
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010472 return -EBUSY;
10473
10474 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
10475 return -EINVAL;
10476
10477 size = array_size(nr_args, sizeof(*res));
10478 if (size == SIZE_MAX)
10479 return -EOVERFLOW;
10480
10481 res = memdup_user(arg, size);
10482 if (IS_ERR(res))
10483 return PTR_ERR(res);
10484
10485 ret = 0;
10486
10487 for (i = 0; i < nr_args; i++) {
10488 switch (res[i].opcode) {
10489 case IORING_RESTRICTION_REGISTER_OP:
10490 if (res[i].register_op >= IORING_REGISTER_LAST) {
10491 ret = -EINVAL;
10492 goto out;
10493 }
10494
10495 __set_bit(res[i].register_op,
10496 ctx->restrictions.register_op);
10497 break;
10498 case IORING_RESTRICTION_SQE_OP:
10499 if (res[i].sqe_op >= IORING_OP_LAST) {
10500 ret = -EINVAL;
10501 goto out;
10502 }
10503
10504 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
10505 break;
10506 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
10507 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
10508 break;
10509 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
10510 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
10511 break;
10512 default:
10513 ret = -EINVAL;
10514 goto out;
10515 }
10516 }
10517
10518out:
10519 /* Reset all restrictions if an error happened */
10520 if (ret != 0)
10521 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
10522 else
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010523 ctx->restrictions.registered = true;
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010524
10525 kfree(res);
10526 return ret;
10527}
10528
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010529static int io_register_enable_rings(struct io_ring_ctx *ctx)
10530{
10531 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10532 return -EBADFD;
10533
10534 if (ctx->restrictions.registered)
10535 ctx->restricted = 1;
10536
Pavel Begunkov0298ef92021-03-08 13:20:57 +000010537 ctx->flags &= ~IORING_SETUP_R_DISABLED;
10538 if (ctx->sq_data && wq_has_sleeper(&ctx->sq_data->wait))
10539 wake_up(&ctx->sq_data->wait);
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010540 return 0;
10541}
10542
Pavel Begunkovfdecb662021-04-25 14:32:20 +010010543static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010544 struct io_uring_rsrc_update2 *up,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010545 unsigned nr_args)
10546{
10547 __u32 tmp;
10548 int err;
10549
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010550 if (up->resv)
10551 return -EINVAL;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010552 if (check_add_overflow(up->offset, nr_args, &tmp))
10553 return -EOVERFLOW;
10554 err = io_rsrc_node_switch_start(ctx);
10555 if (err)
10556 return err;
10557
Pavel Begunkovfdecb662021-04-25 14:32:20 +010010558 switch (type) {
10559 case IORING_RSRC_FILE:
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010560 return __io_sqe_files_update(ctx, up, nr_args);
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010561 case IORING_RSRC_BUFFER:
10562 return __io_sqe_buffers_update(ctx, up, nr_args);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010563 }
10564 return -EINVAL;
10565}
10566
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010567static int io_register_files_update(struct io_ring_ctx *ctx, void __user *arg,
10568 unsigned nr_args)
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010569{
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010570 struct io_uring_rsrc_update2 up;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010571
10572 if (!nr_args)
10573 return -EINVAL;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010574 memset(&up, 0, sizeof(up));
10575 if (copy_from_user(&up, arg, sizeof(struct io_uring_rsrc_update)))
10576 return -EFAULT;
10577 return __io_register_rsrc_update(ctx, IORING_RSRC_FILE, &up, nr_args);
10578}
10579
10580static int io_register_rsrc_update(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov992da012021-06-10 16:37:37 +010010581 unsigned size, unsigned type)
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010582{
10583 struct io_uring_rsrc_update2 up;
10584
10585 if (size != sizeof(up))
10586 return -EINVAL;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010587 if (copy_from_user(&up, arg, sizeof(up)))
10588 return -EFAULT;
Pavel Begunkov992da012021-06-10 16:37:37 +010010589 if (!up.nr || up.resv)
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010590 return -EINVAL;
Pavel Begunkov992da012021-06-10 16:37:37 +010010591 return __io_register_rsrc_update(ctx, type, &up, up.nr);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010592}
10593
Pavel Begunkov792e3582021-04-25 14:32:21 +010010594static int io_register_rsrc(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov992da012021-06-10 16:37:37 +010010595 unsigned int size, unsigned int type)
Pavel Begunkov792e3582021-04-25 14:32:21 +010010596{
10597 struct io_uring_rsrc_register rr;
10598
10599 /* keep it extendible */
10600 if (size != sizeof(rr))
10601 return -EINVAL;
10602
10603 memset(&rr, 0, sizeof(rr));
10604 if (copy_from_user(&rr, arg, size))
10605 return -EFAULT;
Pavel Begunkov992da012021-06-10 16:37:37 +010010606 if (!rr.nr || rr.resv || rr.resv2)
Pavel Begunkov792e3582021-04-25 14:32:21 +010010607 return -EINVAL;
10608
Pavel Begunkov992da012021-06-10 16:37:37 +010010609 switch (type) {
Pavel Begunkov792e3582021-04-25 14:32:21 +010010610 case IORING_RSRC_FILE:
10611 return io_sqe_files_register(ctx, u64_to_user_ptr(rr.data),
10612 rr.nr, u64_to_user_ptr(rr.tags));
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010613 case IORING_RSRC_BUFFER:
10614 return io_sqe_buffers_register(ctx, u64_to_user_ptr(rr.data),
10615 rr.nr, u64_to_user_ptr(rr.tags));
Pavel Begunkov792e3582021-04-25 14:32:21 +010010616 }
10617 return -EINVAL;
10618}
10619
Jens Axboefe764212021-06-17 10:19:54 -060010620static int io_register_iowq_aff(struct io_ring_ctx *ctx, void __user *arg,
10621 unsigned len)
10622{
10623 struct io_uring_task *tctx = current->io_uring;
10624 cpumask_var_t new_mask;
10625 int ret;
10626
10627 if (!tctx || !tctx->io_wq)
10628 return -EINVAL;
10629
10630 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
10631 return -ENOMEM;
10632
10633 cpumask_clear(new_mask);
10634 if (len > cpumask_size())
10635 len = cpumask_size();
10636
10637 if (copy_from_user(new_mask, arg, len)) {
10638 free_cpumask_var(new_mask);
10639 return -EFAULT;
10640 }
10641
10642 ret = io_wq_cpu_affinity(tctx->io_wq, new_mask);
10643 free_cpumask_var(new_mask);
10644 return ret;
10645}
10646
10647static int io_unregister_iowq_aff(struct io_ring_ctx *ctx)
10648{
10649 struct io_uring_task *tctx = current->io_uring;
10650
10651 if (!tctx || !tctx->io_wq)
10652 return -EINVAL;
10653
10654 return io_wq_cpu_affinity(tctx->io_wq, NULL);
10655}
10656
Jens Axboe2e480052021-08-27 11:33:19 -060010657static int io_register_iowq_max_workers(struct io_ring_ctx *ctx,
10658 void __user *arg)
10659{
Jens Axboefa846932021-09-01 14:15:59 -060010660 struct io_uring_task *tctx = NULL;
10661 struct io_sq_data *sqd = NULL;
Jens Axboe2e480052021-08-27 11:33:19 -060010662 __u32 new_count[2];
10663 int i, ret;
10664
Jens Axboe2e480052021-08-27 11:33:19 -060010665 if (copy_from_user(new_count, arg, sizeof(new_count)))
10666 return -EFAULT;
10667 for (i = 0; i < ARRAY_SIZE(new_count); i++)
10668 if (new_count[i] > INT_MAX)
10669 return -EINVAL;
10670
Jens Axboefa846932021-09-01 14:15:59 -060010671 if (ctx->flags & IORING_SETUP_SQPOLL) {
10672 sqd = ctx->sq_data;
10673 if (sqd) {
Jens Axboe009ad9f2021-09-08 19:07:26 -060010674 /*
10675 * Observe the correct sqd->lock -> ctx->uring_lock
10676 * ordering. Fine to drop uring_lock here, we hold
10677 * a ref to the ctx.
10678 */
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010679 refcount_inc(&sqd->refs);
Jens Axboe009ad9f2021-09-08 19:07:26 -060010680 mutex_unlock(&ctx->uring_lock);
Jens Axboefa846932021-09-01 14:15:59 -060010681 mutex_lock(&sqd->lock);
Jens Axboe009ad9f2021-09-08 19:07:26 -060010682 mutex_lock(&ctx->uring_lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010683 if (sqd->thread)
10684 tctx = sqd->thread->io_uring;
Jens Axboefa846932021-09-01 14:15:59 -060010685 }
10686 } else {
10687 tctx = current->io_uring;
10688 }
10689
10690 ret = -EINVAL;
10691 if (!tctx || !tctx->io_wq)
10692 goto err;
10693
Jens Axboe2e480052021-08-27 11:33:19 -060010694 ret = io_wq_max_workers(tctx->io_wq, new_count);
10695 if (ret)
Jens Axboefa846932021-09-01 14:15:59 -060010696 goto err;
10697
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010698 if (sqd) {
Jens Axboefa846932021-09-01 14:15:59 -060010699 mutex_unlock(&sqd->lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010700 io_put_sq_data(sqd);
10701 }
Jens Axboe2e480052021-08-27 11:33:19 -060010702
10703 if (copy_to_user(arg, new_count, sizeof(new_count)))
10704 return -EFAULT;
10705
10706 return 0;
Jens Axboefa846932021-09-01 14:15:59 -060010707err:
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010708 if (sqd) {
Jens Axboefa846932021-09-01 14:15:59 -060010709 mutex_unlock(&sqd->lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010710 io_put_sq_data(sqd);
10711 }
Jens Axboefa846932021-09-01 14:15:59 -060010712 return ret;
Jens Axboe2e480052021-08-27 11:33:19 -060010713}
10714
Jens Axboe071698e2020-01-28 10:04:42 -070010715static bool io_register_op_must_quiesce(int op)
10716{
10717 switch (op) {
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +010010718 case IORING_REGISTER_BUFFERS:
10719 case IORING_UNREGISTER_BUFFERS:
Pavel Begunkovf4f7d212021-04-01 15:44:02 +010010720 case IORING_REGISTER_FILES:
Jens Axboe071698e2020-01-28 10:04:42 -070010721 case IORING_UNREGISTER_FILES:
10722 case IORING_REGISTER_FILES_UPDATE:
10723 case IORING_REGISTER_PROBE:
10724 case IORING_REGISTER_PERSONALITY:
10725 case IORING_UNREGISTER_PERSONALITY:
Pavel Begunkov992da012021-06-10 16:37:37 +010010726 case IORING_REGISTER_FILES2:
10727 case IORING_REGISTER_FILES_UPDATE2:
10728 case IORING_REGISTER_BUFFERS2:
10729 case IORING_REGISTER_BUFFERS_UPDATE:
Jens Axboefe764212021-06-17 10:19:54 -060010730 case IORING_REGISTER_IOWQ_AFF:
10731 case IORING_UNREGISTER_IOWQ_AFF:
Jens Axboe2e480052021-08-27 11:33:19 -060010732 case IORING_REGISTER_IOWQ_MAX_WORKERS:
Jens Axboe071698e2020-01-28 10:04:42 -070010733 return false;
10734 default:
10735 return true;
10736 }
10737}
10738
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010739static int io_ctx_quiesce(struct io_ring_ctx *ctx)
10740{
10741 long ret;
10742
10743 percpu_ref_kill(&ctx->refs);
10744
10745 /*
10746 * Drop uring mutex before waiting for references to exit. If another
10747 * thread is currently inside io_uring_enter() it might need to grab the
10748 * uring_lock to make progress. If we hold it here across the drain
10749 * wait, then we can deadlock. It's safe to drop the mutex here, since
10750 * no new references will come in after we've killed the percpu ref.
10751 */
10752 mutex_unlock(&ctx->uring_lock);
10753 do {
10754 ret = wait_for_completion_interruptible(&ctx->ref_comp);
10755 if (!ret)
10756 break;
10757 ret = io_run_task_work_sig();
10758 } while (ret >= 0);
10759 mutex_lock(&ctx->uring_lock);
10760
10761 if (ret)
10762 io_refs_resurrect(&ctx->refs, &ctx->ref_comp);
10763 return ret;
10764}
10765
Jens Axboeedafcce2019-01-09 09:16:05 -070010766static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
10767 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -060010768 __releases(ctx->uring_lock)
10769 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -070010770{
10771 int ret;
10772
Jens Axboe35fa71a2019-04-22 10:23:23 -060010773 /*
10774 * We're inside the ring mutex, if the ref is already dying, then
10775 * someone else killed the ctx or is already going through
10776 * io_uring_register().
10777 */
10778 if (percpu_ref_is_dying(&ctx->refs))
10779 return -ENXIO;
10780
Pavel Begunkov75c40212021-04-15 13:07:40 +010010781 if (ctx->restricted) {
10782 if (opcode >= IORING_REGISTER_LAST)
10783 return -EINVAL;
10784 opcode = array_index_nospec(opcode, IORING_REGISTER_LAST);
10785 if (!test_bit(opcode, ctx->restrictions.register_op))
10786 return -EACCES;
10787 }
10788
Jens Axboe071698e2020-01-28 10:04:42 -070010789 if (io_register_op_must_quiesce(opcode)) {
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010790 ret = io_ctx_quiesce(ctx);
10791 if (ret)
Pavel Begunkovf70865d2021-04-11 01:46:40 +010010792 return ret;
Jens Axboe05f3fb32019-12-09 11:22:50 -070010793 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010794
10795 switch (opcode) {
10796 case IORING_REGISTER_BUFFERS:
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010797 ret = io_sqe_buffers_register(ctx, arg, nr_args, NULL);
Jens Axboeedafcce2019-01-09 09:16:05 -070010798 break;
10799 case IORING_UNREGISTER_BUFFERS:
10800 ret = -EINVAL;
10801 if (arg || nr_args)
10802 break;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -080010803 ret = io_sqe_buffers_unregister(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -070010804 break;
Jens Axboe6b063142019-01-10 22:13:58 -070010805 case IORING_REGISTER_FILES:
Pavel Begunkov792e3582021-04-25 14:32:21 +010010806 ret = io_sqe_files_register(ctx, arg, nr_args, NULL);
Jens Axboe6b063142019-01-10 22:13:58 -070010807 break;
10808 case IORING_UNREGISTER_FILES:
10809 ret = -EINVAL;
10810 if (arg || nr_args)
10811 break;
10812 ret = io_sqe_files_unregister(ctx);
10813 break;
Jens Axboec3a31e62019-10-03 13:59:56 -060010814 case IORING_REGISTER_FILES_UPDATE:
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010815 ret = io_register_files_update(ctx, arg, nr_args);
Jens Axboec3a31e62019-10-03 13:59:56 -060010816 break;
Jens Axboe9b402842019-04-11 11:45:41 -060010817 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -070010818 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -060010819 ret = -EINVAL;
10820 if (nr_args != 1)
10821 break;
10822 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -070010823 if (ret)
10824 break;
10825 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
10826 ctx->eventfd_async = 1;
10827 else
10828 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -060010829 break;
10830 case IORING_UNREGISTER_EVENTFD:
10831 ret = -EINVAL;
10832 if (arg || nr_args)
10833 break;
10834 ret = io_eventfd_unregister(ctx);
10835 break;
Jens Axboe66f4af92020-01-16 15:36:52 -070010836 case IORING_REGISTER_PROBE:
10837 ret = -EINVAL;
10838 if (!arg || nr_args > 256)
10839 break;
10840 ret = io_probe(ctx, arg, nr_args);
10841 break;
Jens Axboe071698e2020-01-28 10:04:42 -070010842 case IORING_REGISTER_PERSONALITY:
10843 ret = -EINVAL;
10844 if (arg || nr_args)
10845 break;
10846 ret = io_register_personality(ctx);
10847 break;
10848 case IORING_UNREGISTER_PERSONALITY:
10849 ret = -EINVAL;
10850 if (arg)
10851 break;
10852 ret = io_unregister_personality(ctx, nr_args);
10853 break;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010854 case IORING_REGISTER_ENABLE_RINGS:
10855 ret = -EINVAL;
10856 if (arg || nr_args)
10857 break;
10858 ret = io_register_enable_rings(ctx);
10859 break;
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010860 case IORING_REGISTER_RESTRICTIONS:
10861 ret = io_register_restrictions(ctx, arg, nr_args);
10862 break;
Pavel Begunkov992da012021-06-10 16:37:37 +010010863 case IORING_REGISTER_FILES2:
10864 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_FILE);
Pavel Begunkov792e3582021-04-25 14:32:21 +010010865 break;
Pavel Begunkov992da012021-06-10 16:37:37 +010010866 case IORING_REGISTER_FILES_UPDATE2:
10867 ret = io_register_rsrc_update(ctx, arg, nr_args,
10868 IORING_RSRC_FILE);
10869 break;
10870 case IORING_REGISTER_BUFFERS2:
10871 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_BUFFER);
10872 break;
10873 case IORING_REGISTER_BUFFERS_UPDATE:
10874 ret = io_register_rsrc_update(ctx, arg, nr_args,
10875 IORING_RSRC_BUFFER);
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010876 break;
Jens Axboefe764212021-06-17 10:19:54 -060010877 case IORING_REGISTER_IOWQ_AFF:
10878 ret = -EINVAL;
10879 if (!arg || !nr_args)
10880 break;
10881 ret = io_register_iowq_aff(ctx, arg, nr_args);
10882 break;
10883 case IORING_UNREGISTER_IOWQ_AFF:
10884 ret = -EINVAL;
10885 if (arg || nr_args)
10886 break;
10887 ret = io_unregister_iowq_aff(ctx);
10888 break;
Jens Axboe2e480052021-08-27 11:33:19 -060010889 case IORING_REGISTER_IOWQ_MAX_WORKERS:
10890 ret = -EINVAL;
10891 if (!arg || nr_args != 2)
10892 break;
10893 ret = io_register_iowq_max_workers(ctx, arg);
10894 break;
Jens Axboeedafcce2019-01-09 09:16:05 -070010895 default:
10896 ret = -EINVAL;
10897 break;
10898 }
10899
Jens Axboe071698e2020-01-28 10:04:42 -070010900 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -070010901 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -070010902 percpu_ref_reinit(&ctx->refs);
Jens Axboe0f158b42020-05-14 17:18:39 -060010903 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -070010904 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010905 return ret;
10906}
10907
10908SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
10909 void __user *, arg, unsigned int, nr_args)
10910{
10911 struct io_ring_ctx *ctx;
10912 long ret = -EBADF;
10913 struct fd f;
10914
10915 f = fdget(fd);
10916 if (!f.file)
10917 return -EBADF;
10918
10919 ret = -EOPNOTSUPP;
10920 if (f.file->f_op != &io_uring_fops)
10921 goto out_fput;
10922
10923 ctx = f.file->private_data;
10924
Pavel Begunkovb6c23dd2021-02-20 15:17:18 +000010925 io_run_task_work();
10926
Jens Axboeedafcce2019-01-09 09:16:05 -070010927 mutex_lock(&ctx->uring_lock);
10928 ret = __io_uring_register(ctx, opcode, arg, nr_args);
10929 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010930 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
10931 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -070010932out_fput:
10933 fdput(f);
10934 return ret;
10935}
10936
Jens Axboe2b188cc2019-01-07 10:46:33 -070010937static int __init io_uring_init(void)
10938{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010939#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
10940 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
10941 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
10942} while (0)
10943
10944#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
10945 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
10946 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
10947 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
10948 BUILD_BUG_SQE_ELEM(1, __u8, flags);
10949 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
10950 BUILD_BUG_SQE_ELEM(4, __s32, fd);
10951 BUILD_BUG_SQE_ELEM(8, __u64, off);
10952 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
10953 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010954 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010955 BUILD_BUG_SQE_ELEM(24, __u32, len);
10956 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
10957 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
10958 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
10959 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +080010960 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
10961 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010962 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
10963 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
10964 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
10965 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
10966 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
10967 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
10968 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
10969 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010970 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010971 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
10972 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
Pavel Begunkov16340ea2021-06-24 15:09:58 +010010973 BUILD_BUG_SQE_ELEM(40, __u16, buf_group);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010974 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010975 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Pavel Begunkovb9445592021-08-25 12:25:45 +010010976 BUILD_BUG_SQE_ELEM(44, __u32, file_index);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010977
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010010978 BUILD_BUG_ON(sizeof(struct io_uring_files_update) !=
10979 sizeof(struct io_uring_rsrc_update));
10980 BUILD_BUG_ON(sizeof(struct io_uring_rsrc_update) >
10981 sizeof(struct io_uring_rsrc_update2));
Pavel Begunkov90499ad2021-08-25 20:51:40 +010010982
10983 /* ->buf_index is u16 */
10984 BUILD_BUG_ON(IORING_MAX_REG_BUFFERS >= (1u << 16));
10985
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010010986 /* should fit into one byte */
10987 BUILD_BUG_ON(SQE_VALID_FLAGS >= (1 << 8));
10988
Jens Axboed3656342019-12-18 09:50:26 -070010989 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Hao Xu32c2d332021-09-07 11:22:43 +080010990 BUILD_BUG_ON(__REQ_F_LAST_BIT > 8 * sizeof(int));
Pavel Begunkov16340ea2021-06-24 15:09:58 +010010991
Jens Axboe91f245d2021-02-09 13:48:50 -070010992 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC |
10993 SLAB_ACCOUNT);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010994 return 0;
10995};
10996__initcall(io_uring_init);